@aws-sdk/client-workdocs 3.208.0 → 3.210.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 +26 -0
- package/dist-cjs/WorkDocs.js +30 -0
- package/dist-cjs/commands/DeleteDocumentVersionCommand.js +46 -0
- package/dist-cjs/commands/RestoreDocumentVersionsCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +75 -46
- package/dist-cjs/protocols/Aws_restJson1.js +187 -2
- package/dist-cjs/runtimeConfig.shared.js +2 -1
- package/dist-es/WorkDocs.js +30 -0
- package/dist-es/commands/DeleteDocumentVersionCommand.js +42 -0
- package/dist-es/commands/RestoreDocumentVersionsCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +65 -38
- package/dist-es/protocols/Aws_restJson1.js +181 -0
- package/dist-es/runtimeConfig.shared.js +2 -1
- package/dist-types/WorkDocs.d.ts +41 -2
- package/dist-types/WorkDocsClient.d.ts +30 -2
- package/dist-types/commands/CreateNotificationSubscriptionCommand.d.ts +1 -2
- package/dist-types/commands/DeleteDocumentVersionCommand.d.ts +37 -0
- package/dist-types/commands/RestoreDocumentVersionsCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +108 -51
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -3
- package/dist-types/ts3.4/WorkDocs.d.ts +34 -0
- package/dist-types/ts3.4/WorkDocsClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteDocumentVersionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/RestoreDocumentVersionsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -35
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -3
- package/package.json +11 -13
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteDocumentVersionRequest } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WorkDocsClientResolvedConfig,
|
|
14
|
+
} from "../WorkDocsClient";
|
|
15
|
+
export interface DeleteDocumentVersionCommandInput
|
|
16
|
+
extends DeleteDocumentVersionRequest {}
|
|
17
|
+
export interface DeleteDocumentVersionCommandOutput extends __MetadataBearer {}
|
|
18
|
+
export declare class DeleteDocumentVersionCommand extends $Command<
|
|
19
|
+
DeleteDocumentVersionCommandInput,
|
|
20
|
+
DeleteDocumentVersionCommandOutput,
|
|
21
|
+
WorkDocsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteDocumentVersionCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
25
|
+
constructor(input: DeleteDocumentVersionCommandInput);
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
DeleteDocumentVersionCommandInput,
|
|
32
|
+
DeleteDocumentVersionCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { RestoreDocumentVersionsRequest } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WorkDocsClientResolvedConfig,
|
|
14
|
+
} from "../WorkDocsClient";
|
|
15
|
+
export interface RestoreDocumentVersionsCommandInput
|
|
16
|
+
extends RestoreDocumentVersionsRequest {}
|
|
17
|
+
export interface RestoreDocumentVersionsCommandOutput
|
|
18
|
+
extends __MetadataBearer {}
|
|
19
|
+
export declare class RestoreDocumentVersionsCommand extends $Command<
|
|
20
|
+
RestoreDocumentVersionsCommandInput,
|
|
21
|
+
RestoreDocumentVersionsCommandOutput,
|
|
22
|
+
WorkDocsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: RestoreDocumentVersionsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: RestoreDocumentVersionsCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
RestoreDocumentVersionsCommandInput,
|
|
33
|
+
RestoreDocumentVersionsCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -11,6 +11,7 @@ export * from "./DeactivateUserCommand";
|
|
|
11
11
|
export * from "./DeleteCommentCommand";
|
|
12
12
|
export * from "./DeleteCustomMetadataCommand";
|
|
13
13
|
export * from "./DeleteDocumentCommand";
|
|
14
|
+
export * from "./DeleteDocumentVersionCommand";
|
|
14
15
|
export * from "./DeleteFolderCommand";
|
|
15
16
|
export * from "./DeleteFolderContentsCommand";
|
|
16
17
|
export * from "./DeleteLabelsCommand";
|
|
@@ -35,6 +36,7 @@ export * from "./GetResourcesCommand";
|
|
|
35
36
|
export * from "./InitiateDocumentVersionUploadCommand";
|
|
36
37
|
export * from "./RemoveAllResourcePermissionsCommand";
|
|
37
38
|
export * from "./RemoveResourcePermissionCommand";
|
|
39
|
+
export * from "./RestoreDocumentVersionsCommand";
|
|
38
40
|
export * from "./UpdateDocumentCommand";
|
|
39
41
|
export * from "./UpdateDocumentVersionCommand";
|
|
40
42
|
export * from "./UpdateFolderCommand";
|
|
@@ -5,6 +5,17 @@ export interface AbortDocumentVersionUploadRequest {
|
|
|
5
5
|
DocumentId: string | undefined;
|
|
6
6
|
VersionId: string | undefined;
|
|
7
7
|
}
|
|
8
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
9
|
+
readonly name: "ConcurrentModificationException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
Message?: string;
|
|
12
|
+
constructor(
|
|
13
|
+
opts: __ExceptionOptionType<
|
|
14
|
+
ConcurrentModificationException,
|
|
15
|
+
__BaseException
|
|
16
|
+
>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
8
19
|
export declare class EntityNotExistsException extends __BaseException {
|
|
9
20
|
readonly name: "EntityNotExistsException";
|
|
10
21
|
readonly $fault: "client";
|
|
@@ -383,6 +394,7 @@ export declare class TooManyLabelsException extends __BaseException {
|
|
|
383
394
|
}
|
|
384
395
|
export declare enum SubscriptionProtocolType {
|
|
385
396
|
HTTPS = "HTTPS",
|
|
397
|
+
SQS = "SQS",
|
|
386
398
|
}
|
|
387
399
|
export declare enum SubscriptionType {
|
|
388
400
|
ALL = "ALL",
|
|
@@ -401,6 +413,14 @@ export interface Subscription {
|
|
|
401
413
|
export interface CreateNotificationSubscriptionResponse {
|
|
402
414
|
Subscription?: Subscription;
|
|
403
415
|
}
|
|
416
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
417
|
+
readonly name: "InvalidArgumentException";
|
|
418
|
+
readonly $fault: "client";
|
|
419
|
+
Message?: string;
|
|
420
|
+
constructor(
|
|
421
|
+
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
422
|
+
);
|
|
423
|
+
}
|
|
404
424
|
export declare class TooManySubscriptionsException extends __BaseException {
|
|
405
425
|
readonly name: "TooManySubscriptionsException";
|
|
406
426
|
readonly $fault: "client";
|
|
@@ -441,21 +461,24 @@ export interface DeleteCustomMetadataRequest {
|
|
|
441
461
|
DeleteAll?: boolean;
|
|
442
462
|
}
|
|
443
463
|
export interface DeleteCustomMetadataResponse {}
|
|
444
|
-
export
|
|
445
|
-
|
|
464
|
+
export interface DeleteDocumentRequest {
|
|
465
|
+
AuthenticationToken?: string;
|
|
466
|
+
DocumentId: string | undefined;
|
|
467
|
+
}
|
|
468
|
+
export interface DeleteDocumentVersionRequest {
|
|
469
|
+
AuthenticationToken?: string;
|
|
470
|
+
DocumentId: string | undefined;
|
|
471
|
+
VersionId: string | undefined;
|
|
472
|
+
DeletePriorVersions: boolean | undefined;
|
|
473
|
+
}
|
|
474
|
+
export declare class InvalidOperationException extends __BaseException {
|
|
475
|
+
readonly name: "InvalidOperationException";
|
|
446
476
|
readonly $fault: "client";
|
|
447
477
|
Message?: string;
|
|
448
478
|
constructor(
|
|
449
|
-
opts: __ExceptionOptionType<
|
|
450
|
-
ConcurrentModificationException,
|
|
451
|
-
__BaseException
|
|
452
|
-
>
|
|
479
|
+
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
|
453
480
|
);
|
|
454
481
|
}
|
|
455
|
-
export interface DeleteDocumentRequest {
|
|
456
|
-
AuthenticationToken?: string;
|
|
457
|
-
DocumentId: string | undefined;
|
|
458
|
-
}
|
|
459
482
|
export interface DeleteFolderRequest {
|
|
460
483
|
AuthenticationToken?: string;
|
|
461
484
|
FolderId: string | undefined;
|
|
@@ -495,14 +518,6 @@ export interface DescribeActivitiesResponse {
|
|
|
495
518
|
UserActivities?: Activity[];
|
|
496
519
|
Marker?: string;
|
|
497
520
|
}
|
|
498
|
-
export declare class InvalidArgumentException extends __BaseException {
|
|
499
|
-
readonly name: "InvalidArgumentException";
|
|
500
|
-
readonly $fault: "client";
|
|
501
|
-
Message?: string;
|
|
502
|
-
constructor(
|
|
503
|
-
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
504
|
-
);
|
|
505
|
-
}
|
|
506
521
|
export interface DescribeCommentsRequest {
|
|
507
522
|
AuthenticationToken?: string;
|
|
508
523
|
DocumentId: string | undefined;
|
|
@@ -554,6 +569,14 @@ export interface DescribeDocumentVersionsResponse {
|
|
|
554
569
|
DocumentVersions?: DocumentVersionMetadata[];
|
|
555
570
|
Marker?: string;
|
|
556
571
|
}
|
|
572
|
+
export declare class InvalidPasswordException extends __BaseException {
|
|
573
|
+
readonly name: "InvalidPasswordException";
|
|
574
|
+
readonly $fault: "client";
|
|
575
|
+
Message?: string;
|
|
576
|
+
constructor(
|
|
577
|
+
opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>
|
|
578
|
+
);
|
|
579
|
+
}
|
|
557
580
|
export declare enum OrderType {
|
|
558
581
|
ASCENDING = "ASCENDING",
|
|
559
582
|
DESCENDING = "DESCENDING",
|
|
@@ -699,14 +722,6 @@ export interface GetDocumentResponse {
|
|
|
699
722
|
Metadata?: DocumentMetadata;
|
|
700
723
|
CustomMetadata?: Record<string, string>;
|
|
701
724
|
}
|
|
702
|
-
export declare class InvalidPasswordException extends __BaseException {
|
|
703
|
-
readonly name: "InvalidPasswordException";
|
|
704
|
-
readonly $fault: "client";
|
|
705
|
-
Message?: string;
|
|
706
|
-
constructor(
|
|
707
|
-
opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>
|
|
708
|
-
);
|
|
709
|
-
}
|
|
710
725
|
export interface GetDocumentPathRequest {
|
|
711
726
|
AuthenticationToken?: string;
|
|
712
727
|
DocumentId: string | undefined;
|
|
@@ -785,7 +800,7 @@ export interface InitiateDocumentVersionUploadRequest {
|
|
|
785
800
|
ContentModifiedTimestamp?: Date;
|
|
786
801
|
ContentType?: string;
|
|
787
802
|
DocumentSizeInBytes?: number;
|
|
788
|
-
ParentFolderId
|
|
803
|
+
ParentFolderId?: string;
|
|
789
804
|
}
|
|
790
805
|
export interface UploadMetadata {
|
|
791
806
|
UploadUrl?: string;
|
|
@@ -835,6 +850,10 @@ export interface RemoveResourcePermissionRequest {
|
|
|
835
850
|
PrincipalId: string | undefined;
|
|
836
851
|
PrincipalType?: PrincipalType | string;
|
|
837
852
|
}
|
|
853
|
+
export interface RestoreDocumentVersionsRequest {
|
|
854
|
+
AuthenticationToken?: string;
|
|
855
|
+
DocumentId: string | undefined;
|
|
856
|
+
}
|
|
838
857
|
export interface UpdateDocumentRequest {
|
|
839
858
|
AuthenticationToken?: string;
|
|
840
859
|
DocumentId: string | undefined;
|
|
@@ -842,14 +861,6 @@ export interface UpdateDocumentRequest {
|
|
|
842
861
|
ParentFolderId?: string;
|
|
843
862
|
ResourceState?: ResourceStateType | string;
|
|
844
863
|
}
|
|
845
|
-
export declare class InvalidOperationException extends __BaseException {
|
|
846
|
-
readonly name: "InvalidOperationException";
|
|
847
|
-
readonly $fault: "client";
|
|
848
|
-
Message?: string;
|
|
849
|
-
constructor(
|
|
850
|
-
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
|
851
|
-
);
|
|
852
|
-
}
|
|
853
864
|
export declare enum DocumentVersionStatus {
|
|
854
865
|
ACTIVE = "ACTIVE",
|
|
855
866
|
}
|
|
@@ -1001,6 +1012,9 @@ export declare const DeleteCustomMetadataResponseFilterSensitiveLog: (
|
|
|
1001
1012
|
export declare const DeleteDocumentRequestFilterSensitiveLog: (
|
|
1002
1013
|
obj: DeleteDocumentRequest
|
|
1003
1014
|
) => any;
|
|
1015
|
+
export declare const DeleteDocumentVersionRequestFilterSensitiveLog: (
|
|
1016
|
+
obj: DeleteDocumentVersionRequest
|
|
1017
|
+
) => any;
|
|
1004
1018
|
export declare const DeleteFolderRequestFilterSensitiveLog: (
|
|
1005
1019
|
obj: DeleteFolderRequest
|
|
1006
1020
|
) => any;
|
|
@@ -1144,6 +1158,9 @@ export declare const RemoveAllResourcePermissionsRequestFilterSensitiveLog: (
|
|
|
1144
1158
|
export declare const RemoveResourcePermissionRequestFilterSensitiveLog: (
|
|
1145
1159
|
obj: RemoveResourcePermissionRequest
|
|
1146
1160
|
) => any;
|
|
1161
|
+
export declare const RestoreDocumentVersionsRequestFilterSensitiveLog: (
|
|
1162
|
+
obj: RestoreDocumentVersionsRequest
|
|
1163
|
+
) => any;
|
|
1147
1164
|
export declare const UpdateDocumentRequestFilterSensitiveLog: (
|
|
1148
1165
|
obj: UpdateDocumentRequest
|
|
1149
1166
|
) => any;
|
|
@@ -55,6 +55,10 @@ import {
|
|
|
55
55
|
DeleteDocumentCommandInput,
|
|
56
56
|
DeleteDocumentCommandOutput,
|
|
57
57
|
} from "../commands/DeleteDocumentCommand";
|
|
58
|
+
import {
|
|
59
|
+
DeleteDocumentVersionCommandInput,
|
|
60
|
+
DeleteDocumentVersionCommandOutput,
|
|
61
|
+
} from "../commands/DeleteDocumentVersionCommand";
|
|
58
62
|
import {
|
|
59
63
|
DeleteFolderCommandInput,
|
|
60
64
|
DeleteFolderCommandOutput,
|
|
@@ -151,6 +155,10 @@ import {
|
|
|
151
155
|
RemoveResourcePermissionCommandInput,
|
|
152
156
|
RemoveResourcePermissionCommandOutput,
|
|
153
157
|
} from "../commands/RemoveResourcePermissionCommand";
|
|
158
|
+
import {
|
|
159
|
+
RestoreDocumentVersionsCommandInput,
|
|
160
|
+
RestoreDocumentVersionsCommandOutput,
|
|
161
|
+
} from "../commands/RestoreDocumentVersionsCommand";
|
|
154
162
|
import {
|
|
155
163
|
UpdateDocumentCommandInput,
|
|
156
164
|
UpdateDocumentCommandOutput,
|
|
@@ -219,6 +227,10 @@ export declare const serializeAws_restJson1DeleteDocumentCommand: (
|
|
|
219
227
|
input: DeleteDocumentCommandInput,
|
|
220
228
|
context: __SerdeContext
|
|
221
229
|
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_restJson1DeleteDocumentVersionCommand: (
|
|
231
|
+
input: DeleteDocumentVersionCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
222
234
|
export declare const serializeAws_restJson1DeleteFolderCommand: (
|
|
223
235
|
input: DeleteFolderCommandInput,
|
|
224
236
|
context: __SerdeContext
|
|
@@ -315,6 +327,10 @@ export declare const serializeAws_restJson1RemoveResourcePermissionCommand: (
|
|
|
315
327
|
input: RemoveResourcePermissionCommandInput,
|
|
316
328
|
context: __SerdeContext
|
|
317
329
|
) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const serializeAws_restJson1RestoreDocumentVersionsCommand: (
|
|
331
|
+
input: RestoreDocumentVersionsCommandInput,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<__HttpRequest>;
|
|
318
334
|
export declare const serializeAws_restJson1UpdateDocumentCommand: (
|
|
319
335
|
input: UpdateDocumentCommandInput,
|
|
320
336
|
context: __SerdeContext
|
|
@@ -383,6 +399,10 @@ export declare const deserializeAws_restJson1DeleteDocumentCommand: (
|
|
|
383
399
|
output: __HttpResponse,
|
|
384
400
|
context: __SerdeContext
|
|
385
401
|
) => Promise<DeleteDocumentCommandOutput>;
|
|
402
|
+
export declare const deserializeAws_restJson1DeleteDocumentVersionCommand: (
|
|
403
|
+
output: __HttpResponse,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<DeleteDocumentVersionCommandOutput>;
|
|
386
406
|
export declare const deserializeAws_restJson1DeleteFolderCommand: (
|
|
387
407
|
output: __HttpResponse,
|
|
388
408
|
context: __SerdeContext
|
|
@@ -479,6 +499,10 @@ export declare const deserializeAws_restJson1RemoveResourcePermissionCommand: (
|
|
|
479
499
|
output: __HttpResponse,
|
|
480
500
|
context: __SerdeContext
|
|
481
501
|
) => Promise<RemoveResourcePermissionCommandOutput>;
|
|
502
|
+
export declare const deserializeAws_restJson1RestoreDocumentVersionsCommand: (
|
|
503
|
+
output: __HttpResponse,
|
|
504
|
+
context: __SerdeContext
|
|
505
|
+
) => Promise<RestoreDocumentVersionsCommandOutput>;
|
|
482
506
|
export declare const deserializeAws_restJson1UpdateDocumentCommand: (
|
|
483
507
|
output: __HttpResponse,
|
|
484
508
|
context: __SerdeContext
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
1
|
import { WorkDocsClientConfig } from "./WorkDocsClient";
|
|
3
2
|
export declare const getRuntimeConfig: (config: WorkDocsClientConfig) => {
|
|
4
3
|
apiVersion: string;
|
|
@@ -8,10 +7,10 @@ export declare const getRuntimeConfig: (config: WorkDocsClientConfig) => {
|
|
|
8
7
|
endpointProvider: (
|
|
9
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
9
|
context?: {
|
|
11
|
-
logger?:
|
|
10
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
12
11
|
}
|
|
13
12
|
) => import("@aws-sdk/types").EndpointV2;
|
|
14
|
-
logger:
|
|
13
|
+
logger: import("@aws-sdk/types").Logger;
|
|
15
14
|
serviceId: string;
|
|
16
15
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
17
16
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workdocs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workdocs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.210.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",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.210.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.209.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.210.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.208.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.208.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.208.0",
|
|
@@ -30,27 +30,25 @@
|
|
|
30
30
|
"@aws-sdk/middleware-host-header": "3.208.0",
|
|
31
31
|
"@aws-sdk/middleware-logger": "3.208.0",
|
|
32
32
|
"@aws-sdk/middleware-recursion-detection": "3.208.0",
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.209.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.208.0",
|
|
35
35
|
"@aws-sdk/middleware-signing": "3.208.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.208.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.208.0",
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.209.0",
|
|
39
39
|
"@aws-sdk/node-http-handler": "3.208.0",
|
|
40
40
|
"@aws-sdk/protocol-http": "3.208.0",
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
+
"@aws-sdk/smithy-client": "3.209.0",
|
|
42
42
|
"@aws-sdk/types": "3.208.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.208.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
|
-
"@aws-sdk/util-base64-browser": "3.208.0",
|
|
46
|
-
"@aws-sdk/util-base64-node": "3.208.0",
|
|
47
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
48
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.209.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.209.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.210.0",
|
|
52
50
|
"@aws-sdk/util-user-agent-browser": "3.208.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.209.0",
|
|
54
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
55
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
56
54
|
"tslib": "^2.3.1"
|