@aws-sdk/client-quicksight 3.839.0 → 3.844.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/index.js +12 -11
- package/dist-es/models/models_0.js +0 -6
- package/dist-es/models/models_1.js +6 -3
- package/dist-es/models/models_2.js +4 -0
- package/dist-types/commands/CreateAnalysisCommand.d.ts +5 -0
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +5 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +7 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +5 -0
- package/dist-types/commands/DeleteIdentityPropagationConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +5 -0
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +4 -1
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +7 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +5 -0
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +7 -1
- package/dist-types/commands/ListIdentityPropagationConfigsCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +4 -1
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +5 -0
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +5 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +7 -1
- package/dist-types/commands/UpdateIdentityPropagationConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTemplateCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +27 -74
- package/dist-types/models/models_1.d.ts +75 -72
- package/dist-types/models/models_2.d.ts +89 -103
- package/dist-types/models/models_3.d.ts +126 -45
- package/dist-types/models/models_4.d.ts +43 -131
- package/dist-types/models/models_5.d.ts +132 -3
- package/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +7 -16
- package/dist-types/ts3.4/models/models_1.d.ts +17 -19
- package/dist-types/ts3.4/models/models_2.d.ts +31 -25
- package/dist-types/ts3.4/models/models_3.d.ts +29 -11
- package/dist-types/ts3.4/models/models_4.d.ts +12 -23
- package/dist-types/ts3.4/models/models_5.d.ts +26 -1
- package/package.json +20 -20
|
@@ -18,7 +18,6 @@ import {
|
|
|
18
18
|
FilterGroup,
|
|
19
19
|
FontConfiguration,
|
|
20
20
|
Layout,
|
|
21
|
-
LegendOptions,
|
|
22
21
|
MeasureField,
|
|
23
22
|
NumberScale,
|
|
24
23
|
ParameterControl,
|
|
@@ -58,11 +57,18 @@ import {
|
|
|
58
57
|
ItemsLimitConfiguration,
|
|
59
58
|
KPIVisual,
|
|
60
59
|
LayerMapVisual,
|
|
60
|
+
LegendOptions,
|
|
61
61
|
LineChartVisual,
|
|
62
62
|
PaginationConfiguration,
|
|
63
63
|
PieChartVisual,
|
|
64
|
-
|
|
64
|
+
PivotTableFieldOptions,
|
|
65
|
+
PivotTableFieldWells,
|
|
66
|
+
PivotTableOptions,
|
|
67
|
+
PivotTablePaginatedReportOptions,
|
|
68
|
+
PivotTableSortConfiguration,
|
|
69
|
+
PivotTotalOptions,
|
|
65
70
|
RowAlternateColorOptions,
|
|
71
|
+
SubtotalOptions,
|
|
66
72
|
TableCellStyle,
|
|
67
73
|
TableTotalsPlacement,
|
|
68
74
|
TableTotalsScrollStatus,
|
|
@@ -74,6 +80,21 @@ import {
|
|
|
74
80
|
VisualTitleLabelOptions,
|
|
75
81
|
} from "./models_1";
|
|
76
82
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
83
|
+
export interface PivotTableTotalOptions {
|
|
84
|
+
RowSubtotalOptions?: SubtotalOptions | undefined;
|
|
85
|
+
ColumnSubtotalOptions?: SubtotalOptions | undefined;
|
|
86
|
+
RowTotalOptions?: PivotTotalOptions | undefined;
|
|
87
|
+
ColumnTotalOptions?: PivotTotalOptions | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface PivotTableConfiguration {
|
|
90
|
+
FieldWells?: PivotTableFieldWells | undefined;
|
|
91
|
+
SortConfiguration?: PivotTableSortConfiguration | undefined;
|
|
92
|
+
TableOptions?: PivotTableOptions | undefined;
|
|
93
|
+
TotalOptions?: PivotTableTotalOptions | undefined;
|
|
94
|
+
FieldOptions?: PivotTableFieldOptions | undefined;
|
|
95
|
+
PaginatedReportOptions?: PivotTablePaginatedReportOptions | undefined;
|
|
96
|
+
Interactions?: VisualInteractionOptions | undefined;
|
|
97
|
+
}
|
|
77
98
|
export declare const PivotTableConditionalFormattingScopeRole: {
|
|
78
99
|
readonly FIELD: "FIELD";
|
|
79
100
|
readonly FIELD_TOTAL: "FIELD_TOTAL";
|
|
@@ -1085,9 +1106,13 @@ export interface AssetBundleImportJobDataSourceCredentials {
|
|
|
1085
1106
|
CredentialPair?: AssetBundleImportJobDataSourceCredentialPair | undefined;
|
|
1086
1107
|
SecretArn?: string | undefined;
|
|
1087
1108
|
}
|
|
1109
|
+
export interface IdentityCenterConfiguration {
|
|
1110
|
+
EnableIdentityPropagation?: boolean | undefined;
|
|
1111
|
+
}
|
|
1088
1112
|
export interface AthenaParameters {
|
|
1089
1113
|
WorkGroup?: string | undefined;
|
|
1090
1114
|
RoleArn?: string | undefined;
|
|
1115
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
1091
1116
|
}
|
|
1092
1117
|
export interface AuroraParameters {
|
|
1093
1118
|
Host: string | undefined;
|
|
@@ -1154,9 +1179,6 @@ export interface RedshiftIAMParameters {
|
|
|
1154
1179
|
DatabaseGroups?: string[] | undefined;
|
|
1155
1180
|
AutoCreateDatabaseUser?: boolean | undefined;
|
|
1156
1181
|
}
|
|
1157
|
-
export interface IdentityCenterConfiguration {
|
|
1158
|
-
EnableIdentityPropagation?: boolean | undefined;
|
|
1159
|
-
}
|
|
1160
1182
|
export interface RedshiftParameters {
|
|
1161
1183
|
Host?: string | undefined;
|
|
1162
1184
|
Port?: number | undefined;
|
|
@@ -2233,6 +2255,7 @@ export declare const AuthenticationMethodOption: {
|
|
|
2233
2255
|
export type AuthenticationMethodOption =
|
|
2234
2256
|
(typeof AuthenticationMethodOption)[keyof typeof AuthenticationMethodOption];
|
|
2235
2257
|
export declare const ServiceType: {
|
|
2258
|
+
readonly ATHENA: "ATHENA";
|
|
2236
2259
|
readonly QBUSINESS: "QBUSINESS";
|
|
2237
2260
|
readonly REDSHIFT: "REDSHIFT";
|
|
2238
2261
|
};
|
|
@@ -2662,26 +2685,9 @@ export declare const BrandVersionStatus: {
|
|
|
2662
2685
|
};
|
|
2663
2686
|
export type BrandVersionStatus =
|
|
2664
2687
|
(typeof BrandVersionStatus)[keyof typeof BrandVersionStatus];
|
|
2665
|
-
export
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
BrandStatus?: BrandStatus | undefined;
|
|
2669
|
-
CreatedTime?: Date | undefined;
|
|
2670
|
-
LastUpdatedTime?: Date | undefined;
|
|
2671
|
-
VersionId?: string | undefined;
|
|
2672
|
-
VersionStatus?: BrandVersionStatus | undefined;
|
|
2673
|
-
Errors?: string[] | undefined;
|
|
2674
|
-
Logo?: Logo | undefined;
|
|
2675
|
-
}
|
|
2676
|
-
export interface BrandSummary {
|
|
2677
|
-
Arn?: string | undefined;
|
|
2678
|
-
BrandId?: string | undefined;
|
|
2679
|
-
BrandName?: string | undefined;
|
|
2680
|
-
Description?: string | undefined;
|
|
2681
|
-
BrandStatus?: BrandStatus | undefined;
|
|
2682
|
-
CreatedTime?: Date | undefined;
|
|
2683
|
-
LastUpdatedTime?: Date | undefined;
|
|
2684
|
-
}
|
|
2688
|
+
export declare const PivotTableConfigurationFilterSensitiveLog: (
|
|
2689
|
+
obj: PivotTableConfiguration
|
|
2690
|
+
) => any;
|
|
2685
2691
|
export declare const TextConditionalFormatFilterSensitiveLog: (
|
|
2686
2692
|
obj: TextConditionalFormat
|
|
2687
2693
|
) => any;
|
|
@@ -27,7 +27,8 @@ import {
|
|
|
27
27
|
AuthorSpecifiedAggregation,
|
|
28
28
|
BorderStyle,
|
|
29
29
|
BrandDefinition,
|
|
30
|
-
|
|
30
|
+
BrandStatus,
|
|
31
|
+
BrandVersionStatus,
|
|
31
32
|
ConstantType,
|
|
32
33
|
DataSetReference,
|
|
33
34
|
DataSourceParameters,
|
|
@@ -36,6 +37,7 @@ import {
|
|
|
36
37
|
ExceptionResourceType,
|
|
37
38
|
FilterClass,
|
|
38
39
|
FilterOperator,
|
|
40
|
+
Logo,
|
|
39
41
|
ServiceType,
|
|
40
42
|
SheetDefinition,
|
|
41
43
|
SslProperties,
|
|
@@ -44,6 +46,26 @@ import {
|
|
|
44
46
|
VpcConnectionProperties,
|
|
45
47
|
} from "./models_2";
|
|
46
48
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
49
|
+
export interface BrandDetail {
|
|
50
|
+
BrandId: string | undefined;
|
|
51
|
+
Arn?: string | undefined;
|
|
52
|
+
BrandStatus?: BrandStatus | undefined;
|
|
53
|
+
CreatedTime?: Date | undefined;
|
|
54
|
+
LastUpdatedTime?: Date | undefined;
|
|
55
|
+
VersionId?: string | undefined;
|
|
56
|
+
VersionStatus?: BrandVersionStatus | undefined;
|
|
57
|
+
Errors?: string[] | undefined;
|
|
58
|
+
Logo?: Logo | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface BrandSummary {
|
|
61
|
+
Arn?: string | undefined;
|
|
62
|
+
BrandId?: string | undefined;
|
|
63
|
+
BrandName?: string | undefined;
|
|
64
|
+
Description?: string | undefined;
|
|
65
|
+
BrandStatus?: BrandStatus | undefined;
|
|
66
|
+
CreatedTime?: Date | undefined;
|
|
67
|
+
LastUpdatedTime?: Date | undefined;
|
|
68
|
+
}
|
|
47
69
|
export interface CalculatedColumn {
|
|
48
70
|
ColumnName: string | undefined;
|
|
49
71
|
ColumnId: string | undefined;
|
|
@@ -78,6 +100,8 @@ export type CapabilityState =
|
|
|
78
100
|
export interface Capabilities {
|
|
79
101
|
ExportToCsv?: CapabilityState | undefined;
|
|
80
102
|
ExportToExcel?: CapabilityState | undefined;
|
|
103
|
+
ExportToPdf?: CapabilityState | undefined;
|
|
104
|
+
PrintReports?: CapabilityState | undefined;
|
|
81
105
|
CreateAndUpdateThemes?: CapabilityState | undefined;
|
|
82
106
|
AddOrRunAnomalyDetectionForAnalyses?: CapabilityState | undefined;
|
|
83
107
|
ShareAnalyses?: CapabilityState | undefined;
|
|
@@ -93,6 +117,10 @@ export interface Capabilities {
|
|
|
93
117
|
ShareDataSources?: CapabilityState | undefined;
|
|
94
118
|
ViewAccountSPICECapacity?: CapabilityState | undefined;
|
|
95
119
|
CreateSPICEDataset?: CapabilityState | undefined;
|
|
120
|
+
ExportToPdfInScheduledReports?: CapabilityState | undefined;
|
|
121
|
+
ExportToCsvInScheduledReports?: CapabilityState | undefined;
|
|
122
|
+
ExportToExcelInScheduledReports?: CapabilityState | undefined;
|
|
123
|
+
IncludeContentInScheduledReportsEmail?: CapabilityState | undefined;
|
|
96
124
|
}
|
|
97
125
|
export declare const ColumnDataType: {
|
|
98
126
|
readonly DATETIME: "DATETIME";
|
|
@@ -2123,16 +2151,6 @@ export interface DeleteThemeAliasResponse {
|
|
|
2123
2151
|
Status?: number | undefined;
|
|
2124
2152
|
ThemeId?: string | undefined;
|
|
2125
2153
|
}
|
|
2126
|
-
export interface DeleteTopicRequest {
|
|
2127
|
-
AwsAccountId: string | undefined;
|
|
2128
|
-
TopicId: string | undefined;
|
|
2129
|
-
}
|
|
2130
|
-
export interface DeleteTopicResponse {
|
|
2131
|
-
Arn?: string | undefined;
|
|
2132
|
-
TopicId?: string | undefined;
|
|
2133
|
-
RequestId?: string | undefined;
|
|
2134
|
-
Status?: number | undefined;
|
|
2135
|
-
}
|
|
2136
2154
|
export declare const CalculatedColumnFilterSensitiveLog: (
|
|
2137
2155
|
obj: CalculatedColumn
|
|
2138
2156
|
) => any;
|
|
@@ -39,8 +39,6 @@ import {
|
|
|
39
39
|
AuthorizedTargetsByService,
|
|
40
40
|
BookmarksConfigurations,
|
|
41
41
|
BrandDefinition,
|
|
42
|
-
BrandDetail,
|
|
43
|
-
BrandSummary,
|
|
44
42
|
DashboardVisualId,
|
|
45
43
|
DataSetRefreshProperties,
|
|
46
44
|
FilterOperator,
|
|
@@ -51,6 +49,8 @@ import {
|
|
|
51
49
|
} from "./models_2";
|
|
52
50
|
import {
|
|
53
51
|
_Parameters,
|
|
52
|
+
BrandDetail,
|
|
53
|
+
BrandSummary,
|
|
54
54
|
CustomPermissions,
|
|
55
55
|
Dashboard,
|
|
56
56
|
DashboardError,
|
|
@@ -90,6 +90,16 @@ import {
|
|
|
90
90
|
VPCConnectionResourceStatus,
|
|
91
91
|
} from "./models_3";
|
|
92
92
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
93
|
+
export interface DeleteTopicRequest {
|
|
94
|
+
AwsAccountId: string | undefined;
|
|
95
|
+
TopicId: string | undefined;
|
|
96
|
+
}
|
|
97
|
+
export interface DeleteTopicResponse {
|
|
98
|
+
Arn?: string | undefined;
|
|
99
|
+
TopicId?: string | undefined;
|
|
100
|
+
RequestId?: string | undefined;
|
|
101
|
+
Status?: number | undefined;
|
|
102
|
+
}
|
|
93
103
|
export interface DeleteTopicRefreshScheduleRequest {
|
|
94
104
|
AwsAccountId: string | undefined;
|
|
95
105
|
TopicId: string | undefined;
|
|
@@ -1955,27 +1965,6 @@ export interface SearchTopicsResponse {
|
|
|
1955
1965
|
Status?: number | undefined;
|
|
1956
1966
|
RequestId?: string | undefined;
|
|
1957
1967
|
}
|
|
1958
|
-
export interface StartAssetBundleExportJobRequest {
|
|
1959
|
-
AwsAccountId: string | undefined;
|
|
1960
|
-
AssetBundleExportJobId: string | undefined;
|
|
1961
|
-
ResourceArns: string[] | undefined;
|
|
1962
|
-
IncludeAllDependencies?: boolean | undefined;
|
|
1963
|
-
ExportFormat: AssetBundleExportFormat | undefined;
|
|
1964
|
-
CloudFormationOverridePropertyConfiguration?:
|
|
1965
|
-
| AssetBundleCloudFormationOverridePropertyConfiguration
|
|
1966
|
-
| undefined;
|
|
1967
|
-
IncludePermissions?: boolean | undefined;
|
|
1968
|
-
IncludeTags?: boolean | undefined;
|
|
1969
|
-
ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
|
|
1970
|
-
IncludeFolderMemberships?: boolean | undefined;
|
|
1971
|
-
IncludeFolderMembers?: IncludeFolderMembers | undefined;
|
|
1972
|
-
}
|
|
1973
|
-
export interface StartAssetBundleExportJobResponse {
|
|
1974
|
-
Arn?: string | undefined;
|
|
1975
|
-
AssetBundleExportJobId?: string | undefined;
|
|
1976
|
-
RequestId?: string | undefined;
|
|
1977
|
-
Status?: number | undefined;
|
|
1978
|
-
}
|
|
1979
1968
|
export declare const DescribeAnalysisResponseFilterSensitiveLog: (
|
|
1980
1969
|
obj: DescribeAnalysisResponse
|
|
1981
1970
|
) => any;
|
|
@@ -2,6 +2,9 @@ import { AccountCustomization, ResourceStatus } from "./models_0";
|
|
|
2
2
|
import {
|
|
3
3
|
AnalysisDefinition,
|
|
4
4
|
AnalysisSourceEntity,
|
|
5
|
+
AssetBundleCloudFormationOverridePropertyConfiguration,
|
|
6
|
+
AssetBundleExportFormat,
|
|
7
|
+
AssetBundleExportJobValidationStrategy,
|
|
5
8
|
AssetBundleImportFailureAction,
|
|
6
9
|
AssetBundleImportJobOverrideParameters,
|
|
7
10
|
AssetBundleImportJobOverridePermissions,
|
|
@@ -10,7 +13,6 @@ import {
|
|
|
10
13
|
AssetBundleImportSource,
|
|
11
14
|
AssignmentStatus,
|
|
12
15
|
BrandDefinition,
|
|
13
|
-
BrandDetail,
|
|
14
16
|
DataSourceParameters,
|
|
15
17
|
ServiceType,
|
|
16
18
|
SslProperties,
|
|
@@ -22,6 +24,7 @@ import {
|
|
|
22
24
|
} from "./models_2";
|
|
23
25
|
import {
|
|
24
26
|
_Parameters,
|
|
27
|
+
BrandDetail,
|
|
25
28
|
Capabilities,
|
|
26
29
|
ColumnGroup,
|
|
27
30
|
ColumnLevelPermissionRule,
|
|
@@ -57,6 +60,7 @@ import {
|
|
|
57
60
|
} from "./models_3";
|
|
58
61
|
import {
|
|
59
62
|
FailedKeyRegistrationEntry,
|
|
63
|
+
IncludeFolderMembers,
|
|
60
64
|
PersonalizationMode,
|
|
61
65
|
PurchaseMode,
|
|
62
66
|
QSearchStatus,
|
|
@@ -66,6 +70,27 @@ import {
|
|
|
66
70
|
User,
|
|
67
71
|
UserRole,
|
|
68
72
|
} from "./models_4";
|
|
73
|
+
export interface StartAssetBundleExportJobRequest {
|
|
74
|
+
AwsAccountId: string | undefined;
|
|
75
|
+
AssetBundleExportJobId: string | undefined;
|
|
76
|
+
ResourceArns: string[] | undefined;
|
|
77
|
+
IncludeAllDependencies?: boolean | undefined;
|
|
78
|
+
ExportFormat: AssetBundleExportFormat | undefined;
|
|
79
|
+
CloudFormationOverridePropertyConfiguration?:
|
|
80
|
+
| AssetBundleCloudFormationOverridePropertyConfiguration
|
|
81
|
+
| undefined;
|
|
82
|
+
IncludePermissions?: boolean | undefined;
|
|
83
|
+
IncludeTags?: boolean | undefined;
|
|
84
|
+
ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
|
|
85
|
+
IncludeFolderMemberships?: boolean | undefined;
|
|
86
|
+
IncludeFolderMembers?: IncludeFolderMembers | undefined;
|
|
87
|
+
}
|
|
88
|
+
export interface StartAssetBundleExportJobResponse {
|
|
89
|
+
Arn?: string | undefined;
|
|
90
|
+
AssetBundleExportJobId?: string | undefined;
|
|
91
|
+
RequestId?: string | undefined;
|
|
92
|
+
Status?: number | undefined;
|
|
93
|
+
}
|
|
69
94
|
export interface StartAssetBundleImportJobRequest {
|
|
70
95
|
AwsAccountId: string | undefined;
|
|
71
96
|
AssetBundleImportJobId: string | undefined;
|
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.844.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-quicksight",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.844.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.844.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.844.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
|
+
"@aws-sdk/types": "3.840.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.844.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.844.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0
|
|
35
|
+
"@smithy/core": "^3.7.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.1.0",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.14",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.15",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
|
-
"@smithy/node-http-handler": "^4.0
|
|
45
|
+
"@smithy/node-http-handler": "^4.1.0",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.6",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.22",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.22",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.6",
|