@aws-sdk/client-wisdom 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/Wisdom.js +23 -1
- package/dist-types/Wisdom.d.ts +71 -1
- package/dist-types/ts3.4/Wisdom.d.ts +75 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -1942,6 +1942,26 @@ class UpdateQuickResponseCommand extends smithyClient.Command
|
|
|
1942
1942
|
.build() {
|
|
1943
1943
|
}
|
|
1944
1944
|
|
|
1945
|
+
const paginateListAssistantAssociations = core.createPaginator(WisdomClient, ListAssistantAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1946
|
+
|
|
1947
|
+
const paginateListAssistants = core.createPaginator(WisdomClient, ListAssistantsCommand, "nextToken", "nextToken", "maxResults");
|
|
1948
|
+
|
|
1949
|
+
const paginateListContents = core.createPaginator(WisdomClient, ListContentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1950
|
+
|
|
1951
|
+
const paginateListImportJobs = core.createPaginator(WisdomClient, ListImportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
1952
|
+
|
|
1953
|
+
const paginateListKnowledgeBases = core.createPaginator(WisdomClient, ListKnowledgeBasesCommand, "nextToken", "nextToken", "maxResults");
|
|
1954
|
+
|
|
1955
|
+
const paginateListQuickResponses = core.createPaginator(WisdomClient, ListQuickResponsesCommand, "nextToken", "nextToken", "maxResults");
|
|
1956
|
+
|
|
1957
|
+
const paginateQueryAssistant = core.createPaginator(WisdomClient, QueryAssistantCommand, "nextToken", "nextToken", "maxResults");
|
|
1958
|
+
|
|
1959
|
+
const paginateSearchContent = core.createPaginator(WisdomClient, SearchContentCommand, "nextToken", "nextToken", "maxResults");
|
|
1960
|
+
|
|
1961
|
+
const paginateSearchQuickResponses = core.createPaginator(WisdomClient, SearchQuickResponsesCommand, "nextToken", "nextToken", "maxResults");
|
|
1962
|
+
|
|
1963
|
+
const paginateSearchSessions = core.createPaginator(WisdomClient, SearchSessionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1964
|
+
|
|
1945
1965
|
const commands = {
|
|
1946
1966
|
CreateAssistantCommand,
|
|
1947
1967
|
CreateAssistantAssociationCommand,
|
|
@@ -1985,29 +2005,21 @@ const commands = {
|
|
|
1985
2005
|
UpdateKnowledgeBaseTemplateUriCommand,
|
|
1986
2006
|
UpdateQuickResponseCommand,
|
|
1987
2007
|
};
|
|
2008
|
+
const paginators = {
|
|
2009
|
+
paginateListAssistantAssociations,
|
|
2010
|
+
paginateListAssistants,
|
|
2011
|
+
paginateListContents,
|
|
2012
|
+
paginateListImportJobs,
|
|
2013
|
+
paginateListKnowledgeBases,
|
|
2014
|
+
paginateListQuickResponses,
|
|
2015
|
+
paginateQueryAssistant,
|
|
2016
|
+
paginateSearchContent,
|
|
2017
|
+
paginateSearchQuickResponses,
|
|
2018
|
+
paginateSearchSessions,
|
|
2019
|
+
};
|
|
1988
2020
|
class Wisdom extends WisdomClient {
|
|
1989
2021
|
}
|
|
1990
|
-
smithyClient.createAggregatedClient(commands, Wisdom);
|
|
1991
|
-
|
|
1992
|
-
const paginateListAssistantAssociations = core.createPaginator(WisdomClient, ListAssistantAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1993
|
-
|
|
1994
|
-
const paginateListAssistants = core.createPaginator(WisdomClient, ListAssistantsCommand, "nextToken", "nextToken", "maxResults");
|
|
1995
|
-
|
|
1996
|
-
const paginateListContents = core.createPaginator(WisdomClient, ListContentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1997
|
-
|
|
1998
|
-
const paginateListImportJobs = core.createPaginator(WisdomClient, ListImportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
1999
|
-
|
|
2000
|
-
const paginateListKnowledgeBases = core.createPaginator(WisdomClient, ListKnowledgeBasesCommand, "nextToken", "nextToken", "maxResults");
|
|
2001
|
-
|
|
2002
|
-
const paginateListQuickResponses = core.createPaginator(WisdomClient, ListQuickResponsesCommand, "nextToken", "nextToken", "maxResults");
|
|
2003
|
-
|
|
2004
|
-
const paginateQueryAssistant = core.createPaginator(WisdomClient, QueryAssistantCommand, "nextToken", "nextToken", "maxResults");
|
|
2005
|
-
|
|
2006
|
-
const paginateSearchContent = core.createPaginator(WisdomClient, SearchContentCommand, "nextToken", "nextToken", "maxResults");
|
|
2007
|
-
|
|
2008
|
-
const paginateSearchQuickResponses = core.createPaginator(WisdomClient, SearchQuickResponsesCommand, "nextToken", "nextToken", "maxResults");
|
|
2009
|
-
|
|
2010
|
-
const paginateSearchSessions = core.createPaginator(WisdomClient, SearchSessionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2022
|
+
smithyClient.createAggregatedClient(commands, Wisdom, { paginators });
|
|
2011
2023
|
|
|
2012
2024
|
const AssociationType = {
|
|
2013
2025
|
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
package/dist-es/Wisdom.js
CHANGED
|
@@ -40,6 +40,16 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
40
40
|
import { UpdateContentCommand, } from "./commands/UpdateContentCommand";
|
|
41
41
|
import { UpdateKnowledgeBaseTemplateUriCommand, } from "./commands/UpdateKnowledgeBaseTemplateUriCommand";
|
|
42
42
|
import { UpdateQuickResponseCommand, } from "./commands/UpdateQuickResponseCommand";
|
|
43
|
+
import { paginateListAssistantAssociations } from "./pagination/ListAssistantAssociationsPaginator";
|
|
44
|
+
import { paginateListAssistants } from "./pagination/ListAssistantsPaginator";
|
|
45
|
+
import { paginateListContents } from "./pagination/ListContentsPaginator";
|
|
46
|
+
import { paginateListImportJobs } from "./pagination/ListImportJobsPaginator";
|
|
47
|
+
import { paginateListKnowledgeBases } from "./pagination/ListKnowledgeBasesPaginator";
|
|
48
|
+
import { paginateListQuickResponses } from "./pagination/ListQuickResponsesPaginator";
|
|
49
|
+
import { paginateQueryAssistant } from "./pagination/QueryAssistantPaginator";
|
|
50
|
+
import { paginateSearchContent } from "./pagination/SearchContentPaginator";
|
|
51
|
+
import { paginateSearchQuickResponses } from "./pagination/SearchQuickResponsesPaginator";
|
|
52
|
+
import { paginateSearchSessions } from "./pagination/SearchSessionsPaginator";
|
|
43
53
|
import { WisdomClient } from "./WisdomClient";
|
|
44
54
|
const commands = {
|
|
45
55
|
CreateAssistantCommand,
|
|
@@ -84,6 +94,18 @@ const commands = {
|
|
|
84
94
|
UpdateKnowledgeBaseTemplateUriCommand,
|
|
85
95
|
UpdateQuickResponseCommand,
|
|
86
96
|
};
|
|
97
|
+
const paginators = {
|
|
98
|
+
paginateListAssistantAssociations,
|
|
99
|
+
paginateListAssistants,
|
|
100
|
+
paginateListContents,
|
|
101
|
+
paginateListImportJobs,
|
|
102
|
+
paginateListKnowledgeBases,
|
|
103
|
+
paginateListQuickResponses,
|
|
104
|
+
paginateQueryAssistant,
|
|
105
|
+
paginateSearchContent,
|
|
106
|
+
paginateSearchQuickResponses,
|
|
107
|
+
paginateSearchSessions,
|
|
108
|
+
};
|
|
87
109
|
export class Wisdom extends WisdomClient {
|
|
88
110
|
}
|
|
89
|
-
createAggregatedClient(commands, Wisdom);
|
|
111
|
+
createAggregatedClient(commands, Wisdom, { paginators });
|
package/dist-types/Wisdom.d.ts
CHANGED
|
@@ -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 { CreateAssistantAssociationCommandInput, CreateAssistantAssociationCommandOutput } from "./commands/CreateAssistantAssociationCommand";
|
|
3
3
|
import { CreateAssistantCommandInput, CreateAssistantCommandOutput } from "./commands/CreateAssistantCommand";
|
|
4
4
|
import { CreateContentCommandInput, CreateContentCommandOutput } from "./commands/CreateContentCommand";
|
|
@@ -290,6 +290,76 @@ export interface Wisdom {
|
|
|
290
290
|
updateQuickResponse(args: UpdateQuickResponseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQuickResponseCommandOutput>;
|
|
291
291
|
updateQuickResponse(args: UpdateQuickResponseCommandInput, cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void): void;
|
|
292
292
|
updateQuickResponse(args: UpdateQuickResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void): void;
|
|
293
|
+
/**
|
|
294
|
+
* @see {@link ListAssistantAssociationsCommand}
|
|
295
|
+
* @param args - command input.
|
|
296
|
+
* @param paginationConfig - optional pagination config.
|
|
297
|
+
* @returns AsyncIterable of {@link ListAssistantAssociationsCommandOutput}.
|
|
298
|
+
*/
|
|
299
|
+
paginateListAssistantAssociations(args: ListAssistantAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssistantAssociationsCommandOutput>;
|
|
300
|
+
/**
|
|
301
|
+
* @see {@link ListAssistantsCommand}
|
|
302
|
+
* @param args - command input.
|
|
303
|
+
* @param paginationConfig - optional pagination config.
|
|
304
|
+
* @returns AsyncIterable of {@link ListAssistantsCommandOutput}.
|
|
305
|
+
*/
|
|
306
|
+
paginateListAssistants(args?: ListAssistantsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssistantsCommandOutput>;
|
|
307
|
+
/**
|
|
308
|
+
* @see {@link ListContentsCommand}
|
|
309
|
+
* @param args - command input.
|
|
310
|
+
* @param paginationConfig - optional pagination config.
|
|
311
|
+
* @returns AsyncIterable of {@link ListContentsCommandOutput}.
|
|
312
|
+
*/
|
|
313
|
+
paginateListContents(args: ListContentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContentsCommandOutput>;
|
|
314
|
+
/**
|
|
315
|
+
* @see {@link ListImportJobsCommand}
|
|
316
|
+
* @param args - command input.
|
|
317
|
+
* @param paginationConfig - optional pagination config.
|
|
318
|
+
* @returns AsyncIterable of {@link ListImportJobsCommandOutput}.
|
|
319
|
+
*/
|
|
320
|
+
paginateListImportJobs(args: ListImportJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListImportJobsCommandOutput>;
|
|
321
|
+
/**
|
|
322
|
+
* @see {@link ListKnowledgeBasesCommand}
|
|
323
|
+
* @param args - command input.
|
|
324
|
+
* @param paginationConfig - optional pagination config.
|
|
325
|
+
* @returns AsyncIterable of {@link ListKnowledgeBasesCommandOutput}.
|
|
326
|
+
*/
|
|
327
|
+
paginateListKnowledgeBases(args?: ListKnowledgeBasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListKnowledgeBasesCommandOutput>;
|
|
328
|
+
/**
|
|
329
|
+
* @see {@link ListQuickResponsesCommand}
|
|
330
|
+
* @param args - command input.
|
|
331
|
+
* @param paginationConfig - optional pagination config.
|
|
332
|
+
* @returns AsyncIterable of {@link ListQuickResponsesCommandOutput}.
|
|
333
|
+
*/
|
|
334
|
+
paginateListQuickResponses(args: ListQuickResponsesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQuickResponsesCommandOutput>;
|
|
335
|
+
/**
|
|
336
|
+
* @see {@link QueryAssistantCommand}
|
|
337
|
+
* @param args - command input.
|
|
338
|
+
* @param paginationConfig - optional pagination config.
|
|
339
|
+
* @returns AsyncIterable of {@link QueryAssistantCommandOutput}.
|
|
340
|
+
*/
|
|
341
|
+
paginateQueryAssistant(args: QueryAssistantCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<QueryAssistantCommandOutput>;
|
|
342
|
+
/**
|
|
343
|
+
* @see {@link SearchContentCommand}
|
|
344
|
+
* @param args - command input.
|
|
345
|
+
* @param paginationConfig - optional pagination config.
|
|
346
|
+
* @returns AsyncIterable of {@link SearchContentCommandOutput}.
|
|
347
|
+
*/
|
|
348
|
+
paginateSearchContent(args: SearchContentCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchContentCommandOutput>;
|
|
349
|
+
/**
|
|
350
|
+
* @see {@link SearchQuickResponsesCommand}
|
|
351
|
+
* @param args - command input.
|
|
352
|
+
* @param paginationConfig - optional pagination config.
|
|
353
|
+
* @returns AsyncIterable of {@link SearchQuickResponsesCommandOutput}.
|
|
354
|
+
*/
|
|
355
|
+
paginateSearchQuickResponses(args: SearchQuickResponsesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchQuickResponsesCommandOutput>;
|
|
356
|
+
/**
|
|
357
|
+
* @see {@link SearchSessionsCommand}
|
|
358
|
+
* @param args - command input.
|
|
359
|
+
* @param paginationConfig - optional pagination config.
|
|
360
|
+
* @returns AsyncIterable of {@link SearchSessionsCommandOutput}.
|
|
361
|
+
*/
|
|
362
|
+
paginateSearchSessions(args: SearchSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchSessionsCommandOutput>;
|
|
293
363
|
}
|
|
294
364
|
/**
|
|
295
365
|
* <p>Amazon Connect Wisdom delivers agents the information they need to solve customer issues as they're
|
|
@@ -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
|
CreateAssistantAssociationCommandInput,
|
|
4
8
|
CreateAssistantAssociationCommandOutput,
|
|
@@ -700,5 +704,75 @@ export interface Wisdom {
|
|
|
700
704
|
options: __HttpHandlerOptions,
|
|
701
705
|
cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void
|
|
702
706
|
): void;
|
|
707
|
+
paginateListAssistantAssociations(
|
|
708
|
+
args: ListAssistantAssociationsCommandInput,
|
|
709
|
+
paginationConfig?: Pick<
|
|
710
|
+
PaginationConfiguration,
|
|
711
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
712
|
+
>
|
|
713
|
+
): Paginator<ListAssistantAssociationsCommandOutput>;
|
|
714
|
+
paginateListAssistants(
|
|
715
|
+
args?: ListAssistantsCommandInput,
|
|
716
|
+
paginationConfig?: Pick<
|
|
717
|
+
PaginationConfiguration,
|
|
718
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
719
|
+
>
|
|
720
|
+
): Paginator<ListAssistantsCommandOutput>;
|
|
721
|
+
paginateListContents(
|
|
722
|
+
args: ListContentsCommandInput,
|
|
723
|
+
paginationConfig?: Pick<
|
|
724
|
+
PaginationConfiguration,
|
|
725
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
726
|
+
>
|
|
727
|
+
): Paginator<ListContentsCommandOutput>;
|
|
728
|
+
paginateListImportJobs(
|
|
729
|
+
args: ListImportJobsCommandInput,
|
|
730
|
+
paginationConfig?: Pick<
|
|
731
|
+
PaginationConfiguration,
|
|
732
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
733
|
+
>
|
|
734
|
+
): Paginator<ListImportJobsCommandOutput>;
|
|
735
|
+
paginateListKnowledgeBases(
|
|
736
|
+
args?: ListKnowledgeBasesCommandInput,
|
|
737
|
+
paginationConfig?: Pick<
|
|
738
|
+
PaginationConfiguration,
|
|
739
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
740
|
+
>
|
|
741
|
+
): Paginator<ListKnowledgeBasesCommandOutput>;
|
|
742
|
+
paginateListQuickResponses(
|
|
743
|
+
args: ListQuickResponsesCommandInput,
|
|
744
|
+
paginationConfig?: Pick<
|
|
745
|
+
PaginationConfiguration,
|
|
746
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
747
|
+
>
|
|
748
|
+
): Paginator<ListQuickResponsesCommandOutput>;
|
|
749
|
+
paginateQueryAssistant(
|
|
750
|
+
args: QueryAssistantCommandInput,
|
|
751
|
+
paginationConfig?: Pick<
|
|
752
|
+
PaginationConfiguration,
|
|
753
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
754
|
+
>
|
|
755
|
+
): Paginator<QueryAssistantCommandOutput>;
|
|
756
|
+
paginateSearchContent(
|
|
757
|
+
args: SearchContentCommandInput,
|
|
758
|
+
paginationConfig?: Pick<
|
|
759
|
+
PaginationConfiguration,
|
|
760
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
761
|
+
>
|
|
762
|
+
): Paginator<SearchContentCommandOutput>;
|
|
763
|
+
paginateSearchQuickResponses(
|
|
764
|
+
args: SearchQuickResponsesCommandInput,
|
|
765
|
+
paginationConfig?: Pick<
|
|
766
|
+
PaginationConfiguration,
|
|
767
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
768
|
+
>
|
|
769
|
+
): Paginator<SearchQuickResponsesCommandOutput>;
|
|
770
|
+
paginateSearchSessions(
|
|
771
|
+
args: SearchSessionsCommandInput,
|
|
772
|
+
paginationConfig?: Pick<
|
|
773
|
+
PaginationConfiguration,
|
|
774
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
775
|
+
>
|
|
776
|
+
): Paginator<SearchSessionsCommandOutput>;
|
|
703
777
|
}
|
|
704
778
|
export declare class Wisdom extends WisdomClient implements Wisdom {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wisdom",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wisdom 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-wisdom",
|
|
@@ -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",
|