@wildix/xbees-users-client 1.0.40 → 1.0.42

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.
@@ -362,6 +362,7 @@ const se_QueryColleaguesCommand = async (input, context) => {
362
362
  });
363
363
  let body;
364
364
  body = JSON.stringify((0, smithy_client_1.take)(input, {
365
+ 'invite': [],
365
366
  'query': _ => (0, smithy_client_1._json)(_),
366
367
  }));
367
368
  b.m("POST")
@@ -337,6 +337,7 @@ export const se_QueryColleaguesCommand = async (input, context) => {
337
337
  });
338
338
  let body;
339
339
  body = JSON.stringify(take(input, {
340
+ 'invite': [],
340
341
  'query': _ => _json(_),
341
342
  }));
342
343
  b.m("POST")
@@ -67,6 +67,7 @@ declare const QueryColleaguesCommand_base: {
67
67
  * count: Number("int"),
68
68
  * dir: "asc" || "desc",
69
69
  * },
70
+ * invite: true || false,
70
71
  * };
71
72
  * const command = new QueryColleaguesCommand(input);
72
73
  * const response = await client.send(command);
@@ -1286,6 +1286,11 @@ export interface QueryColleaguesInput {
1286
1286
  */
1287
1287
  company?: string | undefined;
1288
1288
  query?: QueryColleaguesParameters | undefined;
1289
+ /**
1290
+ * If enabled, the system will automatically invite users for colleagues returned from the PBX if they haven't logged in yet.
1291
+ * @public
1292
+ */
1293
+ invite?: boolean | undefined;
1289
1294
  }
1290
1295
  /**
1291
1296
  * @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.40",
4
+ "version": "1.0.42",
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",
@@ -80,4 +80,4 @@
80
80
  "react-native": {
81
81
  "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
82
82
  }
83
- }
83
+ }