@wildix/xbees-kite-client 1.0.18 → 1.0.19

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.
@@ -46,7 +46,10 @@ declare const ListServicesCommand_base: {
46
46
  * // id: Number("int"), // required
47
47
  * // uri: "STRING_VALUE", // required
48
48
  * // title: "STRING_VALUE", // required
49
- * // settings: {},
49
+ * // settings: { // ServiceSettings
50
+ * // phoneNumber: "STRING_VALUE",
51
+ * // messagingNumber: "STRING_VALUE",
52
+ * // },
50
53
  * // extensions: [ // ExtensionsList // required
51
54
  * // "STRING_VALUE",
52
55
  * // ],
@@ -387,6 +387,8 @@ export interface ServicePbx {
387
387
  * @public
388
388
  */
389
389
  export interface ServiceSettings {
390
+ phoneNumber?: string | undefined;
391
+ messagingNumber?: string | undefined;
390
392
  }
391
393
  /**
392
394
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/xbees-kite-client",
3
3
  "description": "@wildix/xbees-kite-client client",
4
- "version": "1.0.18",
4
+ "version": "1.0.19",
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",