@aws-sdk/client-chime-sdk-identity 3.975.0 → 3.980.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js
CHANGED
|
@@ -1359,6 +1359,16 @@ class UpdateAppInstanceUserEndpointCommand extends smithyClient.Command
|
|
|
1359
1359
|
.build() {
|
|
1360
1360
|
}
|
|
1361
1361
|
|
|
1362
|
+
const paginateListAppInstanceAdmins = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceAdminsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1363
|
+
|
|
1364
|
+
const paginateListAppInstanceBots = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceBotsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1365
|
+
|
|
1366
|
+
const paginateListAppInstances = core.createPaginator(ChimeSDKIdentityClient, ListAppInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1367
|
+
|
|
1368
|
+
const paginateListAppInstanceUserEndpoints = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceUserEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1369
|
+
|
|
1370
|
+
const paginateListAppInstanceUsers = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
1371
|
+
|
|
1362
1372
|
const commands = {
|
|
1363
1373
|
CreateAppInstanceCommand,
|
|
1364
1374
|
CreateAppInstanceAdminCommand,
|
|
@@ -1391,19 +1401,16 @@ const commands = {
|
|
|
1391
1401
|
UpdateAppInstanceUserCommand,
|
|
1392
1402
|
UpdateAppInstanceUserEndpointCommand,
|
|
1393
1403
|
};
|
|
1404
|
+
const paginators = {
|
|
1405
|
+
paginateListAppInstanceAdmins,
|
|
1406
|
+
paginateListAppInstanceBots,
|
|
1407
|
+
paginateListAppInstances,
|
|
1408
|
+
paginateListAppInstanceUserEndpoints,
|
|
1409
|
+
paginateListAppInstanceUsers,
|
|
1410
|
+
};
|
|
1394
1411
|
class ChimeSDKIdentity extends ChimeSDKIdentityClient {
|
|
1395
1412
|
}
|
|
1396
|
-
smithyClient.createAggregatedClient(commands, ChimeSDKIdentity);
|
|
1397
|
-
|
|
1398
|
-
const paginateListAppInstanceAdmins = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceAdminsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1399
|
-
|
|
1400
|
-
const paginateListAppInstanceBots = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceBotsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1401
|
-
|
|
1402
|
-
const paginateListAppInstances = core.createPaginator(ChimeSDKIdentityClient, ListAppInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1403
|
-
|
|
1404
|
-
const paginateListAppInstanceUserEndpoints = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceUserEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1405
|
-
|
|
1406
|
-
const paginateListAppInstanceUsers = core.createPaginator(ChimeSDKIdentityClient, ListAppInstanceUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
1413
|
+
smithyClient.createAggregatedClient(commands, ChimeSDKIdentity, { paginators });
|
|
1407
1414
|
|
|
1408
1415
|
const AllowMessages = {
|
|
1409
1416
|
ALL: "ALL",
|
|
@@ -30,6 +30,11 @@ import { UpdateAppInstanceBotCommand, } from "./commands/UpdateAppInstanceBotCom
|
|
|
30
30
|
import { UpdateAppInstanceCommand, } from "./commands/UpdateAppInstanceCommand";
|
|
31
31
|
import { UpdateAppInstanceUserCommand, } from "./commands/UpdateAppInstanceUserCommand";
|
|
32
32
|
import { UpdateAppInstanceUserEndpointCommand, } from "./commands/UpdateAppInstanceUserEndpointCommand";
|
|
33
|
+
import { paginateListAppInstanceAdmins } from "./pagination/ListAppInstanceAdminsPaginator";
|
|
34
|
+
import { paginateListAppInstanceBots } from "./pagination/ListAppInstanceBotsPaginator";
|
|
35
|
+
import { paginateListAppInstances } from "./pagination/ListAppInstancesPaginator";
|
|
36
|
+
import { paginateListAppInstanceUserEndpoints } from "./pagination/ListAppInstanceUserEndpointsPaginator";
|
|
37
|
+
import { paginateListAppInstanceUsers } from "./pagination/ListAppInstanceUsersPaginator";
|
|
33
38
|
const commands = {
|
|
34
39
|
CreateAppInstanceCommand,
|
|
35
40
|
CreateAppInstanceAdminCommand,
|
|
@@ -62,6 +67,13 @@ const commands = {
|
|
|
62
67
|
UpdateAppInstanceUserCommand,
|
|
63
68
|
UpdateAppInstanceUserEndpointCommand,
|
|
64
69
|
};
|
|
70
|
+
const paginators = {
|
|
71
|
+
paginateListAppInstanceAdmins,
|
|
72
|
+
paginateListAppInstanceBots,
|
|
73
|
+
paginateListAppInstances,
|
|
74
|
+
paginateListAppInstanceUserEndpoints,
|
|
75
|
+
paginateListAppInstanceUsers,
|
|
76
|
+
};
|
|
65
77
|
export class ChimeSDKIdentity extends ChimeSDKIdentityClient {
|
|
66
78
|
}
|
|
67
|
-
createAggregatedClient(commands, ChimeSDKIdentity);
|
|
79
|
+
createAggregatedClient(commands, ChimeSDKIdentity, { 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 { ChimeSDKIdentityClient } from "./ChimeSDKIdentityClient";
|
|
3
3
|
import { CreateAppInstanceAdminCommandInput, CreateAppInstanceAdminCommandOutput } from "./commands/CreateAppInstanceAdminCommand";
|
|
4
4
|
import { CreateAppInstanceBotCommandInput, CreateAppInstanceBotCommandOutput } from "./commands/CreateAppInstanceBotCommand";
|
|
@@ -212,6 +212,41 @@ export interface ChimeSDKIdentity {
|
|
|
212
212
|
updateAppInstanceUserEndpoint(args: UpdateAppInstanceUserEndpointCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAppInstanceUserEndpointCommandOutput>;
|
|
213
213
|
updateAppInstanceUserEndpoint(args: UpdateAppInstanceUserEndpointCommandInput, cb: (err: any, data?: UpdateAppInstanceUserEndpointCommandOutput) => void): void;
|
|
214
214
|
updateAppInstanceUserEndpoint(args: UpdateAppInstanceUserEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAppInstanceUserEndpointCommandOutput) => void): void;
|
|
215
|
+
/**
|
|
216
|
+
* @see {@link ListAppInstanceAdminsCommand}
|
|
217
|
+
* @param args - command input.
|
|
218
|
+
* @param paginationConfig - optional pagination config.
|
|
219
|
+
* @returns AsyncIterable of {@link ListAppInstanceAdminsCommandOutput}.
|
|
220
|
+
*/
|
|
221
|
+
paginateListAppInstanceAdmins(args: ListAppInstanceAdminsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAppInstanceAdminsCommandOutput>;
|
|
222
|
+
/**
|
|
223
|
+
* @see {@link ListAppInstanceBotsCommand}
|
|
224
|
+
* @param args - command input.
|
|
225
|
+
* @param paginationConfig - optional pagination config.
|
|
226
|
+
* @returns AsyncIterable of {@link ListAppInstanceBotsCommandOutput}.
|
|
227
|
+
*/
|
|
228
|
+
paginateListAppInstanceBots(args: ListAppInstanceBotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAppInstanceBotsCommandOutput>;
|
|
229
|
+
/**
|
|
230
|
+
* @see {@link ListAppInstancesCommand}
|
|
231
|
+
* @param args - command input.
|
|
232
|
+
* @param paginationConfig - optional pagination config.
|
|
233
|
+
* @returns AsyncIterable of {@link ListAppInstancesCommandOutput}.
|
|
234
|
+
*/
|
|
235
|
+
paginateListAppInstances(args?: ListAppInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAppInstancesCommandOutput>;
|
|
236
|
+
/**
|
|
237
|
+
* @see {@link ListAppInstanceUserEndpointsCommand}
|
|
238
|
+
* @param args - command input.
|
|
239
|
+
* @param paginationConfig - optional pagination config.
|
|
240
|
+
* @returns AsyncIterable of {@link ListAppInstanceUserEndpointsCommandOutput}.
|
|
241
|
+
*/
|
|
242
|
+
paginateListAppInstanceUserEndpoints(args: ListAppInstanceUserEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAppInstanceUserEndpointsCommandOutput>;
|
|
243
|
+
/**
|
|
244
|
+
* @see {@link ListAppInstanceUsersCommand}
|
|
245
|
+
* @param args - command input.
|
|
246
|
+
* @param paginationConfig - optional pagination config.
|
|
247
|
+
* @returns AsyncIterable of {@link ListAppInstanceUsersCommandOutput}.
|
|
248
|
+
*/
|
|
249
|
+
paginateListAppInstanceUsers(args: ListAppInstanceUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAppInstanceUsersCommandOutput>;
|
|
215
250
|
}
|
|
216
251
|
/**
|
|
217
252
|
* <p>The Amazon Chime SDK Identity APIs in this section allow software developers to create
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { ChimeSDKIdentityClient } from "./ChimeSDKIdentityClient";
|
|
3
7
|
import {
|
|
4
8
|
CreateAppInstanceAdminCommandInput,
|
|
@@ -524,6 +528,41 @@ export interface ChimeSDKIdentity {
|
|
|
524
528
|
options: __HttpHandlerOptions,
|
|
525
529
|
cb: (err: any, data?: UpdateAppInstanceUserEndpointCommandOutput) => void
|
|
526
530
|
): void;
|
|
531
|
+
paginateListAppInstanceAdmins(
|
|
532
|
+
args: ListAppInstanceAdminsCommandInput,
|
|
533
|
+
paginationConfig?: Pick<
|
|
534
|
+
PaginationConfiguration,
|
|
535
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
536
|
+
>
|
|
537
|
+
): Paginator<ListAppInstanceAdminsCommandOutput>;
|
|
538
|
+
paginateListAppInstanceBots(
|
|
539
|
+
args: ListAppInstanceBotsCommandInput,
|
|
540
|
+
paginationConfig?: Pick<
|
|
541
|
+
PaginationConfiguration,
|
|
542
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
543
|
+
>
|
|
544
|
+
): Paginator<ListAppInstanceBotsCommandOutput>;
|
|
545
|
+
paginateListAppInstances(
|
|
546
|
+
args?: ListAppInstancesCommandInput,
|
|
547
|
+
paginationConfig?: Pick<
|
|
548
|
+
PaginationConfiguration,
|
|
549
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
550
|
+
>
|
|
551
|
+
): Paginator<ListAppInstancesCommandOutput>;
|
|
552
|
+
paginateListAppInstanceUserEndpoints(
|
|
553
|
+
args: ListAppInstanceUserEndpointsCommandInput,
|
|
554
|
+
paginationConfig?: Pick<
|
|
555
|
+
PaginationConfiguration,
|
|
556
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
557
|
+
>
|
|
558
|
+
): Paginator<ListAppInstanceUserEndpointsCommandOutput>;
|
|
559
|
+
paginateListAppInstanceUsers(
|
|
560
|
+
args: ListAppInstanceUsersCommandInput,
|
|
561
|
+
paginationConfig?: Pick<
|
|
562
|
+
PaginationConfiguration,
|
|
563
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
564
|
+
>
|
|
565
|
+
): Paginator<ListAppInstanceUsersCommandOutput>;
|
|
527
566
|
}
|
|
528
567
|
export declare class ChimeSDKIdentity
|
|
529
568
|
extends ChimeSDKIdentityClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-identity",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Identity Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-identity",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|