@wildix/xbees-users-client 1.0.38 → 1.0.39

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 (51) hide show
  1. package/dist-cjs/UsersClient.js +4 -5
  2. package/dist-cjs/models/models_0.js +26 -21
  3. package/dist-cjs/protocols/Aws_restJson1.js +73 -116
  4. package/dist-cjs/runtimeConfig.browser.js +1 -1
  5. package/dist-cjs/runtimeConfig.js +4 -3
  6. package/dist-cjs/runtimeExtensions.js +2 -10
  7. package/dist-es/UsersClient.js +4 -5
  8. package/dist-es/models/models_0.js +21 -16
  9. package/dist-es/protocols/Aws_restJson1.js +6 -49
  10. package/dist-es/runtimeConfig.browser.js +2 -2
  11. package/dist-es/runtimeConfig.js +5 -4
  12. package/dist-es/runtimeExtensions.js +2 -10
  13. package/dist-types/UsersClient.d.ts +1 -1
  14. package/dist-types/commands/BatchGetUsersCommand.d.ts +12 -0
  15. package/dist-types/commands/BatchGetUsersEmailNotificationsSettingsCommand.d.ts +12 -0
  16. package/dist-types/commands/BatchGetUsersPbxLinkDataCommand.d.ts +12 -0
  17. package/dist-types/commands/BatchGetUsersPbxLinkDataV1Command.d.ts +12 -0
  18. package/dist-types/commands/ChangeUserEmailCommand.d.ts +12 -0
  19. package/dist-types/commands/CreateBotApiKeyCommand.d.ts +14 -1
  20. package/dist-types/commands/CreateBotCommand.d.ts +17 -3
  21. package/dist-types/commands/CreateSystemBotCommand.d.ts +12 -0
  22. package/dist-types/commands/DeleteBotApiKeyCommand.d.ts +12 -0
  23. package/dist-types/commands/DeleteBotCommand.d.ts +12 -0
  24. package/dist-types/commands/GetBotCallbackCommand.d.ts +13 -1
  25. package/dist-types/commands/GetBotCommand.d.ts +14 -1
  26. package/dist-types/commands/GetUserCommand.d.ts +12 -0
  27. package/dist-types/commands/GetUserEmailNotificationsSettingsCommand.d.ts +12 -0
  28. package/dist-types/commands/GetUserPbxLinkDataCommand.d.ts +12 -0
  29. package/dist-types/commands/GetUserPbxLinkSuggestionCommand.d.ts +12 -0
  30. package/dist-types/commands/GetUserPbxLinkSuggestionV1Command.d.ts +12 -0
  31. package/dist-types/commands/IntelligenceSearchCommand.d.ts +12 -0
  32. package/dist-types/commands/ListBotApiKeysCommand.d.ts +12 -0
  33. package/dist-types/commands/ListBotsCommand.d.ts +14 -1
  34. package/dist-types/commands/PartialUpdateUserEmailNotificationsSettingsCommand.d.ts +12 -0
  35. package/dist-types/commands/QueryColleaguesCommand.d.ts +12 -0
  36. package/dist-types/commands/QueryUserCommand.d.ts +12 -0
  37. package/dist-types/commands/QueryUsersCommand.d.ts +12 -0
  38. package/dist-types/commands/ToggleTranscriptionEmailNotificationsSubscriptionCommand.d.ts +12 -0
  39. package/dist-types/commands/ToggleUnreadEmailNotificationsSubscriptionCommand.d.ts +12 -0
  40. package/dist-types/commands/UpdateBotCallbackCommand.d.ts +14 -2
  41. package/dist-types/commands/UpdateBotCommand.d.ts +17 -3
  42. package/dist-types/commands/UpdateUserEmailNotificationsSettingsCommand.d.ts +12 -0
  43. package/dist-types/commands/UploadPictureCommand.d.ts +12 -0
  44. package/dist-types/commands/UploadPictureV1Command.d.ts +12 -0
  45. package/dist-types/commands/VerifyBotSecretKeyCommand.d.ts +12 -0
  46. package/dist-types/commands/VerifyBotSecretKeyV1Command.d.ts +12 -0
  47. package/dist-types/models/models_0.d.ts +162 -118
  48. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  49. package/dist-types/runtimeConfig.d.ts +3 -2
  50. package/dist-types/runtimeConfig.native.d.ts +3 -2
  51. package/package.json +37 -33
