@aws-sdk/client-chime-sdk-meetings 3.975.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
CHANGED
|
@@ -1062,6 +1062,8 @@ class UpdateAttendeeCapabilitiesCommand extends smithyClient.Command
|
|
|
1062
1062
|
.build() {
|
|
1063
1063
|
}
|
|
1064
1064
|
|
|
1065
|
+
const paginateListAttendees = core.createPaginator(ChimeSDKMeetingsClient, ListAttendeesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1066
|
+
|
|
1065
1067
|
const commands = {
|
|
1066
1068
|
BatchCreateAttendeeCommand,
|
|
1067
1069
|
BatchUpdateAttendeeCapabilitiesExceptCommand,
|
|
@@ -1080,11 +1082,12 @@ const commands = {
|
|
|
1080
1082
|
UntagResourceCommand,
|
|
1081
1083
|
UpdateAttendeeCapabilitiesCommand,
|
|
1082
1084
|
};
|
|
1085
|
+
const paginators = {
|
|
1086
|
+
paginateListAttendees,
|
|
1087
|
+
};
|
|
1083
1088
|
class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
1084
1089
|
}
|
|
1085
|
-
smithyClient.createAggregatedClient(commands, ChimeSDKMeetings);
|
|
1086
|
-
|
|
1087
|
-
const paginateListAttendees = core.createPaginator(ChimeSDKMeetingsClient, ListAttendeesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1090
|
+
smithyClient.createAggregatedClient(commands, ChimeSDKMeetings, { paginators });
|
|
1088
1091
|
|
|
1089
1092
|
const MediaCapabilities = {
|
|
1090
1093
|
NONE: "None",
|
|
@@ -16,6 +16,7 @@ import { StopMeetingTranscriptionCommand, } from "./commands/StopMeetingTranscri
|
|
|
16
16
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
17
17
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
18
18
|
import { UpdateAttendeeCapabilitiesCommand, } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
19
|
+
import { paginateListAttendees } from "./pagination/ListAttendeesPaginator";
|
|
19
20
|
const commands = {
|
|
20
21
|
BatchCreateAttendeeCommand,
|
|
21
22
|
BatchUpdateAttendeeCapabilitiesExceptCommand,
|
|
@@ -34,6 +35,9 @@ const commands = {
|
|
|
34
35
|
UntagResourceCommand,
|
|
35
36
|
UpdateAttendeeCapabilitiesCommand,
|
|
36
37
|
};
|
|
38
|
+
const paginators = {
|
|
39
|
+
paginateListAttendees,
|
|
40
|
+
};
|
|
37
41
|
export class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
38
42
|
}
|
|
39
|
-
createAggregatedClient(commands, ChimeSDKMeetings);
|
|
43
|
+
createAggregatedClient(commands, ChimeSDKMeetings, { 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 { ChimeSDKMeetingsClient } from "./ChimeSDKMeetingsClient";
|
|
3
3
|
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
|
|
4
4
|
import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "./commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
@@ -113,6 +113,13 @@ export interface ChimeSDKMeetings {
|
|
|
113
113
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
114
114
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
115
115
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
116
|
+
/**
|
|
117
|
+
* @see {@link ListAttendeesCommand}
|
|
118
|
+
* @param args - command input.
|
|
119
|
+
* @param paginationConfig - optional pagination config.
|
|
120
|
+
* @returns AsyncIterable of {@link ListAttendeesCommandOutput}.
|
|
121
|
+
*/
|
|
122
|
+
paginateListAttendees(args: ListAttendeesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAttendeesCommandOutput>;
|
|
116
123
|
}
|
|
117
124
|
/**
|
|
118
125
|
* <p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the Amazon Web Services Regions for meetings, create and manage users, and send and
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { ChimeSDKMeetingsClient } from "./ChimeSDKMeetingsClient";
|
|
3
7
|
import {
|
|
4
8
|
BatchCreateAttendeeCommandInput,
|
|
@@ -279,6 +283,13 @@ export interface ChimeSDKMeetings {
|
|
|
279
283
|
options: __HttpHandlerOptions,
|
|
280
284
|
cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void
|
|
281
285
|
): void;
|
|
286
|
+
paginateListAttendees(
|
|
287
|
+
args: ListAttendeesCommandInput,
|
|
288
|
+
paginationConfig?: Pick<
|
|
289
|
+
PaginationConfiguration,
|
|
290
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
291
|
+
>
|
|
292
|
+
): Paginator<ListAttendeesCommandOutput>;
|
|
282
293
|
}
|
|
283
294
|
export declare class ChimeSDKMeetings
|
|
284
295
|
extends ChimeSDKMeetingsClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-meetings",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Meetings 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-chime-sdk-meetings",
|
|
@@ -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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
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",
|