@aws-sdk/client-entityresolution 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 +57 -1510
- package/dist-cjs/models/EntityResolutionServiceException.js +12 -0
- package/dist-cjs/models/errors.js +103 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1225 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +51 -45
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- 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 { defaultEntityResolutionHttpAuthSchemeProvider } 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: "2018-05-10",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.entityresolution",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2018-05-10",
|
|
30
32
|
serviceTarget: "AWSVeniceService",
|
|
31
33
|
},
|
|
@@ -314,7 +314,7 @@ const _rT = "resolutionTechniques";
|
|
|
314
314
|
const _rTe = "resolutionType";
|
|
315
315
|
const _re = "record";
|
|
316
316
|
const _ru = "rules";
|
|
317
|
-
const _s = "
|
|
317
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.entityresolution";
|
|
318
318
|
const _sA = "schemaArn";
|
|
319
319
|
const _sI = "statementId";
|
|
320
320
|
const _sL = "schemaList";
|
|
@@ -323,7 +323,7 @@ const _sT = "startTime";
|
|
|
323
323
|
const _sTu = "subType";
|
|
324
324
|
const _sc = "schemas";
|
|
325
325
|
const _se = "server";
|
|
326
|
-
const
|
|
326
|
+
const _st = "status";
|
|
327
327
|
const _t = "token";
|
|
328
328
|
const _tK = "tagKeys";
|
|
329
329
|
const _tMR = "totalMappedRecords";
|
|
@@ -343,12 +343,56 @@ const n0 = "com.amazonaws.entityresolution";
|
|
|
343
343
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
344
344
|
import { EntityResolutionServiceException } from "../models/EntityResolutionServiceException";
|
|
345
345
|
import { AccessDeniedException, ConflictException, ExceedsLimitException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
346
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
347
|
+
export var EntityResolutionServiceException$ = [-3, _s, "EntityResolutionServiceException", 0, [], []];
|
|
348
|
+
_s_registry.registerError(EntityResolutionServiceException$, EntityResolutionServiceException);
|
|
349
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
346
350
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
347
351
|
{ [_e]: _c, [_hE]: 403 },
|
|
348
352
|
[_m],
|
|
349
353
|
[0]
|
|
350
354
|
];
|
|
351
|
-
|
|
355
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
356
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
357
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
358
|
+
[_m],
|
|
359
|
+
[0]
|
|
360
|
+
];
|
|
361
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
362
|
+
export var ExceedsLimitException$ = [-3, n0, _ELE,
|
|
363
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
364
|
+
[_m, _qN, _qV],
|
|
365
|
+
[0, 0, 1]
|
|
366
|
+
];
|
|
367
|
+
n0_registry.registerError(ExceedsLimitException$, ExceedsLimitException);
|
|
368
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
369
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
370
|
+
[_m],
|
|
371
|
+
[0]
|
|
372
|
+
];
|
|
373
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
374
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
375
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
376
|
+
[_m],
|
|
377
|
+
[0]
|
|
378
|
+
];
|
|
379
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
380
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
381
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
382
|
+
[_m],
|
|
383
|
+
[0]
|
|
384
|
+
];
|
|
385
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
386
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
387
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
388
|
+
[_m],
|
|
389
|
+
[0]
|
|
390
|
+
];
|
|
391
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
392
|
+
export const errorTypeRegistries = [
|
|
393
|
+
_s_registry,
|
|
394
|
+
n0_registry,
|
|
395
|
+
];
|
|
352
396
|
export var AddPolicyStatementInput$ = [3, n0, _APSI,
|
|
353
397
|
0,
|
|
354
398
|
[_a, _sI, _ef, _ac, _p, _co],
|
|
@@ -366,15 +410,9 @@ export var BatchDeleteUniqueIdInput$ = [3, n0, _BDUII,
|
|
|
366
410
|
];
|
|
367
411
|
export var BatchDeleteUniqueIdOutput$ = [3, n0, _BDUIO,
|
|
368
412
|
0,
|
|
369
|
-
[
|
|
413
|
+
[_st, _er, _d, _dUI],
|
|
370
414
|
[0, () => DeleteUniqueIdErrorsList, () => DeletedUniqueIdList, 64 | 0], 4
|
|
371
415
|
];
|
|
372
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
373
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
374
|
-
[_m],
|
|
375
|
-
[0]
|
|
376
|
-
];
|
|
377
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
378
416
|
export var CreateIdMappingWorkflowInput$ = [3, n0, _CIMWI,
|
|
379
417
|
0,
|
|
380
418
|
[_wN, _iSC, _iMT, _de, _oSC, _iRC, _rA, _ta],
|
|
@@ -485,12 +523,6 @@ export var ErrorDetails$ = [3, n0, _ED,
|
|
|
485
523
|
[_eM],
|
|
486
524
|
[0]
|
|
487
525
|
];
|
|
488
|
-
export var ExceedsLimitException$ = [-3, n0, _ELE,
|
|
489
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
490
|
-
[_m, _qN, _qV],
|
|
491
|
-
[0, 0, 1]
|
|
492
|
-
];
|
|
493
|
-
TypeRegistry.for(n0).registerError(ExceedsLimitException$, ExceedsLimitException);
|
|
494
526
|
export var FailedRecord$ = [3, n0, _FR,
|
|
495
527
|
0,
|
|
496
528
|
[_iSARN, _uIn, _eM],
|
|
@@ -513,7 +545,7 @@ export var GetIdMappingJobInput$ = [3, n0, _GIMJI,
|
|
|
513
545
|
];
|
|
514
546
|
export var GetIdMappingJobOutput$ = [3, n0, _GIMJO,
|
|
515
547
|
0,
|
|
516
|
-
[_jI,
|
|
548
|
+
[_jI, _st, _sT, _eTn, _me, _eD, _oSC, _jT],
|
|
517
549
|
[0, 0, 4, 4, () => IdMappingJobMetrics$, () => ErrorDetails$, () => IdMappingJobOutputSourceConfig, 0], 3
|
|
518
550
|
];
|
|
519
551
|
export var GetIdMappingWorkflowInput$ = [3, n0, _GIMWI,
|
|
@@ -553,7 +585,7 @@ export var GetMatchingJobInput$ = [3, n0, _GMJI,
|
|
|
553
585
|
];
|
|
554
586
|
export var GetMatchingJobOutput$ = [3, n0, _GMJO,
|
|
555
587
|
0,
|
|
556
|
-
[_jI,
|
|
588
|
+
[_jI, _st, _sT, _eTn, _me, _eD, _oSC],
|
|
557
589
|
[0, 0, 4, 4, () => JobMetrics$, () => ErrorDetails$, () => JobOutputSourceConfig], 3
|
|
558
590
|
];
|
|
559
591
|
export var GetMatchingWorkflowInput$ = [3, n0, _GMWI,
|
|
@@ -671,12 +703,6 @@ export var IntermediateSourceConfiguration$ = [3, n0, _ISC,
|
|
|
671
703
|
[_iSP],
|
|
672
704
|
[0], 1
|
|
673
705
|
];
|
|
674
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
675
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
676
|
-
[_m],
|
|
677
|
-
[0]
|
|
678
|
-
];
|
|
679
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
680
706
|
export var JobMetrics$ = [3, n0, _JM,
|
|
681
707
|
0,
|
|
682
708
|
[_iR, _tRP, _rNP, _dRP, _mID],
|
|
@@ -689,7 +715,7 @@ export var JobOutputSource$ = [3, n0, _JOS,
|
|
|
689
715
|
];
|
|
690
716
|
export var JobSummary$ = [3, n0, _JS,
|
|
691
717
|
0,
|
|
692
|
-
[_jI,
|
|
718
|
+
[_jI, _st, _sT, _eTn],
|
|
693
719
|
[0, 0, 4, 4], 3
|
|
694
720
|
];
|
|
695
721
|
export var ListIdMappingJobsInput$ = [3, n0, _LIMJI,
|
|
@@ -862,12 +888,6 @@ export var ResolutionTechniques$ = [3, n0, _RT,
|
|
|
862
888
|
[_rTe, _rBP, _rCP, _pP],
|
|
863
889
|
[0, () => RuleBasedProperties$, () => RuleConditionProperties$, () => ProviderProperties$], 1
|
|
864
890
|
];
|
|
865
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
866
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
867
|
-
[_m],
|
|
868
|
-
[0]
|
|
869
|
-
];
|
|
870
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
871
891
|
export var Rule$ = [3, n0, _Ru,
|
|
872
892
|
0,
|
|
873
893
|
[_rN, _mK],
|
|
@@ -928,12 +948,6 @@ export var TagResourceOutput$ = [3, n0, _TRO,
|
|
|
928
948
|
[],
|
|
929
949
|
[]
|
|
930
950
|
];
|
|
931
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
932
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
933
|
-
[_m],
|
|
934
|
-
[0]
|
|
935
|
-
];
|
|
936
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
937
951
|
export var UntagResourceInput$ = [3, n0, _URI,
|
|
938
952
|
0,
|
|
939
953
|
[_rAe, _tK],
|
|
@@ -984,14 +998,6 @@ export var UpdateSchemaMappingOutput$ = [3, n0, _USMO,
|
|
|
984
998
|
[_sN, _sA, _mIF, _de],
|
|
985
999
|
[0, 0, () => SchemaInputAttributes, 0], 3
|
|
986
1000
|
];
|
|
987
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
988
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
989
|
-
[_m],
|
|
990
|
-
[0]
|
|
991
|
-
];
|
|
992
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
993
|
-
export var EntityResolutionServiceException$ = [-3, _sm, "EntityResolutionServiceException", 0, [], []];
|
|
994
|
-
TypeRegistry.for(_sm).registerError(EntityResolutionServiceException$, EntityResolutionServiceException);
|
|
995
1001
|
var AwsAccountIdList = 64 | 0;
|
|
996
1002
|
var DeletedUniqueIdList = [1, n0, _DUIL,
|
|
997
1003
|
0, () => DeletedUniqueId$
|
|
@@ -1,10 +1,23 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var EntityResolutionServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var ExceedsLimitException$: StaticErrorSchema;
|
|
7
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
8
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
9
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
10
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
11
|
+
/**
|
|
12
|
+
* TypeRegistry instances containing modeled errors.
|
|
13
|
+
* @internal
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
17
|
export declare var AddPolicyStatementInput$: StaticStructureSchema;
|
|
4
18
|
export declare var AddPolicyStatementOutput$: StaticStructureSchema;
|
|
5
19
|
export declare var BatchDeleteUniqueIdInput$: StaticStructureSchema;
|
|
6
20
|
export declare var BatchDeleteUniqueIdOutput$: StaticStructureSchema;
|
|
7
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
8
21
|
export declare var CreateIdMappingWorkflowInput$: StaticStructureSchema;
|
|
9
22
|
export declare var CreateIdMappingWorkflowOutput$: StaticStructureSchema;
|
|
10
23
|
export declare var CreateIdNamespaceInput$: StaticStructureSchema;
|
|
@@ -27,7 +40,6 @@ export declare var DeleteSchemaMappingInput$: StaticStructureSchema;
|
|
|
27
40
|
export declare var DeleteSchemaMappingOutput$: StaticStructureSchema;
|
|
28
41
|
export declare var DeleteUniqueIdError$: StaticStructureSchema;
|
|
29
42
|
export declare var ErrorDetails$: StaticStructureSchema;
|
|
30
|
-
export declare var ExceedsLimitException$: StaticErrorSchema;
|
|
31
43
|
export declare var FailedRecord$: StaticStructureSchema;
|
|
32
44
|
export declare var GenerateMatchIdInput$: StaticStructureSchema;
|
|
33
45
|
export declare var GenerateMatchIdOutput$: StaticStructureSchema;
|
|
@@ -64,7 +76,6 @@ export declare var IdNamespaceSummary$: StaticStructureSchema;
|
|
|
64
76
|
export declare var IncrementalRunConfig$: StaticStructureSchema;
|
|
65
77
|
export declare var InputSource$: StaticStructureSchema;
|
|
66
78
|
export declare var IntermediateSourceConfiguration$: StaticStructureSchema;
|
|
67
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
68
79
|
export declare var JobMetrics$: StaticStructureSchema;
|
|
69
80
|
export declare var JobOutputSource$: StaticStructureSchema;
|
|
70
81
|
export declare var JobSummary$: StaticStructureSchema;
|
|
@@ -102,7 +113,6 @@ export declare var PutPolicyInput$: StaticStructureSchema;
|
|
|
102
113
|
export declare var PutPolicyOutput$: StaticStructureSchema;
|
|
103
114
|
export declare var _Record$: StaticStructureSchema;
|
|
104
115
|
export declare var ResolutionTechniques$: StaticStructureSchema;
|
|
105
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
106
116
|
export declare var Rule$: StaticStructureSchema;
|
|
107
117
|
export declare var RuleBasedProperties$: StaticStructureSchema;
|
|
108
118
|
export declare var RuleCondition$: StaticStructureSchema;
|
|
@@ -115,7 +125,6 @@ export declare var StartMatchingJobInput$: StaticStructureSchema;
|
|
|
115
125
|
export declare var StartMatchingJobOutput$: StaticStructureSchema;
|
|
116
126
|
export declare var TagResourceInput$: StaticStructureSchema;
|
|
117
127
|
export declare var TagResourceOutput$: StaticStructureSchema;
|
|
118
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
119
128
|
export declare var UntagResourceInput$: StaticStructureSchema;
|
|
120
129
|
export declare var UntagResourceOutput$: StaticStructureSchema;
|
|
121
130
|
export declare var UpdateIdMappingWorkflowInput$: StaticStructureSchema;
|
|
@@ -126,8 +135,6 @@ export declare var UpdateMatchingWorkflowInput$: StaticStructureSchema;
|
|
|
126
135
|
export declare var UpdateMatchingWorkflowOutput$: StaticStructureSchema;
|
|
127
136
|
export declare var UpdateSchemaMappingInput$: StaticStructureSchema;
|
|
128
137
|
export declare var UpdateSchemaMappingOutput$: StaticStructureSchema;
|
|
129
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
130
|
-
export declare var EntityResolutionServiceException$: StaticErrorSchema;
|
|
131
138
|
export declare var ProviderEndpointConfiguration$: StaticUnionSchema;
|
|
132
139
|
export declare var AddPolicyStatement$: StaticOperationSchema;
|
|
133
140
|
export declare var BatchDeleteUniqueId$: StaticOperationSchema;
|
|
@@ -1,15 +1,23 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
StaticUnionSchema,
|
|
6
7
|
} from "@smithy/types";
|
|
8
|
+
export declare var EntityResolutionServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var ExceedsLimitException$: StaticErrorSchema;
|
|
12
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
15
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
8
17
|
export declare var AddPolicyStatementInput$: StaticStructureSchema;
|
|
9
18
|
export declare var AddPolicyStatementOutput$: StaticStructureSchema;
|
|
10
19
|
export declare var BatchDeleteUniqueIdInput$: StaticStructureSchema;
|
|
11
20
|
export declare var BatchDeleteUniqueIdOutput$: StaticStructureSchema;
|
|
12
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
13
21
|
export declare var CreateIdMappingWorkflowInput$: StaticStructureSchema;
|
|
14
22
|
export declare var CreateIdMappingWorkflowOutput$: StaticStructureSchema;
|
|
15
23
|
export declare var CreateIdNamespaceInput$: StaticStructureSchema;
|
|
@@ -32,7 +40,6 @@ export declare var DeleteSchemaMappingInput$: StaticStructureSchema;
|
|
|
32
40
|
export declare var DeleteSchemaMappingOutput$: StaticStructureSchema;
|
|
33
41
|
export declare var DeleteUniqueIdError$: StaticStructureSchema;
|
|
34
42
|
export declare var ErrorDetails$: StaticStructureSchema;
|
|
35
|
-
export declare var ExceedsLimitException$: StaticErrorSchema;
|
|
36
43
|
export declare var FailedRecord$: StaticStructureSchema;
|
|
37
44
|
export declare var GenerateMatchIdInput$: StaticStructureSchema;
|
|
38
45
|
export declare var GenerateMatchIdOutput$: StaticStructureSchema;
|
|
@@ -69,7 +76,6 @@ export declare var IdNamespaceSummary$: StaticStructureSchema;
|
|
|
69
76
|
export declare var IncrementalRunConfig$: StaticStructureSchema;
|
|
70
77
|
export declare var InputSource$: StaticStructureSchema;
|
|
71
78
|
export declare var IntermediateSourceConfiguration$: StaticStructureSchema;
|
|
72
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
73
79
|
export declare var JobMetrics$: StaticStructureSchema;
|
|
74
80
|
export declare var JobOutputSource$: StaticStructureSchema;
|
|
75
81
|
export declare var JobSummary$: StaticStructureSchema;
|
|
@@ -107,7 +113,6 @@ export declare var PutPolicyInput$: StaticStructureSchema;
|
|
|
107
113
|
export declare var PutPolicyOutput$: StaticStructureSchema;
|
|
108
114
|
export declare var _Record$: StaticStructureSchema;
|
|
109
115
|
export declare var ResolutionTechniques$: StaticStructureSchema;
|
|
110
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
111
116
|
export declare var Rule$: StaticStructureSchema;
|
|
112
117
|
export declare var RuleBasedProperties$: StaticStructureSchema;
|
|
113
118
|
export declare var RuleCondition$: StaticStructureSchema;
|
|
@@ -120,7 +125,6 @@ export declare var StartMatchingJobInput$: StaticStructureSchema;
|
|
|
120
125
|
export declare var StartMatchingJobOutput$: StaticStructureSchema;
|
|
121
126
|
export declare var TagResourceInput$: StaticStructureSchema;
|
|
122
127
|
export declare var TagResourceOutput$: StaticStructureSchema;
|
|
123
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
124
128
|
export declare var UntagResourceInput$: StaticStructureSchema;
|
|
125
129
|
export declare var UntagResourceOutput$: StaticStructureSchema;
|
|
126
130
|
export declare var UpdateIdMappingWorkflowInput$: StaticStructureSchema;
|
|
@@ -131,8 +135,6 @@ export declare var UpdateMatchingWorkflowInput$: StaticStructureSchema;
|
|
|
131
135
|
export declare var UpdateMatchingWorkflowOutput$: StaticStructureSchema;
|
|
132
136
|
export declare var UpdateSchemaMappingInput$: StaticStructureSchema;
|
|
133
137
|
export declare var UpdateSchemaMappingOutput$: StaticStructureSchema;
|
|
134
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
135
|
-
export declare var EntityResolutionServiceException$: StaticErrorSchema;
|
|
136
138
|
export declare var ProviderEndpointConfiguration$: StaticUnionSchema;
|
|
137
139
|
export declare var AddPolicyStatement$: StaticOperationSchema;
|
|
138
140
|
export declare var BatchDeleteUniqueId$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-entityresolution",
|
|
3
3
|
"description": "AWS SDK for JavaScript Entityresolution 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-entityresolution",
|
|
@@ -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",
|