@aws-sdk/client-acm 3.303.0 → 3.309.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/AddTagsToCertificateCommand.js +2 -2
- package/dist-cjs/commands/DeleteCertificateCommand.js +2 -2
- package/dist-cjs/commands/DescribeCertificateCommand.js +2 -2
- package/dist-cjs/commands/ExportCertificateCommand.js +2 -2
- package/dist-cjs/commands/GetAccountConfigurationCommand.js +2 -2
- package/dist-cjs/commands/GetCertificateCommand.js +2 -2
- package/dist-cjs/commands/ImportCertificateCommand.js +2 -2
- package/dist-cjs/commands/ListCertificatesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForCertificateCommand.js +2 -2
- package/dist-cjs/commands/PutAccountConfigurationCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsFromCertificateCommand.js +2 -2
- package/dist-cjs/commands/RenewCertificateCommand.js +2 -2
- package/dist-cjs/commands/RequestCertificateCommand.js +2 -2
- package/dist-cjs/commands/ResendValidationEmailCommand.js +2 -2
- package/dist-cjs/commands/UpdateCertificateOptionsCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_1.js +314 -326
- package/dist-es/commands/AddTagsToCertificateCommand.js +3 -3
- package/dist-es/commands/DeleteCertificateCommand.js +3 -3
- package/dist-es/commands/DescribeCertificateCommand.js +3 -3
- package/dist-es/commands/ExportCertificateCommand.js +3 -3
- package/dist-es/commands/GetAccountConfigurationCommand.js +3 -3
- package/dist-es/commands/GetCertificateCommand.js +3 -3
- package/dist-es/commands/ImportCertificateCommand.js +3 -3
- package/dist-es/commands/ListCertificatesCommand.js +3 -3
- package/dist-es/commands/ListTagsForCertificateCommand.js +3 -3
- package/dist-es/commands/PutAccountConfigurationCommand.js +3 -3
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +3 -3
- package/dist-es/commands/RenewCertificateCommand.js +3 -3
- package/dist-es/commands/RequestCertificateCommand.js +3 -3
- package/dist-es/commands/ResendValidationEmailCommand.js +3 -3
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_1.js +283 -295
- package/dist-types/protocols/Aws_json1_1.d.ts +120 -30
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -30
- package/package.json +30 -30
|
@@ -15,33 +15,123 @@ import { RenewCertificateCommandInput, RenewCertificateCommandOutput } from "../
|
|
|
15
15
|
import { RequestCertificateCommandInput, RequestCertificateCommandOutput } from "../commands/RequestCertificateCommand";
|
|
16
16
|
import { ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput } from "../commands/ResendValidationEmailCommand";
|
|
17
17
|
import { UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput } from "../commands/UpdateCertificateOptionsCommand";
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export declare const
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export declare const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
export declare const
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
export declare const
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export declare const
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
export declare const
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
export declare const
|
|
46
|
-
|
|
47
|
-
|
|
18
|
+
/**
|
|
19
|
+
* serializeAws_json1_1AddTagsToCertificateCommand
|
|
20
|
+
*/
|
|
21
|
+
export declare const se_AddTagsToCertificateCommand: (input: AddTagsToCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
/**
|
|
23
|
+
* serializeAws_json1_1DeleteCertificateCommand
|
|
24
|
+
*/
|
|
25
|
+
export declare const se_DeleteCertificateCommand: (input: DeleteCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
/**
|
|
27
|
+
* serializeAws_json1_1DescribeCertificateCommand
|
|
28
|
+
*/
|
|
29
|
+
export declare const se_DescribeCertificateCommand: (input: DescribeCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_json1_1ExportCertificateCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_ExportCertificateCommand: (input: ExportCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
/**
|
|
35
|
+
* serializeAws_json1_1GetAccountConfigurationCommand
|
|
36
|
+
*/
|
|
37
|
+
export declare const se_GetAccountConfigurationCommand: (input: GetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_json1_1GetCertificateCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_GetCertificateCommand: (input: GetCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_json1_1ImportCertificateCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_ImportCertificateCommand: (input: ImportCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_json1_1ListCertificatesCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_ListCertificatesCommand: (input: ListCertificatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
/**
|
|
51
|
+
* serializeAws_json1_1ListTagsForCertificateCommand
|
|
52
|
+
*/
|
|
53
|
+
export declare const se_ListTagsForCertificateCommand: (input: ListTagsForCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_json1_1PutAccountConfigurationCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_PutAccountConfigurationCommand: (input: PutAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* serializeAws_json1_1RemoveTagsFromCertificateCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const se_RemoveTagsFromCertificateCommand: (input: RemoveTagsFromCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_json1_1RenewCertificateCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_RenewCertificateCommand: (input: RenewCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
/**
|
|
67
|
+
* serializeAws_json1_1RequestCertificateCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const se_RequestCertificateCommand: (input: RequestCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_json1_1ResendValidationEmailCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_ResendValidationEmailCommand: (input: ResendValidationEmailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_json1_1UpdateCertificateOptionsCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_UpdateCertificateOptionsCommand: (input: UpdateCertificateOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* deserializeAws_json1_1AddTagsToCertificateCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const de_AddTagsToCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddTagsToCertificateCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* deserializeAws_json1_1DeleteCertificateCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const de_DeleteCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCertificateCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* deserializeAws_json1_1DescribeCertificateCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const de_DescribeCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCertificateCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* deserializeAws_json1_1ExportCertificateCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const de_ExportCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportCertificateCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* deserializeAws_json1_1GetAccountConfigurationCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const de_GetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountConfigurationCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* deserializeAws_json1_1GetCertificateCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const de_GetCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCertificateCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* deserializeAws_json1_1ImportCertificateCommand
|
|
104
|
+
*/
|
|
105
|
+
export declare const de_ImportCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportCertificateCommandOutput>;
|
|
106
|
+
/**
|
|
107
|
+
* deserializeAws_json1_1ListCertificatesCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const de_ListCertificatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCertificatesCommandOutput>;
|
|
110
|
+
/**
|
|
111
|
+
* deserializeAws_json1_1ListTagsForCertificateCommand
|
|
112
|
+
*/
|
|
113
|
+
export declare const de_ListTagsForCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForCertificateCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* deserializeAws_json1_1PutAccountConfigurationCommand
|
|
116
|
+
*/
|
|
117
|
+
export declare const de_PutAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAccountConfigurationCommandOutput>;
|
|
118
|
+
/**
|
|
119
|
+
* deserializeAws_json1_1RemoveTagsFromCertificateCommand
|
|
120
|
+
*/
|
|
121
|
+
export declare const de_RemoveTagsFromCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveTagsFromCertificateCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* deserializeAws_json1_1RenewCertificateCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const de_RenewCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RenewCertificateCommandOutput>;
|
|
126
|
+
/**
|
|
127
|
+
* deserializeAws_json1_1RequestCertificateCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const de_RequestCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RequestCertificateCommandOutput>;
|
|
130
|
+
/**
|
|
131
|
+
* deserializeAws_json1_1ResendValidationEmailCommand
|
|
132
|
+
*/
|
|
133
|
+
export declare const de_ResendValidationEmailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResendValidationEmailCommandOutput>;
|
|
134
|
+
/**
|
|
135
|
+
* deserializeAws_json1_1UpdateCertificateOptionsCommand
|
|
136
|
+
*/
|
|
137
|
+
export declare const de_UpdateCertificateOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCertificateOptionsCommandOutput>;
|
|
@@ -63,123 +63,123 @@ import {
|
|
|
63
63
|
UpdateCertificateOptionsCommandInput,
|
|
64
64
|
UpdateCertificateOptionsCommandOutput,
|
|
65
65
|
} from "../commands/UpdateCertificateOptionsCommand";
|
|
66
|
-
export declare const
|
|
66
|
+
export declare const se_AddTagsToCertificateCommand: (
|
|
67
67
|
input: AddTagsToCertificateCommandInput,
|
|
68
68
|
context: __SerdeContext
|
|
69
69
|
) => Promise<__HttpRequest>;
|
|
70
|
-
export declare const
|
|
70
|
+
export declare const se_DeleteCertificateCommand: (
|
|
71
71
|
input: DeleteCertificateCommandInput,
|
|
72
72
|
context: __SerdeContext
|
|
73
73
|
) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const
|
|
74
|
+
export declare const se_DescribeCertificateCommand: (
|
|
75
75
|
input: DescribeCertificateCommandInput,
|
|
76
76
|
context: __SerdeContext
|
|
77
77
|
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const
|
|
78
|
+
export declare const se_ExportCertificateCommand: (
|
|
79
79
|
input: ExportCertificateCommandInput,
|
|
80
80
|
context: __SerdeContext
|
|
81
81
|
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const
|
|
82
|
+
export declare const se_GetAccountConfigurationCommand: (
|
|
83
83
|
input: GetAccountConfigurationCommandInput,
|
|
84
84
|
context: __SerdeContext
|
|
85
85
|
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const
|
|
86
|
+
export declare const se_GetCertificateCommand: (
|
|
87
87
|
input: GetCertificateCommandInput,
|
|
88
88
|
context: __SerdeContext
|
|
89
89
|
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const
|
|
90
|
+
export declare const se_ImportCertificateCommand: (
|
|
91
91
|
input: ImportCertificateCommandInput,
|
|
92
92
|
context: __SerdeContext
|
|
93
93
|
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const
|
|
94
|
+
export declare const se_ListCertificatesCommand: (
|
|
95
95
|
input: ListCertificatesCommandInput,
|
|
96
96
|
context: __SerdeContext
|
|
97
97
|
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const
|
|
98
|
+
export declare const se_ListTagsForCertificateCommand: (
|
|
99
99
|
input: ListTagsForCertificateCommandInput,
|
|
100
100
|
context: __SerdeContext
|
|
101
101
|
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const
|
|
102
|
+
export declare const se_PutAccountConfigurationCommand: (
|
|
103
103
|
input: PutAccountConfigurationCommandInput,
|
|
104
104
|
context: __SerdeContext
|
|
105
105
|
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const
|
|
106
|
+
export declare const se_RemoveTagsFromCertificateCommand: (
|
|
107
107
|
input: RemoveTagsFromCertificateCommandInput,
|
|
108
108
|
context: __SerdeContext
|
|
109
109
|
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const
|
|
110
|
+
export declare const se_RenewCertificateCommand: (
|
|
111
111
|
input: RenewCertificateCommandInput,
|
|
112
112
|
context: __SerdeContext
|
|
113
113
|
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const
|
|
114
|
+
export declare const se_RequestCertificateCommand: (
|
|
115
115
|
input: RequestCertificateCommandInput,
|
|
116
116
|
context: __SerdeContext
|
|
117
117
|
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const
|
|
118
|
+
export declare const se_ResendValidationEmailCommand: (
|
|
119
119
|
input: ResendValidationEmailCommandInput,
|
|
120
120
|
context: __SerdeContext
|
|
121
121
|
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const
|
|
122
|
+
export declare const se_UpdateCertificateOptionsCommand: (
|
|
123
123
|
input: UpdateCertificateOptionsCommandInput,
|
|
124
124
|
context: __SerdeContext
|
|
125
125
|
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const
|
|
126
|
+
export declare const de_AddTagsToCertificateCommand: (
|
|
127
127
|
output: __HttpResponse,
|
|
128
128
|
context: __SerdeContext
|
|
129
129
|
) => Promise<AddTagsToCertificateCommandOutput>;
|
|
130
|
-
export declare const
|
|
130
|
+
export declare const de_DeleteCertificateCommand: (
|
|
131
131
|
output: __HttpResponse,
|
|
132
132
|
context: __SerdeContext
|
|
133
133
|
) => Promise<DeleteCertificateCommandOutput>;
|
|
134
|
-
export declare const
|
|
134
|
+
export declare const de_DescribeCertificateCommand: (
|
|
135
135
|
output: __HttpResponse,
|
|
136
136
|
context: __SerdeContext
|
|
137
137
|
) => Promise<DescribeCertificateCommandOutput>;
|
|
138
|
-
export declare const
|
|
138
|
+
export declare const de_ExportCertificateCommand: (
|
|
139
139
|
output: __HttpResponse,
|
|
140
140
|
context: __SerdeContext
|
|
141
141
|
) => Promise<ExportCertificateCommandOutput>;
|
|
142
|
-
export declare const
|
|
142
|
+
export declare const de_GetAccountConfigurationCommand: (
|
|
143
143
|
output: __HttpResponse,
|
|
144
144
|
context: __SerdeContext
|
|
145
145
|
) => Promise<GetAccountConfigurationCommandOutput>;
|
|
146
|
-
export declare const
|
|
146
|
+
export declare const de_GetCertificateCommand: (
|
|
147
147
|
output: __HttpResponse,
|
|
148
148
|
context: __SerdeContext
|
|
149
149
|
) => Promise<GetCertificateCommandOutput>;
|
|
150
|
-
export declare const
|
|
150
|
+
export declare const de_ImportCertificateCommand: (
|
|
151
151
|
output: __HttpResponse,
|
|
152
152
|
context: __SerdeContext
|
|
153
153
|
) => Promise<ImportCertificateCommandOutput>;
|
|
154
|
-
export declare const
|
|
154
|
+
export declare const de_ListCertificatesCommand: (
|
|
155
155
|
output: __HttpResponse,
|
|
156
156
|
context: __SerdeContext
|
|
157
157
|
) => Promise<ListCertificatesCommandOutput>;
|
|
158
|
-
export declare const
|
|
158
|
+
export declare const de_ListTagsForCertificateCommand: (
|
|
159
159
|
output: __HttpResponse,
|
|
160
160
|
context: __SerdeContext
|
|
161
161
|
) => Promise<ListTagsForCertificateCommandOutput>;
|
|
162
|
-
export declare const
|
|
162
|
+
export declare const de_PutAccountConfigurationCommand: (
|
|
163
163
|
output: __HttpResponse,
|
|
164
164
|
context: __SerdeContext
|
|
165
165
|
) => Promise<PutAccountConfigurationCommandOutput>;
|
|
166
|
-
export declare const
|
|
166
|
+
export declare const de_RemoveTagsFromCertificateCommand: (
|
|
167
167
|
output: __HttpResponse,
|
|
168
168
|
context: __SerdeContext
|
|
169
169
|
) => Promise<RemoveTagsFromCertificateCommandOutput>;
|
|
170
|
-
export declare const
|
|
170
|
+
export declare const de_RenewCertificateCommand: (
|
|
171
171
|
output: __HttpResponse,
|
|
172
172
|
context: __SerdeContext
|
|
173
173
|
) => Promise<RenewCertificateCommandOutput>;
|
|
174
|
-
export declare const
|
|
174
|
+
export declare const de_RequestCertificateCommand: (
|
|
175
175
|
output: __HttpResponse,
|
|
176
176
|
context: __SerdeContext
|
|
177
177
|
) => Promise<RequestCertificateCommandOutput>;
|
|
178
|
-
export declare const
|
|
178
|
+
export declare const de_ResendValidationEmailCommand: (
|
|
179
179
|
output: __HttpResponse,
|
|
180
180
|
context: __SerdeContext
|
|
181
181
|
) => Promise<ResendValidationEmailCommandOutput>;
|
|
182
|
-
export declare const
|
|
182
|
+
export declare const de_UpdateCertificateOptionsCommand: (
|
|
183
183
|
output: __HttpResponse,
|
|
184
184
|
context: __SerdeContext
|
|
185
185
|
) => Promise<UpdateCertificateOptionsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-acm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.309.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
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/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.309.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.309.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.309.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.303.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.309.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.309.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
|
-
"@aws-sdk/util-waiter": "3.
|
|
56
|
+
"@aws-sdk/util-waiter": "3.306.0",
|
|
57
57
|
"tslib": "^2.5.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|