@@ -43,10 +43,11 @@ declare const GetBotCommand_base: {
43
43
  * const response = await client.send(command);
44
44
  * // { // GetBotOutput
45
45
  * // bot: { // Bot
46
- * // id: "STRING_VALUE", // required
47
46
  * // name: "STRING_VALUE", // required
48
47
  * // picture: "STRING_VALUE",
49
48
  * // searchable: true || false,
49
+ * // access: "EVERYBODY" || "ORGANIZATION",
50
+ * // id: "STRING_VALUE", // required
50
51
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
51
52
  * // integrationApiKeysCount: Number("int"), // required
52
53
  * // createdAt: "STRING_VALUE", // required
@@ -71,6 +72,18 @@ declare const GetBotCommand_base: {
71
72
  * @throws {@link UsersServiceException}
72
73
  * <p>Base exception class for all service exceptions from Users service.</p>
73
74
  *
75
+ *
74
76
  */
75
77
  export declare class GetBotCommand extends GetBotCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: GetBotInput;
82
+ output: GetBotOutput;
83
+ };
84
+ sdk: {
85
+ input: GetBotCommandInput;
86
+ output: GetBotCommandOutput;
87
+ };
88
+ };
76
89
  }
@@ -78,6 +78,18 @@ declare const GetUserCommand_base: {
78
78
  * @throws {@link UsersServiceException}
79
79
  * <p>Base exception class for all service exceptions from Users service.</p>
80
80
  *
81
+ *
81
82
  */
82
83
  export declare class GetUserCommand extends GetUserCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: GetUserInput;
88
+ output: GetUserOutput;
89
+ };
90
+ sdk: {
91
+ input: GetUserCommandInput;
92
+ output: GetUserCommandOutput;
93
+ };
94
+ };
83
95
  }
