@ideascol/agents-generator-sdk 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ export declare class AdminApiKeysService {
|
|
|
12
12
|
* @returns ApiKeyWithSecret Successful Response
|
|
13
13
|
* @throws ApiError
|
|
14
14
|
*/
|
|
15
|
-
static createWorkspaceApiKey(workspaceId: string, requestBody
|
|
15
|
+
static createWorkspaceApiKey(workspaceId: string, requestBody: ApiKeyCreate): CancelablePromise<ApiKeyWithSecret>;
|
|
16
16
|
/**
|
|
17
17
|
* Get Api Keys
|
|
18
18
|
* Get all API keys for a workspace
|
|
@@ -39,7 +39,7 @@ export declare class AdminApiKeysService {
|
|
|
39
39
|
* @returns ApiKeyResponse Successful Response
|
|
40
40
|
* @throws ApiError
|
|
41
41
|
*/
|
|
42
|
-
static updateWorkspaceApiKey(workspaceId: string, apiKeyId: string, requestBody
|
|
42
|
+
static updateWorkspaceApiKey(workspaceId: string, apiKeyId: string, requestBody: ApiKeyUpdate): CancelablePromise<ApiKeyResponse>;
|
|
43
43
|
/**
|
|
44
44
|
* Delete Api Key
|
|
45
45
|
* Delete an API key
|