@socketsecurity/sdk
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -46,4 +46,8 @@ export type SocketSdkOperations = keyof import('./types/api').operations; | ||
}): Promise<SocketSdkResultType<'getOrgRepoList'>>; | ||
createOrgRepo(orgSlug: string, params: string): Promise<SocketSdkResultType<'createOrgRepo'>>; | ||
updateOrgRepo(orgSlug: string, repoSlug: string, params: string): Promise<SocketSdkResultType<'updateOrgRepo'>>; | ||
createOrgRepo(orgSlug: string, params: { | ||
[key: string]: any; | ||
}): Promise<SocketSdkResultType<'createOrgRepo'>>; | ||
updateOrgRepo(orgSlug: string, repoSlug: string, params: { | ||
[key: string]: any; | ||
}): Promise<SocketSdkResultType<'updateOrgRepo'>>; | ||
postSettings(selectors: Array<{ | ||
@@ -50,0 +54,0 @@ organization?: string; |
@@ -462,3 +462,3 @@ 'use strict' | ||
* @param {string} orgSlug | ||
* @param {string} params | ||
* @param {{[key: string]: any }} params | ||
* @returns {Promise<SocketSdkResultType<'createOrgRepo'>>} | ||
@@ -481,3 +481,3 @@ */ | ||
* @param {string} repoSlug | ||
* @param {string} params | ||
* @param {{[key: string]: any }} params | ||
* @returns {Promise<SocketSdkResultType<'updateOrgRepo'>>} | ||
@@ -484,0 +484,0 @@ */ |
{ | ||
"name": "@socketsecurity/sdk", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "SDK for the Socket API client", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
139933
4007