@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,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { GetGuidelineInput, GetGuidelineOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetGuidelineCommandInput, GetGuidelineCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetGuidelineCommandInput): import("@smithy/smithy-client").CommandImpl<GetGuidelineCommandInput, GetGuidelineCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { GetOrganizationSettingsInput, GetOrganizationSettingsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetOrganizationSettingsCommandInput, GetOrganizationSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetOrganizationSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetOrganizationSettingsCommandInput, GetOrganizationSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { GetSettingsInput, GetSettingsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<GetSettingsCommandInput, GetSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetSettingsCommandInput, GetSettingsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { LikeAnswerInput, LikeAnswerOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<LikeAnswerCommandInput, LikeAnswerCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: LikeAnswerCommandInput): import("@smithy/smithy-client").CommandImpl<LikeAnswerCommandInput, LikeAnswerCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { ListAgentFeedbacksInput, ListAgentFeedbacksOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<ListAgentFeedbacksCommandInput, ListAgentFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: ListAgentFeedbacksCommandInput): import("@smithy/smithy-client").CommandImpl<ListAgentFeedbacksCommandInput, ListAgentFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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 { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { ListAgentsInput, ListAgentsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListAgentsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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",
@@ -48,6 +52,9 @@ declare const ListAgentsCommand_base: {
48
52
  * // guidelines: [ // AgentGuidelinesList
49
53
  * // "STRING_VALUE",
50
54
  * // ],
55
+ * // skills: [ // AgentSkillsList
56
+ * // "STRING_VALUE",
57
+ * // ],
51
58
  * // variables: [ // AgentVariablesList
52
59
  * // { // AgentVariable
53
60
  * // name: "STRING_VALUE", // required
@@ -78,6 +85,49 @@ declare const ListAgentsCommand_base: {
78
85
  * // knowledgeBaseId: "STRING_VALUE",
79
86
  * // instructions: "STRING_VALUE",
80
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
+ * // },
81
131
  * // },
82
132
  * // ],
83
133
  * // model: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { ListAgentsNamesInput, ListAgentsNamesOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
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/smithy-client").CommandImpl<ListAgentsNamesCommandInput, ListAgentsNamesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListAgentsNamesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAgentsNamesCommandInput, ListAgentsNamesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
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",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { ListChatsInput, ListChatsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListChatsInput, ListChatsOutput } 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 ListChatsCommandInput extends ListChatsInput {
22
22
  export interface ListChatsCommandOutput extends ListChatsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListChatsCommand_base: {
25
- new (input: ListChatsCommandInput): import("@smithy/smithy-client").CommandImpl<ListChatsCommandInput, ListChatsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListChatsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListChatsCommandInput, ListChatsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListChatsCommandInput): import("@smithy/core/client").CommandImpl<ListChatsCommandInput, ListChatsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListChatsCommandInput]): import("@smithy/core/client").CommandImpl<ListChatsCommandInput, ListChatsCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Lists recent chats available to the user.
@@ -33,6 +35,8 @@ declare const ListChatsCommand_base: {
33
35
  * ```javascript
34
36
  * import { WilmaClient, ListChatsCommand } from "@wildix/wim-wilma-client"; // ES Modules import
35
37
  * // const { WilmaClient, ListChatsCommand } = 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 = { // ListChatsInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { ListFeedbacksInput, ListFeedbacksOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListFeedbacksInput, ListFeedbacksOutput } 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 ListFeedbacksCommandInput extends ListFeedbacksInput {
22
22
  export interface ListFeedbacksCommandOutput extends ListFeedbacksOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListFeedbacksCommand_base: {
25
- new (input: ListFeedbacksCommandInput): import("@smithy/smithy-client").CommandImpl<ListFeedbacksCommandInput, ListFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListFeedbacksCommandInput]): import("@smithy/smithy-client").CommandImpl<ListFeedbacksCommandInput, ListFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListFeedbacksCommandInput): import("@smithy/core/client").CommandImpl<ListFeedbacksCommandInput, ListFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListFeedbacksCommandInput]): import("@smithy/core/client").CommandImpl<ListFeedbacksCommandInput, ListFeedbacksCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Lists recent feedbacks for the organization.
@@ -33,6 +35,8 @@ declare const ListFeedbacksCommand_base: {
33
35
  * ```javascript
34
36
  * import { WilmaClient, ListFeedbacksCommand } from "@wildix/wim-wilma-client"; // ES Modules import
35
37
  * // const { WilmaClient, ListFeedbacksCommand } = 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 = { // ListFeedbacksInput
38
42
  * company: "STRING_VALUE",
@@ -1,7 +1,7 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WilmaClientResolvedConfig } from "../WilmaClient";
2
- import { ListGuidelinesInput, ListGuidelinesOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListGuidelinesInput, ListGuidelinesOutput } 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 ListGuidelinesCommandInput extends ListGuidelinesInput {
22
22
  export interface ListGuidelinesCommandOutput extends ListGuidelinesOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListGuidelinesCommand_base: {
25
- new (input: ListGuidelinesCommandInput): import("@smithy/smithy-client").CommandImpl<ListGuidelinesCommandInput, ListGuidelinesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListGuidelinesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListGuidelinesCommandInput, ListGuidelinesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListGuidelinesCommandInput): import("@smithy/core/client").CommandImpl<ListGuidelinesCommandInput, ListGuidelinesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListGuidelinesCommandInput]): import("@smithy/core/client").CommandImpl<ListGuidelinesCommandInput, ListGuidelinesCommandOutput, WilmaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Lists all guidelines available to the user.
@@ -33,6 +35,8 @@ declare const ListGuidelinesCommand_base: {
33
35
  * ```javascript
34
36
  * import { WilmaClient, ListGuidelinesCommand } from "@wildix/wim-wilma-client"; // ES Modules import
35
37
  * // const { WilmaClient, ListGuidelinesCommand } = 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 = { // ListGuidelinesInput
38
42
  * company: "STRING_VALUE",