@aws-sdk/client-s3-control 3.48.0 → 3.52.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/CHANGELOG.md +35 -0
- package/README.md +1 -4
- package/dist-cjs/models/models_0.js +89 -4
- package/dist-cjs/protocols/Aws_restXml.js +314 -0
- package/dist-es/models/models_0.js +67 -3
- package/dist-es/protocols/Aws_restXml.js +358 -44
- package/dist-types/S3Control.d.ts +297 -283
- package/dist-types/S3ControlClient.d.ts +1 -4
- package/dist-types/commands/CreateAccessPointCommand.d.ts +7 -7
- package/dist-types/commands/CreateAccessPointForObjectLambdaCommand.d.ts +4 -3
- package/dist-types/commands/CreateBucketCommand.d.ts +14 -9
- package/dist-types/commands/CreateJobCommand.d.ts +3 -4
- package/dist-types/commands/CreateMultiRegionAccessPointCommand.d.ts +9 -10
- package/dist-types/commands/DeleteAccessPointForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAccessPointPolicyForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/DeleteBucketCommand.d.ts +5 -6
- package/dist-types/commands/DeleteBucketLifecycleConfigurationCommand.d.ts +8 -7
- package/dist-types/commands/DeleteBucketPolicyCommand.d.ts +13 -12
- package/dist-types/commands/DeleteBucketTaggingCommand.d.ts +7 -8
- package/dist-types/commands/DeleteJobTaggingCommand.d.ts +3 -2
- package/dist-types/commands/DeleteMultiRegionAccessPointCommand.d.ts +7 -8
- package/dist-types/commands/DeleteStorageLensConfigurationCommand.d.ts +6 -7
- package/dist-types/commands/DeleteStorageLensConfigurationTaggingCommand.d.ts +7 -7
- package/dist-types/commands/DescribeJobCommand.d.ts +1 -2
- package/dist-types/commands/DescribeMultiRegionAccessPointOperationCommand.d.ts +2 -3
- package/dist-types/commands/GetAccessPointConfigurationForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/GetAccessPointPolicyForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/GetAccessPointPolicyStatusCommand.d.ts +3 -1
- package/dist-types/commands/GetBucketCommand.d.ts +10 -12
- package/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +12 -10
- package/dist-types/commands/GetBucketPolicyCommand.d.ts +17 -12
- package/dist-types/commands/GetBucketTaggingCommand.d.ts +7 -7
- package/dist-types/commands/GetMultiRegionAccessPointCommand.d.ts +3 -4
- package/dist-types/commands/GetMultiRegionAccessPointPolicyCommand.d.ts +5 -5
- package/dist-types/commands/GetMultiRegionAccessPointPolicyStatusCommand.d.ts +6 -6
- package/dist-types/commands/GetPublicAccessBlockCommand.d.ts +2 -2
- package/dist-types/commands/GetStorageLensConfigurationCommand.d.ts +5 -7
- package/dist-types/commands/GetStorageLensConfigurationTaggingCommand.d.ts +7 -6
- package/dist-types/commands/ListAccessPointsCommand.d.ts +4 -4
- package/dist-types/commands/ListAccessPointsForObjectLambdaCommand.d.ts +5 -5
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultiRegionAccessPointsCommand.d.ts +6 -7
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +7 -7
- package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +3 -2
- package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +3 -3
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +9 -7
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +14 -11
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +22 -20
- package/dist-types/commands/PutJobTaggingCommand.d.ts +16 -14
- package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +7 -7
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +4 -3
- package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +3 -4
- package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +7 -8
- package/dist-types/commands/UpdateJobPriorityCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobStatusCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +570 -265
- package/dist-types/ts3.4/models/models_0.d.ts +149 -2
- package/package.json +46 -40
|
@@ -465,6 +465,114 @@ export declare namespace JobManifest {
|
|
|
465
465
|
|
|
466
466
|
const filterSensitiveLog: (obj: JobManifest) => any;
|
|
467
467
|
}
|
|
468
|
+
export declare enum ReplicationStatus {
|
|
469
|
+
COMPLETED = "COMPLETED",
|
|
470
|
+
FAILED = "FAILED",
|
|
471
|
+
NONE = "NONE",
|
|
472
|
+
REPLICA = "REPLICA"
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
export interface JobManifestGeneratorFilter {
|
|
476
|
+
|
|
477
|
+
EligibleForReplication?: boolean;
|
|
478
|
+
|
|
479
|
+
CreatedAfter?: Date;
|
|
480
|
+
|
|
481
|
+
CreatedBefore?: Date;
|
|
482
|
+
|
|
483
|
+
ObjectReplicationStatuses?: (ReplicationStatus | string)[];
|
|
484
|
+
}
|
|
485
|
+
export declare namespace JobManifestGeneratorFilter {
|
|
486
|
+
|
|
487
|
+
const filterSensitiveLog: (obj: JobManifestGeneratorFilter) => any;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
export interface SSEKMSEncryption {
|
|
491
|
+
|
|
492
|
+
KeyId: string | undefined;
|
|
493
|
+
}
|
|
494
|
+
export declare namespace SSEKMSEncryption {
|
|
495
|
+
|
|
496
|
+
const filterSensitiveLog: (obj: SSEKMSEncryption) => any;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
export interface SSES3Encryption {
|
|
500
|
+
}
|
|
501
|
+
export declare namespace SSES3Encryption {
|
|
502
|
+
|
|
503
|
+
const filterSensitiveLog: (obj: SSES3Encryption) => any;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
export interface GeneratedManifestEncryption {
|
|
507
|
+
|
|
508
|
+
SSES3?: SSES3Encryption;
|
|
509
|
+
|
|
510
|
+
SSEKMS?: SSEKMSEncryption;
|
|
511
|
+
}
|
|
512
|
+
export declare namespace GeneratedManifestEncryption {
|
|
513
|
+
|
|
514
|
+
const filterSensitiveLog: (obj: GeneratedManifestEncryption) => any;
|
|
515
|
+
}
|
|
516
|
+
export declare enum GeneratedManifestFormat {
|
|
517
|
+
S3InventoryReport_CSV_20211130 = "S3InventoryReport_CSV_20211130"
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
export interface S3ManifestOutputLocation {
|
|
521
|
+
|
|
522
|
+
ExpectedManifestBucketOwner?: string;
|
|
523
|
+
|
|
524
|
+
Bucket: string | undefined;
|
|
525
|
+
|
|
526
|
+
ManifestPrefix?: string;
|
|
527
|
+
|
|
528
|
+
ManifestEncryption?: GeneratedManifestEncryption;
|
|
529
|
+
|
|
530
|
+
ManifestFormat: GeneratedManifestFormat | string | undefined;
|
|
531
|
+
}
|
|
532
|
+
export declare namespace S3ManifestOutputLocation {
|
|
533
|
+
|
|
534
|
+
const filterSensitiveLog: (obj: S3ManifestOutputLocation) => any;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
export interface S3JobManifestGenerator {
|
|
538
|
+
|
|
539
|
+
ExpectedBucketOwner?: string;
|
|
540
|
+
|
|
541
|
+
SourceBucket: string | undefined;
|
|
542
|
+
|
|
543
|
+
ManifestOutputLocation?: S3ManifestOutputLocation;
|
|
544
|
+
|
|
545
|
+
Filter?: JobManifestGeneratorFilter;
|
|
546
|
+
|
|
547
|
+
EnableManifestOutput: boolean | undefined;
|
|
548
|
+
}
|
|
549
|
+
export declare namespace S3JobManifestGenerator {
|
|
550
|
+
|
|
551
|
+
const filterSensitiveLog: (obj: S3JobManifestGenerator) => any;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
export declare type JobManifestGenerator = JobManifestGenerator.S3JobManifestGeneratorMember | JobManifestGenerator.$UnknownMember;
|
|
555
|
+
export declare namespace JobManifestGenerator {
|
|
556
|
+
|
|
557
|
+
interface S3JobManifestGeneratorMember {
|
|
558
|
+
S3JobManifestGenerator: S3JobManifestGenerator;
|
|
559
|
+
$unknown?: never;
|
|
560
|
+
}
|
|
561
|
+
interface $UnknownMember {
|
|
562
|
+
S3JobManifestGenerator?: never;
|
|
563
|
+
$unknown: [
|
|
564
|
+
string,
|
|
565
|
+
any
|
|
566
|
+
];
|
|
567
|
+
}
|
|
568
|
+
interface Visitor<T> {
|
|
569
|
+
S3JobManifestGenerator: (value: S3JobManifestGenerator) => T;
|
|
570
|
+
_: (name: string, value: any) => T;
|
|
571
|
+
}
|
|
572
|
+
const visit: <T>(value: JobManifestGenerator, visitor: Visitor<T>) => T;
|
|
573
|
+
|
|
574
|
+
const filterSensitiveLog: (obj: JobManifestGenerator) => any;
|
|
575
|
+
}
|
|
468
576
|
|
|
469
577
|
export interface LambdaInvokeOperation {
|
|
470
578
|
|
|
@@ -644,6 +752,7 @@ export declare enum S3ObjectLockMode {
|
|
|
644
752
|
export declare enum S3StorageClass {
|
|
645
753
|
DEEP_ARCHIVE = "DEEP_ARCHIVE",
|
|
646
754
|
GLACIER = "GLACIER",
|
|
755
|
+
GLACIER_IR = "GLACIER_IR",
|
|
647
756
|
INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
|
|
648
757
|
ONEZONE_IA = "ONEZONE_IA",
|
|
649
758
|
STANDARD = "STANDARD",
|
|
@@ -744,6 +853,13 @@ export declare namespace S3SetObjectTaggingOperation {
|
|
|
744
853
|
const filterSensitiveLog: (obj: S3SetObjectTaggingOperation) => any;
|
|
745
854
|
}
|
|
746
855
|
|
|
856
|
+
export interface S3ReplicateObjectOperation {
|
|
857
|
+
}
|
|
858
|
+
export declare namespace S3ReplicateObjectOperation {
|
|
859
|
+
|
|
860
|
+
const filterSensitiveLog: (obj: S3ReplicateObjectOperation) => any;
|
|
861
|
+
}
|
|
862
|
+
|
|
747
863
|
export interface JobOperation {
|
|
748
864
|
|
|
749
865
|
LambdaInvoke?: LambdaInvokeOperation;
|
|
@@ -761,6 +877,8 @@ export interface JobOperation {
|
|
|
761
877
|
S3PutObjectLegalHold?: S3SetObjectLegalHoldOperation;
|
|
762
878
|
|
|
763
879
|
S3PutObjectRetention?: S3SetObjectRetentionOperation;
|
|
880
|
+
|
|
881
|
+
S3ReplicateObject?: S3ReplicateObjectOperation;
|
|
764
882
|
}
|
|
765
883
|
export declare namespace JobOperation {
|
|
766
884
|
|
|
@@ -802,7 +920,7 @@ export interface CreateJobRequest {
|
|
|
802
920
|
|
|
803
921
|
ClientRequestToken?: string;
|
|
804
922
|
|
|
805
|
-
Manifest
|
|
923
|
+
Manifest?: JobManifest;
|
|
806
924
|
|
|
807
925
|
Description?: string;
|
|
808
926
|
|
|
@@ -811,6 +929,8 @@ export interface CreateJobRequest {
|
|
|
811
929
|
RoleArn: string | undefined;
|
|
812
930
|
|
|
813
931
|
Tags?: S3Tag[];
|
|
932
|
+
|
|
933
|
+
ManifestGenerator?: JobManifestGenerator;
|
|
814
934
|
}
|
|
815
935
|
export declare namespace CreateJobRequest {
|
|
816
936
|
|
|
@@ -1040,6 +1160,26 @@ export declare namespace JobFailure {
|
|
|
1040
1160
|
const filterSensitiveLog: (obj: JobFailure) => any;
|
|
1041
1161
|
}
|
|
1042
1162
|
|
|
1163
|
+
export interface S3GeneratedManifestDescriptor {
|
|
1164
|
+
|
|
1165
|
+
Format?: GeneratedManifestFormat | string;
|
|
1166
|
+
|
|
1167
|
+
Location?: JobManifestLocation;
|
|
1168
|
+
}
|
|
1169
|
+
export declare namespace S3GeneratedManifestDescriptor {
|
|
1170
|
+
|
|
1171
|
+
const filterSensitiveLog: (obj: S3GeneratedManifestDescriptor) => any;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
export interface JobTimers {
|
|
1175
|
+
|
|
1176
|
+
ElapsedTimeInActiveSeconds?: number;
|
|
1177
|
+
}
|
|
1178
|
+
export declare namespace JobTimers {
|
|
1179
|
+
|
|
1180
|
+
const filterSensitiveLog: (obj: JobTimers) => any;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1043
1183
|
export interface JobProgressSummary {
|
|
1044
1184
|
|
|
1045
1185
|
TotalNumberOfTasks?: number;
|
|
@@ -1047,6 +1187,8 @@ export interface JobProgressSummary {
|
|
|
1047
1187
|
NumberOfTasksSucceeded?: number;
|
|
1048
1188
|
|
|
1049
1189
|
NumberOfTasksFailed?: number;
|
|
1190
|
+
|
|
1191
|
+
Timers?: JobTimers;
|
|
1050
1192
|
}
|
|
1051
1193
|
export declare namespace JobProgressSummary {
|
|
1052
1194
|
|
|
@@ -1103,6 +1245,10 @@ export interface JobDescriptor {
|
|
|
1103
1245
|
SuspendedDate?: Date;
|
|
1104
1246
|
|
|
1105
1247
|
SuspendedCause?: string;
|
|
1248
|
+
|
|
1249
|
+
ManifestGenerator?: JobManifestGenerator;
|
|
1250
|
+
|
|
1251
|
+
GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor;
|
|
1106
1252
|
}
|
|
1107
1253
|
export declare namespace JobDescriptor {
|
|
1108
1254
|
|
|
@@ -1883,7 +2029,8 @@ export declare enum OperationName {
|
|
|
1883
2029
|
S3PutObjectCopy = "S3PutObjectCopy",
|
|
1884
2030
|
S3PutObjectLegalHold = "S3PutObjectLegalHold",
|
|
1885
2031
|
S3PutObjectRetention = "S3PutObjectRetention",
|
|
1886
|
-
S3PutObjectTagging = "S3PutObjectTagging"
|
|
2032
|
+
S3PutObjectTagging = "S3PutObjectTagging",
|
|
2033
|
+
S3ReplicateObject = "S3ReplicateObject"
|
|
1887
2034
|
}
|
|
1888
2035
|
|
|
1889
2036
|
export interface JobListDescriptor {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.52.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*",
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
13
13
|
"test": "yarn test:unit",
|
|
14
14
|
"test:unit": "ts-mocha test/**/*.spec.ts"
|
|
15
15
|
},
|
|
@@ -20,52 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-blob-browser": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/hash-stream-node": "3.
|
|
30
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
31
|
-
"@aws-sdk/md5-js": "3.
|
|
32
|
-
"@aws-sdk/middleware-apply-body-checksum": "3.
|
|
33
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
34
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
35
|
-
"@aws-sdk/middleware-logger": "3.
|
|
36
|
-
"@aws-sdk/middleware-retry": "3.
|
|
37
|
-
"@aws-sdk/middleware-sdk-s3-control": "3.
|
|
38
|
-
"@aws-sdk/middleware-serde": "3.
|
|
39
|
-
"@aws-sdk/middleware-signing": "3.
|
|
40
|
-
"@aws-sdk/middleware-stack": "3.
|
|
41
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
42
|
-
"@aws-sdk/node-config-provider": "3.
|
|
43
|
-
"@aws-sdk/node-http-handler": "3.
|
|
44
|
-
"@aws-sdk/protocol-http": "3.
|
|
45
|
-
"@aws-sdk/smithy-client": "3.
|
|
46
|
-
"@aws-sdk/types": "3.
|
|
47
|
-
"@aws-sdk/url-parser": "3.
|
|
48
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
49
|
-
"@aws-sdk/util-base64-node": "3.
|
|
50
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
51
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
52
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
53
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
57
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
58
|
-
"@aws-sdk/xml-builder": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.52.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.52.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.52.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.52.0",
|
|
27
|
+
"@aws-sdk/hash-blob-browser": "3.52.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.52.0",
|
|
29
|
+
"@aws-sdk/hash-stream-node": "3.52.0",
|
|
30
|
+
"@aws-sdk/invalid-dependency": "3.52.0",
|
|
31
|
+
"@aws-sdk/md5-js": "3.52.0",
|
|
32
|
+
"@aws-sdk/middleware-apply-body-checksum": "3.52.0",
|
|
33
|
+
"@aws-sdk/middleware-content-length": "3.52.0",
|
|
34
|
+
"@aws-sdk/middleware-host-header": "3.52.0",
|
|
35
|
+
"@aws-sdk/middleware-logger": "3.52.0",
|
|
36
|
+
"@aws-sdk/middleware-retry": "3.52.0",
|
|
37
|
+
"@aws-sdk/middleware-sdk-s3-control": "3.52.0",
|
|
38
|
+
"@aws-sdk/middleware-serde": "3.52.0",
|
|
39
|
+
"@aws-sdk/middleware-signing": "3.52.0",
|
|
40
|
+
"@aws-sdk/middleware-stack": "3.52.0",
|
|
41
|
+
"@aws-sdk/middleware-user-agent": "3.52.0",
|
|
42
|
+
"@aws-sdk/node-config-provider": "3.52.0",
|
|
43
|
+
"@aws-sdk/node-http-handler": "3.52.0",
|
|
44
|
+
"@aws-sdk/protocol-http": "3.52.0",
|
|
45
|
+
"@aws-sdk/smithy-client": "3.52.0",
|
|
46
|
+
"@aws-sdk/types": "3.52.0",
|
|
47
|
+
"@aws-sdk/url-parser": "3.52.0",
|
|
48
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
49
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
51
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
52
|
+
"@aws-sdk/util-defaults-mode-browser": "3.52.0",
|
|
53
|
+
"@aws-sdk/util-defaults-mode-node": "3.52.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.52.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.52.0",
|
|
56
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
57
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
58
|
+
"@aws-sdk/xml-builder": "3.52.0",
|
|
59
59
|
"entities": "2.2.0",
|
|
60
60
|
"fast-xml-parser": "3.19.0",
|
|
61
61
|
"tslib": "^2.3.0",
|
|
62
62
|
"uuid": "^8.3.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
65
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
66
|
+
"@tsconfig/recommended": "1.0.1",
|
|
66
67
|
"@types/mocha": "^8.0.4",
|
|
67
68
|
"@types/node": "^12.7.5",
|
|
68
|
-
"@types/uuid": "^8.3.0"
|
|
69
|
+
"@types/uuid": "^8.3.0",
|
|
70
|
+
"concurrently": "7.0.0",
|
|
71
|
+
"downlevel-dts": "0.7.0",
|
|
72
|
+
"rimraf": "3.0.2",
|
|
73
|
+
"typedoc": "0.19.2",
|
|
74
|
+
"typescript": "~4.3.5"
|
|
69
75
|
},
|
|
70
76
|
"engines": {
|
|
71
77
|
"node": ">=12.0.0"
|