@wildix/wim-wilma-client 0.0.12 → 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.
Files changed (183) hide show
  1. package/dist-cjs/Wilma.js +25 -3
  2. package/dist-cjs/WilmaClient.js +34 -26
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +52 -0
  5. package/dist-cjs/commands/CreateAgentCommand.js +10 -11
  6. package/dist-cjs/commands/CreateGuidelineCommand.js +10 -11
  7. package/dist-cjs/commands/CreateGuidelinesDirectoryCommand.js +10 -11
  8. package/dist-cjs/commands/CreateSkillCommand.js +20 -0
  9. package/dist-cjs/commands/CreateSkillFileUploadCommand.js +20 -0
  10. package/dist-cjs/commands/DeleteAgentCommand.js +10 -11
  11. package/dist-cjs/commands/DeleteChatCommand.js +10 -11
  12. package/dist-cjs/commands/DeleteFileCommand.js +20 -0
  13. package/dist-cjs/commands/DeleteGuidelineCommand.js +10 -11
  14. package/dist-cjs/commands/DeleteGuidelinesDirectoryCommand.js +10 -11
  15. package/dist-cjs/commands/DeleteSkillCommand.js +20 -0
  16. package/dist-cjs/commands/DeleteSkillFileCommand.js +20 -0
  17. package/dist-cjs/commands/DislikeAnswerCommand.js +10 -11
  18. package/dist-cjs/commands/DownloadFileCommand.js +20 -0
  19. package/dist-cjs/commands/ExecuteAgentCommand.js +10 -11
  20. package/dist-cjs/commands/GetAgentCommand.js +10 -11
  21. package/dist-cjs/commands/GetChatCommand.js +10 -11
  22. package/dist-cjs/commands/GetFileCommand.js +20 -0
  23. package/dist-cjs/commands/GetGuidelineCommand.js +10 -11
  24. package/dist-cjs/commands/GetOrganizationSettingsCommand.js +10 -11
  25. package/dist-cjs/commands/GetSettingsCommand.js +10 -11
  26. package/dist-cjs/commands/GetSkillCommand.js +20 -0
  27. package/dist-cjs/commands/GetSkillFileDownloadCommand.js +20 -0
  28. package/dist-cjs/commands/LikeAnswerCommand.js +10 -11
  29. package/dist-cjs/commands/ListAgentFeedbacksCommand.js +10 -11
  30. package/dist-cjs/commands/ListAgentsCommand.js +10 -11
  31. package/dist-cjs/commands/ListAgentsNamesCommand.js +10 -11
  32. package/dist-cjs/commands/ListChatsCommand.js +10 -11
  33. package/dist-cjs/commands/ListFeedbacksCommand.js +10 -11
  34. package/dist-cjs/commands/ListGuidelinesCommand.js +10 -11
  35. package/dist-cjs/commands/ListGuidelinesDirectoriesCommand.js +10 -11
  36. package/dist-cjs/commands/ListGuidelinesNamesCommand.js +10 -11
  37. package/dist-cjs/commands/ListSkillsCommand.js +20 -0
  38. package/dist-cjs/commands/PatchOrganizationSettingsCommand.js +10 -11
  39. package/dist-cjs/commands/PatchSettingsCommand.js +10 -11
  40. package/dist-cjs/commands/UpdateAgentCommand.js +10 -11
  41. package/dist-cjs/commands/UpdateGuidelineAccessCommand.js +10 -11
  42. package/dist-cjs/commands/UpdateGuidelineCommand.js +10 -11
  43. package/dist-cjs/commands/UpdateGuidelinesDirectoryCommand.js +10 -11
  44. package/dist-cjs/commands/UpdateSkillCommand.js +20 -0
  45. package/dist-cjs/commands/index.js +12 -1
  46. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  47. package/dist-cjs/endpoint/bdd.js +28 -0
  48. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  49. package/dist-cjs/index.js +4 -1
  50. package/dist-cjs/models/WilmaServiceException.js +3 -3
  51. package/dist-cjs/models/enums.js +45 -0
  52. package/dist-cjs/models/errors.js +43 -0
  53. package/dist-cjs/models/models_0.js +0 -96
  54. package/dist-cjs/runtimeConfig.browser.js +11 -11
  55. package/dist-cjs/runtimeConfig.js +22 -18
  56. package/dist-cjs/runtimeConfig.shared.js +30 -10
  57. package/dist-cjs/runtimeExtensions.js +6 -5
  58. package/dist-cjs/schemas/schemas_0.js +1110 -0
  59. package/dist-es/Wilma.js +27 -5
  60. package/dist-es/WilmaClient.js +30 -22
  61. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  62. package/dist-es/auth/httpAuthSchemeProvider.js +46 -0
  63. package/dist-es/commands/CreateAgentCommand.js +9 -10
  64. package/dist-es/commands/CreateGuidelineCommand.js +9 -10
  65. package/dist-es/commands/CreateGuidelinesDirectoryCommand.js +9 -10
  66. package/dist-es/commands/CreateSkillCommand.js +16 -0
  67. package/dist-es/commands/CreateSkillFileUploadCommand.js +16 -0
  68. package/dist-es/commands/DeleteAgentCommand.js +9 -10
  69. package/dist-es/commands/DeleteChatCommand.js +9 -10
  70. package/dist-es/commands/DeleteFileCommand.js +16 -0
  71. package/dist-es/commands/DeleteGuidelineCommand.js +9 -10
  72. package/dist-es/commands/DeleteGuidelinesDirectoryCommand.js +9 -10
  73. package/dist-es/commands/DeleteSkillCommand.js +16 -0
  74. package/dist-es/commands/DeleteSkillFileCommand.js +16 -0
  75. package/dist-es/commands/DislikeAnswerCommand.js +9 -10
  76. package/dist-es/commands/DownloadFileCommand.js +16 -0
  77. package/dist-es/commands/ExecuteAgentCommand.js +9 -10
  78. package/dist-es/commands/GetAgentCommand.js +9 -10
  79. package/dist-es/commands/GetChatCommand.js +9 -10
  80. package/dist-es/commands/GetFileCommand.js +16 -0
  81. package/dist-es/commands/GetGuidelineCommand.js +9 -10
  82. package/dist-es/commands/GetOrganizationSettingsCommand.js +9 -10
  83. package/dist-es/commands/GetSettingsCommand.js +9 -10
  84. package/dist-es/commands/GetSkillCommand.js +16 -0
  85. package/dist-es/commands/GetSkillFileDownloadCommand.js +16 -0
  86. package/dist-es/commands/LikeAnswerCommand.js +9 -10
  87. package/dist-es/commands/ListAgentFeedbacksCommand.js +9 -10
  88. package/dist-es/commands/ListAgentsCommand.js +9 -10
  89. package/dist-es/commands/ListAgentsNamesCommand.js +9 -10
  90. package/dist-es/commands/ListChatsCommand.js +9 -10
  91. package/dist-es/commands/ListFeedbacksCommand.js +9 -10
  92. package/dist-es/commands/ListGuidelinesCommand.js +9 -10
  93. package/dist-es/commands/ListGuidelinesDirectoriesCommand.js +9 -10
  94. package/dist-es/commands/ListGuidelinesNamesCommand.js +9 -10
  95. package/dist-es/commands/ListSkillsCommand.js +16 -0
  96. package/dist-es/commands/PatchOrganizationSettingsCommand.js +9 -10
  97. package/dist-es/commands/PatchSettingsCommand.js +9 -10
  98. package/dist-es/commands/UpdateAgentCommand.js +9 -10
  99. package/dist-es/commands/UpdateGuidelineAccessCommand.js +9 -10
  100. package/dist-es/commands/UpdateGuidelineCommand.js +9 -10
  101. package/dist-es/commands/UpdateGuidelinesDirectoryCommand.js +9 -10
  102. package/dist-es/commands/UpdateSkillCommand.js +16 -0
  103. package/dist-es/commands/index.js +12 -1
  104. package/dist-es/endpoint/EndpointParameters.js +12 -0
  105. package/dist-es/endpoint/bdd.js +25 -0
  106. package/dist-es/endpoint/endpointResolver.js +12 -0
  107. package/dist-es/index.js +4 -1
  108. package/dist-es/models/WilmaServiceException.js +1 -1
  109. package/dist-es/models/enums.js +42 -0
  110. package/dist-es/models/errors.js +37 -0
  111. package/dist-es/models/models_0.js +1 -92
  112. package/dist-es/runtimeConfig.browser.js +7 -7
  113. package/dist-es/runtimeConfig.js +17 -13
  114. package/dist-es/runtimeConfig.shared.js +24 -4
  115. package/dist-es/runtimeExtensions.js +6 -5
  116. package/dist-es/schemas/schemas_0.js +1104 -0
  117. package/dist-types/Wilma.d.ts +108 -30
  118. package/dist-types/WilmaClient.d.ts +72 -43
  119. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  120. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  121. package/dist-types/commands/CreateAgentCommand.d.ts +103 -7
  122. package/dist-types/commands/CreateGuidelineCommand.d.ts +11 -7
  123. package/dist-types/commands/CreateGuidelinesDirectoryCommand.d.ts +11 -7
  124. package/dist-types/commands/CreateSkillCommand.d.ts +103 -0
  125. package/dist-types/commands/CreateSkillFileUploadCommand.d.ts +99 -0
  126. package/dist-types/commands/DeleteAgentCommand.d.ts +11 -7
  127. package/dist-types/commands/DeleteChatCommand.d.ts +11 -7
  128. package/dist-types/commands/DeleteFileCommand.d.ts +80 -0
  129. package/dist-types/commands/DeleteGuidelineCommand.d.ts +11 -7
  130. package/dist-types/commands/DeleteGuidelinesDirectoryCommand.d.ts +11 -7
  131. package/dist-types/commands/DeleteSkillCommand.d.ts +80 -0
  132. package/dist-types/commands/DeleteSkillFileCommand.d.ts +83 -0
  133. package/dist-types/commands/DislikeAnswerCommand.d.ts +11 -7
  134. package/dist-types/commands/DownloadFileCommand.d.ts +95 -0
  135. package/dist-types/commands/ExecuteAgentCommand.d.ts +28 -7
  136. package/dist-types/commands/GetAgentCommand.d.ts +57 -7
  137. package/dist-types/commands/GetChatCommand.d.ts +11 -7
  138. package/dist-types/commands/GetFileCommand.d.ts +93 -0
  139. package/dist-types/commands/GetGuidelineCommand.d.ts +11 -7
  140. package/dist-types/commands/GetOrganizationSettingsCommand.d.ts +11 -7
  141. package/dist-types/commands/GetSettingsCommand.d.ts +11 -7
  142. package/dist-types/commands/GetSkillCommand.d.ts +103 -0
  143. package/dist-types/commands/GetSkillFileDownloadCommand.d.ts +86 -0
  144. package/dist-types/commands/LikeAnswerCommand.d.ts +11 -7
  145. package/dist-types/commands/ListAgentFeedbacksCommand.d.ts +11 -7
  146. package/dist-types/commands/ListAgentsCommand.d.ts +57 -7
  147. package/dist-types/commands/ListAgentsNamesCommand.d.ts +11 -7
  148. package/dist-types/commands/ListChatsCommand.d.ts +11 -7
  149. package/dist-types/commands/ListFeedbacksCommand.d.ts +11 -7
  150. package/dist-types/commands/ListGuidelinesCommand.d.ts +11 -7
  151. package/dist-types/commands/ListGuidelinesDirectoriesCommand.d.ts +11 -7
  152. package/dist-types/commands/ListGuidelinesNamesCommand.d.ts +11 -7
  153. package/dist-types/commands/ListSkillsCommand.d.ts +92 -0
  154. package/dist-types/commands/PatchOrganizationSettingsCommand.d.ts +11 -7
  155. package/dist-types/commands/PatchSettingsCommand.d.ts +11 -7
  156. package/dist-types/commands/UpdateAgentCommand.d.ts +103 -7
  157. package/dist-types/commands/UpdateGuidelineAccessCommand.d.ts +11 -7
  158. package/dist-types/commands/UpdateGuidelineCommand.d.ts +11 -7
  159. package/dist-types/commands/UpdateGuidelinesDirectoryCommand.d.ts +11 -7
  160. package/dist-types/commands/UpdateSkillCommand.d.ts +106 -0
  161. package/dist-types/commands/index.d.ts +12 -1
  162. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  163. package/dist-types/endpoint/bdd.d.ts +2 -0
  164. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  165. package/dist-types/extensionConfiguration.d.ts +4 -3
  166. package/dist-types/index.d.ts +5 -1
  167. package/dist-types/models/WilmaServiceException.d.ts +1 -1
  168. package/dist-types/models/enums.d.ts +129 -0
  169. package/dist-types/models/errors.d.ts +35 -0
  170. package/dist-types/models/models_0.d.ts +628 -153
  171. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  172. package/dist-types/runtimeConfig.d.ts +34 -15
  173. package/dist-types/runtimeConfig.native.d.ts +36 -17
  174. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  175. package/dist-types/runtimeExtensions.d.ts +1 -1
  176. package/dist-types/schemas/schemas_0.d.ts +172 -0
  177. package/package.json +14 -40
  178. package/dist-cjs/models/index.js +0 -4
  179. package/dist-cjs/protocols/Aws_restJson1.js +0 -1127
  180. package/dist-es/models/index.js +0 -1
  181. package/dist-es/protocols/Aws_restJson1.js +0 -1065
  182. package/dist-types/models/index.d.ts +0 -1
  183. package/dist-types/protocols/Aws_restJson1.d.ts +0 -263
