@wildix/xbees-users-client 1.0.52 → 1.0.54
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.
|
@@ -66,8 +66,8 @@ export const PbxColleaguesSearchStrategy = {
|
|
|
66
66
|
};
|
|
67
67
|
export const AppType = {
|
|
68
68
|
COLLABORATION: "collaboration",
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
X_BEES: "x-bees",
|
|
70
|
+
X_HOPPERS: "x-hoppers",
|
|
71
71
|
};
|
|
72
72
|
export const BotAccess = {
|
|
73
73
|
EVERYBODY: "EVERYBODY",
|
|
@@ -27,7 +27,7 @@ declare const GetAppVersionCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Returns
|
|
30
|
+
* Returns the current Google Play Store version of the Android app for the specified appType (X-Bees, X-Hoppers, Collaboration).
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -35,7 +35,7 @@ declare const GetAppVersionCommand_base: {
|
|
|
35
35
|
* // const { UsersClient, GetAppVersionCommand } = require("@wildix/xbees-users-client"); // CommonJS import
|
|
36
36
|
* const client = new UsersClient(config);
|
|
37
37
|
* const input = { // GetAppVersionInput
|
|
38
|
-
* appType: "
|
|
38
|
+
* appType: "x-bees" || "x-hoppers" || "collaboration", // required
|
|
39
39
|
* };
|
|
40
40
|
* const command = new GetAppVersionCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
@@ -205,8 +205,8 @@ export type PbxColleaguesSearchStrategy = typeof PbxColleaguesSearchStrategy[key
|
|
|
205
205
|
*/
|
|
206
206
|
export declare const AppType: {
|
|
207
207
|
readonly COLLABORATION: "collaboration";
|
|
208
|
-
readonly
|
|
209
|
-
readonly
|
|
208
|
+
readonly X_BEES: "x-bees";
|
|
209
|
+
readonly X_HOPPERS: "x-hoppers";
|
|
210
210
|
};
|
|
211
211
|
/**
|
|
212
212
|
* @public
|
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.
|
|
4
|
+
"version": "1.0.54",
|
|
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",
|