@aws-sdk/client-chime-sdk-meetings 3.298.0 → 3.300.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-types/commands/BatchCreateAttendeeCommand.d.ts +13 -0
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +13 -0
- package/dist-types/commands/CreateAttendeeCommand.d.ts +9 -0
- package/dist-types/commands/CreateMeetingCommand.d.ts +26 -0
- package/dist-types/commands/CreateMeetingWithAttendeesCommand.d.ts +36 -0
- package/dist-types/commands/DeleteAttendeeCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMeetingCommand.d.ts +3 -0
- package/dist-types/commands/GetAttendeeCommand.d.ts +4 -0
- package/dist-types/commands/GetMeetingCommand.d.ts +3 -0
- package/dist-types/commands/ListAttendeesCommand.d.ts +5 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartMeetingTranscriptionCommand.d.ts +29 -0
- package/dist-types/commands/StopMeetingTranscriptionCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +9 -0
- package/package.json +12 -12
|
@@ -27,6 +27,19 @@ export interface BatchCreateAttendeeCommandOutput extends BatchCreateAttendeeRes
|
|
|
27
27
|
* import { ChimeSDKMeetingsClient, BatchCreateAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
28
28
|
* // const { ChimeSDKMeetingsClient, BatchCreateAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
29
29
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* MeetingId: "STRING_VALUE", // required
|
|
32
|
+
* Attendees: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* ExternalUserId: "STRING_VALUE", // required
|
|
35
|
+
* Capabilities: {
|
|
36
|
+
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
37
|
+
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
38
|
+
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
39
|
+
* },
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
30
43
|
* const command = new BatchCreateAttendeeCommand(input);
|
|
31
44
|
* const response = await client.send(command);
|
|
32
45
|
* ```
|
|
@@ -46,6 +46,19 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me
|
|
|
46
46
|
* import { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
47
47
|
* // const { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
48
48
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
49
|
+
* const input = {
|
|
50
|
+
* MeetingId: "STRING_VALUE", // required
|
|
51
|
+
* ExcludedAttendeeIds: [ // required
|
|
52
|
+
* {
|
|
53
|
+
* AttendeeId: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* Capabilities: {
|
|
57
|
+
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
58
|
+
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
59
|
+
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
60
|
+
* },
|
|
61
|
+
* };
|
|
49
62
|
* const command = new BatchUpdateAttendeeCapabilitiesExceptCommand(input);
|
|
50
63
|
* const response = await client.send(command);
|
|
51
64
|
* ```
|
|
@@ -31,6 +31,15 @@ export interface CreateAttendeeCommandOutput extends CreateAttendeeResponse, __M
|
|
|
31
31
|
* import { ChimeSDKMeetingsClient, CreateAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
32
32
|
* // const { ChimeSDKMeetingsClient, CreateAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
33
33
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* MeetingId: "STRING_VALUE", // required
|
|
36
|
+
* ExternalUserId: "STRING_VALUE", // required
|
|
37
|
+
* Capabilities: {
|
|
38
|
+
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
39
|
+
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
40
|
+
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
34
43
|
* const command = new CreateAttendeeCommand(input);
|
|
35
44
|
* const response = await client.send(command);
|
|
36
45
|
* ```
|
|
@@ -32,6 +32,32 @@ export interface CreateMeetingCommandOutput extends CreateMeetingResponse, __Met
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, CreateMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, CreateMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* ClientRequestToken: "STRING_VALUE", // required
|
|
37
|
+
* MediaRegion: "STRING_VALUE", // required
|
|
38
|
+
* MeetingHostId: "STRING_VALUE",
|
|
39
|
+
* ExternalMeetingId: "STRING_VALUE", // required
|
|
40
|
+
* NotificationsConfiguration: {
|
|
41
|
+
* LambdaFunctionArn: "STRING_VALUE",
|
|
42
|
+
* SnsTopicArn: "STRING_VALUE",
|
|
43
|
+
* SqsQueueArn: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* MeetingFeatures: {
|
|
46
|
+
* Audio: {
|
|
47
|
+
* EchoReduction: "AVAILABLE" || "UNAVAILABLE",
|
|
48
|
+
* },
|
|
49
|
+
* },
|
|
50
|
+
* PrimaryMeetingId: "STRING_VALUE",
|
|
51
|
+
* TenantIds: [
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* Tags: [
|
|
55
|
+
* {
|
|
56
|
+
* Key: "STRING_VALUE", // required
|
|
57
|
+
* Value: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* ],
|
|
60
|
+
* };
|
|
35
61
|
* const command = new CreateMeetingCommand(input);
|
|
36
62
|
* const response = await client.send(command);
|
|
37
63
|
* ```
|
|
@@ -32,6 +32,42 @@ export interface CreateMeetingWithAttendeesCommandOutput extends CreateMeetingWi
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, CreateMeetingWithAttendeesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, CreateMeetingWithAttendeesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* ClientRequestToken: "STRING_VALUE", // required
|
|
37
|
+
* MediaRegion: "STRING_VALUE", // required
|
|
38
|
+
* MeetingHostId: "STRING_VALUE",
|
|
39
|
+
* ExternalMeetingId: "STRING_VALUE", // required
|
|
40
|
+
* MeetingFeatures: {
|
|
41
|
+
* Audio: {
|
|
42
|
+
* EchoReduction: "AVAILABLE" || "UNAVAILABLE",
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* NotificationsConfiguration: {
|
|
46
|
+
* LambdaFunctionArn: "STRING_VALUE",
|
|
47
|
+
* SnsTopicArn: "STRING_VALUE",
|
|
48
|
+
* SqsQueueArn: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* Attendees: [ // required
|
|
51
|
+
* {
|
|
52
|
+
* ExternalUserId: "STRING_VALUE", // required
|
|
53
|
+
* Capabilities: {
|
|
54
|
+
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
55
|
+
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
56
|
+
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
57
|
+
* },
|
|
58
|
+
* },
|
|
59
|
+
* ],
|
|
60
|
+
* PrimaryMeetingId: "STRING_VALUE",
|
|
61
|
+
* TenantIds: [
|
|
62
|
+
* "STRING_VALUE",
|
|
63
|
+
* ],
|
|
64
|
+
* Tags: [
|
|
65
|
+
* {
|
|
66
|
+
* Key: "STRING_VALUE", // required
|
|
67
|
+
* Value: "STRING_VALUE", // required
|
|
68
|
+
* },
|
|
69
|
+
* ],
|
|
70
|
+
* };
|
|
35
71
|
* const command = new CreateMeetingWithAttendeesCommand(input);
|
|
36
72
|
* const response = await client.send(command);
|
|
37
73
|
* ```
|
|
@@ -29,6 +29,10 @@ export interface DeleteAttendeeCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { ChimeSDKMeetingsClient, DeleteAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
30
30
|
* // const { ChimeSDKMeetingsClient, DeleteAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
31
31
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* MeetingId: "STRING_VALUE", // required
|
|
34
|
+
* AttendeeId: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
32
36
|
* const command = new DeleteAttendeeCommand(input);
|
|
33
37
|
* const response = await client.send(command);
|
|
34
38
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DeleteMeetingCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { ChimeSDKMeetingsClient, DeleteMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
30
30
|
* // const { ChimeSDKMeetingsClient, DeleteMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
31
31
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* MeetingId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DeleteMeetingCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface GetAttendeeCommandOutput extends GetAttendeeResponse, __Metadat
|
|
|
30
30
|
* import { ChimeSDKMeetingsClient, GetAttendeeCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
31
31
|
* // const { ChimeSDKMeetingsClient, GetAttendeeCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
32
32
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* MeetingId: "STRING_VALUE", // required
|
|
35
|
+
* AttendeeId: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
33
37
|
* const command = new GetAttendeeCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface GetMeetingCommandOutput extends GetMeetingResponse, __MetadataB
|
|
|
28
28
|
* import { ChimeSDKMeetingsClient, GetMeetingCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
29
29
|
* // const { ChimeSDKMeetingsClient, GetMeetingCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
30
30
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* MeetingId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new GetMeetingCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -30,6 +30,11 @@ export interface ListAttendeesCommandOutput extends ListAttendeesResponse, __Met
|
|
|
30
30
|
* import { ChimeSDKMeetingsClient, ListAttendeesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
31
31
|
* // const { ChimeSDKMeetingsClient, ListAttendeesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
32
32
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* MeetingId: "STRING_VALUE", // required
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* };
|
|
33
38
|
* const command = new ListAttendeesCommand(input);
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ChimeSDKMeetingsClient, ListTagsForResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMeetingsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -32,6 +32,35 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, StartMeetingTranscriptionCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, StartMeetingTranscriptionCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* MeetingId: "STRING_VALUE", // required
|
|
37
|
+
* TranscriptionConfiguration: {
|
|
38
|
+
* EngineTranscribeSettings: {
|
|
39
|
+
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
40
|
+
* VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
41
|
+
* VocabularyFilterName: "STRING_VALUE",
|
|
42
|
+
* VocabularyName: "STRING_VALUE",
|
|
43
|
+
* Region: "us-east-2" || "us-east-1" || "us-west-2" || "ap-northeast-2" || "ap-southeast-2" || "ap-northeast-1" || "ca-central-1" || "eu-central-1" || "eu-west-1" || "eu-west-2" || "sa-east-1" || "auto" || "us-gov-west-1",
|
|
44
|
+
* EnablePartialResultsStabilization: true || false,
|
|
45
|
+
* PartialResultsStability: "low" || "medium" || "high",
|
|
46
|
+
* ContentIdentificationType: "PII",
|
|
47
|
+
* ContentRedactionType: "PII",
|
|
48
|
+
* PiiEntityTypes: "STRING_VALUE",
|
|
49
|
+
* LanguageModelName: "STRING_VALUE",
|
|
50
|
+
* IdentifyLanguage: true || false,
|
|
51
|
+
* LanguageOptions: "STRING_VALUE",
|
|
52
|
+
* PreferredLanguage: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
53
|
+
* },
|
|
54
|
+
* EngineTranscribeMedicalSettings: {
|
|
55
|
+
* LanguageCode: "en-US", // required
|
|
56
|
+
* Specialty: "PRIMARYCARE" || "CARDIOLOGY" || "NEUROLOGY" || "ONCOLOGY" || "RADIOLOGY" || "UROLOGY", // required
|
|
57
|
+
* Type: "CONVERSATION" || "DICTATION", // required
|
|
58
|
+
* VocabularyName: "STRING_VALUE",
|
|
59
|
+
* Region: "us-east-1" || "us-east-2" || "us-west-2" || "ap-southeast-2" || "ca-central-1" || "eu-west-1" || "auto",
|
|
60
|
+
* ContentIdentificationType: "PHI",
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* };
|
|
35
64
|
* const command = new StartMeetingTranscriptionCommand(input);
|
|
36
65
|
* const response = await client.send(command);
|
|
37
66
|
* ```
|
|
@@ -32,6 +32,9 @@ export interface StopMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
32
32
|
* import { ChimeSDKMeetingsClient, StopMeetingTranscriptionCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
33
33
|
* // const { ChimeSDKMeetingsClient, StopMeetingTranscriptionCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
34
34
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* MeetingId: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
35
38
|
* const command = new StopMeetingTranscriptionCommand(input);
|
|
36
39
|
* const response = await client.send(command);
|
|
37
40
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { ChimeSDKMeetingsClient, TagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
27
27
|
* // const { ChimeSDKMeetingsClient, TagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
28
28
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
+
* Tags: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* Key: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
29
38
|
* const command = new TagResourceCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -47,6 +47,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
47
47
|
* import { ChimeSDKMeetingsClient, UntagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
48
48
|
* // const { ChimeSDKMeetingsClient, UntagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
49
49
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
50
|
+
* const input = {
|
|
51
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
52
|
+
* TagKeys: [ // required
|
|
53
|
+
* "STRING_VALUE",
|
|
54
|
+
* ],
|
|
55
|
+
* };
|
|
50
56
|
* const command = new UntagResourceCommand(input);
|
|
51
57
|
* const response = await client.send(command);
|
|
52
58
|
* ```
|
|
@@ -46,6 +46,15 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
|
|
|
46
46
|
* import { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
47
47
|
* // const { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
48
48
|
* const client = new ChimeSDKMeetingsClient(config);
|
|
49
|
+
* const input = {
|
|
50
|
+
* MeetingId: "STRING_VALUE", // required
|
|
51
|
+
* AttendeeId: "STRING_VALUE", // required
|
|
52
|
+
* Capabilities: {
|
|
53
|
+
* Audio: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
54
|
+
* Video: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
55
|
+
* Content: "SendReceive" || "Send" || "Receive" || "None", // required
|
|
56
|
+
* },
|
|
57
|
+
* };
|
|
49
58
|
* const command = new UpdateAttendeeCapabilitiesCommand(input);
|
|
50
59
|
* const response = await client.send(command);
|
|
51
60
|
* ```
|
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.300.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",
|
|
@@ -21,23 +21,23 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|