@@ -1,17 +1,16 @@
1
- import { de_GetChatCommand, se_GetChatCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetChat$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class GetChatCommand extends $Command.classBuilder()
6
+ export class GetChatCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "GetChat", {})
12
13
  .n("WilmaClient", "GetChatCommand")
13
- .f(void 0, void 0)
14
- .ser(se_GetChatCommand)
15
- .de(de_GetChatCommand)
14
+ .sc(GetChat$)
16
15
  .build() {
17
16
  }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetFile$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetFileCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Wilma", "GetFile", {})
13
+ .n("WilmaClient", "GetFileCommand")
14
+ .sc(GetFile$)
15
+ .build() {
16
+ }
@@ -1,17 +1,16 @@
1
- import { de_GetGuidelineCommand, se_GetGuidelineCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetGuideline$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class GetGuidelineCommand extends $Command.classBuilder()
6
+ export class GetGuidelineCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "GetGuideline", {})
12
13
  .n("WilmaClient", "GetGuidelineCommand")
13
- .f(void 0, void 0)
14
- .ser(se_GetGuidelineCommand)
15
- .de(de_GetGuidelineCommand)
14
+ .sc(GetGuideline$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_GetOrganizationSettingsCommand, se_GetOrganizationSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetOrganizationSettings$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class GetOrganizationSettingsCommand extends $Command.classBuilder()
6
+ export class GetOrganizationSettingsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "GetOrganizationSettings", {})
12
13
  .n("WilmaClient", "GetOrganizationSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_GetOrganizationSettingsCommand)
15
- .de(de_GetOrganizationSettingsCommand)
14
+ .sc(GetOrganizationSettings$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_GetSettingsCommand, se_GetSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetSettings$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class GetSettingsCommand extends $Command.classBuilder()
6
+ export class GetSettingsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "GetSettings", {})
12
13
  .n("WilmaClient", "GetSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_GetSettingsCommand)
15
- .de(de_GetSettingsCommand)
14
+ .sc(GetSettings$)
16
15
  .build() {
17
16
  }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetSkill$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetSkillCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Wilma", "GetSkill", {})
13
+ .n("WilmaClient", "GetSkillCommand")
14
+ .sc(GetSkill$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetSkillFileDownload$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetSkillFileDownloadCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Wilma", "GetSkillFileDownload", {})
13
+ .n("WilmaClient", "GetSkillFileDownloadCommand")
14
+ .sc(GetSkillFileDownload$)
15
+ .build() {
16
+ }
@@ -1,17 +1,16 @@
1
- import { de_LikeAnswerCommand, se_LikeAnswerCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { LikeAnswer$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class LikeAnswerCommand extends $Command.classBuilder()
6
+ export class LikeAnswerCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "LikeAnswer", {})
12
13
  .n("WilmaClient", "LikeAnswerCommand")
13
- .f(void 0, void 0)
14
- .ser(se_LikeAnswerCommand)
15
- .de(de_LikeAnswerCommand)
14
+ .sc(LikeAnswer$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListAgentFeedbacksCommand, se_ListAgentFeedbacksCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAgentFeedbacks$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListAgentFeedbacksCommand extends $Command.classBuilder()
6
+ export class ListAgentFeedbacksCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListAgentFeedbacks", {})
12
13
  .n("WilmaClient", "ListAgentFeedbacksCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListAgentFeedbacksCommand)
15
- .de(de_ListAgentFeedbacksCommand)
14
+ .sc(ListAgentFeedbacks$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListAgentsCommand, se_ListAgentsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAgents$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListAgentsCommand extends $Command.classBuilder()
6
+ export class ListAgentsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListAgents", {})
12
13
  .n("WilmaClient", "ListAgentsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListAgentsCommand)
15
- .de(de_ListAgentsCommand)
14
+ .sc(ListAgents$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListAgentsNamesCommand, se_ListAgentsNamesCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAgentsNames$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListAgentsNamesCommand extends $Command.classBuilder()
6
+ export class ListAgentsNamesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListAgentsNames", {})
12
13
  .n("WilmaClient", "ListAgentsNamesCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListAgentsNamesCommand)
15
- .de(de_ListAgentsNamesCommand)
14
+ .sc(ListAgentsNames$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListChatsCommand, se_ListChatsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListChats$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListChatsCommand extends $Command.classBuilder()
6
+ export class ListChatsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListChats", {})
12
13
  .n("WilmaClient", "ListChatsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListChatsCommand)
15
- .de(de_ListChatsCommand)
14
+ .sc(ListChats$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListFeedbacksCommand, se_ListFeedbacksCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListFeedbacks$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListFeedbacksCommand extends $Command.classBuilder()
6
+ export class ListFeedbacksCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListFeedbacks", {})
12
13
  .n("WilmaClient", "ListFeedbacksCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListFeedbacksCommand)
15
- .de(de_ListFeedbacksCommand)
14
+ .sc(ListFeedbacks$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListGuidelinesCommand, se_ListGuidelinesCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListGuidelines$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListGuidelinesCommand extends $Command.classBuilder()
6
+ export class ListGuidelinesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListGuidelines", {})
12
13
  .n("WilmaClient", "ListGuidelinesCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListGuidelinesCommand)
15
- .de(de_ListGuidelinesCommand)
14
+ .sc(ListGuidelines$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListGuidelinesDirectoriesCommand, se_ListGuidelinesDirectoriesCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListGuidelinesDirectories$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListGuidelinesDirectoriesCommand extends $Command.classBuilder()
6
+ export class ListGuidelinesDirectoriesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListGuidelinesDirectories", {})
12
13
  .n("WilmaClient", "ListGuidelinesDirectoriesCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListGuidelinesDirectoriesCommand)
15
- .de(de_ListGuidelinesDirectoriesCommand)
14
+ .sc(ListGuidelinesDirectories$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_ListGuidelinesNamesCommand, se_ListGuidelinesNamesCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListGuidelinesNames$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class ListGuidelinesNamesCommand extends $Command.classBuilder()
6
+ export class ListGuidelinesNamesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "ListGuidelinesNames", {})
12
13
  .n("WilmaClient", "ListGuidelinesNamesCommand")
13
- .f(void 0, void 0)
14
- .ser(se_ListGuidelinesNamesCommand)
15
- .de(de_ListGuidelinesNamesCommand)
14
+ .sc(ListGuidelinesNames$)
16
15
  .build() {
17
16
  }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListSkills$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListSkillsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Wilma", "ListSkills", {})
13
+ .n("WilmaClient", "ListSkillsCommand")
14
+ .sc(ListSkills$)
15
+ .build() {
16
+ }
@@ -1,17 +1,16 @@
1
- import { de_PatchOrganizationSettingsCommand, se_PatchOrganizationSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { PatchOrganizationSettings$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class PatchOrganizationSettingsCommand extends $Command.classBuilder()
6
+ export class PatchOrganizationSettingsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "PatchOrganizationSettings", {})
12
13
  .n("WilmaClient", "PatchOrganizationSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_PatchOrganizationSettingsCommand)
15
- .de(de_PatchOrganizationSettingsCommand)
14
+ .sc(PatchOrganizationSettings$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_PatchSettingsCommand, se_PatchSettingsCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { PatchSettings$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class PatchSettingsCommand extends $Command.classBuilder()
6
+ export class PatchSettingsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "PatchSettings", {})
12
13
  .n("WilmaClient", "PatchSettingsCommand")
13
- .f(void 0, void 0)
14
- .ser(se_PatchSettingsCommand)
15
- .de(de_PatchSettingsCommand)
14
+ .sc(PatchSettings$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_UpdateAgentCommand, se_UpdateAgentCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateAgent$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class UpdateAgentCommand extends $Command.classBuilder()
6
+ export class UpdateAgentCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "UpdateAgent", {})
12
13
  .n("WilmaClient", "UpdateAgentCommand")
13
- .f(void 0, void 0)
14
- .ser(se_UpdateAgentCommand)
15
- .de(de_UpdateAgentCommand)
14
+ .sc(UpdateAgent$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_UpdateGuidelineAccessCommand, se_UpdateGuidelineAccessCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateGuidelineAccess$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class UpdateGuidelineAccessCommand extends $Command.classBuilder()
6
+ export class UpdateGuidelineAccessCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "UpdateGuidelineAccess", {})
12
13
  .n("WilmaClient", "UpdateGuidelineAccessCommand")
13
- .f(void 0, void 0)
14
- .ser(se_UpdateGuidelineAccessCommand)
15
- .de(de_UpdateGuidelineAccessCommand)
14
+ .sc(UpdateGuidelineAccess$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_UpdateGuidelineCommand, se_UpdateGuidelineCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateGuideline$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class UpdateGuidelineCommand extends $Command.classBuilder()
6
+ export class UpdateGuidelineCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "UpdateGuideline", {})
12
13
  .n("WilmaClient", "UpdateGuidelineCommand")
13
- .f(void 0, void 0)
14
- .ser(se_UpdateGuidelineCommand)
15
- .de(de_UpdateGuidelineCommand)
14
+ .sc(UpdateGuideline$)
16
15
  .build() {
17
16
  }
@@ -1,17 +1,16 @@
1
- import { de_UpdateGuidelinesDirectoryCommand, se_UpdateGuidelinesDirectoryCommand, } from "../protocols/Aws_restJson1";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateGuidelinesDirectory$ } from "../schemas/schemas_0";
4
5
  export { $Command };
5
- export class UpdateGuidelinesDirectoryCommand extends $Command.classBuilder()
6
+ export class UpdateGuidelinesDirectoryCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
6
9
  .m(function (Command, cs, config, o) {
7
- return [
8
- getSerdePlugin(config, this.serialize, this.deserialize),
9
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10
11
  })
11
12
  .s("Wilma", "UpdateGuidelinesDirectory", {})
12
13
  .n("WilmaClient", "UpdateGuidelinesDirectoryCommand")
13
- .f(void 0, void 0)
14
- .ser(se_UpdateGuidelinesDirectoryCommand)
15
- .de(de_UpdateGuidelinesDirectoryCommand)
14
+ .sc(UpdateGuidelinesDirectory$)
16
15
  .build() {
17
16
  }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateSkill$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateSkillCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Wilma", "UpdateSkill", {})
13
+ .n("WilmaClient", "UpdateSkillCommand")
14
+ .sc(UpdateSkill$)
15
+ .build() {
16
+ }