@aws-sdk/client-qconnect 3.933.0 → 3.935.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 +0 -385
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +139 -0
- package/dist-es/models/models_0.js +0 -125
- package/dist-es/models/models_1.js +0 -15
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/CreateMessageTemplateAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateMessageTemplateCommand.d.ts +1 -2
- package/dist-types/commands/CreateMessageTemplateVersionCommand.d.ts +1 -1
- package/dist-types/commands/CreateQuickResponseCommand.d.ts +2 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/errors.d.ts +146 -0
- package/dist-types/models/models_0.d.ts +416 -129
- package/dist-types/models/models_1.d.ts +1 -436
- package/dist-types/ts3.4/commands/CreateMessageTemplateAttachmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateMessageTemplateCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateMessageTemplateVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +2 -4
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/errors.d.ts +81 -0
- package/dist-types/ts3.4/models/models_0.d.ts +102 -73
- package/dist-types/ts3.4/models/models_1.d.ts +4 -114
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/index.d.ts +0 -2
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { QConnectServiceException as __BaseException } from "./QConnectServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
9
|
-
}
|
|
10
1
|
export interface ActivateMessageTemplateRequest {
|
|
11
2
|
knowledgeBaseId: string | undefined;
|
|
12
3
|
messageTemplateId: string | undefined;
|
|
@@ -17,34 +8,6 @@ export interface ActivateMessageTemplateResponse {
|
|
|
17
8
|
messageTemplateId: string | undefined;
|
|
18
9
|
versionNumber: number | undefined;
|
|
19
10
|
}
|
|
20
|
-
export declare class ConflictException extends __BaseException {
|
|
21
|
-
readonly name: "ConflictException";
|
|
22
|
-
readonly $fault: "client";
|
|
23
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
24
|
-
}
|
|
25
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
26
|
-
readonly name: "ResourceNotFoundException";
|
|
27
|
-
readonly $fault: "client";
|
|
28
|
-
resourceName?: string | undefined;
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
31
|
-
);
|
|
32
|
-
}
|
|
33
|
-
export declare class ThrottlingException extends __BaseException {
|
|
34
|
-
readonly name: "ThrottlingException";
|
|
35
|
-
readonly $fault: "client";
|
|
36
|
-
$retryable: {};
|
|
37
|
-
constructor(
|
|
38
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
39
|
-
);
|
|
40
|
-
}
|
|
41
|
-
export declare class ValidationException extends __BaseException {
|
|
42
|
-
readonly name: "ValidationException";
|
|
43
|
-
readonly $fault: "client";
|
|
44
|
-
constructor(
|
|
45
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
46
|
-
);
|
|
47
|
-
}
|
|
48
11
|
export interface AgentAttributes {
|
|
49
12
|
firstName?: string | undefined;
|
|
50
13
|
lastName?: string | undefined;
|
|
@@ -343,20 +306,6 @@ export interface AIAgentData {
|
|
|
343
306
|
export interface CreateAIAgentResponse {
|
|
344
307
|
aiAgent?: AIAgentData | undefined;
|
|
345
308
|
}
|
|
346
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
347
|
-
readonly name: "ServiceQuotaExceededException";
|
|
348
|
-
readonly $fault: "client";
|
|
349
|
-
constructor(
|
|
350
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
351
|
-
);
|
|
352
|
-
}
|
|
353
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
354
|
-
readonly name: "UnauthorizedException";
|
|
355
|
-
readonly $fault: "client";
|
|
356
|
-
constructor(
|
|
357
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
358
|
-
);
|
|
359
|
-
}
|
|
360
309
|
export interface CreateAIAgentVersionRequest {
|
|
361
310
|
assistantId: string | undefined;
|
|
362
311
|
aiAgentId: string | undefined;
|
|
@@ -1359,14 +1308,6 @@ export declare const QueryResultType: {
|
|
|
1359
1308
|
};
|
|
1360
1309
|
export type QueryResultType =
|
|
1361
1310
|
(typeof QueryResultType)[keyof typeof QueryResultType];
|
|
1362
|
-
export declare class RequestTimeoutException extends __BaseException {
|
|
1363
|
-
readonly name: "RequestTimeoutException";
|
|
1364
|
-
readonly $fault: "client";
|
|
1365
|
-
$retryable: {};
|
|
1366
|
-
constructor(
|
|
1367
|
-
opts: __ExceptionOptionType<RequestTimeoutException, __BaseException>
|
|
1368
|
-
);
|
|
1369
|
-
}
|
|
1370
1311
|
export interface RemoveAssistantAIAgentRequest {
|
|
1371
1312
|
assistantId: string | undefined;
|
|
1372
1313
|
aiAgentType: AIAgentType | undefined;
|
|
@@ -1436,13 +1377,6 @@ export interface SessionData {
|
|
|
1436
1377
|
export interface CreateSessionResponse {
|
|
1437
1378
|
session?: SessionData | undefined;
|
|
1438
1379
|
}
|
|
1439
|
-
export declare class DependencyFailedException extends __BaseException {
|
|
1440
|
-
readonly name: "DependencyFailedException";
|
|
1441
|
-
readonly $fault: "client";
|
|
1442
|
-
constructor(
|
|
1443
|
-
opts: __ExceptionOptionType<DependencyFailedException, __BaseException>
|
|
1444
|
-
);
|
|
1445
|
-
}
|
|
1446
1380
|
export interface GetNextMessageRequest {
|
|
1447
1381
|
assistantId: string | undefined;
|
|
1448
1382
|
sessionId: string | undefined;
|
|
@@ -1837,13 +1771,6 @@ export interface ListContentsResponse {
|
|
|
1837
1771
|
contentSummaries: ContentSummary[] | undefined;
|
|
1838
1772
|
nextToken?: string | undefined;
|
|
1839
1773
|
}
|
|
1840
|
-
export declare class PreconditionFailedException extends __BaseException {
|
|
1841
|
-
readonly name: "PreconditionFailedException";
|
|
1842
|
-
readonly $fault: "client";
|
|
1843
|
-
constructor(
|
|
1844
|
-
opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>
|
|
1845
|
-
);
|
|
1846
|
-
}
|
|
1847
1774
|
export interface UpdateContentRequest {
|
|
1848
1775
|
knowledgeBaseId: string | undefined;
|
|
1849
1776
|
contentId: string | undefined;
|
|
@@ -2164,3 +2091,105 @@ export declare const MessageTemplateAttributeType: {
|
|
|
2164
2091
|
};
|
|
2165
2092
|
export type MessageTemplateAttributeType =
|
|
2166
2093
|
(typeof MessageTemplateAttributeType)[keyof typeof MessageTemplateAttributeType];
|
|
2094
|
+
export interface MessageTemplateData {
|
|
2095
|
+
messageTemplateArn: string | undefined;
|
|
2096
|
+
messageTemplateId: string | undefined;
|
|
2097
|
+
knowledgeBaseArn: string | undefined;
|
|
2098
|
+
knowledgeBaseId: string | undefined;
|
|
2099
|
+
name: string | undefined;
|
|
2100
|
+
channelSubtype: ChannelSubtype | undefined;
|
|
2101
|
+
createdTime: Date | undefined;
|
|
2102
|
+
lastModifiedTime: Date | undefined;
|
|
2103
|
+
lastModifiedBy: string | undefined;
|
|
2104
|
+
content: MessageTemplateContentProvider | undefined;
|
|
2105
|
+
description?: string | undefined;
|
|
2106
|
+
language?: string | undefined;
|
|
2107
|
+
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
2108
|
+
defaultAttributes?: MessageTemplateAttributes | undefined;
|
|
2109
|
+
attributeTypes?: MessageTemplateAttributeType[] | undefined;
|
|
2110
|
+
messageTemplateContentSha256: string | undefined;
|
|
2111
|
+
tags?: Record<string, string> | undefined;
|
|
2112
|
+
}
|
|
2113
|
+
export interface CreateMessageTemplateResponse {
|
|
2114
|
+
messageTemplate?: MessageTemplateData | undefined;
|
|
2115
|
+
}
|
|
2116
|
+
export interface CreateMessageTemplateAttachmentRequest {
|
|
2117
|
+
knowledgeBaseId: string | undefined;
|
|
2118
|
+
messageTemplateId: string | undefined;
|
|
2119
|
+
contentDisposition: ContentDisposition | undefined;
|
|
2120
|
+
name: string | undefined;
|
|
2121
|
+
body: string | undefined;
|
|
2122
|
+
clientToken?: string | undefined;
|
|
2123
|
+
}
|
|
2124
|
+
export interface MessageTemplateAttachment {
|
|
2125
|
+
contentDisposition: ContentDisposition | undefined;
|
|
2126
|
+
name: string | undefined;
|
|
2127
|
+
uploadedTime: Date | undefined;
|
|
2128
|
+
url: string | undefined;
|
|
2129
|
+
urlExpiry: Date | undefined;
|
|
2130
|
+
attachmentId: string | undefined;
|
|
2131
|
+
}
|
|
2132
|
+
export interface CreateMessageTemplateAttachmentResponse {
|
|
2133
|
+
attachment?: MessageTemplateAttachment | undefined;
|
|
2134
|
+
}
|
|
2135
|
+
export interface CreateMessageTemplateVersionRequest {
|
|
2136
|
+
knowledgeBaseId: string | undefined;
|
|
2137
|
+
messageTemplateId: string | undefined;
|
|
2138
|
+
messageTemplateContentSha256?: string | undefined;
|
|
2139
|
+
}
|
|
2140
|
+
export interface ExtendedMessageTemplateData {
|
|
2141
|
+
messageTemplateArn: string | undefined;
|
|
2142
|
+
messageTemplateId: string | undefined;
|
|
2143
|
+
knowledgeBaseArn: string | undefined;
|
|
2144
|
+
knowledgeBaseId: string | undefined;
|
|
2145
|
+
name: string | undefined;
|
|
2146
|
+
channelSubtype: ChannelSubtype | undefined;
|
|
2147
|
+
createdTime: Date | undefined;
|
|
2148
|
+
lastModifiedTime: Date | undefined;
|
|
2149
|
+
lastModifiedBy: string | undefined;
|
|
2150
|
+
content: MessageTemplateContentProvider | undefined;
|
|
2151
|
+
description?: string | undefined;
|
|
2152
|
+
language?: string | undefined;
|
|
2153
|
+
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
2154
|
+
defaultAttributes?: MessageTemplateAttributes | undefined;
|
|
2155
|
+
attributeTypes?: MessageTemplateAttributeType[] | undefined;
|
|
2156
|
+
attachments?: MessageTemplateAttachment[] | undefined;
|
|
2157
|
+
isActive?: boolean | undefined;
|
|
2158
|
+
versionNumber?: number | undefined;
|
|
2159
|
+
messageTemplateContentSha256: string | undefined;
|
|
2160
|
+
tags?: Record<string, string> | undefined;
|
|
2161
|
+
}
|
|
2162
|
+
export interface CreateMessageTemplateVersionResponse {
|
|
2163
|
+
messageTemplate?: ExtendedMessageTemplateData | undefined;
|
|
2164
|
+
}
|
|
2165
|
+
export type QuickResponseDataProvider =
|
|
2166
|
+
| QuickResponseDataProvider.ContentMember
|
|
2167
|
+
| QuickResponseDataProvider.$UnknownMember;
|
|
2168
|
+
export declare namespace QuickResponseDataProvider {
|
|
2169
|
+
interface ContentMember {
|
|
2170
|
+
content: string;
|
|
2171
|
+
$unknown?: never;
|
|
2172
|
+
}
|
|
2173
|
+
interface $UnknownMember {
|
|
2174
|
+
content?: never;
|
|
2175
|
+
$unknown: [string, any];
|
|
2176
|
+
}
|
|
2177
|
+
interface Visitor<T> {
|
|
2178
|
+
content: (value: string) => T;
|
|
2179
|
+
_: (name: string, value: any) => T;
|
|
2180
|
+
}
|
|
2181
|
+
}
|
|
2182
|
+
export interface CreateQuickResponseRequest {
|
|
2183
|
+
knowledgeBaseId: string | undefined;
|
|
2184
|
+
name: string | undefined;
|
|
2185
|
+
content: QuickResponseDataProvider | undefined;
|
|
2186
|
+
contentType?: string | undefined;
|
|
2187
|
+
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
2188
|
+
description?: string | undefined;
|
|
2189
|
+
shortcutKey?: string | undefined;
|
|
2190
|
+
isActive?: boolean | undefined;
|
|
2191
|
+
channels?: string[] | undefined;
|
|
2192
|
+
language?: string | undefined;
|
|
2193
|
+
clientToken?: string | undefined;
|
|
2194
|
+
tags?: Record<string, string> | undefined;
|
|
2195
|
+
}
|
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import {
|
|
3
2
|
ChannelSubtype,
|
|
4
3
|
Configuration,
|
|
5
4
|
ContentDataDetails,
|
|
6
|
-
ContentDisposition,
|
|
7
5
|
ContentSummary,
|
|
8
6
|
DataReference,
|
|
9
7
|
Document,
|
|
10
8
|
EmailOverviewChunkDataDetails,
|
|
11
9
|
EmailResponseChunkDataDetails,
|
|
10
|
+
ExtendedMessageTemplateData,
|
|
12
11
|
GroupingConfiguration,
|
|
13
12
|
IntentDetectedDataDetails,
|
|
14
13
|
KnowledgeBaseData,
|
|
15
14
|
KnowledgeBaseStatus,
|
|
16
15
|
KnowledgeBaseType,
|
|
16
|
+
MessageTemplateAttachment,
|
|
17
17
|
MessageTemplateAttributes,
|
|
18
|
-
MessageTemplateAttributeType,
|
|
19
18
|
MessageTemplateContentProvider,
|
|
19
|
+
MessageTemplateData,
|
|
20
20
|
QueryResultType,
|
|
21
|
+
QuickResponseDataProvider,
|
|
21
22
|
RankingData,
|
|
22
23
|
RecommendationTrigger,
|
|
23
24
|
RecommendationType,
|
|
@@ -29,109 +30,6 @@ import {
|
|
|
29
30
|
SourceContentDataDetails,
|
|
30
31
|
VectorIngestionConfiguration,
|
|
31
32
|
} from "./models_0";
|
|
32
|
-
import { QConnectServiceException as __BaseException } from "./QConnectServiceException";
|
|
33
|
-
export interface MessageTemplateData {
|
|
34
|
-
messageTemplateArn: string | undefined;
|
|
35
|
-
messageTemplateId: string | undefined;
|
|
36
|
-
knowledgeBaseArn: string | undefined;
|
|
37
|
-
knowledgeBaseId: string | undefined;
|
|
38
|
-
name: string | undefined;
|
|
39
|
-
channelSubtype: ChannelSubtype | undefined;
|
|
40
|
-
createdTime: Date | undefined;
|
|
41
|
-
lastModifiedTime: Date | undefined;
|
|
42
|
-
lastModifiedBy: string | undefined;
|
|
43
|
-
content: MessageTemplateContentProvider | undefined;
|
|
44
|
-
description?: string | undefined;
|
|
45
|
-
language?: string | undefined;
|
|
46
|
-
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
47
|
-
defaultAttributes?: MessageTemplateAttributes | undefined;
|
|
48
|
-
attributeTypes?: MessageTemplateAttributeType[] | undefined;
|
|
49
|
-
messageTemplateContentSha256: string | undefined;
|
|
50
|
-
tags?: Record<string, string> | undefined;
|
|
51
|
-
}
|
|
52
|
-
export interface CreateMessageTemplateResponse {
|
|
53
|
-
messageTemplate?: MessageTemplateData | undefined;
|
|
54
|
-
}
|
|
55
|
-
export interface CreateMessageTemplateAttachmentRequest {
|
|
56
|
-
knowledgeBaseId: string | undefined;
|
|
57
|
-
messageTemplateId: string | undefined;
|
|
58
|
-
contentDisposition: ContentDisposition | undefined;
|
|
59
|
-
name: string | undefined;
|
|
60
|
-
body: string | undefined;
|
|
61
|
-
clientToken?: string | undefined;
|
|
62
|
-
}
|
|
63
|
-
export interface MessageTemplateAttachment {
|
|
64
|
-
contentDisposition: ContentDisposition | undefined;
|
|
65
|
-
name: string | undefined;
|
|
66
|
-
uploadedTime: Date | undefined;
|
|
67
|
-
url: string | undefined;
|
|
68
|
-
urlExpiry: Date | undefined;
|
|
69
|
-
attachmentId: string | undefined;
|
|
70
|
-
}
|
|
71
|
-
export interface CreateMessageTemplateAttachmentResponse {
|
|
72
|
-
attachment?: MessageTemplateAttachment | undefined;
|
|
73
|
-
}
|
|
74
|
-
export interface CreateMessageTemplateVersionRequest {
|
|
75
|
-
knowledgeBaseId: string | undefined;
|
|
76
|
-
messageTemplateId: string | undefined;
|
|
77
|
-
messageTemplateContentSha256?: string | undefined;
|
|
78
|
-
}
|
|
79
|
-
export interface ExtendedMessageTemplateData {
|
|
80
|
-
messageTemplateArn: string | undefined;
|
|
81
|
-
messageTemplateId: string | undefined;
|
|
82
|
-
knowledgeBaseArn: string | undefined;
|
|
83
|
-
knowledgeBaseId: string | undefined;
|
|
84
|
-
name: string | undefined;
|
|
85
|
-
channelSubtype: ChannelSubtype | undefined;
|
|
86
|
-
createdTime: Date | undefined;
|
|
87
|
-
lastModifiedTime: Date | undefined;
|
|
88
|
-
lastModifiedBy: string | undefined;
|
|
89
|
-
content: MessageTemplateContentProvider | undefined;
|
|
90
|
-
description?: string | undefined;
|
|
91
|
-
language?: string | undefined;
|
|
92
|
-
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
93
|
-
defaultAttributes?: MessageTemplateAttributes | undefined;
|
|
94
|
-
attributeTypes?: MessageTemplateAttributeType[] | undefined;
|
|
95
|
-
attachments?: MessageTemplateAttachment[] | undefined;
|
|
96
|
-
isActive?: boolean | undefined;
|
|
97
|
-
versionNumber?: number | undefined;
|
|
98
|
-
messageTemplateContentSha256: string | undefined;
|
|
99
|
-
tags?: Record<string, string> | undefined;
|
|
100
|
-
}
|
|
101
|
-
export interface CreateMessageTemplateVersionResponse {
|
|
102
|
-
messageTemplate?: ExtendedMessageTemplateData | undefined;
|
|
103
|
-
}
|
|
104
|
-
export type QuickResponseDataProvider =
|
|
105
|
-
| QuickResponseDataProvider.ContentMember
|
|
106
|
-
| QuickResponseDataProvider.$UnknownMember;
|
|
107
|
-
export declare namespace QuickResponseDataProvider {
|
|
108
|
-
interface ContentMember {
|
|
109
|
-
content: string;
|
|
110
|
-
$unknown?: never;
|
|
111
|
-
}
|
|
112
|
-
interface $UnknownMember {
|
|
113
|
-
content?: never;
|
|
114
|
-
$unknown: [string, any];
|
|
115
|
-
}
|
|
116
|
-
interface Visitor<T> {
|
|
117
|
-
content: (value: string) => T;
|
|
118
|
-
_: (name: string, value: any) => T;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
export interface CreateQuickResponseRequest {
|
|
122
|
-
knowledgeBaseId: string | undefined;
|
|
123
|
-
name: string | undefined;
|
|
124
|
-
content: QuickResponseDataProvider | undefined;
|
|
125
|
-
contentType?: string | undefined;
|
|
126
|
-
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
127
|
-
description?: string | undefined;
|
|
128
|
-
shortcutKey?: string | undefined;
|
|
129
|
-
isActive?: boolean | undefined;
|
|
130
|
-
channels?: string[] | undefined;
|
|
131
|
-
language?: string | undefined;
|
|
132
|
-
clientToken?: string | undefined;
|
|
133
|
-
tags?: Record<string, string> | undefined;
|
|
134
|
-
}
|
|
135
33
|
export type QuickResponseContentProvider =
|
|
136
34
|
| QuickResponseContentProvider.ContentMember
|
|
137
35
|
| QuickResponseContentProvider.$UnknownMember;
|
|
@@ -642,14 +540,6 @@ export interface TagResourceRequest {
|
|
|
642
540
|
tags: Record<string, string> | undefined;
|
|
643
541
|
}
|
|
644
542
|
export interface TagResourceResponse {}
|
|
645
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
646
|
-
readonly name: "TooManyTagsException";
|
|
647
|
-
readonly $fault: "client";
|
|
648
|
-
resourceName?: string | undefined;
|
|
649
|
-
constructor(
|
|
650
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
651
|
-
);
|
|
652
|
-
}
|
|
653
543
|
export interface UntagResourceRequest {
|
|
654
544
|
resourceArn: string | undefined;
|
|
655
545
|
tagKeys: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-qconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Qconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.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-qconnect",
|
|
@@ -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.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED