@aws-sdk/client-chime 3.888.0 → 3.891.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 (63) hide show
  1. package/dist-types/commands/AssociatePhoneNumberWithUserCommand.d.ts +2 -0
  2. package/dist-types/commands/AssociateSigninDelegateGroupsWithAccountCommand.d.ts +2 -0
  3. package/dist-types/commands/BatchCreateRoomMembershipCommand.d.ts +2 -0
  4. package/dist-types/commands/BatchDeletePhoneNumberCommand.d.ts +2 -0
  5. package/dist-types/commands/BatchSuspendUserCommand.d.ts +2 -0
  6. package/dist-types/commands/BatchUnsuspendUserCommand.d.ts +2 -0
  7. package/dist-types/commands/BatchUpdatePhoneNumberCommand.d.ts +2 -0
  8. package/dist-types/commands/BatchUpdateUserCommand.d.ts +2 -0
  9. package/dist-types/commands/CreateAccountCommand.d.ts +2 -0
  10. package/dist-types/commands/CreateBotCommand.d.ts +2 -0
  11. package/dist-types/commands/CreateMeetingDialOutCommand.d.ts +2 -0
  12. package/dist-types/commands/CreatePhoneNumberOrderCommand.d.ts +2 -0
  13. package/dist-types/commands/CreateRoomCommand.d.ts +2 -0
  14. package/dist-types/commands/CreateRoomMembershipCommand.d.ts +2 -0
  15. package/dist-types/commands/CreateUserCommand.d.ts +2 -0
  16. package/dist-types/commands/DeleteAccountCommand.d.ts +2 -0
  17. package/dist-types/commands/DeleteEventsConfigurationCommand.d.ts +2 -0
  18. package/dist-types/commands/DeletePhoneNumberCommand.d.ts +2 -0
  19. package/dist-types/commands/DeleteRoomCommand.d.ts +2 -0
  20. package/dist-types/commands/DeleteRoomMembershipCommand.d.ts +2 -0
  21. package/dist-types/commands/DisassociatePhoneNumberFromUserCommand.d.ts +2 -0
  22. package/dist-types/commands/DisassociateSigninDelegateGroupsFromAccountCommand.d.ts +2 -0
  23. package/dist-types/commands/GetAccountCommand.d.ts +2 -0
  24. package/dist-types/commands/GetAccountSettingsCommand.d.ts +2 -0
  25. package/dist-types/commands/GetBotCommand.d.ts +2 -0
  26. package/dist-types/commands/GetEventsConfigurationCommand.d.ts +2 -0
  27. package/dist-types/commands/GetGlobalSettingsCommand.d.ts +2 -0
  28. package/dist-types/commands/GetPhoneNumberCommand.d.ts +2 -0
  29. package/dist-types/commands/GetPhoneNumberOrderCommand.d.ts +2 -0
  30. package/dist-types/commands/GetPhoneNumberSettingsCommand.d.ts +2 -0
  31. package/dist-types/commands/GetRetentionSettingsCommand.d.ts +2 -0
  32. package/dist-types/commands/GetRoomCommand.d.ts +2 -0
  33. package/dist-types/commands/GetUserCommand.d.ts +2 -0
  34. package/dist-types/commands/GetUserSettingsCommand.d.ts +2 -0
  35. package/dist-types/commands/InviteUsersCommand.d.ts +2 -0
  36. package/dist-types/commands/ListAccountsCommand.d.ts +2 -0
  37. package/dist-types/commands/ListBotsCommand.d.ts +2 -0
  38. package/dist-types/commands/ListPhoneNumberOrdersCommand.d.ts +2 -0
  39. package/dist-types/commands/ListPhoneNumbersCommand.d.ts +2 -0
  40. package/dist-types/commands/ListRoomMembershipsCommand.d.ts +2 -0
  41. package/dist-types/commands/ListRoomsCommand.d.ts +2 -0
  42. package/dist-types/commands/ListSupportedPhoneNumberCountriesCommand.d.ts +2 -0
  43. package/dist-types/commands/ListUsersCommand.d.ts +2 -0
  44. package/dist-types/commands/LogoutUserCommand.d.ts +2 -0
  45. package/dist-types/commands/PutEventsConfigurationCommand.d.ts +2 -0
  46. package/dist-types/commands/PutRetentionSettingsCommand.d.ts +2 -0
  47. package/dist-types/commands/RedactConversationMessageCommand.d.ts +2 -0
  48. package/dist-types/commands/RedactRoomMessageCommand.d.ts +2 -0
  49. package/dist-types/commands/RegenerateSecurityTokenCommand.d.ts +2 -0
  50. package/dist-types/commands/ResetPersonalPINCommand.d.ts +2 -0
  51. package/dist-types/commands/RestorePhoneNumberCommand.d.ts +2 -0
  52. package/dist-types/commands/SearchAvailablePhoneNumbersCommand.d.ts +2 -0
  53. package/dist-types/commands/UpdateAccountCommand.d.ts +2 -0
  54. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +2 -0
  55. package/dist-types/commands/UpdateBotCommand.d.ts +2 -0
  56. package/dist-types/commands/UpdateGlobalSettingsCommand.d.ts +2 -0
  57. package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +2 -0
  58. package/dist-types/commands/UpdatePhoneNumberSettingsCommand.d.ts +2 -0
  59. package/dist-types/commands/UpdateRoomCommand.d.ts +2 -0
  60. package/dist-types/commands/UpdateRoomMembershipCommand.d.ts +2 -0
  61. package/dist-types/commands/UpdateUserCommand.d.ts +2 -0
  62. package/dist-types/commands/UpdateUserSettingsCommand.d.ts +2 -0
  63. package/package.json +19 -19
