@aws-sdk/client-connectcases 3.301.0 → 3.303.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/models/models_0.js +31 -38
- package/dist-es/models/models_0.js +31 -38
- package/dist-types/models/models_0.d.ts +66 -31
- package/dist-types/ts3.4/models/models_0.d.ts +42 -31
- package/package.json +34 -34
|
@@ -97,10 +97,9 @@ class ValidationException extends ConnectCasesServiceException_1.ConnectCasesSer
|
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
exports.ValidationException = ValidationException;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
})(CommentBodyTextType = exports.CommentBodyTextType || (exports.CommentBodyTextType = {}));
|
|
100
|
+
exports.CommentBodyTextType = {
|
|
101
|
+
PLAINTEXT: "Text/Plain",
|
|
102
|
+
};
|
|
104
103
|
var RelatedItemInputContent;
|
|
105
104
|
(function (RelatedItemInputContent) {
|
|
106
105
|
RelatedItemInputContent.visit = (value, visitor) => {
|
|
@@ -111,11 +110,10 @@ var RelatedItemInputContent;
|
|
|
111
110
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
112
111
|
};
|
|
113
112
|
})(RelatedItemInputContent = exports.RelatedItemInputContent || (exports.RelatedItemInputContent = {}));
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
})(RelatedItemType = exports.RelatedItemType || (exports.RelatedItemType = {}));
|
|
113
|
+
exports.RelatedItemType = {
|
|
114
|
+
COMMENT: "Comment",
|
|
115
|
+
CONTACT: "Contact",
|
|
116
|
+
};
|
|
119
117
|
class ServiceQuotaExceededException extends ConnectCasesServiceException_1.ConnectCasesServiceException {
|
|
120
118
|
constructor(opts) {
|
|
121
119
|
super({
|
|
@@ -167,30 +165,26 @@ var FieldFilter;
|
|
|
167
165
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
168
166
|
};
|
|
169
167
|
})(FieldFilter = exports.FieldFilter || (exports.FieldFilter = {}));
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
FieldType["NUMBER"] = "Number";
|
|
191
|
-
FieldType["SINGLE_SELECT"] = "SingleSelect";
|
|
192
|
-
FieldType["TEXT"] = "Text";
|
|
193
|
-
})(FieldType = exports.FieldType || (exports.FieldType = {}));
|
|
168
|
+
exports.Order = {
|
|
169
|
+
ASCENDING: "Asc",
|
|
170
|
+
DESCENDING: "Desc",
|
|
171
|
+
};
|
|
172
|
+
exports.DomainStatus = {
|
|
173
|
+
ACTIVE: "Active",
|
|
174
|
+
CREATION_FAILED: "CreationFailed",
|
|
175
|
+
CREATION_IN_PROGRESS: "CreationInProgress",
|
|
176
|
+
};
|
|
177
|
+
exports.FieldNamespace = {
|
|
178
|
+
CUSTOM: "Custom",
|
|
179
|
+
SYSTEM: "System",
|
|
180
|
+
};
|
|
181
|
+
exports.FieldType = {
|
|
182
|
+
BOOLEAN: "Boolean",
|
|
183
|
+
DATE_TIME: "DateTime",
|
|
184
|
+
NUMBER: "Number",
|
|
185
|
+
SINGLE_SELECT: "SingleSelect",
|
|
186
|
+
TEXT: "Text",
|
|
187
|
+
};
|
|
194
188
|
var Section;
|
|
195
189
|
(function (Section) {
|
|
196
190
|
Section.visit = (value, visitor) => {
|
|
@@ -207,11 +201,10 @@ var LayoutContent;
|
|
|
207
201
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
208
202
|
};
|
|
209
203
|
})(LayoutContent = exports.LayoutContent || (exports.LayoutContent = {}));
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
})(TemplateStatus = exports.TemplateStatus || (exports.TemplateStatus = {}));
|
|
204
|
+
exports.TemplateStatus = {
|
|
205
|
+
ACTIVE: "Active",
|
|
206
|
+
INACTIVE: "Inactive",
|
|
207
|
+
};
|
|
215
208
|
var CaseFilter;
|
|
216
209
|
(function (CaseFilter) {
|
|
217
210
|
CaseFilter.visit = (value, visitor) => {
|
|
@@ -88,10 +88,9 @@ export class ValidationException extends __BaseException {
|
|
|
88
88
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
|
-
export
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
})(CommentBodyTextType || (CommentBodyTextType = {}));
|
|
91
|
+
export const CommentBodyTextType = {
|
|
92
|
+
PLAINTEXT: "Text/Plain",
|
|
93
|
+
};
|
|
95
94
|
export var RelatedItemInputContent;
|
|
96
95
|
(function (RelatedItemInputContent) {
|
|
97
96
|
RelatedItemInputContent.visit = (value, visitor) => {
|
|
@@ -102,11 +101,10 @@ export var RelatedItemInputContent;
|
|
|
102
101
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
103
102
|
};
|
|
104
103
|
})(RelatedItemInputContent || (RelatedItemInputContent = {}));
|
|
105
|
-
export
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
})(RelatedItemType || (RelatedItemType = {}));
|
|
104
|
+
export const RelatedItemType = {
|
|
105
|
+
COMMENT: "Comment",
|
|
106
|
+
CONTACT: "Contact",
|
|
107
|
+
};
|
|
110
108
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
111
109
|
constructor(opts) {
|
|
112
110
|
super({
|
|
@@ -157,30 +155,26 @@ export var FieldFilter;
|
|
|
157
155
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
158
156
|
};
|
|
159
157
|
})(FieldFilter || (FieldFilter = {}));
|
|
160
|
-
export
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
FieldType["NUMBER"] = "Number";
|
|
181
|
-
FieldType["SINGLE_SELECT"] = "SingleSelect";
|
|
182
|
-
FieldType["TEXT"] = "Text";
|
|
183
|
-
})(FieldType || (FieldType = {}));
|
|
158
|
+
export const Order = {
|
|
159
|
+
ASCENDING: "Asc",
|
|
160
|
+
DESCENDING: "Desc",
|
|
161
|
+
};
|
|
162
|
+
export const DomainStatus = {
|
|
163
|
+
ACTIVE: "Active",
|
|
164
|
+
CREATION_FAILED: "CreationFailed",
|
|
165
|
+
CREATION_IN_PROGRESS: "CreationInProgress",
|
|
166
|
+
};
|
|
167
|
+
export const FieldNamespace = {
|
|
168
|
+
CUSTOM: "Custom",
|
|
169
|
+
SYSTEM: "System",
|
|
170
|
+
};
|
|
171
|
+
export const FieldType = {
|
|
172
|
+
BOOLEAN: "Boolean",
|
|
173
|
+
DATE_TIME: "DateTime",
|
|
174
|
+
NUMBER: "Number",
|
|
175
|
+
SINGLE_SELECT: "SingleSelect",
|
|
176
|
+
TEXT: "Text",
|
|
177
|
+
};
|
|
184
178
|
export var Section;
|
|
185
179
|
(function (Section) {
|
|
186
180
|
Section.visit = (value, visitor) => {
|
|
@@ -197,11 +191,10 @@ export var LayoutContent;
|
|
|
197
191
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
198
192
|
};
|
|
199
193
|
})(LayoutContent || (LayoutContent = {}));
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
})(TemplateStatus || (TemplateStatus = {}));
|
|
194
|
+
export const TemplateStatus = {
|
|
195
|
+
ACTIVE: "Active",
|
|
196
|
+
INACTIVE: "Inactive",
|
|
197
|
+
};
|
|
205
198
|
export var CaseFilter;
|
|
206
199
|
(function (CaseFilter) {
|
|
207
200
|
CaseFilter.visit = (value, visitor) => {
|
|
@@ -297,10 +297,15 @@ export interface ListCasesForContactResponse {
|
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
299
|
* @public
|
|
300
|
+
* @enum
|
|
300
301
|
*/
|
|
301
|
-
export declare
|
|
302
|
-
PLAINTEXT
|
|
303
|
-
}
|
|
302
|
+
export declare const CommentBodyTextType: {
|
|
303
|
+
readonly PLAINTEXT: "Text/Plain";
|
|
304
|
+
};
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
308
|
+
export type CommentBodyTextType = (typeof CommentBodyTextType)[keyof typeof CommentBodyTextType];
|
|
304
309
|
/**
|
|
305
310
|
* @public
|
|
306
311
|
* <p>Represents the content of a <code>Comment</code> to be returned to agents.</p>
|
|
@@ -364,11 +369,16 @@ export declare namespace RelatedItemInputContent {
|
|
|
364
369
|
}
|
|
365
370
|
/**
|
|
366
371
|
* @public
|
|
372
|
+
* @enum
|
|
367
373
|
*/
|
|
368
|
-
export declare
|
|
369
|
-
COMMENT
|
|
370
|
-
CONTACT
|
|
371
|
-
}
|
|
374
|
+
export declare const RelatedItemType: {
|
|
375
|
+
readonly COMMENT: "Comment";
|
|
376
|
+
readonly CONTACT: "Contact";
|
|
377
|
+
};
|
|
378
|
+
/**
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
export type RelatedItemType = (typeof RelatedItemType)[keyof typeof RelatedItemType];
|
|
372
382
|
/**
|
|
373
383
|
* @public
|
|
374
384
|
*/
|
|
@@ -697,11 +707,16 @@ export declare namespace FieldFilter {
|
|
|
697
707
|
}
|
|
698
708
|
/**
|
|
699
709
|
* @public
|
|
710
|
+
* @enum
|
|
700
711
|
*/
|
|
701
|
-
export declare
|
|
702
|
-
ASCENDING
|
|
703
|
-
DESCENDING
|
|
704
|
-
}
|
|
712
|
+
export declare const Order: {
|
|
713
|
+
readonly ASCENDING: "Asc";
|
|
714
|
+
readonly DESCENDING: "Desc";
|
|
715
|
+
};
|
|
716
|
+
/**
|
|
717
|
+
* @public
|
|
718
|
+
*/
|
|
719
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
705
720
|
/**
|
|
706
721
|
* @public
|
|
707
722
|
* <p>A structured set of sort terms.</p>
|
|
@@ -787,12 +802,17 @@ export interface CreateDomainRequest {
|
|
|
787
802
|
}
|
|
788
803
|
/**
|
|
789
804
|
* @public
|
|
805
|
+
* @enum
|
|
790
806
|
*/
|
|
791
|
-
export declare
|
|
792
|
-
ACTIVE
|
|
793
|
-
CREATION_FAILED
|
|
794
|
-
CREATION_IN_PROGRESS
|
|
795
|
-
}
|
|
807
|
+
export declare const DomainStatus: {
|
|
808
|
+
readonly ACTIVE: "Active";
|
|
809
|
+
readonly CREATION_FAILED: "CreationFailed";
|
|
810
|
+
readonly CREATION_IN_PROGRESS: "CreationInProgress";
|
|
811
|
+
};
|
|
812
|
+
/**
|
|
813
|
+
* @public
|
|
814
|
+
*/
|
|
815
|
+
export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
|
|
796
816
|
/**
|
|
797
817
|
* @public
|
|
798
818
|
*/
|
|
@@ -1029,21 +1049,31 @@ export interface FieldError {
|
|
|
1029
1049
|
}
|
|
1030
1050
|
/**
|
|
1031
1051
|
* @public
|
|
1052
|
+
* @enum
|
|
1032
1053
|
*/
|
|
1033
|
-
export declare
|
|
1034
|
-
CUSTOM
|
|
1035
|
-
SYSTEM
|
|
1036
|
-
}
|
|
1054
|
+
export declare const FieldNamespace: {
|
|
1055
|
+
readonly CUSTOM: "Custom";
|
|
1056
|
+
readonly SYSTEM: "System";
|
|
1057
|
+
};
|
|
1037
1058
|
/**
|
|
1038
1059
|
* @public
|
|
1039
1060
|
*/
|
|
1040
|
-
export
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1061
|
+
export type FieldNamespace = (typeof FieldNamespace)[keyof typeof FieldNamespace];
|
|
1062
|
+
/**
|
|
1063
|
+
* @public
|
|
1064
|
+
* @enum
|
|
1065
|
+
*/
|
|
1066
|
+
export declare const FieldType: {
|
|
1067
|
+
readonly BOOLEAN: "Boolean";
|
|
1068
|
+
readonly DATE_TIME: "DateTime";
|
|
1069
|
+
readonly NUMBER: "Number";
|
|
1070
|
+
readonly SINGLE_SELECT: "SingleSelect";
|
|
1071
|
+
readonly TEXT: "Text";
|
|
1072
|
+
};
|
|
1073
|
+
/**
|
|
1074
|
+
* @public
|
|
1075
|
+
*/
|
|
1076
|
+
export type FieldType = (typeof FieldType)[keyof typeof FieldType];
|
|
1047
1077
|
/**
|
|
1048
1078
|
* @public
|
|
1049
1079
|
* <p>Object to store detailed field information.</p>
|
|
@@ -1615,11 +1645,16 @@ export interface RequiredField {
|
|
|
1615
1645
|
}
|
|
1616
1646
|
/**
|
|
1617
1647
|
* @public
|
|
1648
|
+
* @enum
|
|
1618
1649
|
*/
|
|
1619
|
-
export declare
|
|
1620
|
-
ACTIVE
|
|
1621
|
-
INACTIVE
|
|
1622
|
-
}
|
|
1650
|
+
export declare const TemplateStatus: {
|
|
1651
|
+
readonly ACTIVE: "Active";
|
|
1652
|
+
readonly INACTIVE: "Inactive";
|
|
1653
|
+
};
|
|
1654
|
+
/**
|
|
1655
|
+
* @public
|
|
1656
|
+
*/
|
|
1657
|
+
export type TemplateStatus = (typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
1623
1658
|
/**
|
|
1624
1659
|
* @public
|
|
1625
1660
|
*/
|
|
@@ -126,9 +126,11 @@ export interface ListCasesForContactResponse {
|
|
|
126
126
|
cases: CaseSummary[] | undefined;
|
|
127
127
|
nextToken?: string;
|
|
128
128
|
}
|
|
129
|
-
export declare
|
|
130
|
-
PLAINTEXT
|
|
131
|
-
}
|
|
129
|
+
export declare const CommentBodyTextType: {
|
|
130
|
+
readonly PLAINTEXT: "Text/Plain";
|
|
131
|
+
};
|
|
132
|
+
export type CommentBodyTextType =
|
|
133
|
+
(typeof CommentBodyTextType)[keyof typeof CommentBodyTextType];
|
|
132
134
|
export interface CommentContent {
|
|
133
135
|
body: string | undefined;
|
|
134
136
|
contentType: CommentBodyTextType | string | undefined;
|
|
@@ -163,10 +165,12 @@ export declare namespace RelatedItemInputContent {
|
|
|
163
165
|
}
|
|
164
166
|
const visit: <T>(value: RelatedItemInputContent, visitor: Visitor<T>) => T;
|
|
165
167
|
}
|
|
166
|
-
export declare
|
|
167
|
-
COMMENT
|
|
168
|
-
CONTACT
|
|
169
|
-
}
|
|
168
|
+
export declare const RelatedItemType: {
|
|
169
|
+
readonly COMMENT: "Comment";
|
|
170
|
+
readonly CONTACT: "Contact";
|
|
171
|
+
};
|
|
172
|
+
export type RelatedItemType =
|
|
173
|
+
(typeof RelatedItemType)[keyof typeof RelatedItemType];
|
|
170
174
|
export interface CreateRelatedItemRequest {
|
|
171
175
|
domainId: string | undefined;
|
|
172
176
|
caseId: string | undefined;
|
|
@@ -349,10 +353,11 @@ export declare namespace FieldFilter {
|
|
|
349
353
|
}
|
|
350
354
|
const visit: <T>(value: FieldFilter, visitor: Visitor<T>) => T;
|
|
351
355
|
}
|
|
352
|
-
export declare
|
|
353
|
-
ASCENDING
|
|
354
|
-
DESCENDING
|
|
355
|
-
}
|
|
356
|
+
export declare const Order: {
|
|
357
|
+
readonly ASCENDING: "Asc";
|
|
358
|
+
readonly DESCENDING: "Desc";
|
|
359
|
+
};
|
|
360
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
356
361
|
export interface Sort {
|
|
357
362
|
fieldId: string | undefined;
|
|
358
363
|
sortOrder: Order | string | undefined;
|
|
@@ -376,11 +381,12 @@ export interface UpdateCaseResponse {}
|
|
|
376
381
|
export interface CreateDomainRequest {
|
|
377
382
|
name: string | undefined;
|
|
378
383
|
}
|
|
379
|
-
export declare
|
|
380
|
-
ACTIVE
|
|
381
|
-
CREATION_FAILED
|
|
382
|
-
CREATION_IN_PROGRESS
|
|
383
|
-
}
|
|
384
|
+
export declare const DomainStatus: {
|
|
385
|
+
readonly ACTIVE: "Active";
|
|
386
|
+
readonly CREATION_FAILED: "CreationFailed";
|
|
387
|
+
readonly CREATION_IN_PROGRESS: "CreationInProgress";
|
|
388
|
+
};
|
|
389
|
+
export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
|
|
384
390
|
export interface CreateDomainResponse {
|
|
385
391
|
domainId: string | undefined;
|
|
386
392
|
domainArn: string | undefined;
|
|
@@ -448,17 +454,20 @@ export interface FieldError {
|
|
|
448
454
|
errorCode: string | undefined;
|
|
449
455
|
message?: string;
|
|
450
456
|
}
|
|
451
|
-
export declare
|
|
452
|
-
CUSTOM
|
|
453
|
-
SYSTEM
|
|
454
|
-
}
|
|
455
|
-
export
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
457
|
+
export declare const FieldNamespace: {
|
|
458
|
+
readonly CUSTOM: "Custom";
|
|
459
|
+
readonly SYSTEM: "System";
|
|
460
|
+
};
|
|
461
|
+
export type FieldNamespace =
|
|
462
|
+
(typeof FieldNamespace)[keyof typeof FieldNamespace];
|
|
463
|
+
export declare const FieldType: {
|
|
464
|
+
readonly BOOLEAN: "Boolean";
|
|
465
|
+
readonly DATE_TIME: "DateTime";
|
|
466
|
+
readonly NUMBER: "Number";
|
|
467
|
+
readonly SINGLE_SELECT: "SingleSelect";
|
|
468
|
+
readonly TEXT: "Text";
|
|
469
|
+
};
|
|
470
|
+
export type FieldType = (typeof FieldType)[keyof typeof FieldType];
|
|
462
471
|
export interface GetFieldResponse {
|
|
463
472
|
fieldId: string | undefined;
|
|
464
473
|
name: string | undefined;
|
|
@@ -639,10 +648,12 @@ export interface LayoutConfiguration {
|
|
|
639
648
|
export interface RequiredField {
|
|
640
649
|
fieldId: string | undefined;
|
|
641
650
|
}
|
|
642
|
-
export declare
|
|
643
|
-
ACTIVE
|
|
644
|
-
INACTIVE
|
|
645
|
-
}
|
|
651
|
+
export declare const TemplateStatus: {
|
|
652
|
+
readonly ACTIVE: "Active";
|
|
653
|
+
readonly INACTIVE: "Inactive";
|
|
654
|
+
};
|
|
655
|
+
export type TemplateStatus =
|
|
656
|
+
(typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
646
657
|
export interface CreateTemplateRequest {
|
|
647
658
|
domainId: string | undefined;
|
|
648
659
|
name: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connectcases",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connectcases Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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,43 +21,43 @@
|
|
|
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.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
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.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|