@wildix/xbees-kite-client 1.0.19 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +10 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/CreateOrUpdateWidgetPreviewCommand.d.ts +128 -0
- package/dist-types/commands/CreateWidgetCommand.d.ts +128 -0
- package/dist-types/commands/GetSmsNumberConfigurationCommand.d.ts +64 -0
- package/dist-types/commands/GetWhatsAppNumberConfigurationCommand.d.ts +65 -1
- package/dist-types/commands/GetWidgetCommand.d.ts +64 -0
- package/dist-types/commands/ListSmsConfigurationsCommand.d.ts +64 -0
- package/dist-types/commands/ListWhatsAppConfigurationsCommand.d.ts +65 -1
- package/dist-types/commands/ListWidgetsCommand.d.ts +64 -0
- package/dist-types/commands/PutSmsNumberConfigurationCommand.d.ts +128 -0
- package/dist-types/commands/PutWhatsAppNumberConfigurationCommand.d.ts +130 -2
- package/dist-types/commands/UpdateWidgetCommand.d.ts +128 -0
- package/dist-types/models/models_0.d.ts +170 -7
- package/package.json +1 -1
|
@@ -73,6 +73,12 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
73
73
|
* readTimeout: { // RouteReadTimeoutCondition
|
|
74
74
|
* timeout: Number("int"), // required
|
|
75
75
|
* },
|
|
76
|
+
* inactivityTimeout: { // InactivityTimeoutCondition
|
|
77
|
+
* timeout: Number("int"), // required
|
|
78
|
+
* },
|
|
79
|
+
* evaluation: { // RouteEvaluationCondition
|
|
80
|
+
* prompt: "STRING_VALUE", // required
|
|
81
|
+
* },
|
|
76
82
|
* },
|
|
77
83
|
* ],
|
|
78
84
|
* task: { // RouteActionTask Union: only one key present
|
|
@@ -80,12 +86,38 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
80
86
|
* botId: "STRING_VALUE", // required
|
|
81
87
|
* text: "STRING_VALUE", // required
|
|
82
88
|
* },
|
|
89
|
+
* sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
90
|
+
* botId: "STRING_VALUE", // required
|
|
91
|
+
* },
|
|
83
92
|
* addMembers: { // RouteAddMembersTask
|
|
84
93
|
* emails: [ // RouteAddMembersUsersList // required
|
|
85
94
|
* "STRING_VALUE",
|
|
86
95
|
* ],
|
|
87
96
|
* },
|
|
97
|
+
* notifyMessage: { // RouteNotifyMessage
|
|
98
|
+
* botId: "STRING_VALUE", // required
|
|
99
|
+
* userId: "STRING_VALUE",
|
|
100
|
+
* channelId: "STRING_VALUE",
|
|
101
|
+
* text: "STRING_VALUE", // required
|
|
102
|
+
* variables: [ // RouteGenerativeVariablesList
|
|
103
|
+
* { // RouteGenerativeVariable
|
|
104
|
+
* term: "STRING_VALUE", // required
|
|
105
|
+
* description: "STRING_VALUE", // required
|
|
106
|
+
* },
|
|
107
|
+
* ],
|
|
108
|
+
* },
|
|
109
|
+
* notifyEmail: { // RouteNotifyEmail
|
|
110
|
+
* recipient: "STRING_VALUE", // required
|
|
111
|
+
* text: "STRING_VALUE", // required
|
|
112
|
+
* variables: [
|
|
113
|
+
* {
|
|
114
|
+
* term: "STRING_VALUE", // required
|
|
115
|
+
* description: "STRING_VALUE", // required
|
|
116
|
+
* },
|
|
117
|
+
* ],
|
|
118
|
+
* },
|
|
88
119
|
* },
|
|
120
|
+
* once: true || false,
|
|
89
121
|
* },
|
|
90
122
|
* ],
|
|
91
123
|
* },
|
|
@@ -114,6 +146,12 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
114
146
|
* readTimeout: {
|
|
115
147
|
* timeout: Number("int"), // required
|
|
116
148
|
* },
|
|
149
|
+
* inactivityTimeout: {
|
|
150
|
+
* timeout: Number("int"), // required
|
|
151
|
+
* },
|
|
152
|
+
* evaluation: {
|
|
153
|
+
* prompt: "STRING_VALUE", // required
|
|
154
|
+
* },
|
|
117
155
|
* },
|
|
118
156
|
* ],
|
|
119
157
|
* task: {// Union: only one key present
|
|
@@ -121,12 +159,38 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
121
159
|
* botId: "STRING_VALUE", // required
|
|
122
160
|
* text: "STRING_VALUE", // required
|
|
123
161
|
* },
|
|
162
|
+
* sendGenerativeMessage: {
|
|
163
|
+
* botId: "STRING_VALUE", // required
|
|
164
|
+
* },
|
|
124
165
|
* addMembers: {
|
|
125
166
|
* emails: [ // required
|
|
126
167
|
* "STRING_VALUE",
|
|
127
168
|
* ],
|
|
128
169
|
* },
|
|
170
|
+
* notifyMessage: {
|
|
171
|
+
* botId: "STRING_VALUE", // required
|
|
172
|
+
* userId: "STRING_VALUE",
|
|
173
|
+
* channelId: "STRING_VALUE",
|
|
174
|
+
* text: "STRING_VALUE", // required
|
|
175
|
+
* variables: [
|
|
176
|
+
* {
|
|
177
|
+
* term: "STRING_VALUE", // required
|
|
178
|
+
* description: "STRING_VALUE", // required
|
|
179
|
+
* },
|
|
180
|
+
* ],
|
|
181
|
+
* },
|
|
182
|
+
* notifyEmail: {
|
|
183
|
+
* recipient: "STRING_VALUE", // required
|
|
184
|
+
* text: "STRING_VALUE", // required
|
|
185
|
+
* variables: [
|
|
186
|
+
* {
|
|
187
|
+
* term: "STRING_VALUE", // required
|
|
188
|
+
* description: "STRING_VALUE", // required
|
|
189
|
+
* },
|
|
190
|
+
* ],
|
|
191
|
+
* },
|
|
129
192
|
* },
|
|
193
|
+
* once: true || false,
|
|
130
194
|
* },
|
|
131
195
|
* ],
|
|
132
196
|
* companyId: "STRING_VALUE",
|
|
@@ -173,6 +237,12 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
173
237
|
* // readTimeout: { // RouteReadTimeoutCondition
|
|
174
238
|
* // timeout: Number("int"), // required
|
|
175
239
|
* // },
|
|
240
|
+
* // inactivityTimeout: { // InactivityTimeoutCondition
|
|
241
|
+
* // timeout: Number("int"), // required
|
|
242
|
+
* // },
|
|
243
|
+
* // evaluation: { // RouteEvaluationCondition
|
|
244
|
+
* // prompt: "STRING_VALUE", // required
|
|
245
|
+
* // },
|
|
176
246
|
* // },
|
|
177
247
|
* // ],
|
|
178
248
|
* // task: { // RouteActionTask Union: only one key present
|
|
@@ -180,12 +250,38 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
180
250
|
* // botId: "STRING_VALUE", // required
|
|
181
251
|
* // text: "STRING_VALUE", // required
|
|
182
252
|
* // },
|
|
253
|
+
* // sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
254
|
+
* // botId: "STRING_VALUE", // required
|
|
255
|
+
* // },
|
|
183
256
|
* // addMembers: { // RouteAddMembersTask
|
|
184
257
|
* // emails: [ // RouteAddMembersUsersList // required
|
|
185
258
|
* // "STRING_VALUE",
|
|
186
259
|
* // ],
|
|
187
260
|
* // },
|
|
261
|
+
* // notifyMessage: { // RouteNotifyMessage
|
|
262
|
+
* // botId: "STRING_VALUE", // required
|
|
263
|
+
* // userId: "STRING_VALUE",
|
|
264
|
+
* // channelId: "STRING_VALUE",
|
|
265
|
+
* // text: "STRING_VALUE", // required
|
|
266
|
+
* // variables: [ // RouteGenerativeVariablesList
|
|
267
|
+
* // { // RouteGenerativeVariable
|
|
268
|
+
* // term: "STRING_VALUE", // required
|
|
269
|
+
* // description: "STRING_VALUE", // required
|
|
270
|
+
* // },
|
|
271
|
+
* // ],
|
|
272
|
+
* // },
|
|
273
|
+
* // notifyEmail: { // RouteNotifyEmail
|
|
274
|
+
* // recipient: "STRING_VALUE", // required
|
|
275
|
+
* // text: "STRING_VALUE", // required
|
|
276
|
+
* // variables: [
|
|
277
|
+
* // {
|
|
278
|
+
* // term: "STRING_VALUE", // required
|
|
279
|
+
* // description: "STRING_VALUE", // required
|
|
280
|
+
* // },
|
|
281
|
+
* // ],
|
|
282
|
+
* // },
|
|
188
283
|
* // },
|
|
284
|
+
* // once: true || false,
|
|
189
285
|
* // },
|
|
190
286
|
* // ],
|
|
191
287
|
* // },
|
|
@@ -214,6 +310,12 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
214
310
|
* // readTimeout: {
|
|
215
311
|
* // timeout: Number("int"), // required
|
|
216
312
|
* // },
|
|
313
|
+
* // inactivityTimeout: {
|
|
314
|
+
* // timeout: Number("int"), // required
|
|
315
|
+
* // },
|
|
316
|
+
* // evaluation: {
|
|
317
|
+
* // prompt: "STRING_VALUE", // required
|
|
318
|
+
* // },
|
|
217
319
|
* // },
|
|
218
320
|
* // ],
|
|
219
321
|
* // task: {// Union: only one key present
|
|
@@ -221,12 +323,38 @@ declare const PutSmsNumberConfigurationCommand_base: {
|
|
|
221
323
|
* // botId: "STRING_VALUE", // required
|
|
222
324
|
* // text: "STRING_VALUE", // required
|
|
223
325
|
* // },
|
|
326
|
+
* // sendGenerativeMessage: {
|
|
327
|
+
* // botId: "STRING_VALUE", // required
|
|
328
|
+
* // },
|
|
224
329
|
* // addMembers: {
|
|
225
330
|
* // emails: [ // required
|
|
226
331
|
* // "STRING_VALUE",
|
|
227
332
|
* // ],
|
|
228
333
|
* // },
|
|
334
|
+
* // notifyMessage: {
|
|
335
|
+
* // botId: "STRING_VALUE", // required
|
|
336
|
+
* // userId: "STRING_VALUE",
|
|
337
|
+
* // channelId: "STRING_VALUE",
|
|
338
|
+
* // text: "STRING_VALUE", // required
|
|
339
|
+
* // variables: [
|
|
340
|
+
* // {
|
|
341
|
+
* // term: "STRING_VALUE", // required
|
|
342
|
+
* // description: "STRING_VALUE", // required
|
|
343
|
+
* // },
|
|
344
|
+
* // ],
|
|
345
|
+
* // },
|
|
346
|
+
* // notifyEmail: {
|
|
347
|
+
* // recipient: "STRING_VALUE", // required
|
|
348
|
+
* // text: "STRING_VALUE", // required
|
|
349
|
+
* // variables: [
|
|
350
|
+
* // {
|
|
351
|
+
* // term: "STRING_VALUE", // required
|
|
352
|
+
* // description: "STRING_VALUE", // required
|
|
353
|
+
* // },
|
|
354
|
+
* // ],
|
|
355
|
+
* // },
|
|
229
356
|
* // },
|
|
357
|
+
* // once: true || false,
|
|
230
358
|
* // },
|
|
231
359
|
* // ],
|
|
232
360
|
* // companyId: "STRING_VALUE", // required
|
|
@@ -62,7 +62,6 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
62
62
|
* id: "STRING_VALUE", // required
|
|
63
63
|
* },
|
|
64
64
|
* },
|
|
65
|
-
* reassign: true || false,
|
|
66
65
|
* actions: [ // RouteActions
|
|
67
66
|
* { // RouteAction
|
|
68
67
|
* id: "STRING_VALUE", // required
|
|
@@ -74,6 +73,12 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
74
73
|
* readTimeout: { // RouteReadTimeoutCondition
|
|
75
74
|
* timeout: Number("int"), // required
|
|
76
75
|
* },
|
|
76
|
+
* inactivityTimeout: { // InactivityTimeoutCondition
|
|
77
|
+
* timeout: Number("int"), // required
|
|
78
|
+
* },
|
|
79
|
+
* evaluation: { // RouteEvaluationCondition
|
|
80
|
+
* prompt: "STRING_VALUE", // required
|
|
81
|
+
* },
|
|
77
82
|
* },
|
|
78
83
|
* ],
|
|
79
84
|
* task: { // RouteActionTask Union: only one key present
|
|
@@ -81,12 +86,38 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
81
86
|
* botId: "STRING_VALUE", // required
|
|
82
87
|
* text: "STRING_VALUE", // required
|
|
83
88
|
* },
|
|
89
|
+
* sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
90
|
+
* botId: "STRING_VALUE", // required
|
|
91
|
+
* },
|
|
84
92
|
* addMembers: { // RouteAddMembersTask
|
|
85
93
|
* emails: [ // RouteAddMembersUsersList // required
|
|
86
94
|
* "STRING_VALUE",
|
|
87
95
|
* ],
|
|
88
96
|
* },
|
|
97
|
+
* notifyMessage: { // RouteNotifyMessage
|
|
98
|
+
* botId: "STRING_VALUE", // required
|
|
99
|
+
* userId: "STRING_VALUE",
|
|
100
|
+
* channelId: "STRING_VALUE",
|
|
101
|
+
* text: "STRING_VALUE", // required
|
|
102
|
+
* variables: [ // RouteGenerativeVariablesList
|
|
103
|
+
* { // RouteGenerativeVariable
|
|
104
|
+
* term: "STRING_VALUE", // required
|
|
105
|
+
* description: "STRING_VALUE", // required
|
|
106
|
+
* },
|
|
107
|
+
* ],
|
|
108
|
+
* },
|
|
109
|
+
* notifyEmail: { // RouteNotifyEmail
|
|
110
|
+
* recipient: "STRING_VALUE", // required
|
|
111
|
+
* text: "STRING_VALUE", // required
|
|
112
|
+
* variables: [
|
|
113
|
+
* {
|
|
114
|
+
* term: "STRING_VALUE", // required
|
|
115
|
+
* description: "STRING_VALUE", // required
|
|
116
|
+
* },
|
|
117
|
+
* ],
|
|
118
|
+
* },
|
|
89
119
|
* },
|
|
120
|
+
* once: true || false,
|
|
90
121
|
* },
|
|
91
122
|
* ],
|
|
92
123
|
* },
|
|
@@ -103,6 +134,7 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
103
134
|
* id: "STRING_VALUE", // required
|
|
104
135
|
* },
|
|
105
136
|
* },
|
|
137
|
+
* reassign: true || false,
|
|
106
138
|
* actions: [
|
|
107
139
|
* {
|
|
108
140
|
* id: "STRING_VALUE", // required
|
|
@@ -114,6 +146,12 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
114
146
|
* readTimeout: {
|
|
115
147
|
* timeout: Number("int"), // required
|
|
116
148
|
* },
|
|
149
|
+
* inactivityTimeout: {
|
|
150
|
+
* timeout: Number("int"), // required
|
|
151
|
+
* },
|
|
152
|
+
* evaluation: {
|
|
153
|
+
* prompt: "STRING_VALUE", // required
|
|
154
|
+
* },
|
|
117
155
|
* },
|
|
118
156
|
* ],
|
|
119
157
|
* task: {// Union: only one key present
|
|
@@ -121,12 +159,38 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
121
159
|
* botId: "STRING_VALUE", // required
|
|
122
160
|
* text: "STRING_VALUE", // required
|
|
123
161
|
* },
|
|
162
|
+
* sendGenerativeMessage: {
|
|
163
|
+
* botId: "STRING_VALUE", // required
|
|
164
|
+
* },
|
|
124
165
|
* addMembers: {
|
|
125
166
|
* emails: [ // required
|
|
126
167
|
* "STRING_VALUE",
|
|
127
168
|
* ],
|
|
128
169
|
* },
|
|
170
|
+
* notifyMessage: {
|
|
171
|
+
* botId: "STRING_VALUE", // required
|
|
172
|
+
* userId: "STRING_VALUE",
|
|
173
|
+
* channelId: "STRING_VALUE",
|
|
174
|
+
* text: "STRING_VALUE", // required
|
|
175
|
+
* variables: [
|
|
176
|
+
* {
|
|
177
|
+
* term: "STRING_VALUE", // required
|
|
178
|
+
* description: "STRING_VALUE", // required
|
|
179
|
+
* },
|
|
180
|
+
* ],
|
|
181
|
+
* },
|
|
182
|
+
* notifyEmail: {
|
|
183
|
+
* recipient: "STRING_VALUE", // required
|
|
184
|
+
* text: "STRING_VALUE", // required
|
|
185
|
+
* variables: [
|
|
186
|
+
* {
|
|
187
|
+
* term: "STRING_VALUE", // required
|
|
188
|
+
* description: "STRING_VALUE", // required
|
|
189
|
+
* },
|
|
190
|
+
* ],
|
|
191
|
+
* },
|
|
129
192
|
* },
|
|
193
|
+
* once: true || false,
|
|
130
194
|
* },
|
|
131
195
|
* ],
|
|
132
196
|
* companyId: "STRING_VALUE",
|
|
@@ -162,7 +226,6 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
162
226
|
* // id: "STRING_VALUE", // required
|
|
163
227
|
* // },
|
|
164
228
|
* // },
|
|
165
|
-
* // reassign: true || false,
|
|
166
229
|
* // actions: [ // RouteActions
|
|
167
230
|
* // { // RouteAction
|
|
168
231
|
* // id: "STRING_VALUE", // required
|
|
@@ -174,6 +237,12 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
174
237
|
* // readTimeout: { // RouteReadTimeoutCondition
|
|
175
238
|
* // timeout: Number("int"), // required
|
|
176
239
|
* // },
|
|
240
|
+
* // inactivityTimeout: { // InactivityTimeoutCondition
|
|
241
|
+
* // timeout: Number("int"), // required
|
|
242
|
+
* // },
|
|
243
|
+
* // evaluation: { // RouteEvaluationCondition
|
|
244
|
+
* // prompt: "STRING_VALUE", // required
|
|
245
|
+
* // },
|
|
177
246
|
* // },
|
|
178
247
|
* // ],
|
|
179
248
|
* // task: { // RouteActionTask Union: only one key present
|
|
@@ -181,12 +250,38 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
181
250
|
* // botId: "STRING_VALUE", // required
|
|
182
251
|
* // text: "STRING_VALUE", // required
|
|
183
252
|
* // },
|
|
253
|
+
* // sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
254
|
+
* // botId: "STRING_VALUE", // required
|
|
255
|
+
* // },
|
|
184
256
|
* // addMembers: { // RouteAddMembersTask
|
|
185
257
|
* // emails: [ // RouteAddMembersUsersList // required
|
|
186
258
|
* // "STRING_VALUE",
|
|
187
259
|
* // ],
|
|
188
260
|
* // },
|
|
261
|
+
* // notifyMessage: { // RouteNotifyMessage
|
|
262
|
+
* // botId: "STRING_VALUE", // required
|
|
263
|
+
* // userId: "STRING_VALUE",
|
|
264
|
+
* // channelId: "STRING_VALUE",
|
|
265
|
+
* // text: "STRING_VALUE", // required
|
|
266
|
+
* // variables: [ // RouteGenerativeVariablesList
|
|
267
|
+
* // { // RouteGenerativeVariable
|
|
268
|
+
* // term: "STRING_VALUE", // required
|
|
269
|
+
* // description: "STRING_VALUE", // required
|
|
270
|
+
* // },
|
|
271
|
+
* // ],
|
|
272
|
+
* // },
|
|
273
|
+
* // notifyEmail: { // RouteNotifyEmail
|
|
274
|
+
* // recipient: "STRING_VALUE", // required
|
|
275
|
+
* // text: "STRING_VALUE", // required
|
|
276
|
+
* // variables: [
|
|
277
|
+
* // {
|
|
278
|
+
* // term: "STRING_VALUE", // required
|
|
279
|
+
* // description: "STRING_VALUE", // required
|
|
280
|
+
* // },
|
|
281
|
+
* // ],
|
|
282
|
+
* // },
|
|
189
283
|
* // },
|
|
284
|
+
* // once: true || false,
|
|
190
285
|
* // },
|
|
191
286
|
* // ],
|
|
192
287
|
* // },
|
|
@@ -203,6 +298,7 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
203
298
|
* // id: "STRING_VALUE", // required
|
|
204
299
|
* // },
|
|
205
300
|
* // },
|
|
301
|
+
* // reassign: true || false,
|
|
206
302
|
* // actions: [
|
|
207
303
|
* // {
|
|
208
304
|
* // id: "STRING_VALUE", // required
|
|
@@ -214,6 +310,12 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
214
310
|
* // readTimeout: {
|
|
215
311
|
* // timeout: Number("int"), // required
|
|
216
312
|
* // },
|
|
313
|
+
* // inactivityTimeout: {
|
|
314
|
+
* // timeout: Number("int"), // required
|
|
315
|
+
* // },
|
|
316
|
+
* // evaluation: {
|
|
317
|
+
* // prompt: "STRING_VALUE", // required
|
|
318
|
+
* // },
|
|
217
319
|
* // },
|
|
218
320
|
* // ],
|
|
219
321
|
* // task: {// Union: only one key present
|
|
@@ -221,12 +323,38 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
|
|
|
221
323
|
* // botId: "STRING_VALUE", // required
|
|
222
324
|
* // text: "STRING_VALUE", // required
|
|
223
325
|
* // },
|
|
326
|
+
* // sendGenerativeMessage: {
|
|
327
|
+
* // botId: "STRING_VALUE", // required
|
|
328
|
+
* // },
|
|
224
329
|
* // addMembers: {
|
|
225
330
|
* // emails: [ // required
|
|
226
331
|
* // "STRING_VALUE",
|
|
227
332
|
* // ],
|
|
228
333
|
* // },
|
|
334
|
+
* // notifyMessage: {
|
|
335
|
+
* // botId: "STRING_VALUE", // required
|
|
336
|
+
* // userId: "STRING_VALUE",
|
|
337
|
+
* // channelId: "STRING_VALUE",
|
|
338
|
+
* // text: "STRING_VALUE", // required
|
|
339
|
+
* // variables: [
|
|
340
|
+
* // {
|
|
341
|
+
* // term: "STRING_VALUE", // required
|
|
342
|
+
* // description: "STRING_VALUE", // required
|
|
343
|
+
* // },
|
|
344
|
+
* // ],
|
|
345
|
+
* // },
|
|
346
|
+
* // notifyEmail: {
|
|
347
|
+
* // recipient: "STRING_VALUE", // required
|
|
348
|
+
* // text: "STRING_VALUE", // required
|
|
349
|
+
* // variables: [
|
|
350
|
+
* // {
|
|
351
|
+
* // term: "STRING_VALUE", // required
|
|
352
|
+
* // description: "STRING_VALUE", // required
|
|
353
|
+
* // },
|
|
354
|
+
* // ],
|
|
355
|
+
* // },
|
|
229
356
|
* // },
|
|
357
|
+
* // once: true || false,
|
|
230
358
|
* // },
|
|
231
359
|
* // ],
|
|
232
360
|
* // companyId: "STRING_VALUE", // required
|
|
@@ -113,6 +113,12 @@ declare const UpdateWidgetCommand_base: {
|
|
|
113
113
|
* readTimeout: { // RouteReadTimeoutCondition
|
|
114
114
|
* timeout: Number("int"), // required
|
|
115
115
|
* },
|
|
116
|
+
* inactivityTimeout: { // InactivityTimeoutCondition
|
|
117
|
+
* timeout: Number("int"), // required
|
|
118
|
+
* },
|
|
119
|
+
* evaluation: { // RouteEvaluationCondition
|
|
120
|
+
* prompt: "STRING_VALUE", // required
|
|
121
|
+
* },
|
|
116
122
|
* },
|
|
117
123
|
* ],
|
|
118
124
|
* task: { // RouteActionTask Union: only one key present
|
|
@@ -120,12 +126,38 @@ declare const UpdateWidgetCommand_base: {
|
|
|
120
126
|
* botId: "STRING_VALUE", // required
|
|
121
127
|
* text: "STRING_VALUE", // required
|
|
122
128
|
* },
|
|
129
|
+
* sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
130
|
+
* botId: "STRING_VALUE", // required
|
|
131
|
+
* },
|
|
123
132
|
* addMembers: { // RouteAddMembersTask
|
|
124
133
|
* emails: [ // RouteAddMembersUsersList // required
|
|
125
134
|
* "STRING_VALUE",
|
|
126
135
|
* ],
|
|
127
136
|
* },
|
|
137
|
+
* notifyMessage: { // RouteNotifyMessage
|
|
138
|
+
* botId: "STRING_VALUE", // required
|
|
139
|
+
* userId: "STRING_VALUE",
|
|
140
|
+
* channelId: "STRING_VALUE",
|
|
141
|
+
* text: "STRING_VALUE", // required
|
|
142
|
+
* variables: [ // RouteGenerativeVariablesList
|
|
143
|
+
* { // RouteGenerativeVariable
|
|
144
|
+
* term: "STRING_VALUE", // required
|
|
145
|
+
* description: "STRING_VALUE", // required
|
|
146
|
+
* },
|
|
147
|
+
* ],
|
|
148
|
+
* },
|
|
149
|
+
* notifyEmail: { // RouteNotifyEmail
|
|
150
|
+
* recipient: "STRING_VALUE", // required
|
|
151
|
+
* text: "STRING_VALUE", // required
|
|
152
|
+
* variables: [
|
|
153
|
+
* {
|
|
154
|
+
* term: "STRING_VALUE", // required
|
|
155
|
+
* description: "STRING_VALUE", // required
|
|
156
|
+
* },
|
|
157
|
+
* ],
|
|
158
|
+
* },
|
|
128
159
|
* },
|
|
160
|
+
* once: true || false,
|
|
129
161
|
* },
|
|
130
162
|
* ],
|
|
131
163
|
* },
|
|
@@ -185,6 +217,12 @@ declare const UpdateWidgetCommand_base: {
|
|
|
185
217
|
* readTimeout: {
|
|
186
218
|
* timeout: Number("int"), // required
|
|
187
219
|
* },
|
|
220
|
+
* inactivityTimeout: {
|
|
221
|
+
* timeout: Number("int"), // required
|
|
222
|
+
* },
|
|
223
|
+
* evaluation: {
|
|
224
|
+
* prompt: "STRING_VALUE", // required
|
|
225
|
+
* },
|
|
188
226
|
* },
|
|
189
227
|
* ],
|
|
190
228
|
* task: {// Union: only one key present
|
|
@@ -192,12 +230,38 @@ declare const UpdateWidgetCommand_base: {
|
|
|
192
230
|
* botId: "STRING_VALUE", // required
|
|
193
231
|
* text: "STRING_VALUE", // required
|
|
194
232
|
* },
|
|
233
|
+
* sendGenerativeMessage: {
|
|
234
|
+
* botId: "STRING_VALUE", // required
|
|
235
|
+
* },
|
|
195
236
|
* addMembers: {
|
|
196
237
|
* emails: [ // required
|
|
197
238
|
* "STRING_VALUE",
|
|
198
239
|
* ],
|
|
199
240
|
* },
|
|
241
|
+
* notifyMessage: {
|
|
242
|
+
* botId: "STRING_VALUE", // required
|
|
243
|
+
* userId: "STRING_VALUE",
|
|
244
|
+
* channelId: "STRING_VALUE",
|
|
245
|
+
* text: "STRING_VALUE", // required
|
|
246
|
+
* variables: [
|
|
247
|
+
* {
|
|
248
|
+
* term: "STRING_VALUE", // required
|
|
249
|
+
* description: "STRING_VALUE", // required
|
|
250
|
+
* },
|
|
251
|
+
* ],
|
|
252
|
+
* },
|
|
253
|
+
* notifyEmail: {
|
|
254
|
+
* recipient: "STRING_VALUE", // required
|
|
255
|
+
* text: "STRING_VALUE", // required
|
|
256
|
+
* variables: [
|
|
257
|
+
* {
|
|
258
|
+
* term: "STRING_VALUE", // required
|
|
259
|
+
* description: "STRING_VALUE", // required
|
|
260
|
+
* },
|
|
261
|
+
* ],
|
|
262
|
+
* },
|
|
200
263
|
* },
|
|
264
|
+
* once: true || false,
|
|
201
265
|
* },
|
|
202
266
|
* ],
|
|
203
267
|
* companyId: "STRING_VALUE",
|
|
@@ -285,6 +349,12 @@ declare const UpdateWidgetCommand_base: {
|
|
|
285
349
|
* // readTimeout: { // RouteReadTimeoutCondition
|
|
286
350
|
* // timeout: Number("int"), // required
|
|
287
351
|
* // },
|
|
352
|
+
* // inactivityTimeout: { // InactivityTimeoutCondition
|
|
353
|
+
* // timeout: Number("int"), // required
|
|
354
|
+
* // },
|
|
355
|
+
* // evaluation: { // RouteEvaluationCondition
|
|
356
|
+
* // prompt: "STRING_VALUE", // required
|
|
357
|
+
* // },
|
|
288
358
|
* // },
|
|
289
359
|
* // ],
|
|
290
360
|
* // task: { // RouteActionTask Union: only one key present
|
|
@@ -292,12 +362,38 @@ declare const UpdateWidgetCommand_base: {
|
|
|
292
362
|
* // botId: "STRING_VALUE", // required
|
|
293
363
|
* // text: "STRING_VALUE", // required
|
|
294
364
|
* // },
|
|
365
|
+
* // sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
366
|
+
* // botId: "STRING_VALUE", // required
|
|
367
|
+
* // },
|
|
295
368
|
* // addMembers: { // RouteAddMembersTask
|
|
296
369
|
* // emails: [ // RouteAddMembersUsersList // required
|
|
297
370
|
* // "STRING_VALUE",
|
|
298
371
|
* // ],
|
|
299
372
|
* // },
|
|
373
|
+
* // notifyMessage: { // RouteNotifyMessage
|
|
374
|
+
* // botId: "STRING_VALUE", // required
|
|
375
|
+
* // userId: "STRING_VALUE",
|
|
376
|
+
* // channelId: "STRING_VALUE",
|
|
377
|
+
* // text: "STRING_VALUE", // required
|
|
378
|
+
* // variables: [ // RouteGenerativeVariablesList
|
|
379
|
+
* // { // RouteGenerativeVariable
|
|
380
|
+
* // term: "STRING_VALUE", // required
|
|
381
|
+
* // description: "STRING_VALUE", // required
|
|
382
|
+
* // },
|
|
383
|
+
* // ],
|
|
384
|
+
* // },
|
|
385
|
+
* // notifyEmail: { // RouteNotifyEmail
|
|
386
|
+
* // recipient: "STRING_VALUE", // required
|
|
387
|
+
* // text: "STRING_VALUE", // required
|
|
388
|
+
* // variables: [
|
|
389
|
+
* // {
|
|
390
|
+
* // term: "STRING_VALUE", // required
|
|
391
|
+
* // description: "STRING_VALUE", // required
|
|
392
|
+
* // },
|
|
393
|
+
* // ],
|
|
394
|
+
* // },
|
|
300
395
|
* // },
|
|
396
|
+
* // once: true || false,
|
|
301
397
|
* // },
|
|
302
398
|
* // ],
|
|
303
399
|
* // },
|
|
@@ -357,6 +453,12 @@ declare const UpdateWidgetCommand_base: {
|
|
|
357
453
|
* // readTimeout: {
|
|
358
454
|
* // timeout: Number("int"), // required
|
|
359
455
|
* // },
|
|
456
|
+
* // inactivityTimeout: {
|
|
457
|
+
* // timeout: Number("int"), // required
|
|
458
|
+
* // },
|
|
459
|
+
* // evaluation: {
|
|
460
|
+
* // prompt: "STRING_VALUE", // required
|
|
461
|
+
* // },
|
|
360
462
|
* // },
|
|
361
463
|
* // ],
|
|
362
464
|
* // task: {// Union: only one key present
|
|
@@ -364,12 +466,38 @@ declare const UpdateWidgetCommand_base: {
|
|
|
364
466
|
* // botId: "STRING_VALUE", // required
|
|
365
467
|
* // text: "STRING_VALUE", // required
|
|
366
468
|
* // },
|
|
469
|
+
* // sendGenerativeMessage: {
|
|
470
|
+
* // botId: "STRING_VALUE", // required
|
|
471
|
+
* // },
|
|
367
472
|
* // addMembers: {
|
|
368
473
|
* // emails: [ // required
|
|
369
474
|
* // "STRING_VALUE",
|
|
370
475
|
* // ],
|
|
371
476
|
* // },
|
|
477
|
+
* // notifyMessage: {
|
|
478
|
+
* // botId: "STRING_VALUE", // required
|
|
479
|
+
* // userId: "STRING_VALUE",
|
|
480
|
+
* // channelId: "STRING_VALUE",
|
|
481
|
+
* // text: "STRING_VALUE", // required
|
|
482
|
+
* // variables: [
|
|
483
|
+
* // {
|
|
484
|
+
* // term: "STRING_VALUE", // required
|
|
485
|
+
* // description: "STRING_VALUE", // required
|
|
486
|
+
* // },
|
|
487
|
+
* // ],
|
|
488
|
+
* // },
|
|
489
|
+
* // notifyEmail: {
|
|
490
|
+
* // recipient: "STRING_VALUE", // required
|
|
491
|
+
* // text: "STRING_VALUE", // required
|
|
492
|
+
* // variables: [
|
|
493
|
+
* // {
|
|
494
|
+
* // term: "STRING_VALUE", // required
|
|
495
|
+
* // description: "STRING_VALUE", // required
|
|
496
|
+
* // },
|
|
497
|
+
* // ],
|
|
498
|
+
* // },
|
|
372
499
|
* // },
|
|
500
|
+
* // once: true || false,
|
|
373
501
|
* // },
|
|
374
502
|
* // ],
|
|
375
503
|
* // id: "STRING_VALUE", // required
|