@aws-sdk/client-pinpoint-sms-voice-v2 3.1075.0 → 3.1077.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/README.md +21 -0
- package/dist-cjs/index.js +3634 -15
- package/dist-es/PinpointSMSVoiceV2.js +6 -0
- package/dist-es/commands/DeleteRcsMessageSpendLimitOverrideCommand.js +16 -0
- package/dist-es/commands/SendRcsMessageCommand.js +16 -0
- package/dist-es/commands/SetRcsMessageSpendLimitOverrideCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +15 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +221 -14
- package/dist-types/PinpointSMSVoiceV2.d.ts +22 -0
- package/dist-types/PinpointSMSVoiceV2Client.d.ts +5 -2
- package/dist-types/commands/CreateRcsAgentCommand.d.ts +6 -0
- package/dist-types/commands/DeleteRcsAgentCommand.d.ts +3 -0
- package/dist-types/commands/DeleteRcsMessageSpendLimitOverrideCommand.d.ts +86 -0
- package/dist-types/commands/DescribeRcsAgentsCommand.d.ts +6 -0
- package/dist-types/commands/SendRcsMessageCommand.d.ts +235 -0
- package/dist-types/commands/SetRcsMessageSpendLimitOverrideCommand.d.ts +88 -0
- package/dist-types/commands/UpdateRcsAgentCommand.d.ts +12 -0
- package/dist-types/commands/VerifyDestinationNumberCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +739 -52
- package/dist-types/models/models_1.d.ts +46 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +28 -1
- package/dist-types/ts3.4/PinpointSMSVoiceV2.d.ts +58 -0
- package/dist-types/ts3.4/PinpointSMSVoiceV2Client.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteRcsMessageSpendLimitOverrideCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/SendRcsMessageCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/SetRcsMessageSpendLimitOverrideCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/VerifyDestinationNumberCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +17 -0
- package/dist-types/ts3.4/models/models_0.d.ts +260 -11
- package/dist-types/ts3.4/models/models_1.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +28 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/PinpointSMSVoiceV2ServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -123
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2956
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { VerificationStatus } from "./enums";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface VerifyDestinationNumberRequest {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The unique identifier for the verififed destination phone number.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
VerifiedDestinationNumberId: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>The verification code that was received by the verified destination phone number.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
VerificationCode: string | undefined;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface VerifyDestinationNumberResult {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The Amazon Resource Name (ARN) for the verified destination phone number.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
VerifiedDestinationNumberArn: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The unique identifier for the verified destination phone number.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
VerifiedDestinationNumberId: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The phone number in E.164 format.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
DestinationPhoneNumber: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The status for being able to send messages to the phone number.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
Status: VerificationStatus | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The time when the destination phone number was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
CreatedTimestamp: Date | undefined;
|
|
46
|
+
}
|
|
@@ -13,8 +13,7 @@ export declare const getRuntimeConfig: (config: PinpointSMSVoiceV2ClientConfig)
|
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
|
|
17
|
-
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
17
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
18
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
19
|
cacheMiddleware?: boolean | undefined;
|
|
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: PinpointSMSVoiceV2ClientConfig)
|
|
|
24
23
|
[setting: string]: unknown;
|
|
25
24
|
};
|
|
26
25
|
apiVersion: string;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
29
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -14,8 +14,7 @@ export declare const getRuntimeConfig: (config: PinpointSMSVoiceV2ClientConfig)
|
|
|
14
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
15
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
16
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
-
|
|
18
|
-
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
20
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: PinpointSMSVoiceV2ClientConfig)
|
|
|
26
25
|
[setting: string]: unknown;
|
|
27
26
|
};
|
|
28
27
|
apiVersion: string;
|
|
28
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
29
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
30
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -4,7 +4,6 @@ import type { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: PinpointSMSVoiceV2ClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
8
7
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
8
|
cacheMiddleware?: boolean;
|
|
10
9
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
@@ -13,9 +12,10 @@ export declare const getRuntimeConfig: (config: PinpointSMSVoiceV2ClientConfig)
|
|
|
13
12
|
[setting: string]: unknown;
|
|
14
13
|
};
|
|
15
14
|
apiVersion: string;
|
|
15
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
16
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: import("
|
|
18
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
19
|
base64Decoder: import("@smithy/types").Decoder;
|
|
20
20
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: PinpointSMSVoiceV2ClientConfig)
|
|
|
21
21
|
defaultNamespace?: string;
|
|
22
22
|
};
|
|
23
23
|
serviceId: string;
|
|
24
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
27
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
3
|
export declare var PinpointSMSVoiceV2ServiceException$: StaticErrorSchema;
|
|
4
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
5
|
export declare var ConflictException$: StaticErrorSchema;
|
|
@@ -82,6 +82,8 @@ export declare var DeleteProtectConfigurationRuleSetNumberOverrideRequest$: Stat
|
|
|
82
82
|
export declare var DeleteProtectConfigurationRuleSetNumberOverrideResult$: StaticStructureSchema;
|
|
83
83
|
export declare var DeleteRcsAgentRequest$: StaticStructureSchema;
|
|
84
84
|
export declare var DeleteRcsAgentResult$: StaticStructureSchema;
|
|
85
|
+
export declare var DeleteRcsMessageSpendLimitOverrideRequest$: StaticStructureSchema;
|
|
86
|
+
export declare var DeleteRcsMessageSpendLimitOverrideResult$: StaticStructureSchema;
|
|
85
87
|
export declare var DeleteRegistrationAttachmentRequest$: StaticStructureSchema;
|
|
86
88
|
export declare var DeleteRegistrationAttachmentResult$: StaticStructureSchema;
|
|
87
89
|
export declare var DeleteRegistrationFieldValueRequest$: StaticStructureSchema;
|
|
@@ -199,6 +201,22 @@ export declare var PutResourcePolicyRequest$: StaticStructureSchema;
|
|
|
199
201
|
export declare var PutResourcePolicyResult$: StaticStructureSchema;
|
|
200
202
|
export declare var RcsAgentFilter$: StaticStructureSchema;
|
|
201
203
|
export declare var RcsAgentInformation$: StaticStructureSchema;
|
|
204
|
+
export declare var RcsCardContent$: StaticStructureSchema;
|
|
205
|
+
export declare var RcsCardMedia$: StaticStructureSchema;
|
|
206
|
+
export declare var RcsCarousel$: StaticStructureSchema;
|
|
207
|
+
export declare var RcsCarouselCardContent$: StaticStructureSchema;
|
|
208
|
+
export declare var RcsCarouselCardMedia$: StaticStructureSchema;
|
|
209
|
+
export declare var RcsCreateCalendarEventAction$: StaticStructureSchema;
|
|
210
|
+
export declare var RcsDialPhoneAction$: StaticStructureSchema;
|
|
211
|
+
export declare var RcsFallbackConfiguration$: StaticStructureSchema;
|
|
212
|
+
export declare var RcsFileMessage$: StaticStructureSchema;
|
|
213
|
+
export declare var RcsMessageContent$: StaticStructureSchema;
|
|
214
|
+
export declare var RcsOpenUrlAction$: StaticStructureSchema;
|
|
215
|
+
export declare var RcsReplyAction$: StaticStructureSchema;
|
|
216
|
+
export declare var RcsRequestLocationAction$: StaticStructureSchema;
|
|
217
|
+
export declare var RcsShowLocationAction$: StaticStructureSchema;
|
|
218
|
+
export declare var RcsStandaloneCard$: StaticStructureSchema;
|
|
219
|
+
export declare var RcsTextMessage$: StaticStructureSchema;
|
|
202
220
|
export declare var RegistrationAssociationFilter$: StaticStructureSchema;
|
|
203
221
|
export declare var RegistrationAssociationMetadata$: StaticStructureSchema;
|
|
204
222
|
export declare var RegistrationAttachmentFilter$: StaticStructureSchema;
|
|
@@ -238,6 +256,8 @@ export declare var SendNotifyTextMessageRequest$: StaticStructureSchema;
|
|
|
238
256
|
export declare var SendNotifyTextMessageResult$: StaticStructureSchema;
|
|
239
257
|
export declare var SendNotifyVoiceMessageRequest$: StaticStructureSchema;
|
|
240
258
|
export declare var SendNotifyVoiceMessageResult$: StaticStructureSchema;
|
|
259
|
+
export declare var SendRcsMessageRequest$: StaticStructureSchema;
|
|
260
|
+
export declare var SendRcsMessageResult$: StaticStructureSchema;
|
|
241
261
|
export declare var SendTextMessageRequest$: StaticStructureSchema;
|
|
242
262
|
export declare var SendTextMessageResult$: StaticStructureSchema;
|
|
243
263
|
export declare var SendVoiceMessageRequest$: StaticStructureSchema;
|
|
@@ -254,6 +274,8 @@ export declare var SetMediaMessageSpendLimitOverrideRequest$: StaticStructureSch
|
|
|
254
274
|
export declare var SetMediaMessageSpendLimitOverrideResult$: StaticStructureSchema;
|
|
255
275
|
export declare var SetNotifyMessageSpendLimitOverrideRequest$: StaticStructureSchema;
|
|
256
276
|
export declare var SetNotifyMessageSpendLimitOverrideResult$: StaticStructureSchema;
|
|
277
|
+
export declare var SetRcsMessageSpendLimitOverrideRequest$: StaticStructureSchema;
|
|
278
|
+
export declare var SetRcsMessageSpendLimitOverrideResult$: StaticStructureSchema;
|
|
257
279
|
export declare var SetTextMessageSpendLimitOverrideRequest$: StaticStructureSchema;
|
|
258
280
|
export declare var SetTextMessageSpendLimitOverrideResult$: StaticStructureSchema;
|
|
259
281
|
export declare var SetVoiceMessageSpendLimitOverrideRequest$: StaticStructureSchema;
|
|
@@ -292,6 +314,8 @@ export declare var VerifiedDestinationNumberFilter$: StaticStructureSchema;
|
|
|
292
314
|
export declare var VerifiedDestinationNumberInformation$: StaticStructureSchema;
|
|
293
315
|
export declare var VerifyDestinationNumberRequest$: StaticStructureSchema;
|
|
294
316
|
export declare var VerifyDestinationNumberResult$: StaticStructureSchema;
|
|
317
|
+
export declare var RcsContent$: StaticUnionSchema;
|
|
318
|
+
export declare var RcsSuggestedAction$: StaticUnionSchema;
|
|
295
319
|
export declare var AssociateOriginationIdentity$: StaticOperationSchema;
|
|
296
320
|
export declare var AssociateProtectConfiguration$: StaticOperationSchema;
|
|
297
321
|
export declare var CarrierLookup$: StaticOperationSchema;
|
|
@@ -322,6 +346,7 @@ export declare var DeletePool$: StaticOperationSchema;
|
|
|
322
346
|
export declare var DeleteProtectConfiguration$: StaticOperationSchema;
|
|
323
347
|
export declare var DeleteProtectConfigurationRuleSetNumberOverride$: StaticOperationSchema;
|
|
324
348
|
export declare var DeleteRcsAgent$: StaticOperationSchema;
|
|
349
|
+
export declare var DeleteRcsMessageSpendLimitOverride$: StaticOperationSchema;
|
|
325
350
|
export declare var DeleteRegistration$: StaticOperationSchema;
|
|
326
351
|
export declare var DeleteRegistrationAttachment$: StaticOperationSchema;
|
|
327
352
|
export declare var DeleteRegistrationFieldValue$: StaticOperationSchema;
|
|
@@ -376,6 +401,7 @@ export declare var SendDestinationNumberVerificationCode$: StaticOperationSchema
|
|
|
376
401
|
export declare var SendMediaMessage$: StaticOperationSchema;
|
|
377
402
|
export declare var SendNotifyTextMessage$: StaticOperationSchema;
|
|
378
403
|
export declare var SendNotifyVoiceMessage$: StaticOperationSchema;
|
|
404
|
+
export declare var SendRcsMessage$: StaticOperationSchema;
|
|
379
405
|
export declare var SendTextMessage$: StaticOperationSchema;
|
|
380
406
|
export declare var SendVoiceMessage$: StaticOperationSchema;
|
|
381
407
|
export declare var SetAccountDefaultProtectConfiguration$: StaticOperationSchema;
|
|
@@ -384,6 +410,7 @@ export declare var SetDefaultMessageType$: StaticOperationSchema;
|
|
|
384
410
|
export declare var SetDefaultSenderId$: StaticOperationSchema;
|
|
385
411
|
export declare var SetMediaMessageSpendLimitOverride$: StaticOperationSchema;
|
|
386
412
|
export declare var SetNotifyMessageSpendLimitOverride$: StaticOperationSchema;
|
|
413
|
+
export declare var SetRcsMessageSpendLimitOverride$: StaticOperationSchema;
|
|
387
414
|
export declare var SetTextMessageSpendLimitOverride$: StaticOperationSchema;
|
|
388
415
|
export declare var SetVoiceMessageSpendLimitOverride$: StaticOperationSchema;
|
|
389
416
|
export declare var SubmitRegistrationVersion$: StaticOperationSchema;
|
|
@@ -123,6 +123,10 @@ import {
|
|
|
123
123
|
DeleteRcsAgentCommandInput,
|
|
124
124
|
DeleteRcsAgentCommandOutput,
|
|
125
125
|
} from "./commands/DeleteRcsAgentCommand";
|
|
126
|
+
import {
|
|
127
|
+
DeleteRcsMessageSpendLimitOverrideCommandInput,
|
|
128
|
+
DeleteRcsMessageSpendLimitOverrideCommandOutput,
|
|
129
|
+
} from "./commands/DeleteRcsMessageSpendLimitOverrideCommand";
|
|
126
130
|
import {
|
|
127
131
|
DeleteRegistrationAttachmentCommandInput,
|
|
128
132
|
DeleteRegistrationAttachmentCommandOutput,
|
|
@@ -339,6 +343,10 @@ import {
|
|
|
339
343
|
SendNotifyVoiceMessageCommandInput,
|
|
340
344
|
SendNotifyVoiceMessageCommandOutput,
|
|
341
345
|
} from "./commands/SendNotifyVoiceMessageCommand";
|
|
346
|
+
import {
|
|
347
|
+
SendRcsMessageCommandInput,
|
|
348
|
+
SendRcsMessageCommandOutput,
|
|
349
|
+
} from "./commands/SendRcsMessageCommand";
|
|
342
350
|
import {
|
|
343
351
|
SendTextMessageCommandInput,
|
|
344
352
|
SendTextMessageCommandOutput,
|
|
@@ -371,6 +379,10 @@ import {
|
|
|
371
379
|
SetNotifyMessageSpendLimitOverrideCommandInput,
|
|
372
380
|
SetNotifyMessageSpendLimitOverrideCommandOutput,
|
|
373
381
|
} from "./commands/SetNotifyMessageSpendLimitOverrideCommand";
|
|
382
|
+
import {
|
|
383
|
+
SetRcsMessageSpendLimitOverrideCommandInput,
|
|
384
|
+
SetRcsMessageSpendLimitOverrideCommandOutput,
|
|
385
|
+
} from "./commands/SetRcsMessageSpendLimitOverrideCommand";
|
|
374
386
|
import {
|
|
375
387
|
SetTextMessageSpendLimitOverrideCommandInput,
|
|
376
388
|
SetTextMessageSpendLimitOverrideCommandOutput,
|
|
@@ -849,6 +861,26 @@ export interface PinpointSMSVoiceV2 {
|
|
|
849
861
|
options: __HttpHandlerOptions,
|
|
850
862
|
cb: (err: any, data?: DeleteRcsAgentCommandOutput) => void
|
|
851
863
|
): void;
|
|
864
|
+
deleteRcsMessageSpendLimitOverride(): Promise<DeleteRcsMessageSpendLimitOverrideCommandOutput>;
|
|
865
|
+
deleteRcsMessageSpendLimitOverride(
|
|
866
|
+
args: DeleteRcsMessageSpendLimitOverrideCommandInput,
|
|
867
|
+
options?: __HttpHandlerOptions
|
|
868
|
+
): Promise<DeleteRcsMessageSpendLimitOverrideCommandOutput>;
|
|
869
|
+
deleteRcsMessageSpendLimitOverride(
|
|
870
|
+
args: DeleteRcsMessageSpendLimitOverrideCommandInput,
|
|
871
|
+
cb: (
|
|
872
|
+
err: any,
|
|
873
|
+
data?: DeleteRcsMessageSpendLimitOverrideCommandOutput
|
|
874
|
+
) => void
|
|
875
|
+
): void;
|
|
876
|
+
deleteRcsMessageSpendLimitOverride(
|
|
877
|
+
args: DeleteRcsMessageSpendLimitOverrideCommandInput,
|
|
878
|
+
options: __HttpHandlerOptions,
|
|
879
|
+
cb: (
|
|
880
|
+
err: any,
|
|
881
|
+
data?: DeleteRcsMessageSpendLimitOverrideCommandOutput
|
|
882
|
+
) => void
|
|
883
|
+
): void;
|
|
852
884
|
deleteRegistration(
|
|
853
885
|
args: DeleteRegistrationCommandInput,
|
|
854
886
|
options?: __HttpHandlerOptions
|
|
@@ -1636,6 +1668,19 @@ export interface PinpointSMSVoiceV2 {
|
|
|
1636
1668
|
options: __HttpHandlerOptions,
|
|
1637
1669
|
cb: (err: any, data?: SendNotifyVoiceMessageCommandOutput) => void
|
|
1638
1670
|
): void;
|
|
1671
|
+
sendRcsMessage(
|
|
1672
|
+
args: SendRcsMessageCommandInput,
|
|
1673
|
+
options?: __HttpHandlerOptions
|
|
1674
|
+
): Promise<SendRcsMessageCommandOutput>;
|
|
1675
|
+
sendRcsMessage(
|
|
1676
|
+
args: SendRcsMessageCommandInput,
|
|
1677
|
+
cb: (err: any, data?: SendRcsMessageCommandOutput) => void
|
|
1678
|
+
): void;
|
|
1679
|
+
sendRcsMessage(
|
|
1680
|
+
args: SendRcsMessageCommandInput,
|
|
1681
|
+
options: __HttpHandlerOptions,
|
|
1682
|
+
cb: (err: any, data?: SendRcsMessageCommandOutput) => void
|
|
1683
|
+
): void;
|
|
1639
1684
|
sendTextMessage(
|
|
1640
1685
|
args: SendTextMessageCommandInput,
|
|
1641
1686
|
options?: __HttpHandlerOptions
|
|
@@ -1758,6 +1803,19 @@ export interface PinpointSMSVoiceV2 {
|
|
|
1758
1803
|
data?: SetNotifyMessageSpendLimitOverrideCommandOutput
|
|
1759
1804
|
) => void
|
|
1760
1805
|
): void;
|
|
1806
|
+
setRcsMessageSpendLimitOverride(
|
|
1807
|
+
args: SetRcsMessageSpendLimitOverrideCommandInput,
|
|
1808
|
+
options?: __HttpHandlerOptions
|
|
1809
|
+
): Promise<SetRcsMessageSpendLimitOverrideCommandOutput>;
|
|
1810
|
+
setRcsMessageSpendLimitOverride(
|
|
1811
|
+
args: SetRcsMessageSpendLimitOverrideCommandInput,
|
|
1812
|
+
cb: (err: any, data?: SetRcsMessageSpendLimitOverrideCommandOutput) => void
|
|
1813
|
+
): void;
|
|
1814
|
+
setRcsMessageSpendLimitOverride(
|
|
1815
|
+
args: SetRcsMessageSpendLimitOverrideCommandInput,
|
|
1816
|
+
options: __HttpHandlerOptions,
|
|
1817
|
+
cb: (err: any, data?: SetRcsMessageSpendLimitOverrideCommandOutput) => void
|
|
1818
|
+
): void;
|
|
1761
1819
|
setTextMessageSpendLimitOverride(
|
|
1762
1820
|
args: SetTextMessageSpendLimitOverrideCommandInput,
|
|
1763
1821
|
options?: __HttpHandlerOptions
|
|
@@ -156,6 +156,10 @@ import {
|
|
|
156
156
|
DeleteRcsAgentCommandInput,
|
|
157
157
|
DeleteRcsAgentCommandOutput,
|
|
158
158
|
} from "./commands/DeleteRcsAgentCommand";
|
|
159
|
+
import {
|
|
160
|
+
DeleteRcsMessageSpendLimitOverrideCommandInput,
|
|
161
|
+
DeleteRcsMessageSpendLimitOverrideCommandOutput,
|
|
162
|
+
} from "./commands/DeleteRcsMessageSpendLimitOverrideCommand";
|
|
159
163
|
import {
|
|
160
164
|
DeleteRegistrationAttachmentCommandInput,
|
|
161
165
|
DeleteRegistrationAttachmentCommandOutput,
|
|
@@ -372,6 +376,10 @@ import {
|
|
|
372
376
|
SendNotifyVoiceMessageCommandInput,
|
|
373
377
|
SendNotifyVoiceMessageCommandOutput,
|
|
374
378
|
} from "./commands/SendNotifyVoiceMessageCommand";
|
|
379
|
+
import {
|
|
380
|
+
SendRcsMessageCommandInput,
|
|
381
|
+
SendRcsMessageCommandOutput,
|
|
382
|
+
} from "./commands/SendRcsMessageCommand";
|
|
375
383
|
import {
|
|
376
384
|
SendTextMessageCommandInput,
|
|
377
385
|
SendTextMessageCommandOutput,
|
|
@@ -404,6 +412,10 @@ import {
|
|
|
404
412
|
SetNotifyMessageSpendLimitOverrideCommandInput,
|
|
405
413
|
SetNotifyMessageSpendLimitOverrideCommandOutput,
|
|
406
414
|
} from "./commands/SetNotifyMessageSpendLimitOverrideCommand";
|
|
415
|
+
import {
|
|
416
|
+
SetRcsMessageSpendLimitOverrideCommandInput,
|
|
417
|
+
SetRcsMessageSpendLimitOverrideCommandOutput,
|
|
418
|
+
} from "./commands/SetRcsMessageSpendLimitOverrideCommand";
|
|
407
419
|
import {
|
|
408
420
|
SetTextMessageSpendLimitOverrideCommandInput,
|
|
409
421
|
SetTextMessageSpendLimitOverrideCommandOutput,
|
|
@@ -498,6 +510,7 @@ export type ServiceInputTypes =
|
|
|
498
510
|
| DeleteProtectConfigurationCommandInput
|
|
499
511
|
| DeleteProtectConfigurationRuleSetNumberOverrideCommandInput
|
|
500
512
|
| DeleteRcsAgentCommandInput
|
|
513
|
+
| DeleteRcsMessageSpendLimitOverrideCommandInput
|
|
501
514
|
| DeleteRegistrationAttachmentCommandInput
|
|
502
515
|
| DeleteRegistrationCommandInput
|
|
503
516
|
| DeleteRegistrationFieldValueCommandInput
|
|
@@ -552,6 +565,7 @@ export type ServiceInputTypes =
|
|
|
552
565
|
| SendMediaMessageCommandInput
|
|
553
566
|
| SendNotifyTextMessageCommandInput
|
|
554
567
|
| SendNotifyVoiceMessageCommandInput
|
|
568
|
+
| SendRcsMessageCommandInput
|
|
555
569
|
| SendTextMessageCommandInput
|
|
556
570
|
| SendVoiceMessageCommandInput
|
|
557
571
|
| SetAccountDefaultProtectConfigurationCommandInput
|
|
@@ -560,6 +574,7 @@ export type ServiceInputTypes =
|
|
|
560
574
|
| SetDefaultSenderIdCommandInput
|
|
561
575
|
| SetMediaMessageSpendLimitOverrideCommandInput
|
|
562
576
|
| SetNotifyMessageSpendLimitOverrideCommandInput
|
|
577
|
+
| SetRcsMessageSpendLimitOverrideCommandInput
|
|
563
578
|
| SetTextMessageSpendLimitOverrideCommandInput
|
|
564
579
|
| SetVoiceMessageSpendLimitOverrideCommandInput
|
|
565
580
|
| SubmitRegistrationVersionCommandInput
|
|
@@ -605,6 +620,7 @@ export type ServiceOutputTypes =
|
|
|
605
620
|
| DeleteProtectConfigurationCommandOutput
|
|
606
621
|
| DeleteProtectConfigurationRuleSetNumberOverrideCommandOutput
|
|
607
622
|
| DeleteRcsAgentCommandOutput
|
|
623
|
+
| DeleteRcsMessageSpendLimitOverrideCommandOutput
|
|
608
624
|
| DeleteRegistrationAttachmentCommandOutput
|
|
609
625
|
| DeleteRegistrationCommandOutput
|
|
610
626
|
| DeleteRegistrationFieldValueCommandOutput
|
|
@@ -659,6 +675,7 @@ export type ServiceOutputTypes =
|
|
|
659
675
|
| SendMediaMessageCommandOutput
|
|
660
676
|
| SendNotifyTextMessageCommandOutput
|
|
661
677
|
| SendNotifyVoiceMessageCommandOutput
|
|
678
|
+
| SendRcsMessageCommandOutput
|
|
662
679
|
| SendTextMessageCommandOutput
|
|
663
680
|
| SendVoiceMessageCommandOutput
|
|
664
681
|
| SetAccountDefaultProtectConfigurationCommandOutput
|
|
@@ -667,6 +684,7 @@ export type ServiceOutputTypes =
|
|
|
667
684
|
| SetDefaultSenderIdCommandOutput
|
|
668
685
|
| SetMediaMessageSpendLimitOverrideCommandOutput
|
|
669
686
|
| SetNotifyMessageSpendLimitOverrideCommandOutput
|
|
687
|
+
| SetRcsMessageSpendLimitOverrideCommandOutput
|
|
670
688
|
| SetTextMessageSpendLimitOverrideCommandOutput
|
|
671
689
|
| SetVoiceMessageSpendLimitOverrideCommandOutput
|
|
672
690
|
| SubmitRegistrationVersionCommandOutput
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteRcsMessageSpendLimitOverrideRequest,
|
|
5
|
+
DeleteRcsMessageSpendLimitOverrideResult,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PinpointSMSVoiceV2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteRcsMessageSpendLimitOverrideCommandInput
|
|
15
|
+
extends DeleteRcsMessageSpendLimitOverrideRequest {}
|
|
16
|
+
export interface DeleteRcsMessageSpendLimitOverrideCommandOutput
|
|
17
|
+
extends DeleteRcsMessageSpendLimitOverrideResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteRcsMessageSpendLimitOverrideCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteRcsMessageSpendLimitOverrideCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteRcsMessageSpendLimitOverrideCommandInput,
|
|
24
|
+
DeleteRcsMessageSpendLimitOverrideCommandOutput,
|
|
25
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DeleteRcsMessageSpendLimitOverrideCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteRcsMessageSpendLimitOverrideCommandInput,
|
|
33
|
+
DeleteRcsMessageSpendLimitOverrideCommandOutput,
|
|
34
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteRcsMessageSpendLimitOverrideCommand extends DeleteRcsMessageSpendLimitOverrideCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: {};
|
|
46
|
+
output: DeleteRcsMessageSpendLimitOverrideResult;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteRcsMessageSpendLimitOverrideCommandInput;
|
|
50
|
+
output: DeleteRcsMessageSpendLimitOverrideCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
SendRcsMessageRequest,
|
|
5
|
+
SendRcsMessageResult,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PinpointSMSVoiceV2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface SendRcsMessageCommandInput extends SendRcsMessageRequest {}
|
|
15
|
+
export interface SendRcsMessageCommandOutput
|
|
16
|
+
extends SendRcsMessageResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const SendRcsMessageCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: SendRcsMessageCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
SendRcsMessageCommandInput,
|
|
23
|
+
SendRcsMessageCommandOutput,
|
|
24
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: SendRcsMessageCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
SendRcsMessageCommandInput,
|
|
32
|
+
SendRcsMessageCommandOutput,
|
|
33
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class SendRcsMessageCommand extends SendRcsMessageCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: SendRcsMessageRequest;
|
|
45
|
+
output: SendRcsMessageResult;
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: SendRcsMessageCommandInput;
|
|
49
|
+
output: SendRcsMessageCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
SetRcsMessageSpendLimitOverrideRequest,
|
|
5
|
+
SetRcsMessageSpendLimitOverrideResult,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PinpointSMSVoiceV2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface SetRcsMessageSpendLimitOverrideCommandInput
|
|
15
|
+
extends SetRcsMessageSpendLimitOverrideRequest {}
|
|
16
|
+
export interface SetRcsMessageSpendLimitOverrideCommandOutput
|
|
17
|
+
extends SetRcsMessageSpendLimitOverrideResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const SetRcsMessageSpendLimitOverrideCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: SetRcsMessageSpendLimitOverrideCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
SetRcsMessageSpendLimitOverrideCommandInput,
|
|
24
|
+
SetRcsMessageSpendLimitOverrideCommandOutput,
|
|
25
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: SetRcsMessageSpendLimitOverrideCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
SetRcsMessageSpendLimitOverrideCommandInput,
|
|
33
|
+
SetRcsMessageSpendLimitOverrideCommandOutput,
|
|
34
|
+
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class SetRcsMessageSpendLimitOverrideCommand extends SetRcsMessageSpendLimitOverrideCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: SetRcsMessageSpendLimitOverrideRequest;
|
|
46
|
+
output: SetRcsMessageSpendLimitOverrideResult;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: SetRcsMessageSpendLimitOverrideCommandInput;
|
|
50
|
+
output: SetRcsMessageSpendLimitOverrideCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
VerifyDestinationNumberRequest,
|
|
5
5
|
VerifyDestinationNumberResult,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
PinpointSMSVoiceV2ClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -28,6 +28,7 @@ export * from "./DeletePoolCommand";
|
|
|
28
28
|
export * from "./DeleteProtectConfigurationCommand";
|
|
29
29
|
export * from "./DeleteProtectConfigurationRuleSetNumberOverrideCommand";
|
|
30
30
|
export * from "./DeleteRcsAgentCommand";
|
|
31
|
+
export * from "./DeleteRcsMessageSpendLimitOverrideCommand";
|
|
31
32
|
export * from "./DeleteRegistrationAttachmentCommand";
|
|
32
33
|
export * from "./DeleteRegistrationCommand";
|
|
33
34
|
export * from "./DeleteRegistrationFieldValueCommand";
|
|
@@ -82,6 +83,7 @@ export * from "./SendDestinationNumberVerificationCodeCommand";
|
|
|
82
83
|
export * from "./SendMediaMessageCommand";
|
|
83
84
|
export * from "./SendNotifyTextMessageCommand";
|
|
84
85
|
export * from "./SendNotifyVoiceMessageCommand";
|
|
86
|
+
export * from "./SendRcsMessageCommand";
|
|
85
87
|
export * from "./SendTextMessageCommand";
|
|
86
88
|
export * from "./SendVoiceMessageCommand";
|
|
87
89
|
export * from "./SetAccountDefaultProtectConfigurationCommand";
|
|
@@ -90,6 +92,7 @@ export * from "./SetDefaultMessageTypeCommand";
|
|
|
90
92
|
export * from "./SetDefaultSenderIdCommand";
|
|
91
93
|
export * from "./SetMediaMessageSpendLimitOverrideCommand";
|
|
92
94
|
export * from "./SetNotifyMessageSpendLimitOverrideCommand";
|
|
95
|
+
export * from "./SetRcsMessageSpendLimitOverrideCommand";
|
|
93
96
|
export * from "./SetTextMessageSpendLimitOverrideCommand";
|
|
94
97
|
export * from "./SetVoiceMessageSpendLimitOverrideCommand";
|
|
95
98
|
export * from "./SubmitRegistrationVersionCommand";
|
|
@@ -9,4 +9,5 @@ export * from "./pagination";
|
|
|
9
9
|
export * from "./models/enums";
|
|
10
10
|
export * from "./models/errors";
|
|
11
11
|
export * from "./models/models_0";
|
|
12
|
+
export * from "./models/models_1";
|
|
12
13
|
export { PinpointSMSVoiceV2ServiceException } from "./models/PinpointSMSVoiceV2ServiceException";
|
|
@@ -99,6 +99,7 @@ export declare const ServiceQuotaExceededExceptionReason: {
|
|
|
99
99
|
readonly KEYWORDS_PER_POOL: "KEYWORDS_PER_POOL";
|
|
100
100
|
readonly MONTHLY_SPEND_LIMIT_REACHED_FOR_MEDIA: "MONTHLY_SPEND_LIMIT_REACHED_FOR_MEDIA";
|
|
101
101
|
readonly MONTHLY_SPEND_LIMIT_REACHED_FOR_NOTIFY: "MONTHLY_SPEND_LIMIT_REACHED_FOR_NOTIFY";
|
|
102
|
+
readonly MONTHLY_SPEND_LIMIT_REACHED_FOR_RCS: "MONTHLY_SPEND_LIMIT_REACHED_FOR_RCS";
|
|
102
103
|
readonly MONTHLY_SPEND_LIMIT_REACHED_FOR_TEXT: "MONTHLY_SPEND_LIMIT_REACHED_FOR_TEXT";
|
|
103
104
|
readonly MONTHLY_SPEND_LIMIT_REACHED_FOR_VOICE: "MONTHLY_SPEND_LIMIT_REACHED_FOR_VOICE";
|
|
104
105
|
readonly NOTIFY_CONFIGURATIONS_PER_ACCOUNT: "NOTIFY_CONFIGURATIONS_PER_ACCOUNT";
|
|
@@ -228,6 +229,15 @@ export declare const EventType: {
|
|
|
228
229
|
readonly MEDIA_TTL_EXPIRED: "MEDIA_TTL_EXPIRED";
|
|
229
230
|
readonly MEDIA_UNKNOWN: "MEDIA_UNKNOWN";
|
|
230
231
|
readonly MEDIA_UNREACHABLE: "MEDIA_UNREACHABLE";
|
|
232
|
+
readonly RCS_ALL: "RCS_ALL";
|
|
233
|
+
readonly RCS_DELIVERED: "RCS_DELIVERED";
|
|
234
|
+
readonly RCS_FAILED: "RCS_FAILED";
|
|
235
|
+
readonly RCS_FALLEN_BACK_TO_SMS: "RCS_FALLEN_BACK_TO_SMS";
|
|
236
|
+
readonly RCS_PROTECT_BLOCKED: "RCS_PROTECT_BLOCKED";
|
|
237
|
+
readonly RCS_QUEUED: "RCS_QUEUED";
|
|
238
|
+
readonly RCS_READ: "RCS_READ";
|
|
239
|
+
readonly RCS_SENT: "RCS_SENT";
|
|
240
|
+
readonly RCS_TTL_EXPIRED: "RCS_TTL_EXPIRED";
|
|
231
241
|
readonly TEXT_ALL: "TEXT_ALL";
|
|
232
242
|
readonly TEXT_BLOCKED: "TEXT_BLOCKED";
|
|
233
243
|
readonly TEXT_CARRIER_BLOCKED: "TEXT_CARRIER_BLOCKED";
|
|
@@ -618,6 +628,7 @@ export type SenderIdFilterName =
|
|
|
618
628
|
export declare const SpendLimitName: {
|
|
619
629
|
readonly MEDIA_MESSAGE_MONTHLY_SPEND_LIMIT: "MEDIA_MESSAGE_MONTHLY_SPEND_LIMIT";
|
|
620
630
|
readonly NOTIFY_MESSAGE_MONTHLY_SPEND_LIMIT: "NOTIFY_MESSAGE_MONTHLY_SPEND_LIMIT";
|
|
631
|
+
readonly RCS_MESSAGE_MONTHLY_SPEND_LIMIT: "RCS_MESSAGE_MONTHLY_SPEND_LIMIT";
|
|
621
632
|
readonly TEXT_MESSAGE_MONTHLY_SPEND_LIMIT: "TEXT_MESSAGE_MONTHLY_SPEND_LIMIT";
|
|
622
633
|
readonly VOICE_MESSAGE_MONTHLY_SPEND_LIMIT: "VOICE_MESSAGE_MONTHLY_SPEND_LIMIT";
|
|
623
634
|
};
|
|
@@ -701,6 +712,12 @@ export declare const VerificationChannel: {
|
|
|
701
712
|
};
|
|
702
713
|
export type VerificationChannel =
|
|
703
714
|
(typeof VerificationChannel)[keyof typeof VerificationChannel];
|
|
715
|
+
export declare const RcsFallbackChannel: {
|
|
716
|
+
readonly MMS: "MMS";
|
|
717
|
+
readonly SMS: "SMS";
|
|
718
|
+
};
|
|
719
|
+
export type RcsFallbackChannel =
|
|
720
|
+
(typeof RcsFallbackChannel)[keyof typeof RcsFallbackChannel];
|
|
704
721
|
export declare const VoiceMessageBodyTextType: {
|
|
705
722
|
readonly SSML: "SSML";
|
|
706
723
|
readonly TEXT: "TEXT";
|