@aws-sdk/client-quicksight 3.252.0 → 3.255.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/commands/CreateAnalysisCommand.js +2 -1
- package/dist-cjs/commands/ListDataSourcesCommand.js +2 -1
- package/dist-cjs/commands/ListFolderMembersCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_1.js +13 -25
- package/dist-cjs/models/models_2.js +27 -16
- package/dist-cjs/models/models_3.js +12 -3
- package/dist-cjs/protocols/Aws_restJson1.js +59 -11
- package/dist-es/commands/CreateAnalysisCommand.js +2 -1
- package/dist-es/commands/ListDataSourcesCommand.js +2 -1
- package/dist-es/commands/ListFolderMembersCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_1.js +6 -18
- package/dist-es/models/models_2.js +18 -7
- package/dist-es/models/models_3.js +8 -1
- package/dist-es/protocols/Aws_restJson1.js +60 -12
- package/dist-types/QuickSight.d.ts +1 -1
- package/dist-types/QuickSightClient.d.ts +3 -3
- package/dist-types/commands/CreateAnalysisCommand.d.ts +2 -1
- package/dist-types/commands/ListDataSourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListFolderMembersCommand.d.ts +1 -2
- package/dist-types/commands/RegisterUserCommand.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +38 -46
- package/dist-types/models/models_2.d.ts +87 -48
- package/dist-types/models/models_3.d.ts +45 -1
- package/dist-types/ts3.4/QuickSightClient.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateAnalysisCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListFolderMembersCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_1.d.ts +15 -20
- package/dist-types/ts3.4/models/models_2.d.ts +21 -18
- package/dist-types/ts3.4/models/models_3.d.ts +19 -0
- package/package.json +31 -31
|
@@ -1,6 +1,42 @@
|
|
|
1
1
|
import { AccountCustomization, ActiveIAMPolicyAssignment, ResourceStatus } from "./models_0";
|
|
2
2
|
import { _Parameters, AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, ResourcePermission, Tag } from "./models_1";
|
|
3
|
-
import { DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderSearchFilter, FolderSummary, Group, GroupMember, GroupSearchFilter, IAMPolicyAssignmentSummary, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, MemberIdArnPair, NamespaceInfoV2, PhysicalTable, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, User, UserRole, VpcConnectionProperties } from "./models_2";
|
|
3
|
+
import { DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderSearchFilter, FolderSummary, Group, GroupMember, GroupSearchFilter, IAMPolicyAssignmentSummary, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, MemberIdArnPair, NamespaceInfoV2, PhysicalTable, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, User, UserRole, VpcConnectionProperties } from "./models_2";
|
|
4
|
+
export interface ListDataSourcesResponse {
|
|
5
|
+
/**
|
|
6
|
+
* <p>A list of data sources.</p>
|
|
7
|
+
*/
|
|
8
|
+
DataSources?: DataSource[];
|
|
9
|
+
/**
|
|
10
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
11
|
+
*/
|
|
12
|
+
NextToken?: string;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
15
|
+
*/
|
|
16
|
+
RequestId?: string;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The HTTP status of the request.</p>
|
|
19
|
+
*/
|
|
20
|
+
Status?: number;
|
|
21
|
+
}
|
|
22
|
+
export interface ListFolderMembersRequest {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The ID for the Amazon Web Services account that contains the folder.</p>
|
|
25
|
+
*/
|
|
26
|
+
AwsAccountId: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The ID of the folder.</p>
|
|
29
|
+
*/
|
|
30
|
+
FolderId: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
33
|
+
*/
|
|
34
|
+
NextToken?: string;
|
|
35
|
+
/**
|
|
36
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
37
|
+
*/
|
|
38
|
+
MaxResults?: number;
|
|
39
|
+
}
|
|
4
40
|
export interface ListFolderMembersResponse {
|
|
5
41
|
/**
|
|
6
42
|
* <p>The HTTP status of the request.</p>
|
|
@@ -2381,6 +2417,14 @@ export interface UpdateUserResponse {
|
|
|
2381
2417
|
*/
|
|
2382
2418
|
Status?: number;
|
|
2383
2419
|
}
|
|
2420
|
+
/**
|
|
2421
|
+
* @internal
|
|
2422
|
+
*/
|
|
2423
|
+
export declare const ListDataSourcesResponseFilterSensitiveLog: (obj: ListDataSourcesResponse) => any;
|
|
2424
|
+
/**
|
|
2425
|
+
* @internal
|
|
2426
|
+
*/
|
|
2427
|
+
export declare const ListFolderMembersRequestFilterSensitiveLog: (obj: ListFolderMembersRequest) => any;
|
|
2384
2428
|
/**
|
|
2385
2429
|
* @internal
|
|
2386
2430
|
*/
|
|
@@ -31,6 +31,7 @@ import {
|
|
|
31
31
|
} from "@aws-sdk/smithy-client";
|
|
32
32
|
import {
|
|
33
33
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
34
35
|
Credentials as __Credentials,
|
|
35
36
|
Decoder as __Decoder,
|
|
36
37
|
Encoder as __Encoder,
|
|
@@ -809,7 +810,7 @@ export declare type ServiceOutputTypes =
|
|
|
809
810
|
export interface ClientDefaults
|
|
810
811
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
811
812
|
requestHandler?: __HttpHandler;
|
|
812
|
-
sha256?: __HashConstructor;
|
|
813
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
813
814
|
urlParser?: __UrlParser;
|
|
814
815
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
815
816
|
streamCollector?: __StreamCollector;
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
CreateAnalysisResponse,
|
|
12
|
-
} from "../models/models_1";
|
|
9
|
+
import { CreateAnalysisRequest } from "../models/models_1";
|
|
10
|
+
import { CreateAnalysisResponse } from "../models/models_2";
|
|
13
11
|
import {
|
|
14
12
|
QuickSightClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
ListDataSourcesResponse,
|
|
12
|
-
} from "../models/models_2";
|
|
9
|
+
import { ListDataSourcesRequest } from "../models/models_2";
|
|
10
|
+
import { ListDataSourcesResponse } from "../models/models_3";
|
|
13
11
|
import {
|
|
14
12
|
QuickSightClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
ListFolderMembersRequest,
|
|
11
|
+
ListFolderMembersResponse,
|
|
12
|
+
} from "../models/models_3";
|
|
11
13
|
import {
|
|
12
14
|
QuickSightClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -1158,6 +1158,14 @@ export interface TableSortConfiguration {
|
|
|
1158
1158
|
RowSort?: FieldSortOptions[];
|
|
1159
1159
|
PaginationConfiguration?: PaginationConfiguration;
|
|
1160
1160
|
}
|
|
1161
|
+
export interface DataBarsOptions {
|
|
1162
|
+
FieldId: string | undefined;
|
|
1163
|
+
PositiveColor?: string;
|
|
1164
|
+
NegativeColor?: string;
|
|
1165
|
+
}
|
|
1166
|
+
export interface TableInlineVisualization {
|
|
1167
|
+
DataBars?: DataBarsOptions;
|
|
1168
|
+
}
|
|
1161
1169
|
export declare enum TableOrientation {
|
|
1162
1170
|
HORIZONTAL = "HORIZONTAL",
|
|
1163
1171
|
VERTICAL = "VERTICAL",
|
|
@@ -1182,6 +1190,7 @@ export interface TableConfiguration {
|
|
|
1182
1190
|
TotalOptions?: TotalOptions;
|
|
1183
1191
|
FieldOptions?: TableFieldOptions;
|
|
1184
1192
|
PaginatedReportOptions?: TablePaginatedReportOptions;
|
|
1193
|
+
TableInlineVisualizations?: TableInlineVisualization[];
|
|
1185
1194
|
}
|
|
1186
1195
|
export interface TableCellConditionalFormatting {
|
|
1187
1196
|
FieldId: string | undefined;
|
|
@@ -1709,23 +1718,6 @@ export interface CreateAnalysisRequest {
|
|
|
1709
1718
|
Tags?: Tag[];
|
|
1710
1719
|
Definition?: AnalysisDefinition;
|
|
1711
1720
|
}
|
|
1712
|
-
export interface CreateAnalysisResponse {
|
|
1713
|
-
Arn?: string;
|
|
1714
|
-
AnalysisId?: string;
|
|
1715
|
-
CreationStatus?: ResourceStatus | string;
|
|
1716
|
-
Status?: number;
|
|
1717
|
-
RequestId?: string;
|
|
1718
|
-
}
|
|
1719
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1720
|
-
readonly name: "LimitExceededException";
|
|
1721
|
-
readonly $fault: "client";
|
|
1722
|
-
Message?: string;
|
|
1723
|
-
ResourceType?: ExceptionResourceType | string;
|
|
1724
|
-
RequestId?: string;
|
|
1725
|
-
constructor(
|
|
1726
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
1727
|
-
);
|
|
1728
|
-
}
|
|
1729
1721
|
export declare const ComboChartVisualFilterSensitiveLog: (
|
|
1730
1722
|
obj: ComboChartVisual
|
|
1731
1723
|
) => any;
|
|
@@ -2220,6 +2212,12 @@ export declare const TablePaginatedReportOptionsFilterSensitiveLog: (
|
|
|
2220
2212
|
export declare const TableSortConfigurationFilterSensitiveLog: (
|
|
2221
2213
|
obj: TableSortConfiguration
|
|
2222
2214
|
) => any;
|
|
2215
|
+
export declare const DataBarsOptionsFilterSensitiveLog: (
|
|
2216
|
+
obj: DataBarsOptions
|
|
2217
|
+
) => any;
|
|
2218
|
+
export declare const TableInlineVisualizationFilterSensitiveLog: (
|
|
2219
|
+
obj: TableInlineVisualization
|
|
2220
|
+
) => any;
|
|
2223
2221
|
export declare const TableOptionsFilterSensitiveLog: (obj: TableOptions) => any;
|
|
2224
2222
|
export declare const TotalOptionsFilterSensitiveLog: (obj: TotalOptions) => any;
|
|
2225
2223
|
export declare const TableConfigurationFilterSensitiveLog: (
|
|
@@ -2404,6 +2402,3 @@ export declare const ResourcePermissionFilterSensitiveLog: (
|
|
|
2404
2402
|
export declare const CreateAnalysisRequestFilterSensitiveLog: (
|
|
2405
2403
|
obj: CreateAnalysisRequest
|
|
2406
2404
|
) => any;
|
|
2407
|
-
export declare const CreateAnalysisResponseFilterSensitiveLog: (
|
|
2408
|
-
obj: CreateAnalysisResponse
|
|
2409
|
-
) => any;
|
|
@@ -41,12 +41,30 @@ import {
|
|
|
41
41
|
ColumnTagName,
|
|
42
42
|
DashboardVisualId,
|
|
43
43
|
DataSetReference,
|
|
44
|
+
ExceptionResourceType,
|
|
44
45
|
FilterOperator,
|
|
45
46
|
ResourcePermission,
|
|
46
47
|
SheetDefinition,
|
|
47
48
|
Tag,
|
|
48
49
|
} from "./models_1";
|
|
49
50
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
51
|
+
export interface CreateAnalysisResponse {
|
|
52
|
+
Arn?: string;
|
|
53
|
+
AnalysisId?: string;
|
|
54
|
+
CreationStatus?: ResourceStatus | string;
|
|
55
|
+
Status?: number;
|
|
56
|
+
RequestId?: string;
|
|
57
|
+
}
|
|
58
|
+
export declare class LimitExceededException extends __BaseException {
|
|
59
|
+
readonly name: "LimitExceededException";
|
|
60
|
+
readonly $fault: "client";
|
|
61
|
+
Message?: string;
|
|
62
|
+
ResourceType?: ExceptionResourceType | string;
|
|
63
|
+
RequestId?: string;
|
|
64
|
+
constructor(
|
|
65
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
50
68
|
export declare class UnsupportedUserEditionException extends __BaseException {
|
|
51
69
|
readonly name: "UnsupportedUserEditionException";
|
|
52
70
|
readonly $fault: "client";
|
|
@@ -2649,18 +2667,9 @@ export interface ListDataSourcesRequest {
|
|
|
2649
2667
|
NextToken?: string;
|
|
2650
2668
|
MaxResults?: number;
|
|
2651
2669
|
}
|
|
2652
|
-
export
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
RequestId?: string;
|
|
2656
|
-
Status?: number;
|
|
2657
|
-
}
|
|
2658
|
-
export interface ListFolderMembersRequest {
|
|
2659
|
-
AwsAccountId: string | undefined;
|
|
2660
|
-
FolderId: string | undefined;
|
|
2661
|
-
NextToken?: string;
|
|
2662
|
-
MaxResults?: number;
|
|
2663
|
-
}
|
|
2670
|
+
export declare const CreateAnalysisResponseFilterSensitiveLog: (
|
|
2671
|
+
obj: CreateAnalysisResponse
|
|
2672
|
+
) => any;
|
|
2664
2673
|
export declare const CreateColumnsOperationFilterSensitiveLog: (
|
|
2665
2674
|
obj: CreateColumnsOperation
|
|
2666
2675
|
) => any;
|
|
@@ -3367,9 +3376,3 @@ export declare const ListDataSetsResponseFilterSensitiveLog: (
|
|
|
3367
3376
|
export declare const ListDataSourcesRequestFilterSensitiveLog: (
|
|
3368
3377
|
obj: ListDataSourcesRequest
|
|
3369
3378
|
) => any;
|
|
3370
|
-
export declare const ListDataSourcesResponseFilterSensitiveLog: (
|
|
3371
|
-
obj: ListDataSourcesResponse
|
|
3372
|
-
) => any;
|
|
3373
|
-
export declare const ListFolderMembersRequestFilterSensitiveLog: (
|
|
3374
|
-
obj: ListFolderMembersRequest
|
|
3375
|
-
) => any;
|
|
@@ -25,6 +25,7 @@ import {
|
|
|
25
25
|
DataSetSearchFilter,
|
|
26
26
|
DataSetSummary,
|
|
27
27
|
DataSetUsageConfiguration,
|
|
28
|
+
DataSource,
|
|
28
29
|
DataSourceCredentials,
|
|
29
30
|
DataSourceParameters,
|
|
30
31
|
DataSourceSearchFilter,
|
|
@@ -56,6 +57,18 @@ import {
|
|
|
56
57
|
UserRole,
|
|
57
58
|
VpcConnectionProperties,
|
|
58
59
|
} from "./models_2";
|
|
60
|
+
export interface ListDataSourcesResponse {
|
|
61
|
+
DataSources?: DataSource[];
|
|
62
|
+
NextToken?: string;
|
|
63
|
+
RequestId?: string;
|
|
64
|
+
Status?: number;
|
|
65
|
+
}
|
|
66
|
+
export interface ListFolderMembersRequest {
|
|
67
|
+
AwsAccountId: string | undefined;
|
|
68
|
+
FolderId: string | undefined;
|
|
69
|
+
NextToken?: string;
|
|
70
|
+
MaxResults?: number;
|
|
71
|
+
}
|
|
59
72
|
export interface ListFolderMembersResponse {
|
|
60
73
|
Status?: number;
|
|
61
74
|
FolderMemberList?: MemberIdArnPair[];
|
|
@@ -727,6 +740,12 @@ export interface UpdateUserResponse {
|
|
|
727
740
|
RequestId?: string;
|
|
728
741
|
Status?: number;
|
|
729
742
|
}
|
|
743
|
+
export declare const ListDataSourcesResponseFilterSensitiveLog: (
|
|
744
|
+
obj: ListDataSourcesResponse
|
|
745
|
+
) => any;
|
|
746
|
+
export declare const ListFolderMembersRequestFilterSensitiveLog: (
|
|
747
|
+
obj: ListFolderMembersRequest
|
|
748
|
+
) => any;
|
|
730
749
|
export declare const ListFolderMembersResponseFilterSensitiveLog: (
|
|
731
750
|
obj: ListFolderMembersResponse
|
|
732
751
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-quicksight",
|
|
3
3
|
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.255.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",
|
|
@@ -18,39 +18,39 @@
|
|
|
18
18
|
"module": "./dist-es/index.js",
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@aws-crypto/sha256-browser": "
|
|
22
|
-
"@aws-crypto/sha256-js": "
|
|
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-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
+
"@aws-sdk/client-sts": "3.254.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.254.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.254.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.254.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.254.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.254.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.254.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.254.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.254.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.254.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.254.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.254.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.254.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.254.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.254.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.254.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.254.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.254.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.254.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.254.0",
|
|
43
|
+
"@aws-sdk/types": "3.254.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.254.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.254.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.254.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.254.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.254.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.254.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.254.0",
|
|
54
54
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
55
55
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
56
56
|
"tslib": "^2.3.1"
|