@aws-sdk/client-socialmessaging 3.1075.0 → 3.1076.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 CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultSocialMessagingHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateWhatsAppBusinessAccount$, CreateWhatsAppFlow$, CreateWhatsAppMessageTemplate$, CreateWhatsAppMessageTemplateFromLibrary$, CreateWhatsAppMessageTemplateMedia$, DeleteWhatsAppFlow$, DeleteWhatsAppMessageMedia$, DeleteWhatsAppMessageTemplate$, DeprecateWhatsAppFlow$, DisassociateWhatsAppBusinessAccount$, GetLinkedWhatsAppBusinessAccount$, GetLinkedWhatsAppBusinessAccountPhoneNumber$, GetWhatsAppFlow$, GetWhatsAppFlowPreview$, GetWhatsAppMessageMedia$, GetWhatsAppMessageTemplate$, ListLinkedWhatsAppBusinessAccounts$, ListTagsForResource$, ListWhatsAppFlowAssets$, ListWhatsAppFlows$, ListWhatsAppMessageTemplates$, ListWhatsAppTemplateLibrary$, PostWhatsAppMessageMedia$, PublishWhatsAppFlow$, PutWhatsAppBusinessAccountEventDestinations$, SendWhatsAppMessage$, TagResource$, UntagResource$, UpdateWhatsAppFlowAssets$, UpdateWhatsAppFlow$, UpdateWhatsAppMessageTemplate$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { SocialMessagingServiceException } = require("./models/SocialMessagingServiceException");
18
- exports.SocialMessagingServiceException = SocialMessagingServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultSocialMessagingHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "social-messaging",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultSocialMessagingHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1184 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://social-messaging-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://social-messaging-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://social-messaging.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://social-messaging.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class SocialMessagingServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, SocialMessagingServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedByMetaException extends SocialMessagingServiceException {
140
+ name = "AccessDeniedByMetaException";
141
+ $fault = "client";
142
+ constructor(opts) {
143
+ super({
144
+ name: "AccessDeniedByMetaException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ Object.setPrototypeOf(this, AccessDeniedByMetaException.prototype);
149
+ }
150
+ }
151
+ class AccessDeniedException extends SocialMessagingServiceException {
152
+ name = "AccessDeniedException";
153
+ $fault = "client";
154
+ constructor(opts) {
155
+ super({
156
+ name: "AccessDeniedException",
157
+ $fault: "client",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
161
+ }
162
+ }
163
+ class DependencyException extends SocialMessagingServiceException {
164
+ name = "DependencyException";
165
+ $fault = "server";
166
+ $retryable = {};
167
+ constructor(opts) {
168
+ super({
169
+ name: "DependencyException",
170
+ $fault: "server",
171
+ ...opts,
172
+ });
173
+ Object.setPrototypeOf(this, DependencyException.prototype);
174
+ }
175
+ }
176
+ class InvalidParametersException extends SocialMessagingServiceException {
177
+ name = "InvalidParametersException";
178
+ $fault = "client";
179
+ constructor(opts) {
180
+ super({
181
+ name: "InvalidParametersException",
182
+ $fault: "client",
183
+ ...opts,
184
+ });
185
+ Object.setPrototypeOf(this, InvalidParametersException.prototype);
186
+ }
187
+ }
188
+ class LimitExceededException extends SocialMessagingServiceException {
189
+ name = "LimitExceededException";
190
+ $fault = "client";
191
+ constructor(opts) {
192
+ super({
193
+ name: "LimitExceededException",
194
+ $fault: "client",
195
+ ...opts,
196
+ });
197
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
198
+ }
199
+ }
200
+ class ThrottledRequestException extends SocialMessagingServiceException {
201
+ name = "ThrottledRequestException";
202
+ $fault = "client";
203
+ $retryable = {};
204
+ constructor(opts) {
205
+ super({
206
+ name: "ThrottledRequestException",
207
+ $fault: "client",
208
+ ...opts,
209
+ });
210
+ Object.setPrototypeOf(this, ThrottledRequestException.prototype);
211
+ }
212
+ }
213
+ class ValidationException extends SocialMessagingServiceException {
214
+ name = "ValidationException";
215
+ $fault = "client";
216
+ constructor(opts) {
217
+ super({
218
+ name: "ValidationException",
219
+ $fault: "client",
220
+ ...opts,
221
+ });
222
+ Object.setPrototypeOf(this, ValidationException.prototype);
223
+ }
224
+ }
225
+ class InternalServiceException extends SocialMessagingServiceException {
226
+ name = "InternalServiceException";
227
+ $fault = "server";
228
+ $retryable = {};
229
+ constructor(opts) {
230
+ super({
231
+ name: "InternalServiceException",
232
+ $fault: "server",
233
+ ...opts,
234
+ });
235
+ Object.setPrototypeOf(this, InternalServiceException.prototype);
236
+ }
237
+ }
238
+ class ResourceNotFoundException extends SocialMessagingServiceException {
239
+ name = "ResourceNotFoundException";
240
+ $fault = "client";
241
+ constructor(opts) {
242
+ super({
243
+ name: "ResourceNotFoundException",
244
+ $fault: "client",
245
+ ...opts,
246
+ });
247
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
248
+ }
249
+ }
250
+
251
+ const _ADBME = "AccessDeniedByMetaException";
252
+ const _ADE = "AccessDeniedException";
253
+ const _AIPT = "AssociateInProgressToken";
254
+ const _AWABA = "AssociateWhatsAppBusinessAccount";
255
+ const _AWABAI = "AssociateWhatsAppBusinessAccountInput";
256
+ const _AWABAO = "AssociateWhatsAppBusinessAccountOutput";
257
+ const _CWAF = "CreateWhatsAppFlow";
258
+ const _CWAFI = "CreateWhatsAppFlowInput";
259
+ const _CWAFO = "CreateWhatsAppFlowOutput";
260
+ const _CWAMT = "CreateWhatsAppMessageTemplate";
261
+ const _CWAMTFL = "CreateWhatsAppMessageTemplateFromLibrary";
262
+ const _CWAMTFLI = "CreateWhatsAppMessageTemplateFromLibraryInput";
263
+ const _CWAMTFLO = "CreateWhatsAppMessageTemplateFromLibraryOutput";
264
+ const _CWAMTI = "CreateWhatsAppMessageTemplateInput";
265
+ const _CWAMTM = "CreateWhatsAppMessageTemplateMedia";
266
+ const _CWAMTMI = "CreateWhatsAppMessageTemplateMediaInput";
267
+ const _CWAMTMO = "CreateWhatsAppMessageTemplateMediaOutput";
268
+ const _CWAMTO = "CreateWhatsAppMessageTemplateOutput";
269
+ const _DE = "DependencyException";
270
+ const _DWABA = "DisassociateWhatsAppBusinessAccount";
271
+ const _DWABAI = "DisassociateWhatsAppBusinessAccountInput";
272
+ const _DWABAO = "DisassociateWhatsAppBusinessAccountOutput";
273
+ const _DWAF = "DeleteWhatsAppFlow";
274
+ const _DWAFI = "DeleteWhatsAppFlowInput";
275
+ const _DWAFIe = "DeprecateWhatsAppFlowInput";
276
+ const _DWAFO = "DeleteWhatsAppFlowOutput";
277
+ const _DWAFOe = "DeprecateWhatsAppFlowOutput";
278
+ const _DWAFe = "DeprecateWhatsAppFlow";
279
+ const _DWAMM = "DeleteWhatsAppMessageMedia";
280
+ const _DWAMMI = "DeleteWhatsAppMessageMediaInput";
281
+ const _DWAMMO = "DeleteWhatsAppMessageMediaOutput";
282
+ const _DWAMT = "DeleteWhatsAppMessageTemplate";
283
+ const _DWAMTI = "DeleteWhatsAppMessageTemplateInput";
284
+ const _DWAMTO = "DeleteWhatsAppMessageTemplateOutput";
285
+ const _GLWABA = "GetLinkedWhatsAppBusinessAccount";
286
+ const _GLWABAI = "GetLinkedWhatsAppBusinessAccountInput";
287
+ const _GLWABAO = "GetLinkedWhatsAppBusinessAccountOutput";
288
+ const _GLWABAPN = "GetLinkedWhatsAppBusinessAccountPhoneNumber";
289
+ const _GLWABAPNI = "GetLinkedWhatsAppBusinessAccountPhoneNumberInput";
290
+ const _GLWABAPNO = "GetLinkedWhatsAppBusinessAccountPhoneNumberOutput";
291
+ const _GWAF = "GetWhatsAppFlow";
292
+ const _GWAFI = "GetWhatsAppFlowInput";
293
+ const _GWAFO = "GetWhatsAppFlowOutput";
294
+ const _GWAFP = "GetWhatsAppFlowPreview";
295
+ const _GWAFPI = "GetWhatsAppFlowPreviewInput";
296
+ const _GWAFPO = "GetWhatsAppFlowPreviewOutput";
297
+ const _GWAMM = "GetWhatsAppMessageMedia";
298
+ const _GWAMMI = "GetWhatsAppMessageMediaInput";
299
+ const _GWAMMO = "GetWhatsAppMessageMediaOutput";
300
+ const _GWAMT = "GetWhatsAppMessageTemplate";
301
+ const _GWAMTI = "GetWhatsAppMessageTemplateInput";
302
+ const _GWAMTO = "GetWhatsAppMessageTemplateOutput";
303
+ const _IPE = "InvalidParametersException";
304
+ const _ISE = "InternalServiceException";
305
+ const _LAWIS = "LinkedAccountWithIncompleteSetup";
306
+ const _LEE = "LimitExceededException";
307
+ const _LLWABA = "ListLinkedWhatsAppBusinessAccounts";
308
+ const _LLWABAI = "ListLinkedWhatsAppBusinessAccountsInput";
309
+ const _LLWABAO = "ListLinkedWhatsAppBusinessAccountsOutput";
310
+ const _LTBI = "LibraryTemplateBodyInputs";
311
+ const _LTBIi = "LibraryTemplateButtonInput";
312
+ const _LTBL = "LibraryTemplateButtonList";
313
+ const _LTFR = "ListTagsForResource";
314
+ const _LTFRI = "ListTagsForResourceInput";
315
+ const _LTFRO = "ListTagsForResourceOutput";
316
+ const _LWABA = "LinkedWhatsAppBusinessAccount";
317
+ const _LWABAIMD = "LinkedWhatsAppBusinessAccountIdMetaData";
318
+ const _LWABAS = "LinkedWhatsAppBusinessAccountSummary";
319
+ const _LWABASL = "LinkedWhatsAppBusinessAccountSummaryList";
320
+ const _LWAF = "ListWhatsAppFlows";
321
+ const _LWAFA = "ListWhatsAppFlowAssets";
322
+ const _LWAFAI = "ListWhatsAppFlowAssetsInput";
323
+ const _LWAFAO = "ListWhatsAppFlowAssetsOutput";
324
+ const _LWAFI = "ListWhatsAppFlowsInput";
325
+ const _LWAFO = "ListWhatsAppFlowsOutput";
326
+ const _LWAMT = "ListWhatsAppMessageTemplates";
327
+ const _LWAMTI = "ListWhatsAppMessageTemplatesInput";
328
+ const _LWAMTO = "ListWhatsAppMessageTemplatesOutput";
329
+ const _LWATL = "ListWhatsAppTemplateLibrary";
330
+ const _LWATLI = "ListWhatsAppTemplateLibraryInput";
331
+ const _LWATLO = "ListWhatsAppTemplateLibraryOutput";
332
+ const _MFA = "MetaFlowAsset";
333
+ const _MFAI = "MetaFlowApplicationInfo";
334
+ const _MFAL = "MetaFlowAssetList";
335
+ const _MFHE = "MetaFlowHealthEntity";
336
+ const _MFHEL = "MetaFlowHealthEntityList";
337
+ const _MFHS = "MetaFlowHealthStatus";
338
+ const _MFPI = "MetaFlowPreviewInfo";
339
+ const _MFS = "MetaFlowSummary";
340
+ const _MFSL = "MetaFlowSummaryList";
341
+ const _MFWABAI = "MetaFlowWhatsAppBusinessAccountInfo";
342
+ const _MLT = "MetaLibraryTemplate";
343
+ const _MLTBI = "MetaLibraryTemplateButtonInputs";
344
+ const _MLTBL = "MetaLibraryTemplateButtonList";
345
+ const _MLTD = "MetaLibraryTemplateDefinition";
346
+ const _MLTL = "MetaLibraryTemplatesList";
347
+ const _PWABAED = "PutWhatsAppBusinessAccountEventDestinations";
348
+ const _PWABAEDI = "PutWhatsAppBusinessAccountEventDestinationsInput";
349
+ const _PWABAEDO = "PutWhatsAppBusinessAccountEventDestinationsOutput";
350
+ const _PWAF = "PublishWhatsAppFlow";
351
+ const _PWAFI = "PublishWhatsAppFlowInput";
352
+ const _PWAFO = "PublishWhatsAppFlowOutput";
353
+ const _PWAMM = "PostWhatsAppMessageMedia";
354
+ const _PWAMMI = "PostWhatsAppMessageMediaInput";
355
+ const _PWAMMO = "PostWhatsAppMessageMediaOutput";
356
+ const _RNFE = "ResourceNotFoundException";
357
+ const _SA = "SupportedApps";
358
+ const _SF = "S3File";
359
+ const _SPU = "S3PresignedUrl";
360
+ const _SWAM = "SendWhatsAppMessage";
361
+ const _SWAMI = "SendWhatsAppMessageInput";
362
+ const _SWAMO = "SendWhatsAppMessageOutput";
363
+ const _T = "Tag";
364
+ const _TFP = "TwoFactorPin";
365
+ const _TL = "TagList";
366
+ const _TR = "TagResource";
367
+ const _TRE = "ThrottledRequestException";
368
+ const _TRI = "TagResourceInput";
369
+ const _TRO = "TagResourceOutput";
370
+ const _TS = "TemplateSummary";
371
+ const _TSL = "TemplateSummaryList";
372
+ const _UR = "UntagResource";
373
+ const _URI = "UntagResourceInput";
374
+ const _URO = "UntagResourceOutput";
375
+ const _UWAF = "UpdateWhatsAppFlow";
376
+ const _UWAFA = "UpdateWhatsAppFlowAssets";
377
+ const _UWAFAI = "UpdateWhatsAppFlowAssetsInput";
378
+ const _UWAFAO = "UpdateWhatsAppFlowAssetsOutput";
379
+ const _UWAFI = "UpdateWhatsAppFlowInput";
380
+ const _UWAFO = "UpdateWhatsAppFlowOutput";
381
+ const _UWAMT = "UpdateWhatsAppMessageTemplate";
382
+ const _UWAMTI = "UpdateWhatsAppMessageTemplateInput";
383
+ const _UWAMTO = "UpdateWhatsAppMessageTemplateOutput";
384
+ const _VE = "ValidationException";
385
+ const _WABAED = "WhatsAppBusinessAccountEventDestination";
386
+ const _WABAEDh = "WhatsAppBusinessAccountEventDestinations";
387
+ const _WAMB = "WhatsAppMessageBlob";
388
+ const _WAPND = "WhatsAppPhoneNumberDetail";
389
+ const _WAPNDL = "WhatsAppPhoneNumberDetailList";
390
+ const _WAPNS = "WhatsAppPhoneNumberSummary";
391
+ const _WAPNSL = "WhatsAppPhoneNumberSummaryList";
392
+ const _WASC = "WhatsAppSignupCallback";
393
+ const _WASCR = "WhatsAppSignupCallbackResult";
394
+ const _WASF = "WhatsAppSetupFinalization";
395
+ const _WPNSF = "WabaPhoneNumberSetupFinalization";
396
+ const _WPNSFL = "WabaPhoneNumberSetupFinalizationList";
397
+ const _WSF = "WabaSetupFinalization";
398
+ const _a = "account";
399
+ const _aCN = "addContactNumber";
400
+ const _aIPT = "associateInProgressToken";
401
+ const _aLML = "addLearnMoreLink";
402
+ const _aN = "accountName";
403
+ const _aSR = "addSecurityRecommendation";
404
+ const _aT = "assetType";
405
+ const _aTPL = "addTrackPackageLink";
406
+ const _aTc = "accessToken";
407
+ const _ap = "application";
408
+ const _ar = "arn";
409
+ const _bN = "bucketName";
410
+ const _c = "client";
411
+ const _cEM = "codeExpirationMinutes";
412
+ const _cFI = "cloneFlowId";
413
+ const _cSM = "canSendMessage";
414
+ const _cU = "callbackUrl";
415
+ const _cULTOO = "ctaUrlLinkTrackingOptedOut";
416
+ const _ca = "categories";
417
+ const _cat = "category";
418
+ const _cu = "currency";
419
+ const _dAL = "deleteAllLanguages";
420
+ const _dAT = "deleteAllTemplates";
421
+ const _dAV = "dataApiVersion";
422
+ const _dLR = "dataLocalizationRegion";
423
+ const _dPN = "displayPhoneNumber";
424
+ const _dPNN = "displayPhoneNumberName";
425
+ const _dSF = "destinationS3File";
426
+ const _dSPU = "destinationS3PresignedUrl";
427
+ const _dU = "downloadUrl";
428
+ const _e = "error";
429
+ const _eA = "expiresAt";
430
+ const _eD = "eventDestinations";
431
+ const _eDA = "eventDestinationArn";
432
+ const _eT = "entityType";
433
+ const _eU = "endpointUri";
434
+ const _en = "entities";
435
+ const _f = "flows";
436
+ const _fA = "flowAssets";
437
+ const _fC = "flowCategories";
438
+ const _fI = "flowId";
439
+ const _fJ = "flowJson";
440
+ const _fN = "flowName";
441
+ const _fS = "flowStatus";
442
+ const _fSi = "fileSize";
443
+ const _fi = "filters";
444
+ const _h = "headers";
445
+ const _hE = "httpError";
446
+ const _hQ = "httpQuery";
447
+ const _hS = "healthStatus";
448
+ const _ht = "http";
449
+ const _i = "id";
450
+ const _in = "invalidate";
451
+ const _jV = "jsonVersion";
452
+ const _k = "key";
453
+ const _l = "link";
454
+ const _lA = "linkedAccounts";
455
+ const _lAWIS = "linkedAccountsWithIncompleteSetup";
456
+ const _lD = "linkDate";
457
+ const _lTBI = "libraryTemplateButtonInputs";
458
+ const _lTBIi = "libraryTemplateBodyInputs";
459
+ const _lTN = "libraryTemplateName";
460
+ const _lWABAI = "linkedWhatsAppBusinessAccountId";
461
+ const _m = "message";
462
+ const _mAV = "metaApiVersion";
463
+ const _mHH = "metaHeaderHandle";
464
+ const _mI = "mediaId";
465
+ const _mIe = "messageId";
466
+ const _mLT = "metaLibraryTemplate";
467
+ const _mLTe = "metaLibraryTemplates";
468
+ const _mMOS = "marketingMessagesOnboardingStatus";
469
+ const _mO = "metadataOnly";
470
+ const _mPNI = "metaPhoneNumberId";
471
+ const _mR = "maxResults";
472
+ const _mT = "mimeType";
473
+ const _mTI = "metaTemplateId";
474
+ const _mTN = "messageTemplateNamespace";
475
+ const _n = "name";
476
+ const _nT = "nextToken";
477
+ const _oPNI = "originationPhoneNumberId";
478
+ const _oT = "otpType";
479
+ const _p = "publish";
480
+ const _pF = "parameterFormat";
481
+ const _pN = "phoneNumber";
482
+ const _pNI = "phoneNumberId";
483
+ const _pNP = "phoneNumberParent";
484
+ const _pNh = "phoneNumbers";
485
+ const _pU = "previewUrl";
486
+ const _pr = "preview";
487
+ const _qR = "qualityRating";
488
+ const _rA = "resourceArn";
489
+ const _rAo = "roleArn";
490
+ const _rS = "registrationStatus";
491
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.socialmessaging";
492
+ const _sA = "supportedApps";
493
+ const _sC = "signupCallback";
494
+ const _sCR = "signupCallbackResult";
495
+ const _sCt = "statusCode";
496
+ const _sF = "setupFinalization";
497
+ const _sSF = "sourceS3File";
498
+ const _sSPU = "sourceS3PresignedUrl";
499
+ const _se = "server";
500
+ const _su = "success";
501
+ const _t = "template";
502
+ const _tB = "templateBody";
503
+ const _tBEP = "templateBodyExampleParams";
504
+ const _tBe = "templateButtons";
505
+ const _tC = "templateCategory";
506
+ const _tCe = "templateComponents";
507
+ const _tD = "templateDefinition";
508
+ const _tFP = "twoFactorPin";
509
+ const _tH = "templateHeader";
510
+ const _tI = "timezoneId";
511
+ const _tIe = "templateIndustry";
512
+ const _tIem = "templateId";
513
+ const _tK = "tagKeys";
514
+ const _tL = "templateLanguage";
515
+ const _tLC = "templateLanguageCode";
516
+ const _tN = "templateName";
517
+ const _tQS = "templateQualityScore";
518
+ const _tS = "templateStatus";
519
+ const _tT = "templateTopic";
520
+ const _tUC = "templateUseCase";
521
+ const _ta = "tags";
522
+ const _te = "text";
523
+ const _tem = "templates";
524
+ const _ty = "type";
525
+ const _u = "url";
526
+ const _uWAPN = "unregisteredWhatsAppPhoneNumbers";
527
+ const _v = "value";
528
+ const _vE = "validationErrors";
529
+ const _w = "waba";
530
+ const _wABA = "whatsAppBusinessAccount";
531
+ const _wI = "wabaId";
532
+ const _wN = "wabaName";
533
+ const _zTTA = "zeroTapTermsAccepted";
534
+ const n0 = "com.amazonaws.socialmessaging";
535
+ const _s_registry = TypeRegistry.for(_s);
536
+ var SocialMessagingServiceException$ = [-3, _s, "SocialMessagingServiceException", 0, [], []];
537
+ _s_registry.registerError(SocialMessagingServiceException$, SocialMessagingServiceException);
538
+ const n0_registry = TypeRegistry.for(n0);
539
+ var AccessDeniedByMetaException$ = [-3, n0, _ADBME,
540
+ { [_e]: _c, [_hE]: 403 },
541
+ [_m],
542
+ [0]
543
+ ];
544
+ n0_registry.registerError(AccessDeniedByMetaException$, AccessDeniedByMetaException);
545
+ var AccessDeniedException$ = [-3, n0, _ADE,
546
+ { [_e]: _c, [_hE]: 403 },
547
+ [_m],
548
+ [0]
549
+ ];
550
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
551
+ var DependencyException$ = [-3, n0, _DE,
552
+ { [_e]: _se, [_hE]: 502 },
553
+ [_m],
554
+ [0]
555
+ ];
556
+ n0_registry.registerError(DependencyException$, DependencyException);
557
+ var InternalServiceException$ = [-3, n0, _ISE,
558
+ { [_e]: _se, [_hE]: 500 },
559
+ [_m],
560
+ [0]
561
+ ];
562
+ n0_registry.registerError(InternalServiceException$, InternalServiceException);
563
+ var InvalidParametersException$ = [-3, n0, _IPE,
564
+ { [_e]: _c, [_hE]: 400 },
565
+ [_m],
566
+ [0]
567
+ ];
568
+ n0_registry.registerError(InvalidParametersException$, InvalidParametersException);
569
+ var LimitExceededException$ = [-3, n0, _LEE,
570
+ { [_e]: _c, [_hE]: 400 },
571
+ [_m],
572
+ [0]
573
+ ];
574
+ n0_registry.registerError(LimitExceededException$, LimitExceededException);
575
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
576
+ { [_e]: _c, [_hE]: 404 },
577
+ [_m],
578
+ [0]
579
+ ];
580
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
581
+ var ThrottledRequestException$ = [-3, n0, _TRE,
582
+ { [_e]: _c, [_hE]: 429 },
583
+ [_m],
584
+ [0]
585
+ ];
586
+ n0_registry.registerError(ThrottledRequestException$, ThrottledRequestException);
587
+ var ValidationException$ = [-3, n0, _VE,
588
+ { [_e]: _c, [_hE]: 400 },
589
+ [_m],
590
+ [0]
591
+ ];
592
+ n0_registry.registerError(ValidationException$, ValidationException);
593
+ const errorTypeRegistries = [
594
+ _s_registry,
595
+ n0_registry,
596
+ ];
597
+ var AssociateInProgressToken = [0, n0, _AIPT, 8, 0];
598
+ var TwoFactorPin = [0, n0, _TFP, 8, 0];
599
+ var WhatsAppMessageBlob = [0, n0, _WAMB, 8, 21];
600
+ var AssociateWhatsAppBusinessAccountInput$ = [3, n0, _AWABAI,
601
+ 0,
602
+ [_sC, _sF],
603
+ [() => WhatsAppSignupCallback$, [() => WhatsAppSetupFinalization$, 0]]
604
+ ];
605
+ var AssociateWhatsAppBusinessAccountOutput$ = [3, n0, _AWABAO,
606
+ 0,
607
+ [_sCR, _sCt, _lWABAI],
608
+ [[() => WhatsAppSignupCallbackResult$, 0], 1, 0]
609
+ ];
610
+ var CreateWhatsAppFlowInput$ = [3, n0, _CWAFI,
611
+ 0,
612
+ [_i, _fN, _ca, _fJ, _p, _cFI],
613
+ [0, 0, 64 | 0, 21, 2, 0], 3
614
+ ];
615
+ var CreateWhatsAppFlowOutput$ = [3, n0, _CWAFO,
616
+ 0,
617
+ [_fI, _vE],
618
+ [0, 64 | 0]
619
+ ];
620
+ var CreateWhatsAppMessageTemplateFromLibraryInput$ = [3, n0, _CWAMTFLI,
621
+ 0,
622
+ [_mLT, _i],
623
+ [() => MetaLibraryTemplate$, 0], 2
624
+ ];
625
+ var CreateWhatsAppMessageTemplateFromLibraryOutput$ = [3, n0, _CWAMTFLO,
626
+ 0,
627
+ [_mTI, _tS, _cat],
628
+ [0, 0, 0]
629
+ ];
630
+ var CreateWhatsAppMessageTemplateInput$ = [3, n0, _CWAMTI,
631
+ 0,
632
+ [_tD, _i],
633
+ [21, 0], 2
634
+ ];
635
+ var CreateWhatsAppMessageTemplateMediaInput$ = [3, n0, _CWAMTMI,
636
+ 0,
637
+ [_i, _sSF],
638
+ [0, [() => S3File$, 0]], 1
639
+ ];
640
+ var CreateWhatsAppMessageTemplateMediaOutput$ = [3, n0, _CWAMTMO,
641
+ 0,
642
+ [_mHH],
643
+ [0]
644
+ ];
645
+ var CreateWhatsAppMessageTemplateOutput$ = [3, n0, _CWAMTO,
646
+ 0,
647
+ [_mTI, _tS, _cat],
648
+ [0, 0, 0]
649
+ ];
650
+ var DeleteWhatsAppFlowInput$ = [3, n0, _DWAFI,
651
+ 0,
652
+ [_i, _fI],
653
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _fI }]], 2
654
+ ];
655
+ var DeleteWhatsAppFlowOutput$ = [3, n0, _DWAFO,
656
+ 0,
657
+ [],
658
+ []
659
+ ];
660
+ var DeleteWhatsAppMessageMediaInput$ = [3, n0, _DWAMMI,
661
+ 0,
662
+ [_mI, _oPNI],
663
+ [[0, { [_hQ]: _mI }], [0, { [_hQ]: _oPNI }]], 2
664
+ ];
665
+ var DeleteWhatsAppMessageMediaOutput$ = [3, n0, _DWAMMO,
666
+ 0,
667
+ [_su],
668
+ [2]
669
+ ];
670
+ var DeleteWhatsAppMessageTemplateInput$ = [3, n0, _DWAMTI,
671
+ 0,
672
+ [_i, _tN, _mTI, _dAL],
673
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _tN }], [0, { [_hQ]: _mTI }], [2, { [_hQ]: _dAT }]], 2
674
+ ];
675
+ var DeleteWhatsAppMessageTemplateOutput$ = [3, n0, _DWAMTO,
676
+ 0,
677
+ [],
678
+ []
679
+ ];
680
+ var DeprecateWhatsAppFlowInput$ = [3, n0, _DWAFIe,
681
+ 0,
682
+ [_i, _fI],
683
+ [0, 0], 2
684
+ ];
685
+ var DeprecateWhatsAppFlowOutput$ = [3, n0, _DWAFOe,
686
+ 0,
687
+ [],
688
+ []
689
+ ];
690
+ var DisassociateWhatsAppBusinessAccountInput$ = [3, n0, _DWABAI,
691
+ 0,
692
+ [_i],
693
+ [[0, { [_hQ]: _i }]], 1
694
+ ];
695
+ var DisassociateWhatsAppBusinessAccountOutput$ = [3, n0, _DWABAO,
696
+ 0,
697
+ [],
698
+ []
699
+ ];
700
+ var GetLinkedWhatsAppBusinessAccountInput$ = [3, n0, _GLWABAI,
701
+ 0,
702
+ [_i],
703
+ [[0, { [_hQ]: _i }]], 1
704
+ ];
705
+ var GetLinkedWhatsAppBusinessAccountOutput$ = [3, n0, _GLWABAO,
706
+ 0,
707
+ [_a],
708
+ [() => LinkedWhatsAppBusinessAccount$]
709
+ ];
710
+ var GetLinkedWhatsAppBusinessAccountPhoneNumberInput$ = [3, n0, _GLWABAPNI,
711
+ 0,
712
+ [_i],
713
+ [[0, { [_hQ]: _i }]], 1
714
+ ];
715
+ var GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$ = [3, n0, _GLWABAPNO,
716
+ 0,
717
+ [_pN, _lWABAI],
718
+ [() => WhatsAppPhoneNumberDetail$, 0]
719
+ ];
720
+ var GetWhatsAppFlowInput$ = [3, n0, _GWAFI,
721
+ 0,
722
+ [_i, _fI],
723
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _fI }]], 2
724
+ ];
725
+ var GetWhatsAppFlowOutput$ = [3, n0, _GWAFO,
726
+ 0,
727
+ [_fI, _fN, _fS, _ca, _vE, _jV, _dAV, _eU, _pr, _wABA, _ap, _hS],
728
+ [0, 0, 0, 64 | 0, 64 | 0, 0, 0, 0, () => MetaFlowPreviewInfo$, () => MetaFlowWhatsAppBusinessAccountInfo$, () => MetaFlowApplicationInfo$, () => MetaFlowHealthStatus$], 3
729
+ ];
730
+ var GetWhatsAppFlowPreviewInput$ = [3, n0, _GWAFPI,
731
+ 0,
732
+ [_i, _fI, _in],
733
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _fI }], [2, { [_hQ]: _in }]], 2
734
+ ];
735
+ var GetWhatsAppFlowPreviewOutput$ = [3, n0, _GWAFPO,
736
+ 0,
737
+ [_fI, _pr],
738
+ [0, () => MetaFlowPreviewInfo$], 2
739
+ ];
740
+ var GetWhatsAppMessageMediaInput$ = [3, n0, _GWAMMI,
741
+ 0,
742
+ [_mI, _oPNI, _mO, _dSPU, _dSF],
743
+ [0, 0, 2, [() => S3PresignedUrl$, 0], [() => S3File$, 0]], 2
744
+ ];
745
+ var GetWhatsAppMessageMediaOutput$ = [3, n0, _GWAMMO,
746
+ 0,
747
+ [_mT, _fSi],
748
+ [0, 1]
749
+ ];
750
+ var GetWhatsAppMessageTemplateInput$ = [3, n0, _GWAMTI,
751
+ 0,
752
+ [_i, _mTI, _tN, _tLC],
753
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _mTI }], [0, { [_hQ]: _tN }], [0, { [_hQ]: _tLC }]], 1
754
+ ];
755
+ var GetWhatsAppMessageTemplateOutput$ = [3, n0, _GWAMTO,
756
+ 0,
757
+ [_t],
758
+ [0]
759
+ ];
760
+ var LibraryTemplateBodyInputs$ = [3, n0, _LTBI,
761
+ 0,
762
+ [_aCN, _aLML, _aSR, _aTPL, _cEM],
763
+ [2, 2, 2, 2, 1]
764
+ ];
765
+ var LibraryTemplateButtonInput$ = [3, n0, _LTBIi,
766
+ 0,
767
+ [_ty, _pN, _u, _oT, _zTTA, _sA],
768
+ [0, 0, 128 | 0, 0, 2, [1, n0, _SA, 0, 128 | 0]]
769
+ ];
770
+ var LibraryTemplateButtonList$ = [3, n0, _LTBL,
771
+ 0,
772
+ [_ty, _te, _pN, _u, _oT, _zTTA, _sA],
773
+ [0, 0, 0, 0, 0, 2, [1, n0, _SA, 0, 128 | 0]]
774
+ ];
775
+ var LinkedWhatsAppBusinessAccount$ = [3, n0, _LWABA,
776
+ 0,
777
+ [_ar, _i, _wI, _rS, _lD, _wN, _eD, _pNh, _mMOS],
778
+ [0, 0, 0, 0, 4, 0, () => WhatsAppBusinessAccountEventDestinations, () => WhatsAppPhoneNumberSummaryList, 0], 8
779
+ ];
780
+ var LinkedWhatsAppBusinessAccountIdMetaData$ = [3, n0, _LWABAIMD,
781
+ 0,
782
+ [_aN, _rS, _uWAPN, _wI],
783
+ [0, 0, () => WhatsAppPhoneNumberDetailList, 0]
784
+ ];
785
+ var LinkedWhatsAppBusinessAccountSummary$ = [3, n0, _LWABAS,
786
+ 0,
787
+ [_ar, _i, _wI, _rS, _lD, _wN, _eD, _mMOS],
788
+ [0, 0, 0, 0, 4, 0, () => WhatsAppBusinessAccountEventDestinations, 0], 7
789
+ ];
790
+ var ListLinkedWhatsAppBusinessAccountsInput$ = [3, n0, _LLWABAI,
791
+ 0,
792
+ [_nT, _mR],
793
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
794
+ ];
795
+ var ListLinkedWhatsAppBusinessAccountsOutput$ = [3, n0, _LLWABAO,
796
+ 0,
797
+ [_lA, _nT],
798
+ [() => LinkedWhatsAppBusinessAccountSummaryList, 0]
799
+ ];
800
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI,
801
+ 0,
802
+ [_rA],
803
+ [[0, { [_hQ]: _rA }]], 1
804
+ ];
805
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
806
+ 0,
807
+ [_sCt, _ta],
808
+ [1, () => TagList]
809
+ ];
810
+ var ListWhatsAppFlowAssetsInput$ = [3, n0, _LWAFAI,
811
+ 0,
812
+ [_i, _fI, _nT, _mR],
813
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _fI }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
814
+ ];
815
+ var ListWhatsAppFlowAssetsOutput$ = [3, n0, _LWAFAO,
816
+ 0,
817
+ [_fA, _nT],
818
+ [() => MetaFlowAssetList, 0], 1
819
+ ];
820
+ var ListWhatsAppFlowsInput$ = [3, n0, _LWAFI,
821
+ 0,
822
+ [_i, _nT, _mR],
823
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
824
+ ];
825
+ var ListWhatsAppFlowsOutput$ = [3, n0, _LWAFO,
826
+ 0,
827
+ [_f, _nT],
828
+ [() => MetaFlowSummaryList, 0], 1
829
+ ];
830
+ var ListWhatsAppMessageTemplatesInput$ = [3, n0, _LWAMTI,
831
+ 0,
832
+ [_i, _nT, _mR],
833
+ [[0, { [_hQ]: _i }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
834
+ ];
835
+ var ListWhatsAppMessageTemplatesOutput$ = [3, n0, _LWAMTO,
836
+ 0,
837
+ [_tem, _nT],
838
+ [() => TemplateSummaryList, 0]
839
+ ];
840
+ var ListWhatsAppTemplateLibraryInput$ = [3, n0, _LWATLI,
841
+ 0,
842
+ [_i, _nT, _mR, _fi],
843
+ [[0, { [_hQ]: _i }], 0, 1, 128 | 0], 1
844
+ ];
845
+ var ListWhatsAppTemplateLibraryOutput$ = [3, n0, _LWATLO,
846
+ 0,
847
+ [_mLTe, _nT],
848
+ [() => MetaLibraryTemplatesList, 0]
849
+ ];
850
+ var MetaFlowApplicationInfo$ = [3, n0, _MFAI,
851
+ 0,
852
+ [_n, _i, _l],
853
+ [0, 0, 0], 2
854
+ ];
855
+ var MetaFlowAsset$ = [3, n0, _MFA,
856
+ 0,
857
+ [_n, _aT, _dU],
858
+ [0, 0, 0], 3
859
+ ];
860
+ var MetaFlowHealthEntity$ = [3, n0, _MFHE,
861
+ 0,
862
+ [_eT, _i, _cSM],
863
+ [0, 0, 0], 3
864
+ ];
865
+ var MetaFlowHealthStatus$ = [3, n0, _MFHS,
866
+ 0,
867
+ [_cSM, _en],
868
+ [0, () => MetaFlowHealthEntityList], 1
869
+ ];
870
+ var MetaFlowPreviewInfo$ = [3, n0, _MFPI,
871
+ 0,
872
+ [_pU, _eA],
873
+ [0, 0], 2
874
+ ];
875
+ var MetaFlowSummary$ = [3, n0, _MFS,
876
+ 0,
877
+ [_fI, _fN, _fS, _fC, _vE],
878
+ [0, 0, 0, 64 | 0, 64 | 0], 5
879
+ ];
880
+ var MetaFlowWhatsAppBusinessAccountInfo$ = [3, n0, _MFWABAI,
881
+ 0,
882
+ [_i, _n, _cu, _tI, _mTN],
883
+ [0, 0, 0, 0, 0], 2
884
+ ];
885
+ var MetaLibraryTemplate$ = [3, n0, _MLT,
886
+ 0,
887
+ [_tN, _lTN, _tC, _tL, _lTBI, _lTBIi],
888
+ [0, 0, 0, 0, () => MetaLibraryTemplateButtonInputs, () => LibraryTemplateBodyInputs$], 4
889
+ ];
890
+ var MetaLibraryTemplateDefinition$ = [3, n0, _MLTD,
891
+ 0,
892
+ [_tN, _tL, _tC, _tT, _tUC, _tIe, _tH, _tB, _tBe, _tIem, _tBEP],
893
+ [0, 0, 0, 0, 0, 64 | 0, 0, 0, () => MetaLibraryTemplateButtonList, 0, 64 | 0]
894
+ ];
895
+ var PostWhatsAppMessageMediaInput$ = [3, n0, _PWAMMI,
896
+ 0,
897
+ [_oPNI, _sSPU, _sSF],
898
+ [0, [() => S3PresignedUrl$, 0], [() => S3File$, 0]], 1
899
+ ];
900
+ var PostWhatsAppMessageMediaOutput$ = [3, n0, _PWAMMO,
901
+ 0,
902
+ [_mI],
903
+ [0]
904
+ ];
905
+ var PublishWhatsAppFlowInput$ = [3, n0, _PWAFI,
906
+ 0,
907
+ [_i, _fI],
908
+ [0, 0], 2
909
+ ];
910
+ var PublishWhatsAppFlowOutput$ = [3, n0, _PWAFO,
911
+ 0,
912
+ [],
913
+ []
914
+ ];
915
+ var PutWhatsAppBusinessAccountEventDestinationsInput$ = [3, n0, _PWABAEDI,
916
+ 0,
917
+ [_i, _eD],
918
+ [0, () => WhatsAppBusinessAccountEventDestinations], 2
919
+ ];
920
+ var PutWhatsAppBusinessAccountEventDestinationsOutput$ = [3, n0, _PWABAEDO,
921
+ 0,
922
+ [],
923
+ []
924
+ ];
925
+ var S3File$ = [3, n0, _SF,
926
+ 8,
927
+ [_bN, _k],
928
+ [0, 0], 2
929
+ ];
930
+ var S3PresignedUrl$ = [3, n0, _SPU,
931
+ 8,
932
+ [_u, _h],
933
+ [0, 128 | 0], 2
934
+ ];
935
+ var SendWhatsAppMessageInput$ = [3, n0, _SWAMI,
936
+ 0,
937
+ [_oPNI, _m, _mAV],
938
+ [0, [() => WhatsAppMessageBlob, 0], 0], 3
939
+ ];
940
+ var SendWhatsAppMessageOutput$ = [3, n0, _SWAMO,
941
+ 0,
942
+ [_mIe],
943
+ [0]
944
+ ];
945
+ var Tag$ = [3, n0, _T,
946
+ 0,
947
+ [_k, _v],
948
+ [0, 0], 1
949
+ ];
950
+ var TagResourceInput$ = [3, n0, _TRI,
951
+ 0,
952
+ [_rA, _ta],
953
+ [0, () => TagList], 2
954
+ ];
955
+ var TagResourceOutput$ = [3, n0, _TRO,
956
+ 0,
957
+ [_sCt],
958
+ [1]
959
+ ];
960
+ var TemplateSummary$ = [3, n0, _TS,
961
+ 0,
962
+ [_tN, _mTI, _tS, _tQS, _tL, _tC],
963
+ [0, 0, 0, 0, 0, 0]
964
+ ];
965
+ var UntagResourceInput$ = [3, n0, _URI,
966
+ 0,
967
+ [_rA, _tK],
968
+ [0, 64 | 0], 2
969
+ ];
970
+ var UntagResourceOutput$ = [3, n0, _URO,
971
+ 0,
972
+ [_sCt],
973
+ [1]
974
+ ];
975
+ var UpdateWhatsAppFlowAssetsInput$ = [3, n0, _UWAFAI,
976
+ 0,
977
+ [_i, _fI, _fJ],
978
+ [0, 0, 21], 3
979
+ ];
980
+ var UpdateWhatsAppFlowAssetsOutput$ = [3, n0, _UWAFAO,
981
+ 0,
982
+ [_vE],
983
+ [64 | 0]
984
+ ];
985
+ var UpdateWhatsAppFlowInput$ = [3, n0, _UWAFI,
986
+ 0,
987
+ [_i, _fI, _fN, _ca],
988
+ [0, 0, 0, 64 | 0], 2
989
+ ];
990
+ var UpdateWhatsAppFlowOutput$ = [3, n0, _UWAFO,
991
+ 0,
992
+ [],
993
+ []
994
+ ];
995
+ var UpdateWhatsAppMessageTemplateInput$ = [3, n0, _UWAMTI,
996
+ 0,
997
+ [_i, _mTI, _tN, _tLC, _pF, _tC, _tCe, _cULTOO],
998
+ [0, 0, 0, 0, 0, 0, 21, 2], 1
999
+ ];
1000
+ var UpdateWhatsAppMessageTemplateOutput$ = [3, n0, _UWAMTO,
1001
+ 0,
1002
+ [],
1003
+ []
1004
+ ];
1005
+ var WabaPhoneNumberSetupFinalization$ = [3, n0, _WPNSF,
1006
+ 0,
1007
+ [_i, _tFP, _dLR, _ta],
1008
+ [0, [() => TwoFactorPin, 0], 0, () => TagList], 2
1009
+ ];
1010
+ var WabaSetupFinalization$ = [3, n0, _WSF,
1011
+ 0,
1012
+ [_i, _eD, _ta],
1013
+ [0, () => WhatsAppBusinessAccountEventDestinations, () => TagList]
1014
+ ];
1015
+ var WhatsAppBusinessAccountEventDestination$ = [3, n0, _WABAED,
1016
+ 0,
1017
+ [_eDA, _rAo],
1018
+ [0, 0], 1
1019
+ ];
1020
+ var WhatsAppPhoneNumberDetail$ = [3, n0, _WAPND,
1021
+ 0,
1022
+ [_ar, _pN, _pNI, _mPNI, _dPNN, _dPN, _qR, _dLR],
1023
+ [0, 0, 0, 0, 0, 0, 0, 0], 7
1024
+ ];
1025
+ var WhatsAppPhoneNumberSummary$ = [3, n0, _WAPNS,
1026
+ 0,
1027
+ [_ar, _pN, _pNI, _mPNI, _dPNN, _dPN, _qR, _dLR],
1028
+ [0, 0, 0, 0, 0, 0, 0, 0], 7
1029
+ ];
1030
+ var WhatsAppSetupFinalization$ = [3, n0, _WASF,
1031
+ 0,
1032
+ [_aIPT, _pNh, _pNP, _w],
1033
+ [[() => AssociateInProgressToken, 0], [() => WabaPhoneNumberSetupFinalizationList, 0], 0, () => WabaSetupFinalization$], 2
1034
+ ];
1035
+ var WhatsAppSignupCallback$ = [3, n0, _WASC,
1036
+ 0,
1037
+ [_aTc, _cU],
1038
+ [0, 0], 1
1039
+ ];
1040
+ var WhatsAppSignupCallbackResult$ = [3, n0, _WASCR,
1041
+ 0,
1042
+ [_aIPT, _lAWIS],
1043
+ [[() => AssociateInProgressToken, 0], () => LinkedAccountWithIncompleteSetup]
1044
+ ];
1045
+ var LinkedWhatsAppBusinessAccountSummaryList = [1, n0, _LWABASL,
1046
+ 0, () => LinkedWhatsAppBusinessAccountSummary$
1047
+ ];
1048
+ var MetaFlowAssetList = [1, n0, _MFAL,
1049
+ 0, () => MetaFlowAsset$
1050
+ ];
1051
+ var MetaFlowHealthEntityList = [1, n0, _MFHEL,
1052
+ 0, () => MetaFlowHealthEntity$
1053
+ ];
1054
+ var MetaFlowSummaryList = [1, n0, _MFSL,
1055
+ 0, () => MetaFlowSummary$
1056
+ ];
1057
+ var MetaLibraryTemplateButtonInputs = [1, n0, _MLTBI,
1058
+ 0, () => LibraryTemplateButtonInput$
1059
+ ];
1060
+ var MetaLibraryTemplateButtonList = [1, n0, _MLTBL,
1061
+ 0, () => LibraryTemplateButtonList$
1062
+ ];
1063
+ var MetaLibraryTemplatesList = [1, n0, _MLTL,
1064
+ 0, () => MetaLibraryTemplateDefinition$
1065
+ ];
1066
+ var TagList = [1, n0, _TL,
1067
+ 0, () => Tag$
1068
+ ];
1069
+ var TemplateSummaryList = [1, n0, _TSL,
1070
+ 0, () => TemplateSummary$
1071
+ ];
1072
+ var WabaPhoneNumberSetupFinalizationList = [1, n0, _WPNSFL,
1073
+ 0, [() => WabaPhoneNumberSetupFinalization$,
1074
+ 0]
1075
+ ];
1076
+ var WhatsAppBusinessAccountEventDestinations = [1, n0, _WABAEDh,
1077
+ 0, () => WhatsAppBusinessAccountEventDestination$
1078
+ ];
1079
+ var WhatsAppPhoneNumberDetailList = [1, n0, _WAPNDL,
1080
+ 0, () => WhatsAppPhoneNumberDetail$
1081
+ ];
1082
+ var WhatsAppPhoneNumberSummaryList = [1, n0, _WAPNSL,
1083
+ 0, () => WhatsAppPhoneNumberSummary$
1084
+ ];
1085
+ var LinkedAccountWithIncompleteSetup = [2, n0, _LAWIS,
1086
+ 0, 0, () => LinkedWhatsAppBusinessAccountIdMetaData$
1087
+ ];
1088
+ var AssociateWhatsAppBusinessAccount$ = [9, n0, _AWABA,
1089
+ { [_ht]: ["POST", "/v1/whatsapp/signup", 200] }, () => AssociateWhatsAppBusinessAccountInput$, () => AssociateWhatsAppBusinessAccountOutput$
1090
+ ];
1091
+ var CreateWhatsAppFlow$ = [9, n0, _CWAF,
1092
+ { [_ht]: ["POST", "/v1/whatsapp/flow/create", 200] }, () => CreateWhatsAppFlowInput$, () => CreateWhatsAppFlowOutput$
1093
+ ];
1094
+ var CreateWhatsAppMessageTemplate$ = [9, n0, _CWAMT,
1095
+ { [_ht]: ["POST", "/v1/whatsapp/template/put", 200] }, () => CreateWhatsAppMessageTemplateInput$, () => CreateWhatsAppMessageTemplateOutput$
1096
+ ];
1097
+ var CreateWhatsAppMessageTemplateFromLibrary$ = [9, n0, _CWAMTFL,
1098
+ { [_ht]: ["POST", "/v1/whatsapp/template/create", 200] }, () => CreateWhatsAppMessageTemplateFromLibraryInput$, () => CreateWhatsAppMessageTemplateFromLibraryOutput$
1099
+ ];
1100
+ var CreateWhatsAppMessageTemplateMedia$ = [9, n0, _CWAMTM,
1101
+ { [_ht]: ["POST", "/v1/whatsapp/template/media", 200] }, () => CreateWhatsAppMessageTemplateMediaInput$, () => CreateWhatsAppMessageTemplateMediaOutput$
1102
+ ];
1103
+ var DeleteWhatsAppFlow$ = [9, n0, _DWAF,
1104
+ { [_ht]: ["DELETE", "/v1/whatsapp/flow", 200] }, () => DeleteWhatsAppFlowInput$, () => DeleteWhatsAppFlowOutput$
1105
+ ];
1106
+ var DeleteWhatsAppMessageMedia$ = [9, n0, _DWAMM,
1107
+ { [_ht]: ["DELETE", "/v1/whatsapp/media", 200] }, () => DeleteWhatsAppMessageMediaInput$, () => DeleteWhatsAppMessageMediaOutput$
1108
+ ];
1109
+ var DeleteWhatsAppMessageTemplate$ = [9, n0, _DWAMT,
1110
+ { [_ht]: ["DELETE", "/v1/whatsapp/template", 200] }, () => DeleteWhatsAppMessageTemplateInput$, () => DeleteWhatsAppMessageTemplateOutput$
1111
+ ];
1112
+ var DeprecateWhatsAppFlow$ = [9, n0, _DWAFe,
1113
+ { [_ht]: ["POST", "/v1/whatsapp/flow/deprecate", 200] }, () => DeprecateWhatsAppFlowInput$, () => DeprecateWhatsAppFlowOutput$
1114
+ ];
1115
+ var DisassociateWhatsAppBusinessAccount$ = [9, n0, _DWABA,
1116
+ { [_ht]: ["DELETE", "/v1/whatsapp/waba/disassociate", 200] }, () => DisassociateWhatsAppBusinessAccountInput$, () => DisassociateWhatsAppBusinessAccountOutput$
1117
+ ];
1118
+ var GetLinkedWhatsAppBusinessAccount$ = [9, n0, _GLWABA,
1119
+ { [_ht]: ["GET", "/v1/whatsapp/waba/details", 200] }, () => GetLinkedWhatsAppBusinessAccountInput$, () => GetLinkedWhatsAppBusinessAccountOutput$
1120
+ ];
1121
+ var GetLinkedWhatsAppBusinessAccountPhoneNumber$ = [9, n0, _GLWABAPN,
1122
+ { [_ht]: ["GET", "/v1/whatsapp/waba/phone/details", 200] }, () => GetLinkedWhatsAppBusinessAccountPhoneNumberInput$, () => GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$
1123
+ ];
1124
+ var GetWhatsAppFlow$ = [9, n0, _GWAF,
1125
+ { [_ht]: ["GET", "/v1/whatsapp/flow", 200] }, () => GetWhatsAppFlowInput$, () => GetWhatsAppFlowOutput$
1126
+ ];
1127
+ var GetWhatsAppFlowPreview$ = [9, n0, _GWAFP,
1128
+ { [_ht]: ["GET", "/v1/whatsapp/flow/preview", 200] }, () => GetWhatsAppFlowPreviewInput$, () => GetWhatsAppFlowPreviewOutput$
1129
+ ];
1130
+ var GetWhatsAppMessageMedia$ = [9, n0, _GWAMM,
1131
+ { [_ht]: ["POST", "/v1/whatsapp/media/get", 200] }, () => GetWhatsAppMessageMediaInput$, () => GetWhatsAppMessageMediaOutput$
1132
+ ];
1133
+ var GetWhatsAppMessageTemplate$ = [9, n0, _GWAMT,
1134
+ { [_ht]: ["GET", "/v1/whatsapp/template", 200] }, () => GetWhatsAppMessageTemplateInput$, () => GetWhatsAppMessageTemplateOutput$
1135
+ ];
1136
+ var ListLinkedWhatsAppBusinessAccounts$ = [9, n0, _LLWABA,
1137
+ { [_ht]: ["GET", "/v1/whatsapp/waba/list", 200] }, () => ListLinkedWhatsAppBusinessAccountsInput$, () => ListLinkedWhatsAppBusinessAccountsOutput$
1138
+ ];
1139
+ var ListTagsForResource$ = [9, n0, _LTFR,
1140
+ { [_ht]: ["GET", "/v1/tags/list", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
1141
+ ];
1142
+ var ListWhatsAppFlowAssets$ = [9, n0, _LWAFA,
1143
+ { [_ht]: ["GET", "/v1/whatsapp/flow/assets", 200] }, () => ListWhatsAppFlowAssetsInput$, () => ListWhatsAppFlowAssetsOutput$
1144
+ ];
1145
+ var ListWhatsAppFlows$ = [9, n0, _LWAF,
1146
+ { [_ht]: ["GET", "/v1/whatsapp/flow/list", 200] }, () => ListWhatsAppFlowsInput$, () => ListWhatsAppFlowsOutput$
1147
+ ];
1148
+ var ListWhatsAppMessageTemplates$ = [9, n0, _LWAMT,
1149
+ { [_ht]: ["GET", "/v1/whatsapp/template/list", 200] }, () => ListWhatsAppMessageTemplatesInput$, () => ListWhatsAppMessageTemplatesOutput$
1150
+ ];
1151
+ var ListWhatsAppTemplateLibrary$ = [9, n0, _LWATL,
1152
+ { [_ht]: ["POST", "/v1/whatsapp/template/library", 200] }, () => ListWhatsAppTemplateLibraryInput$, () => ListWhatsAppTemplateLibraryOutput$
1153
+ ];
1154
+ var PostWhatsAppMessageMedia$ = [9, n0, _PWAMM,
1155
+ { [_ht]: ["POST", "/v1/whatsapp/media", 200] }, () => PostWhatsAppMessageMediaInput$, () => PostWhatsAppMessageMediaOutput$
1156
+ ];
1157
+ var PublishWhatsAppFlow$ = [9, n0, _PWAF,
1158
+ { [_ht]: ["POST", "/v1/whatsapp/flow/publish", 200] }, () => PublishWhatsAppFlowInput$, () => PublishWhatsAppFlowOutput$
1159
+ ];
1160
+ var PutWhatsAppBusinessAccountEventDestinations$ = [9, n0, _PWABAED,
1161
+ { [_ht]: ["PUT", "/v1/whatsapp/waba/eventdestinations", 200] }, () => PutWhatsAppBusinessAccountEventDestinationsInput$, () => PutWhatsAppBusinessAccountEventDestinationsOutput$
1162
+ ];
1163
+ var SendWhatsAppMessage$ = [9, n0, _SWAM,
1164
+ { [_ht]: ["POST", "/v1/whatsapp/send", 200] }, () => SendWhatsAppMessageInput$, () => SendWhatsAppMessageOutput$
1165
+ ];
1166
+ var TagResource$ = [9, n0, _TR,
1167
+ { [_ht]: ["POST", "/v1/tags/tag-resource", 200] }, () => TagResourceInput$, () => TagResourceOutput$
1168
+ ];
1169
+ var UntagResource$ = [9, n0, _UR,
1170
+ { [_ht]: ["POST", "/v1/tags/untag-resource", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
1171
+ ];
1172
+ var UpdateWhatsAppFlow$ = [9, n0, _UWAF,
1173
+ { [_ht]: ["POST", "/v1/whatsapp/flow/update", 200] }, () => UpdateWhatsAppFlowInput$, () => UpdateWhatsAppFlowOutput$
1174
+ ];
1175
+ var UpdateWhatsAppFlowAssets$ = [9, n0, _UWAFA,
1176
+ { [_ht]: ["POST", "/v1/whatsapp/flow/assets/update", 200] }, () => UpdateWhatsAppFlowAssetsInput$, () => UpdateWhatsAppFlowAssetsOutput$
1177
+ ];
1178
+ var UpdateWhatsAppMessageTemplate$ = [9, n0, _UWAMT,
1179
+ { [_ht]: ["POST", "/v1/whatsapp/template", 200] }, () => UpdateWhatsAppMessageTemplateInput$, () => UpdateWhatsAppMessageTemplateOutput$
1180
+ ];
1181
+
1182
+ const getRuntimeConfig$1 = (config) => {
1183
+ return {
1184
+ apiVersion: "2024-01-01",
1185
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1186
+ base64Encoder: config?.base64Encoder ?? toBase64,
1187
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1188
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1189
+ extensions: config?.extensions ?? [],
1190
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSocialMessagingHttpAuthSchemeProvider,
1191
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1192
+ {
1193
+ schemeId: "aws.auth#sigv4",
1194
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1195
+ signer: new AwsSdkSigV4Signer(),
1196
+ },
1197
+ ],
1198
+ logger: config?.logger ?? new NoOpLogger(),
1199
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1200
+ protocolSettings: config?.protocolSettings ?? {
1201
+ defaultNamespace: "com.amazonaws.socialmessaging",
1202
+ errorTypeRegistries,
1203
+ version: "2024-01-01",
1204
+ serviceTarget: "SocialMessaging",
1205
+ },
1206
+ serviceId: config?.serviceId ?? "SocialMessaging",
1207
+ urlParser: config?.urlParser ?? parseUrl,
1208
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1209
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1210
+ };
1211
+ };
1212
+
1213
+ const getRuntimeConfig = (config) => {
1214
+ emitWarningIfUnsupportedVersion(process.version);
1215
+ const defaultsMode = resolveDefaultsModeConfig(config);
1216
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1217
+ const clientSharedValues = getRuntimeConfig$1(config);
1218
+ emitWarningIfUnsupportedVersion$1(process.version);
1219
+ const loaderConfig = {
1220
+ profile: config?.profile,
1221
+ logger: clientSharedValues.logger,
1222
+ };
1223
+ return {
1224
+ ...clientSharedValues,
1225
+ ...config,
1226
+ runtime: "node",
1227
+ defaultsMode,
1228
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1229
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1230
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1231
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1232
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1233
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1234
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1235
+ retryMode: config?.retryMode ??
1236
+ loadConfig({
1237
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1238
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1239
+ }, config),
1240
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1241
+ streamCollector: config?.streamCollector ?? streamCollector,
1242
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1243
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1244
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1245
+ };
1246
+ };
1247
+
34
1248
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1249
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1250
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -553,41 +1767,182 @@ const MetaFlowCategory = {
553
1767
  SURVEY: "SURVEY",
554
1768
  };
555
1769
 
1770
+ exports.AccessDeniedByMetaException = AccessDeniedByMetaException;
1771
+ exports.AccessDeniedByMetaException$ = AccessDeniedByMetaException$;
1772
+ exports.AccessDeniedException = AccessDeniedException;
1773
+ exports.AccessDeniedException$ = AccessDeniedException$;
1774
+ exports.AssociateWhatsAppBusinessAccount$ = AssociateWhatsAppBusinessAccount$;
556
1775
  exports.AssociateWhatsAppBusinessAccountCommand = AssociateWhatsAppBusinessAccountCommand;
1776
+ exports.AssociateWhatsAppBusinessAccountInput$ = AssociateWhatsAppBusinessAccountInput$;
1777
+ exports.AssociateWhatsAppBusinessAccountOutput$ = AssociateWhatsAppBusinessAccountOutput$;
1778
+ exports.CreateWhatsAppFlow$ = CreateWhatsAppFlow$;
557
1779
  exports.CreateWhatsAppFlowCommand = CreateWhatsAppFlowCommand;
1780
+ exports.CreateWhatsAppFlowInput$ = CreateWhatsAppFlowInput$;
1781
+ exports.CreateWhatsAppFlowOutput$ = CreateWhatsAppFlowOutput$;
1782
+ exports.CreateWhatsAppMessageTemplate$ = CreateWhatsAppMessageTemplate$;
558
1783
  exports.CreateWhatsAppMessageTemplateCommand = CreateWhatsAppMessageTemplateCommand;
1784
+ exports.CreateWhatsAppMessageTemplateFromLibrary$ = CreateWhatsAppMessageTemplateFromLibrary$;
559
1785
  exports.CreateWhatsAppMessageTemplateFromLibraryCommand = CreateWhatsAppMessageTemplateFromLibraryCommand;
1786
+ exports.CreateWhatsAppMessageTemplateFromLibraryInput$ = CreateWhatsAppMessageTemplateFromLibraryInput$;
1787
+ exports.CreateWhatsAppMessageTemplateFromLibraryOutput$ = CreateWhatsAppMessageTemplateFromLibraryOutput$;
1788
+ exports.CreateWhatsAppMessageTemplateInput$ = CreateWhatsAppMessageTemplateInput$;
1789
+ exports.CreateWhatsAppMessageTemplateMedia$ = CreateWhatsAppMessageTemplateMedia$;
560
1790
  exports.CreateWhatsAppMessageTemplateMediaCommand = CreateWhatsAppMessageTemplateMediaCommand;
1791
+ exports.CreateWhatsAppMessageTemplateMediaInput$ = CreateWhatsAppMessageTemplateMediaInput$;
1792
+ exports.CreateWhatsAppMessageTemplateMediaOutput$ = CreateWhatsAppMessageTemplateMediaOutput$;
1793
+ exports.CreateWhatsAppMessageTemplateOutput$ = CreateWhatsAppMessageTemplateOutput$;
1794
+ exports.DeleteWhatsAppFlow$ = DeleteWhatsAppFlow$;
561
1795
  exports.DeleteWhatsAppFlowCommand = DeleteWhatsAppFlowCommand;
1796
+ exports.DeleteWhatsAppFlowInput$ = DeleteWhatsAppFlowInput$;
1797
+ exports.DeleteWhatsAppFlowOutput$ = DeleteWhatsAppFlowOutput$;
1798
+ exports.DeleteWhatsAppMessageMedia$ = DeleteWhatsAppMessageMedia$;
562
1799
  exports.DeleteWhatsAppMessageMediaCommand = DeleteWhatsAppMessageMediaCommand;
1800
+ exports.DeleteWhatsAppMessageMediaInput$ = DeleteWhatsAppMessageMediaInput$;
1801
+ exports.DeleteWhatsAppMessageMediaOutput$ = DeleteWhatsAppMessageMediaOutput$;
1802
+ exports.DeleteWhatsAppMessageTemplate$ = DeleteWhatsAppMessageTemplate$;
563
1803
  exports.DeleteWhatsAppMessageTemplateCommand = DeleteWhatsAppMessageTemplateCommand;
1804
+ exports.DeleteWhatsAppMessageTemplateInput$ = DeleteWhatsAppMessageTemplateInput$;
1805
+ exports.DeleteWhatsAppMessageTemplateOutput$ = DeleteWhatsAppMessageTemplateOutput$;
1806
+ exports.DependencyException = DependencyException;
1807
+ exports.DependencyException$ = DependencyException$;
1808
+ exports.DeprecateWhatsAppFlow$ = DeprecateWhatsAppFlow$;
564
1809
  exports.DeprecateWhatsAppFlowCommand = DeprecateWhatsAppFlowCommand;
1810
+ exports.DeprecateWhatsAppFlowInput$ = DeprecateWhatsAppFlowInput$;
1811
+ exports.DeprecateWhatsAppFlowOutput$ = DeprecateWhatsAppFlowOutput$;
1812
+ exports.DisassociateWhatsAppBusinessAccount$ = DisassociateWhatsAppBusinessAccount$;
565
1813
  exports.DisassociateWhatsAppBusinessAccountCommand = DisassociateWhatsAppBusinessAccountCommand;
1814
+ exports.DisassociateWhatsAppBusinessAccountInput$ = DisassociateWhatsAppBusinessAccountInput$;
1815
+ exports.DisassociateWhatsAppBusinessAccountOutput$ = DisassociateWhatsAppBusinessAccountOutput$;
1816
+ exports.GetLinkedWhatsAppBusinessAccount$ = GetLinkedWhatsAppBusinessAccount$;
566
1817
  exports.GetLinkedWhatsAppBusinessAccountCommand = GetLinkedWhatsAppBusinessAccountCommand;
1818
+ exports.GetLinkedWhatsAppBusinessAccountInput$ = GetLinkedWhatsAppBusinessAccountInput$;
1819
+ exports.GetLinkedWhatsAppBusinessAccountOutput$ = GetLinkedWhatsAppBusinessAccountOutput$;
1820
+ exports.GetLinkedWhatsAppBusinessAccountPhoneNumber$ = GetLinkedWhatsAppBusinessAccountPhoneNumber$;
567
1821
  exports.GetLinkedWhatsAppBusinessAccountPhoneNumberCommand = GetLinkedWhatsAppBusinessAccountPhoneNumberCommand;
1822
+ exports.GetLinkedWhatsAppBusinessAccountPhoneNumberInput$ = GetLinkedWhatsAppBusinessAccountPhoneNumberInput$;
1823
+ exports.GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$ = GetLinkedWhatsAppBusinessAccountPhoneNumberOutput$;
1824
+ exports.GetWhatsAppFlow$ = GetWhatsAppFlow$;
568
1825
  exports.GetWhatsAppFlowCommand = GetWhatsAppFlowCommand;
1826
+ exports.GetWhatsAppFlowInput$ = GetWhatsAppFlowInput$;
1827
+ exports.GetWhatsAppFlowOutput$ = GetWhatsAppFlowOutput$;
1828
+ exports.GetWhatsAppFlowPreview$ = GetWhatsAppFlowPreview$;
569
1829
  exports.GetWhatsAppFlowPreviewCommand = GetWhatsAppFlowPreviewCommand;
1830
+ exports.GetWhatsAppFlowPreviewInput$ = GetWhatsAppFlowPreviewInput$;
1831
+ exports.GetWhatsAppFlowPreviewOutput$ = GetWhatsAppFlowPreviewOutput$;
1832
+ exports.GetWhatsAppMessageMedia$ = GetWhatsAppMessageMedia$;
570
1833
  exports.GetWhatsAppMessageMediaCommand = GetWhatsAppMessageMediaCommand;
1834
+ exports.GetWhatsAppMessageMediaInput$ = GetWhatsAppMessageMediaInput$;
1835
+ exports.GetWhatsAppMessageMediaOutput$ = GetWhatsAppMessageMediaOutput$;
1836
+ exports.GetWhatsAppMessageTemplate$ = GetWhatsAppMessageTemplate$;
571
1837
  exports.GetWhatsAppMessageTemplateCommand = GetWhatsAppMessageTemplateCommand;
1838
+ exports.GetWhatsAppMessageTemplateInput$ = GetWhatsAppMessageTemplateInput$;
1839
+ exports.GetWhatsAppMessageTemplateOutput$ = GetWhatsAppMessageTemplateOutput$;
1840
+ exports.InternalServiceException = InternalServiceException;
1841
+ exports.InternalServiceException$ = InternalServiceException$;
1842
+ exports.InvalidParametersException = InvalidParametersException;
1843
+ exports.InvalidParametersException$ = InvalidParametersException$;
1844
+ exports.LibraryTemplateBodyInputs$ = LibraryTemplateBodyInputs$;
1845
+ exports.LibraryTemplateButtonInput$ = LibraryTemplateButtonInput$;
1846
+ exports.LibraryTemplateButtonList$ = LibraryTemplateButtonList$;
1847
+ exports.LimitExceededException = LimitExceededException;
1848
+ exports.LimitExceededException$ = LimitExceededException$;
1849
+ exports.LinkedWhatsAppBusinessAccount$ = LinkedWhatsAppBusinessAccount$;
1850
+ exports.LinkedWhatsAppBusinessAccountIdMetaData$ = LinkedWhatsAppBusinessAccountIdMetaData$;
1851
+ exports.LinkedWhatsAppBusinessAccountSummary$ = LinkedWhatsAppBusinessAccountSummary$;
1852
+ exports.ListLinkedWhatsAppBusinessAccounts$ = ListLinkedWhatsAppBusinessAccounts$;
572
1853
  exports.ListLinkedWhatsAppBusinessAccountsCommand = ListLinkedWhatsAppBusinessAccountsCommand;
1854
+ exports.ListLinkedWhatsAppBusinessAccountsInput$ = ListLinkedWhatsAppBusinessAccountsInput$;
1855
+ exports.ListLinkedWhatsAppBusinessAccountsOutput$ = ListLinkedWhatsAppBusinessAccountsOutput$;
1856
+ exports.ListTagsForResource$ = ListTagsForResource$;
573
1857
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1858
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
1859
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
1860
+ exports.ListWhatsAppFlowAssets$ = ListWhatsAppFlowAssets$;
574
1861
  exports.ListWhatsAppFlowAssetsCommand = ListWhatsAppFlowAssetsCommand;
1862
+ exports.ListWhatsAppFlowAssetsInput$ = ListWhatsAppFlowAssetsInput$;
1863
+ exports.ListWhatsAppFlowAssetsOutput$ = ListWhatsAppFlowAssetsOutput$;
1864
+ exports.ListWhatsAppFlows$ = ListWhatsAppFlows$;
575
1865
  exports.ListWhatsAppFlowsCommand = ListWhatsAppFlowsCommand;
1866
+ exports.ListWhatsAppFlowsInput$ = ListWhatsAppFlowsInput$;
1867
+ exports.ListWhatsAppFlowsOutput$ = ListWhatsAppFlowsOutput$;
1868
+ exports.ListWhatsAppMessageTemplates$ = ListWhatsAppMessageTemplates$;
576
1869
  exports.ListWhatsAppMessageTemplatesCommand = ListWhatsAppMessageTemplatesCommand;
1870
+ exports.ListWhatsAppMessageTemplatesInput$ = ListWhatsAppMessageTemplatesInput$;
1871
+ exports.ListWhatsAppMessageTemplatesOutput$ = ListWhatsAppMessageTemplatesOutput$;
1872
+ exports.ListWhatsAppTemplateLibrary$ = ListWhatsAppTemplateLibrary$;
577
1873
  exports.ListWhatsAppTemplateLibraryCommand = ListWhatsAppTemplateLibraryCommand;
1874
+ exports.ListWhatsAppTemplateLibraryInput$ = ListWhatsAppTemplateLibraryInput$;
1875
+ exports.ListWhatsAppTemplateLibraryOutput$ = ListWhatsAppTemplateLibraryOutput$;
1876
+ exports.MetaFlowApplicationInfo$ = MetaFlowApplicationInfo$;
1877
+ exports.MetaFlowAsset$ = MetaFlowAsset$;
578
1878
  exports.MetaFlowCategory = MetaFlowCategory;
1879
+ exports.MetaFlowHealthEntity$ = MetaFlowHealthEntity$;
1880
+ exports.MetaFlowHealthStatus$ = MetaFlowHealthStatus$;
1881
+ exports.MetaFlowPreviewInfo$ = MetaFlowPreviewInfo$;
1882
+ exports.MetaFlowSummary$ = MetaFlowSummary$;
1883
+ exports.MetaFlowWhatsAppBusinessAccountInfo$ = MetaFlowWhatsAppBusinessAccountInfo$;
1884
+ exports.MetaLibraryTemplate$ = MetaLibraryTemplate$;
1885
+ exports.MetaLibraryTemplateDefinition$ = MetaLibraryTemplateDefinition$;
1886
+ exports.PostWhatsAppMessageMedia$ = PostWhatsAppMessageMedia$;
579
1887
  exports.PostWhatsAppMessageMediaCommand = PostWhatsAppMessageMediaCommand;
1888
+ exports.PostWhatsAppMessageMediaInput$ = PostWhatsAppMessageMediaInput$;
1889
+ exports.PostWhatsAppMessageMediaOutput$ = PostWhatsAppMessageMediaOutput$;
1890
+ exports.PublishWhatsAppFlow$ = PublishWhatsAppFlow$;
580
1891
  exports.PublishWhatsAppFlowCommand = PublishWhatsAppFlowCommand;
1892
+ exports.PublishWhatsAppFlowInput$ = PublishWhatsAppFlowInput$;
1893
+ exports.PublishWhatsAppFlowOutput$ = PublishWhatsAppFlowOutput$;
1894
+ exports.PutWhatsAppBusinessAccountEventDestinations$ = PutWhatsAppBusinessAccountEventDestinations$;
581
1895
  exports.PutWhatsAppBusinessAccountEventDestinationsCommand = PutWhatsAppBusinessAccountEventDestinationsCommand;
1896
+ exports.PutWhatsAppBusinessAccountEventDestinationsInput$ = PutWhatsAppBusinessAccountEventDestinationsInput$;
1897
+ exports.PutWhatsAppBusinessAccountEventDestinationsOutput$ = PutWhatsAppBusinessAccountEventDestinationsOutput$;
582
1898
  exports.RegistrationStatus = RegistrationStatus;
1899
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1900
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1901
+ exports.S3File$ = S3File$;
1902
+ exports.S3PresignedUrl$ = S3PresignedUrl$;
1903
+ exports.SendWhatsAppMessage$ = SendWhatsAppMessage$;
583
1904
  exports.SendWhatsAppMessageCommand = SendWhatsAppMessageCommand;
1905
+ exports.SendWhatsAppMessageInput$ = SendWhatsAppMessageInput$;
1906
+ exports.SendWhatsAppMessageOutput$ = SendWhatsAppMessageOutput$;
584
1907
  exports.SocialMessaging = SocialMessaging;
585
1908
  exports.SocialMessagingClient = SocialMessagingClient;
1909
+ exports.SocialMessagingServiceException = SocialMessagingServiceException;
1910
+ exports.SocialMessagingServiceException$ = SocialMessagingServiceException$;
1911
+ exports.Tag$ = Tag$;
1912
+ exports.TagResource$ = TagResource$;
586
1913
  exports.TagResourceCommand = TagResourceCommand;
1914
+ exports.TagResourceInput$ = TagResourceInput$;
1915
+ exports.TagResourceOutput$ = TagResourceOutput$;
1916
+ exports.TemplateSummary$ = TemplateSummary$;
1917
+ exports.ThrottledRequestException = ThrottledRequestException;
1918
+ exports.ThrottledRequestException$ = ThrottledRequestException$;
1919
+ exports.UntagResource$ = UntagResource$;
587
1920
  exports.UntagResourceCommand = UntagResourceCommand;
1921
+ exports.UntagResourceInput$ = UntagResourceInput$;
1922
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
1923
+ exports.UpdateWhatsAppFlow$ = UpdateWhatsAppFlow$;
1924
+ exports.UpdateWhatsAppFlowAssets$ = UpdateWhatsAppFlowAssets$;
588
1925
  exports.UpdateWhatsAppFlowAssetsCommand = UpdateWhatsAppFlowAssetsCommand;
1926
+ exports.UpdateWhatsAppFlowAssetsInput$ = UpdateWhatsAppFlowAssetsInput$;
1927
+ exports.UpdateWhatsAppFlowAssetsOutput$ = UpdateWhatsAppFlowAssetsOutput$;
589
1928
  exports.UpdateWhatsAppFlowCommand = UpdateWhatsAppFlowCommand;
1929
+ exports.UpdateWhatsAppFlowInput$ = UpdateWhatsAppFlowInput$;
1930
+ exports.UpdateWhatsAppFlowOutput$ = UpdateWhatsAppFlowOutput$;
1931
+ exports.UpdateWhatsAppMessageTemplate$ = UpdateWhatsAppMessageTemplate$;
590
1932
  exports.UpdateWhatsAppMessageTemplateCommand = UpdateWhatsAppMessageTemplateCommand;
1933
+ exports.UpdateWhatsAppMessageTemplateInput$ = UpdateWhatsAppMessageTemplateInput$;
1934
+ exports.UpdateWhatsAppMessageTemplateOutput$ = UpdateWhatsAppMessageTemplateOutput$;
1935
+ exports.ValidationException = ValidationException;
1936
+ exports.ValidationException$ = ValidationException$;
1937
+ exports.WabaPhoneNumberSetupFinalization$ = WabaPhoneNumberSetupFinalization$;
1938
+ exports.WabaSetupFinalization$ = WabaSetupFinalization$;
1939
+ exports.WhatsAppBusinessAccountEventDestination$ = WhatsAppBusinessAccountEventDestination$;
1940
+ exports.WhatsAppPhoneNumberDetail$ = WhatsAppPhoneNumberDetail$;
1941
+ exports.WhatsAppPhoneNumberSummary$ = WhatsAppPhoneNumberSummary$;
1942
+ exports.WhatsAppSetupFinalization$ = WhatsAppSetupFinalization$;
1943
+ exports.WhatsAppSignupCallback$ = WhatsAppSignupCallback$;
1944
+ exports.WhatsAppSignupCallbackResult$ = WhatsAppSignupCallbackResult$;
1945
+ exports.errorTypeRegistries = errorTypeRegistries;
591
1946
  exports.paginateListLinkedWhatsAppBusinessAccounts = paginateListLinkedWhatsAppBusinessAccounts;
592
1947
  exports.paginateListWhatsAppFlowAssets = paginateListWhatsAppFlowAssets;
593
1948
  exports.paginateListWhatsAppFlows = paginateListWhatsAppFlows;