@aws-sdk/client-connectcases 3.976.0 → 3.978.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 +39 -25
- package/dist-es/ConnectCases.js +27 -1
- package/dist-types/ConnectCases.d.ts +85 -1
- package/dist-types/ts3.4/ConnectCases.d.ts +89 -1
- package/package.json +9 -9
package/dist-cjs/index.js
CHANGED
|
@@ -2187,6 +2187,30 @@ class UpdateTemplateCommand extends smithyClient.Command
|
|
|
2187
2187
|
.build() {
|
|
2188
2188
|
}
|
|
2189
2189
|
|
|
2190
|
+
const paginateGetCaseAuditEvents = core.createPaginator(ConnectCasesClient, GetCaseAuditEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
2191
|
+
|
|
2192
|
+
const paginateGetCase = core.createPaginator(ConnectCasesClient, GetCaseCommand, "nextToken", "nextToken", "");
|
|
2193
|
+
|
|
2194
|
+
const paginateListCaseRules = core.createPaginator(ConnectCasesClient, ListCaseRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
2195
|
+
|
|
2196
|
+
const paginateListCasesForContact = core.createPaginator(ConnectCasesClient, ListCasesForContactCommand, "nextToken", "nextToken", "maxResults");
|
|
2197
|
+
|
|
2198
|
+
const paginateListDomains = core.createPaginator(ConnectCasesClient, ListDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
2199
|
+
|
|
2200
|
+
const paginateListFieldOptions = core.createPaginator(ConnectCasesClient, ListFieldOptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2201
|
+
|
|
2202
|
+
const paginateListFields = core.createPaginator(ConnectCasesClient, ListFieldsCommand, "nextToken", "nextToken", "maxResults");
|
|
2203
|
+
|
|
2204
|
+
const paginateListLayouts = core.createPaginator(ConnectCasesClient, ListLayoutsCommand, "nextToken", "nextToken", "maxResults");
|
|
2205
|
+
|
|
2206
|
+
const paginateListTemplates = core.createPaginator(ConnectCasesClient, ListTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2207
|
+
|
|
2208
|
+
const paginateSearchAllRelatedItems = core.createPaginator(ConnectCasesClient, SearchAllRelatedItemsCommand, "nextToken", "nextToken", "maxResults");
|
|
2209
|
+
|
|
2210
|
+
const paginateSearchCases = core.createPaginator(ConnectCasesClient, SearchCasesCommand, "nextToken", "nextToken", "maxResults");
|
|
2211
|
+
|
|
2212
|
+
const paginateSearchRelatedItems = core.createPaginator(ConnectCasesClient, SearchRelatedItemsCommand, "nextToken", "nextToken", "maxResults");
|
|
2213
|
+
|
|
2190
2214
|
const commands = {
|
|
2191
2215
|
BatchGetCaseRuleCommand,
|
|
2192
2216
|
BatchGetFieldCommand,
|
|
@@ -2231,33 +2255,23 @@ const commands = {
|
|
|
2231
2255
|
UpdateLayoutCommand,
|
|
2232
2256
|
UpdateTemplateCommand,
|
|
2233
2257
|
};
|
|
2258
|
+
const paginators = {
|
|
2259
|
+
paginateGetCase,
|
|
2260
|
+
paginateGetCaseAuditEvents,
|
|
2261
|
+
paginateListCaseRules,
|
|
2262
|
+
paginateListCasesForContact,
|
|
2263
|
+
paginateListDomains,
|
|
2264
|
+
paginateListFieldOptions,
|
|
2265
|
+
paginateListFields,
|
|
2266
|
+
paginateListLayouts,
|
|
2267
|
+
paginateListTemplates,
|
|
2268
|
+
paginateSearchAllRelatedItems,
|
|
2269
|
+
paginateSearchCases,
|
|
2270
|
+
paginateSearchRelatedItems,
|
|
2271
|
+
};
|
|
2234
2272
|
class ConnectCases extends ConnectCasesClient {
|
|
2235
2273
|
}
|
|
2236
|
-
smithyClient.createAggregatedClient(commands, ConnectCases);
|
|
2237
|
-
|
|
2238
|
-
const paginateGetCase = core.createPaginator(ConnectCasesClient, GetCaseCommand, "nextToken", "nextToken", "");
|
|
2239
|
-
|
|
2240
|
-
const paginateGetCaseAuditEvents = core.createPaginator(ConnectCasesClient, GetCaseAuditEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
2241
|
-
|
|
2242
|
-
const paginateListCaseRules = core.createPaginator(ConnectCasesClient, ListCaseRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
2243
|
-
|
|
2244
|
-
const paginateListCasesForContact = core.createPaginator(ConnectCasesClient, ListCasesForContactCommand, "nextToken", "nextToken", "maxResults");
|
|
2245
|
-
|
|
2246
|
-
const paginateListDomains = core.createPaginator(ConnectCasesClient, ListDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
2247
|
-
|
|
2248
|
-
const paginateListFieldOptions = core.createPaginator(ConnectCasesClient, ListFieldOptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2249
|
-
|
|
2250
|
-
const paginateListFields = core.createPaginator(ConnectCasesClient, ListFieldsCommand, "nextToken", "nextToken", "maxResults");
|
|
2251
|
-
|
|
2252
|
-
const paginateListLayouts = core.createPaginator(ConnectCasesClient, ListLayoutsCommand, "nextToken", "nextToken", "maxResults");
|
|
2253
|
-
|
|
2254
|
-
const paginateListTemplates = core.createPaginator(ConnectCasesClient, ListTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2255
|
-
|
|
2256
|
-
const paginateSearchAllRelatedItems = core.createPaginator(ConnectCasesClient, SearchAllRelatedItemsCommand, "nextToken", "nextToken", "maxResults");
|
|
2257
|
-
|
|
2258
|
-
const paginateSearchCases = core.createPaginator(ConnectCasesClient, SearchCasesCommand, "nextToken", "nextToken", "maxResults");
|
|
2259
|
-
|
|
2260
|
-
const paginateSearchRelatedItems = core.createPaginator(ConnectCasesClient, SearchRelatedItemsCommand, "nextToken", "nextToken", "maxResults");
|
|
2274
|
+
smithyClient.createAggregatedClient(commands, ConnectCases, { paginators });
|
|
2261
2275
|
|
|
2262
2276
|
const RelatedItemType = {
|
|
2263
2277
|
COMMENT: "Comment",
|
package/dist-es/ConnectCases.js
CHANGED
|
@@ -42,6 +42,18 @@ import { UpdateFieldCommand } from "./commands/UpdateFieldCommand";
|
|
|
42
42
|
import { UpdateLayoutCommand, } from "./commands/UpdateLayoutCommand";
|
|
43
43
|
import { UpdateTemplateCommand, } from "./commands/UpdateTemplateCommand";
|
|
44
44
|
import { ConnectCasesClient } from "./ConnectCasesClient";
|
|
45
|
+
import { paginateGetCaseAuditEvents } from "./pagination/GetCaseAuditEventsPaginator";
|
|
46
|
+
import { paginateGetCase } from "./pagination/GetCasePaginator";
|
|
47
|
+
import { paginateListCaseRules } from "./pagination/ListCaseRulesPaginator";
|
|
48
|
+
import { paginateListCasesForContact } from "./pagination/ListCasesForContactPaginator";
|
|
49
|
+
import { paginateListDomains } from "./pagination/ListDomainsPaginator";
|
|
50
|
+
import { paginateListFieldOptions } from "./pagination/ListFieldOptionsPaginator";
|
|
51
|
+
import { paginateListFields } from "./pagination/ListFieldsPaginator";
|
|
52
|
+
import { paginateListLayouts } from "./pagination/ListLayoutsPaginator";
|
|
53
|
+
import { paginateListTemplates } from "./pagination/ListTemplatesPaginator";
|
|
54
|
+
import { paginateSearchAllRelatedItems } from "./pagination/SearchAllRelatedItemsPaginator";
|
|
55
|
+
import { paginateSearchCases } from "./pagination/SearchCasesPaginator";
|
|
56
|
+
import { paginateSearchRelatedItems } from "./pagination/SearchRelatedItemsPaginator";
|
|
45
57
|
const commands = {
|
|
46
58
|
BatchGetCaseRuleCommand,
|
|
47
59
|
BatchGetFieldCommand,
|
|
@@ -86,6 +98,20 @@ const commands = {
|
|
|
86
98
|
UpdateLayoutCommand,
|
|
87
99
|
UpdateTemplateCommand,
|
|
88
100
|
};
|
|
101
|
+
const paginators = {
|
|
102
|
+
paginateGetCase,
|
|
103
|
+
paginateGetCaseAuditEvents,
|
|
104
|
+
paginateListCaseRules,
|
|
105
|
+
paginateListCasesForContact,
|
|
106
|
+
paginateListDomains,
|
|
107
|
+
paginateListFieldOptions,
|
|
108
|
+
paginateListFields,
|
|
109
|
+
paginateListLayouts,
|
|
110
|
+
paginateListTemplates,
|
|
111
|
+
paginateSearchAllRelatedItems,
|
|
112
|
+
paginateSearchCases,
|
|
113
|
+
paginateSearchRelatedItems,
|
|
114
|
+
};
|
|
89
115
|
export class ConnectCases extends ConnectCasesClient {
|
|
90
116
|
}
|
|
91
|
-
createAggregatedClient(commands, ConnectCases);
|
|
117
|
+
createAggregatedClient(commands, ConnectCases, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BatchGetCaseRuleCommandInput, BatchGetCaseRuleCommandOutput } from "./commands/BatchGetCaseRuleCommand";
|
|
3
3
|
import { BatchGetFieldCommandInput, BatchGetFieldCommandOutput } from "./commands/BatchGetFieldCommand";
|
|
4
4
|
import { BatchPutFieldOptionsCommandInput, BatchPutFieldOptionsCommandOutput } from "./commands/BatchPutFieldOptionsCommand";
|
|
@@ -296,6 +296,90 @@ export interface ConnectCases {
|
|
|
296
296
|
updateTemplate(args: UpdateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTemplateCommandOutput>;
|
|
297
297
|
updateTemplate(args: UpdateTemplateCommandInput, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
|
|
298
298
|
updateTemplate(args: UpdateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTemplateCommandOutput) => void): void;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link GetCaseCommand}
|
|
301
|
+
* @param args - command input.
|
|
302
|
+
* @param paginationConfig - optional pagination config.
|
|
303
|
+
* @returns AsyncIterable of {@link GetCaseCommandOutput}.
|
|
304
|
+
*/
|
|
305
|
+
paginateGetCase(args: GetCaseCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCaseCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link GetCaseAuditEventsCommand}
|
|
308
|
+
* @param args - command input.
|
|
309
|
+
* @param paginationConfig - optional pagination config.
|
|
310
|
+
* @returns AsyncIterable of {@link GetCaseAuditEventsCommandOutput}.
|
|
311
|
+
*/
|
|
312
|
+
paginateGetCaseAuditEvents(args: GetCaseAuditEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCaseAuditEventsCommandOutput>;
|
|
313
|
+
/**
|
|
314
|
+
* @see {@link ListCaseRulesCommand}
|
|
315
|
+
* @param args - command input.
|
|
316
|
+
* @param paginationConfig - optional pagination config.
|
|
317
|
+
* @returns AsyncIterable of {@link ListCaseRulesCommandOutput}.
|
|
318
|
+
*/
|
|
319
|
+
paginateListCaseRules(args: ListCaseRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCaseRulesCommandOutput>;
|
|
320
|
+
/**
|
|
321
|
+
* @see {@link ListCasesForContactCommand}
|
|
322
|
+
* @param args - command input.
|
|
323
|
+
* @param paginationConfig - optional pagination config.
|
|
324
|
+
* @returns AsyncIterable of {@link ListCasesForContactCommandOutput}.
|
|
325
|
+
*/
|
|
326
|
+
paginateListCasesForContact(args: ListCasesForContactCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCasesForContactCommandOutput>;
|
|
327
|
+
/**
|
|
328
|
+
* @see {@link ListDomainsCommand}
|
|
329
|
+
* @param args - command input.
|
|
330
|
+
* @param paginationConfig - optional pagination config.
|
|
331
|
+
* @returns AsyncIterable of {@link ListDomainsCommandOutput}.
|
|
332
|
+
*/
|
|
333
|
+
paginateListDomains(args?: ListDomainsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDomainsCommandOutput>;
|
|
334
|
+
/**
|
|
335
|
+
* @see {@link ListFieldOptionsCommand}
|
|
336
|
+
* @param args - command input.
|
|
337
|
+
* @param paginationConfig - optional pagination config.
|
|
338
|
+
* @returns AsyncIterable of {@link ListFieldOptionsCommandOutput}.
|
|
339
|
+
*/
|
|
340
|
+
paginateListFieldOptions(args: ListFieldOptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFieldOptionsCommandOutput>;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link ListFieldsCommand}
|
|
343
|
+
* @param args - command input.
|
|
344
|
+
* @param paginationConfig - optional pagination config.
|
|
345
|
+
* @returns AsyncIterable of {@link ListFieldsCommandOutput}.
|
|
346
|
+
*/
|
|
347
|
+
paginateListFields(args: ListFieldsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFieldsCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* @see {@link ListLayoutsCommand}
|
|
350
|
+
* @param args - command input.
|
|
351
|
+
* @param paginationConfig - optional pagination config.
|
|
352
|
+
* @returns AsyncIterable of {@link ListLayoutsCommandOutput}.
|
|
353
|
+
*/
|
|
354
|
+
paginateListLayouts(args: ListLayoutsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLayoutsCommandOutput>;
|
|
355
|
+
/**
|
|
356
|
+
* @see {@link ListTemplatesCommand}
|
|
357
|
+
* @param args - command input.
|
|
358
|
+
* @param paginationConfig - optional pagination config.
|
|
359
|
+
* @returns AsyncIterable of {@link ListTemplatesCommandOutput}.
|
|
360
|
+
*/
|
|
361
|
+
paginateListTemplates(args: ListTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTemplatesCommandOutput>;
|
|
362
|
+
/**
|
|
363
|
+
* @see {@link SearchAllRelatedItemsCommand}
|
|
364
|
+
* @param args - command input.
|
|
365
|
+
* @param paginationConfig - optional pagination config.
|
|
366
|
+
* @returns AsyncIterable of {@link SearchAllRelatedItemsCommandOutput}.
|
|
367
|
+
*/
|
|
368
|
+
paginateSearchAllRelatedItems(args: SearchAllRelatedItemsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchAllRelatedItemsCommandOutput>;
|
|
369
|
+
/**
|
|
370
|
+
* @see {@link SearchCasesCommand}
|
|
371
|
+
* @param args - command input.
|
|
372
|
+
* @param paginationConfig - optional pagination config.
|
|
373
|
+
* @returns AsyncIterable of {@link SearchCasesCommandOutput}.
|
|
374
|
+
*/
|
|
375
|
+
paginateSearchCases(args: SearchCasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchCasesCommandOutput>;
|
|
376
|
+
/**
|
|
377
|
+
* @see {@link SearchRelatedItemsCommand}
|
|
378
|
+
* @param args - command input.
|
|
379
|
+
* @param paginationConfig - optional pagination config.
|
|
380
|
+
* @returns AsyncIterable of {@link SearchRelatedItemsCommandOutput}.
|
|
381
|
+
*/
|
|
382
|
+
paginateSearchRelatedItems(args: SearchRelatedItemsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchRelatedItemsCommandOutput>;
|
|
299
383
|
}
|
|
300
384
|
/**
|
|
301
385
|
* <ul> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Cases.html">Cases actions</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Cases.html">Cases data types</a> </p> </li> </ul> <p>With Amazon Connect Cases, your agents can track and manage customer issues that require multiple interactions, follow-up tasks, and teams in your contact center. A case represents a customer issue. It records the issue, the steps and interactions taken to resolve the issue, and the outcome. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/cases.html">Amazon Connect Cases</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
BatchGetCaseRuleCommandInput,
|
|
4
8
|
BatchGetCaseRuleCommandOutput,
|
|
@@ -716,6 +720,90 @@ export interface ConnectCases {
|
|
|
716
720
|
options: __HttpHandlerOptions,
|
|
717
721
|
cb: (err: any, data?: UpdateTemplateCommandOutput) => void
|
|
718
722
|
): void;
|
|
723
|
+
paginateGetCase(
|
|
724
|
+
args: GetCaseCommandInput,
|
|
725
|
+
paginationConfig?: Pick<
|
|
726
|
+
PaginationConfiguration,
|
|
727
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
728
|
+
>
|
|
729
|
+
): Paginator<GetCaseCommandOutput>;
|
|
730
|
+
paginateGetCaseAuditEvents(
|
|
731
|
+
args: GetCaseAuditEventsCommandInput,
|
|
732
|
+
paginationConfig?: Pick<
|
|
733
|
+
PaginationConfiguration,
|
|
734
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
735
|
+
>
|
|
736
|
+
): Paginator<GetCaseAuditEventsCommandOutput>;
|
|
737
|
+
paginateListCaseRules(
|
|
738
|
+
args: ListCaseRulesCommandInput,
|
|
739
|
+
paginationConfig?: Pick<
|
|
740
|
+
PaginationConfiguration,
|
|
741
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
742
|
+
>
|
|
743
|
+
): Paginator<ListCaseRulesCommandOutput>;
|
|
744
|
+
paginateListCasesForContact(
|
|
745
|
+
args: ListCasesForContactCommandInput,
|
|
746
|
+
paginationConfig?: Pick<
|
|
747
|
+
PaginationConfiguration,
|
|
748
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
749
|
+
>
|
|
750
|
+
): Paginator<ListCasesForContactCommandOutput>;
|
|
751
|
+
paginateListDomains(
|
|
752
|
+
args?: ListDomainsCommandInput,
|
|
753
|
+
paginationConfig?: Pick<
|
|
754
|
+
PaginationConfiguration,
|
|
755
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
756
|
+
>
|
|
757
|
+
): Paginator<ListDomainsCommandOutput>;
|
|
758
|
+
paginateListFieldOptions(
|
|
759
|
+
args: ListFieldOptionsCommandInput,
|
|
760
|
+
paginationConfig?: Pick<
|
|
761
|
+
PaginationConfiguration,
|
|
762
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
763
|
+
>
|
|
764
|
+
): Paginator<ListFieldOptionsCommandOutput>;
|
|
765
|
+
paginateListFields(
|
|
766
|
+
args: ListFieldsCommandInput,
|
|
767
|
+
paginationConfig?: Pick<
|
|
768
|
+
PaginationConfiguration,
|
|
769
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
770
|
+
>
|
|
771
|
+
): Paginator<ListFieldsCommandOutput>;
|
|
772
|
+
paginateListLayouts(
|
|
773
|
+
args: ListLayoutsCommandInput,
|
|
774
|
+
paginationConfig?: Pick<
|
|
775
|
+
PaginationConfiguration,
|
|
776
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
777
|
+
>
|
|
778
|
+
): Paginator<ListLayoutsCommandOutput>;
|
|
779
|
+
paginateListTemplates(
|
|
780
|
+
args: ListTemplatesCommandInput,
|
|
781
|
+
paginationConfig?: Pick<
|
|
782
|
+
PaginationConfiguration,
|
|
783
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
784
|
+
>
|
|
785
|
+
): Paginator<ListTemplatesCommandOutput>;
|
|
786
|
+
paginateSearchAllRelatedItems(
|
|
787
|
+
args: SearchAllRelatedItemsCommandInput,
|
|
788
|
+
paginationConfig?: Pick<
|
|
789
|
+
PaginationConfiguration,
|
|
790
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
791
|
+
>
|
|
792
|
+
): Paginator<SearchAllRelatedItemsCommandOutput>;
|
|
793
|
+
paginateSearchCases(
|
|
794
|
+
args: SearchCasesCommandInput,
|
|
795
|
+
paginationConfig?: Pick<
|
|
796
|
+
PaginationConfiguration,
|
|
797
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
798
|
+
>
|
|
799
|
+
): Paginator<SearchCasesCommandOutput>;
|
|
800
|
+
paginateSearchRelatedItems(
|
|
801
|
+
args: SearchRelatedItemsCommandInput,
|
|
802
|
+
paginationConfig?: Pick<
|
|
803
|
+
PaginationConfiguration,
|
|
804
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
805
|
+
>
|
|
806
|
+
): Paginator<SearchRelatedItemsCommandOutput>;
|
|
719
807
|
}
|
|
720
808
|
export declare class ConnectCases
|
|
721
809
|
extends ConnectCasesClient
|
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.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connectcases",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
25
|
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|