@aws-sdk/client-chime-sdk-meetings 3.118.1 → 3.127.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/CHANGELOG.md +30 -0
- package/dist-cjs/protocols/Aws_restJson1.js +146 -148
- package/dist-es/protocols/Aws_restJson1.js +117 -121
- package/dist-types/ChimeSDKMeetings.d.ts +43 -0
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +22 -0
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +21 -0
- package/dist-types/models/models_0.d.ts +82 -18
- package/dist-types/ts3.4/models/models_0.d.ts +6 -0
- package/package.json +26 -26
|
@@ -27,6 +27,28 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
27
27
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
28
28
|
/**
|
|
29
29
|
* <p>Updates <code>AttendeeCapabilities</code> except the capabilities listed in an <code>ExcludedAttendeeIds</code> table.</p>
|
|
30
|
+
*
|
|
31
|
+
* <note>
|
|
32
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
33
|
+
* .</p>
|
|
34
|
+
* </note>
|
|
35
|
+
*
|
|
36
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
37
|
+
* <ul>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
40
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
41
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
42
|
+
* </li>
|
|
43
|
+
* <li>
|
|
44
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
45
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
46
|
+
* </li>
|
|
47
|
+
* <li>
|
|
48
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
49
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
50
|
+
* </li>
|
|
51
|
+
* </ul>
|
|
30
52
|
*/
|
|
31
53
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
32
54
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
@@ -126,6 +148,27 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
126
148
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
127
149
|
/**
|
|
128
150
|
* <p>The capabilties that you want to update.</p>
|
|
151
|
+
* <note>
|
|
152
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
153
|
+
* .</p>
|
|
154
|
+
* </note>
|
|
155
|
+
*
|
|
156
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
157
|
+
* <ul>
|
|
158
|
+
* <li>
|
|
159
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
160
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
161
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
162
|
+
* </li>
|
|
163
|
+
* <li>
|
|
164
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
165
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
166
|
+
* </li>
|
|
167
|
+
* <li>
|
|
168
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
169
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
170
|
+
* </li>
|
|
171
|
+
* </ul>
|
|
129
172
|
*/
|
|
130
173
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
131
174
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
@@ -8,6 +8,28 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Updates <code>AttendeeCapabilities</code> except the capabilities listed in an <code>ExcludedAttendeeIds</code> table.</p>
|
|
11
|
+
*
|
|
12
|
+
* <note>
|
|
13
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
14
|
+
* .</p>
|
|
15
|
+
* </note>
|
|
16
|
+
*
|
|
17
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
18
|
+
* <ul>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
21
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
22
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
23
|
+
* </li>
|
|
24
|
+
* <li>
|
|
25
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
26
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
27
|
+
* </li>
|
|
28
|
+
* <li>
|
|
29
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
30
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
31
|
+
* </li>
|
|
32
|
+
* </ul>
|
|
11
33
|
* @example
|
|
12
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
35
|
* ```javascript
|
|
@@ -8,6 +8,27 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>The capabilties that you want to update.</p>
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
13
|
+
* .</p>
|
|
14
|
+
* </note>
|
|
15
|
+
*
|
|
16
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
17
|
+
* <ul>
|
|
18
|
+
* <li>
|
|
19
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
20
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
21
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
25
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
26
|
+
* </li>
|
|
27
|
+
* <li>
|
|
28
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
29
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
30
|
+
* </li>
|
|
31
|
+
* </ul>
|
|
11
32
|
* @example
|
|
12
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
34
|
* ```javascript
|
|
@@ -7,7 +7,28 @@ export declare enum MediaCapabilities {
|
|
|
7
7
|
SEND_RECEIVE = "SendReceive"
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>The media capabilities of an attendee
|
|
10
|
+
* <p>The media capabilities of an attendee: audio, video, or content. </p>
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
13
|
+
* .</p>
|
|
14
|
+
* </note>
|
|
15
|
+
*
|
|
16
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
17
|
+
* <ul>
|
|
18
|
+
* <li>
|
|
19
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
20
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
21
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
25
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
26
|
+
* </li>
|
|
27
|
+
* <li>
|
|
28
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
29
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
30
|
+
* </li>
|
|
31
|
+
* </ul>
|
|
11
32
|
*/
|
|
12
33
|
export interface AttendeeCapabilities {
|
|
13
34
|
/**
|
|
@@ -58,7 +79,28 @@ export interface Attendee {
|
|
|
58
79
|
*/
|
|
59
80
|
JoinToken?: string;
|
|
60
81
|
/**
|
|
61
|
-
* <p>The capabilities
|
|
82
|
+
* <p>The capabilities assigned to an attendee: audio, video, or content.</p>
|
|
83
|
+
* <note>
|
|
84
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
85
|
+
* .</p>
|
|
86
|
+
* </note>
|
|
87
|
+
*
|
|
88
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
89
|
+
* <ul>
|
|
90
|
+
* <li>
|
|
91
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
92
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
93
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
94
|
+
* </li>
|
|
95
|
+
* <li>
|
|
96
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
97
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
98
|
+
* </li>
|
|
99
|
+
* <li>
|
|
100
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
101
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
102
|
+
* </li>
|
|
103
|
+
* </ul>
|
|
62
104
|
*/
|
|
63
105
|
Capabilities?: AttendeeCapabilities;
|
|
64
106
|
}
|
|
@@ -245,7 +287,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
245
287
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
246
288
|
}
|
|
247
289
|
/**
|
|
248
|
-
* <p>The service
|
|
290
|
+
* <p>The service encountered an unexpected error.</p>
|
|
249
291
|
*/
|
|
250
292
|
export declare class ServiceFailureException extends __BaseException {
|
|
251
293
|
readonly name: "ServiceFailureException";
|
|
@@ -280,7 +322,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
280
322
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
281
323
|
}
|
|
282
324
|
/**
|
|
283
|
-
* <p>The number of requests exceeds the limit.</p>
|
|
325
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
284
326
|
*/
|
|
285
327
|
export declare class ThrottlingException extends __BaseException {
|
|
286
328
|
readonly name: "ThrottlingException";
|
|
@@ -373,6 +415,28 @@ export interface CreateAttendeeRequest {
|
|
|
373
415
|
/**
|
|
374
416
|
* <p>The capabilities (<code>audio</code>, <code>video</code>, or <code>content</code>) that you want to grant an attendee. If you don't specify capabilities, all users have send and receive capabilities on
|
|
375
417
|
* all media channels by default.</p>
|
|
418
|
+
*
|
|
419
|
+
* <note>
|
|
420
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
421
|
+
* .</p>
|
|
422
|
+
* </note>
|
|
423
|
+
*
|
|
424
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
425
|
+
* <ul>
|
|
426
|
+
* <li>
|
|
427
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
428
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
429
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
430
|
+
* </li>
|
|
431
|
+
* <li>
|
|
432
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
433
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
434
|
+
* </li>
|
|
435
|
+
* <li>
|
|
436
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
437
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
438
|
+
* </li>
|
|
439
|
+
* </ul>
|
|
376
440
|
*/
|
|
377
441
|
Capabilities?: AttendeeCapabilities;
|
|
378
442
|
}
|
|
@@ -484,6 +548,10 @@ export interface CreateMeetingRequest {
|
|
|
484
548
|
* <p>When specified, replicates the media from the primary meeting to the new meeting.</p>
|
|
485
549
|
*/
|
|
486
550
|
PrimaryMeetingId?: string;
|
|
551
|
+
/**
|
|
552
|
+
* <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
|
|
553
|
+
*/
|
|
554
|
+
TenantIds?: string[];
|
|
487
555
|
}
|
|
488
556
|
export declare namespace CreateMeetingRequest {
|
|
489
557
|
/**
|
|
@@ -572,6 +640,10 @@ export interface Meeting {
|
|
|
572
640
|
* <p>When specified, replicates the media from the primary meeting to this meeting.</p>
|
|
573
641
|
*/
|
|
574
642
|
PrimaryMeetingId?: string;
|
|
643
|
+
/**
|
|
644
|
+
* <p>Array of strings.</p>
|
|
645
|
+
*/
|
|
646
|
+
TenantIds?: string[];
|
|
575
647
|
}
|
|
576
648
|
export declare namespace Meeting {
|
|
577
649
|
/**
|
|
@@ -648,6 +720,10 @@ export interface CreateMeetingWithAttendeesRequest {
|
|
|
648
720
|
* <p>When specified, replicates the media from the primary meeting to the new meeting.</p>
|
|
649
721
|
*/
|
|
650
722
|
PrimaryMeetingId?: string;
|
|
723
|
+
/**
|
|
724
|
+
* <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
|
|
725
|
+
*/
|
|
726
|
+
TenantIds?: string[];
|
|
651
727
|
}
|
|
652
728
|
export declare namespace CreateMeetingWithAttendeesRequest {
|
|
653
729
|
/**
|
|
@@ -840,7 +916,7 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
840
916
|
*/
|
|
841
917
|
VocabularyName?: string;
|
|
842
918
|
/**
|
|
843
|
-
* <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region
|
|
919
|
+
* <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region. </p>
|
|
844
920
|
*/
|
|
845
921
|
Region?: TranscribeMedicalRegion | string;
|
|
846
922
|
/**
|
|
@@ -1046,19 +1122,7 @@ export declare namespace UpdateAttendeeCapabilitiesRequest {
|
|
|
1046
1122
|
}
|
|
1047
1123
|
export interface UpdateAttendeeCapabilitiesResponse {
|
|
1048
1124
|
/**
|
|
1049
|
-
* <p>
|
|
1050
|
-
* <code>AttendeeId</code> and <code>JoinToken</code>. The
|
|
1051
|
-
* <code>JoinToken</code>
|
|
1052
|
-
* allows a client to authenticate and join as the specified attendee. The
|
|
1053
|
-
* <code>JoinToken</code>
|
|
1054
|
-
* expires when the meeting ends, or when
|
|
1055
|
-
* <a>DeleteAttendee</a>
|
|
1056
|
-
* is called. After that, the attendee is unable to join the meeting.
|
|
1057
|
-
* </p>
|
|
1058
|
-
*
|
|
1059
|
-
* <p>We recommend securely transferring each <code>JoinToken</code> from your server application
|
|
1060
|
-
* to the client so that no other client has access to the token except for the one
|
|
1061
|
-
* authorized to represent the attendee.</p>
|
|
1125
|
+
* <p>The updated attendee data.</p>
|
|
1062
1126
|
*/
|
|
1063
1127
|
Attendee?: Attendee;
|
|
1064
1128
|
}
|
|
@@ -278,6 +278,8 @@ export interface CreateMeetingRequest {
|
|
|
278
278
|
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
279
279
|
|
|
280
280
|
PrimaryMeetingId?: string;
|
|
281
|
+
|
|
282
|
+
TenantIds?: string[];
|
|
281
283
|
}
|
|
282
284
|
export declare namespace CreateMeetingRequest {
|
|
283
285
|
|
|
@@ -322,6 +324,8 @@ export interface Meeting {
|
|
|
322
324
|
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
323
325
|
|
|
324
326
|
PrimaryMeetingId?: string;
|
|
327
|
+
|
|
328
|
+
TenantIds?: string[];
|
|
325
329
|
}
|
|
326
330
|
export declare namespace Meeting {
|
|
327
331
|
|
|
@@ -352,6 +356,8 @@ export interface CreateMeetingWithAttendeesRequest {
|
|
|
352
356
|
Attendees: CreateAttendeeRequestItem[] | undefined;
|
|
353
357
|
|
|
354
358
|
PrimaryMeetingId?: string;
|
|
359
|
+
|
|
360
|
+
TenantIds?: string[];
|
|
355
361
|
}
|
|
356
362
|
export declare namespace CreateMeetingWithAttendeesRequest {
|
|
357
363
|
|
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.127.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.127.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.127.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.127.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.127.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.127.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1",
|