@wildix/xbees-users-client 1.0.24 → 1.0.26

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 (31) hide show
  1. package/dist-cjs/Users.js +12 -0
  2. package/dist-cjs/commands/BatchGetUsersPbxLinkDataV1Command.js +21 -0
  3. package/dist-cjs/commands/GetUserPbxLinkSuggestionV1Command.js +21 -0
  4. package/dist-cjs/commands/GetUserSettingsCommand.js +21 -0
  5. package/dist-cjs/commands/PartialUpdateUserSettingsCommand.js +21 -0
  6. package/dist-cjs/commands/UploadPictureV1Command.js +21 -0
  7. package/dist-cjs/commands/VerifyBotSecretKeyV1Command.js +21 -0
  8. package/dist-cjs/commands/index.js +6 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +202 -16
  10. package/dist-es/Users.js +12 -0
  11. package/dist-es/commands/BatchGetUsersPbxLinkDataV1Command.js +17 -0
  12. package/dist-es/commands/GetUserPbxLinkSuggestionV1Command.js +17 -0
  13. package/dist-es/commands/GetUserSettingsCommand.js +17 -0
  14. package/dist-es/commands/PartialUpdateUserSettingsCommand.js +17 -0
  15. package/dist-es/commands/UploadPictureV1Command.js +17 -0
  16. package/dist-es/commands/VerifyBotSecretKeyV1Command.js +17 -0
  17. package/dist-es/commands/index.js +6 -0
  18. package/dist-es/protocols/Aws_restJson1.js +184 -11
  19. package/dist-types/Users.d.ts +43 -0
  20. package/dist-types/UsersClient.d.ts +8 -2
  21. package/dist-types/commands/BatchGetUsersPbxLinkDataV1Command.d.ts +122 -0
  22. package/dist-types/commands/GetUserPbxLinkDataCommand.d.ts +1 -1
  23. package/dist-types/commands/GetUserPbxLinkSuggestionV1Command.d.ts +67 -0
  24. package/dist-types/commands/GetUserSettingsCommand.d.ts +69 -0
  25. package/dist-types/commands/PartialUpdateUserSettingsCommand.d.ts +76 -0
  26. package/dist-types/commands/UploadPictureV1Command.d.ts +64 -0
  27. package/dist-types/commands/VerifyBotSecretKeyV1Command.d.ts +68 -0
  28. package/dist-types/commands/index.d.ts +6 -0
  29. package/dist-types/models/models_0.d.ts +157 -1
  30. package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
  31. package/package.json +2 -2
@@ -1,5 +1,6 @@
1
1
  import { BatchGetUsersCommandInput, BatchGetUsersCommandOutput } from "../commands/BatchGetUsersCommand";
2
2
  import { BatchGetUsersPbxLinkDataCommandInput, BatchGetUsersPbxLinkDataCommandOutput } from "../commands/BatchGetUsersPbxLinkDataCommand";
3
+ import { BatchGetUsersPbxLinkDataV1CommandInput, BatchGetUsersPbxLinkDataV1CommandOutput } from "../commands/BatchGetUsersPbxLinkDataV1Command";
3
4
  import { ChangeUserEmailCommandInput, ChangeUserEmailCommandOutput } from "../commands/ChangeUserEmailCommand";
4
5
  import { CreateBotApiKeyCommandInput, CreateBotApiKeyCommandOutput } from "../commands/CreateBotApiKeyCommand";
5
6
  import { CreateBotCommandInput, CreateBotCommandOutput } from "../commands/CreateBotCommand";
@@ -10,14 +11,19 @@ import { GetBotCommandInput, GetBotCommandOutput } from "../commands/GetBotComma
10
11
  import { GetUserCommandInput, GetUserCommandOutput } from "../commands/GetUserCommand";
11
12
  import { GetUserPbxLinkDataCommandInput, GetUserPbxLinkDataCommandOutput } from "../commands/GetUserPbxLinkDataCommand";
12
13
  import { GetUserPbxLinkSuggestionCommandInput, GetUserPbxLinkSuggestionCommandOutput } from "../commands/GetUserPbxLinkSuggestionCommand";
