@aws-sdk/client-quicksight 3.345.0 → 3.347.1
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/DescribeAssetBundleExportJobCommand.js +2 -1
- package/dist-cjs/commands/DescribeAssetBundleImportJobCommand.js +2 -1
- package/dist-cjs/commands/ListAssetBundleExportJobsCommand.js +2 -1
- package/dist-cjs/commands/ListAssetBundleImportJobsCommand.js +2 -1
- package/dist-cjs/commands/StartAssetBundleExportJobCommand.js +2 -1
- package/dist-cjs/commands/StartAssetBundleImportJobCommand.js +2 -1
- package/dist-cjs/commands/UpdateTopicCommand.js +2 -2
- package/dist-cjs/models/models_1.js +25 -4
- package/dist-cjs/models/models_3.js +1 -5
- package/dist-cjs/models/models_4.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +4 -0
- package/dist-es/commands/DescribeAssetBundleExportJobCommand.js +1 -0
- package/dist-es/commands/DescribeAssetBundleImportJobCommand.js +1 -0
- package/dist-es/commands/ListAssetBundleExportJobsCommand.js +1 -0
- package/dist-es/commands/ListAssetBundleImportJobsCommand.js +1 -0
- package/dist-es/commands/StartAssetBundleExportJobCommand.js +1 -0
- package/dist-es/commands/StartAssetBundleImportJobCommand.js +1 -0
- package/dist-es/commands/UpdateTopicCommand.js +1 -1
- package/dist-es/models/models_1.js +19 -0
- package/dist-es/models/models_3.js +0 -3
- package/dist-es/models/models_4.js +3 -1
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +15 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +15 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +15 -0
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +2 -1
- package/dist-types/commands/DeleteIAMPolicyAssignmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +1 -2
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +15 -0
- package/dist-types/commands/DescribeAssetBundleExportJobCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +4 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +15 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +15 -0
- package/dist-types/commands/ListAssetBundleExportJobsCommand.d.ts +4 -0
- package/dist-types/commands/ListAssetBundleImportJobsCommand.d.ts +4 -0
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +4 -0
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +15 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +15 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +15 -0
- package/dist-types/commands/UpdateThemeAliasCommand.d.ts +2 -1
- package/dist-types/commands/UpdateThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTopicCommand.d.ts +1 -2
- package/dist-types/models/models_1.d.ts +87 -62
- package/dist-types/models/models_2.d.ts +79 -73
- package/dist-types/models/models_3.d.ts +71 -90
- package/dist-types/models/models_4.d.ts +86 -1
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteIAMPolicyAssignmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeAssetBundleExportJobCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/DescribeAssetBundleImportJobCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListAssetBundleExportJobsCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListAssetBundleImportJobsCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/StartAssetBundleImportJobCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/UpdateThemeAliasCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTopicCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_1.d.ts +30 -17
- package/dist-types/ts3.4/models/models_2.d.ts +17 -22
- package/dist-types/ts3.4/models/models_3.d.ts +18 -26
- package/dist-types/ts3.4/models/models_4.d.ts +28 -0
- package/package.json +28 -28
|
@@ -919,6 +919,20 @@ export interface PieChartVisual {
|
|
|
919
919
|
Actions?: VisualCustomAction[];
|
|
920
920
|
ColumnHierarchies?: ColumnHierarchy[];
|
|
921
921
|
}
|
|
922
|
+
export declare const PivotTableFieldCollapseState: {
|
|
923
|
+
readonly COLLAPSED: "COLLAPSED";
|
|
924
|
+
readonly EXPANDED: "EXPANDED";
|
|
925
|
+
};
|
|
926
|
+
export type PivotTableFieldCollapseState =
|
|
927
|
+
(typeof PivotTableFieldCollapseState)[keyof typeof PivotTableFieldCollapseState];
|
|
928
|
+
export interface PivotTableFieldCollapseStateTarget {
|
|
929
|
+
FieldId?: string;
|
|
930
|
+
FieldDataPathValues?: DataPathValue[];
|
|
931
|
+
}
|
|
932
|
+
export interface PivotTableFieldCollapseStateOption {
|
|
933
|
+
Target: PivotTableFieldCollapseStateTarget | undefined;
|
|
934
|
+
State?: PivotTableFieldCollapseState | string;
|
|
935
|
+
}
|
|
922
936
|
export interface PivotTableDataPathOption {
|
|
923
937
|
DataPathList: DataPathValue[] | undefined;
|
|
924
938
|
Width?: string;
|
|
@@ -931,6 +945,7 @@ export interface PivotTableFieldOption {
|
|
|
931
945
|
export interface PivotTableFieldOptions {
|
|
932
946
|
SelectedFieldOptions?: PivotTableFieldOption[];
|
|
933
947
|
DataPathOptions?: PivotTableDataPathOption[];
|
|
948
|
+
CollapseStateOptions?: PivotTableFieldCollapseStateOption[];
|
|
934
949
|
}
|
|
935
950
|
export interface PivotTableAggregatedFieldWells {
|
|
936
951
|
Rows?: DimensionField[];
|
|
@@ -1100,6 +1115,7 @@ export interface PivotTableCellConditionalFormatting {
|
|
|
1100
1115
|
FieldId: string | undefined;
|
|
1101
1116
|
TextFormat?: TextConditionalFormat;
|
|
1102
1117
|
Scope?: PivotTableConditionalFormattingScope;
|
|
1118
|
+
Scopes?: PivotTableConditionalFormattingScope[];
|
|
1103
1119
|
}
|
|
1104
1120
|
export interface PivotTableConditionalFormattingOption {
|
|
1105
1121
|
Cell?: PivotTableCellConditionalFormatting;
|
|
@@ -1115,6 +1131,13 @@ export interface PivotTableVisual {
|
|
|
1115
1131
|
ConditionalFormatting?: PivotTableConditionalFormatting;
|
|
1116
1132
|
Actions?: VisualCustomAction[];
|
|
1117
1133
|
}
|
|
1134
|
+
export declare const RadarChartAxesRangeScale: {
|
|
1135
|
+
readonly AUTO: "AUTO";
|
|
1136
|
+
readonly INDEPENDENT: "INDEPENDENT";
|
|
1137
|
+
readonly SHARED: "SHARED";
|
|
1138
|
+
};
|
|
1139
|
+
export type RadarChartAxesRangeScale =
|
|
1140
|
+
(typeof RadarChartAxesRangeScale)[keyof typeof RadarChartAxesRangeScale];
|
|
1118
1141
|
export interface RadarChartAreaStyleSettings {
|
|
1119
1142
|
Visibility?: Visibility | string;
|
|
1120
1143
|
}
|
|
@@ -1156,6 +1179,7 @@ export interface RadarChartConfiguration {
|
|
|
1156
1179
|
ColorAxis?: AxisDisplayOptions;
|
|
1157
1180
|
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
1158
1181
|
Legend?: LegendOptions;
|
|
1182
|
+
AxesRangeScale?: RadarChartAxesRangeScale | string;
|
|
1159
1183
|
}
|
|
1160
1184
|
export interface RadarChartVisual {
|
|
1161
1185
|
VisualId: string | undefined;
|
|
@@ -1776,23 +1800,6 @@ export interface AuroraPostgreSqlParameters {
|
|
|
1776
1800
|
export interface AwsIotAnalyticsParameters {
|
|
1777
1801
|
DataSetName: string | undefined;
|
|
1778
1802
|
}
|
|
1779
|
-
export interface DatabricksParameters {
|
|
1780
|
-
Host: string | undefined;
|
|
1781
|
-
Port: number | undefined;
|
|
1782
|
-
SqlEndpointPath: string | undefined;
|
|
1783
|
-
}
|
|
1784
|
-
export interface ExasolParameters {
|
|
1785
|
-
Host: string | undefined;
|
|
1786
|
-
Port: number | undefined;
|
|
1787
|
-
}
|
|
1788
|
-
export interface JiraParameters {
|
|
1789
|
-
SiteBaseUrl: string | undefined;
|
|
1790
|
-
}
|
|
1791
|
-
export interface MariaDbParameters {
|
|
1792
|
-
Host: string | undefined;
|
|
1793
|
-
Port: number | undefined;
|
|
1794
|
-
Database: string | undefined;
|
|
1795
|
-
}
|
|
1796
1803
|
export declare const ComboChartConfigurationFilterSensitiveLog: (
|
|
1797
1804
|
obj: ComboChartConfiguration
|
|
1798
1805
|
) => any;
|
|
@@ -2008,6 +2015,12 @@ export declare const PieChartConfigurationFilterSensitiveLog: (
|
|
|
2008
2015
|
export declare const PieChartVisualFilterSensitiveLog: (
|
|
2009
2016
|
obj: PieChartVisual
|
|
2010
2017
|
) => any;
|
|
2018
|
+
export declare const PivotTableFieldCollapseStateTargetFilterSensitiveLog: (
|
|
2019
|
+
obj: PivotTableFieldCollapseStateTarget
|
|
2020
|
+
) => any;
|
|
2021
|
+
export declare const PivotTableFieldCollapseStateOptionFilterSensitiveLog: (
|
|
2022
|
+
obj: PivotTableFieldCollapseStateOption
|
|
2023
|
+
) => any;
|
|
2011
2024
|
export declare const PivotTableDataPathOptionFilterSensitiveLog: (
|
|
2012
2025
|
obj: PivotTableDataPathOption
|
|
2013
2026
|
) => any;
|
|
@@ -30,15 +30,28 @@ import {
|
|
|
30
30
|
AuroraParameters,
|
|
31
31
|
AuroraPostgreSqlParameters,
|
|
32
32
|
AwsIotAnalyticsParameters,
|
|
33
|
-
DatabricksParameters,
|
|
34
33
|
DataSetReference,
|
|
35
|
-
ExasolParameters,
|
|
36
34
|
FilterOperator,
|
|
37
|
-
JiraParameters,
|
|
38
|
-
MariaDbParameters,
|
|
39
35
|
SheetDefinition,
|
|
40
36
|
} from "./models_1";
|
|
41
37
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
38
|
+
export interface DatabricksParameters {
|
|
39
|
+
Host: string | undefined;
|
|
40
|
+
Port: number | undefined;
|
|
41
|
+
SqlEndpointPath: string | undefined;
|
|
42
|
+
}
|
|
43
|
+
export interface ExasolParameters {
|
|
44
|
+
Host: string | undefined;
|
|
45
|
+
Port: number | undefined;
|
|
46
|
+
}
|
|
47
|
+
export interface JiraParameters {
|
|
48
|
+
SiteBaseUrl: string | undefined;
|
|
49
|
+
}
|
|
50
|
+
export interface MariaDbParameters {
|
|
51
|
+
Host: string | undefined;
|
|
52
|
+
Port: number | undefined;
|
|
53
|
+
Database: string | undefined;
|
|
54
|
+
}
|
|
42
55
|
export interface MySqlParameters {
|
|
43
56
|
Host: string | undefined;
|
|
44
57
|
Port: number | undefined;
|
|
@@ -2766,24 +2779,6 @@ export interface DeleteGroupMembershipRequest {
|
|
|
2766
2779
|
AwsAccountId: string | undefined;
|
|
2767
2780
|
Namespace: string | undefined;
|
|
2768
2781
|
}
|
|
2769
|
-
export interface DeleteGroupMembershipResponse {
|
|
2770
|
-
RequestId?: string;
|
|
2771
|
-
Status?: number;
|
|
2772
|
-
}
|
|
2773
|
-
export interface DeleteIAMPolicyAssignmentRequest {
|
|
2774
|
-
AwsAccountId: string | undefined;
|
|
2775
|
-
AssignmentName: string | undefined;
|
|
2776
|
-
Namespace: string | undefined;
|
|
2777
|
-
}
|
|
2778
|
-
export interface DeleteIAMPolicyAssignmentResponse {
|
|
2779
|
-
AssignmentName?: string;
|
|
2780
|
-
RequestId?: string;
|
|
2781
|
-
Status?: number;
|
|
2782
|
-
}
|
|
2783
|
-
export interface DeleteNamespaceRequest {
|
|
2784
|
-
AwsAccountId: string | undefined;
|
|
2785
|
-
Namespace: string | undefined;
|
|
2786
|
-
}
|
|
2787
2782
|
export declare const AssetBundleImportJobDataSourceOverrideParametersFilterSensitiveLog: (
|
|
2788
2783
|
obj: AssetBundleImportJobDataSourceOverrideParameters
|
|
2789
2784
|
) => any;
|
|
@@ -85,6 +85,24 @@ import {
|
|
|
85
85
|
VPCConnectionResourceStatus,
|
|
86
86
|
} from "./models_2";
|
|
87
87
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
88
|
+
export interface DeleteGroupMembershipResponse {
|
|
89
|
+
RequestId?: string;
|
|
90
|
+
Status?: number;
|
|
91
|
+
}
|
|
92
|
+
export interface DeleteIAMPolicyAssignmentRequest {
|
|
93
|
+
AwsAccountId: string | undefined;
|
|
94
|
+
AssignmentName: string | undefined;
|
|
95
|
+
Namespace: string | undefined;
|
|
96
|
+
}
|
|
97
|
+
export interface DeleteIAMPolicyAssignmentResponse {
|
|
98
|
+
AssignmentName?: string;
|
|
99
|
+
RequestId?: string;
|
|
100
|
+
Status?: number;
|
|
101
|
+
}
|
|
102
|
+
export interface DeleteNamespaceRequest {
|
|
103
|
+
AwsAccountId: string | undefined;
|
|
104
|
+
Namespace: string | undefined;
|
|
105
|
+
}
|
|
88
106
|
export interface DeleteNamespaceResponse {
|
|
89
107
|
RequestId?: string;
|
|
90
108
|
Status?: number;
|
|
@@ -1958,29 +1976,6 @@ export interface UpdateThemeAliasRequest {
|
|
|
1958
1976
|
AliasName: string | undefined;
|
|
1959
1977
|
ThemeVersionNumber: number | undefined;
|
|
1960
1978
|
}
|
|
1961
|
-
export interface UpdateThemeAliasResponse {
|
|
1962
|
-
ThemeAlias?: ThemeAlias;
|
|
1963
|
-
Status?: number;
|
|
1964
|
-
RequestId?: string;
|
|
1965
|
-
}
|
|
1966
|
-
export interface UpdateThemePermissionsRequest {
|
|
1967
|
-
AwsAccountId: string | undefined;
|
|
1968
|
-
ThemeId: string | undefined;
|
|
1969
|
-
GrantPermissions?: ResourcePermission[];
|
|
1970
|
-
RevokePermissions?: ResourcePermission[];
|
|
1971
|
-
}
|
|
1972
|
-
export interface UpdateThemePermissionsResponse {
|
|
1973
|
-
ThemeId?: string;
|
|
1974
|
-
ThemeArn?: string;
|
|
1975
|
-
Permissions?: ResourcePermission[];
|
|
1976
|
-
RequestId?: string;
|
|
1977
|
-
Status?: number;
|
|
1978
|
-
}
|
|
1979
|
-
export interface UpdateTopicRequest {
|
|
1980
|
-
AwsAccountId: string | undefined;
|
|
1981
|
-
TopicId: string | undefined;
|
|
1982
|
-
Topic: TopicDetails | undefined;
|
|
1983
|
-
}
|
|
1984
1979
|
export declare const DescribeAnalysisDefinitionResponseFilterSensitiveLog: (
|
|
1985
1980
|
obj: DescribeAnalysisDefinitionResponse
|
|
1986
1981
|
) => any;
|
|
@@ -2033,6 +2028,3 @@ export declare const UpdateDataSourceRequestFilterSensitiveLog: (
|
|
|
2033
2028
|
export declare const UpdateTemplateRequestFilterSensitiveLog: (
|
|
2034
2029
|
obj: UpdateTemplateRequest
|
|
2035
2030
|
) => any;
|
|
2036
|
-
export declare const UpdateTopicRequestFilterSensitiveLog: (
|
|
2037
|
-
obj: UpdateTopicRequest
|
|
2038
|
-
) => any;
|
|
@@ -1,10 +1,35 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ResourcePermission,
|
|
3
|
+
ThemeAlias,
|
|
4
|
+
TopicDetails,
|
|
3
5
|
TopicRefreshSchedule,
|
|
4
6
|
VPCConnectionAvailabilityStatus,
|
|
5
7
|
VPCConnectionResourceStatus,
|
|
6
8
|
} from "./models_2";
|
|
7
9
|
import { User, UserRole } from "./models_3";
|
|
10
|
+
export interface UpdateThemeAliasResponse {
|
|
11
|
+
ThemeAlias?: ThemeAlias;
|
|
12
|
+
Status?: number;
|
|
13
|
+
RequestId?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface UpdateThemePermissionsRequest {
|
|
16
|
+
AwsAccountId: string | undefined;
|
|
17
|
+
ThemeId: string | undefined;
|
|
18
|
+
GrantPermissions?: ResourcePermission[];
|
|
19
|
+
RevokePermissions?: ResourcePermission[];
|
|
20
|
+
}
|
|
21
|
+
export interface UpdateThemePermissionsResponse {
|
|
22
|
+
ThemeId?: string;
|
|
23
|
+
ThemeArn?: string;
|
|
24
|
+
Permissions?: ResourcePermission[];
|
|
25
|
+
RequestId?: string;
|
|
26
|
+
Status?: number;
|
|
27
|
+
}
|
|
28
|
+
export interface UpdateTopicRequest {
|
|
29
|
+
AwsAccountId: string | undefined;
|
|
30
|
+
TopicId: string | undefined;
|
|
31
|
+
Topic: TopicDetails | undefined;
|
|
32
|
+
}
|
|
8
33
|
export interface UpdateTopicResponse {
|
|
9
34
|
TopicId?: string;
|
|
10
35
|
Arn?: string;
|
|
@@ -72,3 +97,6 @@ export interface UpdateVPCConnectionResponse {
|
|
|
72
97
|
RequestId?: string;
|
|
73
98
|
Status?: number;
|
|
74
99
|
}
|
|
100
|
+
export declare const UpdateTopicRequestFilterSensitiveLog: (
|
|
101
|
+
obj: UpdateTopicRequest
|
|
102
|
+
) => 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.347.1",
|
|
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",
|
|
@@ -21,36 +21,36 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.347.1",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.347.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.347.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.347.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.347.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.347.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.347.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.347.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.347.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.347.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.347.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.347.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.347.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.347.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.347.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.347.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.347.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.347.0",
|
|
43
|
+
"@aws-sdk/types": "3.347.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.347.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.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.347.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.347.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.347.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.347.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.347.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.347.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|