@@ -63,7 +63,19 @@ declare const GetUserEmailNotificationsSettingsCommand_base: {
63
63
  * @throws {@link UsersServiceException}
64
64
  * <p>Base exception class for all service exceptions from Users service.</p>
65
65
  *
66
+ *
66
67
  * @public
67
68
  */
68
69
  export declare class GetUserEmailNotificationsSettingsCommand extends GetUserEmailNotificationsSettingsCommand_base {
70
+ /** @internal type navigation helper, not in runtime. */
71
+ protected static __types: {
72
+ api: {
73
+ input: GetUserEmailNotificationsSettingsInput;
74
+ output: GetUserEmailNotificationsSettingsOutput;
75
+ };
76
+ sdk: {
77
+ input: GetUserEmailNotificationsSettingsCommandInput;
78
+ output: GetUserEmailNotificationsSettingsCommandOutput;
79
+ };
80
+ };
69
81
  }
@@ -115,6 +115,18 @@ declare const GetUserPbxLinkDataCommand_base: {
115
115
  * @throws {@link UsersServiceException}
116
116
  * <p>Base exception class for all service exceptions from Users service.</p>
117
117
  *
118
+ *
118
119
  */
119
120
  export declare class GetUserPbxLinkDataCommand extends GetUserPbxLinkDataCommand_base {
121
+ /** @internal type navigation helper, not in runtime. */
122
+ protected static __types: {
123
+ api: {
124
+ input: GetUserPbxLinkDataInput;
125
+ output: GetUserPbxLinkDataOutput;
126
+ };
127
+ sdk: {
128
+ input: GetUserPbxLinkDataCommandInput;
129
+ output: GetUserPbxLinkDataCommandOutput;
130
+ };
131
+ };
120
132
  }
@@ -62,6 +62,18 @@ declare const GetUserPbxLinkSuggestionCommand_base: {
62
62
  * @throws {@link UsersServiceException}
63
63
  * <p>Base exception class for all service exceptions from Users service.</p>
64
64
  *
65
+ *
65
66
  */
66
67
  export declare class GetUserPbxLinkSuggestionCommand extends GetUserPbxLinkSuggestionCommand_base {
68
+ /** @internal type navigation helper, not in runtime. */
69
+ protected static __types: {
70
+ api: {
71
+ input: GetUserPbxLinkSuggestionInput;
72
+ output: GetUserPbxLinkSuggestionOutput;
73
+ };
74
+ sdk: {
75
+ input: GetUserPbxLinkSuggestionCommandInput;
76
+ output: GetUserPbxLinkSuggestionCommandOutput;
77
+ };
78
+ };
67
79
  }
@@ -62,6 +62,18 @@ declare const GetUserPbxLinkSuggestionV1Command_base: {
62
62
  * @throws {@link UsersServiceException}
63
63
  * <p>Base exception class for all service exceptions from Users service.</p>
64
64
  *
65
+ *
65
66
  */
66
67
  export declare class GetUserPbxLinkSuggestionV1Command extends GetUserPbxLinkSuggestionV1Command_base {
68
+ /** @internal type navigation helper, not in runtime. */
69
+ protected static __types: {
70
+ api: {
71
+ input: GetUserPbxLinkSuggestionV1Input;
72
+ output: GetUserPbxLinkSuggestionV1Output;
73
+ };
74
+ sdk: {
75
+ input: GetUserPbxLinkSuggestionV1CommandInput;
76
+ output: GetUserPbxLinkSuggestionV1CommandOutput;
77
+ };
78
+ };
67
79
  }
@@ -67,7 +67,19 @@ declare const IntelligenceSearchCommand_base: {
67
67
  * @throws {@link UsersServiceException}
68
68
  * <p>Base exception class for all service exceptions from Users service.</p>
69
69
  *
70
+ *
70
71
  * @public
71
72
  */
72
73
  export declare class IntelligenceSearchCommand extends IntelligenceSearchCommand_base {
74
+ /** @internal type navigation helper, not in runtime. */
75
+ protected static __types: {
76
+ api: {
77
+ input: IntelligenceSearchInput;
78
+ output: IntelligenceSearchOutput;
79
+ };
80
+ sdk: {
81
+ input: IntelligenceSearchCommandInput;
82
+ output: IntelligenceSearchCommandOutput;
83
+ };
84
+ };
73
85
  }
@@ -66,6 +66,18 @@ declare const ListBotApiKeysCommand_base: {
66
66
  * @throws {@link UsersServiceException}
67
67
  * <p>Base exception class for all service exceptions from Users service.</p>
68
68
  *
69
+ *
69
70
  */
70
71
  export declare class ListBotApiKeysCommand extends ListBotApiKeysCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: ListBotApiKeysInput;
76
+ output: ListBotApiKeysOutput;
77
+ };
78
+ sdk: {
79
+ input: ListBotApiKeysCommandInput;
80
+ output: ListBotApiKeysCommandOutput;
81
+ };
82
+ };
71
83
  }
@@ -43,10 +43,11 @@ declare const ListBotsCommand_base: {
43
43
  * // { // ListBotsOutput
44
44
  * // bots: [ // BotList // required
45
45
  * // { // Bot
46
- * // id: "STRING_VALUE", // required
47
46
  * // name: "STRING_VALUE", // required
48
47
  * // picture: "STRING_VALUE",
49
48
  * // searchable: true || false,
49
+ * // access: "EVERYBODY" || "ORGANIZATION",
50
+ * // id: "STRING_VALUE", // required
50
51
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
51
52
  * // integrationApiKeysCount: Number("int"), // required
52
53
  * // createdAt: "STRING_VALUE", // required
@@ -70,6 +71,18 @@ declare const ListBotsCommand_base: {
70
71
  * @throws {@link UsersServiceException}
71
72
  * <p>Base exception class for all service exceptions from Users service.</p>
72
73
  *
74
+ *
73
75
  */
74
76
  export declare class ListBotsCommand extends ListBotsCommand_base {
77
+ /** @internal type navigation helper, not in runtime. */
78
+ protected static __types: {
79
+ api: {
80
+ input: ListBotsInput;
81
+ output: ListBotsOutput;
82
+ };
83
+ sdk: {
84
+ input: ListBotsCommandInput;
85
+ output: ListBotsCommandOutput;
86
+ };
87
+ };
75
88
  }
@@ -63,7 +63,19 @@ declare const PartialUpdateUserEmailNotificationsSettingsCommand_base: {
63
63
  * @throws {@link UsersServiceException}
64
64
  * <p>Base exception class for all service exceptions from Users service.</p>
65
65
  *
66
+ *
66
67
  * @public
67
68
  */
68
69
  export declare class PartialUpdateUserEmailNotificationsSettingsCommand extends PartialUpdateUserEmailNotificationsSettingsCommand_base {
70
+ /** @internal type navigation helper, not in runtime. */
71
+ protected static __types: {
72
+ api: {
73
+ input: PartialUpdateUserEmailNotificationsSettingsInput;
74
+ output: PartialUpdateUserEmailNotificationsSettingsOutput;
75
+ };
76
+ sdk: {
77
+ input: PartialUpdateUserEmailNotificationsSettingsCommandInput;
78
+ output: PartialUpdateUserEmailNotificationsSettingsCommandOutput;
79
+ };
80
+ };
69
81
  }
@@ -133,6 +133,18 @@ declare const QueryColleaguesCommand_base: {
133
133
  * @throws {@link UsersServiceException}
134
134
  * <p>Base exception class for all service exceptions from Users service.</p>
135
135
  *
136
+ *
136
137
  */
137
138
  export declare class QueryColleaguesCommand extends QueryColleaguesCommand_base {
139
+ /** @internal type navigation helper, not in runtime. */
140
+ protected static __types: {
141
+ api: {
142
+ input: QueryColleaguesInput;
143
+ output: QueryColleaguesOutput;
144
+ };
145
+ sdk: {
146
+ input: QueryColleaguesCommandInput;
147
+ output: QueryColleaguesCommandOutput;
148
+ };
149
+ };
138
150
  }
@@ -87,6 +87,18 @@ declare const QueryUserCommand_base: {
87
87
  * @throws {@link UsersServiceException}
88
88
  * <p>Base exception class for all service exceptions from Users service.</p>
89
89
  *
90
+ *
90
91
  */
91
92
  export declare class QueryUserCommand extends QueryUserCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: QueryUserInput;
97
+ output: QueryUserOutput;
98
+ };
99
+ sdk: {
100
+ input: QueryUserCommandInput;
101
+ output: QueryUserCommandOutput;
102
+ };
103
+ };
92
104
  }
@@ -87,6 +87,18 @@ declare const QueryUsersCommand_base: {
87
87
  * @throws {@link UsersServiceException}
88
88
  * <p>Base exception class for all service exceptions from Users service.</p>
89
89
  *
90
+ *
90
91
  */
91
92
  export declare class QueryUsersCommand extends QueryUsersCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: QueryUsersInput;
97
+ output: QueryUsersOutput;
98
+ };
99
+ sdk: {
100
+ input: QueryUsersCommandInput;
101
+ output: QueryUsersCommandOutput;
102
+ };
103
+ };
92
104
  }
@@ -57,7 +57,19 @@ declare const ToggleTranscriptionEmailNotificationsSubscriptionCommand_base: {
57
57
  * @throws {@link UsersServiceException}
58
58
  * <p>Base exception class for all service exceptions from Users service.</p>
59
59
  *
60
+ *
60
61
  * @public
61
62
  */
62
63
  export declare class ToggleTranscriptionEmailNotificationsSubscriptionCommand extends ToggleTranscriptionEmailNotificationsSubscriptionCommand_base {
64
+ /** @internal type navigation helper, not in runtime. */
65
+ protected static __types: {
66
+ api: {
67
+ input: ToggleTranscriptionEmailNotificationsSubscriptionInput;
68
+ output: {};
69
+ };
70
+ sdk: {
71
+ input: ToggleTranscriptionEmailNotificationsSubscriptionCommandInput;
72
+ output: ToggleTranscriptionEmailNotificationsSubscriptionCommandOutput;
73
+ };
74
+ };
63
75
  }
@@ -57,7 +57,19 @@ declare const ToggleUnreadEmailNotificationsSubscriptionCommand_base: {
57
57
  * @throws {@link UsersServiceException}
58
58
  * <p>Base exception class for all service exceptions from Users service.</p>
59
59
  *
60
+ *
60
61
  * @public
61
62
  */
62
63
  export declare class ToggleUnreadEmailNotificationsSubscriptionCommand extends ToggleUnreadEmailNotificationsSubscriptionCommand_base {
64
+ /** @internal type navigation helper, not in runtime. */
65
+ protected static __types: {
66
+ api: {
67
+ input: ToggleUnreadEmailNotificationsSubscriptionInput;
68
+ output: {};
69
+ };
70
+ sdk: {
71
+ input: ToggleUnreadEmailNotificationsSubscriptionCommandInput;
72
+ output: ToggleUnreadEmailNotificationsSubscriptionCommandOutput;
73
+ };
74
+ };
63
75
  }
@@ -44,7 +44,7 @@ declare const UpdateBotCallbackCommand_base: {
44
44
  * prompt: "STRING_VALUE", // required
45
45
  * embeddedTools: [ // BotLlmEmbeddedToolsList
46
46
  * { // BotLlmEmbeddedTool
47
- * type: "HANDOVER" || "DELEGATE", // required
47
+ * type: "HANDOVER" || "DELEGATE" || "SUGGESTIONS", // required
48
48
  * name: "STRING_VALUE", // required
49
49
  * parameters: "DOCUMENT_VALUE",
50
50
  * },
@@ -120,7 +120,7 @@ declare const UpdateBotCallbackCommand_base: {
120
120
  * // prompt: "STRING_VALUE", // required
121
121
  * // embeddedTools: [ // BotLlmEmbeddedToolsList
122
122
  * // { // BotLlmEmbeddedTool
123
- * // type: "HANDOVER" || "DELEGATE", // required
123
+ * // type: "HANDOVER" || "DELEGATE" || "SUGGESTIONS", // required
124
124
  * // name: "STRING_VALUE", // required
125
125
  * // parameters: "DOCUMENT_VALUE",
126
126
  * // },
@@ -203,6 +203,18 @@ declare const UpdateBotCallbackCommand_base: {
203
203
  * @throws {@link UsersServiceException}
204
204
  * <p>Base exception class for all service exceptions from Users service.</p>
205
205
  *
206
+ *
206
207
  */
207
208
  export declare class UpdateBotCallbackCommand extends UpdateBotCallbackCommand_base {
209
+ /** @internal type navigation helper, not in runtime. */
210
+ protected static __types: {
211
+ api: {
212
+ input: UpdateBotCallbackInput;
213
+ output: UpdateBotCallbackOutput;
214
+ };
215
+ sdk: {
216
+ input: UpdateBotCallbackCommandInput;
217
+ output: UpdateBotCallbackCommandOutput;
218
+ };
219
+ };
208
220
  }
@@ -36,20 +36,22 @@ declare const UpdateBotCommand_base: {
36
36
  * // const { UsersClient, UpdateBotCommand } = require("@wildix/xbees-users-client"); // CommonJS import
37
37
  * const client = new UsersClient(config);
38
38
  * const input = { // UpdateBotInput
39
- * company: "STRING_VALUE",
40
- * botId: "STRING_VALUE", // required
41
39
  * name: "STRING_VALUE", // required
42
40
  * picture: "STRING_VALUE",
43
41
  * searchable: true || false,
42
+ * access: "EVERYBODY" || "ORGANIZATION",
43
+ * company: "STRING_VALUE",
44
+ * botId: "STRING_VALUE", // required
44
45
  * };
45
46
  * const command = new UpdateBotCommand(input);
46
47
  * const response = await client.send(command);
47
48
  * // { // UpdateBotOutput
48
49
  * // bot: { // Bot
49
- * // id: "STRING_VALUE", // required
50
50
  * // name: "STRING_VALUE", // required
51
51
  * // picture: "STRING_VALUE",
52
52
  * // searchable: true || false,
53
+ * // access: "EVERYBODY" || "ORGANIZATION",
54
+ * // id: "STRING_VALUE", // required
53
55
  * // integrationType: "LLM" || "DIALOGFLOW_CX" || "OPEN_AI_ASSISTANT" || "WEBHOOK" || "SQS", // required
54
56
  * // integrationApiKeysCount: Number("int"), // required
55
57
  * // createdAt: "STRING_VALUE", // required
@@ -72,6 +74,18 @@ declare const UpdateBotCommand_base: {
72
74
  * @throws {@link UsersServiceException}
73
75
  * <p>Base exception class for all service exceptions from Users service.</p>
74
76
  *
77
+ *
75
78
  */
76
79
  export declare class UpdateBotCommand extends UpdateBotCommand_base {
80
+ /** @internal type navigation helper, not in runtime. */
81
+ protected static __types: {
82
+ api: {
83
+ input: UpdateBotInput;
84
+ output: UpdateBotOutput;
85
+ };
86
+ sdk: {
87
+ input: UpdateBotCommandInput;
88
+ output: UpdateBotCommandOutput;
89
+ };
90
+ };
77
91
  }
@@ -63,7 +63,19 @@ declare const UpdateUserEmailNotificationsSettingsCommand_base: {
63
63
  * @throws {@link UsersServiceException}
64
64
  * <p>Base exception class for all service exceptions from Users service.</p>
65
65
  *
66
+ *
66
67
  * @public
67
68
  */
68
69
  export declare class UpdateUserEmailNotificationsSettingsCommand extends UpdateUserEmailNotificationsSettingsCommand_base {
70
+ /** @internal type navigation helper, not in runtime. */
71
+ protected static __types: {
72
+ api: {
73
+ input: UpdateUserEmailNotificationsSettingsInput;
74
+ output: UpdateUserEmailNotificationsSettingsOutput;
75
+ };
76
+ sdk: {
77
+ input: UpdateUserEmailNotificationsSettingsCommandInput;
78
+ output: UpdateUserEmailNotificationsSettingsCommandOutput;
79
+ };
80
+ };
69
81
  }
@@ -59,6 +59,18 @@ declare const UploadPictureCommand_base: {
59
59
  * @throws {@link UsersServiceException}
60
60
  * <p>Base exception class for all service exceptions from Users service.</p>
61
61
  *
62
+ *
62
63
  */
63
64
  export declare class UploadPictureCommand extends UploadPictureCommand_base {
65
+ /** @internal type navigation helper, not in runtime. */
66
+ protected static __types: {
67
+ api: {
68
+ input: UploadPictureInput;
69
+ output: UploadPictureOutput;
70
+ };
71
+ sdk: {
72
+ input: UploadPictureCommandInput;
73
+ output: UploadPictureCommandOutput;
74
+ };
75
+ };
64
76
  }
@@ -59,6 +59,18 @@ declare const UploadPictureV1Command_base: {
59
59
  * @throws {@link UsersServiceException}
60
60
  * <p>Base exception class for all service exceptions from Users service.</p>
61
61
  *
62
+ *
62
63
  */
63
64
  export declare class UploadPictureV1Command extends UploadPictureV1Command_base {
65
+ /** @internal type navigation helper, not in runtime. */
66
+ protected static __types: {
67
+ api: {
68
+ input: UploadPictureV1Input;
69
+ output: UploadPictureV1Output;
70
+ };
71
+ sdk: {
72
+ input: UploadPictureV1CommandInput;
73
+ output: UploadPictureV1CommandOutput;
74
+ };
75
+ };
64
76
  }
@@ -63,6 +63,18 @@ declare const VerifyBotSecretKeyCommand_base: {
63
63
  * @throws {@link UsersServiceException}
64
64
  * <p>Base exception class for all service exceptions from Users service.</p>
65
65
  *
66
+ *
66
67
  */
67
68
  export declare class VerifyBotSecretKeyCommand extends VerifyBotSecretKeyCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: VerifyBotSecretKeyInput;
73
+ output: VerifyBotSecretKeyOutput;
74
+ };
75
+ sdk: {
76
+ input: VerifyBotSecretKeyCommandInput;
77
+ output: VerifyBotSecretKeyCommandOutput;
78
+ };
79
+ };
68
80
  }
@@ -63,6 +63,18 @@ declare const VerifyBotSecretKeyV1Command_base: {
63
63
  * @throws {@link UsersServiceException}
64
64
  * <p>Base exception class for all service exceptions from Users service.</p>
65
65
  *
66
+ *
66
67
  */
67
68
  export declare class VerifyBotSecretKeyV1Command extends VerifyBotSecretKeyV1Command_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: VerifyBotSecretKeyV1Input;
73
+ output: VerifyBotSecretKeyV1Output;
74
+ };
75
+ sdk: {
76
+ input: VerifyBotSecretKeyV1CommandInput;
77
+ output: VerifyBotSecretKeyV1CommandOutput;
78
+ };
79
+ };
68
80
  }