@aws-sdk/client-workdocs 3.46.0 → 3.48.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/dist-cjs/endpoints.js +0 -8
- package/dist-cjs/models/models_0.js +3 -153
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +10 -2
- package/dist-es/endpoints.js +0 -8
- package/dist-es/models/models_0.js +0 -100
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -4
- package/dist-types/WorkDocsClient.d.ts +5 -1
- package/dist-types/models/models_0.d.ts +0 -150
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/WorkDocsClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -100
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +35 -35
|
@@ -18,40 +18,24 @@ export interface EntityNotExistsException extends __SmithyException, $MetadataBe
|
|
|
18
18
|
Message?: string;
|
|
19
19
|
EntityIds?: string[];
|
|
20
20
|
}
|
|
21
|
-
export declare namespace EntityNotExistsException {
|
|
22
|
-
|
|
23
|
-
const filterSensitiveLog: (obj: EntityNotExistsException) => any;
|
|
24
|
-
}
|
|
25
21
|
|
|
26
22
|
export interface FailedDependencyException extends __SmithyException, $MetadataBearer {
|
|
27
23
|
name: "FailedDependencyException";
|
|
28
24
|
$fault: "client";
|
|
29
25
|
Message?: string;
|
|
30
26
|
}
|
|
31
|
-
export declare namespace FailedDependencyException {
|
|
32
|
-
|
|
33
|
-
const filterSensitiveLog: (obj: FailedDependencyException) => any;
|
|
34
|
-
}
|
|
35
27
|
|
|
36
28
|
export interface ProhibitedStateException extends __SmithyException, $MetadataBearer {
|
|
37
29
|
name: "ProhibitedStateException";
|
|
38
30
|
$fault: "client";
|
|
39
31
|
Message?: string;
|
|
40
32
|
}
|
|
41
|
-
export declare namespace ProhibitedStateException {
|
|
42
|
-
|
|
43
|
-
const filterSensitiveLog: (obj: ProhibitedStateException) => any;
|
|
44
|
-
}
|
|
45
33
|
|
|
46
34
|
export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
|
|
47
35
|
name: "ServiceUnavailableException";
|
|
48
36
|
$fault: "server";
|
|
49
37
|
Message?: string;
|
|
50
38
|
}
|
|
51
|
-
export declare namespace ServiceUnavailableException {
|
|
52
|
-
|
|
53
|
-
const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
|
|
54
|
-
}
|
|
55
39
|
|
|
56
40
|
export interface UnauthorizedOperationException extends __SmithyException, $MetadataBearer {
|
|
57
41
|
name: "UnauthorizedOperationException";
|
|
@@ -59,20 +43,12 @@ export interface UnauthorizedOperationException extends __SmithyException, $Meta
|
|
|
59
43
|
Message?: string;
|
|
60
44
|
Code?: string;
|
|
61
45
|
}
|
|
62
|
-
export declare namespace UnauthorizedOperationException {
|
|
63
|
-
|
|
64
|
-
const filterSensitiveLog: (obj: UnauthorizedOperationException) => any;
|
|
65
|
-
}
|
|
66
46
|
|
|
67
47
|
export interface UnauthorizedResourceAccessException extends __SmithyException, $MetadataBearer {
|
|
68
48
|
name: "UnauthorizedResourceAccessException";
|
|
69
49
|
$fault: "client";
|
|
70
50
|
Message?: string;
|
|
71
51
|
}
|
|
72
|
-
export declare namespace UnauthorizedResourceAccessException {
|
|
73
|
-
|
|
74
|
-
const filterSensitiveLog: (obj: UnauthorizedResourceAccessException) => any;
|
|
75
|
-
}
|
|
76
52
|
export interface ActivateUserRequest {
|
|
77
53
|
|
|
78
54
|
UserId: string | undefined;
|
|
@@ -472,20 +448,12 @@ export interface DocumentLockedForCommentsException extends __SmithyException, $
|
|
|
472
448
|
$fault: "client";
|
|
473
449
|
Message?: string;
|
|
474
450
|
}
|
|
475
|
-
export declare namespace DocumentLockedForCommentsException {
|
|
476
|
-
|
|
477
|
-
const filterSensitiveLog: (obj: DocumentLockedForCommentsException) => any;
|
|
478
|
-
}
|
|
479
451
|
|
|
480
452
|
export interface InvalidCommentOperationException extends __SmithyException, $MetadataBearer {
|
|
481
453
|
name: "InvalidCommentOperationException";
|
|
482
454
|
$fault: "client";
|
|
483
455
|
Message?: string;
|
|
484
456
|
}
|
|
485
|
-
export declare namespace InvalidCommentOperationException {
|
|
486
|
-
|
|
487
|
-
const filterSensitiveLog: (obj: InvalidCommentOperationException) => any;
|
|
488
|
-
}
|
|
489
457
|
export interface CreateCustomMetadataRequest {
|
|
490
458
|
|
|
491
459
|
AuthenticationToken?: string;
|
|
@@ -514,20 +482,12 @@ export interface CustomMetadataLimitExceededException extends __SmithyException,
|
|
|
514
482
|
$fault: "client";
|
|
515
483
|
Message?: string;
|
|
516
484
|
}
|
|
517
|
-
export declare namespace CustomMetadataLimitExceededException {
|
|
518
|
-
|
|
519
|
-
const filterSensitiveLog: (obj: CustomMetadataLimitExceededException) => any;
|
|
520
|
-
}
|
|
521
485
|
|
|
522
486
|
export interface ConflictingOperationException extends __SmithyException, $MetadataBearer {
|
|
523
487
|
name: "ConflictingOperationException";
|
|
524
488
|
$fault: "client";
|
|
525
489
|
Message?: string;
|
|
526
490
|
}
|
|
527
|
-
export declare namespace ConflictingOperationException {
|
|
528
|
-
|
|
529
|
-
const filterSensitiveLog: (obj: ConflictingOperationException) => any;
|
|
530
|
-
}
|
|
531
491
|
export interface CreateFolderRequest {
|
|
532
492
|
|
|
533
493
|
AuthenticationToken?: string;
|
|
@@ -589,20 +549,12 @@ export interface EntityAlreadyExistsException extends __SmithyException, $Metada
|
|
|
589
549
|
$fault: "client";
|
|
590
550
|
Message?: string;
|
|
591
551
|
}
|
|
592
|
-
export declare namespace EntityAlreadyExistsException {
|
|
593
|
-
|
|
594
|
-
const filterSensitiveLog: (obj: EntityAlreadyExistsException) => any;
|
|
595
|
-
}
|
|
596
552
|
|
|
597
553
|
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
598
554
|
name: "LimitExceededException";
|
|
599
555
|
$fault: "client";
|
|
600
556
|
Message?: string;
|
|
601
557
|
}
|
|
602
|
-
export declare namespace LimitExceededException {
|
|
603
|
-
|
|
604
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
605
|
-
}
|
|
606
558
|
export interface CreateLabelsRequest {
|
|
607
559
|
|
|
608
560
|
ResourceId: string | undefined;
|
|
@@ -627,10 +579,6 @@ export interface TooManyLabelsException extends __SmithyException, $MetadataBear
|
|
|
627
579
|
$fault: "client";
|
|
628
580
|
Message?: string;
|
|
629
581
|
}
|
|
630
|
-
export declare namespace TooManyLabelsException {
|
|
631
|
-
|
|
632
|
-
const filterSensitiveLog: (obj: TooManyLabelsException) => any;
|
|
633
|
-
}
|
|
634
582
|
export declare enum SubscriptionProtocolType {
|
|
635
583
|
HTTPS = "HTTPS"
|
|
636
584
|
}
|
|
@@ -678,10 +626,6 @@ export interface TooManySubscriptionsException extends __SmithyException, $Metad
|
|
|
678
626
|
$fault: "client";
|
|
679
627
|
Message?: string;
|
|
680
628
|
}
|
|
681
|
-
export declare namespace TooManySubscriptionsException {
|
|
682
|
-
|
|
683
|
-
const filterSensitiveLog: (obj: TooManySubscriptionsException) => any;
|
|
684
|
-
}
|
|
685
629
|
export interface CreateUserRequest {
|
|
686
630
|
|
|
687
631
|
OrganizationId?: string;
|
|
@@ -766,10 +710,6 @@ export interface ConcurrentModificationException extends __SmithyException, $Met
|
|
|
766
710
|
$fault: "client";
|
|
767
711
|
Message?: string;
|
|
768
712
|
}
|
|
769
|
-
export declare namespace ConcurrentModificationException {
|
|
770
|
-
|
|
771
|
-
const filterSensitiveLog: (obj: ConcurrentModificationException) => any;
|
|
772
|
-
}
|
|
773
713
|
export interface DeleteDocumentRequest {
|
|
774
714
|
|
|
775
715
|
AuthenticationToken?: string;
|
|
@@ -882,10 +822,6 @@ export interface InvalidArgumentException extends __SmithyException, $MetadataBe
|
|
|
882
822
|
$fault: "client";
|
|
883
823
|
Message?: string;
|
|
884
824
|
}
|
|
885
|
-
export declare namespace InvalidArgumentException {
|
|
886
|
-
|
|
887
|
-
const filterSensitiveLog: (obj: InvalidArgumentException) => any;
|
|
888
|
-
}
|
|
889
825
|
export interface DescribeCommentsRequest {
|
|
890
826
|
|
|
891
827
|
AuthenticationToken?: string;
|
|
@@ -1239,10 +1175,6 @@ export interface RequestedEntityTooLargeException extends __SmithyException, $Me
|
|
|
1239
1175
|
$fault: "client";
|
|
1240
1176
|
Message?: string;
|
|
1241
1177
|
}
|
|
1242
|
-
export declare namespace RequestedEntityTooLargeException {
|
|
1243
|
-
|
|
1244
|
-
const filterSensitiveLog: (obj: RequestedEntityTooLargeException) => any;
|
|
1245
|
-
}
|
|
1246
1178
|
export interface GetCurrentUserRequest {
|
|
1247
1179
|
|
|
1248
1180
|
AuthenticationToken: string | undefined;
|
|
@@ -1289,10 +1221,6 @@ export interface InvalidPasswordException extends __SmithyException, $MetadataBe
|
|
|
1289
1221
|
$fault: "client";
|
|
1290
1222
|
Message?: string;
|
|
1291
1223
|
}
|
|
1292
|
-
export declare namespace InvalidPasswordException {
|
|
1293
|
-
|
|
1294
|
-
const filterSensitiveLog: (obj: InvalidPasswordException) => any;
|
|
1295
|
-
}
|
|
1296
1224
|
export interface GetDocumentPathRequest {
|
|
1297
1225
|
|
|
1298
1226
|
AuthenticationToken?: string;
|
|
@@ -1450,10 +1378,6 @@ export interface DraftUploadOutOfSyncException extends __SmithyException, $Metad
|
|
|
1450
1378
|
$fault: "client";
|
|
1451
1379
|
Message?: string;
|
|
1452
1380
|
}
|
|
1453
|
-
export declare namespace DraftUploadOutOfSyncException {
|
|
1454
|
-
|
|
1455
|
-
const filterSensitiveLog: (obj: DraftUploadOutOfSyncException) => any;
|
|
1456
|
-
}
|
|
1457
1381
|
export interface InitiateDocumentVersionUploadRequest {
|
|
1458
1382
|
|
|
1459
1383
|
AuthenticationToken?: string;
|
|
@@ -1505,30 +1429,18 @@ export interface ResourceAlreadyCheckedOutException extends __SmithyException, $
|
|
|
1505
1429
|
$fault: "client";
|
|
1506
1430
|
Message?: string;
|
|
1507
1431
|
}
|
|
1508
|
-
export declare namespace ResourceAlreadyCheckedOutException {
|
|
1509
|
-
|
|
1510
|
-
const filterSensitiveLog: (obj: ResourceAlreadyCheckedOutException) => any;
|
|
1511
|
-
}
|
|
1512
1432
|
|
|
1513
1433
|
export interface StorageLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
1514
1434
|
name: "StorageLimitExceededException";
|
|
1515
1435
|
$fault: "client";
|
|
1516
1436
|
Message?: string;
|
|
1517
1437
|
}
|
|
1518
|
-
export declare namespace StorageLimitExceededException {
|
|
1519
|
-
|
|
1520
|
-
const filterSensitiveLog: (obj: StorageLimitExceededException) => any;
|
|
1521
|
-
}
|
|
1522
1438
|
|
|
1523
1439
|
export interface StorageLimitWillExceedException extends __SmithyException, $MetadataBearer {
|
|
1524
1440
|
name: "StorageLimitWillExceedException";
|
|
1525
1441
|
$fault: "client";
|
|
1526
1442
|
Message?: string;
|
|
1527
1443
|
}
|
|
1528
|
-
export declare namespace StorageLimitWillExceedException {
|
|
1529
|
-
|
|
1530
|
-
const filterSensitiveLog: (obj: StorageLimitWillExceedException) => any;
|
|
1531
|
-
}
|
|
1532
1444
|
export interface RemoveAllResourcePermissionsRequest {
|
|
1533
1445
|
|
|
1534
1446
|
AuthenticationToken?: string;
|
|
@@ -1575,10 +1487,6 @@ export interface InvalidOperationException extends __SmithyException, $MetadataB
|
|
|
1575
1487
|
$fault: "client";
|
|
1576
1488
|
Message?: string;
|
|
1577
1489
|
}
|
|
1578
|
-
export declare namespace InvalidOperationException {
|
|
1579
|
-
|
|
1580
|
-
const filterSensitiveLog: (obj: InvalidOperationException) => any;
|
|
1581
|
-
}
|
|
1582
1490
|
export declare enum DocumentVersionStatus {
|
|
1583
1491
|
ACTIVE = "ACTIVE"
|
|
1584
1492
|
}
|
|
@@ -1619,20 +1527,12 @@ export interface DeactivatingLastSystemUserException extends __SmithyException,
|
|
|
1619
1527
|
Message?: string;
|
|
1620
1528
|
Code?: string;
|
|
1621
1529
|
}
|
|
1622
|
-
export declare namespace DeactivatingLastSystemUserException {
|
|
1623
|
-
|
|
1624
|
-
const filterSensitiveLog: (obj: DeactivatingLastSystemUserException) => any;
|
|
1625
|
-
}
|
|
1626
1530
|
|
|
1627
1531
|
export interface IllegalUserStateException extends __SmithyException, $MetadataBearer {
|
|
1628
1532
|
name: "IllegalUserStateException";
|
|
1629
1533
|
$fault: "client";
|
|
1630
1534
|
Message?: string;
|
|
1631
1535
|
}
|
|
1632
|
-
export declare namespace IllegalUserStateException {
|
|
1633
|
-
|
|
1634
|
-
const filterSensitiveLog: (obj: IllegalUserStateException) => any;
|
|
1635
|
-
}
|
|
1636
1536
|
export declare enum BooleanEnumType {
|
|
1637
1537
|
FALSE = "FALSE",
|
|
1638
1538
|
TRUE = "TRUE"
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { WorkDocsClientConfig } from "./WorkDocsClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: WorkDocsClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: WorkDocsClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { WorkDocsClientConfig } from "./WorkDocsClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: WorkDocsClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: WorkDocsClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
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.48.0",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
8
|
"build:docs": "typedoc",
|
|
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": "
|
|
13
|
-
"clean:dist": "rimraf ./dist-*",
|
|
14
|
-
"clean:docs": "rimraf ./docs"
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
15
13
|
},
|
|
16
14
|
"main": "./dist-cjs/index.js",
|
|
17
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -20,38 +18,40 @@
|
|
|
20
18
|
"dependencies": {
|
|
21
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
22
20
|
"@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-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.48.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.2",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.48.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.2",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.2",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.2",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.2",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.2",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.2",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.2",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.2",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.2",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.2",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.2",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.2",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.2",
|
|
39
|
+
"@aws-sdk/types": "3.47.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.2",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.1",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.2",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.1",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.1",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.2",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.2",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.2",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.2",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.1",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.2",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.1",
|
|
55
55
|
"@types/node": "^12.7.5"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|