@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 +0,0 @@
1
- export * from "./models_0";
@@ -1,263 +0,0 @@
1
- import { CreateAgentCommandInput, CreateAgentCommandOutput } from "../commands/CreateAgentCommand";
2
- import { CreateGuidelineCommandInput, CreateGuidelineCommandOutput } from "../commands/CreateGuidelineCommand";
3
- import { CreateGuidelinesDirectoryCommandInput, CreateGuidelinesDirectoryCommandOutput } from "../commands/CreateGuidelinesDirectoryCommand";
4
- import { DeleteAgentCommandInput, DeleteAgentCommandOutput } from "../commands/DeleteAgentCommand";
5
- import { DeleteChatCommandInput, DeleteChatCommandOutput } from "../commands/DeleteChatCommand";
6
- import { DeleteGuidelineCommandInput, DeleteGuidelineCommandOutput } from "../commands/DeleteGuidelineCommand";
7
- import { DeleteGuidelinesDirectoryCommandInput, DeleteGuidelinesDirectoryCommandOutput } from "../commands/DeleteGuidelinesDirectoryCommand";
8
- import { DislikeAnswerCommandInput, DislikeAnswerCommandOutput } from "../commands/DislikeAnswerCommand";
9
- import { ExecuteAgentCommandInput, ExecuteAgentCommandOutput } from "../commands/ExecuteAgentCommand";
10
- import { GetAgentCommandInput, GetAgentCommandOutput } from "../commands/GetAgentCommand";
11
- import { GetChatCommandInput, GetChatCommandOutput } from "../commands/GetChatCommand";
12
- import { GetGuidelineCommandInput, GetGuidelineCommandOutput } from "../commands/GetGuidelineCommand";
13
- import { GetOrganizationSettingsCommandInput, GetOrganizationSettingsCommandOutput } from "../commands/GetOrganizationSettingsCommand";
14
- import { GetSettingsCommandInput, GetSettingsCommandOutput } from "../commands/GetSettingsCommand";
15
- import { LikeAnswerCommandInput, LikeAnswerCommandOutput } from "../commands/LikeAnswerCommand";
16
- import { ListAgentFeedbacksCommandInput, ListAgentFeedbacksCommandOutput } from "../commands/ListAgentFeedbacksCommand";
17
- import { ListAgentsCommandInput, ListAgentsCommandOutput } from "../commands/ListAgentsCommand";
18
- import { ListAgentsNamesCommandInput, ListAgentsNamesCommandOutput } from "../commands/ListAgentsNamesCommand";
19
- import { ListChatsCommandInput, ListChatsCommandOutput } from "../commands/ListChatsCommand";
20
- import { ListFeedbacksCommandInput, ListFeedbacksCommandOutput } from "../commands/ListFeedbacksCommand";
21
- import { ListGuidelinesCommandInput, ListGuidelinesCommandOutput } from "../commands/ListGuidelinesCommand";
22
- import { ListGuidelinesDirectoriesCommandInput, ListGuidelinesDirectoriesCommandOutput } from "../commands/ListGuidelinesDirectoriesCommand";
23
- import { ListGuidelinesNamesCommandInput, ListGuidelinesNamesCommandOutput } from "../commands/ListGuidelinesNamesCommand";
24
- import { PatchOrganizationSettingsCommandInput, PatchOrganizationSettingsCommandOutput } from "../commands/PatchOrganizationSettingsCommand";
25
- import { PatchSettingsCommandInput, PatchSettingsCommandOutput } from "../commands/PatchSettingsCommand";
26
- import { UpdateAgentCommandInput, UpdateAgentCommandOutput } from "../commands/UpdateAgentCommand";
27
- import { UpdateGuidelineAccessCommandInput, UpdateGuidelineAccessCommandOutput } from "../commands/UpdateGuidelineAccessCommand";
28
- import { UpdateGuidelineCommandInput, UpdateGuidelineCommandOutput } from "../commands/UpdateGuidelineCommand";
29
- import { UpdateGuidelinesDirectoryCommandInput, UpdateGuidelinesDirectoryCommandOutput } from "../commands/UpdateGuidelinesDirectoryCommand";
30
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
31
- import { SerdeContext as __SerdeContext } from "@smithy/types";
32
- /**
33
- * serializeAws_restJson1CreateAgentCommand
34
- */
35
- export declare const se_CreateAgentCommand: (input: CreateAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- /**
37
- * serializeAws_restJson1CreateGuidelineCommand
38
- */
39
- export declare const se_CreateGuidelineCommand: (input: CreateGuidelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- /**
41
- * serializeAws_restJson1CreateGuidelinesDirectoryCommand
42
- */
43
- export declare const se_CreateGuidelinesDirectoryCommand: (input: CreateGuidelinesDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- /**
45
- * serializeAws_restJson1DeleteAgentCommand
46
- */
47
- export declare const se_DeleteAgentCommand: (input: DeleteAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- /**
49
- * serializeAws_restJson1DeleteChatCommand
50
- */
51
- export declare const se_DeleteChatCommand: (input: DeleteChatCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- /**
53
- * serializeAws_restJson1DeleteGuidelineCommand
54
- */
55
- export declare const se_DeleteGuidelineCommand: (input: DeleteGuidelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- /**
57
- * serializeAws_restJson1DeleteGuidelinesDirectoryCommand
58
- */
59
- export declare const se_DeleteGuidelinesDirectoryCommand: (input: DeleteGuidelinesDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
- /**
61
- * serializeAws_restJson1DislikeAnswerCommand
62
- */
63
- export declare const se_DislikeAnswerCommand: (input: DislikeAnswerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
- /**
65
- * serializeAws_restJson1ExecuteAgentCommand
66
- */
67
- export declare const se_ExecuteAgentCommand: (input: ExecuteAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
- /**
69
- * serializeAws_restJson1GetAgentCommand
70
- */
71
- export declare const se_GetAgentCommand: (input: GetAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
- /**
73
- * serializeAws_restJson1GetChatCommand
74
- */
75
- export declare const se_GetChatCommand: (input: GetChatCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
- /**
77
- * serializeAws_restJson1GetGuidelineCommand
78
- */
79
- export declare const se_GetGuidelineCommand: (input: GetGuidelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
- /**
81
- * serializeAws_restJson1GetOrganizationSettingsCommand
82
- */
83
- export declare const se_GetOrganizationSettingsCommand: (input: GetOrganizationSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
- /**
85
- * serializeAws_restJson1GetSettingsCommand
86
- */
87
- export declare const se_GetSettingsCommand: (input: GetSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
- /**
89
- * serializeAws_restJson1LikeAnswerCommand
90
- */
91
- export declare const se_LikeAnswerCommand: (input: LikeAnswerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
- /**
93
- * serializeAws_restJson1ListAgentFeedbacksCommand
94
- */
95
- export declare const se_ListAgentFeedbacksCommand: (input: ListAgentFeedbacksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
- /**
97
- * serializeAws_restJson1ListAgentsCommand
98
- */
99
- export declare const se_ListAgentsCommand: (input: ListAgentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
- /**
101
- * serializeAws_restJson1ListAgentsNamesCommand
102
- */
103
- export declare const se_ListAgentsNamesCommand: (input: ListAgentsNamesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
- /**
105
- * serializeAws_restJson1ListChatsCommand
106
- */
107
- export declare const se_ListChatsCommand: (input: ListChatsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
- /**
109
- * serializeAws_restJson1ListFeedbacksCommand
110
- */
111
- export declare const se_ListFeedbacksCommand: (input: ListFeedbacksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
112
- /**
113
- * serializeAws_restJson1ListGuidelinesCommand
114
- */
115
- export declare const se_ListGuidelinesCommand: (input: ListGuidelinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
- /**
117
- * serializeAws_restJson1ListGuidelinesDirectoriesCommand
118
- */
119
- export declare const se_ListGuidelinesDirectoriesCommand: (input: ListGuidelinesDirectoriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
120
- /**
121
- * serializeAws_restJson1ListGuidelinesNamesCommand
122
- */
123
- export declare const se_ListGuidelinesNamesCommand: (input: ListGuidelinesNamesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
124
- /**
125
- * serializeAws_restJson1PatchOrganizationSettingsCommand
126
- */
127
- export declare const se_PatchOrganizationSettingsCommand: (input: PatchOrganizationSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
128
- /**
129
- * serializeAws_restJson1PatchSettingsCommand
130
- */
131
- export declare const se_PatchSettingsCommand: (input: PatchSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
132
- /**
133
- * serializeAws_restJson1UpdateAgentCommand
134
- */
135
- export declare const se_UpdateAgentCommand: (input: UpdateAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
136
- /**
137
- * serializeAws_restJson1UpdateGuidelineCommand
138
- */
139
- export declare const se_UpdateGuidelineCommand: (input: UpdateGuidelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
140
- /**
141
- * serializeAws_restJson1UpdateGuidelineAccessCommand
142
- */
143
- export declare const se_UpdateGuidelineAccessCommand: (input: UpdateGuidelineAccessCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
144
- /**
145
- * serializeAws_restJson1UpdateGuidelinesDirectoryCommand
146
- */
147
- export declare const se_UpdateGuidelinesDirectoryCommand: (input: UpdateGuidelinesDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
148
- /**
149
- * deserializeAws_restJson1CreateAgentCommand
150
- */
151
- export declare const de_CreateAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAgentCommandOutput>;
152
- /**
153
- * deserializeAws_restJson1CreateGuidelineCommand
154
- */
155
- export declare const de_CreateGuidelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGuidelineCommandOutput>;
156
- /**
157
- * deserializeAws_restJson1CreateGuidelinesDirectoryCommand
158
- */
159
- export declare const de_CreateGuidelinesDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGuidelinesDirectoryCommandOutput>;
160
- /**
161
- * deserializeAws_restJson1DeleteAgentCommand
162
- */
163
- export declare const de_DeleteAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAgentCommandOutput>;
164
- /**
165
- * deserializeAws_restJson1DeleteChatCommand
166
- */
167
- export declare const de_DeleteChatCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChatCommandOutput>;
168
- /**
169
- * deserializeAws_restJson1DeleteGuidelineCommand
170
- */
171
- export declare const de_DeleteGuidelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGuidelineCommandOutput>;
172
- /**
173
- * deserializeAws_restJson1DeleteGuidelinesDirectoryCommand
174
- */
175
- export declare const de_DeleteGuidelinesDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGuidelinesDirectoryCommandOutput>;
176
- /**
177
- * deserializeAws_restJson1DislikeAnswerCommand
178
- */
179
- export declare const de_DislikeAnswerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DislikeAnswerCommandOutput>;
180
- /**
181
- * deserializeAws_restJson1ExecuteAgentCommand
182
- */
183
- export declare const de_ExecuteAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteAgentCommandOutput>;
184
- /**
185
- * deserializeAws_restJson1GetAgentCommand
186
- */
187
- export declare const de_GetAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgentCommandOutput>;
188
- /**
189
- * deserializeAws_restJson1GetChatCommand
190
- */
191
- export declare const de_GetChatCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatCommandOutput>;
192
- /**
193
- * deserializeAws_restJson1GetGuidelineCommand
194
- */
195
- export declare const de_GetGuidelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGuidelineCommandOutput>;
196
- /**
197
- * deserializeAws_restJson1GetOrganizationSettingsCommand
198
- */
199
- export declare const de_GetOrganizationSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrganizationSettingsCommandOutput>;
200
- /**
201
- * deserializeAws_restJson1GetSettingsCommand
202
- */
203
- export declare const de_GetSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSettingsCommandOutput>;
204
- /**
205
- * deserializeAws_restJson1LikeAnswerCommand
206
- */
207
- export declare const de_LikeAnswerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<LikeAnswerCommandOutput>;
208
- /**
209
- * deserializeAws_restJson1ListAgentFeedbacksCommand
210
- */
211
- export declare const de_ListAgentFeedbacksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentFeedbacksCommandOutput>;
212
- /**
213
- * deserializeAws_restJson1ListAgentsCommand
214
- */
215
- export declare const de_ListAgentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentsCommandOutput>;
216
- /**
217
- * deserializeAws_restJson1ListAgentsNamesCommand
218
- */
219
- export declare const de_ListAgentsNamesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentsNamesCommandOutput>;
220
- /**
221
- * deserializeAws_restJson1ListChatsCommand
222
- */
223
- export declare const de_ListChatsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChatsCommandOutput>;
224
- /**
225
- * deserializeAws_restJson1ListFeedbacksCommand
226
- */
227
- export declare const de_ListFeedbacksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFeedbacksCommandOutput>;
228
- /**
229
- * deserializeAws_restJson1ListGuidelinesCommand
230
- */
231
- export declare const de_ListGuidelinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGuidelinesCommandOutput>;
232
- /**
233
- * deserializeAws_restJson1ListGuidelinesDirectoriesCommand
234
- */
235
- export declare const de_ListGuidelinesDirectoriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGuidelinesDirectoriesCommandOutput>;
236
- /**
237
- * deserializeAws_restJson1ListGuidelinesNamesCommand
238
- */
239
- export declare const de_ListGuidelinesNamesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGuidelinesNamesCommandOutput>;
240
- /**
241
- * deserializeAws_restJson1PatchOrganizationSettingsCommand
242
- */
243
- export declare const de_PatchOrganizationSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PatchOrganizationSettingsCommandOutput>;
244
- /**
245
- * deserializeAws_restJson1PatchSettingsCommand
246
- */
247
- export declare const de_PatchSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PatchSettingsCommandOutput>;
248
- /**
249
- * deserializeAws_restJson1UpdateAgentCommand
250
- */
251
- export declare const de_UpdateAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentCommandOutput>;
252
- /**
253
- * deserializeAws_restJson1UpdateGuidelineCommand
254
- */
255
- export declare const de_UpdateGuidelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGuidelineCommandOutput>;
256
- /**
257
- * deserializeAws_restJson1UpdateGuidelineAccessCommand
258
- */
259
- export declare const de_UpdateGuidelineAccessCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGuidelineAccessCommandOutput>;
260
- /**
261
- * deserializeAws_restJson1UpdateGuidelinesDirectoryCommand
262
- */
263
- export declare const de_UpdateGuidelinesDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGuidelinesDirectoryCommandOutput>;