@aws-sdk/client-socialmessaging 3.927.0 → 3.929.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 +1106 -1014
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SocialMessagingClient.js +2 -0
- package/dist-es/commands/AssociateWhatsAppBusinessAccountCommand.js +3 -10
- package/dist-es/commands/CreateWhatsAppMessageTemplateCommand.js +3 -9
- package/dist-es/commands/CreateWhatsAppMessageTemplateFromLibraryCommand.js +3 -9
- package/dist-es/commands/CreateWhatsAppMessageTemplateMediaCommand.js +3 -10
- package/dist-es/commands/DeleteWhatsAppMessageMediaCommand.js +3 -9
- package/dist-es/commands/DeleteWhatsAppMessageTemplateCommand.js +3 -9
- package/dist-es/commands/DisassociateWhatsAppBusinessAccountCommand.js +3 -9
- package/dist-es/commands/GetLinkedWhatsAppBusinessAccountCommand.js +3 -9
- package/dist-es/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.js +3 -9
- package/dist-es/commands/GetWhatsAppMessageMediaCommand.js +3 -10
- package/dist-es/commands/GetWhatsAppMessageTemplateCommand.js +3 -9
- package/dist-es/commands/ListLinkedWhatsAppBusinessAccountsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListWhatsAppMessageTemplatesCommand.js +3 -9
- package/dist-es/commands/ListWhatsAppTemplateLibraryCommand.js +3 -9
- package/dist-es/commands/PostWhatsAppMessageMediaCommand.js +3 -10
- package/dist-es/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.js +3 -9
- package/dist-es/commands/SendWhatsAppMessageCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateWhatsAppMessageTemplateCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -52
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1053 -0
- package/dist-types/SocialMessagingClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -44
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +116 -0
- package/dist-types/ts3.4/SocialMessagingClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -31
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +123 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -789
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -191
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -257
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AssociateWhatsAppBusinessAccountCommandInput, AssociateWhatsAppBusinessAccountCommandOutput } from "./commands/AssociateWhatsAppBusinessAccountCommand";
|
|
11
11
|
import { CreateWhatsAppMessageTemplateCommandInput, CreateWhatsAppMessageTemplateCommandOutput } from "./commands/CreateWhatsAppMessageTemplateCommand";
|
|
@@ -162,6 +162,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
162
162
|
* Optional extensions
|
|
163
163
|
*/
|
|
164
164
|
extensions?: RuntimeExtension[];
|
|
165
|
+
/**
|
|
166
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
167
|
+
* may be overridden. A default will always be set by the client.
|
|
168
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
169
|
+
* the client.
|
|
170
|
+
* @alpha
|
|
171
|
+
*
|
|
172
|
+
*/
|
|
173
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
165
174
|
/**
|
|
166
175
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
167
176
|
*/
|
|
@@ -1456,47 +1456,3 @@ export interface UpdateWhatsAppMessageTemplateInput {
|
|
|
1456
1456
|
*/
|
|
1457
1457
|
export interface UpdateWhatsAppMessageTemplateOutput {
|
|
1458
1458
|
}
|
|
1459
|
-
/**
|
|
1460
|
-
* @internal
|
|
1461
|
-
*/
|
|
1462
|
-
export declare const WabaPhoneNumberSetupFinalizationFilterSensitiveLog: (obj: WabaPhoneNumberSetupFinalization) => any;
|
|
1463
|
-
/**
|
|
1464
|
-
* @internal
|
|
1465
|
-
*/
|
|
1466
|
-
export declare const WhatsAppSetupFinalizationFilterSensitiveLog: (obj: WhatsAppSetupFinalization) => any;
|
|
1467
|
-
/**
|
|
1468
|
-
* @internal
|
|
1469
|
-
*/
|
|
1470
|
-
export declare const AssociateWhatsAppBusinessAccountInputFilterSensitiveLog: (obj: AssociateWhatsAppBusinessAccountInput) => any;
|
|
1471
|
-
/**
|
|
1472
|
-
* @internal
|
|
1473
|
-
*/
|
|
1474
|
-
export declare const WhatsAppSignupCallbackResultFilterSensitiveLog: (obj: WhatsAppSignupCallbackResult) => any;
|
|
1475
|
-
/**
|
|
1476
|
-
* @internal
|
|
1477
|
-
*/
|
|
1478
|
-
export declare const AssociateWhatsAppBusinessAccountOutputFilterSensitiveLog: (obj: AssociateWhatsAppBusinessAccountOutput) => any;
|
|
1479
|
-
/**
|
|
1480
|
-
* @internal
|
|
1481
|
-
*/
|
|
1482
|
-
export declare const S3FileFilterSensitiveLog: (obj: S3File) => any;
|
|
1483
|
-
/**
|
|
1484
|
-
* @internal
|
|
1485
|
-
*/
|
|
1486
|
-
export declare const CreateWhatsAppMessageTemplateMediaInputFilterSensitiveLog: (obj: CreateWhatsAppMessageTemplateMediaInput) => any;
|
|
1487
|
-
/**
|
|
1488
|
-
* @internal
|
|
1489
|
-
*/
|
|
1490
|
-
export declare const S3PresignedUrlFilterSensitiveLog: (obj: S3PresignedUrl) => any;
|
|
1491
|
-
/**
|
|
1492
|
-
* @internal
|
|
1493
|
-
*/
|
|
1494
|
-
export declare const GetWhatsAppMessageMediaInputFilterSensitiveLog: (obj: GetWhatsAppMessageMediaInput) => any;
|
|
1495
|
-
/**
|
|
1496
|
-
* @internal
|
|
1497
|
-
*/
|
|
1498
|
-
export declare const PostWhatsAppMessageMediaInputFilterSensitiveLog: (obj: PostWhatsAppMessageMediaInput) => any;
|
|
1499
|
-
/**
|
|
1500
|
-
* @internal
|
|
1501
|
-
*/
|
|
1502
|
-
export declare const SendWhatsAppMessageInputFilterSensitiveLog: (obj: SendWhatsAppMessageInput) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: SocialMessagingClientConfig) =>
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: SocialMessagingClientConfig) =>
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: SocialMessagingClientConfig) =>
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: SocialMessagingClientConfig) =>
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SocialMessagingHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AssociateInProgressToken: StaticSimpleSchema;
|
|
3
|
+
export declare var TwoFactorPin: StaticSimpleSchema;
|
|
4
|
+
export declare var WhatsAppMessageBlob: StaticSimpleSchema;
|
|
5
|
+
export declare var AccessDeniedByMetaException: StaticErrorSchema;
|
|
6
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
7
|
+
export declare var AssociateWhatsAppBusinessAccountInput: StaticStructureSchema;
|
|
8
|
+
export declare var AssociateWhatsAppBusinessAccountOutput: StaticStructureSchema;
|
|
9
|
+
export declare var CreateWhatsAppMessageTemplateFromLibraryInput: StaticStructureSchema;
|
|
10
|
+
export declare var CreateWhatsAppMessageTemplateFromLibraryOutput: StaticStructureSchema;
|
|
11
|
+
export declare var CreateWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
12
|
+
export declare var CreateWhatsAppMessageTemplateMediaInput: StaticStructureSchema;
|
|
13
|
+
export declare var CreateWhatsAppMessageTemplateMediaOutput: StaticStructureSchema;
|
|
14
|
+
export declare var CreateWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
15
|
+
export declare var DeleteWhatsAppMessageMediaInput: StaticStructureSchema;
|
|
16
|
+
export declare var DeleteWhatsAppMessageMediaOutput: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
19
|
+
export declare var DependencyException: StaticErrorSchema;
|
|
20
|
+
export declare var DisassociateWhatsAppBusinessAccountInput: StaticStructureSchema;
|
|
21
|
+
export declare var DisassociateWhatsAppBusinessAccountOutput: StaticStructureSchema;
|
|
22
|
+
export declare var GetLinkedWhatsAppBusinessAccountInput: StaticStructureSchema;
|
|
23
|
+
export declare var GetLinkedWhatsAppBusinessAccountOutput: StaticStructureSchema;
|
|
24
|
+
export declare var GetLinkedWhatsAppBusinessAccountPhoneNumberInput: StaticStructureSchema;
|
|
25
|
+
export declare var GetLinkedWhatsAppBusinessAccountPhoneNumberOutput: StaticStructureSchema;
|
|
26
|
+
export declare var GetWhatsAppMessageMediaInput: StaticStructureSchema;
|
|
27
|
+
export declare var GetWhatsAppMessageMediaOutput: StaticStructureSchema;
|
|
28
|
+
export declare var GetWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
29
|
+
export declare var GetWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
30
|
+
export declare var InternalServiceException: StaticErrorSchema;
|
|
31
|
+
export declare var InvalidParametersException: StaticErrorSchema;
|
|
32
|
+
export declare var LibraryTemplateBodyInputs: StaticStructureSchema;
|
|
33
|
+
export declare var LibraryTemplateButtonInput: StaticStructureSchema;
|
|
34
|
+
export declare var LibraryTemplateButtonList: StaticStructureSchema;
|
|
35
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
36
|
+
export declare var LinkedWhatsAppBusinessAccount: StaticStructureSchema;
|
|
37
|
+
export declare var LinkedWhatsAppBusinessAccountIdMetaData: StaticStructureSchema;
|
|
38
|
+
export declare var LinkedWhatsAppBusinessAccountSummary: StaticStructureSchema;
|
|
39
|
+
export declare var ListLinkedWhatsAppBusinessAccountsInput: StaticStructureSchema;
|
|
40
|
+
export declare var ListLinkedWhatsAppBusinessAccountsOutput: StaticStructureSchema;
|
|
41
|
+
export declare var ListTagsForResourceInput: StaticStructureSchema;
|
|
42
|
+
export declare var ListTagsForResourceOutput: StaticStructureSchema;
|
|
43
|
+
export declare var ListWhatsAppMessageTemplatesInput: StaticStructureSchema;
|
|
44
|
+
export declare var ListWhatsAppMessageTemplatesOutput: StaticStructureSchema;
|
|
45
|
+
export declare var ListWhatsAppTemplateLibraryInput: StaticStructureSchema;
|
|
46
|
+
export declare var ListWhatsAppTemplateLibraryOutput: StaticStructureSchema;
|
|
47
|
+
export declare var MetaLibraryTemplate: StaticStructureSchema;
|
|
48
|
+
export declare var MetaLibraryTemplateDefinition: StaticStructureSchema;
|
|
49
|
+
export declare var PostWhatsAppMessageMediaInput: StaticStructureSchema;
|
|
50
|
+
export declare var PostWhatsAppMessageMediaOutput: StaticStructureSchema;
|
|
51
|
+
export declare var PutWhatsAppBusinessAccountEventDestinationsInput: StaticStructureSchema;
|
|
52
|
+
export declare var PutWhatsAppBusinessAccountEventDestinationsOutput: StaticStructureSchema;
|
|
53
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
54
|
+
export declare var S3File: StaticStructureSchema;
|
|
55
|
+
export declare var S3PresignedUrl: StaticStructureSchema;
|
|
56
|
+
export declare var SendWhatsAppMessageInput: StaticStructureSchema;
|
|
57
|
+
export declare var SendWhatsAppMessageOutput: StaticStructureSchema;
|
|
58
|
+
export declare var Tag: StaticStructureSchema;
|
|
59
|
+
export declare var TagResourceInput: StaticStructureSchema;
|
|
60
|
+
export declare var TagResourceOutput: StaticStructureSchema;
|
|
61
|
+
export declare var TemplateSummary: StaticStructureSchema;
|
|
62
|
+
export declare var ThrottledRequestException: StaticErrorSchema;
|
|
63
|
+
export declare var UntagResourceInput: StaticStructureSchema;
|
|
64
|
+
export declare var UntagResourceOutput: StaticStructureSchema;
|
|
65
|
+
export declare var UpdateWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
66
|
+
export declare var UpdateWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
67
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
68
|
+
export declare var WabaPhoneNumberSetupFinalization: StaticStructureSchema;
|
|
69
|
+
export declare var WabaSetupFinalization: StaticStructureSchema;
|
|
70
|
+
export declare var WhatsAppBusinessAccountEventDestination: StaticStructureSchema;
|
|
71
|
+
export declare var WhatsAppPhoneNumberDetail: StaticStructureSchema;
|
|
72
|
+
export declare var WhatsAppPhoneNumberSummary: StaticStructureSchema;
|
|
73
|
+
export declare var WhatsAppSetupFinalization: StaticStructureSchema;
|
|
74
|
+
export declare var WhatsAppSignupCallback: StaticStructureSchema;
|
|
75
|
+
export declare var WhatsAppSignupCallbackResult: StaticStructureSchema;
|
|
76
|
+
export declare var __Unit: "unit";
|
|
77
|
+
export declare var SocialMessagingServiceException: StaticErrorSchema;
|
|
78
|
+
export declare var LinkedWhatsAppBusinessAccountSummaryList: StaticListSchema;
|
|
79
|
+
export declare var MetaIndustries: number;
|
|
80
|
+
export declare var MetaLibraryTemplateButtonInputs: StaticListSchema;
|
|
81
|
+
export declare var MetaLibraryTemplateButtonList: StaticListSchema;
|
|
82
|
+
export declare var MetaLibraryTemplatesList: StaticListSchema;
|
|
83
|
+
export declare var StringList: number;
|
|
84
|
+
export declare var SupportedApps: StaticListSchema;
|
|
85
|
+
export declare var TagList: StaticListSchema;
|
|
86
|
+
export declare var TemplateSummaryList: StaticListSchema;
|
|
87
|
+
export declare var WabaPhoneNumberSetupFinalizationList: StaticListSchema;
|
|
88
|
+
export declare var WhatsAppBusinessAccountEventDestinations: StaticListSchema;
|
|
89
|
+
export declare var WhatsAppPhoneNumberDetailList: StaticListSchema;
|
|
90
|
+
export declare var WhatsAppPhoneNumberSummaryList: StaticListSchema;
|
|
91
|
+
export declare var Filter: number;
|
|
92
|
+
export declare var Headers: number;
|
|
93
|
+
export declare var LinkedAccountWithIncompleteSetup: StaticMapSchema;
|
|
94
|
+
export declare var MetaUrlWithSuffixExample: number;
|
|
95
|
+
export declare var SupportedApp: number;
|
|
96
|
+
export declare var AssociateWhatsAppBusinessAccount: StaticOperationSchema;
|
|
97
|
+
export declare var CreateWhatsAppMessageTemplate: StaticOperationSchema;
|
|
98
|
+
export declare var CreateWhatsAppMessageTemplateFromLibrary: StaticOperationSchema;
|
|
99
|
+
export declare var CreateWhatsAppMessageTemplateMedia: StaticOperationSchema;
|
|
100
|
+
export declare var DeleteWhatsAppMessageMedia: StaticOperationSchema;
|
|
101
|
+
export declare var DeleteWhatsAppMessageTemplate: StaticOperationSchema;
|
|
102
|
+
export declare var DisassociateWhatsAppBusinessAccount: StaticOperationSchema;
|
|
103
|
+
export declare var GetLinkedWhatsAppBusinessAccount: StaticOperationSchema;
|
|
104
|
+
export declare var GetLinkedWhatsAppBusinessAccountPhoneNumber: StaticOperationSchema;
|
|
105
|
+
export declare var GetWhatsAppMessageMedia: StaticOperationSchema;
|
|
106
|
+
export declare var GetWhatsAppMessageTemplate: StaticOperationSchema;
|
|
107
|
+
export declare var ListLinkedWhatsAppBusinessAccounts: StaticOperationSchema;
|
|
108
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
109
|
+
export declare var ListWhatsAppMessageTemplates: StaticOperationSchema;
|
|
110
|
+
export declare var ListWhatsAppTemplateLibrary: StaticOperationSchema;
|
|
111
|
+
export declare var PostWhatsAppMessageMedia: StaticOperationSchema;
|
|
112
|
+
export declare var PutWhatsAppBusinessAccountEventDestinations: StaticOperationSchema;
|
|
113
|
+
export declare var SendWhatsAppMessage: StaticOperationSchema;
|
|
114
|
+
export declare var TagResource: StaticOperationSchema;
|
|
115
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
116
|
+
export declare var UpdateWhatsAppMessageTemplate: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -204,6 +207,7 @@ export interface ClientDefaults
|
|
|
204
207
|
retryMode?: string | __Provider<string>;
|
|
205
208
|
logger?: __Logger;
|
|
206
209
|
extensions?: RuntimeExtension[];
|
|
210
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
207
211
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
208
212
|
}
|
|
209
213
|
export type SocialMessagingClientConfigType = Partial<
|
|
@@ -370,34 +370,3 @@ export interface UpdateWhatsAppMessageTemplateInput {
|
|
|
370
370
|
templateComponents?: Uint8Array | undefined;
|
|
371
371
|
}
|
|
372
372
|
export interface UpdateWhatsAppMessageTemplateOutput {}
|
|
373
|
-
export declare const WabaPhoneNumberSetupFinalizationFilterSensitiveLog: (
|
|
374
|
-
obj: WabaPhoneNumberSetupFinalization
|
|
375
|
-
) => any;
|
|
376
|
-
export declare const WhatsAppSetupFinalizationFilterSensitiveLog: (
|
|
377
|
-
obj: WhatsAppSetupFinalization
|
|
378
|
-
) => any;
|
|
379
|
-
export declare const AssociateWhatsAppBusinessAccountInputFilterSensitiveLog: (
|
|
380
|
-
obj: AssociateWhatsAppBusinessAccountInput
|
|
381
|
-
) => any;
|
|
382
|
-
export declare const WhatsAppSignupCallbackResultFilterSensitiveLog: (
|
|
383
|
-
obj: WhatsAppSignupCallbackResult
|
|
384
|
-
) => any;
|
|
385
|
-
export declare const AssociateWhatsAppBusinessAccountOutputFilterSensitiveLog: (
|
|
386
|
-
obj: AssociateWhatsAppBusinessAccountOutput
|
|
387
|
-
) => any;
|
|
388
|
-
export declare const S3FileFilterSensitiveLog: (obj: S3File) => any;
|
|
389
|
-
export declare const CreateWhatsAppMessageTemplateMediaInputFilterSensitiveLog: (
|
|
390
|
-
obj: CreateWhatsAppMessageTemplateMediaInput
|
|
391
|
-
) => any;
|
|
392
|
-
export declare const S3PresignedUrlFilterSensitiveLog: (
|
|
393
|
-
obj: S3PresignedUrl
|
|
394
|
-
) => any;
|
|
395
|
-
export declare const GetWhatsAppMessageMediaInputFilterSensitiveLog: (
|
|
396
|
-
obj: GetWhatsAppMessageMediaInput
|
|
397
|
-
) => any;
|
|
398
|
-
export declare const PostWhatsAppMessageMediaInputFilterSensitiveLog: (
|
|
399
|
-
obj: PostWhatsAppMessageMediaInput
|
|
400
|
-
) => any;
|
|
401
|
-
export declare const SendWhatsAppMessageInputFilterSensitiveLog: (
|
|
402
|
-
obj: SendWhatsAppMessageInput
|
|
403
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SocialMessagingHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var AssociateInProgressToken: StaticSimpleSchema;
|
|
10
|
+
export declare var TwoFactorPin: StaticSimpleSchema;
|
|
11
|
+
export declare var WhatsAppMessageBlob: StaticSimpleSchema;
|
|
12
|
+
export declare var AccessDeniedByMetaException: StaticErrorSchema;
|
|
13
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
14
|
+
export declare var AssociateWhatsAppBusinessAccountInput: StaticStructureSchema;
|
|
15
|
+
export declare var AssociateWhatsAppBusinessAccountOutput: StaticStructureSchema;
|
|
16
|
+
export declare var CreateWhatsAppMessageTemplateFromLibraryInput: StaticStructureSchema;
|
|
17
|
+
export declare var CreateWhatsAppMessageTemplateFromLibraryOutput: StaticStructureSchema;
|
|
18
|
+
export declare var CreateWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
19
|
+
export declare var CreateWhatsAppMessageTemplateMediaInput: StaticStructureSchema;
|
|
20
|
+
export declare var CreateWhatsAppMessageTemplateMediaOutput: StaticStructureSchema;
|
|
21
|
+
export declare var CreateWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteWhatsAppMessageMediaInput: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteWhatsAppMessageMediaOutput: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
26
|
+
export declare var DependencyException: StaticErrorSchema;
|
|
27
|
+
export declare var DisassociateWhatsAppBusinessAccountInput: StaticStructureSchema;
|
|
28
|
+
export declare var DisassociateWhatsAppBusinessAccountOutput: StaticStructureSchema;
|
|
29
|
+
export declare var GetLinkedWhatsAppBusinessAccountInput: StaticStructureSchema;
|
|
30
|
+
export declare var GetLinkedWhatsAppBusinessAccountOutput: StaticStructureSchema;
|
|
31
|
+
export declare var GetLinkedWhatsAppBusinessAccountPhoneNumberInput: StaticStructureSchema;
|
|
32
|
+
export declare var GetLinkedWhatsAppBusinessAccountPhoneNumberOutput: StaticStructureSchema;
|
|
33
|
+
export declare var GetWhatsAppMessageMediaInput: StaticStructureSchema;
|
|
34
|
+
export declare var GetWhatsAppMessageMediaOutput: StaticStructureSchema;
|
|
35
|
+
export declare var GetWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
36
|
+
export declare var GetWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
37
|
+
export declare var InternalServiceException: StaticErrorSchema;
|
|
38
|
+
export declare var InvalidParametersException: StaticErrorSchema;
|
|
39
|
+
export declare var LibraryTemplateBodyInputs: StaticStructureSchema;
|
|
40
|
+
export declare var LibraryTemplateButtonInput: StaticStructureSchema;
|
|
41
|
+
export declare var LibraryTemplateButtonList: StaticStructureSchema;
|
|
42
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
43
|
+
export declare var LinkedWhatsAppBusinessAccount: StaticStructureSchema;
|
|
44
|
+
export declare var LinkedWhatsAppBusinessAccountIdMetaData: StaticStructureSchema;
|
|
45
|
+
export declare var LinkedWhatsAppBusinessAccountSummary: StaticStructureSchema;
|
|
46
|
+
export declare var ListLinkedWhatsAppBusinessAccountsInput: StaticStructureSchema;
|
|
47
|
+
export declare var ListLinkedWhatsAppBusinessAccountsOutput: StaticStructureSchema;
|
|
48
|
+
export declare var ListTagsForResourceInput: StaticStructureSchema;
|
|
49
|
+
export declare var ListTagsForResourceOutput: StaticStructureSchema;
|
|
50
|
+
export declare var ListWhatsAppMessageTemplatesInput: StaticStructureSchema;
|
|
51
|
+
export declare var ListWhatsAppMessageTemplatesOutput: StaticStructureSchema;
|
|
52
|
+
export declare var ListWhatsAppTemplateLibraryInput: StaticStructureSchema;
|
|
53
|
+
export declare var ListWhatsAppTemplateLibraryOutput: StaticStructureSchema;
|
|
54
|
+
export declare var MetaLibraryTemplate: StaticStructureSchema;
|
|
55
|
+
export declare var MetaLibraryTemplateDefinition: StaticStructureSchema;
|
|
56
|
+
export declare var PostWhatsAppMessageMediaInput: StaticStructureSchema;
|
|
57
|
+
export declare var PostWhatsAppMessageMediaOutput: StaticStructureSchema;
|
|
58
|
+
export declare var PutWhatsAppBusinessAccountEventDestinationsInput: StaticStructureSchema;
|
|
59
|
+
export declare var PutWhatsAppBusinessAccountEventDestinationsOutput: StaticStructureSchema;
|
|
60
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
61
|
+
export declare var S3File: StaticStructureSchema;
|
|
62
|
+
export declare var S3PresignedUrl: StaticStructureSchema;
|
|
63
|
+
export declare var SendWhatsAppMessageInput: StaticStructureSchema;
|
|
64
|
+
export declare var SendWhatsAppMessageOutput: StaticStructureSchema;
|
|
65
|
+
export declare var Tag: StaticStructureSchema;
|
|
66
|
+
export declare var TagResourceInput: StaticStructureSchema;
|
|
67
|
+
export declare var TagResourceOutput: StaticStructureSchema;
|
|
68
|
+
export declare var TemplateSummary: StaticStructureSchema;
|
|
69
|
+
export declare var ThrottledRequestException: StaticErrorSchema;
|
|
70
|
+
export declare var UntagResourceInput: StaticStructureSchema;
|
|
71
|
+
export declare var UntagResourceOutput: StaticStructureSchema;
|
|
72
|
+
export declare var UpdateWhatsAppMessageTemplateInput: StaticStructureSchema;
|
|
73
|
+
export declare var UpdateWhatsAppMessageTemplateOutput: StaticStructureSchema;
|
|
74
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
75
|
+
export declare var WabaPhoneNumberSetupFinalization: StaticStructureSchema;
|
|
76
|
+
export declare var WabaSetupFinalization: StaticStructureSchema;
|
|
77
|
+
export declare var WhatsAppBusinessAccountEventDestination: StaticStructureSchema;
|
|
78
|
+
export declare var WhatsAppPhoneNumberDetail: StaticStructureSchema;
|
|
79
|
+
export declare var WhatsAppPhoneNumberSummary: StaticStructureSchema;
|
|
80
|
+
export declare var WhatsAppSetupFinalization: StaticStructureSchema;
|
|
81
|
+
export declare var WhatsAppSignupCallback: StaticStructureSchema;
|
|
82
|
+
export declare var WhatsAppSignupCallbackResult: StaticStructureSchema;
|
|
83
|
+
export declare var __Unit: "unit";
|
|
84
|
+
export declare var SocialMessagingServiceException: StaticErrorSchema;
|
|
85
|
+
export declare var LinkedWhatsAppBusinessAccountSummaryList: StaticListSchema;
|
|
86
|
+
export declare var MetaIndustries: number;
|
|
87
|
+
export declare var MetaLibraryTemplateButtonInputs: StaticListSchema;
|
|
88
|
+
export declare var MetaLibraryTemplateButtonList: StaticListSchema;
|
|
89
|
+
export declare var MetaLibraryTemplatesList: StaticListSchema;
|
|
90
|
+
export declare var StringList: number;
|
|
91
|
+
export declare var SupportedApps: StaticListSchema;
|
|
92
|
+
export declare var TagList: StaticListSchema;
|
|
93
|
+
export declare var TemplateSummaryList: StaticListSchema;
|
|
94
|
+
export declare var WabaPhoneNumberSetupFinalizationList: StaticListSchema;
|
|
95
|
+
export declare var WhatsAppBusinessAccountEventDestinations: StaticListSchema;
|
|
96
|
+
export declare var WhatsAppPhoneNumberDetailList: StaticListSchema;
|
|
97
|
+
export declare var WhatsAppPhoneNumberSummaryList: StaticListSchema;
|
|
98
|
+
export declare var Filter: number;
|
|
99
|
+
export declare var Headers: number;
|
|
100
|
+
export declare var LinkedAccountWithIncompleteSetup: StaticMapSchema;
|
|
101
|
+
export declare var MetaUrlWithSuffixExample: number;
|
|
102
|
+
export declare var SupportedApp: number;
|
|
103
|
+
export declare var AssociateWhatsAppBusinessAccount: StaticOperationSchema;
|
|
104
|
+
export declare var CreateWhatsAppMessageTemplate: StaticOperationSchema;
|
|
105
|
+
export declare var CreateWhatsAppMessageTemplateFromLibrary: StaticOperationSchema;
|
|
106
|
+
export declare var CreateWhatsAppMessageTemplateMedia: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteWhatsAppMessageMedia: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteWhatsAppMessageTemplate: StaticOperationSchema;
|
|
109
|
+
export declare var DisassociateWhatsAppBusinessAccount: StaticOperationSchema;
|
|
110
|
+
export declare var GetLinkedWhatsAppBusinessAccount: StaticOperationSchema;
|
|
111
|
+
export declare var GetLinkedWhatsAppBusinessAccountPhoneNumber: StaticOperationSchema;
|
|
112
|
+
export declare var GetWhatsAppMessageMedia: StaticOperationSchema;
|
|
113
|
+
export declare var GetWhatsAppMessageTemplate: StaticOperationSchema;
|
|
114
|
+
export declare var ListLinkedWhatsAppBusinessAccounts: StaticOperationSchema;
|
|
115
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
116
|
+
export declare var ListWhatsAppMessageTemplates: StaticOperationSchema;
|
|
117
|
+
export declare var ListWhatsAppTemplateLibrary: StaticOperationSchema;
|
|
118
|
+
export declare var PostWhatsAppMessageMedia: StaticOperationSchema;
|
|
119
|
+
export declare var PutWhatsAppBusinessAccountEventDestinations: StaticOperationSchema;
|
|
120
|
+
export declare var SendWhatsAppMessage: StaticOperationSchema;
|
|
121
|
+
export declare var TagResource: StaticOperationSchema;
|
|
122
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
123
|
+
export declare var UpdateWhatsAppMessageTemplate: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-socialmessaging",
|
|
3
3
|
"description": "AWS SDK for JavaScript Socialmessaging Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-socialmessaging",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|