@aws-sdk/client-mediapackage-vod 3.687.0 → 3.692.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.
@@ -6,14 +6,14 @@ export declare const __PeriodTriggersElement: {
6
6
  export type __PeriodTriggersElement =
7
7
  (typeof __PeriodTriggersElement)[keyof typeof __PeriodTriggersElement];
8
8
  export interface AssetShallow {
9
- Arn?: string;
10
- CreatedAt?: string;
11
- Id?: string;
12
- PackagingGroupId?: string;
13
- ResourceId?: string;
14
- SourceArn?: string;
15
- SourceRoleArn?: string;
16
- Tags?: Record<string, string>;
9
+ Arn?: string | undefined;
10
+ CreatedAt?: string | undefined;
11
+ Id?: string | undefined;
12
+ PackagingGroupId?: string | undefined;
13
+ ResourceId?: string | undefined;
14
+ SourceArn?: string | undefined;
15
+ SourceRoleArn?: string | undefined;
16
+ Tags?: Record<string, string> | undefined;
17
17
  }
18
18
  export declare const ManifestLayout: {
19
19
  readonly COMPACT: "COMPACT";
@@ -39,22 +39,22 @@ export declare const StreamOrder: {
39
39
  };
40
40
  export type StreamOrder = (typeof StreamOrder)[keyof typeof StreamOrder];
41
41
  export interface StreamSelection {
42
- MaxVideoBitsPerSecond?: number;
43
- MinVideoBitsPerSecond?: number;
44
- StreamOrder?: StreamOrder;
42
+ MaxVideoBitsPerSecond?: number | undefined;
43
+ MinVideoBitsPerSecond?: number | undefined;
44
+ StreamOrder?: StreamOrder | undefined;
45
45
  }
46
46
  export interface DashManifest {
47
- ManifestLayout?: ManifestLayout;
48
- ManifestName?: string;
49
- MinBufferTimeSeconds?: number;
50
- Profile?: Profile;
51
- ScteMarkersSource?: ScteMarkersSource;
52
- StreamSelection?: StreamSelection;
47
+ ManifestLayout?: ManifestLayout | undefined;
48
+ ManifestName?: string | undefined;
49
+ MinBufferTimeSeconds?: number | undefined;
50
+ Profile?: Profile | undefined;
51
+ ScteMarkersSource?: ScteMarkersSource | undefined;
52
+ StreamSelection?: StreamSelection | undefined;
53
53
  }
54
54
  export interface EgressEndpoint {
55
- PackagingConfigurationId?: string;
56
- Status?: string;
57
- Url?: string;
55
+ PackagingConfigurationId?: string | undefined;
56
+ Status?: string | undefined;
57
+ Url?: string | undefined;
58
58
  }
59
59
  export declare const AdMarkers: {
60
60
  readonly NONE: "NONE";
@@ -63,16 +63,16 @@ export declare const AdMarkers: {
63
63
  };
64
64
  export type AdMarkers = (typeof AdMarkers)[keyof typeof AdMarkers];
65
65
  export interface HlsManifest {
66
- AdMarkers?: AdMarkers;
67
- IncludeIframeOnlyStream?: boolean;
68
- ManifestName?: string;
69
- ProgramDateTimeIntervalSeconds?: number;
70
- RepeatExtXKey?: boolean;
71
- StreamSelection?: StreamSelection;
66
+ AdMarkers?: AdMarkers | undefined;
67
+ IncludeIframeOnlyStream?: boolean | undefined;
68
+ ManifestName?: string | undefined;
69
+ ProgramDateTimeIntervalSeconds?: number | undefined;
70
+ RepeatExtXKey?: boolean | undefined;
71
+ StreamSelection?: StreamSelection | undefined;
72
72
  }
73
73
  export interface MssManifest {
74
- ManifestName?: string;
75
- StreamSelection?: StreamSelection;
74
+ ManifestName?: string | undefined;
75
+ StreamSelection?: StreamSelection | undefined;
76
76
  }
77
77
  export declare const PresetSpeke20Audio: {
78
78
  readonly PRESET_AUDIO_1: "PRESET-AUDIO-1";
@@ -102,20 +102,20 @@ export interface EncryptionContractConfiguration {
102
102
  PresetSpeke20Video: PresetSpeke20Video | undefined;
103
103
  }
104
104
  export interface SpekeKeyProvider {
105
- EncryptionContractConfiguration?: EncryptionContractConfiguration;
105
+ EncryptionContractConfiguration?: EncryptionContractConfiguration | undefined;
106
106
  RoleArn: string | undefined;
107
107
  SystemIds: string[] | undefined;
108
108
  Url: string | undefined;
109
109
  }
110
110
  export interface CmafEncryption {
111
- ConstantInitializationVector?: string;
111
+ ConstantInitializationVector?: string | undefined;
112
112
  SpekeKeyProvider: SpekeKeyProvider | undefined;
113
113
  }
114
114
  export interface CmafPackage {
115
- Encryption?: CmafEncryption;
115
+ Encryption?: CmafEncryption | undefined;
116
116
  HlsManifests: HlsManifest[] | undefined;
117
- IncludeEncoderConfigurationInSegments?: boolean;
118
- SegmentDurationSeconds?: number;
117
+ IncludeEncoderConfigurationInSegments?: boolean | undefined;
118
+ SegmentDurationSeconds?: number | undefined;
119
119
  }
120
120
  export interface DashEncryption {
121
121
  SpekeKeyProvider: SpekeKeyProvider | undefined;
@@ -129,12 +129,12 @@ export type SegmentTemplateFormat =
129
129
  (typeof SegmentTemplateFormat)[keyof typeof SegmentTemplateFormat];
130
130
  export interface DashPackage {
131
131
  DashManifests: DashManifest[] | undefined;
132
- Encryption?: DashEncryption;
133
- IncludeEncoderConfigurationInSegments?: boolean;
134
- IncludeIframeOnlyStream?: boolean;
135
- PeriodTriggers?: __PeriodTriggersElement[];
136
- SegmentDurationSeconds?: number;
137
- SegmentTemplateFormat?: SegmentTemplateFormat;
132
+ Encryption?: DashEncryption | undefined;
133
+ IncludeEncoderConfigurationInSegments?: boolean | undefined;
134
+ IncludeIframeOnlyStream?: boolean | undefined;
135
+ PeriodTriggers?: __PeriodTriggersElement[] | undefined;
136
+ SegmentDurationSeconds?: number | undefined;
137
+ SegmentTemplateFormat?: SegmentTemplateFormat | undefined;
138
138
  }
139
139
  export declare const EncryptionMethod: {
140
140
  readonly AES_128: "AES_128";
@@ -143,76 +143,76 @@ export declare const EncryptionMethod: {
143
143
  export type EncryptionMethod =
144
144
  (typeof EncryptionMethod)[keyof typeof EncryptionMethod];
145
145
  export interface HlsEncryption {
146
- ConstantInitializationVector?: string;
147
- EncryptionMethod?: EncryptionMethod;
146
+ ConstantInitializationVector?: string | undefined;
147
+ EncryptionMethod?: EncryptionMethod | undefined;
148
148
  SpekeKeyProvider: SpekeKeyProvider | undefined;
149
149
  }
150
150
  export interface HlsPackage {
151
- Encryption?: HlsEncryption;
151
+ Encryption?: HlsEncryption | undefined;
152
152
  HlsManifests: HlsManifest[] | undefined;
153
- IncludeDvbSubtitles?: boolean;
154
- SegmentDurationSeconds?: number;
155
- UseAudioRenditionGroup?: boolean;
153
+ IncludeDvbSubtitles?: boolean | undefined;
154
+ SegmentDurationSeconds?: number | undefined;
155
+ UseAudioRenditionGroup?: boolean | undefined;
156
156
  }
157
157
  export interface MssEncryption {
158
158
  SpekeKeyProvider: SpekeKeyProvider | undefined;
159
159
  }
160
160
  export interface MssPackage {
161
- Encryption?: MssEncryption;
161
+ Encryption?: MssEncryption | undefined;
162
162
  MssManifests: MssManifest[] | undefined;
163
- SegmentDurationSeconds?: number;
163
+ SegmentDurationSeconds?: number | undefined;
164
164
  }
165
165
  export interface PackagingConfiguration {
166
- Arn?: string;
167
- CmafPackage?: CmafPackage;
168
- CreatedAt?: string;
169
- DashPackage?: DashPackage;
170
- HlsPackage?: HlsPackage;
171
- Id?: string;
172
- MssPackage?: MssPackage;
173
- PackagingGroupId?: string;
174
- Tags?: Record<string, string>;
166
+ Arn?: string | undefined;
167
+ CmafPackage?: CmafPackage | undefined;
168
+ CreatedAt?: string | undefined;
169
+ DashPackage?: DashPackage | undefined;
170
+ HlsPackage?: HlsPackage | undefined;
171
+ Id?: string | undefined;
172
+ MssPackage?: MssPackage | undefined;
173
+ PackagingGroupId?: string | undefined;
174
+ Tags?: Record<string, string> | undefined;
175
175
  }
176
176
  export interface Authorization {
177
177
  CdnIdentifierSecret: string | undefined;
178
178
  SecretsRoleArn: string | undefined;
179
179
  }
180
180
  export interface EgressAccessLogs {
181
- LogGroupName?: string;
181
+ LogGroupName?: string | undefined;
182
182
  }
183
183
  export interface PackagingGroup {
184
- ApproximateAssetCount?: number;
185
- Arn?: string;
186
- Authorization?: Authorization;
187
- CreatedAt?: string;
188
- DomainName?: string;
189
- EgressAccessLogs?: EgressAccessLogs;
190
- Id?: string;
191
- Tags?: Record<string, string>;
184
+ ApproximateAssetCount?: number | undefined;
185
+ Arn?: string | undefined;
186
+ Authorization?: Authorization | undefined;
187
+ CreatedAt?: string | undefined;
188
+ DomainName?: string | undefined;
189
+ EgressAccessLogs?: EgressAccessLogs | undefined;
190
+ Id?: string | undefined;
191
+ Tags?: Record<string, string> | undefined;
192
192
  }
193
193
  export interface ConfigureLogsRequest {
194
- EgressAccessLogs?: EgressAccessLogs;
194
+ EgressAccessLogs?: EgressAccessLogs | undefined;
195
195
  Id: string | undefined;
196
196
  }
197
197
  export interface ConfigureLogsResponse {
198
- Arn?: string;
199
- Authorization?: Authorization;
200
- CreatedAt?: string;
201
- DomainName?: string;
202
- EgressAccessLogs?: EgressAccessLogs;
203
- Id?: string;
204
- Tags?: Record<string, string>;
198
+ Arn?: string | undefined;
199
+ Authorization?: Authorization | undefined;
200
+ CreatedAt?: string | undefined;
201
+ DomainName?: string | undefined;
202
+ EgressAccessLogs?: EgressAccessLogs | undefined;
203
+ Id?: string | undefined;
204
+ Tags?: Record<string, string> | undefined;
205
205
  }
206
206
  export declare class ForbiddenException extends __BaseException {
207
207
  readonly name: "ForbiddenException";
208
208
  readonly $fault: "client";
209
- Message?: string;
209
+ Message?: string | undefined;
210
210
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
211
211
  }
212
212
  export declare class InternalServerErrorException extends __BaseException {
213
213
  readonly name: "InternalServerErrorException";
214
214
  readonly $fault: "server";
215
- Message?: string;
215
+ Message?: string | undefined;
216
216
  constructor(
217
217
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
218
218
  );
@@ -220,13 +220,13 @@ export declare class InternalServerErrorException extends __BaseException {
220
220
  export declare class NotFoundException extends __BaseException {
221
221
  readonly name: "NotFoundException";
222
222
  readonly $fault: "client";
223
- Message?: string;
223
+ Message?: string | undefined;
224
224
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
225
225
  }
226
226
  export declare class ServiceUnavailableException extends __BaseException {
227
227
  readonly name: "ServiceUnavailableException";
228
228
  readonly $fault: "server";
229
- Message?: string;
229
+ Message?: string | undefined;
230
230
  constructor(
231
231
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
232
232
  );
@@ -234,7 +234,7 @@ export declare class ServiceUnavailableException extends __BaseException {
234
234
  export declare class TooManyRequestsException extends __BaseException {
235
235
  readonly name: "TooManyRequestsException";
236
236
  readonly $fault: "client";
237
- Message?: string;
237
+ Message?: string | undefined;
238
238
  constructor(
239
239
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
240
240
  );
@@ -242,7 +242,7 @@ export declare class TooManyRequestsException extends __BaseException {
242
242
  export declare class UnprocessableEntityException extends __BaseException {
243
243
  readonly name: "UnprocessableEntityException";
244
244
  readonly $fault: "client";
245
- Message?: string;
245
+ Message?: string | undefined;
246
246
  constructor(
247
247
  opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
248
248
  );
@@ -250,56 +250,56 @@ export declare class UnprocessableEntityException extends __BaseException {
250
250
  export interface CreateAssetRequest {
251
251
  Id: string | undefined;
252
252
  PackagingGroupId: string | undefined;
253
- ResourceId?: string;
253
+ ResourceId?: string | undefined;
254
254
  SourceArn: string | undefined;
255
255
  SourceRoleArn: string | undefined;
256
- Tags?: Record<string, string>;
256
+ Tags?: Record<string, string> | undefined;
257
257
  }
258
258
  export interface CreateAssetResponse {
259
- Arn?: string;
260
- CreatedAt?: string;
261
- EgressEndpoints?: EgressEndpoint[];
262
- Id?: string;
263
- PackagingGroupId?: string;
264
- ResourceId?: string;
265
- SourceArn?: string;
266
- SourceRoleArn?: string;
267
- Tags?: Record<string, string>;
259
+ Arn?: string | undefined;
260
+ CreatedAt?: string | undefined;
261
+ EgressEndpoints?: EgressEndpoint[] | undefined;
262
+ Id?: string | undefined;
263
+ PackagingGroupId?: string | undefined;
264
+ ResourceId?: string | undefined;
265
+ SourceArn?: string | undefined;
266
+ SourceRoleArn?: string | undefined;
267
+ Tags?: Record<string, string> | undefined;
268
268
  }
269
269
  export interface CreatePackagingConfigurationRequest {
270
- CmafPackage?: CmafPackage;
271
- DashPackage?: DashPackage;
272
- HlsPackage?: HlsPackage;
270
+ CmafPackage?: CmafPackage | undefined;
271
+ DashPackage?: DashPackage | undefined;
272
+ HlsPackage?: HlsPackage | undefined;
273
273
  Id: string | undefined;
274
- MssPackage?: MssPackage;
274
+ MssPackage?: MssPackage | undefined;
275
275
  PackagingGroupId: string | undefined;
276
- Tags?: Record<string, string>;
276
+ Tags?: Record<string, string> | undefined;
277
277
  }
278
278
  export interface CreatePackagingConfigurationResponse {
279
- Arn?: string;
280
- CmafPackage?: CmafPackage;
281
- CreatedAt?: string;
282
- DashPackage?: DashPackage;
283
- HlsPackage?: HlsPackage;
284
- Id?: string;
285
- MssPackage?: MssPackage;
286
- PackagingGroupId?: string;
287
- Tags?: Record<string, string>;
279
+ Arn?: string | undefined;
280
+ CmafPackage?: CmafPackage | undefined;
281
+ CreatedAt?: string | undefined;
282
+ DashPackage?: DashPackage | undefined;
283
+ HlsPackage?: HlsPackage | undefined;
284
+ Id?: string | undefined;
285
+ MssPackage?: MssPackage | undefined;
286
+ PackagingGroupId?: string | undefined;
287
+ Tags?: Record<string, string> | undefined;
288
288
  }
289
289
  export interface CreatePackagingGroupRequest {
290
- Authorization?: Authorization;
291
- EgressAccessLogs?: EgressAccessLogs;
290
+ Authorization?: Authorization | undefined;
291
+ EgressAccessLogs?: EgressAccessLogs | undefined;
292
292
  Id: string | undefined;
293
- Tags?: Record<string, string>;
293
+ Tags?: Record<string, string> | undefined;
294
294
  }
295
295
  export interface CreatePackagingGroupResponse {
296
- Arn?: string;
297
- Authorization?: Authorization;
298
- CreatedAt?: string;
299
- DomainName?: string;
300
- EgressAccessLogs?: EgressAccessLogs;
301
- Id?: string;
302
- Tags?: Record<string, string>;
296
+ Arn?: string | undefined;
297
+ Authorization?: Authorization | undefined;
298
+ CreatedAt?: string | undefined;
299
+ DomainName?: string | undefined;
300
+ EgressAccessLogs?: EgressAccessLogs | undefined;
301
+ Id?: string | undefined;
302
+ Tags?: Record<string, string> | undefined;
303
303
  }
304
304
  export interface DeleteAssetRequest {
305
305
  Id: string | undefined;
@@ -317,74 +317,74 @@ export interface DescribeAssetRequest {
317
317
  Id: string | undefined;
318
318
  }
319
319
  export interface DescribeAssetResponse {
320
- Arn?: string;
321
- CreatedAt?: string;
322
- EgressEndpoints?: EgressEndpoint[];
323
- Id?: string;
324
- PackagingGroupId?: string;
325
- ResourceId?: string;
326
- SourceArn?: string;
327
- SourceRoleArn?: string;
328
- Tags?: Record<string, string>;
320
+ Arn?: string | undefined;
321
+ CreatedAt?: string | undefined;
322
+ EgressEndpoints?: EgressEndpoint[] | undefined;
323
+ Id?: string | undefined;
324
+ PackagingGroupId?: string | undefined;
325
+ ResourceId?: string | undefined;
326
+ SourceArn?: string | undefined;
327
+ SourceRoleArn?: string | undefined;
328
+ Tags?: Record<string, string> | undefined;
329
329
  }
330
330
  export interface DescribePackagingConfigurationRequest {
331
331
  Id: string | undefined;
332
332
  }
333
333
  export interface DescribePackagingConfigurationResponse {
334
- Arn?: string;
335
- CmafPackage?: CmafPackage;
336
- CreatedAt?: string;
337
- DashPackage?: DashPackage;
338
- HlsPackage?: HlsPackage;
339
- Id?: string;
340
- MssPackage?: MssPackage;
341
- PackagingGroupId?: string;
342
- Tags?: Record<string, string>;
334
+ Arn?: string | undefined;
335
+ CmafPackage?: CmafPackage | undefined;
336
+ CreatedAt?: string | undefined;
337
+ DashPackage?: DashPackage | undefined;
338
+ HlsPackage?: HlsPackage | undefined;
339
+ Id?: string | undefined;
340
+ MssPackage?: MssPackage | undefined;
341
+ PackagingGroupId?: string | undefined;
342
+ Tags?: Record<string, string> | undefined;
343
343
  }
344
344
  export interface DescribePackagingGroupRequest {
345
345
  Id: string | undefined;
346
346
  }
347
347
  export interface DescribePackagingGroupResponse {
348
- ApproximateAssetCount?: number;
349
- Arn?: string;
350
- Authorization?: Authorization;
351
- CreatedAt?: string;
352
- DomainName?: string;
353
- EgressAccessLogs?: EgressAccessLogs;
354
- Id?: string;
355
- Tags?: Record<string, string>;
348
+ ApproximateAssetCount?: number | undefined;
349
+ Arn?: string | undefined;
350
+ Authorization?: Authorization | undefined;
351
+ CreatedAt?: string | undefined;
352
+ DomainName?: string | undefined;
353
+ EgressAccessLogs?: EgressAccessLogs | undefined;
354
+ Id?: string | undefined;
355
+ Tags?: Record<string, string> | undefined;
356
356
  }
357
357
  export interface ListAssetsRequest {
358
- MaxResults?: number;
359
- NextToken?: string;
360
- PackagingGroupId?: string;
358
+ MaxResults?: number | undefined;
359
+ NextToken?: string | undefined;
360
+ PackagingGroupId?: string | undefined;
361
361
  }
362
362
  export interface ListAssetsResponse {
363
- Assets?: AssetShallow[];
364
- NextToken?: string;
363
+ Assets?: AssetShallow[] | undefined;
364
+ NextToken?: string | undefined;
365
365
  }
366
366
  export interface ListPackagingConfigurationsRequest {
367
- MaxResults?: number;
368
- NextToken?: string;
369
- PackagingGroupId?: string;
367
+ MaxResults?: number | undefined;
368
+ NextToken?: string | undefined;
369
+ PackagingGroupId?: string | undefined;
370
370
  }
371
371
  export interface ListPackagingConfigurationsResponse {
372
- NextToken?: string;
373
- PackagingConfigurations?: PackagingConfiguration[];
372
+ NextToken?: string | undefined;
373
+ PackagingConfigurations?: PackagingConfiguration[] | undefined;
374
374
  }
375
375
  export interface ListPackagingGroupsRequest {
376
- MaxResults?: number;
377
- NextToken?: string;
376
+ MaxResults?: number | undefined;
377
+ NextToken?: string | undefined;
378
378
  }
379
379
  export interface ListPackagingGroupsResponse {
380
- NextToken?: string;
381
- PackagingGroups?: PackagingGroup[];
380
+ NextToken?: string | undefined;
381
+ PackagingGroups?: PackagingGroup[] | undefined;
382
382
  }
383
383
  export interface ListTagsForResourceRequest {
384
384
  ResourceArn: string | undefined;
385
385
  }
386
386
  export interface ListTagsForResourceResponse {
387
- Tags?: Record<string, string>;
387
+ Tags?: Record<string, string> | undefined;
388
388
  }
389
389
  export interface TagResourceRequest {
390
390
  ResourceArn: string | undefined;
@@ -395,16 +395,16 @@ export interface UntagResourceRequest {
395
395
  TagKeys: string[] | undefined;
396
396
  }
397
397
  export interface UpdatePackagingGroupRequest {
398
- Authorization?: Authorization;
398
+ Authorization?: Authorization | undefined;
399
399
  Id: string | undefined;
400
400
  }
401
401
  export interface UpdatePackagingGroupResponse {
402
- ApproximateAssetCount?: number;
403
- Arn?: string;
404
- Authorization?: Authorization;
405
- CreatedAt?: string;
406
- DomainName?: string;
407
- EgressAccessLogs?: EgressAccessLogs;
408
- Id?: string;
409
- Tags?: Record<string, string>;
402
+ ApproximateAssetCount?: number | undefined;
403
+ Arn?: string | undefined;
404
+ Authorization?: Authorization | undefined;
405
+ CreatedAt?: string | undefined;
406
+ DomainName?: string | undefined;
407
+ EgressAccessLogs?: EgressAccessLogs | undefined;
408
+ Id?: string | undefined;
409
+ Tags?: Record<string, string> | undefined;
410
410
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackage-vod",
3
3
  "description": "AWS SDK for JavaScript Mediapackage Vod Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.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-mediapackage-vod",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },