@aws-sdk/client-signer 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 +38 -851
- package/dist-cjs/models/SignerServiceException.js +12 -0
- package/dist-cjs/models/errors.js +154 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +610 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +68 -62
- package/dist-types/schemas/schemas_0.d.ts +17 -10
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -10
- package/package.json +13 -13
|
@@ -151,7 +151,7 @@ const _rEF = "revocationEffectiveFrom";
|
|
|
151
151
|
const _rI = "revisionId";
|
|
152
152
|
const _rR = "revocationRecord";
|
|
153
153
|
const _rS = "revocationSupported";
|
|
154
|
-
const _s = "
|
|
154
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.signer";
|
|
155
155
|
const _sC = "signingConfiguration";
|
|
156
156
|
const _sEA = "signatureExpiresAt";
|
|
157
157
|
const _sEAi = "signatureExpiresAfter";
|
|
@@ -168,7 +168,7 @@ const _sVP = "signatureValidityPeriod";
|
|
|
168
168
|
const _s_ = "s3";
|
|
169
169
|
const _se = "server";
|
|
170
170
|
const _si = "signature";
|
|
171
|
-
const
|
|
171
|
+
const _so = "source";
|
|
172
172
|
const _st = "status";
|
|
173
173
|
const _sta = "statuses";
|
|
174
174
|
const _t = "target";
|
|
@@ -181,12 +181,74 @@ const n0 = "com.amazonaws.signer";
|
|
|
181
181
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
182
182
|
import { AccessDeniedException, BadRequestException, ConflictException, InternalServiceErrorException, NotFoundException, ResourceNotFoundException, ServiceLimitExceededException, ThrottlingException, TooManyRequestsException, ValidationException, } from "../models/errors";
|
|
183
183
|
import { SignerServiceException } from "../models/SignerServiceException";
|
|
184
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
185
|
+
export var SignerServiceException$ = [-3, _s, "SignerServiceException", 0, [], []];
|
|
186
|
+
_s_registry.registerError(SignerServiceException$, SignerServiceException);
|
|
187
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
184
188
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
185
189
|
{ [_e]: _c, [_hE]: 403 },
|
|
186
190
|
[_m, _co],
|
|
187
191
|
[0, 0]
|
|
188
192
|
];
|
|
189
|
-
|
|
193
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
194
|
+
export var BadRequestException$ = [-3, n0, _BRE,
|
|
195
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
196
|
+
[_m, _co],
|
|
197
|
+
[0, 0]
|
|
198
|
+
];
|
|
199
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
200
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
201
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
202
|
+
[_m, _co],
|
|
203
|
+
[0, 0]
|
|
204
|
+
];
|
|
205
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
206
|
+
export var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
207
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
208
|
+
[_m, _co],
|
|
209
|
+
[0, 0]
|
|
210
|
+
];
|
|
211
|
+
n0_registry.registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
212
|
+
export var NotFoundException$ = [-3, n0, _NFE,
|
|
213
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
214
|
+
[_m, _co],
|
|
215
|
+
[0, 0]
|
|
216
|
+
];
|
|
217
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
218
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
219
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
220
|
+
[_m, _co],
|
|
221
|
+
[0, 0]
|
|
222
|
+
];
|
|
223
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
224
|
+
export var ServiceLimitExceededException$ = [-3, n0, _SLEE,
|
|
225
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
226
|
+
[_m, _co],
|
|
227
|
+
[0, 0]
|
|
228
|
+
];
|
|
229
|
+
n0_registry.registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
|
|
230
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
231
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
232
|
+
[_m, _co],
|
|
233
|
+
[0, 0]
|
|
234
|
+
];
|
|
235
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
236
|
+
export var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
237
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
238
|
+
[_m, _co],
|
|
239
|
+
[0, 0]
|
|
240
|
+
];
|
|
241
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
242
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
243
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
244
|
+
[_m, _co],
|
|
245
|
+
[0, 0]
|
|
246
|
+
];
|
|
247
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
248
|
+
export const errorTypeRegistries = [
|
|
249
|
+
_s_registry,
|
|
250
|
+
n0_registry,
|
|
251
|
+
];
|
|
190
252
|
export var AddProfilePermissionRequest$ = [3, n0, _APPR,
|
|
191
253
|
0,
|
|
192
254
|
[_pN, _a, _p, _sI, _pV, _rI],
|
|
@@ -197,23 +259,11 @@ export var AddProfilePermissionResponse$ = [3, n0, _APPRd,
|
|
|
197
259
|
[_rI],
|
|
198
260
|
[0]
|
|
199
261
|
];
|
|
200
|
-
export var BadRequestException$ = [-3, n0, _BRE,
|
|
201
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
202
|
-
[_m, _co],
|
|
203
|
-
[0, 0]
|
|
204
|
-
];
|
|
205
|
-
TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
206
262
|
export var CancelSigningProfileRequest$ = [3, n0, _CSPR,
|
|
207
263
|
0,
|
|
208
264
|
[_pN],
|
|
209
265
|
[[0, 1]], 1
|
|
210
266
|
];
|
|
211
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
212
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
213
|
-
[_m, _co],
|
|
214
|
-
[0, 0]
|
|
215
|
-
];
|
|
216
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
217
267
|
export var DescribeSigningJobRequest$ = [3, n0, _DSJR,
|
|
218
268
|
0,
|
|
219
269
|
[_jI],
|
|
@@ -221,7 +271,7 @@ export var DescribeSigningJobRequest$ = [3, n0, _DSJR,
|
|
|
221
271
|
];
|
|
222
272
|
export var DescribeSigningJobResponse$ = [3, n0, _DSJRe,
|
|
223
273
|
0,
|
|
224
|
-
[_jI,
|
|
274
|
+
[_jI, _so, _sM, _pI, _pDN, _pN, _pV, _o, _sP, _cA, _cAo, _sEA, _rB, _st, _sR, _rR, _sO, _jO, _jIo],
|
|
225
275
|
[0, () => Source$, () => SigningMaterial$, 0, 0, 0, 0, () => SigningPlatformOverrides$, 128 | 0, 4, 4, 4, 0, 0, 0, () => SigningJobRevocationRecord$, () => SignedObject$, 0, 0]
|
|
226
276
|
];
|
|
227
277
|
export var Destination$ = [3, n0, _D,
|
|
@@ -269,12 +319,6 @@ export var HashAlgorithmOptions$ = [3, n0, _HAO,
|
|
|
269
319
|
[_aV, _dV],
|
|
270
320
|
[64 | 0, 0], 2
|
|
271
321
|
];
|
|
272
|
-
export var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
273
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
274
|
-
[_m, _co],
|
|
275
|
-
[0, 0]
|
|
276
|
-
];
|
|
277
|
-
TypeRegistry.for(n0).registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
278
322
|
export var ListProfilePermissionsRequest$ = [3, n0, _LPPR,
|
|
279
323
|
0,
|
|
280
324
|
[_pN, _nT],
|
|
@@ -325,12 +369,6 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
325
369
|
[_ta],
|
|
326
370
|
[128 | 0]
|
|
327
371
|
];
|
|
328
|
-
export var NotFoundException$ = [-3, n0, _NFE,
|
|
329
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
330
|
-
[_m, _co],
|
|
331
|
-
[0, 0]
|
|
332
|
-
];
|
|
333
|
-
TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
334
372
|
export var Permission$ = [3, n0, _P,
|
|
335
373
|
0,
|
|
336
374
|
[_a, _p, _sI, _pV],
|
|
@@ -356,12 +394,6 @@ export var RemoveProfilePermissionResponse$ = [3, n0, _RPPRe,
|
|
|
356
394
|
[_rI],
|
|
357
395
|
[0]
|
|
358
396
|
];
|
|
359
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
360
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
361
|
-
[_m, _co],
|
|
362
|
-
[0, 0]
|
|
363
|
-
];
|
|
364
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
365
397
|
export var RevokeSignatureRequest$ = [3, n0, _RSR,
|
|
366
398
|
0,
|
|
367
399
|
[_jI, _r, _jO],
|
|
@@ -387,12 +419,6 @@ export var S3Source$ = [3, n0, _SS,
|
|
|
387
419
|
[_bN, _k, _v],
|
|
388
420
|
[0, 0, 0], 3
|
|
389
421
|
];
|
|
390
|
-
export var ServiceLimitExceededException$ = [-3, n0, _SLEE,
|
|
391
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
392
|
-
[_m, _co],
|
|
393
|
-
[0, 0]
|
|
394
|
-
];
|
|
395
|
-
TypeRegistry.for(n0).registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
|
|
396
422
|
export var SignatureValidityPeriod$ = [3, n0, _SVP,
|
|
397
423
|
0,
|
|
398
424
|
[_va, _ty],
|
|
@@ -420,7 +446,7 @@ export var SigningImageFormat$ = [3, n0, _SIF,
|
|
|
420
446
|
];
|
|
421
447
|
export var SigningJob$ = [3, n0, _SJ,
|
|
422
448
|
0,
|
|
423
|
-
[_jI,
|
|
449
|
+
[_jI, _so, _sO, _sM, _cA, _st, _iR, _pN, _pV, _pI, _pDN, _sEA, _jO, _jIo],
|
|
424
450
|
[0, () => Source$, () => SignedObject$, () => SigningMaterial$, 4, 0, 2, 0, 0, 0, 0, 4, 0, 0]
|
|
425
451
|
];
|
|
426
452
|
export var SigningJobRevocationRecord$ = [3, n0, _SJRR,
|
|
@@ -470,7 +496,7 @@ export var Source$ = [3, n0, _S,
|
|
|
470
496
|
];
|
|
471
497
|
export var StartSigningJobRequest$ = [3, n0, _SSJR,
|
|
472
498
|
0,
|
|
473
|
-
[
|
|
499
|
+
[_so, _d, _pN, _cRT, _pO],
|
|
474
500
|
[() => Source$, () => Destination$, 0, [0, 4], 0], 3
|
|
475
501
|
];
|
|
476
502
|
export var StartSigningJobResponse$ = [3, n0, _SSJRt,
|
|
@@ -488,18 +514,6 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
488
514
|
[],
|
|
489
515
|
[]
|
|
490
516
|
];
|
|
491
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
492
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
493
|
-
[_m, _co],
|
|
494
|
-
[0, 0]
|
|
495
|
-
];
|
|
496
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
497
|
-
export var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
498
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
499
|
-
[_m, _co],
|
|
500
|
-
[0, 0]
|
|
501
|
-
];
|
|
502
|
-
TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
503
517
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
504
518
|
0,
|
|
505
519
|
[_rA, _tK],
|
|
@@ -510,15 +524,7 @@ export var UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
510
524
|
[],
|
|
511
525
|
[]
|
|
512
526
|
];
|
|
513
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
514
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
515
|
-
[_m, _co],
|
|
516
|
-
[0, 0]
|
|
517
|
-
];
|
|
518
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
519
527
|
var __Unit = "unit";
|
|
520
|
-
export var SignerServiceException$ = [-3, _sm, "SignerServiceException", 0, [], []];
|
|
521
|
-
TypeRegistry.for(_sm).registerError(SignerServiceException$, SignerServiceException);
|
|
522
528
|
var CertificateHashes = 64 | 0;
|
|
523
529
|
var EncryptionAlgorithms = 64 | 0;
|
|
524
530
|
var HashAlgorithms = 64 | 0;
|
|
@@ -1,10 +1,25 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var SignerServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var BadRequestException$: StaticErrorSchema;
|
|
6
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
7
|
+
export declare var InternalServiceErrorException$: StaticErrorSchema;
|
|
8
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
9
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var ServiceLimitExceededException$: StaticErrorSchema;
|
|
11
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
12
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
13
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
14
|
+
/**
|
|
15
|
+
* TypeRegistry instances containing modeled errors.
|
|
16
|
+
* @internal
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
20
|
export declare var AddProfilePermissionRequest$: StaticStructureSchema;
|
|
4
21
|
export declare var AddProfilePermissionResponse$: StaticStructureSchema;
|
|
5
|
-
export declare var BadRequestException$: StaticErrorSchema;
|
|
6
22
|
export declare var CancelSigningProfileRequest$: StaticStructureSchema;
|
|
7
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
8
23
|
export declare var DescribeSigningJobRequest$: StaticStructureSchema;
|
|
9
24
|
export declare var DescribeSigningJobResponse$: StaticStructureSchema;
|
|
10
25
|
export declare var Destination$: StaticStructureSchema;
|
|
@@ -16,7 +31,6 @@ export declare var GetSigningPlatformResponse$: StaticStructureSchema;
|
|
|
16
31
|
export declare var GetSigningProfileRequest$: StaticStructureSchema;
|
|
17
32
|
export declare var GetSigningProfileResponse$: StaticStructureSchema;
|
|
18
33
|
export declare var HashAlgorithmOptions$: StaticStructureSchema;
|
|
19
|
-
export declare var InternalServiceErrorException$: StaticErrorSchema;
|
|
20
34
|
export declare var ListProfilePermissionsRequest$: StaticStructureSchema;
|
|
21
35
|
export declare var ListProfilePermissionsResponse$: StaticStructureSchema;
|
|
22
36
|
export declare var ListSigningJobsRequest$: StaticStructureSchema;
|
|
@@ -27,19 +41,16 @@ export declare var ListSigningProfilesRequest$: StaticStructureSchema;
|
|
|
27
41
|
export declare var ListSigningProfilesResponse$: StaticStructureSchema;
|
|
28
42
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
29
43
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
30
|
-
export declare var NotFoundException$: StaticErrorSchema;
|
|
31
44
|
export declare var Permission$: StaticStructureSchema;
|
|
32
45
|
export declare var PutSigningProfileRequest$: StaticStructureSchema;
|
|
33
46
|
export declare var PutSigningProfileResponse$: StaticStructureSchema;
|
|
34
47
|
export declare var RemoveProfilePermissionRequest$: StaticStructureSchema;
|
|
35
48
|
export declare var RemoveProfilePermissionResponse$: StaticStructureSchema;
|
|
36
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
37
49
|
export declare var RevokeSignatureRequest$: StaticStructureSchema;
|
|
38
50
|
export declare var RevokeSigningProfileRequest$: StaticStructureSchema;
|
|
39
51
|
export declare var S3Destination$: StaticStructureSchema;
|
|
40
52
|
export declare var S3SignedObject$: StaticStructureSchema;
|
|
41
53
|
export declare var S3Source$: StaticStructureSchema;
|
|
42
|
-
export declare var ServiceLimitExceededException$: StaticErrorSchema;
|
|
43
54
|
export declare var SignatureValidityPeriod$: StaticStructureSchema;
|
|
44
55
|
export declare var SignedObject$: StaticStructureSchema;
|
|
45
56
|
export declare var SigningConfiguration$: StaticStructureSchema;
|
|
@@ -59,12 +70,8 @@ export declare var StartSigningJobRequest$: StaticStructureSchema;
|
|
|
59
70
|
export declare var StartSigningJobResponse$: StaticStructureSchema;
|
|
60
71
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
61
72
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
62
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
63
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
64
73
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
65
74
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
66
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
67
|
-
export declare var SignerServiceException$: StaticErrorSchema;
|
|
68
75
|
export declare var AddProfilePermission$: StaticOperationSchema;
|
|
69
76
|
export declare var CancelSigningProfile$: StaticOperationSchema;
|
|
70
77
|
export declare var DescribeSigningJob$: StaticOperationSchema;
|
|
@@ -1,14 +1,24 @@
|
|
|
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 SignerServiceException$: StaticErrorSchema;
|
|
6
8
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
|
+
export declare var BadRequestException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var InternalServiceErrorException$: StaticErrorSchema;
|
|
12
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ServiceLimitExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
16
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
17
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
18
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
7
19
|
export declare var AddProfilePermissionRequest$: StaticStructureSchema;
|
|
8
20
|
export declare var AddProfilePermissionResponse$: StaticStructureSchema;
|
|
9
|
-
export declare var BadRequestException$: StaticErrorSchema;
|
|
10
21
|
export declare var CancelSigningProfileRequest$: StaticStructureSchema;
|
|
11
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
12
22
|
export declare var DescribeSigningJobRequest$: StaticStructureSchema;
|
|
13
23
|
export declare var DescribeSigningJobResponse$: StaticStructureSchema;
|
|
14
24
|
export declare var Destination$: StaticStructureSchema;
|
|
@@ -20,7 +30,6 @@ export declare var GetSigningPlatformResponse$: StaticStructureSchema;
|
|
|
20
30
|
export declare var GetSigningProfileRequest$: StaticStructureSchema;
|
|
21
31
|
export declare var GetSigningProfileResponse$: StaticStructureSchema;
|
|
22
32
|
export declare var HashAlgorithmOptions$: StaticStructureSchema;
|
|
23
|
-
export declare var InternalServiceErrorException$: StaticErrorSchema;
|
|
24
33
|
export declare var ListProfilePermissionsRequest$: StaticStructureSchema;
|
|
25
34
|
export declare var ListProfilePermissionsResponse$: StaticStructureSchema;
|
|
26
35
|
export declare var ListSigningJobsRequest$: StaticStructureSchema;
|
|
@@ -31,19 +40,16 @@ export declare var ListSigningProfilesRequest$: StaticStructureSchema;
|
|
|
31
40
|
export declare var ListSigningProfilesResponse$: StaticStructureSchema;
|
|
32
41
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
33
42
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
34
|
-
export declare var NotFoundException$: StaticErrorSchema;
|
|
35
43
|
export declare var Permission$: StaticStructureSchema;
|
|
36
44
|
export declare var PutSigningProfileRequest$: StaticStructureSchema;
|
|
37
45
|
export declare var PutSigningProfileResponse$: StaticStructureSchema;
|
|
38
46
|
export declare var RemoveProfilePermissionRequest$: StaticStructureSchema;
|
|
39
47
|
export declare var RemoveProfilePermissionResponse$: StaticStructureSchema;
|
|
40
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
41
48
|
export declare var RevokeSignatureRequest$: StaticStructureSchema;
|
|
42
49
|
export declare var RevokeSigningProfileRequest$: StaticStructureSchema;
|
|
43
50
|
export declare var S3Destination$: StaticStructureSchema;
|
|
44
51
|
export declare var S3SignedObject$: StaticStructureSchema;
|
|
45
52
|
export declare var S3Source$: StaticStructureSchema;
|
|
46
|
-
export declare var ServiceLimitExceededException$: StaticErrorSchema;
|
|
47
53
|
export declare var SignatureValidityPeriod$: StaticStructureSchema;
|
|
48
54
|
export declare var SignedObject$: StaticStructureSchema;
|
|
49
55
|
export declare var SigningConfiguration$: StaticStructureSchema;
|
|
@@ -63,12 +69,8 @@ export declare var StartSigningJobRequest$: StaticStructureSchema;
|
|
|
63
69
|
export declare var StartSigningJobResponse$: StaticStructureSchema;
|
|
64
70
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
65
71
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
66
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
67
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
68
72
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
69
73
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
70
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
71
|
-
export declare var SignerServiceException$: StaticErrorSchema;
|
|
72
74
|
export declare var AddProfilePermission$: StaticOperationSchema;
|
|
73
75
|
export declare var CancelSigningProfile$: StaticOperationSchema;
|
|
74
76
|
export declare var DescribeSigningJob$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-signer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Signer 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-signer",
|
|
@@ -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",
|