14
+ import { GetUserPbxLinkSuggestionV1CommandInput, GetUserPbxLinkSuggestionV1CommandOutput } from "../commands/GetUserPbxLinkSuggestionV1Command";
15
+ import { GetUserSettingsCommandInput, GetUserSettingsCommandOutput } from "../commands/GetUserSettingsCommand";
13
16
  import { ListBotApiKeysCommandInput, ListBotApiKeysCommandOutput } from "../commands/ListBotApiKeysCommand";
14
17
  import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand";
18
+ import { PartialUpdateUserSettingsCommandInput, PartialUpdateUserSettingsCommandOutput } from "../commands/PartialUpdateUserSettingsCommand";
15
19
  import { QueryUserCommandInput, QueryUserCommandOutput } from "../commands/QueryUserCommand";
16
20
  import { QueryUsersCommandInput, QueryUsersCommandOutput } from "../commands/QueryUsersCommand";
17
21
  import { UpdateBotCallbackCommandInput, UpdateBotCallbackCommandOutput } from "../commands/UpdateBotCallbackCommand";
18
22
  import { UpdateBotCommandInput, UpdateBotCommandOutput } from "../commands/UpdateBotCommand";
19
23
  import { UploadPictureCommandInput, UploadPictureCommandOutput } from "../commands/UploadPictureCommand";
24
+ import { UploadPictureV1CommandInput, UploadPictureV1CommandOutput } from "../commands/UploadPictureV1Command";
20
25
  import { VerifyBotSecretKeyCommandInput, VerifyBotSecretKeyCommandOutput } from "../commands/VerifyBotSecretKeyCommand";
26
+ import { VerifyBotSecretKeyV1CommandInput, VerifyBotSecretKeyV1CommandOutput } from "../commands/VerifyBotSecretKeyV1Command";
21
27
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
22
28
  import { SerdeContext as __SerdeContext } from "@smithy/types";
23
29
  /**
@@ -28,6 +34,10 @@ export declare const se_BatchGetUsersCommand: (input: BatchGetUsersCommandInput,
28
34
  * serializeAws_restJson1BatchGetUsersPbxLinkDataCommand
29
35
  */
