@aws-sdk/client-chime-sdk-meetings 3.952.0 → 3.953.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.
Files changed (36) hide show
  1. package/dist-cjs/index.js +276 -189
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/BatchCreateAttendeeCommand.js +2 -2
  4. package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +2 -2
  5. package/dist-es/commands/CreateAttendeeCommand.js +2 -2
  6. package/dist-es/commands/CreateMeetingCommand.js +2 -2
  7. package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +2 -2
  8. package/dist-es/commands/DeleteAttendeeCommand.js +2 -2
  9. package/dist-es/commands/DeleteMeetingCommand.js +2 -2
  10. package/dist-es/commands/GetAttendeeCommand.js +2 -2
  11. package/dist-es/commands/GetMeetingCommand.js +2 -2
  12. package/dist-es/commands/ListAttendeesCommand.js +2 -2
  13. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  14. package/dist-es/commands/StartMeetingTranscriptionCommand.js +2 -2
  15. package/dist-es/commands/StopMeetingTranscriptionCommand.js +2 -2
  16. package/dist-es/commands/TagResourceCommand.js +2 -2
  17. package/dist-es/commands/UntagResourceCommand.js +2 -2
  18. package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +2 -2
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/runtimeConfig.shared.js +6 -1
  21. package/dist-es/schemas/schemas_0.js +160 -146
  22. package/dist-types/ChimeSDKMeetingsClient.d.ts +1 -10
  23. package/dist-types/index.d.ts +1 -0
  24. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  25. package/dist-types/runtimeConfig.d.ts +6 -2
  26. package/dist-types/runtimeConfig.native.d.ts +6 -2
  27. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  28. package/dist-types/schemas/schemas_0.d.ts +74 -88
  29. package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +0 -4
  30. package/dist-types/ts3.4/index.d.ts +1 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +73 -89
  36. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.chimesdkmeetings" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.chimesdkmeetings",
32
+ version: "2021-07-15",
33
+ serviceTarget: "ChimeMeetingsSDKService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Chime SDK Meetings",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchCreateAttendee } from "../schemas/schemas_0";
4
+ import { BatchCreateAttendee$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchCreateAttendeeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchCreateAttendeeCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "BatchCreateAttendee", {})
13
13
  .n("ChimeSDKMeetingsClient", "BatchCreateAttendeeCommand")
14
- .sc(BatchCreateAttendee)
14
+ .sc(BatchCreateAttendee$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchUpdateAttendeeCapabilitiesExcept } from "../schemas/schemas_0";
4
+ import { BatchUpdateAttendeeCapabilitiesExcept$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "BatchUpdateAttendeeCapabilitiesExcept", {})
13
13
  .n("ChimeSDKMeetingsClient", "BatchUpdateAttendeeCapabilitiesExceptCommand")
14
- .sc(BatchUpdateAttendeeCapabilitiesExcept)
14
+ .sc(BatchUpdateAttendeeCapabilitiesExcept$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateAttendee } from "../schemas/schemas_0";
4
+ import { CreateAttendee$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAttendeeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAttendeeCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "CreateAttendee", {})
13
13
  .n("ChimeSDKMeetingsClient", "CreateAttendeeCommand")
14
- .sc(CreateAttendee)
14
+ .sc(CreateAttendee$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateMeeting } from "../schemas/schemas_0";
4
+ import { CreateMeeting$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateMeetingCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateMeetingCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "CreateMeeting", {})
13
13
  .n("ChimeSDKMeetingsClient", "CreateMeetingCommand")
14
- .sc(CreateMeeting)
14
+ .sc(CreateMeeting$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateMeetingWithAttendees } from "../schemas/schemas_0";
4
+ import { CreateMeetingWithAttendees$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateMeetingWithAttendeesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateMeetingWithAttendeesCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "CreateMeetingWithAttendees", {})
13
13
  .n("ChimeSDKMeetingsClient", "CreateMeetingWithAttendeesCommand")
14
- .sc(CreateMeetingWithAttendees)
14
+ .sc(CreateMeetingWithAttendees$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAttendee } from "../schemas/schemas_0";
4
+ import { DeleteAttendee$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAttendeeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAttendeeCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "DeleteAttendee", {})
13
13
  .n("ChimeSDKMeetingsClient", "DeleteAttendeeCommand")
14
- .sc(DeleteAttendee)
14
+ .sc(DeleteAttendee$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteMeeting } from "../schemas/schemas_0";
4
+ import { DeleteMeeting$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMeetingCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMeetingCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "DeleteMeeting", {})
13
13
  .n("ChimeSDKMeetingsClient", "DeleteMeetingCommand")
14
- .sc(DeleteMeeting)
14
+ .sc(DeleteMeeting$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAttendee } from "../schemas/schemas_0";
4
+ import { GetAttendee$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAttendeeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAttendeeCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "GetAttendee", {})
13
13
  .n("ChimeSDKMeetingsClient", "GetAttendeeCommand")
14
- .sc(GetAttendee)
14
+ .sc(GetAttendee$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMeeting } from "../schemas/schemas_0";
4
+ import { GetMeeting$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMeetingCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMeetingCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "GetMeeting", {})
13
13
  .n("ChimeSDKMeetingsClient", "GetMeetingCommand")
14
- .sc(GetMeeting)
14
+ .sc(GetMeeting$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListAttendees } from "../schemas/schemas_0";
4
+ import { ListAttendees$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAttendeesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAttendeesCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "ListAttendees", {})
13
13
  .n("ChimeSDKMeetingsClient", "ListAttendeesCommand")
14
- .sc(ListAttendees)
14
+ .sc(ListAttendees$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "ListTagsForResource", {})
13
13
  .n("ChimeSDKMeetingsClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartMeetingTranscription } from "../schemas/schemas_0";
4
+ import { StartMeetingTranscription$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartMeetingTranscriptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartMeetingTranscriptionCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "StartMeetingTranscription", {})
13
13
  .n("ChimeSDKMeetingsClient", "StartMeetingTranscriptionCommand")
14
- .sc(StartMeetingTranscription)
14
+ .sc(StartMeetingTranscription$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopMeetingTranscription } from "../schemas/schemas_0";
4
+ import { StopMeetingTranscription$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopMeetingTranscriptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopMeetingTranscriptionCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "StopMeetingTranscription", {})
13
13
  .n("ChimeSDKMeetingsClient", "StopMeetingTranscriptionCommand")
14
- .sc(StopMeetingTranscription)
14
+ .sc(StopMeetingTranscription$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "TagResource", {})
13
13
  .n("ChimeSDKMeetingsClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "UntagResource", {})
13
13
  .n("ChimeSDKMeetingsClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateAttendeeCapabilities } from "../schemas/schemas_0";
4
+ import { UpdateAttendeeCapabilities$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateAttendeeCapabilitiesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateAttendeeCapabilitiesCommand extends $Command
11
11
  })
12
12
  .s("ChimeMeetingsSDKService", "UpdateAttendeeCapabilities", {})
13
13
  .n("ChimeSDKMeetingsClient", "UpdateAttendeeCapabilitiesCommand")
14
- .sc(UpdateAttendeeCapabilities)
14
+ .sc(UpdateAttendeeCapabilities$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./ChimeSDKMeetingsClient";
2
2
  export * from "./ChimeSDKMeetings";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.chimesdkmeetings" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.chimesdkmeetings",
29
+ version: "2021-07-15",
30
+ serviceTarget: "ChimeMeetingsSDKService",
31
+ },
27
32
  serviceId: config?.serviceId ?? "Chime SDK Meetings",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,