@aws-sdk/client-pinpoint 3.987.0 → 3.989.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 +141 -4659
- package/dist-cjs/models/PinpointServiceException.js +12 -0
- package/dist-cjs/models/errors.js +140 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +3841 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +58 -52
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultPinpointHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2016-12-01",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.pinpoint",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2016-12-01",
|
|
30
32
|
serviceTarget: "Pinpoint",
|
|
31
33
|
},
|
|
@@ -989,9 +989,9 @@ const _jN = "jsonName";
|
|
|
989
989
|
const _nt = "next-token";
|
|
990
990
|
const _p = "prefix";
|
|
991
991
|
const _ps = "page-size";
|
|
992
|
-
const _s = "
|
|
992
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.pinpoint";
|
|
993
993
|
const _sD = "segmentDimensions";
|
|
994
|
-
const
|
|
994
|
+
const _se = "server";
|
|
995
995
|
const _st = "start-time";
|
|
996
996
|
const _t = "tags";
|
|
997
997
|
const _tK = "tagKeys";
|
|
@@ -1002,6 +1002,62 @@ const n0 = "com.amazonaws.pinpoint";
|
|
|
1002
1002
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
1003
1003
|
import { BadRequestException, ConflictException, ForbiddenException, InternalServerErrorException, MethodNotAllowedException, NotFoundException, PayloadTooLargeException, TooManyRequestsException, } from "../models/errors";
|
|
1004
1004
|
import { PinpointServiceException } from "../models/PinpointServiceException";
|
|
1005
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1006
|
+
export var PinpointServiceException$ = [-3, _s, "PinpointServiceException", 0, [], []];
|
|
1007
|
+
_s_registry.registerError(PinpointServiceException$, PinpointServiceException);
|
|
1008
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1009
|
+
export var BadRequestException$ = [-3, n0, _BRE,
|
|
1010
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1011
|
+
[_M, _RID],
|
|
1012
|
+
[0, 0]
|
|
1013
|
+
];
|
|
1014
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
1015
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
1016
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1017
|
+
[_M, _RID],
|
|
1018
|
+
[0, 0]
|
|
1019
|
+
];
|
|
1020
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1021
|
+
export var ForbiddenException$ = [-3, n0, _FE,
|
|
1022
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
1023
|
+
[_M, _RID],
|
|
1024
|
+
[0, 0]
|
|
1025
|
+
];
|
|
1026
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
1027
|
+
export var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
1028
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
1029
|
+
[_M, _RID],
|
|
1030
|
+
[0, 0]
|
|
1031
|
+
];
|
|
1032
|
+
n0_registry.registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
1033
|
+
export var MethodNotAllowedException$ = [-3, n0, _MNAE,
|
|
1034
|
+
{ [_e]: _c, [_hE]: 405 },
|
|
1035
|
+
[_M, _RID],
|
|
1036
|
+
[0, 0]
|
|
1037
|
+
];
|
|
1038
|
+
n0_registry.registerError(MethodNotAllowedException$, MethodNotAllowedException);
|
|
1039
|
+
export var NotFoundException$ = [-3, n0, _NFE,
|
|
1040
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1041
|
+
[_M, _RID],
|
|
1042
|
+
[0, 0]
|
|
1043
|
+
];
|
|
1044
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
1045
|
+
export var PayloadTooLargeException$ = [-3, n0, _PTLE,
|
|
1046
|
+
{ [_e]: _c, [_hE]: 413 },
|
|
1047
|
+
[_M, _RID],
|
|
1048
|
+
[0, 0]
|
|
1049
|
+
];
|
|
1050
|
+
n0_registry.registerError(PayloadTooLargeException$, PayloadTooLargeException);
|
|
1051
|
+
export var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1052
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
1053
|
+
[_M, _RID],
|
|
1054
|
+
[0, 0]
|
|
1055
|
+
];
|
|
1056
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1057
|
+
export const errorTypeRegistries = [
|
|
1058
|
+
_s_registry,
|
|
1059
|
+
n0_registry,
|
|
1060
|
+
];
|
|
1005
1061
|
export var ActivitiesResponse$ = [3, n0, _AR,
|
|
1006
1062
|
0,
|
|
1007
1063
|
[_I, _NT],
|
|
@@ -1127,12 +1183,6 @@ export var AttributesResource$ = [3, n0, _ARt,
|
|
|
1127
1183
|
[_AI, _AT, _At],
|
|
1128
1184
|
[0, 0, 64 | 0], 2
|
|
1129
1185
|
];
|
|
1130
|
-
export var BadRequestException$ = [-3, n0, _BRE,
|
|
1131
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1132
|
-
[_M, _RID],
|
|
1133
|
-
[0, 0]
|
|
1134
|
-
];
|
|
1135
|
-
TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
1136
1186
|
export var BaiduChannelRequest$ = [3, n0, _BCR,
|
|
1137
1187
|
0,
|
|
1138
1188
|
[_AK, _SK, _En],
|
|
@@ -1238,12 +1288,6 @@ export var ConditionalSplitActivity$ = [3, n0, _CSA,
|
|
|
1238
1288
|
[_Con, _EWT, _FAa, _TA],
|
|
1239
1289
|
[[() => Condition$, 0], () => WaitTime$, 0, 0]
|
|
1240
1290
|
];
|
|
1241
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
1242
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1243
|
-
[_M, _RID],
|
|
1244
|
-
[0, 0]
|
|
1245
|
-
];
|
|
1246
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1247
1291
|
export var ContactCenterActivity$ = [3, n0, _CCA,
|
|
1248
1292
|
0,
|
|
1249
1293
|
[_NA],
|
|
@@ -1804,12 +1848,6 @@ export var ExportJobsResponse$ = [3, n0, _EJRxpo,
|
|
|
1804
1848
|
[_I, _NT],
|
|
1805
1849
|
[() => ListOfExportJobResponse, 0], 1
|
|
1806
1850
|
];
|
|
1807
|
-
export var ForbiddenException$ = [-3, n0, _FE,
|
|
1808
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1809
|
-
[_M, _RID],
|
|
1810
|
-
[0, 0]
|
|
1811
|
-
];
|
|
1812
|
-
TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
1813
1851
|
export var GCMChannelRequest$ = [3, n0, _GCMCRh,
|
|
1814
1852
|
0,
|
|
1815
1853
|
[_AK, _DAM, _En, _SJ],
|
|
@@ -2400,12 +2438,6 @@ export var InAppTemplateResponse$ = [3, n0, _IATRn,
|
|
|
2400
2438
|
[_CD, _LMD, _TNe, _TT, _Ar, _Co, _CCu, _La, _t, _TDe, _V],
|
|
2401
2439
|
[0, 0, 0, 0, 0, () => ListOfInAppMessageContent, 128 | 0, 0, [128 | 0, { [_jN]: _t }], 0, 0], 4
|
|
2402
2440
|
];
|
|
2403
|
-
export var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
2404
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
2405
|
-
[_M, _RID],
|
|
2406
|
-
[0, 0]
|
|
2407
|
-
];
|
|
2408
|
-
TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
2409
2441
|
export var ItemResponse$ = [3, n0, _IRt,
|
|
2410
2442
|
0,
|
|
2411
2443
|
[_EIR, _EIRve],
|
|
@@ -2581,12 +2613,6 @@ export var MessageResult$ = [3, n0, _MRes,
|
|
|
2581
2613
|
[_DSel, _SC, _MI, _SM, _UT],
|
|
2582
2614
|
[0, 1, 0, 0, 0], 2
|
|
2583
2615
|
];
|
|
2584
|
-
export var MethodNotAllowedException$ = [-3, n0, _MNAE,
|
|
2585
|
-
{ [_e]: _c, [_hE]: 405 },
|
|
2586
|
-
[_M, _RID],
|
|
2587
|
-
[0, 0]
|
|
2588
|
-
];
|
|
2589
|
-
TypeRegistry.for(n0).registerError(MethodNotAllowedException$, MethodNotAllowedException);
|
|
2590
2616
|
export var MetricDimension$ = [3, n0, _MDe,
|
|
2591
2617
|
0,
|
|
2592
2618
|
[_CO, _Val],
|
|
@@ -2602,12 +2628,6 @@ export var MultiConditionalSplitActivity$ = [3, n0, _MCSA,
|
|
|
2602
2628
|
[_Br, _DA, _EWT],
|
|
2603
2629
|
[[() => ListOfMultiConditionalBranch, 0], 0, () => WaitTime$]
|
|
2604
2630
|
];
|
|
2605
|
-
export var NotFoundException$ = [-3, n0, _NFE,
|
|
2606
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
2607
|
-
[_M, _RID],
|
|
2608
|
-
[0, 0]
|
|
2609
|
-
];
|
|
2610
|
-
TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
2611
2631
|
export var NumberValidateRequest$ = [3, n0, _NVR,
|
|
2612
2632
|
0,
|
|
2613
2633
|
[_ICC, _PN],
|
|
@@ -2633,12 +2653,6 @@ export var OverrideButtonConfiguration$ = [3, n0, _OBC,
|
|
|
2633
2653
|
[_BA, _Li],
|
|
2634
2654
|
[0, 0], 1
|
|
2635
2655
|
];
|
|
2636
|
-
export var PayloadTooLargeException$ = [-3, n0, _PTLE,
|
|
2637
|
-
{ [_e]: _c, [_hE]: 413 },
|
|
2638
|
-
[_M, _RID],
|
|
2639
|
-
[0, 0]
|
|
2640
|
-
];
|
|
2641
|
-
TypeRegistry.for(n0).registerError(PayloadTooLargeException$, PayloadTooLargeException);
|
|
2642
2656
|
export var PhoneNumberValidateRequest$ = [3, n0, _PNVR,
|
|
2643
2657
|
0,
|
|
2644
2658
|
[_NVR],
|
|
@@ -2954,12 +2968,6 @@ export var TemplateVersionsResponse$ = [3, n0, _TVR,
|
|
|
2954
2968
|
[_I, _M, _NT, _RID],
|
|
2955
2969
|
[() => ListOfTemplateVersionResponse, 0, 0, 0], 1
|
|
2956
2970
|
];
|
|
2957
|
-
export var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
2958
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
2959
|
-
[_M, _RID],
|
|
2960
|
-
[0, 0]
|
|
2961
|
-
];
|
|
2962
|
-
TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
2963
2971
|
export var TreatmentResource$ = [3, n0, _TRr,
|
|
2964
2972
|
0,
|
|
2965
2973
|
[_Id, _SPi, _CDC, _MCe, _Sc, _St, _TCe, _TD, _TN],
|
|
@@ -3306,8 +3314,6 @@ export var WriteTreatmentResource$ = [3, n0, _WTR,
|
|
|
3306
3314
|
[1, () => CustomDeliveryConfiguration$, () => MessageConfiguration$, () => Schedule$, () => TemplateConfiguration$, 0, 0], 1
|
|
3307
3315
|
];
|
|
3308
3316
|
var __Unit = "unit";
|
|
3309
|
-
export var PinpointServiceException$ = [-3, _sm, "PinpointServiceException", 0, [], []];
|
|
3310
|
-
TypeRegistry.for(_sm).registerError(PinpointServiceException$, PinpointServiceException);
|
|
3311
3317
|
var ListOf__EndpointTypesElement = 64 | 0;
|
|
3312
3318
|
var ListOf__string = 64 | 0;
|
|
3313
3319
|
var ListOf__TimezoneEstimationMethodsElement = 64 | 0;
|
|
@@ -1,4 +1,20 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var PinpointServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var BadRequestException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
7
|
+
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
8
|
+
export declare var MethodNotAllowedException$: StaticErrorSchema;
|
|
9
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var PayloadTooLargeException$: StaticErrorSchema;
|
|
11
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
12
|
+
/**
|
|
13
|
+
* TypeRegistry instances containing modeled errors.
|
|
14
|
+
* @internal
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
2
18
|
export declare var ActivitiesResponse$: StaticStructureSchema;
|
|
3
19
|
export declare var Activity$: StaticStructureSchema;
|
|
4
20
|
export declare var ActivityResponse$: StaticStructureSchema;
|
|
@@ -24,7 +40,6 @@ export declare var ApplicationSettingsResource$: StaticStructureSchema;
|
|
|
24
40
|
export declare var ApplicationsResponse$: StaticStructureSchema;
|
|
25
41
|
export declare var AttributeDimension$: StaticStructureSchema;
|
|
26
42
|
export declare var AttributesResource$: StaticStructureSchema;
|
|
27
|
-
export declare var BadRequestException$: StaticErrorSchema;
|
|
28
43
|
export declare var BaiduChannelRequest$: StaticStructureSchema;
|
|
29
44
|
export declare var BaiduChannelResponse$: StaticStructureSchema;
|
|
30
45
|
export declare var BaiduMessage$: StaticStructureSchema;
|
|
@@ -46,7 +61,6 @@ export declare var ClosedDays$: StaticStructureSchema;
|
|
|
46
61
|
export declare var ClosedDaysRule$: StaticStructureSchema;
|
|
47
62
|
export declare var Condition$: StaticStructureSchema;
|
|
48
63
|
export declare var ConditionalSplitActivity$: StaticStructureSchema;
|
|
49
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
50
64
|
export declare var ContactCenterActivity$: StaticStructureSchema;
|
|
51
65
|
export declare var CreateApplicationRequest$: StaticStructureSchema;
|
|
52
66
|
export declare var CreateAppRequest$: StaticStructureSchema;
|
|
@@ -159,7 +173,6 @@ export declare var ExportJobRequest$: StaticStructureSchema;
|
|
|
159
173
|
export declare var ExportJobResource$: StaticStructureSchema;
|
|
160
174
|
export declare var ExportJobResponse$: StaticStructureSchema;
|
|
161
175
|
export declare var ExportJobsResponse$: StaticStructureSchema;
|
|
162
|
-
export declare var ForbiddenException$: StaticErrorSchema;
|
|
163
176
|
export declare var GCMChannelRequest$: StaticStructureSchema;
|
|
164
177
|
export declare var GCMChannelResponse$: StaticStructureSchema;
|
|
165
178
|
export declare var GCMMessage$: StaticStructureSchema;
|
|
@@ -278,7 +291,6 @@ export declare var InAppMessageHeaderConfig$: StaticStructureSchema;
|
|
|
278
291
|
export declare var InAppMessagesResponse$: StaticStructureSchema;
|
|
279
292
|
export declare var InAppTemplateRequest$: StaticStructureSchema;
|
|
280
293
|
export declare var InAppTemplateResponse$: StaticStructureSchema;
|
|
281
|
-
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
282
294
|
export declare var ItemResponse$: StaticStructureSchema;
|
|
283
295
|
export declare var JourneyChannelSettings$: StaticStructureSchema;
|
|
284
296
|
export declare var JourneyCustomMessage$: StaticStructureSchema;
|
|
@@ -314,17 +326,14 @@ export declare var MessageHeader$: StaticStructureSchema;
|
|
|
314
326
|
export declare var MessageRequest$: StaticStructureSchema;
|
|
315
327
|
export declare var MessageResponse$: StaticStructureSchema;
|
|
316
328
|
export declare var MessageResult$: StaticStructureSchema;
|
|
317
|
-
export declare var MethodNotAllowedException$: StaticErrorSchema;
|
|
318
329
|
export declare var MetricDimension$: StaticStructureSchema;
|
|
319
330
|
export declare var MultiConditionalBranch$: StaticStructureSchema;
|
|
320
331
|
export declare var MultiConditionalSplitActivity$: StaticStructureSchema;
|
|
321
|
-
export declare var NotFoundException$: StaticErrorSchema;
|
|
322
332
|
export declare var NumberValidateRequest$: StaticStructureSchema;
|
|
323
333
|
export declare var NumberValidateResponse$: StaticStructureSchema;
|
|
324
334
|
export declare var OpenHours$: StaticStructureSchema;
|
|
325
335
|
export declare var OpenHoursRule$: StaticStructureSchema;
|
|
326
336
|
export declare var OverrideButtonConfiguration$: StaticStructureSchema;
|
|
327
|
-
export declare var PayloadTooLargeException$: StaticErrorSchema;
|
|
328
337
|
export declare var PhoneNumberValidateRequest$: StaticStructureSchema;
|
|
329
338
|
export declare var PhoneNumberValidateResponse$: StaticStructureSchema;
|
|
330
339
|
export declare var PublicEndpoint$: StaticStructureSchema;
|
|
@@ -388,7 +397,6 @@ export declare var TemplateResponse$: StaticStructureSchema;
|
|
|
388
397
|
export declare var TemplatesResponse$: StaticStructureSchema;
|
|
389
398
|
export declare var TemplateVersionResponse$: StaticStructureSchema;
|
|
390
399
|
export declare var TemplateVersionsResponse$: StaticStructureSchema;
|
|
391
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
392
400
|
export declare var TreatmentResource$: StaticStructureSchema;
|
|
393
401
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
394
402
|
export declare var UpdateAdmChannelRequest$: StaticStructureSchema;
|
|
@@ -458,7 +466,6 @@ export declare var WriteEventStream$: StaticStructureSchema;
|
|
|
458
466
|
export declare var WriteJourneyRequest$: StaticStructureSchema;
|
|
459
467
|
export declare var WriteSegmentRequest$: StaticStructureSchema;
|
|
460
468
|
export declare var WriteTreatmentResource$: StaticStructureSchema;
|
|
461
|
-
export declare var PinpointServiceException$: StaticErrorSchema;
|
|
462
469
|
export declare var CreateApp$: StaticOperationSchema;
|
|
463
470
|
export declare var CreateCampaign$: StaticOperationSchema;
|
|
464
471
|
export declare var CreateEmailTemplate$: StaticOperationSchema;
|
|
@@ -1,8 +1,19 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var PinpointServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var BadRequestException$: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
10
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
11
|
+
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
12
|
+
export declare var MethodNotAllowedException$: StaticErrorSchema;
|
|
13
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var PayloadTooLargeException$: StaticErrorSchema;
|
|
15
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
6
17
|
export declare var ActivitiesResponse$: StaticStructureSchema;
|
|
7
18
|
export declare var Activity$: StaticStructureSchema;
|
|
8
19
|
export declare var ActivityResponse$: StaticStructureSchema;
|
|
@@ -28,7 +39,6 @@ export declare var ApplicationSettingsResource$: StaticStructureSchema;
|
|
|
28
39
|
export declare var ApplicationsResponse$: StaticStructureSchema;
|
|
29
40
|
export declare var AttributeDimension$: StaticStructureSchema;
|
|
30
41
|
export declare var AttributesResource$: StaticStructureSchema;
|
|
31
|
-
export declare var BadRequestException$: StaticErrorSchema;
|
|
32
42
|
export declare var BaiduChannelRequest$: StaticStructureSchema;
|
|
33
43
|
export declare var BaiduChannelResponse$: StaticStructureSchema;
|
|
34
44
|
export declare var BaiduMessage$: StaticStructureSchema;
|
|
@@ -50,7 +60,6 @@ export declare var ClosedDays$: StaticStructureSchema;
|
|
|
50
60
|
export declare var ClosedDaysRule$: StaticStructureSchema;
|
|
51
61
|
export declare var Condition$: StaticStructureSchema;
|
|
52
62
|
export declare var ConditionalSplitActivity$: StaticStructureSchema;
|
|
53
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
54
63
|
export declare var ContactCenterActivity$: StaticStructureSchema;
|
|
55
64
|
export declare var CreateApplicationRequest$: StaticStructureSchema;
|
|
56
65
|
export declare var CreateAppRequest$: StaticStructureSchema;
|
|
@@ -163,7 +172,6 @@ export declare var ExportJobRequest$: StaticStructureSchema;
|
|
|
163
172
|
export declare var ExportJobResource$: StaticStructureSchema;
|
|
164
173
|
export declare var ExportJobResponse$: StaticStructureSchema;
|
|
165
174
|
export declare var ExportJobsResponse$: StaticStructureSchema;
|
|
166
|
-
export declare var ForbiddenException$: StaticErrorSchema;
|
|
167
175
|
export declare var GCMChannelRequest$: StaticStructureSchema;
|
|
168
176
|
export declare var GCMChannelResponse$: StaticStructureSchema;
|
|
169
177
|
export declare var GCMMessage$: StaticStructureSchema;
|
|
@@ -282,7 +290,6 @@ export declare var InAppMessageHeaderConfig$: StaticStructureSchema;
|
|
|
282
290
|
export declare var InAppMessagesResponse$: StaticStructureSchema;
|
|
283
291
|
export declare var InAppTemplateRequest$: StaticStructureSchema;
|
|
284
292
|
export declare var InAppTemplateResponse$: StaticStructureSchema;
|
|
285
|
-
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
286
293
|
export declare var ItemResponse$: StaticStructureSchema;
|
|
287
294
|
export declare var JourneyChannelSettings$: StaticStructureSchema;
|
|
288
295
|
export declare var JourneyCustomMessage$: StaticStructureSchema;
|
|
@@ -318,17 +325,14 @@ export declare var MessageHeader$: StaticStructureSchema;
|
|
|
318
325
|
export declare var MessageRequest$: StaticStructureSchema;
|
|
319
326
|
export declare var MessageResponse$: StaticStructureSchema;
|
|
320
327
|
export declare var MessageResult$: StaticStructureSchema;
|
|
321
|
-
export declare var MethodNotAllowedException$: StaticErrorSchema;
|
|
322
328
|
export declare var MetricDimension$: StaticStructureSchema;
|
|
323
329
|
export declare var MultiConditionalBranch$: StaticStructureSchema;
|
|
324
330
|
export declare var MultiConditionalSplitActivity$: StaticStructureSchema;
|
|
325
|
-
export declare var NotFoundException$: StaticErrorSchema;
|
|
326
331
|
export declare var NumberValidateRequest$: StaticStructureSchema;
|
|
327
332
|
export declare var NumberValidateResponse$: StaticStructureSchema;
|
|
328
333
|
export declare var OpenHours$: StaticStructureSchema;
|
|
329
334
|
export declare var OpenHoursRule$: StaticStructureSchema;
|
|
330
335
|
export declare var OverrideButtonConfiguration$: StaticStructureSchema;
|
|
331
|
-
export declare var PayloadTooLargeException$: StaticErrorSchema;
|
|
332
336
|
export declare var PhoneNumberValidateRequest$: StaticStructureSchema;
|
|
333
337
|
export declare var PhoneNumberValidateResponse$: StaticStructureSchema;
|
|
334
338
|
export declare var PublicEndpoint$: StaticStructureSchema;
|
|
@@ -392,7 +396,6 @@ export declare var TemplateResponse$: StaticStructureSchema;
|
|
|
392
396
|
export declare var TemplatesResponse$: StaticStructureSchema;
|
|
393
397
|
export declare var TemplateVersionResponse$: StaticStructureSchema;
|
|
394
398
|
export declare var TemplateVersionsResponse$: StaticStructureSchema;
|
|
395
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
396
399
|
export declare var TreatmentResource$: StaticStructureSchema;
|
|
397
400
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
398
401
|
export declare var UpdateAdmChannelRequest$: StaticStructureSchema;
|
|
@@ -462,7 +465,6 @@ export declare var WriteEventStream$: StaticStructureSchema;
|
|
|
462
465
|
export declare var WriteJourneyRequest$: StaticStructureSchema;
|
|
463
466
|
export declare var WriteSegmentRequest$: StaticStructureSchema;
|
|
464
467
|
export declare var WriteTreatmentResource$: StaticStructureSchema;
|
|
465
|
-
export declare var PinpointServiceException$: StaticErrorSchema;
|
|
466
468
|
export declare var CreateApp$: StaticOperationSchema;
|
|
467
469
|
export declare var CreateCampaign$: StaticOperationSchema;
|
|
468
470
|
export declare var CreateEmailTemplate$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pinpoint",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pinpoint Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.989.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-pinpoint",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.9",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.8",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.9",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.989.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.7",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|