@aws-sdk/client-socialmessaging 3.699.0 → 3.704.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.
@@ -59,6 +59,7 @@ declare const AssociateWhatsAppBusinessAccountCommand_base: {
59
59
  * eventDestinations: [ // WhatsAppBusinessAccountEventDestinations
60
60
  * { // WhatsAppBusinessAccountEventDestination
61
61
  * eventDestinationArn: "STRING_VALUE", // required
62
+ * roleArn: "STRING_VALUE",
62
63
  * },
63
64
  * ],
64
65
  * tags: [
@@ -90,6 +91,7 @@ declare const AssociateWhatsAppBusinessAccountCommand_base: {
90
91
  * // qualityRating: "STRING_VALUE", // required
91
92
  * // },
92
93
  * // ],
94
+ * // wabaId: "STRING_VALUE",
93
95
  * // },
94
96
  * // },
95
97
  * // },
@@ -50,6 +50,7 @@ declare const GetLinkedWhatsAppBusinessAccountCommand_base: {
50
50
  * // eventDestinations: [ // WhatsAppBusinessAccountEventDestinations // required
51
51
  * // { // WhatsAppBusinessAccountEventDestination
52
52
  * // eventDestinationArn: "STRING_VALUE", // required
53
+ * // roleArn: "STRING_VALUE",
53
54
  * // },
54
55
  * // ],
55
56
  * // phoneNumbers: [ // WhatsAppPhoneNumberSummaryList // required
@@ -52,6 +52,7 @@ declare const ListLinkedWhatsAppBusinessAccountsCommand_base: {
52
52
  * // eventDestinations: [ // WhatsAppBusinessAccountEventDestinations // required
53
53
  * // { // WhatsAppBusinessAccountEventDestination
54
54
  * // eventDestinationArn: "STRING_VALUE", // required
55
+ * // roleArn: "STRING_VALUE",
55
56
  * // },
56
57
  * // ],
57
58
  * // },
@@ -39,6 +39,7 @@ declare const PutWhatsAppBusinessAccountEventDestinationsCommand_base: {
39
39
  * eventDestinations: [ // WhatsAppBusinessAccountEventDestinations // required
40
40
  * { // WhatsAppBusinessAccountEventDestination
41
41
  * eventDestinationArn: "STRING_VALUE", // required
42
+ * roleArn: "STRING_VALUE",
42
43
  * },
43
44
  * ],
44
45
  * };
@@ -163,6 +163,12 @@ export interface WhatsAppBusinessAccountEventDestination {
163
163
  * @public
164
164
  */
165
165
  eventDestinationArn: string | undefined;
166
+ /**
167
+ * <p>The Amazon Resource Name (ARN) of an Identity and Access Management role
168
+ * that is able to import phone numbers and write events.</p>
169
+ * @public
170
+ */
171
+ roleArn?: string | undefined;
166
172
  }
167
173
  /**
168
174
  * <p>The registration details for a linked WhatsApp Business Account.</p>
@@ -311,6 +317,11 @@ export interface LinkedWhatsAppBusinessAccountIdMetaData {
311
317
  * @public
312
318
  */
313
319
  unregisteredWhatsAppPhoneNumbers?: WhatsAppPhoneNumberDetail[] | undefined;
320
+ /**
321
+ * <p>The Amazon Resource Name (ARN) of the WhatsApp Business Account ID.</p>
322
+ * @public
323
+ */
324
+ wabaId?: string | undefined;
314
325
  }
315
326
  /**
316
327
  * <p>Contains the results of WhatsAppSignupCallback.</p>
@@ -26,6 +26,7 @@ export interface WabaPhoneNumberSetupFinalization {
26
26
  }
27
27
  export interface WhatsAppBusinessAccountEventDestination {
28
28
  eventDestinationArn: string | undefined;
29
+ roleArn?: string | undefined;
29
30
  }
30
31
  export interface WabaSetupFinalization {
31
32
  id?: string | undefined;
@@ -64,6 +65,7 @@ export interface LinkedWhatsAppBusinessAccountIdMetaData {
64
65
  accountName?: string | undefined;
65
66
  registrationStatus?: RegistrationStatus | undefined;
66
67
  unregisteredWhatsAppPhoneNumbers?: WhatsAppPhoneNumberDetail[] | undefined;
68
+ wabaId?: string | undefined;
67
69
  }
68
70
  export interface WhatsAppSignupCallbackResult {
69
71
  associateInProgressToken?: string | undefined;
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.699.0",
4
+ "version": "3.704.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",