@wildix/wim-wilma-client 0.0.11 → 3.1.12
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-cjs/Wilma.js +25 -3
- package/dist-cjs/WilmaClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-cjs/commands/CreateAgentCommand.js +10 -11
- package/dist-cjs/commands/CreateGuidelineCommand.js +10 -11
- package/dist-cjs/commands/CreateGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/CreateSkillCommand.js +20 -0
- package/dist-cjs/commands/CreateSkillFileUploadCommand.js +20 -0
- package/dist-cjs/commands/DeleteAgentCommand.js +10 -11
- package/dist-cjs/commands/DeleteChatCommand.js +10 -11
- package/dist-cjs/commands/DeleteFileCommand.js +20 -0
- package/dist-cjs/commands/DeleteGuidelineCommand.js +10 -11
- package/dist-cjs/commands/DeleteGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/DeleteSkillCommand.js +20 -0
- package/dist-cjs/commands/DeleteSkillFileCommand.js +20 -0
- package/dist-cjs/commands/DislikeAnswerCommand.js +10 -11
- package/dist-cjs/commands/DownloadFileCommand.js +20 -0
- package/dist-cjs/commands/ExecuteAgentCommand.js +10 -11
- package/dist-cjs/commands/GetAgentCommand.js +10 -11
- package/dist-cjs/commands/GetChatCommand.js +10 -11
- package/dist-cjs/commands/GetFileCommand.js +20 -0
- package/dist-cjs/commands/GetGuidelineCommand.js +10 -11
- package/dist-cjs/commands/GetOrganizationSettingsCommand.js +10 -11
- package/dist-cjs/commands/GetSettingsCommand.js +10 -11
- package/dist-cjs/commands/GetSkillCommand.js +20 -0
- package/dist-cjs/commands/GetSkillFileDownloadCommand.js +20 -0
- package/dist-cjs/commands/LikeAnswerCommand.js +10 -11
- package/dist-cjs/commands/ListAgentFeedbacksCommand.js +10 -11
- package/dist-cjs/commands/ListAgentsCommand.js +10 -11
- package/dist-cjs/commands/ListAgentsNamesCommand.js +10 -11
- package/dist-cjs/commands/ListChatsCommand.js +10 -11
- package/dist-cjs/commands/ListFeedbacksCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesDirectoriesCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesNamesCommand.js +10 -11
- package/dist-cjs/commands/ListSkillsCommand.js +20 -0
- package/dist-cjs/commands/PatchOrganizationSettingsCommand.js +10 -11
- package/dist-cjs/commands/PatchSettingsCommand.js +10 -11
- package/dist-cjs/commands/UpdateAgentCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelineAccessCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelineCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/UpdateSkillCommand.js +20 -0
- package/dist-cjs/commands/index.js +12 -1
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/WilmaServiceException.js +3 -3
- package/dist-cjs/models/enums.js +45 -0
- package/dist-cjs/models/errors.js +43 -0
- package/dist-cjs/models/models_0.js +0 -96
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1110 -0
- package/dist-es/Wilma.js +27 -5
- package/dist-es/WilmaClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-es/commands/CreateAgentCommand.js +9 -10
- package/dist-es/commands/CreateGuidelineCommand.js +9 -10
- package/dist-es/commands/CreateGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/CreateSkillCommand.js +16 -0
- package/dist-es/commands/CreateSkillFileUploadCommand.js +16 -0
- package/dist-es/commands/DeleteAgentCommand.js +9 -10
- package/dist-es/commands/DeleteChatCommand.js +9 -10
- package/dist-es/commands/DeleteFileCommand.js +16 -0
- package/dist-es/commands/DeleteGuidelineCommand.js +9 -10
- package/dist-es/commands/DeleteGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/DeleteSkillCommand.js +16 -0
- package/dist-es/commands/DeleteSkillFileCommand.js +16 -0
- package/dist-es/commands/DislikeAnswerCommand.js +9 -10
- package/dist-es/commands/DownloadFileCommand.js +16 -0
- package/dist-es/commands/ExecuteAgentCommand.js +9 -10
- package/dist-es/commands/GetAgentCommand.js +9 -10
- package/dist-es/commands/GetChatCommand.js +9 -10
- package/dist-es/commands/GetFileCommand.js +16 -0
- package/dist-es/commands/GetGuidelineCommand.js +9 -10
- package/dist-es/commands/GetOrganizationSettingsCommand.js +9 -10
- package/dist-es/commands/GetSettingsCommand.js +9 -10
- package/dist-es/commands/GetSkillCommand.js +16 -0
- package/dist-es/commands/GetSkillFileDownloadCommand.js +16 -0
- package/dist-es/commands/LikeAnswerCommand.js +9 -10
- package/dist-es/commands/ListAgentFeedbacksCommand.js +9 -10
- package/dist-es/commands/ListAgentsCommand.js +9 -10
- package/dist-es/commands/ListAgentsNamesCommand.js +9 -10
- package/dist-es/commands/ListChatsCommand.js +9 -10
- package/dist-es/commands/ListFeedbacksCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesDirectoriesCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesNamesCommand.js +9 -10
- package/dist-es/commands/ListSkillsCommand.js +16 -0
- package/dist-es/commands/PatchOrganizationSettingsCommand.js +9 -10
- package/dist-es/commands/PatchSettingsCommand.js +9 -10
- package/dist-es/commands/UpdateAgentCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelineAccessCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelineCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/UpdateSkillCommand.js +16 -0
- package/dist-es/commands/index.js +12 -1
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/WilmaServiceException.js +1 -1
- package/dist-es/models/enums.js +42 -0
- package/dist-es/models/errors.js +37 -0
- package/dist-es/models/models_0.js +1 -92
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1104 -0
- package/dist-types/Wilma.d.ts +108 -30
- package/dist-types/WilmaClient.d.ts +72 -43
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/CreateAgentCommand.d.ts +127 -25
- package/dist-types/commands/CreateGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/CreateGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/CreateSkillCommand.d.ts +103 -0
- package/dist-types/commands/CreateSkillFileUploadCommand.d.ts +99 -0
- package/dist-types/commands/DeleteAgentCommand.d.ts +11 -7
- package/dist-types/commands/DeleteChatCommand.d.ts +11 -7
- package/dist-types/commands/DeleteFileCommand.d.ts +80 -0
- package/dist-types/commands/DeleteGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/DeleteGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/DeleteSkillCommand.d.ts +80 -0
- package/dist-types/commands/DeleteSkillFileCommand.d.ts +83 -0
- package/dist-types/commands/DislikeAnswerCommand.d.ts +11 -7
- package/dist-types/commands/DownloadFileCommand.d.ts +95 -0
- package/dist-types/commands/ExecuteAgentCommand.d.ts +28 -7
- package/dist-types/commands/GetAgentCommand.d.ts +69 -16
- package/dist-types/commands/GetChatCommand.d.ts +11 -7
- package/dist-types/commands/GetFileCommand.d.ts +93 -0
- package/dist-types/commands/GetGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/GetOrganizationSettingsCommand.d.ts +11 -7
- package/dist-types/commands/GetSettingsCommand.d.ts +11 -7
- package/dist-types/commands/GetSkillCommand.d.ts +103 -0
- package/dist-types/commands/GetSkillFileDownloadCommand.d.ts +86 -0
- package/dist-types/commands/LikeAnswerCommand.d.ts +11 -7
- package/dist-types/commands/ListAgentFeedbacksCommand.d.ts +11 -7
- package/dist-types/commands/ListAgentsCommand.d.ts +69 -16
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +11 -7
- package/dist-types/commands/ListChatsCommand.d.ts +11 -7
- package/dist-types/commands/ListFeedbacksCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesDirectoriesCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesNamesCommand.d.ts +11 -7
- package/dist-types/commands/ListSkillsCommand.d.ts +92 -0
- package/dist-types/commands/PatchOrganizationSettingsCommand.d.ts +11 -7
- package/dist-types/commands/PatchSettingsCommand.d.ts +11 -7
- package/dist-types/commands/UpdateAgentCommand.d.ts +127 -25
- package/dist-types/commands/UpdateGuidelineAccessCommand.d.ts +11 -7
- package/dist-types/commands/UpdateGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/UpdateGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/UpdateSkillCommand.d.ts +106 -0
- package/dist-types/commands/index.d.ts +12 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/WilmaServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +129 -0
- package/dist-types/models/errors.d.ts +35 -0
- package/dist-types/models/models_0.d.ts +640 -162
- package/dist-types/runtimeConfig.browser.d.ts +37 -13
- package/dist-types/runtimeConfig.d.ts +36 -12
- package/dist-types/runtimeConfig.native.d.ts +37 -13
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +172 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -1125
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -1063
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -263
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetFileInput, GetFileOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetFileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetFileCommandInput extends GetFileInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetFileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetFileCommandOutput extends GetFileOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetFileCommand_base: {
|
|
25
|
+
new (input: GetFileCommandInput): import("@smithy/core/client").CommandImpl<GetFileCommandInput, GetFileCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetFileCommandInput): import("@smithy/core/client").CommandImpl<GetFileCommandInput, GetFileCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Gets the metadata of a single file.
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { WilmaClient, GetFileCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
37
|
+
* // const { WilmaClient, GetFileCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
40
|
+
* const client = new WilmaClient(config);
|
|
41
|
+
* const input = { // GetFileInput
|
|
42
|
+
* company: "STRING_VALUE",
|
|
43
|
+
* user: "STRING_VALUE",
|
|
44
|
+
* fileId: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
46
|
+
* const command = new GetFileCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // GetFileOutput
|
|
49
|
+
* // file: { // WilmaFile
|
|
50
|
+
* // id: "STRING_VALUE", // required
|
|
51
|
+
* // name: "STRING_VALUE", // required
|
|
52
|
+
* // contentType: "STRING_VALUE",
|
|
53
|
+
* // size: Number("long"),
|
|
54
|
+
* // scope: "user" || "agent",
|
|
55
|
+
* // agentId: "STRING_VALUE",
|
|
56
|
+
* // sessionId: "STRING_VALUE",
|
|
57
|
+
* // createdAt: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
61
|
+
* ```
|
|
62
|
+
*
|
|
63
|
+
* @param GetFileCommandInput - {@link GetFileCommandInput}
|
|
64
|
+
* @returns {@link GetFileCommandOutput}
|
|
65
|
+
* @see {@link GetFileCommandInput} for command's `input` shape.
|
|
66
|
+
* @see {@link GetFileCommandOutput} for command's `response` shape.
|
|
67
|
+
* @see {@link WilmaClientResolvedConfig | config} for WilmaClient's `config` shape.
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link NotFoundException} (client fault)
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link WilmaServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Wilma service.</p>
|
|
77
|
+
*
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class GetFileCommand extends GetFileCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: GetFileInput;
|
|
86
|
+
output: GetFileOutput;
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: GetFileCommandInput;
|
|
90
|
+
output: GetFileCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetGuidelineInput, GetGuidelineOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetGuidelineCommandInput extends GetGuidelineInput {
|
|
|
22
22
|
export interface GetGuidelineCommandOutput extends GetGuidelineOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetGuidelineCommand_base: {
|
|
25
|
-
new (input: GetGuidelineCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetGuidelineCommandInput): import("@smithy/core/client").CommandImpl<GetGuidelineCommandInput, GetGuidelineCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetGuidelineCommandInput): import("@smithy/core/client").CommandImpl<GetGuidelineCommandInput, GetGuidelineCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets a guideline by its ID.
|
|
@@ -33,6 +35,8 @@ declare const GetGuidelineCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WilmaClient, GetGuidelineCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
35
37
|
* // const { WilmaClient, GetGuidelineCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
36
40
|
* const client = new WilmaClient(config);
|
|
37
41
|
* const input = { // GetGuidelineInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetOrganizationSettingsInput, GetOrganizationSettingsOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetOrganizationSettingsCommandInput extends GetOrganizationSett
|
|
|
22
22
|
export interface GetOrganizationSettingsCommandOutput extends GetOrganizationSettingsOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetOrganizationSettingsCommand_base: {
|
|
25
|
-
new (input: GetOrganizationSettingsCommandInput): import("@smithy/
|
|
26
|
-
new (...[input]: [] | [GetOrganizationSettingsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetOrganizationSettingsCommandInput): import("@smithy/core/client").CommandImpl<GetOrganizationSettingsCommandInput, GetOrganizationSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [GetOrganizationSettingsCommandInput]): import("@smithy/core/client").CommandImpl<GetOrganizationSettingsCommandInput, GetOrganizationSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets AI assistant settings for the organization.
|
|
@@ -33,6 +35,8 @@ declare const GetOrganizationSettingsCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WilmaClient, GetOrganizationSettingsCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
35
37
|
* // const { WilmaClient, GetOrganizationSettingsCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
36
40
|
* const client = new WilmaClient(config);
|
|
37
41
|
* const input = { // GetOrganizationSettingsInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetSettingsInput, GetSettingsOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface GetSettingsCommandInput extends GetSettingsInput {
|
|
|
22
22
|
export interface GetSettingsCommandOutput extends GetSettingsOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const GetSettingsCommand_base: {
|
|
25
|
-
new (input: GetSettingsCommandInput): import("@smithy/
|
|
26
|
-
new (...[input]: [] | [GetSettingsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: GetSettingsCommandInput): import("@smithy/core/client").CommandImpl<GetSettingsCommandInput, GetSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [GetSettingsCommandInput]): import("@smithy/core/client").CommandImpl<GetSettingsCommandInput, GetSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Gets AI assistant settings for the user.
|
|
@@ -33,6 +35,8 @@ declare const GetSettingsCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WilmaClient, GetSettingsCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
35
37
|
* // const { WilmaClient, GetSettingsCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
36
40
|
* const client = new WilmaClient(config);
|
|
37
41
|
* const input = { // GetSettingsInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetSkillInput, GetSkillOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetSkillCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetSkillCommandInput extends GetSkillInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetSkillCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetSkillCommandOutput extends GetSkillOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetSkillCommand_base: {
|
|
25
|
+
new (input: GetSkillCommandInput): import("@smithy/core/client").CommandImpl<GetSkillCommandInput, GetSkillCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetSkillCommandInput): import("@smithy/core/client").CommandImpl<GetSkillCommandInput, GetSkillCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Gets a skill (with content and file list) by id.
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { WilmaClient, GetSkillCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
37
|
+
* // const { WilmaClient, GetSkillCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
40
|
+
* const client = new WilmaClient(config);
|
|
41
|
+
* const input = { // GetSkillInput
|
|
42
|
+
* company: "STRING_VALUE",
|
|
43
|
+
* user: "STRING_VALUE",
|
|
44
|
+
* skillId: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
46
|
+
* const command = new GetSkillCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // GetSkillOutput
|
|
49
|
+
* // skill: { // Skill
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // description: "STRING_VALUE", // required
|
|
52
|
+
* // content: "STRING_VALUE", // required
|
|
53
|
+
* // id: "STRING_VALUE", // required
|
|
54
|
+
* // createdAt: "STRING_VALUE", // required
|
|
55
|
+
* // createdBy: "STRING_VALUE", // required
|
|
56
|
+
* // createdByName: "STRING_VALUE", // required
|
|
57
|
+
* // updatedAt: "STRING_VALUE",
|
|
58
|
+
* // files: [ // SkillFilesList
|
|
59
|
+
* // { // SkillFile
|
|
60
|
+
* // path: "STRING_VALUE", // required
|
|
61
|
+
* // kind: "reference" || "script" || "resource", // required
|
|
62
|
+
* // contentType: "STRING_VALUE",
|
|
63
|
+
* // executable: true || false,
|
|
64
|
+
* // size: Number("long"),
|
|
65
|
+
* // checksum: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param GetSkillCommandInput - {@link GetSkillCommandInput}
|
|
74
|
+
* @returns {@link GetSkillCommandOutput}
|
|
75
|
+
* @see {@link GetSkillCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link GetSkillCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link WilmaClientResolvedConfig | config} for WilmaClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ValidationException} (client fault)
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link NotFoundException} (client fault)
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link WilmaServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Wilma service.</p>
|
|
87
|
+
*
|
|
88
|
+
*
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class GetSkillCommand extends GetSkillCommand_base {
|
|
92
|
+
/** @internal type navigation helper, not in runtime. */
|
|
93
|
+
protected static __types: {
|
|
94
|
+
api: {
|
|
95
|
+
input: GetSkillInput;
|
|
96
|
+
output: GetSkillOutput;
|
|
97
|
+
};
|
|
98
|
+
sdk: {
|
|
99
|
+
input: GetSkillCommandInput;
|
|
100
|
+
output: GetSkillCommandOutput;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetSkillFileDownloadInput, GetSkillFileDownloadOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetSkillFileDownloadCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetSkillFileDownloadCommandInput extends GetSkillFileDownloadInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetSkillFileDownloadCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetSkillFileDownloadCommandOutput extends GetSkillFileDownloadOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetSkillFileDownloadCommand_base: {
|
|
25
|
+
new (input: GetSkillFileDownloadCommandInput): import("@smithy/core/client").CommandImpl<GetSkillFileDownloadCommandInput, GetSkillFileDownloadCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetSkillFileDownloadCommandInput): import("@smithy/core/client").CommandImpl<GetSkillFileDownloadCommandInput, GetSkillFileDownloadCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Returns a presigned URL to download a bundled skill file.
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { WilmaClient, GetSkillFileDownloadCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
37
|
+
* // const { WilmaClient, GetSkillFileDownloadCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
40
|
+
* const client = new WilmaClient(config);
|
|
41
|
+
* const input = { // GetSkillFileDownloadInput
|
|
42
|
+
* company: "STRING_VALUE",
|
|
43
|
+
* user: "STRING_VALUE",
|
|
44
|
+
* skillId: "STRING_VALUE", // required
|
|
45
|
+
* path: "STRING_VALUE", // required
|
|
46
|
+
* };
|
|
47
|
+
* const command = new GetSkillFileDownloadCommand(input);
|
|
48
|
+
* const response = await client.send(command);
|
|
49
|
+
* // { // GetSkillFileDownloadOutput
|
|
50
|
+
* // url: "STRING_VALUE", // required
|
|
51
|
+
* // expiresAt: "STRING_VALUE", // required
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param GetSkillFileDownloadCommandInput - {@link GetSkillFileDownloadCommandInput}
|
|
57
|
+
* @returns {@link GetSkillFileDownloadCommandOutput}
|
|
58
|
+
* @see {@link GetSkillFileDownloadCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link GetSkillFileDownloadCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link WilmaClientResolvedConfig | config} for WilmaClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link NotFoundException} (client fault)
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link WilmaServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Wilma service.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class GetSkillFileDownloadCommand extends GetSkillFileDownloadCommand_base {
|
|
75
|
+
/** @internal type navigation helper, not in runtime. */
|
|
76
|
+
protected static __types: {
|
|
77
|
+
api: {
|
|
78
|
+
input: GetSkillFileDownloadInput;
|
|
79
|
+
output: GetSkillFileDownloadOutput;
|
|
80
|
+
};
|
|
81
|
+
sdk: {
|
|
82
|
+
input: GetSkillFileDownloadCommandInput;
|
|
83
|
+
output: GetSkillFileDownloadCommandOutput;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { LikeAnswerInput, LikeAnswerOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface LikeAnswerCommandInput extends LikeAnswerInput {
|
|
|
22
22
|
export interface LikeAnswerCommandOutput extends LikeAnswerOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const LikeAnswerCommand_base: {
|
|
25
|
-
new (input: LikeAnswerCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: LikeAnswerCommandInput): import("@smithy/core/client").CommandImpl<LikeAnswerCommandInput, LikeAnswerCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: LikeAnswerCommandInput): import("@smithy/core/client").CommandImpl<LikeAnswerCommandInput, LikeAnswerCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* ...
|
|
@@ -33,6 +35,8 @@ declare const LikeAnswerCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WilmaClient, LikeAnswerCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
35
37
|
* // const { WilmaClient, LikeAnswerCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
36
40
|
* const client = new WilmaClient(config);
|
|
37
41
|
* const input = { // LikeAnswerInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListAgentFeedbacksInput, ListAgentFeedbacksOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface ListAgentFeedbacksCommandInput extends ListAgentFeedbacksInput
|
|
|
22
22
|
export interface ListAgentFeedbacksCommandOutput extends ListAgentFeedbacksOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const ListAgentFeedbacksCommand_base: {
|
|
25
|
-
new (input: ListAgentFeedbacksCommandInput): import("@smithy/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: ListAgentFeedbacksCommandInput): import("@smithy/core/client").CommandImpl<ListAgentFeedbacksCommandInput, ListAgentFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListAgentFeedbacksCommandInput): import("@smithy/core/client").CommandImpl<ListAgentFeedbacksCommandInput, ListAgentFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Lists recent feedbacks for specific agent.
|
|
@@ -33,6 +35,8 @@ declare const ListAgentFeedbacksCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WilmaClient, ListAgentFeedbacksCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
35
37
|
* // const { WilmaClient, ListAgentFeedbacksCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
36
40
|
* const client = new WilmaClient(config);
|
|
37
41
|
* const input = { // ListAgentFeedbacksInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListAgentsInput, ListAgentsOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface ListAgentsCommandInput extends ListAgentsInput {
|
|
|
22
22
|
export interface ListAgentsCommandOutput extends ListAgentsOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const ListAgentsCommand_base: {
|
|
25
|
-
new (input: ListAgentsCommandInput): import("@smithy/
|
|
26
|
-
new (...[input]: [] | [ListAgentsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: ListAgentsCommandInput): import("@smithy/core/client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListAgentsCommandInput]): import("@smithy/core/client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Retrieves a list of agents for the specified company.
|
|
@@ -33,6 +35,8 @@ declare const ListAgentsCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WilmaClient, ListAgentsCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
35
37
|
* // const { WilmaClient, ListAgentsCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
36
40
|
* const client = new WilmaClient(config);
|
|
37
41
|
* const input = { // ListAgentsInput
|
|
38
42
|
* company: "STRING_VALUE",
|
|
@@ -43,9 +47,21 @@ declare const ListAgentsCommand_base: {
|
|
|
43
47
|
* // agents: [ // AgentsList // required
|
|
44
48
|
* // { // Agent
|
|
45
49
|
* // name: "STRING_VALUE", // required
|
|
46
|
-
* // model: "STRING_VALUE",
|
|
47
|
-
* // instructions: "STRING_VALUE", // required
|
|
48
50
|
* // category: "STRING_VALUE",
|
|
51
|
+
* // instructions: "STRING_VALUE", // required
|
|
52
|
+
* // guidelines: [ // AgentGuidelinesList
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // skills: [ // AgentSkillsList
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // variables: [ // AgentVariablesList
|
|
59
|
+
* // { // AgentVariable
|
|
60
|
+
* // name: "STRING_VALUE", // required
|
|
61
|
+
* // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
|
|
62
|
+
* // optional: true || false, // required
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
49
65
|
* // capabilities: [ // AgentCapabilitiesList
|
|
50
66
|
* // { // AgentCapability Union: only one key present
|
|
51
67
|
* // tool: { // AgentTool
|
|
@@ -69,15 +85,52 @@ declare const ListAgentsCommand_base: {
|
|
|
69
85
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
70
86
|
* // instructions: "STRING_VALUE",
|
|
71
87
|
* // },
|
|
88
|
+
* // sandbox: { // AgentSandboxCapability Union: only one key present
|
|
89
|
+
* // vercel: { // AgentVercelSandboxOptions
|
|
90
|
+
* // vcpus: Number("int"),
|
|
91
|
+
* // network: "allow-all" || "deny-all" || "allowlist",
|
|
92
|
+
* // allowedDomains: [ // SandboxDomainList
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // },
|
|
97
|
+
* // webSearch: { // AgentWebSearchCapability
|
|
98
|
+
* // contextSize: "low" || "medium" || "high",
|
|
99
|
+
* // allowedDomains: [
|
|
100
|
+
* // "STRING_VALUE",
|
|
101
|
+
* // ],
|
|
102
|
+
* // userLocation: { // WebSearchUserLocation
|
|
103
|
+
* // country: "STRING_VALUE",
|
|
104
|
+
* // region: "STRING_VALUE",
|
|
105
|
+
* // city: "STRING_VALUE",
|
|
106
|
+
* // timezone: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // },
|
|
109
|
+
* // webFetch: { // AgentWebFetchCapability
|
|
110
|
+
* // allowedDomains: [
|
|
111
|
+
* // "STRING_VALUE",
|
|
112
|
+
* // ],
|
|
113
|
+
* // },
|
|
114
|
+
* // agent: { // AgentCallCapability
|
|
115
|
+
* // agentId: "STRING_VALUE", // required
|
|
116
|
+
* // variables: [
|
|
117
|
+
* // {
|
|
118
|
+
* // name: "STRING_VALUE", // required
|
|
119
|
+
* // handler: {// Union: only one key present
|
|
120
|
+
* // auto: {},
|
|
121
|
+
* // guided: {
|
|
122
|
+
* // description: "STRING_VALUE", // required
|
|
123
|
+
* // },
|
|
124
|
+
* // predefined: {
|
|
125
|
+
* // description: "STRING_VALUE", // required
|
|
126
|
+
* // },
|
|
127
|
+
* // },
|
|
128
|
+
* // },
|
|
129
|
+
* // ],
|
|
130
|
+
* // },
|
|
72
131
|
* // },
|
|
73
132
|
* // ],
|
|
74
|
-
* //
|
|
75
|
-
* // { // AgentVariable
|
|
76
|
-
* // name: "STRING_VALUE", // required
|
|
77
|
-
* // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
|
|
78
|
-
* // optional: true || false, // required
|
|
79
|
-
* // },
|
|
80
|
-
* // ],
|
|
133
|
+
* // model: "STRING_VALUE",
|
|
81
134
|
* // id: "STRING_VALUE", // required
|
|
82
135
|
* // createdAt: "STRING_VALUE", // required
|
|
83
136
|
* // updatedAt: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListAgentsNamesInput, ListAgentsNamesOutput } from "../models/models_0";
|
|
4
|
+
import type { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -22,9 +22,11 @@ export interface ListAgentsNamesCommandInput extends ListAgentsNamesInput {
|
|
|
22
22
|
export interface ListAgentsNamesCommandOutput extends ListAgentsNamesOutput, __MetadataBearer {
|
|
23
23
|
}
|
|
24
24
|
declare const ListAgentsNamesCommand_base: {
|
|
25
|
-
new (input: ListAgentsNamesCommandInput): import("@smithy/
|
|
26
|
-
new (...[input]: [] | [ListAgentsNamesCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
25
|
+
new (input: ListAgentsNamesCommandInput): import("@smithy/core/client").CommandImpl<ListAgentsNamesCommandInput, ListAgentsNamesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListAgentsNamesCommandInput]): import("@smithy/core/client").CommandImpl<ListAgentsNamesCommandInput, ListAgentsNamesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Retrieves a list of agents names and basic information for the specified company.
|
|
@@ -33,6 +35,8 @@ declare const ListAgentsNamesCommand_base: {
|
|
|
33
35
|
* ```javascript
|
|
34
36
|
* import { WilmaClient, ListAgentsNamesCommand } from "@wildix/wim-wilma-client"; // ES Modules import
|
|
35
37
|
* // const { WilmaClient, ListAgentsNamesCommand } = require("@wildix/wim-wilma-client"); // CommonJS import
|
|
38
|
+
* // import type { WilmaClientConfig } from "@wildix/wim-wilma-client";
|
|
39
|
+
* const config = {}; // type is WilmaClientConfig
|
|
36
40
|
* const client = new WilmaClient(config);
|
|
37
41
|
* const input = { // ListAgentsNamesInput
|
|
38
42
|
* company: "STRING_VALUE",
|