@aws-sdk/client-ivs-realtime 3.975.0 → 3.980.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 +33 -21
- package/dist-es/IVSRealTime.js +23 -1
- package/dist-types/IVSRealTime.d.ts +71 -1
- package/dist-types/ts3.4/IVSRealTime.d.ts +75 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -1936,6 +1936,26 @@ class UpdateStageCommand extends smithyClient.Command
|
|
|
1936
1936
|
.build() {
|
|
1937
1937
|
}
|
|
1938
1938
|
|
|
1939
|
+
const paginateListCompositions = core.createPaginator(IVSRealTimeClient, ListCompositionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1940
|
+
|
|
1941
|
+
const paginateListEncoderConfigurations = core.createPaginator(IVSRealTimeClient, ListEncoderConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1942
|
+
|
|
1943
|
+
const paginateListIngestConfigurations = core.createPaginator(IVSRealTimeClient, ListIngestConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1944
|
+
|
|
1945
|
+
const paginateListParticipantEvents = core.createPaginator(IVSRealTimeClient, ListParticipantEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1946
|
+
|
|
1947
|
+
const paginateListParticipantReplicas = core.createPaginator(IVSRealTimeClient, ListParticipantReplicasCommand, "nextToken", "nextToken", "maxResults");
|
|
1948
|
+
|
|
1949
|
+
const paginateListParticipants = core.createPaginator(IVSRealTimeClient, ListParticipantsCommand, "nextToken", "nextToken", "maxResults");
|
|
1950
|
+
|
|
1951
|
+
const paginateListPublicKeys = core.createPaginator(IVSRealTimeClient, ListPublicKeysCommand, "nextToken", "nextToken", "maxResults");
|
|
1952
|
+
|
|
1953
|
+
const paginateListStageSessions = core.createPaginator(IVSRealTimeClient, ListStageSessionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1954
|
+
|
|
1955
|
+
const paginateListStages = core.createPaginator(IVSRealTimeClient, ListStagesCommand, "nextToken", "nextToken", "maxResults");
|
|
1956
|
+
|
|
1957
|
+
const paginateListStorageConfigurations = core.createPaginator(IVSRealTimeClient, ListStorageConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1958
|
+
|
|
1939
1959
|
const commands = {
|
|
1940
1960
|
CreateEncoderConfigurationCommand,
|
|
1941
1961
|
CreateIngestConfigurationCommand,
|
|
@@ -1977,29 +1997,21 @@ const commands = {
|
|
|
1977
1997
|
UpdateIngestConfigurationCommand,
|
|
1978
1998
|
UpdateStageCommand,
|
|
1979
1999
|
};
|
|
2000
|
+
const paginators = {
|
|
2001
|
+
paginateListCompositions,
|
|
2002
|
+
paginateListEncoderConfigurations,
|
|
2003
|
+
paginateListIngestConfigurations,
|
|
2004
|
+
paginateListParticipantEvents,
|
|
2005
|
+
paginateListParticipantReplicas,
|
|
2006
|
+
paginateListParticipants,
|
|
2007
|
+
paginateListPublicKeys,
|
|
2008
|
+
paginateListStages,
|
|
2009
|
+
paginateListStageSessions,
|
|
2010
|
+
paginateListStorageConfigurations,
|
|
2011
|
+
};
|
|
1980
2012
|
class IVSRealTime extends IVSRealTimeClient {
|
|
1981
2013
|
}
|
|
1982
|
-
smithyClient.createAggregatedClient(commands, IVSRealTime);
|
|
1983
|
-
|
|
1984
|
-
const paginateListCompositions = core.createPaginator(IVSRealTimeClient, ListCompositionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1985
|
-
|
|
1986
|
-
const paginateListEncoderConfigurations = core.createPaginator(IVSRealTimeClient, ListEncoderConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1987
|
-
|
|
1988
|
-
const paginateListIngestConfigurations = core.createPaginator(IVSRealTimeClient, ListIngestConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1989
|
-
|
|
1990
|
-
const paginateListParticipantEvents = core.createPaginator(IVSRealTimeClient, ListParticipantEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1991
|
-
|
|
1992
|
-
const paginateListParticipantReplicas = core.createPaginator(IVSRealTimeClient, ListParticipantReplicasCommand, "nextToken", "nextToken", "maxResults");
|
|
1993
|
-
|
|
1994
|
-
const paginateListParticipants = core.createPaginator(IVSRealTimeClient, ListParticipantsCommand, "nextToken", "nextToken", "maxResults");
|
|
1995
|
-
|
|
1996
|
-
const paginateListPublicKeys = core.createPaginator(IVSRealTimeClient, ListPublicKeysCommand, "nextToken", "nextToken", "maxResults");
|
|
1997
|
-
|
|
1998
|
-
const paginateListStages = core.createPaginator(IVSRealTimeClient, ListStagesCommand, "nextToken", "nextToken", "maxResults");
|
|
1999
|
-
|
|
2000
|
-
const paginateListStageSessions = core.createPaginator(IVSRealTimeClient, ListStageSessionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2001
|
-
|
|
2002
|
-
const paginateListStorageConfigurations = core.createPaginator(IVSRealTimeClient, ListStorageConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2014
|
+
smithyClient.createAggregatedClient(commands, IVSRealTime, { paginators });
|
|
2003
2015
|
|
|
2004
2016
|
const IngestProtocol = {
|
|
2005
2017
|
RTMP: "RTMP",
|
package/dist-es/IVSRealTime.js
CHANGED
|
@@ -39,6 +39,16 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
39
39
|
import { UpdateIngestConfigurationCommand, } from "./commands/UpdateIngestConfigurationCommand";
|
|
40
40
|
import { UpdateStageCommand } from "./commands/UpdateStageCommand";
|
|
41
41
|
import { IVSRealTimeClient } from "./IVSRealTimeClient";
|
|
42
|
+
import { paginateListCompositions } from "./pagination/ListCompositionsPaginator";
|
|
43
|
+
import { paginateListEncoderConfigurations } from "./pagination/ListEncoderConfigurationsPaginator";
|
|
44
|
+
import { paginateListIngestConfigurations } from "./pagination/ListIngestConfigurationsPaginator";
|
|
45
|
+
import { paginateListParticipantEvents } from "./pagination/ListParticipantEventsPaginator";
|
|
46
|
+
import { paginateListParticipantReplicas } from "./pagination/ListParticipantReplicasPaginator";
|
|
47
|
+
import { paginateListParticipants } from "./pagination/ListParticipantsPaginator";
|
|
48
|
+
import { paginateListPublicKeys } from "./pagination/ListPublicKeysPaginator";
|
|
49
|
+
import { paginateListStageSessions } from "./pagination/ListStageSessionsPaginator";
|
|
50
|
+
import { paginateListStages } from "./pagination/ListStagesPaginator";
|
|
51
|
+
import { paginateListStorageConfigurations } from "./pagination/ListStorageConfigurationsPaginator";
|
|
42
52
|
const commands = {
|
|
43
53
|
CreateEncoderConfigurationCommand,
|
|
44
54
|
CreateIngestConfigurationCommand,
|
|
@@ -80,6 +90,18 @@ const commands = {
|
|
|
80
90
|
UpdateIngestConfigurationCommand,
|
|
81
91
|
UpdateStageCommand,
|
|
82
92
|
};
|
|
93
|
+
const paginators = {
|
|
94
|
+
paginateListCompositions,
|
|
95
|
+
paginateListEncoderConfigurations,
|
|
96
|
+
paginateListIngestConfigurations,
|
|
97
|
+
paginateListParticipantEvents,
|
|
98
|
+
paginateListParticipantReplicas,
|
|
99
|
+
paginateListParticipants,
|
|
100
|
+
paginateListPublicKeys,
|
|
101
|
+
paginateListStages,
|
|
102
|
+
paginateListStageSessions,
|
|
103
|
+
paginateListStorageConfigurations,
|
|
104
|
+
};
|
|
83
105
|
export class IVSRealTime extends IVSRealTimeClient {
|
|
84
106
|
}
|
|
85
|
-
createAggregatedClient(commands, IVSRealTime);
|
|
107
|
+
createAggregatedClient(commands, IVSRealTime, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { CreateEncoderConfigurationCommandInput, CreateEncoderConfigurationCommandOutput } from "./commands/CreateEncoderConfigurationCommand";
|
|
3
3
|
import { CreateIngestConfigurationCommandInput, CreateIngestConfigurationCommandOutput } from "./commands/CreateIngestConfigurationCommand";
|
|
4
4
|
import { CreateParticipantTokenCommandInput, CreateParticipantTokenCommandOutput } from "./commands/CreateParticipantTokenCommand";
|
|
@@ -282,6 +282,76 @@ export interface IVSRealTime {
|
|
|
282
282
|
updateStage(args: UpdateStageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStageCommandOutput>;
|
|
283
283
|
updateStage(args: UpdateStageCommandInput, cb: (err: any, data?: UpdateStageCommandOutput) => void): void;
|
|
284
284
|
updateStage(args: UpdateStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStageCommandOutput) => void): void;
|
|
285
|
+
/**
|
|
286
|
+
* @see {@link ListCompositionsCommand}
|
|
287
|
+
* @param args - command input.
|
|
288
|
+
* @param paginationConfig - optional pagination config.
|
|
289
|
+
* @returns AsyncIterable of {@link ListCompositionsCommandOutput}.
|
|
290
|
+
*/
|
|
291
|
+
paginateListCompositions(args?: ListCompositionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCompositionsCommandOutput>;
|
|
292
|
+
/**
|
|
293
|
+
* @see {@link ListEncoderConfigurationsCommand}
|
|
294
|
+
* @param args - command input.
|
|
295
|
+
* @param paginationConfig - optional pagination config.
|
|
296
|
+
* @returns AsyncIterable of {@link ListEncoderConfigurationsCommandOutput}.
|
|
297
|
+
*/
|
|
298
|
+
paginateListEncoderConfigurations(args?: ListEncoderConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEncoderConfigurationsCommandOutput>;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link ListIngestConfigurationsCommand}
|
|
301
|
+
* @param args - command input.
|
|
302
|
+
* @param paginationConfig - optional pagination config.
|
|
303
|
+
* @returns AsyncIterable of {@link ListIngestConfigurationsCommandOutput}.
|
|
304
|
+
*/
|
|
305
|
+
paginateListIngestConfigurations(args?: ListIngestConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIngestConfigurationsCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link ListParticipantEventsCommand}
|
|
308
|
+
* @param args - command input.
|
|
309
|
+
* @param paginationConfig - optional pagination config.
|
|
310
|
+
* @returns AsyncIterable of {@link ListParticipantEventsCommandOutput}.
|
|
311
|
+
*/
|
|
312
|
+
paginateListParticipantEvents(args: ListParticipantEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListParticipantEventsCommandOutput>;
|
|
313
|
+
/**
|
|
314
|
+
* @see {@link ListParticipantReplicasCommand}
|
|
315
|
+
* @param args - command input.
|
|
316
|
+
* @param paginationConfig - optional pagination config.
|
|
317
|
+
* @returns AsyncIterable of {@link ListParticipantReplicasCommandOutput}.
|
|
318
|
+
*/
|
|
319
|
+
paginateListParticipantReplicas(args: ListParticipantReplicasCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListParticipantReplicasCommandOutput>;
|
|
320
|
+
/**
|
|
321
|
+
* @see {@link ListParticipantsCommand}
|
|
322
|
+
* @param args - command input.
|
|
323
|
+
* @param paginationConfig - optional pagination config.
|
|
324
|
+
* @returns AsyncIterable of {@link ListParticipantsCommandOutput}.
|
|
325
|
+
*/
|
|
326
|
+
paginateListParticipants(args: ListParticipantsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListParticipantsCommandOutput>;
|
|
327
|
+
/**
|
|
328
|
+
* @see {@link ListPublicKeysCommand}
|
|
329
|
+
* @param args - command input.
|
|
330
|
+
* @param paginationConfig - optional pagination config.
|
|
331
|
+
* @returns AsyncIterable of {@link ListPublicKeysCommandOutput}.
|
|
332
|
+
*/
|
|
333
|
+
paginateListPublicKeys(args?: ListPublicKeysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPublicKeysCommandOutput>;
|
|
334
|
+
/**
|
|
335
|
+
* @see {@link ListStagesCommand}
|
|
336
|
+
* @param args - command input.
|
|
337
|
+
* @param paginationConfig - optional pagination config.
|
|
338
|
+
* @returns AsyncIterable of {@link ListStagesCommandOutput}.
|
|
339
|
+
*/
|
|
340
|
+
paginateListStages(args?: ListStagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStagesCommandOutput>;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link ListStageSessionsCommand}
|
|
343
|
+
* @param args - command input.
|
|
344
|
+
* @param paginationConfig - optional pagination config.
|
|
345
|
+
* @returns AsyncIterable of {@link ListStageSessionsCommandOutput}.
|
|
346
|
+
*/
|
|
347
|
+
paginateListStageSessions(args: ListStageSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStageSessionsCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* @see {@link ListStorageConfigurationsCommand}
|
|
350
|
+
* @param args - command input.
|
|
351
|
+
* @param paginationConfig - optional pagination config.
|
|
352
|
+
* @returns AsyncIterable of {@link ListStorageConfigurationsCommandOutput}.
|
|
353
|
+
*/
|
|
354
|
+
paginateListStorageConfigurations(args?: ListStorageConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStorageConfigurationsCommandOutput>;
|
|
285
355
|
}
|
|
286
356
|
/**
|
|
287
357
|
* <p>The Amazon Interactive Video Service (IVS) real-time API is REST compatible, using a standard HTTP
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
CreateEncoderConfigurationCommandInput,
|
|
4
8
|
CreateEncoderConfigurationCommandOutput,
|
|
@@ -672,6 +676,76 @@ export interface IVSRealTime {
|
|
|
672
676
|
options: __HttpHandlerOptions,
|
|
673
677
|
cb: (err: any, data?: UpdateStageCommandOutput) => void
|
|
674
678
|
): void;
|
|
679
|
+
paginateListCompositions(
|
|
680
|
+
args?: ListCompositionsCommandInput,
|
|
681
|
+
paginationConfig?: Pick<
|
|
682
|
+
PaginationConfiguration,
|
|
683
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
684
|
+
>
|
|
685
|
+
): Paginator<ListCompositionsCommandOutput>;
|
|
686
|
+
paginateListEncoderConfigurations(
|
|
687
|
+
args?: ListEncoderConfigurationsCommandInput,
|
|
688
|
+
paginationConfig?: Pick<
|
|
689
|
+
PaginationConfiguration,
|
|
690
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
691
|
+
>
|
|
692
|
+
): Paginator<ListEncoderConfigurationsCommandOutput>;
|
|
693
|
+
paginateListIngestConfigurations(
|
|
694
|
+
args?: ListIngestConfigurationsCommandInput,
|
|
695
|
+
paginationConfig?: Pick<
|
|
696
|
+
PaginationConfiguration,
|
|
697
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
698
|
+
>
|
|
699
|
+
): Paginator<ListIngestConfigurationsCommandOutput>;
|
|
700
|
+
paginateListParticipantEvents(
|
|
701
|
+
args: ListParticipantEventsCommandInput,
|
|
702
|
+
paginationConfig?: Pick<
|
|
703
|
+
PaginationConfiguration,
|
|
704
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
705
|
+
>
|
|
706
|
+
): Paginator<ListParticipantEventsCommandOutput>;
|
|
707
|
+
paginateListParticipantReplicas(
|
|
708
|
+
args: ListParticipantReplicasCommandInput,
|
|
709
|
+
paginationConfig?: Pick<
|
|
710
|
+
PaginationConfiguration,
|
|
711
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
712
|
+
>
|
|
713
|
+
): Paginator<ListParticipantReplicasCommandOutput>;
|
|
714
|
+
paginateListParticipants(
|
|
715
|
+
args: ListParticipantsCommandInput,
|
|
716
|
+
paginationConfig?: Pick<
|
|
717
|
+
PaginationConfiguration,
|
|
718
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
719
|
+
>
|
|
720
|
+
): Paginator<ListParticipantsCommandOutput>;
|
|
721
|
+
paginateListPublicKeys(
|
|
722
|
+
args?: ListPublicKeysCommandInput,
|
|
723
|
+
paginationConfig?: Pick<
|
|
724
|
+
PaginationConfiguration,
|
|
725
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
726
|
+
>
|
|
727
|
+
): Paginator<ListPublicKeysCommandOutput>;
|
|
728
|
+
paginateListStages(
|
|
729
|
+
args?: ListStagesCommandInput,
|
|
730
|
+
paginationConfig?: Pick<
|
|
731
|
+
PaginationConfiguration,
|
|
732
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
733
|
+
>
|
|
734
|
+
): Paginator<ListStagesCommandOutput>;
|
|
735
|
+
paginateListStageSessions(
|
|
736
|
+
args: ListStageSessionsCommandInput,
|
|
737
|
+
paginationConfig?: Pick<
|
|
738
|
+
PaginationConfiguration,
|
|
739
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
740
|
+
>
|
|
741
|
+
): Paginator<ListStageSessionsCommandOutput>;
|
|
742
|
+
paginateListStorageConfigurations(
|
|
743
|
+
args?: ListStorageConfigurationsCommandInput,
|
|
744
|
+
paginationConfig?: Pick<
|
|
745
|
+
PaginationConfiguration,
|
|
746
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
747
|
+
>
|
|
748
|
+
): Paginator<ListStorageConfigurationsCommandOutput>;
|
|
675
749
|
}
|
|
676
750
|
export declare class IVSRealTime
|
|
677
751
|
extends IVSRealTimeClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs-realtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ivs-realtime",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|