@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
package/dist-cjs/Wilma.js
CHANGED
|
@@ -1,21 +1,30 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Wilma = void 0;
|
|
4
|
-
const
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
5
|
const CreateAgentCommand_1 = require("./commands/CreateAgentCommand");
|
|
6
6
|
const CreateGuidelineCommand_1 = require("./commands/CreateGuidelineCommand");
|
|
7
7
|
const CreateGuidelinesDirectoryCommand_1 = require("./commands/CreateGuidelinesDirectoryCommand");
|
|
8
|
+
const CreateSkillCommand_1 = require("./commands/CreateSkillCommand");
|
|
9
|
+
const CreateSkillFileUploadCommand_1 = require("./commands/CreateSkillFileUploadCommand");
|
|
8
10
|
const DeleteAgentCommand_1 = require("./commands/DeleteAgentCommand");
|
|
9
11
|
const DeleteChatCommand_1 = require("./commands/DeleteChatCommand");
|
|
12
|
+
const DeleteFileCommand_1 = require("./commands/DeleteFileCommand");
|
|
10
13
|
const DeleteGuidelineCommand_1 = require("./commands/DeleteGuidelineCommand");
|
|
11
14
|
const DeleteGuidelinesDirectoryCommand_1 = require("./commands/DeleteGuidelinesDirectoryCommand");
|
|
15
|
+
const DeleteSkillCommand_1 = require("./commands/DeleteSkillCommand");
|
|
16
|
+
const DeleteSkillFileCommand_1 = require("./commands/DeleteSkillFileCommand");
|
|
12
17
|
const DislikeAnswerCommand_1 = require("./commands/DislikeAnswerCommand");
|
|
18
|
+
const DownloadFileCommand_1 = require("./commands/DownloadFileCommand");
|
|
13
19
|
const ExecuteAgentCommand_1 = require("./commands/ExecuteAgentCommand");
|
|
14
20
|
const GetAgentCommand_1 = require("./commands/GetAgentCommand");
|
|
15
21
|
const GetChatCommand_1 = require("./commands/GetChatCommand");
|
|
22
|
+
const GetFileCommand_1 = require("./commands/GetFileCommand");
|
|
16
23
|
const GetGuidelineCommand_1 = require("./commands/GetGuidelineCommand");
|
|
17
24
|
const GetOrganizationSettingsCommand_1 = require("./commands/GetOrganizationSettingsCommand");
|
|
18
25
|
const GetSettingsCommand_1 = require("./commands/GetSettingsCommand");
|
|
26
|
+
const GetSkillCommand_1 = require("./commands/GetSkillCommand");
|
|
27
|
+
const GetSkillFileDownloadCommand_1 = require("./commands/GetSkillFileDownloadCommand");
|
|
19
28
|
const LikeAnswerCommand_1 = require("./commands/LikeAnswerCommand");
|
|
20
29
|
const ListAgentFeedbacksCommand_1 = require("./commands/ListAgentFeedbacksCommand");
|
|
21
30
|
const ListAgentsCommand_1 = require("./commands/ListAgentsCommand");
|
|
@@ -25,28 +34,39 @@ const ListFeedbacksCommand_1 = require("./commands/ListFeedbacksCommand");
|
|
|
25
34
|
const ListGuidelinesCommand_1 = require("./commands/ListGuidelinesCommand");
|
|
26
35
|
const ListGuidelinesDirectoriesCommand_1 = require("./commands/ListGuidelinesDirectoriesCommand");
|
|
27
36
|
const ListGuidelinesNamesCommand_1 = require("./commands/ListGuidelinesNamesCommand");
|
|
37
|
+
const ListSkillsCommand_1 = require("./commands/ListSkillsCommand");
|
|
28
38
|
const PatchOrganizationSettingsCommand_1 = require("./commands/PatchOrganizationSettingsCommand");
|
|
29
39
|
const PatchSettingsCommand_1 = require("./commands/PatchSettingsCommand");
|
|
30
40
|
const UpdateAgentCommand_1 = require("./commands/UpdateAgentCommand");
|
|
31
41
|
const UpdateGuidelineAccessCommand_1 = require("./commands/UpdateGuidelineAccessCommand");
|
|
32
42
|
const UpdateGuidelineCommand_1 = require("./commands/UpdateGuidelineCommand");
|
|
33
43
|
const UpdateGuidelinesDirectoryCommand_1 = require("./commands/UpdateGuidelinesDirectoryCommand");
|
|
34
|
-
const
|
|
44
|
+
const UpdateSkillCommand_1 = require("./commands/UpdateSkillCommand");
|
|
45
|
+
const WilmaClient_1 = require("./WilmaClient");
|
|
35
46
|
const commands = {
|
|
36
47
|
CreateAgentCommand: CreateAgentCommand_1.CreateAgentCommand,
|
|
37
48
|
CreateGuidelineCommand: CreateGuidelineCommand_1.CreateGuidelineCommand,
|
|
38
49
|
CreateGuidelinesDirectoryCommand: CreateGuidelinesDirectoryCommand_1.CreateGuidelinesDirectoryCommand,
|
|
50
|
+
CreateSkillCommand: CreateSkillCommand_1.CreateSkillCommand,
|
|
51
|
+
CreateSkillFileUploadCommand: CreateSkillFileUploadCommand_1.CreateSkillFileUploadCommand,
|
|
39
52
|
DeleteAgentCommand: DeleteAgentCommand_1.DeleteAgentCommand,
|
|
40
53
|
DeleteChatCommand: DeleteChatCommand_1.DeleteChatCommand,
|
|
54
|
+
DeleteFileCommand: DeleteFileCommand_1.DeleteFileCommand,
|
|
41
55
|
DeleteGuidelineCommand: DeleteGuidelineCommand_1.DeleteGuidelineCommand,
|
|
42
56
|
DeleteGuidelinesDirectoryCommand: DeleteGuidelinesDirectoryCommand_1.DeleteGuidelinesDirectoryCommand,
|
|
57
|
+
DeleteSkillCommand: DeleteSkillCommand_1.DeleteSkillCommand,
|
|
58
|
+
DeleteSkillFileCommand: DeleteSkillFileCommand_1.DeleteSkillFileCommand,
|
|
43
59
|
DislikeAnswerCommand: DislikeAnswerCommand_1.DislikeAnswerCommand,
|
|
60
|
+
DownloadFileCommand: DownloadFileCommand_1.DownloadFileCommand,
|
|
44
61
|
ExecuteAgentCommand: ExecuteAgentCommand_1.ExecuteAgentCommand,
|
|
45
62
|
GetAgentCommand: GetAgentCommand_1.GetAgentCommand,
|
|
46
63
|
GetChatCommand: GetChatCommand_1.GetChatCommand,
|
|
64
|
+
GetFileCommand: GetFileCommand_1.GetFileCommand,
|
|
47
65
|
GetGuidelineCommand: GetGuidelineCommand_1.GetGuidelineCommand,
|
|
48
66
|
GetOrganizationSettingsCommand: GetOrganizationSettingsCommand_1.GetOrganizationSettingsCommand,
|
|
49
67
|
GetSettingsCommand: GetSettingsCommand_1.GetSettingsCommand,
|
|
68
|
+
GetSkillCommand: GetSkillCommand_1.GetSkillCommand,
|
|
69
|
+
GetSkillFileDownloadCommand: GetSkillFileDownloadCommand_1.GetSkillFileDownloadCommand,
|
|
50
70
|
LikeAnswerCommand: LikeAnswerCommand_1.LikeAnswerCommand,
|
|
51
71
|
ListAgentFeedbacksCommand: ListAgentFeedbacksCommand_1.ListAgentFeedbacksCommand,
|
|
52
72
|
ListAgentsCommand: ListAgentsCommand_1.ListAgentsCommand,
|
|
@@ -56,14 +76,16 @@ const commands = {
|
|
|
56
76
|
ListGuidelinesCommand: ListGuidelinesCommand_1.ListGuidelinesCommand,
|
|
57
77
|
ListGuidelinesDirectoriesCommand: ListGuidelinesDirectoriesCommand_1.ListGuidelinesDirectoriesCommand,
|
|
58
78
|
ListGuidelinesNamesCommand: ListGuidelinesNamesCommand_1.ListGuidelinesNamesCommand,
|
|
79
|
+
ListSkillsCommand: ListSkillsCommand_1.ListSkillsCommand,
|
|
59
80
|
PatchOrganizationSettingsCommand: PatchOrganizationSettingsCommand_1.PatchOrganizationSettingsCommand,
|
|
60
81
|
PatchSettingsCommand: PatchSettingsCommand_1.PatchSettingsCommand,
|
|
61
82
|
UpdateAgentCommand: UpdateAgentCommand_1.UpdateAgentCommand,
|
|
62
83
|
UpdateGuidelineCommand: UpdateGuidelineCommand_1.UpdateGuidelineCommand,
|
|
63
84
|
UpdateGuidelineAccessCommand: UpdateGuidelineAccessCommand_1.UpdateGuidelineAccessCommand,
|
|
64
85
|
UpdateGuidelinesDirectoryCommand: UpdateGuidelinesDirectoryCommand_1.UpdateGuidelinesDirectoryCommand,
|
|
86
|
+
UpdateSkillCommand: UpdateSkillCommand_1.UpdateSkillCommand,
|
|
65
87
|
};
|
|
66
88
|
class Wilma extends WilmaClient_1.WilmaClient {
|
|
67
89
|
}
|
|
68
90
|
exports.Wilma = Wilma;
|
|
69
|
-
(0,
|
|
91
|
+
(0, client_1.createAggregatedClient)(commands, Wilma);
|
package/dist-cjs/WilmaClient.js
CHANGED
|
@@ -1,38 +1,46 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.WilmaClient = exports.__Client = void 0;
|
|
4
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
5
|
+
const core_1 = require("@smithy/core");
|
|
6
|
+
const client_2 = require("@smithy/core/client");
|
|
7
|
+
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return client_2.Client; } });
|
|
8
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
9
|
+
const protocols_1 = require("@smithy/core/protocols");
|
|
10
|
+
const retry_1 = require("@smithy/core/retry");
|
|
11
|
+
const schema_1 = require("@smithy/core/schema");
|
|
12
|
+
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
4
14
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
5
15
|
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
6
|
-
|
|
7
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
8
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
9
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
10
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
11
|
-
const smithy_utils_1 = require("@wildix/smithy-utils");
|
|
12
|
-
class WilmaClient extends smithy_client_1.Client {
|
|
16
|
+
class WilmaClient extends client_2.Client {
|
|
13
17
|
config;
|
|
14
18
|
constructor(...[configuration]) {
|
|
15
|
-
|
|
19
|
+
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
16
20
|
super(_config_0);
|
|
17
21
|
this.initConfig = _config_0;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
const
|
|
22
|
-
const
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
this.
|
|
32
|
-
this.middlewareStack.
|
|
33
|
-
this.middlewareStack.use((0,
|
|
34
|
-
|
|
35
|
-
|
|
22
|
+
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
23
|
+
const _config_2 = (0, client_1.resolveUserAgentConfig)(_config_1);
|
|
24
|
+
const _config_3 = (0, retry_1.resolveRetryConfig)(_config_2);
|
|
25
|
+
const _config_4 = (0, client_1.resolveHostHeaderConfig)(_config_3);
|
|
26
|
+
const _config_5 = (0, endpoints_1.resolveEndpointConfig)(_config_4);
|
|
27
|
+
const _config_6 = (0, httpAuthSchemeProvider_1.resolveHttpAuthSchemeConfig)(_config_5);
|
|
28
|
+
const _config_7 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_6, configuration?.extensions || []);
|
|
29
|
+
this.config = _config_7;
|
|
30
|
+
this.middlewareStack.use((0, schema_1.getSchemaSerdePlugin)(this.config));
|
|
31
|
+
this.middlewareStack.use((0, client_1.getUserAgentPlugin)(this.config));
|
|
32
|
+
this.middlewareStack.use((0, retry_1.getRetryPlugin)(this.config));
|
|
33
|
+
this.middlewareStack.use((0, protocols_1.getContentLengthPlugin)(this.config));
|
|
34
|
+
this.middlewareStack.use((0, client_1.getHostHeaderPlugin)(this.config));
|
|
35
|
+
this.middlewareStack.use((0, client_1.getLoggerPlugin)(this.config));
|
|
36
|
+
this.middlewareStack.use((0, client_1.getRecursionDetectionPlugin)(this.config));
|
|
37
|
+
this.middlewareStack.use((0, core_1.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
38
|
+
httpAuthSchemeParametersProvider: httpAuthSchemeProvider_1.defaultWilmaHttpAuthSchemeParametersProvider,
|
|
39
|
+
identityProviderConfigProvider: async (config) => new core_1.DefaultIdentityProviderConfig({
|
|
40
|
+
"smithy.api#httpBearerAuth": config.token,
|
|
41
|
+
}),
|
|
42
|
+
}));
|
|
43
|
+
this.middlewareStack.use((0, core_1.getHttpSigningPlugin)(this.config));
|
|
36
44
|
}
|
|
37
45
|
destroy() {
|
|
38
46
|
super.destroy();
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.resolveHttpAuthRuntimeConfig = exports.getHttpAuthExtensionConfiguration = void 0;
|
|
4
|
+
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
5
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
6
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
7
|
+
let _token = runtimeConfig.token;
|
|
8
|
+
return {
|
|
9
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
10
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
11
|
+
if (index === -1) {
|
|
12
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
13
|
+
}
|
|
14
|
+
else {
|
|
15
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
httpAuthSchemes() {
|
|
19
|
+
return _httpAuthSchemes;
|
|
20
|
+
},
|
|
21
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
22
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
23
|
+
},
|
|
24
|
+
httpAuthSchemeProvider() {
|
|
25
|
+
return _httpAuthSchemeProvider;
|
|
26
|
+
},
|
|
27
|
+
setToken(token) {
|
|
28
|
+
_token = token;
|
|
29
|
+
},
|
|
30
|
+
token() {
|
|
31
|
+
return _token;
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
exports.getHttpAuthExtensionConfiguration = getHttpAuthExtensionConfiguration;
|
|
36
|
+
const resolveHttpAuthRuntimeConfig = (config) => {
|
|
37
|
+
return {
|
|
38
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
39
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
40
|
+
token: config.token(),
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
exports.resolveHttpAuthRuntimeConfig = resolveHttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.resolveHttpAuthSchemeConfig = exports.defaultWilmaHttpAuthSchemeProvider = exports.defaultWilmaHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const client_1 = require("@smithy/core/client");
|
|
6
|
+
const defaultWilmaHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
|
+
return {
|
|
8
|
+
operation: (0, client_1.getSmithyContext)(context).operation,
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
exports.defaultWilmaHttpAuthSchemeParametersProvider = defaultWilmaHttpAuthSchemeParametersProvider;
|
|
12
|
+
function createSmithyApiHttpBearerAuthHttpAuthOption(authParameters) {
|
|
13
|
+
return {
|
|
14
|
+
schemeId: "smithy.api#httpBearerAuth",
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
function createWildixAuthPbxHttpAuthOption(authParameters) {
|
|
18
|
+
return {
|
|
19
|
+
schemeId: "wildix.auth#pbx",
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
function createWildixAuthS2sHttpAuthOption(authParameters) {
|
|
23
|
+
return {
|
|
24
|
+
schemeId: "wildix.auth#s2s",
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
function createWildixAuthXbsHttpAuthOption(authParameters) {
|
|
28
|
+
return {
|
|
29
|
+
schemeId: "wildix.auth#xbs",
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
const defaultWilmaHttpAuthSchemeProvider = (authParameters) => {
|
|
33
|
+
const options = [];
|
|
34
|
+
switch (authParameters.operation) {
|
|
35
|
+
default: {
|
|
36
|
+
options.push(createSmithyApiHttpBearerAuthHttpAuthOption(authParameters));
|
|
37
|
+
options.push(createWildixAuthS2sHttpAuthOption(authParameters));
|
|
38
|
+
options.push(createWildixAuthPbxHttpAuthOption(authParameters));
|
|
39
|
+
options.push(createWildixAuthXbsHttpAuthOption(authParameters));
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
return options;
|
|
43
|
+
};
|
|
44
|
+
exports.defaultWilmaHttpAuthSchemeProvider = defaultWilmaHttpAuthSchemeProvider;
|
|
45
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
46
|
+
const token = (0, core_1.memoizeIdentityProvider)(config.token, core_1.isIdentityExpired, core_1.doesIdentityRequireRefresh);
|
|
47
|
+
return Object.assign(config, {
|
|
48
|
+
authSchemePreference: (0, client_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
49
|
+
token,
|
|
50
|
+
});
|
|
51
|
+
};
|
|
52
|
+
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CreateAgentCommand = exports.$Command = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class CreateAgentCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
13
14
|
})
|
|
14
15
|
.s("Wilma", "CreateAgent", {})
|
|
15
16
|
.n("WilmaClient", "CreateAgentCommand")
|
|
16
|
-
.
|
|
17
|
-
.ser(Aws_restJson1_1.se_CreateAgentCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_CreateAgentCommand)
|
|
17
|
+
.sc(schemas_0_1.CreateAgent$)
|
|
19
18
|
.build() {
|
|
20
19
|
}
|
|
21
20
|
exports.CreateAgentCommand = CreateAgentCommand;
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CreateGuidelineCommand = exports.$Command = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class CreateGuidelineCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
13
14
|
})
|
|
14
15
|
.s("Wilma", "CreateGuideline", {})
|
|
15
16
|
.n("WilmaClient", "CreateGuidelineCommand")
|
|
16
|
-
.
|
|
17
|
-
.ser(Aws_restJson1_1.se_CreateGuidelineCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_CreateGuidelineCommand)
|
|
17
|
+
.sc(schemas_0_1.CreateGuideline$)
|
|
19
18
|
.build() {
|
|
20
19
|
}
|
|
21
20
|
exports.CreateGuidelineCommand = CreateGuidelineCommand;
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CreateGuidelinesDirectoryCommand = exports.$Command = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class CreateGuidelinesDirectoryCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
13
14
|
})
|
|
14
15
|
.s("Wilma", "CreateGuidelinesDirectory", {})
|
|
15
16
|
.n("WilmaClient", "CreateGuidelinesDirectoryCommand")
|
|
16
|
-
.
|
|
17
|
-
.ser(Aws_restJson1_1.se_CreateGuidelinesDirectoryCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_CreateGuidelinesDirectoryCommand)
|
|
17
|
+
.sc(schemas_0_1.CreateGuidelinesDirectory$)
|
|
19
18
|
.build() {
|
|
20
19
|
}
|
|
21
20
|
exports.CreateGuidelinesDirectoryCommand = CreateGuidelinesDirectoryCommand;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateSkillCommand = exports.$Command = void 0;
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class CreateSkillCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("Wilma", "CreateSkill", {})
|
|
16
|
+
.n("WilmaClient", "CreateSkillCommand")
|
|
17
|
+
.sc(schemas_0_1.CreateSkill$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
20
|
+
exports.CreateSkillCommand = CreateSkillCommand;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateSkillFileUploadCommand = exports.$Command = void 0;
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class CreateSkillFileUploadCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("Wilma", "CreateSkillFileUpload", {})
|
|
16
|
+
.n("WilmaClient", "CreateSkillFileUploadCommand")
|
|
17
|
+
.sc(schemas_0_1.CreateSkillFileUpload$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
20
|
+
exports.CreateSkillFileUploadCommand = CreateSkillFileUploadCommand;
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DeleteAgentCommand = exports.$Command = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class DeleteAgentCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
13
14
|
})
|
|
14
15
|
.s("Wilma", "DeleteAgent", {})
|
|
15
16
|
.n("WilmaClient", "DeleteAgentCommand")
|
|
16
|
-
.
|
|
17
|
-
.ser(Aws_restJson1_1.se_DeleteAgentCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_DeleteAgentCommand)
|
|
17
|
+
.sc(schemas_0_1.DeleteAgent$)
|
|
19
18
|
.build() {
|
|
20
19
|
}
|
|
21
20
|
exports.DeleteAgentCommand = DeleteAgentCommand;
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DeleteChatCommand = exports.$Command = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class DeleteChatCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
13
14
|
})
|
|
14
15
|
.s("Wilma", "DeleteChat", {})
|
|
15
16
|
.n("WilmaClient", "DeleteChatCommand")
|
|
16
|
-
.
|
|
17
|
-
.ser(Aws_restJson1_1.se_DeleteChatCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_DeleteChatCommand)
|
|
17
|
+
.sc(schemas_0_1.DeleteChat$)
|
|
19
18
|
.build() {
|
|
20
19
|
}
|
|
21
20
|
exports.DeleteChatCommand = DeleteChatCommand;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteFileCommand = exports.$Command = void 0;
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class DeleteFileCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("Wilma", "DeleteFile", {})
|
|
16
|
+
.n("WilmaClient", "DeleteFileCommand")
|
|
17
|
+
.sc(schemas_0_1.DeleteFile$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
20
|
+
exports.DeleteFileCommand = DeleteFileCommand;
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DeleteGuidelineCommand = exports.$Command = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class DeleteGuidelineCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
13
14
|
})
|
|
14
15
|
.s("Wilma", "DeleteGuideline", {})
|
|
15
16
|
.n("WilmaClient", "DeleteGuidelineCommand")
|
|
16
|
-
.
|
|
17
|
-
.ser(Aws_restJson1_1.se_DeleteGuidelineCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_DeleteGuidelineCommand)
|
|
17
|
+
.sc(schemas_0_1.DeleteGuideline$)
|
|
19
18
|
.build() {
|
|
20
19
|
}
|
|
21
20
|
exports.DeleteGuidelineCommand = DeleteGuidelineCommand;
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DeleteGuidelinesDirectoryCommand = exports.$Command = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class DeleteGuidelinesDirectoryCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
13
14
|
})
|
|
14
15
|
.s("Wilma", "DeleteGuidelinesDirectory", {})
|
|
15
16
|
.n("WilmaClient", "DeleteGuidelinesDirectoryCommand")
|
|
16
|
-
.
|
|
17
|
-
.ser(Aws_restJson1_1.se_DeleteGuidelinesDirectoryCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_DeleteGuidelinesDirectoryCommand)
|
|
17
|
+
.sc(schemas_0_1.DeleteGuidelinesDirectory$)
|
|
19
18
|
.build() {
|
|
20
19
|
}
|
|
21
20
|
exports.DeleteGuidelinesDirectoryCommand = DeleteGuidelinesDirectoryCommand;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteSkillCommand = exports.$Command = void 0;
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class DeleteSkillCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("Wilma", "DeleteSkill", {})
|
|
16
|
+
.n("WilmaClient", "DeleteSkillCommand")
|
|
17
|
+
.sc(schemas_0_1.DeleteSkill$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
20
|
+
exports.DeleteSkillCommand = DeleteSkillCommand;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteSkillFileCommand = exports.$Command = void 0;
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return client_1.Command; } });
|
|
6
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
7
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
8
|
+
const schemas_0_1 = require("../schemas/schemas_0");
|
|
9
|
+
class DeleteSkillFileCommand extends client_1.Command
|
|
10
|
+
.classBuilder()
|
|
11
|
+
.ep(EndpointParameters_1.commonParams)
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [(0, endpoints_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("Wilma", "DeleteSkillFile", {})
|
|
16
|
+
.n("WilmaClient", "DeleteSkillFileCommand")
|
|
17
|
+
.sc(schemas_0_1.DeleteSkillFile$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
20
|
+
exports.DeleteSkillFileCommand = DeleteSkillFileCommand;
|