@wildix/xbees-kite-client 1.0.18 → 1.0.20
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-es/models/models_0.js +10 -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 +64 -0
- package/dist-types/commands/GetWidgetCommand.d.ts +64 -0
- package/dist-types/commands/ListServicesCommand.d.ts +4 -1
- package/dist-types/commands/ListSmsConfigurationsCommand.d.ts +64 -0
- package/dist-types/commands/ListWhatsAppConfigurationsCommand.d.ts +64 -0
- 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 +128 -0
- package/dist-types/commands/UpdateWidgetCommand.d.ts +128 -0
- package/dist-types/models/models_0.d.ts +162 -2
- package/package.json +1 -1
|
@@ -181,6 +181,10 @@ var RouteActionCondition;
|
|
|
181
181
|
return visitor.replyTimeout(value.replyTimeout);
|
|
182
182
|
if (value.readTimeout !== undefined)
|
|
183
183
|
return visitor.readTimeout(value.readTimeout);
|
|
184
|
+
if (value.inactivityTimeout !== undefined)
|
|
185
|
+
return visitor.inactivityTimeout(value.inactivityTimeout);
|
|
186
|
+
if (value.evaluation !== undefined)
|
|
187
|
+
return visitor.evaluation(value.evaluation);
|
|
184
188
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
185
189
|
};
|
|
186
190
|
})(RouteActionCondition || (exports.RouteActionCondition = RouteActionCondition = {}));
|
|
@@ -189,8 +193,14 @@ var RouteActionTask;
|
|
|
189
193
|
RouteActionTask.visit = (value, visitor) => {
|
|
190
194
|
if (value.sendMessage !== undefined)
|
|
191
195
|
return visitor.sendMessage(value.sendMessage);
|
|
196
|
+
if (value.sendGenerativeMessage !== undefined)
|
|
197
|
+
return visitor.sendGenerativeMessage(value.sendGenerativeMessage);
|
|
192
198
|
if (value.addMembers !== undefined)
|
|
193
199
|
return visitor.addMembers(value.addMembers);
|
|
200
|
+
if (value.notifyMessage !== undefined)
|
|
201
|
+
return visitor.notifyMessage(value.notifyMessage);
|
|
202
|
+
if (value.notifyEmail !== undefined)
|
|
203
|
+
return visitor.notifyEmail(value.notifyEmail);
|
|
194
204
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
195
205
|
};
|
|
196
206
|
})(RouteActionTask || (exports.RouteActionTask = RouteActionTask = {}));
|
|
@@ -172,6 +172,10 @@ export var RouteActionCondition;
|
|
|
172
172
|
return visitor.replyTimeout(value.replyTimeout);
|
|
173
173
|
if (value.readTimeout !== undefined)
|
|
174
174
|
return visitor.readTimeout(value.readTimeout);
|
|
175
|
+
if (value.inactivityTimeout !== undefined)
|
|
176
|
+
return visitor.inactivityTimeout(value.inactivityTimeout);
|
|
177
|
+
if (value.evaluation !== undefined)
|
|
178
|
+
return visitor.evaluation(value.evaluation);
|
|
175
179
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
176
180
|
};
|
|
177
181
|
})(RouteActionCondition || (RouteActionCondition = {}));
|
|
@@ -180,8 +184,14 @@ export var RouteActionTask;
|
|
|
180
184
|
RouteActionTask.visit = (value, visitor) => {
|
|
181
185
|
if (value.sendMessage !== undefined)
|
|
182
186
|
return visitor.sendMessage(value.sendMessage);
|
|
187
|
+
if (value.sendGenerativeMessage !== undefined)
|
|
188
|
+
return visitor.sendGenerativeMessage(value.sendGenerativeMessage);
|
|
183
189
|
if (value.addMembers !== undefined)
|
|
184
190
|
return visitor.addMembers(value.addMembers);
|
|
191
|
+
if (value.notifyMessage !== undefined)
|
|
192
|
+
return visitor.notifyMessage(value.notifyMessage);
|
|
193
|
+
if (value.notifyEmail !== undefined)
|
|
194
|
+
return visitor.notifyEmail(value.notifyEmail);
|
|
185
195
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
186
196
|
};
|
|
187
197
|
})(RouteActionTask || (RouteActionTask = {}));
|
|
@@ -113,6 +113,12 @@ declare const CreateOrUpdateWidgetPreviewCommand_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 CreateOrUpdateWidgetPreviewCommand_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 CreateOrUpdateWidgetPreviewCommand_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 CreateOrUpdateWidgetPreviewCommand_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 CreateOrUpdateWidgetPreviewCommand_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 CreateOrUpdateWidgetPreviewCommand_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 CreateOrUpdateWidgetPreviewCommand_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 CreateOrUpdateWidgetPreviewCommand_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
|
|
@@ -113,6 +113,12 @@ declare const CreateWidgetCommand_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 CreateWidgetCommand_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 CreateWidgetCommand_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 CreateWidgetCommand_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",
|
|
@@ -284,6 +348,12 @@ declare const CreateWidgetCommand_base: {
|
|
|
284
348
|
* // readTimeout: { // RouteReadTimeoutCondition
|
|
285
349
|
* // timeout: Number("int"), // required
|
|
286
350
|
* // },
|
|
351
|
+
* // inactivityTimeout: { // InactivityTimeoutCondition
|
|
352
|
+
* // timeout: Number("int"), // required
|
|
353
|
+
* // },
|
|
354
|
+
* // evaluation: { // RouteEvaluationCondition
|
|
355
|
+
* // prompt: "STRING_VALUE", // required
|
|
356
|
+
* // },
|
|
287
357
|
* // },
|
|
288
358
|
* // ],
|
|
289
359
|
* // task: { // RouteActionTask Union: only one key present
|
|
@@ -291,12 +361,38 @@ declare const CreateWidgetCommand_base: {
|
|
|
291
361
|
* // botId: "STRING_VALUE", // required
|
|
292
362
|
* // text: "STRING_VALUE", // required
|
|
293
363
|
* // },
|
|
364
|
+
* // sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
365
|
+
* // botId: "STRING_VALUE", // required
|
|
366
|
+
* // },
|
|
294
367
|
* // addMembers: { // RouteAddMembersTask
|
|
295
368
|
* // emails: [ // RouteAddMembersUsersList // required
|
|
296
369
|
* // "STRING_VALUE",
|
|
297
370
|
* // ],
|
|
298
371
|
* // },
|
|
372
|
+
* // notifyMessage: { // RouteNotifyMessage
|
|
373
|
+
* // botId: "STRING_VALUE", // required
|
|
374
|
+
* // userId: "STRING_VALUE",
|
|
375
|
+
* // channelId: "STRING_VALUE",
|
|
376
|
+
* // text: "STRING_VALUE", // required
|
|
377
|
+
* // variables: [ // RouteGenerativeVariablesList
|
|
378
|
+
* // { // RouteGenerativeVariable
|
|
379
|
+
* // term: "STRING_VALUE", // required
|
|
380
|
+
* // description: "STRING_VALUE", // required
|
|
381
|
+
* // },
|
|
382
|
+
* // ],
|
|
383
|
+
* // },
|
|
384
|
+
* // notifyEmail: { // RouteNotifyEmail
|
|
385
|
+
* // recipient: "STRING_VALUE", // required
|
|
386
|
+
* // text: "STRING_VALUE", // required
|
|
387
|
+
* // variables: [
|
|
388
|
+
* // {
|
|
389
|
+
* // term: "STRING_VALUE", // required
|
|
390
|
+
* // description: "STRING_VALUE", // required
|
|
391
|
+
* // },
|
|
392
|
+
* // ],
|
|
393
|
+
* // },
|
|
299
394
|
* // },
|
|
395
|
+
* // once: true || false,
|
|
300
396
|
* // },
|
|
301
397
|
* // ],
|
|
302
398
|
* // },
|
|
@@ -356,6 +452,12 @@ declare const CreateWidgetCommand_base: {
|
|
|
356
452
|
* // readTimeout: {
|
|
357
453
|
* // timeout: Number("int"), // required
|
|
358
454
|
* // },
|
|
455
|
+
* // inactivityTimeout: {
|
|
456
|
+
* // timeout: Number("int"), // required
|
|
457
|
+
* // },
|
|
458
|
+
* // evaluation: {
|
|
459
|
+
* // prompt: "STRING_VALUE", // required
|
|
460
|
+
* // },
|
|
359
461
|
* // },
|
|
360
462
|
* // ],
|
|
361
463
|
* // task: {// Union: only one key present
|
|
@@ -363,12 +465,38 @@ declare const CreateWidgetCommand_base: {
|
|
|
363
465
|
* // botId: "STRING_VALUE", // required
|
|
364
466
|
* // text: "STRING_VALUE", // required
|
|
365
467
|
* // },
|
|
468
|
+
* // sendGenerativeMessage: {
|
|
469
|
+
* // botId: "STRING_VALUE", // required
|
|
470
|
+
* // },
|
|
366
471
|
* // addMembers: {
|
|
367
472
|
* // emails: [ // required
|
|
368
473
|
* // "STRING_VALUE",
|
|
369
474
|
* // ],
|
|
370
475
|
* // },
|
|
476
|
+
* // notifyMessage: {
|
|
477
|
+
* // botId: "STRING_VALUE", // required
|
|
478
|
+
* // userId: "STRING_VALUE",
|
|
479
|
+
* // channelId: "STRING_VALUE",
|
|
480
|
+
* // text: "STRING_VALUE", // required
|
|
481
|
+
* // variables: [
|
|
482
|
+
* // {
|
|
483
|
+
* // term: "STRING_VALUE", // required
|
|
484
|
+
* // description: "STRING_VALUE", // required
|
|
485
|
+
* // },
|
|
486
|
+
* // ],
|
|
487
|
+
* // },
|
|
488
|
+
* // notifyEmail: {
|
|
489
|
+
* // recipient: "STRING_VALUE", // required
|
|
490
|
+
* // text: "STRING_VALUE", // required
|
|
491
|
+
* // variables: [
|
|
492
|
+
* // {
|
|
493
|
+
* // term: "STRING_VALUE", // required
|
|
494
|
+
* // description: "STRING_VALUE", // required
|
|
495
|
+
* // },
|
|
496
|
+
* // ],
|
|
497
|
+
* // },
|
|
371
498
|
* // },
|
|
499
|
+
* // once: true || false,
|
|
372
500
|
* // },
|
|
373
501
|
* // ],
|
|
374
502
|
* // id: "STRING_VALUE", // required
|
|
@@ -80,6 +80,12 @@ declare const GetSmsNumberConfigurationCommand_base: {
|
|
|
80
80
|
* // readTimeout: { // RouteReadTimeoutCondition
|
|
81
81
|
* // timeout: Number("int"), // required
|
|
82
82
|
* // },
|
|
83
|
+
* // inactivityTimeout: { // InactivityTimeoutCondition
|
|
84
|
+
* // timeout: Number("int"), // required
|
|
85
|
+
* // },
|
|
86
|
+
* // evaluation: { // RouteEvaluationCondition
|
|
87
|
+
* // prompt: "STRING_VALUE", // required
|
|
88
|
+
* // },
|
|
83
89
|
* // },
|
|
84
90
|
* // ],
|
|
85
91
|
* // task: { // RouteActionTask Union: only one key present
|
|
@@ -87,12 +93,38 @@ declare const GetSmsNumberConfigurationCommand_base: {
|
|
|
87
93
|
* // botId: "STRING_VALUE", // required
|
|
88
94
|
* // text: "STRING_VALUE", // required
|
|
89
95
|
* // },
|
|
96
|
+
* // sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
97
|
+
* // botId: "STRING_VALUE", // required
|
|
98
|
+
* // },
|
|
90
99
|
* // addMembers: { // RouteAddMembersTask
|
|
91
100
|
* // emails: [ // RouteAddMembersUsersList // required
|
|
92
101
|
* // "STRING_VALUE",
|
|
93
102
|
* // ],
|
|
94
103
|
* // },
|
|
104
|
+
* // notifyMessage: { // RouteNotifyMessage
|
|
105
|
+
* // botId: "STRING_VALUE", // required
|
|
106
|
+
* // userId: "STRING_VALUE",
|
|
107
|
+
* // channelId: "STRING_VALUE",
|
|
108
|
+
* // text: "STRING_VALUE", // required
|
|
109
|
+
* // variables: [ // RouteGenerativeVariablesList
|
|
110
|
+
* // { // RouteGenerativeVariable
|
|
111
|
+
* // term: "STRING_VALUE", // required
|
|
112
|
+
* // description: "STRING_VALUE", // required
|
|
113
|
+
* // },
|
|
114
|
+
* // ],
|
|
115
|
+
* // },
|
|
116
|
+
* // notifyEmail: { // RouteNotifyEmail
|
|
117
|
+
* // recipient: "STRING_VALUE", // required
|
|
118
|
+
* // text: "STRING_VALUE", // required
|
|
119
|
+
* // variables: [
|
|
120
|
+
* // {
|
|
121
|
+
* // term: "STRING_VALUE", // required
|
|
122
|
+
* // description: "STRING_VALUE", // required
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // },
|
|
95
126
|
* // },
|
|
127
|
+
* // once: true || false,
|
|
96
128
|
* // },
|
|
97
129
|
* // ],
|
|
98
130
|
* // },
|
|
@@ -121,6 +153,12 @@ declare const GetSmsNumberConfigurationCommand_base: {
|
|
|
121
153
|
* // readTimeout: {
|
|
122
154
|
* // timeout: Number("int"), // required
|
|
123
155
|
* // },
|
|
156
|
+
* // inactivityTimeout: {
|
|
157
|
+
* // timeout: Number("int"), // required
|
|
158
|
+
* // },
|
|
159
|
+
* // evaluation: {
|
|
160
|
+
* // prompt: "STRING_VALUE", // required
|
|
161
|
+
* // },
|
|
124
162
|
* // },
|
|
125
163
|
* // ],
|
|
126
164
|
* // task: {// Union: only one key present
|
|
@@ -128,12 +166,38 @@ declare const GetSmsNumberConfigurationCommand_base: {
|
|
|
128
166
|
* // botId: "STRING_VALUE", // required
|
|
129
167
|
* // text: "STRING_VALUE", // required
|
|
130
168
|
* // },
|
|
169
|
+
* // sendGenerativeMessage: {
|
|
170
|
+
* // botId: "STRING_VALUE", // required
|
|
171
|
+
* // },
|
|
131
172
|
* // addMembers: {
|
|
132
173
|
* // emails: [ // required
|
|
133
174
|
* // "STRING_VALUE",
|
|
134
175
|
* // ],
|
|
135
176
|
* // },
|
|
177
|
+
* // notifyMessage: {
|
|
178
|
+
* // botId: "STRING_VALUE", // required
|
|
179
|
+
* // userId: "STRING_VALUE",
|
|
180
|
+
* // channelId: "STRING_VALUE",
|
|
181
|
+
* // text: "STRING_VALUE", // required
|
|
182
|
+
* // variables: [
|
|
183
|
+
* // {
|
|
184
|
+
* // term: "STRING_VALUE", // required
|
|
185
|
+
* // description: "STRING_VALUE", // required
|
|
186
|
+
* // },
|
|
187
|
+
* // ],
|
|
188
|
+
* // },
|
|
189
|
+
* // notifyEmail: {
|
|
190
|
+
* // recipient: "STRING_VALUE", // required
|
|
191
|
+
* // text: "STRING_VALUE", // required
|
|
192
|
+
* // variables: [
|
|
193
|
+
* // {
|
|
194
|
+
* // term: "STRING_VALUE", // required
|
|
195
|
+
* // description: "STRING_VALUE", // required
|
|
196
|
+
* // },
|
|
197
|
+
* // ],
|
|
198
|
+
* // },
|
|
136
199
|
* // },
|
|
200
|
+
* // once: true || false,
|
|
137
201
|
* // },
|
|
138
202
|
* // ],
|
|
139
203
|
* // companyId: "STRING_VALUE", // required
|
|
@@ -81,6 +81,12 @@ declare const GetWhatsAppNumberConfigurationCommand_base: {
|
|
|
81
81
|
* // readTimeout: { // RouteReadTimeoutCondition
|
|
82
82
|
* // timeout: Number("int"), // required
|
|
83
83
|
* // },
|
|
84
|
+
* // inactivityTimeout: { // InactivityTimeoutCondition
|
|
85
|
+
* // timeout: Number("int"), // required
|
|
86
|
+
* // },
|
|
87
|
+
* // evaluation: { // RouteEvaluationCondition
|
|
88
|
+
* // prompt: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
84
90
|
* // },
|
|
85
91
|
* // ],
|
|
86
92
|
* // task: { // RouteActionTask Union: only one key present
|
|
@@ -88,12 +94,38 @@ declare const GetWhatsAppNumberConfigurationCommand_base: {
|
|
|
88
94
|
* // botId: "STRING_VALUE", // required
|
|
89
95
|
* // text: "STRING_VALUE", // required
|
|
90
96
|
* // },
|
|
97
|
+
* // sendGenerativeMessage: { // RouteSendGenerativeMessageTask
|
|
98
|
+
* // botId: "STRING_VALUE", // required
|
|
99
|
+
* // },
|
|
91
100
|
* // addMembers: { // RouteAddMembersTask
|
|
92
101
|
* // emails: [ // RouteAddMembersUsersList // required
|
|
93
102
|
* // "STRING_VALUE",
|
|
94
103
|
* // ],
|
|
95
104
|
* // },
|
|
105
|
+
* // notifyMessage: { // RouteNotifyMessage
|
|
106
|
+
* // botId: "STRING_VALUE", // required
|
|
107
|
+
* // userId: "STRING_VALUE",
|
|
108
|
+
* // channelId: "STRING_VALUE",
|
|
109
|
+
* // text: "STRING_VALUE", // required
|
|
110
|
+
* // variables: [ // RouteGenerativeVariablesList
|
|
111
|
+
* // { // RouteGenerativeVariable
|
|
112
|
+
* // term: "STRING_VALUE", // required
|
|
113
|
+
* // description: "STRING_VALUE", // required
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
116
|
+
* // },
|
|
117
|
+
* // notifyEmail: { // RouteNotifyEmail
|
|
118
|
+
* // recipient: "STRING_VALUE", // required
|
|
119
|
+
* // text: "STRING_VALUE", // required
|
|
120
|
+
* // variables: [
|
|
121
|
+
* // {
|
|
122
|
+
* // term: "STRING_VALUE", // required
|
|
123
|
+
* // description: "STRING_VALUE", // required
|
|
124
|
+
* // },
|
|
125
|
+
* // ],
|
|
126
|
+
* // },
|
|
96
127
|
* // },
|
|
128
|
+
* // once: true || false,
|
|
97
129
|
* // },
|
|
98
130
|
* // ],
|
|
99
131
|
* // },
|
|
@@ -121,6 +153,12 @@ declare const GetWhatsAppNumberConfigurationCommand_base: {
|
|
|
121
153
|
* // readTimeout: {
|
|
122
154
|
* // timeout: Number("int"), // required
|
|
123
155
|
* // },
|
|
156
|
+
* // inactivityTimeout: {
|
|
157
|
+
* // timeout: Number("int"), // required
|
|
158
|
+
* // },
|
|
159
|
+
* // evaluation: {
|
|
160
|
+
* // prompt: "STRING_VALUE", // required
|
|
161
|
+
* // },
|
|
124
162
|
* // },
|
|
125
163
|
* // ],
|
|
126
164
|
* // task: {// Union: only one key present
|
|
@@ -128,12 +166,38 @@ declare const GetWhatsAppNumberConfigurationCommand_base: {
|
|
|
128
166
|
* // botId: "STRING_VALUE", // required
|
|
129
167
|
* // text: "STRING_VALUE", // required
|
|
130
168
|
* // },
|
|
169
|
+
* // sendGenerativeMessage: {
|
|
170
|
+
* // botId: "STRING_VALUE", // required
|
|
171
|
+
* // },
|
|
131
172
|
* // addMembers: {
|
|
132
173
|
* // emails: [ // required
|
|
133
174
|
* // "STRING_VALUE",
|
|
134
175
|
* // ],
|
|
135
176
|
* // },
|
|
177
|
+
* // notifyMessage: {
|
|
178
|
+
* // botId: "STRING_VALUE", // required
|
|
179
|
+
* // userId: "STRING_VALUE",
|
|
180
|
+
* // channelId: "STRING_VALUE",
|
|
181
|
+
* // text: "STRING_VALUE", // required
|
|
182
|
+
* // variables: [
|
|
183
|
+
* // {
|
|
184
|
+
* // term: "STRING_VALUE", // required
|
|
185
|
+
* // description: "STRING_VALUE", // required
|
|
186
|
+
* // },
|
|
187
|
+
* // ],
|
|
188
|
+
* // },
|
|
189
|
+
* // notifyEmail: {
|
|
190
|
+
* // recipient: "STRING_VALUE", // required
|
|
191
|
+
* // text: "STRING_VALUE", // required
|
|
192
|
+
* // variables: [
|
|
193
|
+
* // {
|
|
194
|
+
* // term: "STRING_VALUE", // required
|
|
195
|
+
* // description: "STRING_VALUE", // required
|
|
196
|
+
* // },
|
|
197
|
+
* // ],
|
|
198
|
+
* // },
|
|
136
199
|
* // },
|
|
200
|
+
* // once: true || false,
|
|
137
201
|
* // },
|
|
138
202
|
* // ],
|
|
139
203
|
* // companyId: "STRING_VALUE", // required
|