@aws-sdk/client-socialmessaging 3.987.0 → 3.988.0
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/index.js +40 -921
- package/dist-cjs/models/SocialMessagingServiceException.js +12 -0
- package/dist-cjs/models/errors.js +124 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +700 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +58 -52
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SocialMessagingServiceException = require('./models/SocialMessagingServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,803 +113,6 @@ class SocialMessagingClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SocialMessagingServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SocialMessagingServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedByMetaException extends SocialMessagingServiceException {
|
|
121
|
-
name = "AccessDeniedByMetaException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedByMetaException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedByMetaException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class AccessDeniedException extends SocialMessagingServiceException {
|
|
133
|
-
name = "AccessDeniedException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "AccessDeniedException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class DependencyException extends SocialMessagingServiceException {
|
|
145
|
-
name = "DependencyException";
|
|
146
|
-
$fault = "server";
|
|
147
|
-
$retryable = {};
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "DependencyException",
|
|
151
|
-
$fault: "server",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
class InvalidParametersException extends SocialMessagingServiceException {
|
|
158
|
-
name = "InvalidParametersException";
|
|
159
|
-
$fault = "client";
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "InvalidParametersException",
|
|
163
|
-
$fault: "client",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, InvalidParametersException.prototype);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
class LimitExceededException extends SocialMessagingServiceException {
|
|
170
|
-
name = "LimitExceededException";
|
|
171
|
-
$fault = "client";
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "LimitExceededException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
class ThrottledRequestException extends SocialMessagingServiceException {
|
|
182
|
-
name = "ThrottledRequestException";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
$retryable = {};
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "ThrottledRequestException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, ThrottledRequestException.prototype);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class ValidationException extends SocialMessagingServiceException {
|
|
195
|
-
name = "ValidationException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
constructor(opts) {
|
|
198
|
-
super({
|
|
199
|
-
name: "ValidationException",
|
|
200
|
-
$fault: "client",
|
|
201
|
-
...opts,
|
|
202
|
-
});
|
|
203
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
class InternalServiceException extends SocialMessagingServiceException {
|
|
207
|
-
name = "InternalServiceException";
|
|
208
|
-
$fault = "server";
|
|
209
|
-
$retryable = {};
|
|
210
|
-
constructor(opts) {
|
|
211
|
-
super({
|
|
212
|
-
name: "InternalServiceException",
|
|
213
|
-
$fault: "server",
|
|
214
|
-
...opts,
|
|
215
|
-
});
|
|
216
|
-
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
class ResourceNotFoundException extends SocialMessagingServiceException {
|
|
220
|
-
name = "ResourceNotFoundException";
|
|
221
|
-
$fault = "client";
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "ResourceNotFoundException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
const _ADBME = "AccessDeniedByMetaException";
|
|
233
|
-
const _ADE = "AccessDeniedException";
|
|
234
|
-
const _AIPT = "AssociateInProgressToken";
|
|
235
|
-
const _AWABA = "AssociateWhatsAppBusinessAccount";
|
|
236
|
-
const _AWABAI = "AssociateWhatsAppBusinessAccountInput";
|
|
237
|
-
const _AWABAO = "AssociateWhatsAppBusinessAccountOutput";
|
|
238
|
-
const _CWAMT = "CreateWhatsAppMessageTemplate";
|
|
239
|
-
const _CWAMTFL = "CreateWhatsAppMessageTemplateFromLibrary";
|
|
240
|
-
const _CWAMTFLI = "CreateWhatsAppMessageTemplateFromLibraryInput";
|
|
241
|
-
const _CWAMTFLO = "CreateWhatsAppMessageTemplateFromLibraryOutput";
|
|
242
|
-
const _CWAMTI = "CreateWhatsAppMessageTemplateInput";
|
|
243
|
-
const _CWAMTM = "CreateWhatsAppMessageTemplateMedia";
|
|
244
|
-
const _CWAMTMI = "CreateWhatsAppMessageTemplateMediaInput";
|
|
245
|
-
const _CWAMTMO = "CreateWhatsAppMessageTemplateMediaOutput";
|
|
246
|
-
const _CWAMTO = "CreateWhatsAppMessageTemplateOutput";
|
|
247
|
-
const _DE = "DependencyException";
|
|
248
|
-
const _DWABA = "DisassociateWhatsAppBusinessAccount";
|
|
249
|
-
const _DWABAI = "DisassociateWhatsAppBusinessAccountInput";
|
|
250
|
-
const _DWABAO = "DisassociateWhatsAppBusinessAccountOutput";
|
|
251
|
-
const _DWAMM = "DeleteWhatsAppMessageMedia";
|
|
252
|
-
const _DWAMMI = "DeleteWhatsAppMessageMediaInput";
|
|
253
|
-
const _DWAMMO = "DeleteWhatsAppMessageMediaOutput";
|
|
254
|
-
const _DWAMT = "DeleteWhatsAppMessageTemplate";
|
|
255
|
-
const _DWAMTI = "DeleteWhatsAppMessageTemplateInput";
|
|
256
|
-
const _DWAMTO = "DeleteWhatsAppMessageTemplateOutput";
|
|
257
|
-
const _GLWABA = "GetLinkedWhatsAppBusinessAccount";
|
|
258
|
-
const _GLWABAI = "GetLinkedWhatsAppBusinessAccountInput";
|
|
259
|
-
const _GLWABAO = "GetLinkedWhatsAppBusinessAccountOutput";
|
|
260
|
-
const _GLWABAPN = "GetLinkedWhatsAppBusinessAccountPhoneNumber";
|
|
261
|
-
const _GLWABAPNI = "GetLinkedWhatsAppBusinessAccountPhoneNumberInput";
|
|
262
|
-
const _GLWABAPNO = "GetLinkedWhatsAppBusinessAccountPhoneNumberOutput";
|
|
263
|
-
const _GWAMM = "GetWhatsAppMessageMedia";
|
|
264
|
-
const _GWAMMI = "GetWhatsAppMessageMediaInput";
|
|
265
|
-
const _GWAMMO = "GetWhatsAppMessageMediaOutput";
|
|
266
|
-
const _GWAMT = "GetWhatsAppMessageTemplate";
|
|
267
|
-
const _GWAMTI = "GetWhatsAppMessageTemplateInput";
|
|
268
|
-
const _GWAMTO = "GetWhatsAppMessageTemplateOutput";
|
|
269
|
-
const _IPE = "InvalidParametersException";
|
|
270
|
-
const _ISE = "InternalServiceException";
|
|
271
|
-
const _LAWIS = "LinkedAccountWithIncompleteSetup";
|
|
272
|
-
const _LEE = "LimitExceededException";
|
|
273
|
-
const _LLWABA = "ListLinkedWhatsAppBusinessAccounts";
|
|
274
|
-
const _LLWABAI = "ListLinkedWhatsAppBusinessAccountsInput";
|
|
275
|
-
const _LLWABAO = "ListLinkedWhatsAppBusinessAccountsOutput";
|
|
276
|
-
const _LTBI = "LibraryTemplateBodyInputs";
|
|
277
|
-
const _LTBIi = "LibraryTemplateButtonInput";
|
|
278
|
-
const _LTBL = "LibraryTemplateButtonList";
|
|
279
|
-
const _LTFR = "ListTagsForResource";
|
|
280
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
281
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
282
|
-
const _LWABA = "LinkedWhatsAppBusinessAccount";
|
|
283
|
-
const _LWABAIMD = "LinkedWhatsAppBusinessAccountIdMetaData";
|
|
284
|
-
const _LWABAS = "LinkedWhatsAppBusinessAccountSummary";
|
|
285
|
-
const _LWABASL = "LinkedWhatsAppBusinessAccountSummaryList";
|
|
286
|
-
const _LWAMT = "ListWhatsAppMessageTemplates";
|
|
287
|
-
const _LWAMTI = "ListWhatsAppMessageTemplatesInput";
|
|
288
|
-
const _LWAMTO = "ListWhatsAppMessageTemplatesOutput";
|
|
289
|
-
const _LWATL = "ListWhatsAppTemplateLibrary";
|
|
290
|
-
const _LWATLI = "ListWhatsAppTemplateLibraryInput";
|
|
291
|
-
const _LWATLO = "ListWhatsAppTemplateLibraryOutput";
|
|
292
|
-
const _MLT = "MetaLibraryTemplate";
|
|
293
|
-
const _MLTBI = "MetaLibraryTemplateButtonInputs";
|
|
294
|
-
const _MLTBL = "MetaLibraryTemplateButtonList";
|
|
295
|
-
const _MLTD = "MetaLibraryTemplateDefinition";
|
|
296
|
-
const _MLTL = "MetaLibraryTemplatesList";
|
|
297
|
-
const _PWABAED = "PutWhatsAppBusinessAccountEventDestinations";
|
|
298
|
-
const _PWABAEDI = "PutWhatsAppBusinessAccountEventDestinationsInput";
|
|
299
|
-
const _PWABAEDO = "PutWhatsAppBusinessAccountEventDestinationsOutput";
|
|
300
|
-
const _PWAMM = "PostWhatsAppMessageMedia";
|
|
301
|
-
const _PWAMMI = "PostWhatsAppMessageMediaInput";
|
|
302
|
-
const _PWAMMO = "PostWhatsAppMessageMediaOutput";
|
|
303
|
-
const _RNFE = "ResourceNotFoundException";
|
|
304
|
-
const _SA = "SupportedApps";
|
|
305
|
-
const _SF = "S3File";
|
|
306
|
-
const _SPU = "S3PresignedUrl";
|
|
307
|
-
const _SWAM = "SendWhatsAppMessage";
|
|
308
|
-
const _SWAMI = "SendWhatsAppMessageInput";
|
|
309
|
-
const _SWAMO = "SendWhatsAppMessageOutput";
|
|
310
|
-
const _T = "Tag";
|
|
311
|
-
const _TFP = "TwoFactorPin";
|
|
312
|
-
const _TL = "TagList";
|
|
313
|
-
const _TR = "TagResource";
|
|
314
|
-
const _TRE = "ThrottledRequestException";
|
|
315
|
-
const _TRI = "TagResourceInput";
|
|
316
|
-
const _TRO = "TagResourceOutput";
|
|
317
|
-
const _TS = "TemplateSummary";
|
|
318
|
-
const _TSL = "TemplateSummaryList";
|
|
319
|
-
const _UR = "UntagResource";
|
|
320
|
-
const _URI = "UntagResourceInput";
|
|
321
|
-
const _URO = "UntagResourceOutput";
|
|
322
|
-
const _UWAMT = "UpdateWhatsAppMessageTemplate";
|
|
323
|
-
const _UWAMTI = "UpdateWhatsAppMessageTemplateInput";
|
|
324
|
-
const _UWAMTO = "UpdateWhatsAppMessageTemplateOutput";
|
|
325
|
-
const _VE = "ValidationException";
|
|
326
|
-
const _WABAED = "WhatsAppBusinessAccountEventDestination";
|
|
327
|
-
const _WABAEDh = "WhatsAppBusinessAccountEventDestinations";
|
|
328
|
-
const _WAMB = "WhatsAppMessageBlob";
|
|
329
|
-
const _WAPND = "WhatsAppPhoneNumberDetail";
|
|
330
|
-
const _WAPNDL = "WhatsAppPhoneNumberDetailList";
|
|
331
|
-
const _WAPNS = "WhatsAppPhoneNumberSummary";
|
|
332
|
-
const _WAPNSL = "WhatsAppPhoneNumberSummaryList";
|
|
333
|
-
const _WASC = "WhatsAppSignupCallback";
|
|
334
|
-
const _WASCR = "WhatsAppSignupCallbackResult";
|
|
335
|
-
const _WASF = "WhatsAppSetupFinalization";
|
|
336
|
-
const _WPNSF = "WabaPhoneNumberSetupFinalization";
|
|
337
|
-
const _WPNSFL = "WabaPhoneNumberSetupFinalizationList";
|
|
338
|
-
const _WSF = "WabaSetupFinalization";
|
|
339
|
-
const _a = "account";
|
|
340
|
-
const _aCN = "addContactNumber";
|
|
341
|
-
const _aIPT = "associateInProgressToken";
|
|
342
|
-
const _aLML = "addLearnMoreLink";
|
|
343
|
-
const _aN = "accountName";
|
|
344
|
-
const _aSR = "addSecurityRecommendation";
|
|
345
|
-
const _aT = "accessToken";
|
|
346
|
-
const _aTPL = "addTrackPackageLink";
|
|
347
|
-
const _ar = "arn";
|
|
348
|
-
const _bN = "bucketName";
|
|
349
|
-
const _c = "client";
|
|
350
|
-
const _cEM = "codeExpirationMinutes";
|
|
351
|
-
const _cU = "callbackUrl";
|
|
352
|
-
const _cULTOO = "ctaUrlLinkTrackingOptedOut";
|
|
353
|
-
const _ca = "category";
|
|
354
|
-
const _dAL = "deleteAllLanguages";
|
|
355
|
-
const _dAT = "deleteAllTemplates";
|
|
356
|
-
const _dLR = "dataLocalizationRegion";
|
|
357
|
-
const _dPN = "displayPhoneNumber";
|
|
358
|
-
const _dPNN = "displayPhoneNumberName";
|
|
359
|
-
const _dSF = "destinationS3File";
|
|
360
|
-
const _dSPU = "destinationS3PresignedUrl";
|
|
361
|
-
const _e = "error";
|
|
362
|
-
const _eD = "eventDestinations";
|
|
363
|
-
const _eDA = "eventDestinationArn";
|
|
364
|
-
const _f = "filters";
|
|
365
|
-
const _fS = "fileSize";
|
|
366
|
-
const _h = "headers";
|
|
367
|
-
const _hE = "httpError";
|
|
368
|
-
const _hQ = "httpQuery";
|
|
369
|
-
const _ht = "http";
|
|
370
|
-
const _i = "id";
|
|
371
|
-
const _k = "key";
|
|
372
|
-
const _lA = "linkedAccounts";
|
|
373
|
-
const _lAWIS = "linkedAccountsWithIncompleteSetup";
|
|
374
|
-
const _lD = "linkDate";
|
|
375
|
-
const _lTBI = "libraryTemplateButtonInputs";
|
|
376
|
-
const _lTBIi = "libraryTemplateBodyInputs";
|
|
377
|
-
const _lTN = "libraryTemplateName";
|
|
378
|
-
const _lWABAI = "linkedWhatsAppBusinessAccountId";
|
|
379
|
-
const _m = "message";
|
|
380
|
-
const _mAV = "metaApiVersion";
|
|
381
|
-
const _mHH = "metaHeaderHandle";
|
|
382
|
-
const _mI = "mediaId";
|
|
383
|
-
const _mIe = "messageId";
|
|
384
|
-
const _mLT = "metaLibraryTemplate";
|
|
385
|
-
const _mLTe = "metaLibraryTemplates";
|
|
386
|
-
const _mO = "metadataOnly";
|
|
387
|
-
const _mPNI = "metaPhoneNumberId";
|
|
388
|
-
const _mR = "maxResults";
|
|
389
|
-
const _mT = "mimeType";
|
|
390
|
-
const _mTI = "metaTemplateId";
|
|
391
|
-
const _nT = "nextToken";
|
|
392
|
-
const _oPNI = "originationPhoneNumberId";
|
|
393
|
-
const _oT = "otpType";
|
|
394
|
-
const _pF = "parameterFormat";
|
|
395
|
-
const _pN = "phoneNumber";
|
|
396
|
-
const _pNI = "phoneNumberId";
|
|
397
|
-
const _pNP = "phoneNumberParent";
|
|
398
|
-
const _pNh = "phoneNumbers";
|
|
399
|
-
const _qR = "qualityRating";
|
|
400
|
-
const _rA = "resourceArn";
|
|
401
|
-
const _rAo = "roleArn";
|
|
402
|
-
const _rS = "registrationStatus";
|
|
403
|
-
const _s = "success";
|
|
404
|
-
const _sA = "supportedApps";
|
|
405
|
-
const _sC = "signupCallback";
|
|
406
|
-
const _sCR = "signupCallbackResult";
|
|
407
|
-
const _sCt = "statusCode";
|
|
408
|
-
const _sF = "setupFinalization";
|
|
409
|
-
const _sSF = "sourceS3File";
|
|
410
|
-
const _sSPU = "sourceS3PresignedUrl";
|
|
411
|
-
const _se = "server";
|
|
412
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.socialmessaging";
|
|
413
|
-
const _t = "template";
|
|
414
|
-
const _tB = "templateBody";
|
|
415
|
-
const _tBEP = "templateBodyExampleParams";
|
|
416
|
-
const _tBe = "templateButtons";
|
|
417
|
-
const _tC = "templateCategory";
|
|
418
|
-
const _tCe = "templateComponents";
|
|
419
|
-
const _tD = "templateDefinition";
|
|
420
|
-
const _tFP = "twoFactorPin";
|
|
421
|
-
const _tH = "templateHeader";
|
|
422
|
-
const _tI = "templateIndustry";
|
|
423
|
-
const _tIe = "templateId";
|
|
424
|
-
const _tK = "tagKeys";
|
|
425
|
-
const _tL = "templateLanguage";
|
|
426
|
-
const _tN = "templateName";
|
|
427
|
-
const _tQS = "templateQualityScore";
|
|
428
|
-
const _tS = "templateStatus";
|
|
429
|
-
const _tT = "templateTopic";
|
|
430
|
-
const _tUC = "templateUseCase";
|
|
431
|
-
const _ta = "tags";
|
|
432
|
-
const _te = "text";
|
|
433
|
-
const _tem = "templates";
|
|
434
|
-
const _ty = "type";
|
|
435
|
-
const _u = "url";
|
|
436
|
-
const _uWAPN = "unregisteredWhatsAppPhoneNumbers";
|
|
437
|
-
const _v = "value";
|
|
438
|
-
const _w = "waba";
|
|
439
|
-
const _wI = "wabaId";
|
|
440
|
-
const _wN = "wabaName";
|
|
441
|
-
const _zTTA = "zeroTapTermsAccepted";
|
|
442
|
-
const n0 = "com.amazonaws.socialmessaging";
|
|
443
|
-
var AssociateInProgressToken = [0, n0, _AIPT, 8, 0];
|
|
444
|
-
var TwoFactorPin = [0, n0, _TFP, 8, 0];
|
|
445
|
-
var WhatsAppMessageBlob = [0, n0, _WAMB, 8, 21];
|
|
446
|
-
var AccessDeniedByMetaException$ = [-3, n0, _ADBME,
|
|
447
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
448
|
-
[_m],
|
|
449
|
-
[0]
|
|
450
|
-
];
|
|
451
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedByMetaException$, AccessDeniedByMetaException);
|
|
452
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
453
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
454
|
-
[_m],
|
|
455
|
-
[0]
|
|
456
|
-
];
|
|
457
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
458
|
-
var AssociateWhatsAppBusinessAccountInput$ = [3, n0, _AWABAI,
|
|
459
|
-
0,
|
|
460
|
-
[_sC, _sF],
|
|
461
|
-
[() => WhatsAppSignupCallback$, [() => WhatsAppSetupFinalization$, 0]]
|
|
462
|
-
];
|
|
463
|
-
var AssociateWhatsAppBusinessAccountOutput$ = [3, n0, _AWABAO,
|
|
464
|
-
0,
|
|
465
|
-
[_sCR, _sCt],
|
|
466
|
-
[[() => WhatsAppSignupCallbackResult$, 0], 1]
|
|
467
|
-
];
|
|
468
|
-
var CreateWhatsAppMessageTemplateFromLibraryInput$ = [3, n0, _CWAMTFLI,
|
|
469
|
-
0,
|
|
470
|
-
[_mLT, _i],
|
|
471
|
-
[() => MetaLibraryTemplate$, 0], 2
|
|
472
|
-
];
|
|
473
|
-
var CreateWhatsAppMessageTemplateFromLibraryOutput$ = [3, n0, _CWAMTFLO,
|
|
474
|
-
0,
|
|
475
|
-
[_mTI, _tS, _ca],
|
|
476
|
-
[0, 0, 0]
|
|
477
|
-
];
|
|
478
|
-
var CreateWhatsAppMessageTemplateInput$ = [3, n0, _CWAMTI,
|
|
479
|
-
0,
|
|
480
|
-
[_tD, _i],
|
|
481
|
-
[21, 0], 2
|
|
482
|
-
];
|
|
483
|
-
var CreateWhatsAppMessageTemplateMediaInput$ = [3, n0, _CWAMTMI,
|
|
484
|
-
0,
|
|
485
|
-
[_i, _sSF],
|
|
486
|
-
[0, [() => S3File$, 0]], 1
|
|
487
|
-
];
|
|
488
|
-
var CreateWhatsAppMessageTemplateMediaOutput$ = [3, n0, _CWAMTMO,
|
|
489
|
-
0,
|
|
490
|
-
[_mHH],
|
|
491
|
-
[0]
|
|
492
|
-
];
|
|
493
|
-
var CreateWhatsAppMessageTemplateOutput$ = [3, n0, _CWAMTO,
|
|
494
|
-
0,
|
|
495
|
-
[_mTI, _tS, _ca],
|
|
496
|
-
[0, 0, 0]
|
|
497
|
-
];
|
|
498
|
-
var DeleteWhatsAppMessageMediaInput$ = [3, n0, _DWAMMI,
|
|
499
|
-
0,
|
|
500
|
-
[_mI, _oPNI],
|
|
501
|
-
[[0, { [_hQ]: _mI }], [0, { [_hQ]: _oPNI }]], 2
|
|
502
|
-
];
|
|
503
|
-
var DeleteWhatsAppMessageMediaOutput$ = [3, n0, _DWAMMO,
|
|
504
|
-
0,
|
|
505
|
-
[_s],
|
|
506
|
-
[2]
|
|
507
|
-
];
|
|
508
|
-
var DeleteWhatsAppMessageTemplateInput$ = [3, n0, _DWAMTI,
|
|
509
|
-
0,
|
|
510
|
-
[_i, _tN, _mTI, _dAL],
|
|
511
|
-
[[0, { [_hQ]: _i }], [0, { [_hQ]: _tN }], [0, { [_hQ]: _mTI }], [2, { [_hQ]: _dAT }]], 2
|
|
512
|
-
];
|
|
513
|
-
var DeleteWhatsAppMessageTemplateOutput$ = [3, n0, _DWAMTO,
|
|
514
|
-
0,
|
|
515
|
-
[],
|
|
516
|
-
[]
|
|
517
|
-
];
|
|
518
|
-
var DependencyException$ = [-3, n0, _DE,
|
|
519
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
520
|
-
[_m],
|
|
521
|
-
[0]
|
|
522
|
-
];
|
|
523
|
-
schema.TypeRegistry.for(n0).registerError(DependencyException$, DependencyException);
|
|
524
|
-
var DisassociateWhatsAppBusinessAccountInput$ = [3, n0, _DWABAI,
|
|
525
|
-
0,
|
|
526
|
-
[_i],
|
|
527
|
-
[[0, { [_hQ]: _i }]], 1
|
|
528
|
-
];
|
|
529
|
-
var DisassociateWhatsAppBusinessAccountOutput$ = [3, n0, _DWABAO,
|
|
530
|
-
0,
|
|
531
|
-
[],
|
|
532
|
-
[]
|
|
533
|
-
];
|
|
534
|
-
var GetLinkedWhatsAppBusinessAccountInput$ = [3, n0, _GLWABAI,
|
|
535
|
-
0,
|
|
536
|
-
[_i],
|
|
537
|
-
[[0, { [_hQ]: _i }]], 1
|
|
538
|
-
];
|
|
539
|
-
var GetLinkedWhatsAppBusinessAccountOutput$ = [3, n0, _GLWABAO,
|
|
540
|
-
0,
|
|
541
|
-
[_a],
|
|
542
|
-
[() => LinkedWhatsAppBusinessAccount$]
|
|
543
|
-
];
|
|
544
|
-
var GetLinkedWhatsAppBusinessAccountPhoneNumberInput$ = [3, n0, _GLWABAPNI,
|
|
545
|
-
0,
|
|
546
|
-
[_i],
|
|
547
|
-
[[0, { [_hQ]: _i }]], 1
|
|
548
|
-
];
|
|
549
|
-
var GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$ = [3, n0, _GLWABAPNO,
|
|
550
|
-
0,
|
|
551
|
-
[_pN, _lWABAI],
|
|
552
|
-
[() => WhatsAppPhoneNumberDetail$, 0]
|
|
553
|
-
];
|
|
554
|
-
var GetWhatsAppMessageMediaInput$ = [3, n0, _GWAMMI,
|
|
555
|
-
0,
|
|
556
|
-
[_mI, _oPNI, _mO, _dSPU, _dSF],
|
|
557
|
-
[0, 0, 2, [() => S3PresignedUrl$, 0], [() => S3File$, 0]], 2
|
|
558
|
-
];
|
|
559
|
-
var GetWhatsAppMessageMediaOutput$ = [3, n0, _GWAMMO,
|
|
560
|
-
0,
|
|
561
|
-
[_mT, _fS],
|
|
562
|
-
[0, 1]
|
|
563
|
-
];
|
|
564
|
-
var GetWhatsAppMessageTemplateInput$ = [3, n0, _GWAMTI,
|
|
565
|
-
0,
|
|
566
|
-
[_mTI, _i],
|
|
567
|
-
[[0, { [_hQ]: _mTI }], [0, { [_hQ]: _i }]], 2
|
|
568
|
-
];
|
|
569
|
-
var GetWhatsAppMessageTemplateOutput$ = [3, n0, _GWAMTO,
|
|
570
|
-
0,
|
|
571
|
-
[_t],
|
|
572
|
-
[0]
|
|
573
|
-
];
|
|
574
|
-
var InternalServiceException$ = [-3, n0, _ISE,
|
|
575
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
576
|
-
[_m],
|
|
577
|
-
[0]
|
|
578
|
-
];
|
|
579
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceException$, InternalServiceException);
|
|
580
|
-
var InvalidParametersException$ = [-3, n0, _IPE,
|
|
581
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
582
|
-
[_m],
|
|
583
|
-
[0]
|
|
584
|
-
];
|
|
585
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParametersException$, InvalidParametersException);
|
|
586
|
-
var LibraryTemplateBodyInputs$ = [3, n0, _LTBI,
|
|
587
|
-
0,
|
|
588
|
-
[_aCN, _aLML, _aSR, _aTPL, _cEM],
|
|
589
|
-
[2, 2, 2, 2, 1]
|
|
590
|
-
];
|
|
591
|
-
var LibraryTemplateButtonInput$ = [3, n0, _LTBIi,
|
|
592
|
-
0,
|
|
593
|
-
[_ty, _pN, _u, _oT, _zTTA, _sA],
|
|
594
|
-
[0, 0, 128 | 0, 0, 2, [1, n0, _SA, 0, 128 | 0]]
|
|
595
|
-
];
|
|
596
|
-
var LibraryTemplateButtonList$ = [3, n0, _LTBL,
|
|
597
|
-
0,
|
|
598
|
-
[_ty, _te, _pN, _u, _oT, _zTTA, _sA],
|
|
599
|
-
[0, 0, 0, 0, 0, 2, [1, n0, _SA, 0, 128 | 0]]
|
|
600
|
-
];
|
|
601
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
602
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
603
|
-
[_m],
|
|
604
|
-
[0]
|
|
605
|
-
];
|
|
606
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
607
|
-
var LinkedWhatsAppBusinessAccount$ = [3, n0, _LWABA,
|
|
608
|
-
0,
|
|
609
|
-
[_ar, _i, _wI, _rS, _lD, _wN, _eD, _pNh],
|
|
610
|
-
[0, 0, 0, 0, 4, 0, () => WhatsAppBusinessAccountEventDestinations, () => WhatsAppPhoneNumberSummaryList], 8
|
|
611
|
-
];
|
|
612
|
-
var LinkedWhatsAppBusinessAccountIdMetaData$ = [3, n0, _LWABAIMD,
|
|
613
|
-
0,
|
|
614
|
-
[_aN, _rS, _uWAPN, _wI],
|
|
615
|
-
[0, 0, () => WhatsAppPhoneNumberDetailList, 0]
|
|
616
|
-
];
|
|
617
|
-
var LinkedWhatsAppBusinessAccountSummary$ = [3, n0, _LWABAS,
|
|
618
|
-
0,
|
|
619
|
-
[_ar, _i, _wI, _rS, _lD, _wN, _eD],
|
|
620
|
-
[0, 0, 0, 0, 4, 0, () => WhatsAppBusinessAccountEventDestinations], 7
|
|
621
|
-
];
|
|
622
|
-
var ListLinkedWhatsAppBusinessAccountsInput$ = [3, n0, _LLWABAI,
|
|
623
|
-
0,
|
|
624
|
-
[_nT, _mR],
|
|
625
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
626
|
-
];
|
|
627
|
-
var ListLinkedWhatsAppBusinessAccountsOutput$ = [3, n0, _LLWABAO,
|
|
628
|
-
0,
|
|
629
|
-
[_lA, _nT],
|
|
630
|
-
[() => LinkedWhatsAppBusinessAccountSummaryList, 0]
|
|
631
|
-
];
|
|
632
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
633
|
-
0,
|
|
634
|
-
[_rA],
|
|
635
|
-
[[0, { [_hQ]: _rA }]], 1
|
|
636
|
-
];
|
|
637
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
638
|
-
0,
|
|
639
|
-
[_sCt, _ta],
|
|
640
|
-
[1, () => TagList]
|
|
641
|
-
];
|
|
642
|
-
var ListWhatsAppMessageTemplatesInput$ = [3, n0, _LWAMTI,
|
|
643
|
-
0,
|
|
644
|
-
[_i, _nT, _mR],
|
|
645
|
-
[[0, { [_hQ]: _i }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
646
|
-
];
|
|
647
|
-
var ListWhatsAppMessageTemplatesOutput$ = [3, n0, _LWAMTO,
|
|
648
|
-
0,
|
|
649
|
-
[_tem, _nT],
|
|
650
|
-
[() => TemplateSummaryList, 0]
|
|
651
|
-
];
|
|
652
|
-
var ListWhatsAppTemplateLibraryInput$ = [3, n0, _LWATLI,
|
|
653
|
-
0,
|
|
654
|
-
[_i, _nT, _mR, _f],
|
|
655
|
-
[[0, { [_hQ]: _i }], 0, 1, 128 | 0], 1
|
|
656
|
-
];
|
|
657
|
-
var ListWhatsAppTemplateLibraryOutput$ = [3, n0, _LWATLO,
|
|
658
|
-
0,
|
|
659
|
-
[_mLTe, _nT],
|
|
660
|
-
[() => MetaLibraryTemplatesList, 0]
|
|
661
|
-
];
|
|
662
|
-
var MetaLibraryTemplate$ = [3, n0, _MLT,
|
|
663
|
-
0,
|
|
664
|
-
[_tN, _lTN, _tC, _tL, _lTBI, _lTBIi],
|
|
665
|
-
[0, 0, 0, 0, () => MetaLibraryTemplateButtonInputs, () => LibraryTemplateBodyInputs$], 4
|
|
666
|
-
];
|
|
667
|
-
var MetaLibraryTemplateDefinition$ = [3, n0, _MLTD,
|
|
668
|
-
0,
|
|
669
|
-
[_tN, _tL, _tC, _tT, _tUC, _tI, _tH, _tB, _tBe, _tIe, _tBEP],
|
|
670
|
-
[0, 0, 0, 0, 0, 64 | 0, 0, 0, () => MetaLibraryTemplateButtonList, 0, 64 | 0]
|
|
671
|
-
];
|
|
672
|
-
var PostWhatsAppMessageMediaInput$ = [3, n0, _PWAMMI,
|
|
673
|
-
0,
|
|
674
|
-
[_oPNI, _sSPU, _sSF],
|
|
675
|
-
[0, [() => S3PresignedUrl$, 0], [() => S3File$, 0]], 1
|
|
676
|
-
];
|
|
677
|
-
var PostWhatsAppMessageMediaOutput$ = [3, n0, _PWAMMO,
|
|
678
|
-
0,
|
|
679
|
-
[_mI],
|
|
680
|
-
[0]
|
|
681
|
-
];
|
|
682
|
-
var PutWhatsAppBusinessAccountEventDestinationsInput$ = [3, n0, _PWABAEDI,
|
|
683
|
-
0,
|
|
684
|
-
[_i, _eD],
|
|
685
|
-
[0, () => WhatsAppBusinessAccountEventDestinations], 2
|
|
686
|
-
];
|
|
687
|
-
var PutWhatsAppBusinessAccountEventDestinationsOutput$ = [3, n0, _PWABAEDO,
|
|
688
|
-
0,
|
|
689
|
-
[],
|
|
690
|
-
[]
|
|
691
|
-
];
|
|
692
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
693
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
694
|
-
[_m],
|
|
695
|
-
[0]
|
|
696
|
-
];
|
|
697
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
698
|
-
var S3File$ = [3, n0, _SF,
|
|
699
|
-
8,
|
|
700
|
-
[_bN, _k],
|
|
701
|
-
[0, 0], 2
|
|
702
|
-
];
|
|
703
|
-
var S3PresignedUrl$ = [3, n0, _SPU,
|
|
704
|
-
8,
|
|
705
|
-
[_u, _h],
|
|
706
|
-
[0, 128 | 0], 2
|
|
707
|
-
];
|
|
708
|
-
var SendWhatsAppMessageInput$ = [3, n0, _SWAMI,
|
|
709
|
-
0,
|
|
710
|
-
[_oPNI, _m, _mAV],
|
|
711
|
-
[0, [() => WhatsAppMessageBlob, 0], 0], 3
|
|
712
|
-
];
|
|
713
|
-
var SendWhatsAppMessageOutput$ = [3, n0, _SWAMO,
|
|
714
|
-
0,
|
|
715
|
-
[_mIe],
|
|
716
|
-
[0]
|
|
717
|
-
];
|
|
718
|
-
var Tag$ = [3, n0, _T,
|
|
719
|
-
0,
|
|
720
|
-
[_k, _v],
|
|
721
|
-
[0, 0], 1
|
|
722
|
-
];
|
|
723
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
724
|
-
0,
|
|
725
|
-
[_rA, _ta],
|
|
726
|
-
[0, () => TagList], 2
|
|
727
|
-
];
|
|
728
|
-
var TagResourceOutput$ = [3, n0, _TRO,
|
|
729
|
-
0,
|
|
730
|
-
[_sCt],
|
|
731
|
-
[1]
|
|
732
|
-
];
|
|
733
|
-
var TemplateSummary$ = [3, n0, _TS,
|
|
734
|
-
0,
|
|
735
|
-
[_tN, _mTI, _tS, _tQS, _tL, _tC],
|
|
736
|
-
[0, 0, 0, 0, 0, 0]
|
|
737
|
-
];
|
|
738
|
-
var ThrottledRequestException$ = [-3, n0, _TRE,
|
|
739
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
740
|
-
[_m],
|
|
741
|
-
[0]
|
|
742
|
-
];
|
|
743
|
-
schema.TypeRegistry.for(n0).registerError(ThrottledRequestException$, ThrottledRequestException);
|
|
744
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
745
|
-
0,
|
|
746
|
-
[_rA, _tK],
|
|
747
|
-
[0, 64 | 0], 2
|
|
748
|
-
];
|
|
749
|
-
var UntagResourceOutput$ = [3, n0, _URO,
|
|
750
|
-
0,
|
|
751
|
-
[_sCt],
|
|
752
|
-
[1]
|
|
753
|
-
];
|
|
754
|
-
var UpdateWhatsAppMessageTemplateInput$ = [3, n0, _UWAMTI,
|
|
755
|
-
0,
|
|
756
|
-
[_i, _mTI, _pF, _tC, _tCe, _cULTOO],
|
|
757
|
-
[0, 0, 0, 0, 21, 2], 2
|
|
758
|
-
];
|
|
759
|
-
var UpdateWhatsAppMessageTemplateOutput$ = [3, n0, _UWAMTO,
|
|
760
|
-
0,
|
|
761
|
-
[],
|
|
762
|
-
[]
|
|
763
|
-
];
|
|
764
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
765
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
766
|
-
[_m],
|
|
767
|
-
[0]
|
|
768
|
-
];
|
|
769
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
770
|
-
var WabaPhoneNumberSetupFinalization$ = [3, n0, _WPNSF,
|
|
771
|
-
0,
|
|
772
|
-
[_i, _tFP, _dLR, _ta],
|
|
773
|
-
[0, [() => TwoFactorPin, 0], 0, () => TagList], 2
|
|
774
|
-
];
|
|
775
|
-
var WabaSetupFinalization$ = [3, n0, _WSF,
|
|
776
|
-
0,
|
|
777
|
-
[_i, _eD, _ta],
|
|
778
|
-
[0, () => WhatsAppBusinessAccountEventDestinations, () => TagList]
|
|
779
|
-
];
|
|
780
|
-
var WhatsAppBusinessAccountEventDestination$ = [3, n0, _WABAED,
|
|
781
|
-
0,
|
|
782
|
-
[_eDA, _rAo],
|
|
783
|
-
[0, 0], 1
|
|
784
|
-
];
|
|
785
|
-
var WhatsAppPhoneNumberDetail$ = [3, n0, _WAPND,
|
|
786
|
-
0,
|
|
787
|
-
[_ar, _pN, _pNI, _mPNI, _dPNN, _dPN, _qR, _dLR],
|
|
788
|
-
[0, 0, 0, 0, 0, 0, 0, 0], 7
|
|
789
|
-
];
|
|
790
|
-
var WhatsAppPhoneNumberSummary$ = [3, n0, _WAPNS,
|
|
791
|
-
0,
|
|
792
|
-
[_ar, _pN, _pNI, _mPNI, _dPNN, _dPN, _qR, _dLR],
|
|
793
|
-
[0, 0, 0, 0, 0, 0, 0, 0], 7
|
|
794
|
-
];
|
|
795
|
-
var WhatsAppSetupFinalization$ = [3, n0, _WASF,
|
|
796
|
-
0,
|
|
797
|
-
[_aIPT, _pNh, _pNP, _w],
|
|
798
|
-
[[() => AssociateInProgressToken, 0], [() => WabaPhoneNumberSetupFinalizationList, 0], 0, () => WabaSetupFinalization$], 2
|
|
799
|
-
];
|
|
800
|
-
var WhatsAppSignupCallback$ = [3, n0, _WASC,
|
|
801
|
-
0,
|
|
802
|
-
[_aT, _cU],
|
|
803
|
-
[0, 0], 1
|
|
804
|
-
];
|
|
805
|
-
var WhatsAppSignupCallbackResult$ = [3, n0, _WASCR,
|
|
806
|
-
0,
|
|
807
|
-
[_aIPT, _lAWIS],
|
|
808
|
-
[[() => AssociateInProgressToken, 0], () => LinkedAccountWithIncompleteSetup]
|
|
809
|
-
];
|
|
810
|
-
var SocialMessagingServiceException$ = [-3, _sm, "SocialMessagingServiceException", 0, [], []];
|
|
811
|
-
schema.TypeRegistry.for(_sm).registerError(SocialMessagingServiceException$, SocialMessagingServiceException);
|
|
812
|
-
var LinkedWhatsAppBusinessAccountSummaryList = [1, n0, _LWABASL,
|
|
813
|
-
0, () => LinkedWhatsAppBusinessAccountSummary$
|
|
814
|
-
];
|
|
815
|
-
var MetaLibraryTemplateButtonInputs = [1, n0, _MLTBI,
|
|
816
|
-
0, () => LibraryTemplateButtonInput$
|
|
817
|
-
];
|
|
818
|
-
var MetaLibraryTemplateButtonList = [1, n0, _MLTBL,
|
|
819
|
-
0, () => LibraryTemplateButtonList$
|
|
820
|
-
];
|
|
821
|
-
var MetaLibraryTemplatesList = [1, n0, _MLTL,
|
|
822
|
-
0, () => MetaLibraryTemplateDefinition$
|
|
823
|
-
];
|
|
824
|
-
var TagList = [1, n0, _TL,
|
|
825
|
-
0, () => Tag$
|
|
826
|
-
];
|
|
827
|
-
var TemplateSummaryList = [1, n0, _TSL,
|
|
828
|
-
0, () => TemplateSummary$
|
|
829
|
-
];
|
|
830
|
-
var WabaPhoneNumberSetupFinalizationList = [1, n0, _WPNSFL,
|
|
831
|
-
0, [() => WabaPhoneNumberSetupFinalization$,
|
|
832
|
-
0]
|
|
833
|
-
];
|
|
834
|
-
var WhatsAppBusinessAccountEventDestinations = [1, n0, _WABAEDh,
|
|
835
|
-
0, () => WhatsAppBusinessAccountEventDestination$
|
|
836
|
-
];
|
|
837
|
-
var WhatsAppPhoneNumberDetailList = [1, n0, _WAPNDL,
|
|
838
|
-
0, () => WhatsAppPhoneNumberDetail$
|
|
839
|
-
];
|
|
840
|
-
var WhatsAppPhoneNumberSummaryList = [1, n0, _WAPNSL,
|
|
841
|
-
0, () => WhatsAppPhoneNumberSummary$
|
|
842
|
-
];
|
|
843
|
-
var LinkedAccountWithIncompleteSetup = [2, n0, _LAWIS,
|
|
844
|
-
0, 0, () => LinkedWhatsAppBusinessAccountIdMetaData$
|
|
845
|
-
];
|
|
846
|
-
var AssociateWhatsAppBusinessAccount$ = [9, n0, _AWABA,
|
|
847
|
-
{ [_ht]: ["POST", "/v1/whatsapp/signup", 200] }, () => AssociateWhatsAppBusinessAccountInput$, () => AssociateWhatsAppBusinessAccountOutput$
|
|
848
|
-
];
|
|
849
|
-
var CreateWhatsAppMessageTemplate$ = [9, n0, _CWAMT,
|
|
850
|
-
{ [_ht]: ["POST", "/v1/whatsapp/template/put", 200] }, () => CreateWhatsAppMessageTemplateInput$, () => CreateWhatsAppMessageTemplateOutput$
|
|
851
|
-
];
|
|
852
|
-
var CreateWhatsAppMessageTemplateFromLibrary$ = [9, n0, _CWAMTFL,
|
|
853
|
-
{ [_ht]: ["POST", "/v1/whatsapp/template/create", 200] }, () => CreateWhatsAppMessageTemplateFromLibraryInput$, () => CreateWhatsAppMessageTemplateFromLibraryOutput$
|
|
854
|
-
];
|
|
855
|
-
var CreateWhatsAppMessageTemplateMedia$ = [9, n0, _CWAMTM,
|
|
856
|
-
{ [_ht]: ["POST", "/v1/whatsapp/template/media", 200] }, () => CreateWhatsAppMessageTemplateMediaInput$, () => CreateWhatsAppMessageTemplateMediaOutput$
|
|
857
|
-
];
|
|
858
|
-
var DeleteWhatsAppMessageMedia$ = [9, n0, _DWAMM,
|
|
859
|
-
{ [_ht]: ["DELETE", "/v1/whatsapp/media", 200] }, () => DeleteWhatsAppMessageMediaInput$, () => DeleteWhatsAppMessageMediaOutput$
|
|
860
|
-
];
|
|
861
|
-
var DeleteWhatsAppMessageTemplate$ = [9, n0, _DWAMT,
|
|
862
|
-
{ [_ht]: ["DELETE", "/v1/whatsapp/template", 200] }, () => DeleteWhatsAppMessageTemplateInput$, () => DeleteWhatsAppMessageTemplateOutput$
|
|
863
|
-
];
|
|
864
|
-
var DisassociateWhatsAppBusinessAccount$ = [9, n0, _DWABA,
|
|
865
|
-
{ [_ht]: ["DELETE", "/v1/whatsapp/waba/disassociate", 200] }, () => DisassociateWhatsAppBusinessAccountInput$, () => DisassociateWhatsAppBusinessAccountOutput$
|
|
866
|
-
];
|
|
867
|
-
var GetLinkedWhatsAppBusinessAccount$ = [9, n0, _GLWABA,
|
|
868
|
-
{ [_ht]: ["GET", "/v1/whatsapp/waba/details", 200] }, () => GetLinkedWhatsAppBusinessAccountInput$, () => GetLinkedWhatsAppBusinessAccountOutput$
|
|
869
|
-
];
|
|
870
|
-
var GetLinkedWhatsAppBusinessAccountPhoneNumber$ = [9, n0, _GLWABAPN,
|
|
871
|
-
{ [_ht]: ["GET", "/v1/whatsapp/waba/phone/details", 200] }, () => GetLinkedWhatsAppBusinessAccountPhoneNumberInput$, () => GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$
|
|
872
|
-
];
|
|
873
|
-
var GetWhatsAppMessageMedia$ = [9, n0, _GWAMM,
|
|
874
|
-
{ [_ht]: ["POST", "/v1/whatsapp/media/get", 200] }, () => GetWhatsAppMessageMediaInput$, () => GetWhatsAppMessageMediaOutput$
|
|
875
|
-
];
|
|
876
|
-
var GetWhatsAppMessageTemplate$ = [9, n0, _GWAMT,
|
|
877
|
-
{ [_ht]: ["GET", "/v1/whatsapp/template", 200] }, () => GetWhatsAppMessageTemplateInput$, () => GetWhatsAppMessageTemplateOutput$
|
|
878
|
-
];
|
|
879
|
-
var ListLinkedWhatsAppBusinessAccounts$ = [9, n0, _LLWABA,
|
|
880
|
-
{ [_ht]: ["GET", "/v1/whatsapp/waba/list", 200] }, () => ListLinkedWhatsAppBusinessAccountsInput$, () => ListLinkedWhatsAppBusinessAccountsOutput$
|
|
881
|
-
];
|
|
882
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
883
|
-
{ [_ht]: ["GET", "/v1/tags/list", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
884
|
-
];
|
|
885
|
-
var ListWhatsAppMessageTemplates$ = [9, n0, _LWAMT,
|
|
886
|
-
{ [_ht]: ["GET", "/v1/whatsapp/template/list", 200] }, () => ListWhatsAppMessageTemplatesInput$, () => ListWhatsAppMessageTemplatesOutput$
|
|
887
|
-
];
|
|
888
|
-
var ListWhatsAppTemplateLibrary$ = [9, n0, _LWATL,
|
|
889
|
-
{ [_ht]: ["POST", "/v1/whatsapp/template/library", 200] }, () => ListWhatsAppTemplateLibraryInput$, () => ListWhatsAppTemplateLibraryOutput$
|
|
890
|
-
];
|
|
891
|
-
var PostWhatsAppMessageMedia$ = [9, n0, _PWAMM,
|
|
892
|
-
{ [_ht]: ["POST", "/v1/whatsapp/media", 200] }, () => PostWhatsAppMessageMediaInput$, () => PostWhatsAppMessageMediaOutput$
|
|
893
|
-
];
|
|
894
|
-
var PutWhatsAppBusinessAccountEventDestinations$ = [9, n0, _PWABAED,
|
|
895
|
-
{ [_ht]: ["PUT", "/v1/whatsapp/waba/eventdestinations", 200] }, () => PutWhatsAppBusinessAccountEventDestinationsInput$, () => PutWhatsAppBusinessAccountEventDestinationsOutput$
|
|
896
|
-
];
|
|
897
|
-
var SendWhatsAppMessage$ = [9, n0, _SWAM,
|
|
898
|
-
{ [_ht]: ["POST", "/v1/whatsapp/send", 200] }, () => SendWhatsAppMessageInput$, () => SendWhatsAppMessageOutput$
|
|
899
|
-
];
|
|
900
|
-
var TagResource$ = [9, n0, _TR,
|
|
901
|
-
{ [_ht]: ["POST", "/v1/tags/tag-resource", 200] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
902
|
-
];
|
|
903
|
-
var UntagResource$ = [9, n0, _UR,
|
|
904
|
-
{ [_ht]: ["POST", "/v1/tags/untag-resource", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
905
|
-
];
|
|
906
|
-
var UpdateWhatsAppMessageTemplate$ = [9, n0, _UWAMT,
|
|
907
|
-
{ [_ht]: ["POST", "/v1/whatsapp/template", 200] }, () => UpdateWhatsAppMessageTemplateInput$, () => UpdateWhatsAppMessageTemplateOutput$
|
|
908
|
-
];
|
|
909
|
-
|
|
910
116
|
class AssociateWhatsAppBusinessAccountCommand extends smithyClient.Command
|
|
911
117
|
.classBuilder()
|
|
912
118
|
.ep(commonParams)
|
|
@@ -915,7 +121,7 @@ class AssociateWhatsAppBusinessAccountCommand extends smithyClient.Command
|
|
|
915
121
|
})
|
|
916
122
|
.s("SocialMessaging", "AssociateWhatsAppBusinessAccount", {})
|
|
917
123
|
.n("SocialMessagingClient", "AssociateWhatsAppBusinessAccountCommand")
|
|
918
|
-
.sc(AssociateWhatsAppBusinessAccount$)
|
|
124
|
+
.sc(schemas_0.AssociateWhatsAppBusinessAccount$)
|
|
919
125
|
.build() {
|
|
920
126
|
}
|
|
921
127
|
|
|
@@ -927,7 +133,7 @@ class CreateWhatsAppMessageTemplateCommand extends smithyClient.Command
|
|
|
927
133
|
})
|
|
928
134
|
.s("SocialMessaging", "CreateWhatsAppMessageTemplate", {})
|
|
929
135
|
.n("SocialMessagingClient", "CreateWhatsAppMessageTemplateCommand")
|
|
930
|
-
.sc(CreateWhatsAppMessageTemplate$)
|
|
136
|
+
.sc(schemas_0.CreateWhatsAppMessageTemplate$)
|
|
931
137
|
.build() {
|
|
932
138
|
}
|
|
933
139
|
|
|
@@ -939,7 +145,7 @@ class CreateWhatsAppMessageTemplateFromLibraryCommand extends smithyClient.Comma
|
|
|
939
145
|
})
|
|
940
146
|
.s("SocialMessaging", "CreateWhatsAppMessageTemplateFromLibrary", {})
|
|
941
147
|
.n("SocialMessagingClient", "CreateWhatsAppMessageTemplateFromLibraryCommand")
|
|
942
|
-
.sc(CreateWhatsAppMessageTemplateFromLibrary$)
|
|
148
|
+
.sc(schemas_0.CreateWhatsAppMessageTemplateFromLibrary$)
|
|
943
149
|
.build() {
|
|
944
150
|
}
|
|
945
151
|
|
|
@@ -951,7 +157,7 @@ class CreateWhatsAppMessageTemplateMediaCommand extends smithyClient.Command
|
|
|
951
157
|
})
|
|
952
158
|
.s("SocialMessaging", "CreateWhatsAppMessageTemplateMedia", {})
|
|
953
159
|
.n("SocialMessagingClient", "CreateWhatsAppMessageTemplateMediaCommand")
|
|
954
|
-
.sc(CreateWhatsAppMessageTemplateMedia$)
|
|
160
|
+
.sc(schemas_0.CreateWhatsAppMessageTemplateMedia$)
|
|
955
161
|
.build() {
|
|
956
162
|
}
|
|
957
163
|
|
|
@@ -963,7 +169,7 @@ class DeleteWhatsAppMessageMediaCommand extends smithyClient.Command
|
|
|
963
169
|
})
|
|
964
170
|
.s("SocialMessaging", "DeleteWhatsAppMessageMedia", {})
|
|
965
171
|
.n("SocialMessagingClient", "DeleteWhatsAppMessageMediaCommand")
|
|
966
|
-
.sc(DeleteWhatsAppMessageMedia$)
|
|
172
|
+
.sc(schemas_0.DeleteWhatsAppMessageMedia$)
|
|
967
173
|
.build() {
|
|
968
174
|
}
|
|
969
175
|
|
|
@@ -975,7 +181,7 @@ class DeleteWhatsAppMessageTemplateCommand extends smithyClient.Command
|
|
|
975
181
|
})
|
|
976
182
|
.s("SocialMessaging", "DeleteWhatsAppMessageTemplate", {})
|
|
977
183
|
.n("SocialMessagingClient", "DeleteWhatsAppMessageTemplateCommand")
|
|
978
|
-
.sc(DeleteWhatsAppMessageTemplate$)
|
|
184
|
+
.sc(schemas_0.DeleteWhatsAppMessageTemplate$)
|
|
979
185
|
.build() {
|
|
980
186
|
}
|
|
981
187
|
|
|
@@ -987,7 +193,7 @@ class DisassociateWhatsAppBusinessAccountCommand extends smithyClient.Command
|
|
|
987
193
|
})
|
|
988
194
|
.s("SocialMessaging", "DisassociateWhatsAppBusinessAccount", {})
|
|
989
195
|
.n("SocialMessagingClient", "DisassociateWhatsAppBusinessAccountCommand")
|
|
990
|
-
.sc(DisassociateWhatsAppBusinessAccount$)
|
|
196
|
+
.sc(schemas_0.DisassociateWhatsAppBusinessAccount$)
|
|
991
197
|
.build() {
|
|
992
198
|
}
|
|
993
199
|
|
|
@@ -999,7 +205,7 @@ class GetLinkedWhatsAppBusinessAccountCommand extends smithyClient.Command
|
|
|
999
205
|
})
|
|
1000
206
|
.s("SocialMessaging", "GetLinkedWhatsAppBusinessAccount", {})
|
|
1001
207
|
.n("SocialMessagingClient", "GetLinkedWhatsAppBusinessAccountCommand")
|
|
1002
|
-
.sc(GetLinkedWhatsAppBusinessAccount$)
|
|
208
|
+
.sc(schemas_0.GetLinkedWhatsAppBusinessAccount$)
|
|
1003
209
|
.build() {
|
|
1004
210
|
}
|
|
1005
211
|
|
|
@@ -1011,7 +217,7 @@ class GetLinkedWhatsAppBusinessAccountPhoneNumberCommand extends smithyClient.Co
|
|
|
1011
217
|
})
|
|
1012
218
|
.s("SocialMessaging", "GetLinkedWhatsAppBusinessAccountPhoneNumber", {})
|
|
1013
219
|
.n("SocialMessagingClient", "GetLinkedWhatsAppBusinessAccountPhoneNumberCommand")
|
|
1014
|
-
.sc(GetLinkedWhatsAppBusinessAccountPhoneNumber$)
|
|
220
|
+
.sc(schemas_0.GetLinkedWhatsAppBusinessAccountPhoneNumber$)
|
|
1015
221
|
.build() {
|
|
1016
222
|
}
|
|
1017
223
|
|
|
@@ -1023,7 +229,7 @@ class GetWhatsAppMessageMediaCommand extends smithyClient.Command
|
|
|
1023
229
|
})
|
|
1024
230
|
.s("SocialMessaging", "GetWhatsAppMessageMedia", {})
|
|
1025
231
|
.n("SocialMessagingClient", "GetWhatsAppMessageMediaCommand")
|
|
1026
|
-
.sc(GetWhatsAppMessageMedia$)
|
|
232
|
+
.sc(schemas_0.GetWhatsAppMessageMedia$)
|
|
1027
233
|
.build() {
|
|
1028
234
|
}
|
|
1029
235
|
|
|
@@ -1035,7 +241,7 @@ class GetWhatsAppMessageTemplateCommand extends smithyClient.Command
|
|
|
1035
241
|
})
|
|
1036
242
|
.s("SocialMessaging", "GetWhatsAppMessageTemplate", {})
|
|
1037
243
|
.n("SocialMessagingClient", "GetWhatsAppMessageTemplateCommand")
|
|
1038
|
-
.sc(GetWhatsAppMessageTemplate$)
|
|
244
|
+
.sc(schemas_0.GetWhatsAppMessageTemplate$)
|
|
1039
245
|
.build() {
|
|
1040
246
|
}
|
|
1041
247
|
|
|
@@ -1047,7 +253,7 @@ class ListLinkedWhatsAppBusinessAccountsCommand extends smithyClient.Command
|
|
|
1047
253
|
})
|
|
1048
254
|
.s("SocialMessaging", "ListLinkedWhatsAppBusinessAccounts", {})
|
|
1049
255
|
.n("SocialMessagingClient", "ListLinkedWhatsAppBusinessAccountsCommand")
|
|
1050
|
-
.sc(ListLinkedWhatsAppBusinessAccounts$)
|
|
256
|
+
.sc(schemas_0.ListLinkedWhatsAppBusinessAccounts$)
|
|
1051
257
|
.build() {
|
|
1052
258
|
}
|
|
1053
259
|
|
|
@@ -1059,7 +265,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1059
265
|
})
|
|
1060
266
|
.s("SocialMessaging", "ListTagsForResource", {})
|
|
1061
267
|
.n("SocialMessagingClient", "ListTagsForResourceCommand")
|
|
1062
|
-
.sc(ListTagsForResource$)
|
|
268
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1063
269
|
.build() {
|
|
1064
270
|
}
|
|
1065
271
|
|
|
@@ -1071,7 +277,7 @@ class ListWhatsAppMessageTemplatesCommand extends smithyClient.Command
|
|
|
1071
277
|
})
|
|
1072
278
|
.s("SocialMessaging", "ListWhatsAppMessageTemplates", {})
|
|
1073
279
|
.n("SocialMessagingClient", "ListWhatsAppMessageTemplatesCommand")
|
|
1074
|
-
.sc(ListWhatsAppMessageTemplates$)
|
|
280
|
+
.sc(schemas_0.ListWhatsAppMessageTemplates$)
|
|
1075
281
|
.build() {
|
|
1076
282
|
}
|
|
1077
283
|
|
|
@@ -1083,7 +289,7 @@ class ListWhatsAppTemplateLibraryCommand extends smithyClient.Command
|
|
|
1083
289
|
})
|
|
1084
290
|
.s("SocialMessaging", "ListWhatsAppTemplateLibrary", {})
|
|
1085
291
|
.n("SocialMessagingClient", "ListWhatsAppTemplateLibraryCommand")
|
|
1086
|
-
.sc(ListWhatsAppTemplateLibrary$)
|
|
292
|
+
.sc(schemas_0.ListWhatsAppTemplateLibrary$)
|
|
1087
293
|
.build() {
|
|
1088
294
|
}
|
|
1089
295
|
|
|
@@ -1095,7 +301,7 @@ class PostWhatsAppMessageMediaCommand extends smithyClient.Command
|
|
|
1095
301
|
})
|
|
1096
302
|
.s("SocialMessaging", "PostWhatsAppMessageMedia", {})
|
|
1097
303
|
.n("SocialMessagingClient", "PostWhatsAppMessageMediaCommand")
|
|
1098
|
-
.sc(PostWhatsAppMessageMedia$)
|
|
304
|
+
.sc(schemas_0.PostWhatsAppMessageMedia$)
|
|
1099
305
|
.build() {
|
|
1100
306
|
}
|
|
1101
307
|
|
|
@@ -1107,7 +313,7 @@ class PutWhatsAppBusinessAccountEventDestinationsCommand extends smithyClient.Co
|
|
|
1107
313
|
})
|
|
1108
314
|
.s("SocialMessaging", "PutWhatsAppBusinessAccountEventDestinations", {})
|
|
1109
315
|
.n("SocialMessagingClient", "PutWhatsAppBusinessAccountEventDestinationsCommand")
|
|
1110
|
-
.sc(PutWhatsAppBusinessAccountEventDestinations$)
|
|
316
|
+
.sc(schemas_0.PutWhatsAppBusinessAccountEventDestinations$)
|
|
1111
317
|
.build() {
|
|
1112
318
|
}
|
|
1113
319
|
|
|
@@ -1119,7 +325,7 @@ class SendWhatsAppMessageCommand extends smithyClient.Command
|
|
|
1119
325
|
})
|
|
1120
326
|
.s("SocialMessaging", "SendWhatsAppMessage", {})
|
|
1121
327
|
.n("SocialMessagingClient", "SendWhatsAppMessageCommand")
|
|
1122
|
-
.sc(SendWhatsAppMessage$)
|
|
328
|
+
.sc(schemas_0.SendWhatsAppMessage$)
|
|
1123
329
|
.build() {
|
|
1124
330
|
}
|
|
1125
331
|
|
|
@@ -1131,7 +337,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1131
337
|
})
|
|
1132
338
|
.s("SocialMessaging", "TagResource", {})
|
|
1133
339
|
.n("SocialMessagingClient", "TagResourceCommand")
|
|
1134
|
-
.sc(TagResource$)
|
|
340
|
+
.sc(schemas_0.TagResource$)
|
|
1135
341
|
.build() {
|
|
1136
342
|
}
|
|
1137
343
|
|
|
@@ -1143,7 +349,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1143
349
|
})
|
|
1144
350
|
.s("SocialMessaging", "UntagResource", {})
|
|
1145
351
|
.n("SocialMessagingClient", "UntagResourceCommand")
|
|
1146
|
-
.sc(UntagResource$)
|
|
352
|
+
.sc(schemas_0.UntagResource$)
|
|
1147
353
|
.build() {
|
|
1148
354
|
}
|
|
1149
355
|
|
|
@@ -1155,7 +361,7 @@ class UpdateWhatsAppMessageTemplateCommand extends smithyClient.Command
|
|
|
1155
361
|
})
|
|
1156
362
|
.s("SocialMessaging", "UpdateWhatsAppMessageTemplate", {})
|
|
1157
363
|
.n("SocialMessagingClient", "UpdateWhatsAppMessageTemplateCommand")
|
|
1158
|
-
.sc(UpdateWhatsAppMessageTemplate$)
|
|
364
|
+
.sc(schemas_0.UpdateWhatsAppMessageTemplate$)
|
|
1159
365
|
.build() {
|
|
1160
366
|
}
|
|
1161
367
|
|
|
@@ -1210,133 +416,46 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1210
416
|
enumerable: true,
|
|
1211
417
|
get: function () { return smithyClient.Client; }
|
|
1212
418
|
});
|
|
1213
|
-
exports
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
exports.AssociateWhatsAppBusinessAccount$ = AssociateWhatsAppBusinessAccount$;
|
|
419
|
+
Object.defineProperty(exports, "SocialMessagingServiceException", {
|
|
420
|
+
enumerable: true,
|
|
421
|
+
get: function () { return SocialMessagingServiceException.SocialMessagingServiceException; }
|
|
422
|
+
});
|
|
1218
423
|
exports.AssociateWhatsAppBusinessAccountCommand = AssociateWhatsAppBusinessAccountCommand;
|
|
1219
|
-
exports.AssociateWhatsAppBusinessAccountInput$ = AssociateWhatsAppBusinessAccountInput$;
|
|
1220
|
-
exports.AssociateWhatsAppBusinessAccountOutput$ = AssociateWhatsAppBusinessAccountOutput$;
|
|
1221
|
-
exports.CreateWhatsAppMessageTemplate$ = CreateWhatsAppMessageTemplate$;
|
|
1222
424
|
exports.CreateWhatsAppMessageTemplateCommand = CreateWhatsAppMessageTemplateCommand;
|
|
1223
|
-
exports.CreateWhatsAppMessageTemplateFromLibrary$ = CreateWhatsAppMessageTemplateFromLibrary$;
|
|
1224
425
|
exports.CreateWhatsAppMessageTemplateFromLibraryCommand = CreateWhatsAppMessageTemplateFromLibraryCommand;
|
|
1225
|
-
exports.CreateWhatsAppMessageTemplateFromLibraryInput$ = CreateWhatsAppMessageTemplateFromLibraryInput$;
|
|
1226
|
-
exports.CreateWhatsAppMessageTemplateFromLibraryOutput$ = CreateWhatsAppMessageTemplateFromLibraryOutput$;
|
|
1227
|
-
exports.CreateWhatsAppMessageTemplateInput$ = CreateWhatsAppMessageTemplateInput$;
|
|
1228
|
-
exports.CreateWhatsAppMessageTemplateMedia$ = CreateWhatsAppMessageTemplateMedia$;
|
|
1229
426
|
exports.CreateWhatsAppMessageTemplateMediaCommand = CreateWhatsAppMessageTemplateMediaCommand;
|
|
1230
|
-
exports.CreateWhatsAppMessageTemplateMediaInput$ = CreateWhatsAppMessageTemplateMediaInput$;
|
|
1231
|
-
exports.CreateWhatsAppMessageTemplateMediaOutput$ = CreateWhatsAppMessageTemplateMediaOutput$;
|
|
1232
|
-
exports.CreateWhatsAppMessageTemplateOutput$ = CreateWhatsAppMessageTemplateOutput$;
|
|
1233
|
-
exports.DeleteWhatsAppMessageMedia$ = DeleteWhatsAppMessageMedia$;
|
|
1234
427
|
exports.DeleteWhatsAppMessageMediaCommand = DeleteWhatsAppMessageMediaCommand;
|
|
1235
|
-
exports.DeleteWhatsAppMessageMediaInput$ = DeleteWhatsAppMessageMediaInput$;
|
|
1236
|
-
exports.DeleteWhatsAppMessageMediaOutput$ = DeleteWhatsAppMessageMediaOutput$;
|
|
1237
|
-
exports.DeleteWhatsAppMessageTemplate$ = DeleteWhatsAppMessageTemplate$;
|
|
1238
428
|
exports.DeleteWhatsAppMessageTemplateCommand = DeleteWhatsAppMessageTemplateCommand;
|
|
1239
|
-
exports.DeleteWhatsAppMessageTemplateInput$ = DeleteWhatsAppMessageTemplateInput$;
|
|
1240
|
-
exports.DeleteWhatsAppMessageTemplateOutput$ = DeleteWhatsAppMessageTemplateOutput$;
|
|
1241
|
-
exports.DependencyException = DependencyException;
|
|
1242
|
-
exports.DependencyException$ = DependencyException$;
|
|
1243
|
-
exports.DisassociateWhatsAppBusinessAccount$ = DisassociateWhatsAppBusinessAccount$;
|
|
1244
429
|
exports.DisassociateWhatsAppBusinessAccountCommand = DisassociateWhatsAppBusinessAccountCommand;
|
|
1245
|
-
exports.DisassociateWhatsAppBusinessAccountInput$ = DisassociateWhatsAppBusinessAccountInput$;
|
|
1246
|
-
exports.DisassociateWhatsAppBusinessAccountOutput$ = DisassociateWhatsAppBusinessAccountOutput$;
|
|
1247
|
-
exports.GetLinkedWhatsAppBusinessAccount$ = GetLinkedWhatsAppBusinessAccount$;
|
|
1248
430
|
exports.GetLinkedWhatsAppBusinessAccountCommand = GetLinkedWhatsAppBusinessAccountCommand;
|
|
1249
|
-
exports.GetLinkedWhatsAppBusinessAccountInput$ = GetLinkedWhatsAppBusinessAccountInput$;
|
|
1250
|
-
exports.GetLinkedWhatsAppBusinessAccountOutput$ = GetLinkedWhatsAppBusinessAccountOutput$;
|
|
1251
|
-
exports.GetLinkedWhatsAppBusinessAccountPhoneNumber$ = GetLinkedWhatsAppBusinessAccountPhoneNumber$;
|
|
1252
431
|
exports.GetLinkedWhatsAppBusinessAccountPhoneNumberCommand = GetLinkedWhatsAppBusinessAccountPhoneNumberCommand;
|
|
1253
|
-
exports.GetLinkedWhatsAppBusinessAccountPhoneNumberInput$ = GetLinkedWhatsAppBusinessAccountPhoneNumberInput$;
|
|
1254
|
-
exports.GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$ = GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$;
|
|
1255
|
-
exports.GetWhatsAppMessageMedia$ = GetWhatsAppMessageMedia$;
|
|
1256
432
|
exports.GetWhatsAppMessageMediaCommand = GetWhatsAppMessageMediaCommand;
|
|
1257
|
-
exports.GetWhatsAppMessageMediaInput$ = GetWhatsAppMessageMediaInput$;
|
|
1258
|
-
exports.GetWhatsAppMessageMediaOutput$ = GetWhatsAppMessageMediaOutput$;
|
|
1259
|
-
exports.GetWhatsAppMessageTemplate$ = GetWhatsAppMessageTemplate$;
|
|
1260
433
|
exports.GetWhatsAppMessageTemplateCommand = GetWhatsAppMessageTemplateCommand;
|
|
1261
|
-
exports.GetWhatsAppMessageTemplateInput$ = GetWhatsAppMessageTemplateInput$;
|
|
1262
|
-
exports.GetWhatsAppMessageTemplateOutput$ = GetWhatsAppMessageTemplateOutput$;
|
|
1263
|
-
exports.InternalServiceException = InternalServiceException;
|
|
1264
|
-
exports.InternalServiceException$ = InternalServiceException$;
|
|
1265
|
-
exports.InvalidParametersException = InvalidParametersException;
|
|
1266
|
-
exports.InvalidParametersException$ = InvalidParametersException$;
|
|
1267
|
-
exports.LibraryTemplateBodyInputs$ = LibraryTemplateBodyInputs$;
|
|
1268
|
-
exports.LibraryTemplateButtonInput$ = LibraryTemplateButtonInput$;
|
|
1269
|
-
exports.LibraryTemplateButtonList$ = LibraryTemplateButtonList$;
|
|
1270
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1271
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
1272
|
-
exports.LinkedWhatsAppBusinessAccount$ = LinkedWhatsAppBusinessAccount$;
|
|
1273
|
-
exports.LinkedWhatsAppBusinessAccountIdMetaData$ = LinkedWhatsAppBusinessAccountIdMetaData$;
|
|
1274
|
-
exports.LinkedWhatsAppBusinessAccountSummary$ = LinkedWhatsAppBusinessAccountSummary$;
|
|
1275
|
-
exports.ListLinkedWhatsAppBusinessAccounts$ = ListLinkedWhatsAppBusinessAccounts$;
|
|
1276
434
|
exports.ListLinkedWhatsAppBusinessAccountsCommand = ListLinkedWhatsAppBusinessAccountsCommand;
|
|
1277
|
-
exports.ListLinkedWhatsAppBusinessAccountsInput$ = ListLinkedWhatsAppBusinessAccountsInput$;
|
|
1278
|
-
exports.ListLinkedWhatsAppBusinessAccountsOutput$ = ListLinkedWhatsAppBusinessAccountsOutput$;
|
|
1279
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1280
435
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1281
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1282
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
1283
|
-
exports.ListWhatsAppMessageTemplates$ = ListWhatsAppMessageTemplates$;
|
|
1284
436
|
exports.ListWhatsAppMessageTemplatesCommand = ListWhatsAppMessageTemplatesCommand;
|
|
1285
|
-
exports.ListWhatsAppMessageTemplatesInput$ = ListWhatsAppMessageTemplatesInput$;
|
|
1286
|
-
exports.ListWhatsAppMessageTemplatesOutput$ = ListWhatsAppMessageTemplatesOutput$;
|
|
1287
|
-
exports.ListWhatsAppTemplateLibrary$ = ListWhatsAppTemplateLibrary$;
|
|
1288
437
|
exports.ListWhatsAppTemplateLibraryCommand = ListWhatsAppTemplateLibraryCommand;
|
|
1289
|
-
exports.ListWhatsAppTemplateLibraryInput$ = ListWhatsAppTemplateLibraryInput$;
|
|
1290
|
-
exports.ListWhatsAppTemplateLibraryOutput$ = ListWhatsAppTemplateLibraryOutput$;
|
|
1291
|
-
exports.MetaLibraryTemplate$ = MetaLibraryTemplate$;
|
|
1292
|
-
exports.MetaLibraryTemplateDefinition$ = MetaLibraryTemplateDefinition$;
|
|
1293
|
-
exports.PostWhatsAppMessageMedia$ = PostWhatsAppMessageMedia$;
|
|
1294
438
|
exports.PostWhatsAppMessageMediaCommand = PostWhatsAppMessageMediaCommand;
|
|
1295
|
-
exports.PostWhatsAppMessageMediaInput$ = PostWhatsAppMessageMediaInput$;
|
|
1296
|
-
exports.PostWhatsAppMessageMediaOutput$ = PostWhatsAppMessageMediaOutput$;
|
|
1297
|
-
exports.PutWhatsAppBusinessAccountEventDestinations$ = PutWhatsAppBusinessAccountEventDestinations$;
|
|
1298
439
|
exports.PutWhatsAppBusinessAccountEventDestinationsCommand = PutWhatsAppBusinessAccountEventDestinationsCommand;
|
|
1299
|
-
exports.PutWhatsAppBusinessAccountEventDestinationsInput$ = PutWhatsAppBusinessAccountEventDestinationsInput$;
|
|
1300
|
-
exports.PutWhatsAppBusinessAccountEventDestinationsOutput$ = PutWhatsAppBusinessAccountEventDestinationsOutput$;
|
|
1301
440
|
exports.RegistrationStatus = RegistrationStatus;
|
|
1302
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1303
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1304
|
-
exports.S3File$ = S3File$;
|
|
1305
|
-
exports.S3PresignedUrl$ = S3PresignedUrl$;
|
|
1306
|
-
exports.SendWhatsAppMessage$ = SendWhatsAppMessage$;
|
|
1307
441
|
exports.SendWhatsAppMessageCommand = SendWhatsAppMessageCommand;
|
|
1308
|
-
exports.SendWhatsAppMessageInput$ = SendWhatsAppMessageInput$;
|
|
1309
|
-
exports.SendWhatsAppMessageOutput$ = SendWhatsAppMessageOutput$;
|
|
1310
442
|
exports.SocialMessaging = SocialMessaging;
|
|
1311
443
|
exports.SocialMessagingClient = SocialMessagingClient;
|
|
1312
|
-
exports.SocialMessagingServiceException = SocialMessagingServiceException;
|
|
1313
|
-
exports.SocialMessagingServiceException$ = SocialMessagingServiceException$;
|
|
1314
|
-
exports.Tag$ = Tag$;
|
|
1315
|
-
exports.TagResource$ = TagResource$;
|
|
1316
444
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1317
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
1318
|
-
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1319
|
-
exports.TemplateSummary$ = TemplateSummary$;
|
|
1320
|
-
exports.ThrottledRequestException = ThrottledRequestException;
|
|
1321
|
-
exports.ThrottledRequestException$ = ThrottledRequestException$;
|
|
1322
|
-
exports.UntagResource$ = UntagResource$;
|
|
1323
445
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1324
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1325
|
-
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1326
|
-
exports.UpdateWhatsAppMessageTemplate$ = UpdateWhatsAppMessageTemplate$;
|
|
1327
446
|
exports.UpdateWhatsAppMessageTemplateCommand = UpdateWhatsAppMessageTemplateCommand;
|
|
1328
|
-
exports.UpdateWhatsAppMessageTemplateInput$ = UpdateWhatsAppMessageTemplateInput$;
|
|
1329
|
-
exports.UpdateWhatsAppMessageTemplateOutput$ = UpdateWhatsAppMessageTemplateOutput$;
|
|
1330
|
-
exports.ValidationException = ValidationException;
|
|
1331
|
-
exports.ValidationException$ = ValidationException$;
|
|
1332
|
-
exports.WabaPhoneNumberSetupFinalization$ = WabaPhoneNumberSetupFinalization$;
|
|
1333
|
-
exports.WabaSetupFinalization$ = WabaSetupFinalization$;
|
|
1334
|
-
exports.WhatsAppBusinessAccountEventDestination$ = WhatsAppBusinessAccountEventDestination$;
|
|
1335
|
-
exports.WhatsAppPhoneNumberDetail$ = WhatsAppPhoneNumberDetail$;
|
|
1336
|
-
exports.WhatsAppPhoneNumberSummary$ = WhatsAppPhoneNumberSummary$;
|
|
1337
|
-
exports.WhatsAppSetupFinalization$ = WhatsAppSetupFinalization$;
|
|
1338
|
-
exports.WhatsAppSignupCallback$ = WhatsAppSignupCallback$;
|
|
1339
|
-
exports.WhatsAppSignupCallbackResult$ = WhatsAppSignupCallbackResult$;
|
|
1340
447
|
exports.paginateListLinkedWhatsAppBusinessAccounts = paginateListLinkedWhatsAppBusinessAccounts;
|
|
1341
448
|
exports.paginateListWhatsAppMessageTemplates = paginateListWhatsAppMessageTemplates;
|
|
1342
449
|
exports.paginateListWhatsAppTemplateLibrary = paginateListWhatsAppTemplateLibrary;
|
|
450
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
451
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
452
|
+
enumerable: true,
|
|
453
|
+
get: function () { return schemas_0[k]; }
|
|
454
|
+
});
|
|
455
|
+
});
|
|
456
|
+
Object.keys(errors).forEach(function (k) {
|
|
457
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
458
|
+
enumerable: true,
|
|
459
|
+
get: function () { return errors[k]; }
|
|
460
|
+
});
|
|
461
|
+
});
|