30
36
  export declare const se_BatchGetUsersPbxLinkDataCommand: (input: BatchGetUsersPbxLinkDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ /**
38
+ * serializeAws_restJson1BatchGetUsersPbxLinkDataV1Command
39
+ */
40
+ export declare const se_BatchGetUsersPbxLinkDataV1Command: (input: BatchGetUsersPbxLinkDataV1CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
41
  /**
32
42
  * serializeAws_restJson1ChangeUserEmailCommand
33
43
  */
@@ -68,6 +78,14 @@ export declare const se_GetUserPbxLinkDataCommand: (input: GetUserPbxLinkDataCom
68
78
  * serializeAws_restJson1GetUserPbxLinkSuggestionCommand
69
79
  */
70
80
  export declare const se_GetUserPbxLinkSuggestionCommand: (input: GetUserPbxLinkSuggestionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
+ /**
82
+ * serializeAws_restJson1GetUserPbxLinkSuggestionV1Command
83
+ */
84
+ export declare const se_GetUserPbxLinkSuggestionV1Command: (input: GetUserPbxLinkSuggestionV1CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ /**
86
+ * serializeAws_restJson1GetUserSettingsCommand
87
+ */
88
+ export declare const se_GetUserSettingsCommand: (input: GetUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
89
  /**
72
90
  * serializeAws_restJson1ListBotApiKeysCommand
73
91
  */
@@ -76,6 +94,10 @@ export declare const se_ListBotApiKeysCommand: (input: ListBotApiKeysCommandInpu
76
94
  * serializeAws_restJson1ListBotsCommand
77
95
  */
78
96
  export declare const se_ListBotsCommand: (input: ListBotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
+ /**
98
+ * serializeAws_restJson1PartialUpdateUserSettingsCommand
99
+ */
100
+ export declare const se_PartialUpdateUserSettingsCommand: (input: PartialUpdateUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
101
  /**
80
102
  * serializeAws_restJson1QueryUserCommand
81
103
  */
@@ -96,10 +118,18 @@ export declare const se_UpdateBotCallbackCommand: (input: UpdateBotCallbackComma
96
118
  * serializeAws_restJson1UploadPictureCommand
97
119
  */
98
120
  export declare const se_UploadPictureCommand: (input: UploadPictureCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
+ /**
122
+ * serializeAws_restJson1UploadPictureV1Command
123
+ */
124
+ export declare const se_UploadPictureV1Command: (input: UploadPictureV1CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
125
  /**
100
126
  * serializeAws_restJson1VerifyBotSecretKeyCommand
101
127
  */
102
128
  export declare const se_VerifyBotSecretKeyCommand: (input: VerifyBotSecretKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
+ /**
130
+ * serializeAws_restJson1VerifyBotSecretKeyV1Command
131
+ */
132
+ export declare const se_VerifyBotSecretKeyV1Command: (input: VerifyBotSecretKeyV1CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
133
  /**
104
134
  * deserializeAws_restJson1BatchGetUsersCommand
105
135
  */
@@ -108,6 +138,10 @@ export declare const de_BatchGetUsersCommand: (output: __HttpResponse, context:
108
138
  * deserializeAws_restJson1BatchGetUsersPbxLinkDataCommand
109
139
  */
110
140
  export declare const de_BatchGetUsersPbxLinkDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetUsersPbxLinkDataCommandOutput>;
141
+ /**
142
+ * deserializeAws_restJson1BatchGetUsersPbxLinkDataV1Command
143
+ */
144
+ export declare const de_BatchGetUsersPbxLinkDataV1Command: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetUsersPbxLinkDataV1CommandOutput>;
111
145
  /**
112
146
  * deserializeAws_restJson1ChangeUserEmailCommand
113
147
  */
@@ -148,6 +182,14 @@ export declare const de_GetUserPbxLinkDataCommand: (output: __HttpResponse, cont
148
182
  * deserializeAws_restJson1GetUserPbxLinkSuggestionCommand
149
183
  */
150
184
  export declare const de_GetUserPbxLinkSuggestionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserPbxLinkSuggestionCommandOutput>;
185
+ /**
186
+ * deserializeAws_restJson1GetUserPbxLinkSuggestionV1Command
187
+ */
188
+ export declare const de_GetUserPbxLinkSuggestionV1Command: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserPbxLinkSuggestionV1CommandOutput>;
189
+ /**
190
+ * deserializeAws_restJson1GetUserSettingsCommand
191
+ */
192
+ export declare const de_GetUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserSettingsCommandOutput>;
151
193
  /**
152
194
  * deserializeAws_restJson1ListBotApiKeysCommand
153
195
  */
@@ -156,6 +198,10 @@ export declare const de_ListBotApiKeysCommand: (output: __HttpResponse, context:
156
198
  * deserializeAws_restJson1ListBotsCommand
157
199
  */
158
200
  export declare const de_ListBotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBotsCommandOutput>;
201
+ /**
202
+ * deserializeAws_restJson1PartialUpdateUserSettingsCommand
203
+ */
204
+ export declare const de_PartialUpdateUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PartialUpdateUserSettingsCommandOutput>;
159
205
  /**
160
206
  * deserializeAws_restJson1QueryUserCommand
161
207
  */
@@ -176,7 +222,15 @@ export declare const de_UpdateBotCallbackCommand: (output: __HttpResponse, conte
176
222
  * deserializeAws_restJson1UploadPictureCommand
177
223
  */
178
224
  export declare const de_UploadPictureCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadPictureCommandOutput>;
225
+ /**
226
+ * deserializeAws_restJson1UploadPictureV1Command
227
+ */
228
+ export declare const de_UploadPictureV1Command: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadPictureV1CommandOutput>;
179
229
  /**
180
230
  * deserializeAws_restJson1VerifyBotSecretKeyCommand
181
231
  */
182
232
  export declare const de_VerifyBotSecretKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyBotSecretKeyCommandOutput>;
233
+ /**
234
+ * deserializeAws_restJson1VerifyBotSecretKeyV1Command
235
+ */
236
+ export declare const de_VerifyBotSecretKeyV1Command: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyBotSecretKeyV1CommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/xbees-users-client",
3
3
  "description": "@wildix/xbees-users-client client",
4
- "version": "1.0.24",
4
+ "version": "1.0.26",
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",
@@ -76,4 +76,4 @@
76
76
  "react-native": {
77
77
  "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
78
78
  }
79
- }
79
+ }