@@ -33,6 +33,8 @@ declare const AssociatePhoneNumberWithUserCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, AssociatePhoneNumberWithUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, AssociatePhoneNumberWithUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // AssociatePhoneNumberWithUserRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const AssociateSigninDelegateGroupsWithAccountCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, AssociateSigninDelegateGroupsWithAccountCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, AssociateSigninDelegateGroupsWithAccountCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // AssociateSigninDelegateGroupsWithAccountRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const BatchCreateRoomMembershipCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, BatchCreateRoomMembershipCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, BatchCreateRoomMembershipCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // BatchCreateRoomMembershipRequest
39
41
  * AccountId: "STRING_VALUE", // required
@@ -40,6 +40,8 @@ declare const BatchDeletePhoneNumberCommand_base: {
40
40
  * ```javascript
41
41
  * import { ChimeClient, BatchDeletePhoneNumberCommand } from "@aws-sdk/client-chime"; // ES Modules import
42
42
  * // const { ChimeClient, BatchDeletePhoneNumberCommand } = require("@aws-sdk/client-chime"); // CommonJS import
43
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
44
+ * const config = {}; // type is ChimeClientConfig
43
45
  * const client = new ChimeClient(config);
44
46
  * const input = { // BatchDeletePhoneNumberRequest
45
47
  * PhoneNumberIds: [ // NonEmptyStringList // required
@@ -45,6 +45,8 @@ declare const BatchSuspendUserCommand_base: {
45
45
  * ```javascript
46
46
  * import { ChimeClient, BatchSuspendUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
47
47
  * // const { ChimeClient, BatchSuspendUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
48
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
49
+ * const config = {}; // type is ChimeClientConfig
48
50
  * const client = new ChimeClient(config);
49
51
  * const input = { // BatchSuspendUserRequest
50
52
  * AccountId: "STRING_VALUE", // required
@@ -42,6 +42,8 @@ declare const BatchUnsuspendUserCommand_base: {
42
42
  * ```javascript
43
43
  * import { ChimeClient, BatchUnsuspendUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
44
44
  * // const { ChimeClient, BatchUnsuspendUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
45
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
46
+ * const config = {}; // type is ChimeClientConfig
45
47
  * const client = new ChimeClient(config);
46
48
  * const input = { // BatchUnsuspendUserRequest
47
49
  * AccountId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const BatchUpdatePhoneNumberCommand_base: {
35
35
  * ```javascript
36
36
  * import { ChimeClient, BatchUpdatePhoneNumberCommand } from "@aws-sdk/client-chime"; // ES Modules import
37
37
  * // const { ChimeClient, BatchUpdatePhoneNumberCommand } = require("@aws-sdk/client-chime"); // CommonJS import
38
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
39
+ * const config = {}; // type is ChimeClientConfig
38
40
  * const client = new ChimeClient(config);
39
41
  * const input = { // BatchUpdatePhoneNumberRequest
40
42
  * UpdatePhoneNumberRequestItems: [ // UpdatePhoneNumberRequestItemList // required
@@ -33,6 +33,8 @@ declare const BatchUpdateUserCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, BatchUpdateUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, BatchUpdateUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // BatchUpdateUserRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const CreateAccountCommand_base: {
36
36
  * ```javascript
37
37
  * import { ChimeClient, CreateAccountCommand } from "@aws-sdk/client-chime"; // ES Modules import
38
38
  * // const { ChimeClient, CreateAccountCommand } = require("@aws-sdk/client-chime"); // CommonJS import
39
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
40
+ * const config = {}; // type is ChimeClientConfig
39
41
  * const client = new ChimeClient(config);
40
42
  * const input = { // CreateAccountRequest
41
43
  * Name: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateBotCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, CreateBotCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, CreateBotCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // CreateBotRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -41,6 +41,8 @@ declare const CreateMeetingDialOutCommand_base: {
41
41
  * ```javascript
42
42
  * import { ChimeClient, CreateMeetingDialOutCommand } from "@aws-sdk/client-chime"; // ES Modules import
43
43
  * // const { ChimeClient, CreateMeetingDialOutCommand } = require("@aws-sdk/client-chime"); // CommonJS import
44
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
45
+ * const config = {}; // type is ChimeClientConfig
44
46
  * const client = new ChimeClient(config);
45
47
  * const input = { // CreateMeetingDialOutRequest
46
48
  * MeetingId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const CreatePhoneNumberOrderCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, CreatePhoneNumberOrderCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, CreatePhoneNumberOrderCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // CreatePhoneNumberOrderRequest
39
41
  * ProductType: "BusinessCalling" || "VoiceConnector" || "SipMediaApplicationDialIn", // required
@@ -33,6 +33,8 @@ declare const CreateRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, CreateRoomCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, CreateRoomCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // CreateRoomRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateRoomMembershipCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, CreateRoomMembershipCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, CreateRoomMembershipCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // CreateRoomMembershipRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateUserCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, CreateUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, CreateUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // CreateUserRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -43,6 +43,8 @@ declare const DeleteAccountCommand_base: {
43
43
  * ```javascript
44
44
  * import { ChimeClient, DeleteAccountCommand } from "@aws-sdk/client-chime"; // ES Modules import
45
45
  * // const { ChimeClient, DeleteAccountCommand } = require("@aws-sdk/client-chime"); // CommonJS import
46
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
47
+ * const config = {}; // type is ChimeClientConfig
46
48
  * const client = new ChimeClient(config);
47
49
  * const input = { // DeleteAccountRequest
48
50
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteEventsConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, DeleteEventsConfigurationCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, DeleteEventsConfigurationCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // DeleteEventsConfigurationRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -38,6 +38,8 @@ declare const DeletePhoneNumberCommand_base: {
38
38
  * ```javascript
39
39
  * import { ChimeClient, DeletePhoneNumberCommand } from "@aws-sdk/client-chime"; // ES Modules import
40
40
  * // const { ChimeClient, DeletePhoneNumberCommand } = require("@aws-sdk/client-chime"); // CommonJS import
41
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
42
+ * const config = {}; // type is ChimeClientConfig
41
43
  * const client = new ChimeClient(config);
42
44
  * const input = { // DeletePhoneNumberRequest
43
45
  * PhoneNumberId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, DeleteRoomCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, DeleteRoomCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // DeleteRoomRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteRoomMembershipCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, DeleteRoomMembershipCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, DeleteRoomMembershipCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // DeleteRoomMembershipRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DisassociatePhoneNumberFromUserCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, DisassociatePhoneNumberFromUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, DisassociatePhoneNumberFromUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // DisassociatePhoneNumberFromUserRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DisassociateSigninDelegateGroupsFromAccountCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, DisassociateSigninDelegateGroupsFromAccountCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, DisassociateSigninDelegateGroupsFromAccountCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // DisassociateSigninDelegateGroupsFromAccountRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const GetAccountCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, GetAccountCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, GetAccountCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // GetAccountRequest
39
41
  * AccountId: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const GetAccountSettingsCommand_base: {
36
36
  * ```javascript
37
37
  * import { ChimeClient, GetAccountSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
38
38
  * // const { ChimeClient, GetAccountSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
39
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
40
+ * const config = {}; // type is ChimeClientConfig
39
41
  * const client = new ChimeClient(config);
40
42
  * const input = { // GetAccountSettingsRequest
41
43
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetBotCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, GetBotCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, GetBotCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // GetBotRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetEventsConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, GetEventsConfigurationCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, GetEventsConfigurationCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // GetEventsConfigurationRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const GetGlobalSettingsCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, GetGlobalSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, GetGlobalSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = {};
39
41
  * const command = new GetGlobalSettingsCommand(input);
@@ -33,6 +33,8 @@ declare const GetPhoneNumberCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, GetPhoneNumberCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, GetPhoneNumberCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // GetPhoneNumberRequest
38
40
  * PhoneNumberId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const GetPhoneNumberOrderCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, GetPhoneNumberOrderCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, GetPhoneNumberOrderCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // GetPhoneNumberOrderRequest
39
41
  * PhoneNumberOrderId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetPhoneNumberSettingsCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, GetPhoneNumberSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, GetPhoneNumberSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = {};
38
40
  * const command = new GetPhoneNumberSettingsCommand(input);
@@ -36,6 +36,8 @@ declare const GetRetentionSettingsCommand_base: {
36
36
  * ```javascript
37
37
  * import { ChimeClient, GetRetentionSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
38
38
  * // const { ChimeClient, GetRetentionSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
39
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
40
+ * const config = {}; // type is ChimeClientConfig
39
41
  * const client = new ChimeClient(config);
40
42
  * const input = { // GetRetentionSettingsRequest
41
43
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, GetRoomCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, GetRoomCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // GetRoomRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -37,6 +37,8 @@ declare const GetUserCommand_base: {
37
37
  * ```javascript
38
38
  * import { ChimeClient, GetUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
39
39
  * // const { ChimeClient, GetUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
40
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
41
+ * const config = {}; // type is ChimeClientConfig
40
42
  * const client = new ChimeClient(config);
41
43
  * const input = { // GetUserRequest
42
44
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetUserSettingsCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, GetUserSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, GetUserSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // GetUserSettingsRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const InviteUsersCommand_base: {
35
35
  * ```javascript
36
36
  * import { ChimeClient, InviteUsersCommand } from "@aws-sdk/client-chime"; // ES Modules import
37
37
  * // const { ChimeClient, InviteUsersCommand } = require("@aws-sdk/client-chime"); // CommonJS import
38
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
39
+ * const config = {}; // type is ChimeClientConfig
38
40
  * const client = new ChimeClient(config);
39
41
  * const input = { // InviteUsersRequest
40
42
  * AccountId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const ListAccountsCommand_base: {
35
35
  * ```javascript
36
36
  * import { ChimeClient, ListAccountsCommand } from "@aws-sdk/client-chime"; // ES Modules import
37
37
  * // const { ChimeClient, ListAccountsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
38
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
39
+ * const config = {}; // type is ChimeClientConfig
38
40
  * const client = new ChimeClient(config);
39
41
  * const input = { // ListAccountsRequest
40
42
  * Name: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListBotsCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, ListBotsCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, ListBotsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // ListBotsRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListPhoneNumberOrdersCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, ListPhoneNumberOrdersCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, ListPhoneNumberOrdersCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // ListPhoneNumberOrdersRequest
38
40
  * NextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListPhoneNumbersCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, ListPhoneNumbersCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, ListPhoneNumbersCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // ListPhoneNumbersRequest
38
40
  * Status: "AcquireInProgress" || "AcquireFailed" || "Unassigned" || "Assigned" || "ReleaseInProgress" || "DeleteInProgress" || "ReleaseFailed" || "DeleteFailed",
@@ -34,6 +34,8 @@ declare const ListRoomMembershipsCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, ListRoomMembershipsCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, ListRoomMembershipsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // ListRoomMembershipsRequest
39
41
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListRoomsCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, ListRoomsCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, ListRoomsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // ListRoomsRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListSupportedPhoneNumberCountriesCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, ListSupportedPhoneNumberCountriesCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, ListSupportedPhoneNumberCountriesCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // ListSupportedPhoneNumberCountriesRequest
38
40
  * ProductType: "BusinessCalling" || "VoiceConnector" || "SipMediaApplicationDialIn", // required
@@ -34,6 +34,8 @@ declare const ListUsersCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, ListUsersCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, ListUsersCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // ListUsersRequest
39
41
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const LogoutUserCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, LogoutUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, LogoutUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // LogoutUserRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const PutEventsConfigurationCommand_base: {
35
35
  * ```javascript
36
36
  * import { ChimeClient, PutEventsConfigurationCommand } from "@aws-sdk/client-chime"; // ES Modules import
37
37
  * // const { ChimeClient, PutEventsConfigurationCommand } = require("@aws-sdk/client-chime"); // CommonJS import
38
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
39
+ * const config = {}; // type is ChimeClientConfig
38
40
  * const client = new ChimeClient(config);
39
41
  * const input = { // PutEventsConfigurationRequest
40
42
  * AccountId: "STRING_VALUE", // required
@@ -44,6 +44,8 @@ declare const PutRetentionSettingsCommand_base: {
44
44
  * ```javascript
45
45
  * import { ChimeClient, PutRetentionSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
46
46
  * // const { ChimeClient, PutRetentionSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
47
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
48
+ * const config = {}; // type is ChimeClientConfig
47
49
  * const client = new ChimeClient(config);
48
50
  * const input = { // PutRetentionSettingsRequest
49
51
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const RedactConversationMessageCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, RedactConversationMessageCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, RedactConversationMessageCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // RedactConversationMessageRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const RedactRoomMessageCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, RedactRoomMessageCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, RedactRoomMessageCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // RedactRoomMessageRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const RegenerateSecurityTokenCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, RegenerateSecurityTokenCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, RegenerateSecurityTokenCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // RegenerateSecurityTokenRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const ResetPersonalPINCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, ResetPersonalPINCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, ResetPersonalPINCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // ResetPersonalPINRequest
39
41
  * AccountId: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const RestorePhoneNumberCommand_base: {
34
34
  * ```javascript
35
35
  * import { ChimeClient, RestorePhoneNumberCommand } from "@aws-sdk/client-chime"; // ES Modules import
36
36
  * // const { ChimeClient, RestorePhoneNumberCommand } = require("@aws-sdk/client-chime"); // CommonJS import
37
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
38
+ * const config = {}; // type is ChimeClientConfig
37
39
  * const client = new ChimeClient(config);
38
40
  * const input = { // RestorePhoneNumberRequest
39
41
  * PhoneNumberId: "STRING_VALUE", // required
@@ -37,6 +37,8 @@ declare const SearchAvailablePhoneNumbersCommand_base: {
37
37
  * ```javascript
38
38
  * import { ChimeClient, SearchAvailablePhoneNumbersCommand } from "@aws-sdk/client-chime"; // ES Modules import
39
39
  * // const { ChimeClient, SearchAvailablePhoneNumbersCommand } = require("@aws-sdk/client-chime"); // CommonJS import
40
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
41
+ * const config = {}; // type is ChimeClientConfig
40
42
  * const client = new ChimeClient(config);
41
43
  * const input = { // SearchAvailablePhoneNumbersRequest
42
44
  * AreaCode: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const UpdateAccountCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, UpdateAccountCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, UpdateAccountCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // UpdateAccountRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -37,6 +37,8 @@ declare const UpdateAccountSettingsCommand_base: {
37
37
  * ```javascript
38
38
  * import { ChimeClient, UpdateAccountSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
39
39
  * // const { ChimeClient, UpdateAccountSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
40
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
41
+ * const config = {}; // type is ChimeClientConfig
40
42
  * const client = new ChimeClient(config);
41
43
  * const input = { // UpdateAccountSettingsRequest
42
44
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateBotCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, UpdateBotCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, UpdateBotCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // UpdateBotRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateGlobalSettingsCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, UpdateGlobalSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, UpdateGlobalSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // UpdateGlobalSettingsRequest
38
40
  * BusinessCalling: { // BusinessCallingSettings
@@ -35,6 +35,8 @@ declare const UpdatePhoneNumberCommand_base: {
35
35
  * ```javascript
36
36
  * import { ChimeClient, UpdatePhoneNumberCommand } from "@aws-sdk/client-chime"; // ES Modules import
37
37
  * // const { ChimeClient, UpdatePhoneNumberCommand } = require("@aws-sdk/client-chime"); // CommonJS import
38
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
39
+ * const config = {}; // type is ChimeClientConfig
38
40
  * const client = new ChimeClient(config);
39
41
  * const input = { // UpdatePhoneNumberRequest
40
42
  * PhoneNumberId: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const UpdatePhoneNumberSettingsCommand_base: {
35
35
  * ```javascript
36
36
  * import { ChimeClient, UpdatePhoneNumberSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
37
37
  * // const { ChimeClient, UpdatePhoneNumberSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
38
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
39
+ * const config = {}; // type is ChimeClientConfig
38
40
  * const client = new ChimeClient(config);
39
41
  * const input = { // UpdatePhoneNumberSettingsRequest
40
42
  * CallingName: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateRoomCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, UpdateRoomCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, UpdateRoomCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // UpdateRoomRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const UpdateRoomMembershipCommand_base: {
36
36
  * ```javascript
37
37
  * import { ChimeClient, UpdateRoomMembershipCommand } from "@aws-sdk/client-chime"; // ES Modules import
38
38
  * // const { ChimeClient, UpdateRoomMembershipCommand } = require("@aws-sdk/client-chime"); // CommonJS import
39
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
40
+ * const config = {}; // type is ChimeClientConfig
39
41
  * const client = new ChimeClient(config);
40
42
  * const input = { // UpdateRoomMembershipRequest
41
43
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateUserCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, UpdateUserCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, UpdateUserCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // UpdateUserRequest
38
40
  * AccountId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateUserSettingsCommand_base: {
33
33
  * ```javascript
34
34
  * import { ChimeClient, UpdateUserSettingsCommand } from "@aws-sdk/client-chime"; // ES Modules import
35
35
  * // const { ChimeClient, UpdateUserSettingsCommand } = require("@aws-sdk/client-chime"); // CommonJS import
36
+ * // import type { ChimeClientConfig } from "@aws-sdk/client-chime";
37
+ * const config = {}; // type is ChimeClientConfig
36
38
  * const client = new ChimeClient(config);
37
39
  * const input = { // UpdateUserSettingsRequest
38
40
  * AccountId: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime",
3
3
  "description": "AWS SDK for JavaScript Chime Client for Node.js, Browser and React Native",
4
- "version": "3.888.0",
4
+ "version": "3.891.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",
@@ -20,41 +20,41 @@
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.888.0",
24
- "@aws-sdk/credential-provider-node": "3.888.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.888.0",
29
- "@aws-sdk/region-config-resolver": "3.887.0",
23
+ "@aws-sdk/core": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
+ "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.887.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.888.0",
34
- "@smithy/config-resolver": "^4.2.1",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
+ "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.1",
41
- "@smithy/middleware-retry": "^4.2.1",
40
+ "@smithy/middleware-endpoint": "^4.2.2",
41
+ "@smithy/middleware-retry": "^4.2.3",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
- "@smithy/node-config-provider": "^4.2.1",
44
+ "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.1",
47
+ "@smithy/smithy-client": "^4.6.2",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.1",
54
- "@smithy/util-defaults-mode-node": "^4.1.1",
55
- "@smithy/util-endpoints": "^3.1.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.2",
54
+ "@smithy/util-defaults-mode-node": "^4.1.2",
55
+ "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "@types/uuid": "^9.0.1",
60
60
  "tslib": "^2.6.2",