@aws-sdk/client-chime-sdk-meetings 3.927.0 → 3.929.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 +846 -941
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ChimeSDKMeetingsClient.js +2 -0
- package/dist-es/commands/BatchCreateAttendeeCommand.js +3 -10
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +3 -9
- package/dist-es/commands/CreateAttendeeCommand.js +3 -10
- package/dist-es/commands/CreateMeetingCommand.js +3 -10
- package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +3 -10
- package/dist-es/commands/DeleteAttendeeCommand.js +3 -9
- package/dist-es/commands/DeleteMeetingCommand.js +3 -9
- package/dist-es/commands/GetAttendeeCommand.js +3 -10
- package/dist-es/commands/GetMeetingCommand.js +3 -10
- package/dist-es/commands/ListAttendeesCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartMeetingTranscriptionCommand.js +3 -9
- package/dist-es/commands/StopMeetingTranscriptionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -87
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +784 -0
- package/dist-types/ChimeSDKMeetingsClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -68
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +88 -0
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +94 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -697
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -146
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -197
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
|
|
11
11
|
import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "./commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
@@ -157,6 +157,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
157
157
|
* Optional extensions
|
|
158
158
|
*/
|
|
159
159
|
extensions?: RuntimeExtension[];
|
|
160
|
+
/**
|
|
161
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
162
|
+
* may be overridden. A default will always be set by the client.
|
|
163
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
164
|
+
* the client.
|
|
165
|
+
* @alpha
|
|
166
|
+
*
|
|
167
|
+
*/
|
|
168
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
160
169
|
/**
|
|
161
170
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
162
171
|
*/
|
|
@@ -1682,71 +1682,3 @@ export interface UpdateAttendeeCapabilitiesResponse {
|
|
|
1682
1682
|
*/
|
|
1683
1683
|
Attendee?: Attendee | undefined;
|
|
1684
1684
|
}
|
|
1685
|
-
/**
|
|
1686
|
-
* @internal
|
|
1687
|
-
*/
|
|
1688
|
-
export declare const AttendeeFilterSensitiveLog: (obj: Attendee) => any;
|
|
1689
|
-
/**
|
|
1690
|
-
* @internal
|
|
1691
|
-
*/
|
|
1692
|
-
export declare const CreateAttendeeRequestItemFilterSensitiveLog: (obj: CreateAttendeeRequestItem) => any;
|
|
1693
|
-
/**
|
|
1694
|
-
* @internal
|
|
1695
|
-
*/
|
|
1696
|
-
export declare const BatchCreateAttendeeRequestFilterSensitiveLog: (obj: BatchCreateAttendeeRequest) => any;
|
|
1697
|
-
/**
|
|
1698
|
-
* @internal
|
|
1699
|
-
*/
|
|
1700
|
-
export declare const CreateAttendeeErrorFilterSensitiveLog: (obj: CreateAttendeeError) => any;
|
|
1701
|
-
/**
|
|
1702
|
-
* @internal
|
|
1703
|
-
*/
|
|
1704
|
-
export declare const BatchCreateAttendeeResponseFilterSensitiveLog: (obj: BatchCreateAttendeeResponse) => any;
|
|
1705
|
-
/**
|
|
1706
|
-
* @internal
|
|
1707
|
-
*/
|
|
1708
|
-
export declare const CreateAttendeeRequestFilterSensitiveLog: (obj: CreateAttendeeRequest) => any;
|
|
1709
|
-
/**
|
|
1710
|
-
* @internal
|
|
1711
|
-
*/
|
|
1712
|
-
export declare const CreateAttendeeResponseFilterSensitiveLog: (obj: CreateAttendeeResponse) => any;
|
|
1713
|
-
/**
|
|
1714
|
-
* @internal
|
|
1715
|
-
*/
|
|
1716
|
-
export declare const NotificationsConfigurationFilterSensitiveLog: (obj: NotificationsConfiguration) => any;
|
|
1717
|
-
/**
|
|
1718
|
-
* @internal
|
|
1719
|
-
*/
|
|
1720
|
-
export declare const CreateMeetingRequestFilterSensitiveLog: (obj: CreateMeetingRequest) => any;
|
|
1721
|
-
/**
|
|
1722
|
-
* @internal
|
|
1723
|
-
*/
|
|
1724
|
-
export declare const MeetingFilterSensitiveLog: (obj: Meeting) => any;
|
|
1725
|
-
/**
|
|
1726
|
-
* @internal
|
|
1727
|
-
*/
|
|
1728
|
-
export declare const CreateMeetingResponseFilterSensitiveLog: (obj: CreateMeetingResponse) => any;
|
|
1729
|
-
/**
|
|
1730
|
-
* @internal
|
|
1731
|
-
*/
|
|
1732
|
-
export declare const CreateMeetingWithAttendeesRequestFilterSensitiveLog: (obj: CreateMeetingWithAttendeesRequest) => any;
|
|
1733
|
-
/**
|
|
1734
|
-
* @internal
|
|
1735
|
-
*/
|
|
1736
|
-
export declare const CreateMeetingWithAttendeesResponseFilterSensitiveLog: (obj: CreateMeetingWithAttendeesResponse) => any;
|
|
1737
|
-
/**
|
|
1738
|
-
* @internal
|
|
1739
|
-
*/
|
|
1740
|
-
export declare const GetAttendeeResponseFilterSensitiveLog: (obj: GetAttendeeResponse) => any;
|
|
1741
|
-
/**
|
|
1742
|
-
* @internal
|
|
1743
|
-
*/
|
|
1744
|
-
export declare const GetMeetingResponseFilterSensitiveLog: (obj: GetMeetingResponse) => any;
|
|
1745
|
-
/**
|
|
1746
|
-
* @internal
|
|
1747
|
-
*/
|
|
1748
|
-
export declare const ListAttendeesResponseFilterSensitiveLog: (obj: ListAttendeesResponse) => any;
|
|
1749
|
-
/**
|
|
1750
|
-
* @internal
|
|
1751
|
-
*/
|
|
1752
|
-
export declare const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog: (obj: UpdateAttendeeCapabilitiesResponse) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
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;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ChimeSDKMeetingsHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Arn: StaticSimpleSchema;
|
|
3
|
+
export declare var ClientRequestToken: StaticSimpleSchema;
|
|
4
|
+
export declare var ExternalMeetingId: StaticSimpleSchema;
|
|
5
|
+
export declare var ExternalUserId: StaticSimpleSchema;
|
|
6
|
+
export declare var JoinTokenString: StaticSimpleSchema;
|
|
7
|
+
export declare var Attendee: StaticStructureSchema;
|
|
8
|
+
export declare var AttendeeCapabilities: StaticStructureSchema;
|
|
9
|
+
export declare var AttendeeFeatures: StaticStructureSchema;
|
|
10
|
+
export declare var AttendeeIdItem: StaticStructureSchema;
|
|
11
|
+
export declare var AudioFeatures: StaticStructureSchema;
|
|
12
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
13
|
+
export declare var BatchCreateAttendeeRequest: StaticStructureSchema;
|
|
14
|
+
export declare var BatchCreateAttendeeResponse: StaticStructureSchema;
|
|
15
|
+
export declare var BatchUpdateAttendeeCapabilitiesExceptRequest: StaticStructureSchema;
|
|
16
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
17
|
+
export declare var ContentFeatures: StaticStructureSchema;
|
|
18
|
+
export declare var CreateAttendeeError: StaticStructureSchema;
|
|
19
|
+
export declare var CreateAttendeeRequest: StaticStructureSchema;
|
|
20
|
+
export declare var CreateAttendeeRequestItem: StaticStructureSchema;
|
|
21
|
+
export declare var CreateAttendeeResponse: StaticStructureSchema;
|
|
22
|
+
export declare var CreateMeetingRequest: StaticStructureSchema;
|
|
23
|
+
export declare var CreateMeetingResponse: StaticStructureSchema;
|
|
24
|
+
export declare var CreateMeetingWithAttendeesRequest: StaticStructureSchema;
|
|
25
|
+
export declare var CreateMeetingWithAttendeesResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteAttendeeRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteMeetingRequest: StaticStructureSchema;
|
|
28
|
+
export declare var EngineTranscribeMedicalSettings: StaticStructureSchema;
|
|
29
|
+
export declare var EngineTranscribeSettings: StaticStructureSchema;
|
|
30
|
+
export declare var ForbiddenException: StaticErrorSchema;
|
|
31
|
+
export declare var GetAttendeeRequest: StaticStructureSchema;
|
|
32
|
+
export declare var GetAttendeeResponse: StaticStructureSchema;
|
|
33
|
+
export declare var GetMeetingRequest: StaticStructureSchema;
|
|
34
|
+
export declare var GetMeetingResponse: StaticStructureSchema;
|
|
35
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
36
|
+
export declare var ListAttendeesRequest: StaticStructureSchema;
|
|
37
|
+
export declare var ListAttendeesResponse: StaticStructureSchema;
|
|
38
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
39
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
40
|
+
export declare var MediaPlacement: StaticStructureSchema;
|
|
41
|
+
export declare var Meeting: StaticStructureSchema;
|
|
42
|
+
export declare var MeetingFeaturesConfiguration: StaticStructureSchema;
|
|
43
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
44
|
+
export declare var NotificationsConfiguration: StaticStructureSchema;
|
|
45
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
46
|
+
export declare var ServiceFailureException: StaticErrorSchema;
|
|
47
|
+
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
48
|
+
export declare var StartMeetingTranscriptionRequest: StaticStructureSchema;
|
|
49
|
+
export declare var StopMeetingTranscriptionRequest: StaticStructureSchema;
|
|
50
|
+
export declare var Tag: StaticStructureSchema;
|
|
51
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
52
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
53
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
54
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
55
|
+
export declare var TranscriptionConfiguration: StaticStructureSchema;
|
|
56
|
+
export declare var UnauthorizedException: StaticErrorSchema;
|
|
57
|
+
export declare var UnprocessableEntityException: StaticErrorSchema;
|
|
58
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
59
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
60
|
+
export declare var UpdateAttendeeCapabilitiesRequest: StaticStructureSchema;
|
|
61
|
+
export declare var UpdateAttendeeCapabilitiesResponse: StaticStructureSchema;
|
|
62
|
+
export declare var VideoFeatures: StaticStructureSchema;
|
|
63
|
+
export declare var __Unit: "unit";
|
|
64
|
+
export declare var ChimeSDKMeetingsServiceException: StaticErrorSchema;
|
|
65
|
+
export declare var AttendeeIdsList: StaticListSchema;
|
|
66
|
+
export declare var AttendeeList: StaticListSchema;
|
|
67
|
+
export declare var BatchCreateAttendeeErrorList: StaticListSchema;
|
|
68
|
+
export declare var CreateAttendeeRequestItemList: StaticListSchema;
|
|
69
|
+
export declare var CreateMeetingWithAttendeesRequestItemList: StaticListSchema;
|
|
70
|
+
export declare var TagKeyList: number;
|
|
71
|
+
export declare var TagList: StaticListSchema;
|
|
72
|
+
export declare var TenantIdList: number;
|
|
73
|
+
export declare var BatchCreateAttendee: StaticOperationSchema;
|
|
74
|
+
export declare var BatchUpdateAttendeeCapabilitiesExcept: StaticOperationSchema;
|
|
75
|
+
export declare var CreateAttendee: StaticOperationSchema;
|
|
76
|
+
export declare var CreateMeeting: StaticOperationSchema;
|
|
77
|
+
export declare var CreateMeetingWithAttendees: StaticOperationSchema;
|
|
78
|
+
export declare var DeleteAttendee: StaticOperationSchema;
|
|
79
|
+
export declare var DeleteMeeting: StaticOperationSchema;
|
|
80
|
+
export declare var GetAttendee: StaticOperationSchema;
|
|
81
|
+
export declare var GetMeeting: StaticOperationSchema;
|
|
82
|
+
export declare var ListAttendees: StaticOperationSchema;
|
|
83
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
84
|
+
export declare var StartMeetingTranscription: StaticOperationSchema;
|
|
85
|
+
export declare var StopMeetingTranscription: StaticOperationSchema;
|
|
86
|
+
export declare var TagResource: StaticOperationSchema;
|
|
87
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
88
|
+
export declare var UpdateAttendeeCapabilities: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -174,6 +177,7 @@ export interface ClientDefaults
|
|
|
174
177
|
retryMode?: string | __Provider<string>;
|
|
175
178
|
logger?: __Logger;
|
|
176
179
|
extensions?: RuntimeExtension[];
|
|
180
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
177
181
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
178
182
|
}
|
|
179
183
|
export type ChimeSDKMeetingsClientConfigType = Partial<
|
|
@@ -464,50 +464,3 @@ export interface UpdateAttendeeCapabilitiesRequest {
|
|
|
464
464
|
export interface UpdateAttendeeCapabilitiesResponse {
|
|
465
465
|
Attendee?: Attendee | undefined;
|
|
466
466
|
}
|
|
467
|
-
export declare const AttendeeFilterSensitiveLog: (obj: Attendee) => any;
|
|
468
|
-
export declare const CreateAttendeeRequestItemFilterSensitiveLog: (
|
|
469
|
-
obj: CreateAttendeeRequestItem
|
|
470
|
-
) => any;
|
|
471
|
-
export declare const BatchCreateAttendeeRequestFilterSensitiveLog: (
|
|
472
|
-
obj: BatchCreateAttendeeRequest
|
|
473
|
-
) => any;
|
|
474
|
-
export declare const CreateAttendeeErrorFilterSensitiveLog: (
|
|
475
|
-
obj: CreateAttendeeError
|
|
476
|
-
) => any;
|
|
477
|
-
export declare const BatchCreateAttendeeResponseFilterSensitiveLog: (
|
|
478
|
-
obj: BatchCreateAttendeeResponse
|
|
479
|
-
) => any;
|
|
480
|
-
export declare const CreateAttendeeRequestFilterSensitiveLog: (
|
|
481
|
-
obj: CreateAttendeeRequest
|
|
482
|
-
) => any;
|
|
483
|
-
export declare const CreateAttendeeResponseFilterSensitiveLog: (
|
|
484
|
-
obj: CreateAttendeeResponse
|
|
485
|
-
) => any;
|
|
486
|
-
export declare const NotificationsConfigurationFilterSensitiveLog: (
|
|
487
|
-
obj: NotificationsConfiguration
|
|
488
|
-
) => any;
|
|
489
|
-
export declare const CreateMeetingRequestFilterSensitiveLog: (
|
|
490
|
-
obj: CreateMeetingRequest
|
|
491
|
-
) => any;
|
|
492
|
-
export declare const MeetingFilterSensitiveLog: (obj: Meeting) => any;
|
|
493
|
-
export declare const CreateMeetingResponseFilterSensitiveLog: (
|
|
494
|
-
obj: CreateMeetingResponse
|
|
495
|
-
) => any;
|
|
496
|
-
export declare const CreateMeetingWithAttendeesRequestFilterSensitiveLog: (
|
|
497
|
-
obj: CreateMeetingWithAttendeesRequest
|
|
498
|
-
) => any;
|
|
499
|
-
export declare const CreateMeetingWithAttendeesResponseFilterSensitiveLog: (
|
|
500
|
-
obj: CreateMeetingWithAttendeesResponse
|
|
501
|
-
) => any;
|
|
502
|
-
export declare const GetAttendeeResponseFilterSensitiveLog: (
|
|
503
|
-
obj: GetAttendeeResponse
|
|
504
|
-
) => any;
|
|
505
|
-
export declare const GetMeetingResponseFilterSensitiveLog: (
|
|
506
|
-
obj: GetMeetingResponse
|
|
507
|
-
) => any;
|
|
508
|
-
export declare const ListAttendeesResponseFilterSensitiveLog: (
|
|
509
|
-
obj: ListAttendeesResponse
|
|
510
|
-
) => any;
|
|
511
|
-
export declare const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog: (
|
|
512
|
-
obj: UpdateAttendeeCapabilitiesResponse
|
|
513
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ChimeSDKMeetingsHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var Arn: StaticSimpleSchema;
|
|
9
|
+
export declare var ClientRequestToken: StaticSimpleSchema;
|
|
10
|
+
export declare var ExternalMeetingId: StaticSimpleSchema;
|
|
11
|
+
export declare var ExternalUserId: StaticSimpleSchema;
|
|
12
|
+
export declare var JoinTokenString: StaticSimpleSchema;
|
|
13
|
+
export declare var Attendee: StaticStructureSchema;
|
|
14
|
+
export declare var AttendeeCapabilities: StaticStructureSchema;
|
|
15
|
+
export declare var AttendeeFeatures: StaticStructureSchema;
|
|
16
|
+
export declare var AttendeeIdItem: StaticStructureSchema;
|
|
17
|
+
export declare var AudioFeatures: StaticStructureSchema;
|
|
18
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
19
|
+
export declare var BatchCreateAttendeeRequest: StaticStructureSchema;
|
|
20
|
+
export declare var BatchCreateAttendeeResponse: StaticStructureSchema;
|
|
21
|
+
export declare var BatchUpdateAttendeeCapabilitiesExceptRequest: StaticStructureSchema;
|
|
22
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
23
|
+
export declare var ContentFeatures: StaticStructureSchema;
|
|
24
|
+
export declare var CreateAttendeeError: StaticStructureSchema;
|
|
25
|
+
export declare var CreateAttendeeRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateAttendeeRequestItem: StaticStructureSchema;
|
|
27
|
+
export declare var CreateAttendeeResponse: StaticStructureSchema;
|
|
28
|
+
export declare var CreateMeetingRequest: StaticStructureSchema;
|
|
29
|
+
export declare var CreateMeetingResponse: StaticStructureSchema;
|
|
30
|
+
export declare var CreateMeetingWithAttendeesRequest: StaticStructureSchema;
|
|
31
|
+
export declare var CreateMeetingWithAttendeesResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteAttendeeRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteMeetingRequest: StaticStructureSchema;
|
|
34
|
+
export declare var EngineTranscribeMedicalSettings: StaticStructureSchema;
|
|
35
|
+
export declare var EngineTranscribeSettings: StaticStructureSchema;
|
|
36
|
+
export declare var ForbiddenException: StaticErrorSchema;
|
|
37
|
+
export declare var GetAttendeeRequest: StaticStructureSchema;
|
|
38
|
+
export declare var GetAttendeeResponse: StaticStructureSchema;
|
|
39
|
+
export declare var GetMeetingRequest: StaticStructureSchema;
|
|
40
|
+
export declare var GetMeetingResponse: StaticStructureSchema;
|
|
41
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
42
|
+
export declare var ListAttendeesRequest: StaticStructureSchema;
|
|
43
|
+
export declare var ListAttendeesResponse: StaticStructureSchema;
|
|
44
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
45
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
46
|
+
export declare var MediaPlacement: StaticStructureSchema;
|
|
47
|
+
export declare var Meeting: StaticStructureSchema;
|
|
48
|
+
export declare var MeetingFeaturesConfiguration: StaticStructureSchema;
|
|
49
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
50
|
+
export declare var NotificationsConfiguration: StaticStructureSchema;
|
|
51
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
52
|
+
export declare var ServiceFailureException: StaticErrorSchema;
|
|
53
|
+
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
54
|
+
export declare var StartMeetingTranscriptionRequest: StaticStructureSchema;
|
|
55
|
+
export declare var StopMeetingTranscriptionRequest: StaticStructureSchema;
|
|
56
|
+
export declare var Tag: StaticStructureSchema;
|
|
57
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
58
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
59
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
60
|
+
export declare var TooManyTagsException: StaticErrorSchema;
|
|
61
|
+
export declare var TranscriptionConfiguration: StaticStructureSchema;
|
|
62
|
+
export declare var UnauthorizedException: StaticErrorSchema;
|
|
63
|
+
export declare var UnprocessableEntityException: StaticErrorSchema;
|
|
64
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
65
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
66
|
+
export declare var UpdateAttendeeCapabilitiesRequest: StaticStructureSchema;
|
|
67
|
+
export declare var UpdateAttendeeCapabilitiesResponse: StaticStructureSchema;
|
|
68
|
+
export declare var VideoFeatures: StaticStructureSchema;
|
|
69
|
+
export declare var __Unit: "unit";
|
|
70
|
+
export declare var ChimeSDKMeetingsServiceException: StaticErrorSchema;
|
|
71
|
+
export declare var AttendeeIdsList: StaticListSchema;
|
|
72
|
+
export declare var AttendeeList: StaticListSchema;
|
|
73
|
+
export declare var BatchCreateAttendeeErrorList: StaticListSchema;
|
|
74
|
+
export declare var CreateAttendeeRequestItemList: StaticListSchema;
|
|
75
|
+
export declare var CreateMeetingWithAttendeesRequestItemList: StaticListSchema;
|
|
76
|
+
export declare var TagKeyList: number;
|
|
77
|
+
export declare var TagList: StaticListSchema;
|
|
78
|
+
export declare var TenantIdList: number;
|
|
79
|
+
export declare var BatchCreateAttendee: StaticOperationSchema;
|
|
80
|
+
export declare var BatchUpdateAttendeeCapabilitiesExcept: StaticOperationSchema;
|
|
81
|
+
export declare var CreateAttendee: StaticOperationSchema;
|
|
82
|
+
export declare var CreateMeeting: StaticOperationSchema;
|
|
83
|
+
export declare var CreateMeetingWithAttendees: StaticOperationSchema;
|
|
84
|
+
export declare var DeleteAttendee: StaticOperationSchema;
|
|
85
|
+
export declare var DeleteMeeting: StaticOperationSchema;
|
|
86
|
+
export declare var GetAttendee: StaticOperationSchema;
|
|
87
|
+
export declare var GetMeeting: StaticOperationSchema;
|
|
88
|
+
export declare var ListAttendees: StaticOperationSchema;
|
|
89
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
90
|
+
export declare var StartMeetingTranscription: StaticOperationSchema;
|
|
91
|
+
export declare var StopMeetingTranscription: StaticOperationSchema;
|
|
92
|
+
export declare var TagResource: StaticOperationSchema;
|
|
93
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
94
|
+
export declare var UpdateAttendeeCapabilities: StaticOperationSchema;
|
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.929.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-chime-sdk-meetings",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"@smithy/util-middleware": "^4.2.4",
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|