@aws-sdk/client-connectcases 3.716.0 → 3.723.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 +212 -149
- package/dist-es/ConnectCasesClient.js +1 -0
- package/dist-es/models/models_0.js +19 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -193,7 +193,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
193
193
|
}, "resolveRuntimeExtensions");
|
|
194
194
|
|
|
195
195
|
// src/ConnectCasesClient.ts
|
|
196
|
-
var
|
|
196
|
+
var ConnectCasesClient = class extends import_smithy_client.Client {
|
|
197
|
+
static {
|
|
198
|
+
__name(this, "ConnectCasesClient");
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* The resolved configuration of ConnectCasesClient class. This is resolved and normalized from the {@link ConnectCasesClientConfig | constructor configuration interface}.
|
|
202
|
+
*/
|
|
203
|
+
config;
|
|
197
204
|
constructor(...[configuration]) {
|
|
198
205
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
199
206
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -203,7 +210,7 @@ var _ConnectCasesClient = class _ConnectCasesClient extends import_smithy_client
|
|
|
203
210
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
204
211
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
205
212
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
206
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
213
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
207
214
|
super(_config_8);
|
|
208
215
|
this.config = _config_8;
|
|
209
216
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -231,8 +238,6 @@ var _ConnectCasesClient = class _ConnectCasesClient extends import_smithy_client
|
|
|
231
238
|
super.destroy();
|
|
232
239
|
}
|
|
233
240
|
};
|
|
234
|
-
__name(_ConnectCasesClient, "ConnectCasesClient");
|
|
235
|
-
var ConnectCasesClient = _ConnectCasesClient;
|
|
236
241
|
|
|
237
242
|
// src/ConnectCases.ts
|
|
238
243
|
|
|
@@ -250,7 +255,10 @@ var import_uuid = require("uuid");
|
|
|
250
255
|
|
|
251
256
|
// src/models/ConnectCasesServiceException.ts
|
|
252
257
|
|
|
253
|
-
var
|
|
258
|
+
var ConnectCasesServiceException = class _ConnectCasesServiceException extends import_smithy_client.ServiceException {
|
|
259
|
+
static {
|
|
260
|
+
__name(this, "ConnectCasesServiceException");
|
|
261
|
+
}
|
|
254
262
|
/**
|
|
255
263
|
* @internal
|
|
256
264
|
*/
|
|
@@ -259,11 +267,14 @@ var _ConnectCasesServiceException = class _ConnectCasesServiceException extends
|
|
|
259
267
|
Object.setPrototypeOf(this, _ConnectCasesServiceException.prototype);
|
|
260
268
|
}
|
|
261
269
|
};
|
|
262
|
-
__name(_ConnectCasesServiceException, "ConnectCasesServiceException");
|
|
263
|
-
var ConnectCasesServiceException = _ConnectCasesServiceException;
|
|
264
270
|
|
|
265
271
|
// src/models/models_0.ts
|
|
266
|
-
var
|
|
272
|
+
var AccessDeniedException = class _AccessDeniedException extends ConnectCasesServiceException {
|
|
273
|
+
static {
|
|
274
|
+
__name(this, "AccessDeniedException");
|
|
275
|
+
}
|
|
276
|
+
name = "AccessDeniedException";
|
|
277
|
+
$fault = "client";
|
|
267
278
|
/**
|
|
268
279
|
* @internal
|
|
269
280
|
*/
|
|
@@ -273,14 +284,15 @@ var _AccessDeniedException = class _AccessDeniedException extends ConnectCasesSe
|
|
|
273
284
|
$fault: "client",
|
|
274
285
|
...opts
|
|
275
286
|
});
|
|
276
|
-
this.name = "AccessDeniedException";
|
|
277
|
-
this.$fault = "client";
|
|
278
287
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
279
288
|
}
|
|
280
289
|
};
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
290
|
+
var ConflictException = class _ConflictException extends ConnectCasesServiceException {
|
|
291
|
+
static {
|
|
292
|
+
__name(this, "ConflictException");
|
|
293
|
+
}
|
|
294
|
+
name = "ConflictException";
|
|
295
|
+
$fault = "client";
|
|
284
296
|
/**
|
|
285
297
|
* @internal
|
|
286
298
|
*/
|
|
@@ -290,13 +302,9 @@ var _ConflictException = class _ConflictException extends ConnectCasesServiceExc
|
|
|
290
302
|
$fault: "client",
|
|
291
303
|
...opts
|
|
292
304
|
});
|
|
293
|
-
this.name = "ConflictException";
|
|
294
|
-
this.$fault = "client";
|
|
295
305
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
296
306
|
}
|
|
297
307
|
};
|
|
298
|
-
__name(_ConflictException, "ConflictException");
|
|
299
|
-
var ConflictException = _ConflictException;
|
|
300
308
|
var FieldValueUnion;
|
|
301
309
|
((FieldValueUnion2) => {
|
|
302
310
|
FieldValueUnion2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -321,7 +329,18 @@ var UserUnion;
|
|
|
321
329
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
322
330
|
}, "visit");
|
|
323
331
|
})(UserUnion || (UserUnion = {}));
|
|
324
|
-
var
|
|
332
|
+
var InternalServerException = class _InternalServerException extends ConnectCasesServiceException {
|
|
333
|
+
static {
|
|
334
|
+
__name(this, "InternalServerException");
|
|
335
|
+
}
|
|
336
|
+
name = "InternalServerException";
|
|
337
|
+
$fault = "server";
|
|
338
|
+
$retryable = {};
|
|
339
|
+
/**
|
|
340
|
+
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
343
|
+
retryAfterSeconds;
|
|
325
344
|
/**
|
|
326
345
|
* @internal
|
|
327
346
|
*/
|
|
@@ -331,16 +350,26 @@ var _InternalServerException = class _InternalServerException extends ConnectCas
|
|
|
331
350
|
$fault: "server",
|
|
332
351
|
...opts
|
|
333
352
|
});
|
|
334
|
-
this.name = "InternalServerException";
|
|
335
|
-
this.$fault = "server";
|
|
336
|
-
this.$retryable = {};
|
|
337
353
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
338
354
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
339
355
|
}
|
|
340
356
|
};
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
357
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ConnectCasesServiceException {
|
|
358
|
+
static {
|
|
359
|
+
__name(this, "ResourceNotFoundException");
|
|
360
|
+
}
|
|
361
|
+
name = "ResourceNotFoundException";
|
|
362
|
+
$fault = "client";
|
|
363
|
+
/**
|
|
364
|
+
* <p>Unique identifier of the resource affected.</p>
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
resourceId;
|
|
368
|
+
/**
|
|
369
|
+
* <p>Type of the resource affected.</p>
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
resourceType;
|
|
344
373
|
/**
|
|
345
374
|
* @internal
|
|
346
375
|
*/
|
|
@@ -350,16 +379,18 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Connec
|
|
|
350
379
|
$fault: "client",
|
|
351
380
|
...opts
|
|
352
381
|
});
|
|
353
|
-
this.name = "ResourceNotFoundException";
|
|
354
|
-
this.$fault = "client";
|
|
355
382
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
356
383
|
this.resourceId = opts.resourceId;
|
|
357
384
|
this.resourceType = opts.resourceType;
|
|
358
385
|
}
|
|
359
386
|
};
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
387
|
+
var ThrottlingException = class _ThrottlingException extends ConnectCasesServiceException {
|
|
388
|
+
static {
|
|
389
|
+
__name(this, "ThrottlingException");
|
|
390
|
+
}
|
|
391
|
+
name = "ThrottlingException";
|
|
392
|
+
$fault = "client";
|
|
393
|
+
$retryable = {};
|
|
363
394
|
/**
|
|
364
395
|
* @internal
|
|
365
396
|
*/
|
|
@@ -369,15 +400,15 @@ var _ThrottlingException = class _ThrottlingException extends ConnectCasesServic
|
|
|
369
400
|
$fault: "client",
|
|
370
401
|
...opts
|
|
371
402
|
});
|
|
372
|
-
this.name = "ThrottlingException";
|
|
373
|
-
this.$fault = "client";
|
|
374
|
-
this.$retryable = {};
|
|
375
403
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
376
404
|
}
|
|
377
405
|
};
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
406
|
+
var ValidationException = class _ValidationException extends ConnectCasesServiceException {
|
|
407
|
+
static {
|
|
408
|
+
__name(this, "ValidationException");
|
|
409
|
+
}
|
|
410
|
+
name = "ValidationException";
|
|
411
|
+
$fault = "client";
|
|
381
412
|
/**
|
|
382
413
|
* @internal
|
|
383
414
|
*/
|
|
@@ -387,13 +418,9 @@ var _ValidationException = class _ValidationException extends ConnectCasesServic
|
|
|
387
418
|
$fault: "client",
|
|
388
419
|
...opts
|
|
389
420
|
});
|
|
390
|
-
this.name = "ValidationException";
|
|
391
|
-
this.$fault = "client";
|
|
392
421
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
393
422
|
}
|
|
394
423
|
};
|
|
395
|
-
__name(_ValidationException, "ValidationException");
|
|
396
|
-
var ValidationException = _ValidationException;
|
|
397
424
|
var AuditEventFieldValueUnion;
|
|
398
425
|
((AuditEventFieldValueUnion3) => {
|
|
399
426
|
AuditEventFieldValueUnion3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -435,7 +462,12 @@ var RelatedItemInputContent;
|
|
|
435
462
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
436
463
|
}, "visit");
|
|
437
464
|
})(RelatedItemInputContent || (RelatedItemInputContent = {}));
|
|
438
|
-
var
|
|
465
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends ConnectCasesServiceException {
|
|
466
|
+
static {
|
|
467
|
+
__name(this, "ServiceQuotaExceededException");
|
|
468
|
+
}
|
|
469
|
+
name = "ServiceQuotaExceededException";
|
|
470
|
+
$fault = "client";
|
|
439
471
|
/**
|
|
440
472
|
* @internal
|
|
441
473
|
*/
|
|
@@ -445,13 +477,9 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
445
477
|
$fault: "client",
|
|
446
478
|
...opts
|
|
447
479
|
});
|
|
448
|
-
this.name = "ServiceQuotaExceededException";
|
|
449
|
-
this.$fault = "client";
|
|
450
480
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
451
481
|
}
|
|
452
482
|
};
|
|
453
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
454
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
455
483
|
var RelatedItemTypeFilter;
|
|
456
484
|
((RelatedItemTypeFilter3) => {
|
|
457
485
|
RelatedItemTypeFilter3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -1915,477 +1943,511 @@ var _tK = "tagKeys";
|
|
|
1915
1943
|
var _v = "values";
|
|
1916
1944
|
|
|
1917
1945
|
// src/commands/BatchGetFieldCommand.ts
|
|
1918
|
-
var
|
|
1946
|
+
var BatchGetFieldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1919
1947
|
return [
|
|
1920
1948
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1921
1949
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1922
1950
|
];
|
|
1923
1951
|
}).s("AmazonConnectCases", "BatchGetField", {}).n("ConnectCasesClient", "BatchGetFieldCommand").f(void 0, void 0).ser(se_BatchGetFieldCommand).de(de_BatchGetFieldCommand).build() {
|
|
1952
|
+
static {
|
|
1953
|
+
__name(this, "BatchGetFieldCommand");
|
|
1954
|
+
}
|
|
1924
1955
|
};
|
|
1925
|
-
__name(_BatchGetFieldCommand, "BatchGetFieldCommand");
|
|
1926
|
-
var BatchGetFieldCommand = _BatchGetFieldCommand;
|
|
1927
1956
|
|
|
1928
1957
|
// src/commands/BatchPutFieldOptionsCommand.ts
|
|
1929
1958
|
|
|
1930
1959
|
|
|
1931
1960
|
|
|
1932
|
-
var
|
|
1961
|
+
var BatchPutFieldOptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1933
1962
|
return [
|
|
1934
1963
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1935
1964
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1936
1965
|
];
|
|
1937
1966
|
}).s("AmazonConnectCases", "BatchPutFieldOptions", {}).n("ConnectCasesClient", "BatchPutFieldOptionsCommand").f(void 0, void 0).ser(se_BatchPutFieldOptionsCommand).de(de_BatchPutFieldOptionsCommand).build() {
|
|
1967
|
+
static {
|
|
1968
|
+
__name(this, "BatchPutFieldOptionsCommand");
|
|
1969
|
+
}
|
|
1938
1970
|
};
|
|
1939
|
-
__name(_BatchPutFieldOptionsCommand, "BatchPutFieldOptionsCommand");
|
|
1940
|
-
var BatchPutFieldOptionsCommand = _BatchPutFieldOptionsCommand;
|
|
1941
1971
|
|
|
1942
1972
|
// src/commands/CreateCaseCommand.ts
|
|
1943
1973
|
|
|
1944
1974
|
|
|
1945
1975
|
|
|
1946
|
-
var
|
|
1976
|
+
var CreateCaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1947
1977
|
return [
|
|
1948
1978
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1949
1979
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1950
1980
|
];
|
|
1951
1981
|
}).s("AmazonConnectCases", "CreateCase", {}).n("ConnectCasesClient", "CreateCaseCommand").f(void 0, void 0).ser(se_CreateCaseCommand).de(de_CreateCaseCommand).build() {
|
|
1982
|
+
static {
|
|
1983
|
+
__name(this, "CreateCaseCommand");
|
|
1984
|
+
}
|
|
1952
1985
|
};
|
|
1953
|
-
__name(_CreateCaseCommand, "CreateCaseCommand");
|
|
1954
|
-
var CreateCaseCommand = _CreateCaseCommand;
|
|
1955
1986
|
|
|
1956
1987
|
// src/commands/CreateDomainCommand.ts
|
|
1957
1988
|
|
|
1958
1989
|
|
|
1959
1990
|
|
|
1960
|
-
var
|
|
1991
|
+
var CreateDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1961
1992
|
return [
|
|
1962
1993
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1963
1994
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1964
1995
|
];
|
|
1965
1996
|
}).s("AmazonConnectCases", "CreateDomain", {}).n("ConnectCasesClient", "CreateDomainCommand").f(void 0, void 0).ser(se_CreateDomainCommand).de(de_CreateDomainCommand).build() {
|
|
1997
|
+
static {
|
|
1998
|
+
__name(this, "CreateDomainCommand");
|
|
1999
|
+
}
|
|
1966
2000
|
};
|
|
1967
|
-
__name(_CreateDomainCommand, "CreateDomainCommand");
|
|
1968
|
-
var CreateDomainCommand = _CreateDomainCommand;
|
|
1969
2001
|
|
|
1970
2002
|
// src/commands/CreateFieldCommand.ts
|
|
1971
2003
|
|
|
1972
2004
|
|
|
1973
2005
|
|
|
1974
|
-
var
|
|
2006
|
+
var CreateFieldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1975
2007
|
return [
|
|
1976
2008
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1977
2009
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1978
2010
|
];
|
|
1979
2011
|
}).s("AmazonConnectCases", "CreateField", {}).n("ConnectCasesClient", "CreateFieldCommand").f(void 0, void 0).ser(se_CreateFieldCommand).de(de_CreateFieldCommand).build() {
|
|
2012
|
+
static {
|
|
2013
|
+
__name(this, "CreateFieldCommand");
|
|
2014
|
+
}
|
|
1980
2015
|
};
|
|
1981
|
-
__name(_CreateFieldCommand, "CreateFieldCommand");
|
|
1982
|
-
var CreateFieldCommand = _CreateFieldCommand;
|
|
1983
2016
|
|
|
1984
2017
|
// src/commands/CreateLayoutCommand.ts
|
|
1985
2018
|
|
|
1986
2019
|
|
|
1987
2020
|
|
|
1988
|
-
var
|
|
2021
|
+
var CreateLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1989
2022
|
return [
|
|
1990
2023
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1991
2024
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1992
2025
|
];
|
|
1993
2026
|
}).s("AmazonConnectCases", "CreateLayout", {}).n("ConnectCasesClient", "CreateLayoutCommand").f(void 0, void 0).ser(se_CreateLayoutCommand).de(de_CreateLayoutCommand).build() {
|
|
2027
|
+
static {
|
|
2028
|
+
__name(this, "CreateLayoutCommand");
|
|
2029
|
+
}
|
|
1994
2030
|
};
|
|
1995
|
-
__name(_CreateLayoutCommand, "CreateLayoutCommand");
|
|
1996
|
-
var CreateLayoutCommand = _CreateLayoutCommand;
|
|
1997
2031
|
|
|
1998
2032
|
// src/commands/CreateRelatedItemCommand.ts
|
|
1999
2033
|
|
|
2000
2034
|
|
|
2001
2035
|
|
|
2002
|
-
var
|
|
2036
|
+
var CreateRelatedItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2003
2037
|
return [
|
|
2004
2038
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2005
2039
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2006
2040
|
];
|
|
2007
2041
|
}).s("AmazonConnectCases", "CreateRelatedItem", {}).n("ConnectCasesClient", "CreateRelatedItemCommand").f(void 0, void 0).ser(se_CreateRelatedItemCommand).de(de_CreateRelatedItemCommand).build() {
|
|
2042
|
+
static {
|
|
2043
|
+
__name(this, "CreateRelatedItemCommand");
|
|
2044
|
+
}
|
|
2008
2045
|
};
|
|
2009
|
-
__name(_CreateRelatedItemCommand, "CreateRelatedItemCommand");
|
|
2010
|
-
var CreateRelatedItemCommand = _CreateRelatedItemCommand;
|
|
2011
2046
|
|
|
2012
2047
|
// src/commands/CreateTemplateCommand.ts
|
|
2013
2048
|
|
|
2014
2049
|
|
|
2015
2050
|
|
|
2016
|
-
var
|
|
2051
|
+
var CreateTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2017
2052
|
return [
|
|
2018
2053
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2019
2054
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2020
2055
|
];
|
|
2021
2056
|
}).s("AmazonConnectCases", "CreateTemplate", {}).n("ConnectCasesClient", "CreateTemplateCommand").f(void 0, void 0).ser(se_CreateTemplateCommand).de(de_CreateTemplateCommand).build() {
|
|
2057
|
+
static {
|
|
2058
|
+
__name(this, "CreateTemplateCommand");
|
|
2059
|
+
}
|
|
2022
2060
|
};
|
|
2023
|
-
__name(_CreateTemplateCommand, "CreateTemplateCommand");
|
|
2024
|
-
var CreateTemplateCommand = _CreateTemplateCommand;
|
|
2025
2061
|
|
|
2026
2062
|
// src/commands/DeleteDomainCommand.ts
|
|
2027
2063
|
|
|
2028
2064
|
|
|
2029
2065
|
|
|
2030
|
-
var
|
|
2066
|
+
var DeleteDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2031
2067
|
return [
|
|
2032
2068
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2033
2069
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2034
2070
|
];
|
|
2035
2071
|
}).s("AmazonConnectCases", "DeleteDomain", {}).n("ConnectCasesClient", "DeleteDomainCommand").f(void 0, void 0).ser(se_DeleteDomainCommand).de(de_DeleteDomainCommand).build() {
|
|
2072
|
+
static {
|
|
2073
|
+
__name(this, "DeleteDomainCommand");
|
|
2074
|
+
}
|
|
2036
2075
|
};
|
|
2037
|
-
__name(_DeleteDomainCommand, "DeleteDomainCommand");
|
|
2038
|
-
var DeleteDomainCommand = _DeleteDomainCommand;
|
|
2039
2076
|
|
|
2040
2077
|
// src/commands/DeleteFieldCommand.ts
|
|
2041
2078
|
|
|
2042
2079
|
|
|
2043
2080
|
|
|
2044
|
-
var
|
|
2081
|
+
var DeleteFieldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2045
2082
|
return [
|
|
2046
2083
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2047
2084
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2048
2085
|
];
|
|
2049
2086
|
}).s("AmazonConnectCases", "DeleteField", {}).n("ConnectCasesClient", "DeleteFieldCommand").f(void 0, void 0).ser(se_DeleteFieldCommand).de(de_DeleteFieldCommand).build() {
|
|
2087
|
+
static {
|
|
2088
|
+
__name(this, "DeleteFieldCommand");
|
|
2089
|
+
}
|
|
2050
2090
|
};
|
|
2051
|
-
__name(_DeleteFieldCommand, "DeleteFieldCommand");
|
|
2052
|
-
var DeleteFieldCommand = _DeleteFieldCommand;
|
|
2053
2091
|
|
|
2054
2092
|
// src/commands/DeleteLayoutCommand.ts
|
|
2055
2093
|
|
|
2056
2094
|
|
|
2057
2095
|
|
|
2058
|
-
var
|
|
2096
|
+
var DeleteLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2059
2097
|
return [
|
|
2060
2098
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2061
2099
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2062
2100
|
];
|
|
2063
2101
|
}).s("AmazonConnectCases", "DeleteLayout", {}).n("ConnectCasesClient", "DeleteLayoutCommand").f(void 0, void 0).ser(se_DeleteLayoutCommand).de(de_DeleteLayoutCommand).build() {
|
|
2102
|
+
static {
|
|
2103
|
+
__name(this, "DeleteLayoutCommand");
|
|
2104
|
+
}
|
|
2064
2105
|
};
|
|
2065
|
-
__name(_DeleteLayoutCommand, "DeleteLayoutCommand");
|
|
2066
|
-
var DeleteLayoutCommand = _DeleteLayoutCommand;
|
|
2067
2106
|
|
|
2068
2107
|
// src/commands/DeleteTemplateCommand.ts
|
|
2069
2108
|
|
|
2070
2109
|
|
|
2071
2110
|
|
|
2072
|
-
var
|
|
2111
|
+
var DeleteTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2073
2112
|
return [
|
|
2074
2113
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2075
2114
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2076
2115
|
];
|
|
2077
2116
|
}).s("AmazonConnectCases", "DeleteTemplate", {}).n("ConnectCasesClient", "DeleteTemplateCommand").f(void 0, void 0).ser(se_DeleteTemplateCommand).de(de_DeleteTemplateCommand).build() {
|
|
2117
|
+
static {
|
|
2118
|
+
__name(this, "DeleteTemplateCommand");
|
|
2119
|
+
}
|
|
2078
2120
|
};
|
|
2079
|
-
__name(_DeleteTemplateCommand, "DeleteTemplateCommand");
|
|
2080
|
-
var DeleteTemplateCommand = _DeleteTemplateCommand;
|
|
2081
2121
|
|
|
2082
2122
|
// src/commands/GetCaseAuditEventsCommand.ts
|
|
2083
2123
|
|
|
2084
2124
|
|
|
2085
2125
|
|
|
2086
|
-
var
|
|
2126
|
+
var GetCaseAuditEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2087
2127
|
return [
|
|
2088
2128
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2089
2129
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2090
2130
|
];
|
|
2091
2131
|
}).s("AmazonConnectCases", "GetCaseAuditEvents", {}).n("ConnectCasesClient", "GetCaseAuditEventsCommand").f(void 0, void 0).ser(se_GetCaseAuditEventsCommand).de(de_GetCaseAuditEventsCommand).build() {
|
|
2132
|
+
static {
|
|
2133
|
+
__name(this, "GetCaseAuditEventsCommand");
|
|
2134
|
+
}
|
|
2092
2135
|
};
|
|
2093
|
-
__name(_GetCaseAuditEventsCommand, "GetCaseAuditEventsCommand");
|
|
2094
|
-
var GetCaseAuditEventsCommand = _GetCaseAuditEventsCommand;
|
|
2095
2136
|
|
|
2096
2137
|
// src/commands/GetCaseCommand.ts
|
|
2097
2138
|
|
|
2098
2139
|
|
|
2099
2140
|
|
|
2100
|
-
var
|
|
2141
|
+
var GetCaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2101
2142
|
return [
|
|
2102
2143
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2103
2144
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2104
2145
|
];
|
|
2105
2146
|
}).s("AmazonConnectCases", "GetCase", {}).n("ConnectCasesClient", "GetCaseCommand").f(void 0, void 0).ser(se_GetCaseCommand).de(de_GetCaseCommand).build() {
|
|
2147
|
+
static {
|
|
2148
|
+
__name(this, "GetCaseCommand");
|
|
2149
|
+
}
|
|
2106
2150
|
};
|
|
2107
|
-
__name(_GetCaseCommand, "GetCaseCommand");
|
|
2108
|
-
var GetCaseCommand = _GetCaseCommand;
|
|
2109
2151
|
|
|
2110
2152
|
// src/commands/GetCaseEventConfigurationCommand.ts
|
|
2111
2153
|
|
|
2112
2154
|
|
|
2113
2155
|
|
|
2114
|
-
var
|
|
2156
|
+
var GetCaseEventConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2115
2157
|
return [
|
|
2116
2158
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2117
2159
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2118
2160
|
];
|
|
2119
2161
|
}).s("AmazonConnectCases", "GetCaseEventConfiguration", {}).n("ConnectCasesClient", "GetCaseEventConfigurationCommand").f(void 0, void 0).ser(se_GetCaseEventConfigurationCommand).de(de_GetCaseEventConfigurationCommand).build() {
|
|
2162
|
+
static {
|
|
2163
|
+
__name(this, "GetCaseEventConfigurationCommand");
|
|
2164
|
+
}
|
|
2120
2165
|
};
|
|
2121
|
-
__name(_GetCaseEventConfigurationCommand, "GetCaseEventConfigurationCommand");
|
|
2122
|
-
var GetCaseEventConfigurationCommand = _GetCaseEventConfigurationCommand;
|
|
2123
2166
|
|
|
2124
2167
|
// src/commands/GetDomainCommand.ts
|
|
2125
2168
|
|
|
2126
2169
|
|
|
2127
2170
|
|
|
2128
|
-
var
|
|
2171
|
+
var GetDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2129
2172
|
return [
|
|
2130
2173
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2131
2174
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2132
2175
|
];
|
|
2133
2176
|
}).s("AmazonConnectCases", "GetDomain", {}).n("ConnectCasesClient", "GetDomainCommand").f(void 0, void 0).ser(se_GetDomainCommand).de(de_GetDomainCommand).build() {
|
|
2177
|
+
static {
|
|
2178
|
+
__name(this, "GetDomainCommand");
|
|
2179
|
+
}
|
|
2134
2180
|
};
|
|
2135
|
-
__name(_GetDomainCommand, "GetDomainCommand");
|
|
2136
|
-
var GetDomainCommand = _GetDomainCommand;
|
|
2137
2181
|
|
|
2138
2182
|
// src/commands/GetLayoutCommand.ts
|
|
2139
2183
|
|
|
2140
2184
|
|
|
2141
2185
|
|
|
2142
|
-
var
|
|
2186
|
+
var GetLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2143
2187
|
return [
|
|
2144
2188
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2145
2189
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2146
2190
|
];
|
|
2147
2191
|
}).s("AmazonConnectCases", "GetLayout", {}).n("ConnectCasesClient", "GetLayoutCommand").f(void 0, void 0).ser(se_GetLayoutCommand).de(de_GetLayoutCommand).build() {
|
|
2192
|
+
static {
|
|
2193
|
+
__name(this, "GetLayoutCommand");
|
|
2194
|
+
}
|
|
2148
2195
|
};
|
|
2149
|
-
__name(_GetLayoutCommand, "GetLayoutCommand");
|
|
2150
|
-
var GetLayoutCommand = _GetLayoutCommand;
|
|
2151
2196
|
|
|
2152
2197
|
// src/commands/GetTemplateCommand.ts
|
|
2153
2198
|
|
|
2154
2199
|
|
|
2155
2200
|
|
|
2156
|
-
var
|
|
2201
|
+
var GetTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2157
2202
|
return [
|
|
2158
2203
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2159
2204
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2160
2205
|
];
|
|
2161
2206
|
}).s("AmazonConnectCases", "GetTemplate", {}).n("ConnectCasesClient", "GetTemplateCommand").f(void 0, void 0).ser(se_GetTemplateCommand).de(de_GetTemplateCommand).build() {
|
|
2207
|
+
static {
|
|
2208
|
+
__name(this, "GetTemplateCommand");
|
|
2209
|
+
}
|
|
2162
2210
|
};
|
|
2163
|
-
__name(_GetTemplateCommand, "GetTemplateCommand");
|
|
2164
|
-
var GetTemplateCommand = _GetTemplateCommand;
|
|
2165
2211
|
|
|
2166
2212
|
// src/commands/ListCasesForContactCommand.ts
|
|
2167
2213
|
|
|
2168
2214
|
|
|
2169
2215
|
|
|
2170
|
-
var
|
|
2216
|
+
var ListCasesForContactCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2171
2217
|
return [
|
|
2172
2218
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2173
2219
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2174
2220
|
];
|
|
2175
2221
|
}).s("AmazonConnectCases", "ListCasesForContact", {}).n("ConnectCasesClient", "ListCasesForContactCommand").f(void 0, void 0).ser(se_ListCasesForContactCommand).de(de_ListCasesForContactCommand).build() {
|
|
2222
|
+
static {
|
|
2223
|
+
__name(this, "ListCasesForContactCommand");
|
|
2224
|
+
}
|
|
2176
2225
|
};
|
|
2177
|
-
__name(_ListCasesForContactCommand, "ListCasesForContactCommand");
|
|
2178
|
-
var ListCasesForContactCommand = _ListCasesForContactCommand;
|
|
2179
2226
|
|
|
2180
2227
|
// src/commands/ListDomainsCommand.ts
|
|
2181
2228
|
|
|
2182
2229
|
|
|
2183
2230
|
|
|
2184
|
-
var
|
|
2231
|
+
var ListDomainsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2185
2232
|
return [
|
|
2186
2233
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2187
2234
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2188
2235
|
];
|
|
2189
2236
|
}).s("AmazonConnectCases", "ListDomains", {}).n("ConnectCasesClient", "ListDomainsCommand").f(void 0, void 0).ser(se_ListDomainsCommand).de(de_ListDomainsCommand).build() {
|
|
2237
|
+
static {
|
|
2238
|
+
__name(this, "ListDomainsCommand");
|
|
2239
|
+
}
|
|
2190
2240
|
};
|
|
2191
|
-
__name(_ListDomainsCommand, "ListDomainsCommand");
|
|
2192
|
-
var ListDomainsCommand = _ListDomainsCommand;
|
|
2193
2241
|
|
|
2194
2242
|
// src/commands/ListFieldOptionsCommand.ts
|
|
2195
2243
|
|
|
2196
2244
|
|
|
2197
2245
|
|
|
2198
|
-
var
|
|
2246
|
+
var ListFieldOptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2199
2247
|
return [
|
|
2200
2248
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2201
2249
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2202
2250
|
];
|
|
2203
2251
|
}).s("AmazonConnectCases", "ListFieldOptions", {}).n("ConnectCasesClient", "ListFieldOptionsCommand").f(void 0, void 0).ser(se_ListFieldOptionsCommand).de(de_ListFieldOptionsCommand).build() {
|
|
2252
|
+
static {
|
|
2253
|
+
__name(this, "ListFieldOptionsCommand");
|
|
2254
|
+
}
|
|
2204
2255
|
};
|
|
2205
|
-
__name(_ListFieldOptionsCommand, "ListFieldOptionsCommand");
|
|
2206
|
-
var ListFieldOptionsCommand = _ListFieldOptionsCommand;
|
|
2207
2256
|
|
|
2208
2257
|
// src/commands/ListFieldsCommand.ts
|
|
2209
2258
|
|
|
2210
2259
|
|
|
2211
2260
|
|
|
2212
|
-
var
|
|
2261
|
+
var ListFieldsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2213
2262
|
return [
|
|
2214
2263
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2215
2264
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2216
2265
|
];
|
|
2217
2266
|
}).s("AmazonConnectCases", "ListFields", {}).n("ConnectCasesClient", "ListFieldsCommand").f(void 0, void 0).ser(se_ListFieldsCommand).de(de_ListFieldsCommand).build() {
|
|
2267
|
+
static {
|
|
2268
|
+
__name(this, "ListFieldsCommand");
|
|
2269
|
+
}
|
|
2218
2270
|
};
|
|
2219
|
-
__name(_ListFieldsCommand, "ListFieldsCommand");
|
|
2220
|
-
var ListFieldsCommand = _ListFieldsCommand;
|
|
2221
2271
|
|
|
2222
2272
|
// src/commands/ListLayoutsCommand.ts
|
|
2223
2273
|
|
|
2224
2274
|
|
|
2225
2275
|
|
|
2226
|
-
var
|
|
2276
|
+
var ListLayoutsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2227
2277
|
return [
|
|
2228
2278
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2229
2279
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2230
2280
|
];
|
|
2231
2281
|
}).s("AmazonConnectCases", "ListLayouts", {}).n("ConnectCasesClient", "ListLayoutsCommand").f(void 0, void 0).ser(se_ListLayoutsCommand).de(de_ListLayoutsCommand).build() {
|
|
2282
|
+
static {
|
|
2283
|
+
__name(this, "ListLayoutsCommand");
|
|
2284
|
+
}
|
|
2232
2285
|
};
|
|
2233
|
-
__name(_ListLayoutsCommand, "ListLayoutsCommand");
|
|
2234
|
-
var ListLayoutsCommand = _ListLayoutsCommand;
|
|
2235
2286
|
|
|
2236
2287
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2237
2288
|
|
|
2238
2289
|
|
|
2239
2290
|
|
|
2240
|
-
var
|
|
2291
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2241
2292
|
return [
|
|
2242
2293
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2243
2294
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2244
2295
|
];
|
|
2245
2296
|
}).s("AmazonConnectCases", "ListTagsForResource", {}).n("ConnectCasesClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2297
|
+
static {
|
|
2298
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2299
|
+
}
|
|
2246
2300
|
};
|
|
2247
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2248
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2249
2301
|
|
|
2250
2302
|
// src/commands/ListTemplatesCommand.ts
|
|
2251
2303
|
|
|
2252
2304
|
|
|
2253
2305
|
|
|
2254
|
-
var
|
|
2306
|
+
var ListTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2255
2307
|
return [
|
|
2256
2308
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2257
2309
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2258
2310
|
];
|
|
2259
2311
|
}).s("AmazonConnectCases", "ListTemplates", {}).n("ConnectCasesClient", "ListTemplatesCommand").f(void 0, void 0).ser(se_ListTemplatesCommand).de(de_ListTemplatesCommand).build() {
|
|
2312
|
+
static {
|
|
2313
|
+
__name(this, "ListTemplatesCommand");
|
|
2314
|
+
}
|
|
2260
2315
|
};
|
|
2261
|
-
__name(_ListTemplatesCommand, "ListTemplatesCommand");
|
|
2262
|
-
var ListTemplatesCommand = _ListTemplatesCommand;
|
|
2263
2316
|
|
|
2264
2317
|
// src/commands/PutCaseEventConfigurationCommand.ts
|
|
2265
2318
|
|
|
2266
2319
|
|
|
2267
2320
|
|
|
2268
|
-
var
|
|
2321
|
+
var PutCaseEventConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2269
2322
|
return [
|
|
2270
2323
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2271
2324
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2272
2325
|
];
|
|
2273
2326
|
}).s("AmazonConnectCases", "PutCaseEventConfiguration", {}).n("ConnectCasesClient", "PutCaseEventConfigurationCommand").f(void 0, void 0).ser(se_PutCaseEventConfigurationCommand).de(de_PutCaseEventConfigurationCommand).build() {
|
|
2327
|
+
static {
|
|
2328
|
+
__name(this, "PutCaseEventConfigurationCommand");
|
|
2329
|
+
}
|
|
2274
2330
|
};
|
|
2275
|
-
__name(_PutCaseEventConfigurationCommand, "PutCaseEventConfigurationCommand");
|
|
2276
|
-
var PutCaseEventConfigurationCommand = _PutCaseEventConfigurationCommand;
|
|
2277
2331
|
|
|
2278
2332
|
// src/commands/SearchCasesCommand.ts
|
|
2279
2333
|
|
|
2280
2334
|
|
|
2281
2335
|
|
|
2282
|
-
var
|
|
2336
|
+
var SearchCasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2283
2337
|
return [
|
|
2284
2338
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2285
2339
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2286
2340
|
];
|
|
2287
2341
|
}).s("AmazonConnectCases", "SearchCases", {}).n("ConnectCasesClient", "SearchCasesCommand").f(void 0, void 0).ser(se_SearchCasesCommand).de(de_SearchCasesCommand).build() {
|
|
2342
|
+
static {
|
|
2343
|
+
__name(this, "SearchCasesCommand");
|
|
2344
|
+
}
|
|
2288
2345
|
};
|
|
2289
|
-
__name(_SearchCasesCommand, "SearchCasesCommand");
|
|
2290
|
-
var SearchCasesCommand = _SearchCasesCommand;
|
|
2291
2346
|
|
|
2292
2347
|
// src/commands/SearchRelatedItemsCommand.ts
|
|
2293
2348
|
|
|
2294
2349
|
|
|
2295
2350
|
|
|
2296
|
-
var
|
|
2351
|
+
var SearchRelatedItemsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2297
2352
|
return [
|
|
2298
2353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2299
2354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2300
2355
|
];
|
|
2301
2356
|
}).s("AmazonConnectCases", "SearchRelatedItems", {}).n("ConnectCasesClient", "SearchRelatedItemsCommand").f(void 0, void 0).ser(se_SearchRelatedItemsCommand).de(de_SearchRelatedItemsCommand).build() {
|
|
2357
|
+
static {
|
|
2358
|
+
__name(this, "SearchRelatedItemsCommand");
|
|
2359
|
+
}
|
|
2302
2360
|
};
|
|
2303
|
-
__name(_SearchRelatedItemsCommand, "SearchRelatedItemsCommand");
|
|
2304
|
-
var SearchRelatedItemsCommand = _SearchRelatedItemsCommand;
|
|
2305
2361
|
|
|
2306
2362
|
// src/commands/TagResourceCommand.ts
|
|
2307
2363
|
|
|
2308
2364
|
|
|
2309
2365
|
|
|
2310
|
-
var
|
|
2366
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2311
2367
|
return [
|
|
2312
2368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2313
2369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2314
2370
|
];
|
|
2315
2371
|
}).s("AmazonConnectCases", "TagResource", {}).n("ConnectCasesClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2372
|
+
static {
|
|
2373
|
+
__name(this, "TagResourceCommand");
|
|
2374
|
+
}
|
|
2316
2375
|
};
|
|
2317
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2318
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2319
2376
|
|
|
2320
2377
|
// src/commands/UntagResourceCommand.ts
|
|
2321
2378
|
|
|
2322
2379
|
|
|
2323
2380
|
|
|
2324
|
-
var
|
|
2381
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2325
2382
|
return [
|
|
2326
2383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2327
2384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2328
2385
|
];
|
|
2329
2386
|
}).s("AmazonConnectCases", "UntagResource", {}).n("ConnectCasesClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2387
|
+
static {
|
|
2388
|
+
__name(this, "UntagResourceCommand");
|
|
2389
|
+
}
|
|
2330
2390
|
};
|
|
2331
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2332
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2333
2391
|
|
|
2334
2392
|
// src/commands/UpdateCaseCommand.ts
|
|
2335
2393
|
|
|
2336
2394
|
|
|
2337
2395
|
|
|
2338
|
-
var
|
|
2396
|
+
var UpdateCaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2339
2397
|
return [
|
|
2340
2398
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2341
2399
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2342
2400
|
];
|
|
2343
2401
|
}).s("AmazonConnectCases", "UpdateCase", {}).n("ConnectCasesClient", "UpdateCaseCommand").f(void 0, void 0).ser(se_UpdateCaseCommand).de(de_UpdateCaseCommand).build() {
|
|
2402
|
+
static {
|
|
2403
|
+
__name(this, "UpdateCaseCommand");
|
|
2404
|
+
}
|
|
2344
2405
|
};
|
|
2345
|
-
__name(_UpdateCaseCommand, "UpdateCaseCommand");
|
|
2346
|
-
var UpdateCaseCommand = _UpdateCaseCommand;
|
|
2347
2406
|
|
|
2348
2407
|
// src/commands/UpdateFieldCommand.ts
|
|
2349
2408
|
|
|
2350
2409
|
|
|
2351
2410
|
|
|
2352
|
-
var
|
|
2411
|
+
var UpdateFieldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2353
2412
|
return [
|
|
2354
2413
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2355
2414
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2356
2415
|
];
|
|
2357
2416
|
}).s("AmazonConnectCases", "UpdateField", {}).n("ConnectCasesClient", "UpdateFieldCommand").f(void 0, void 0).ser(se_UpdateFieldCommand).de(de_UpdateFieldCommand).build() {
|
|
2417
|
+
static {
|
|
2418
|
+
__name(this, "UpdateFieldCommand");
|
|
2419
|
+
}
|
|
2358
2420
|
};
|
|
2359
|
-
__name(_UpdateFieldCommand, "UpdateFieldCommand");
|
|
2360
|
-
var UpdateFieldCommand = _UpdateFieldCommand;
|
|
2361
2421
|
|
|
2362
2422
|
// src/commands/UpdateLayoutCommand.ts
|
|
2363
2423
|
|
|
2364
2424
|
|
|
2365
2425
|
|
|
2366
|
-
var
|
|
2426
|
+
var UpdateLayoutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2367
2427
|
return [
|
|
2368
2428
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2369
2429
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2370
2430
|
];
|
|
2371
2431
|
}).s("AmazonConnectCases", "UpdateLayout", {}).n("ConnectCasesClient", "UpdateLayoutCommand").f(void 0, void 0).ser(se_UpdateLayoutCommand).de(de_UpdateLayoutCommand).build() {
|
|
2432
|
+
static {
|
|
2433
|
+
__name(this, "UpdateLayoutCommand");
|
|
2434
|
+
}
|
|
2372
2435
|
};
|
|
2373
|
-
__name(_UpdateLayoutCommand, "UpdateLayoutCommand");
|
|
2374
|
-
var UpdateLayoutCommand = _UpdateLayoutCommand;
|
|
2375
2436
|
|
|
2376
2437
|
// src/commands/UpdateTemplateCommand.ts
|
|
2377
2438
|
|
|
2378
2439
|
|
|
2379
2440
|
|
|
2380
|
-
var
|
|
2441
|
+
var UpdateTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2381
2442
|
return [
|
|
2382
2443
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2383
2444
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2384
2445
|
];
|
|
2385
2446
|
}).s("AmazonConnectCases", "UpdateTemplate", {}).n("ConnectCasesClient", "UpdateTemplateCommand").f(void 0, void 0).ser(se_UpdateTemplateCommand).de(de_UpdateTemplateCommand).build() {
|
|
2447
|
+
static {
|
|
2448
|
+
__name(this, "UpdateTemplateCommand");
|
|
2449
|
+
}
|
|
2386
2450
|
};
|
|
2387
|
-
__name(_UpdateTemplateCommand, "UpdateTemplateCommand");
|
|
2388
|
-
var UpdateTemplateCommand = _UpdateTemplateCommand;
|
|
2389
2451
|
|
|
2390
2452
|
// src/ConnectCases.ts
|
|
2391
2453
|
var commands = {
|
|
@@ -2424,10 +2486,11 @@ var commands = {
|
|
|
2424
2486
|
UpdateLayoutCommand,
|
|
2425
2487
|
UpdateTemplateCommand
|
|
2426
2488
|
};
|
|
2427
|
-
var
|
|
2489
|
+
var ConnectCases = class extends ConnectCasesClient {
|
|
2490
|
+
static {
|
|
2491
|
+
__name(this, "ConnectCases");
|
|
2492
|
+
}
|
|
2428
2493
|
};
|
|
2429
|
-
__name(_ConnectCases, "ConnectCases");
|
|
2430
|
-
var ConnectCases = _ConnectCases;
|
|
2431
2494
|
(0, import_smithy_client.createAggregatedClient)(commands, ConnectCases);
|
|
2432
2495
|
|
|
2433
2496
|
// src/pagination/GetCaseAuditEventsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class ConnectCasesClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { ConnectCasesServiceException as __BaseException } from "./ConnectCasesServiceException";
|
|
2
2
|
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "AccessDeniedException",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "AccessDeniedException";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export class ConflictException extends __BaseException {
|
|
15
|
+
name = "ConflictException";
|
|
16
|
+
$fault = "client";
|
|
15
17
|
constructor(opts) {
|
|
16
18
|
super({
|
|
17
19
|
name: "ConflictException",
|
|
18
20
|
$fault: "client",
|
|
19
21
|
...opts,
|
|
20
22
|
});
|
|
21
|
-
this.name = "ConflictException";
|
|
22
|
-
this.$fault = "client";
|
|
23
23
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -48,55 +48,58 @@ export var UserUnion;
|
|
|
48
48
|
};
|
|
49
49
|
})(UserUnion || (UserUnion = {}));
|
|
50
50
|
export class InternalServerException extends __BaseException {
|
|
51
|
+
name = "InternalServerException";
|
|
52
|
+
$fault = "server";
|
|
53
|
+
$retryable = {};
|
|
54
|
+
retryAfterSeconds;
|
|
51
55
|
constructor(opts) {
|
|
52
56
|
super({
|
|
53
57
|
name: "InternalServerException",
|
|
54
58
|
$fault: "server",
|
|
55
59
|
...opts,
|
|
56
60
|
});
|
|
57
|
-
this.name = "InternalServerException";
|
|
58
|
-
this.$fault = "server";
|
|
59
|
-
this.$retryable = {};
|
|
60
61
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
61
62
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
62
63
|
}
|
|
63
64
|
}
|
|
64
65
|
export class ResourceNotFoundException extends __BaseException {
|
|
66
|
+
name = "ResourceNotFoundException";
|
|
67
|
+
$fault = "client";
|
|
68
|
+
resourceId;
|
|
69
|
+
resourceType;
|
|
65
70
|
constructor(opts) {
|
|
66
71
|
super({
|
|
67
72
|
name: "ResourceNotFoundException",
|
|
68
73
|
$fault: "client",
|
|
69
74
|
...opts,
|
|
70
75
|
});
|
|
71
|
-
this.name = "ResourceNotFoundException";
|
|
72
|
-
this.$fault = "client";
|
|
73
76
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
74
77
|
this.resourceId = opts.resourceId;
|
|
75
78
|
this.resourceType = opts.resourceType;
|
|
76
79
|
}
|
|
77
80
|
}
|
|
78
81
|
export class ThrottlingException extends __BaseException {
|
|
82
|
+
name = "ThrottlingException";
|
|
83
|
+
$fault = "client";
|
|
84
|
+
$retryable = {};
|
|
79
85
|
constructor(opts) {
|
|
80
86
|
super({
|
|
81
87
|
name: "ThrottlingException",
|
|
82
88
|
$fault: "client",
|
|
83
89
|
...opts,
|
|
84
90
|
});
|
|
85
|
-
this.name = "ThrottlingException";
|
|
86
|
-
this.$fault = "client";
|
|
87
|
-
this.$retryable = {};
|
|
88
91
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
89
92
|
}
|
|
90
93
|
}
|
|
91
94
|
export class ValidationException extends __BaseException {
|
|
95
|
+
name = "ValidationException";
|
|
96
|
+
$fault = "client";
|
|
92
97
|
constructor(opts) {
|
|
93
98
|
super({
|
|
94
99
|
name: "ValidationException",
|
|
95
100
|
$fault: "client",
|
|
96
101
|
...opts,
|
|
97
102
|
});
|
|
98
|
-
this.name = "ValidationException";
|
|
99
|
-
this.$fault = "client";
|
|
100
103
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
101
104
|
}
|
|
102
105
|
}
|
|
@@ -142,14 +145,14 @@ export var RelatedItemInputContent;
|
|
|
142
145
|
};
|
|
143
146
|
})(RelatedItemInputContent || (RelatedItemInputContent = {}));
|
|
144
147
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
148
|
+
name = "ServiceQuotaExceededException";
|
|
149
|
+
$fault = "client";
|
|
145
150
|
constructor(opts) {
|
|
146
151
|
super({
|
|
147
152
|
name: "ServiceQuotaExceededException",
|
|
148
153
|
$fault: "client",
|
|
149
154
|
...opts,
|
|
150
155
|
});
|
|
151
|
-
this.name = "ServiceQuotaExceededException";
|
|
152
|
-
this.$fault = "client";
|
|
153
156
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
154
157
|
}
|
|
155
158
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: ConnectCasesClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.723.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-connectcases",
|
|
@@ -20,58 +20,58 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|