@wildix/xbees-kite-client 1.0.21 → 1.0.22

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.
@@ -42,7 +42,25 @@ declare const ListSmsNumbersCommand_base: {
42
42
  * const response = await client.send(command);
43
43
  * // { // ListSmsNumbersOutput
44
44
  * // numbers: [ // SmsServiceNumbersList // required
45
- * // "STRING_VALUE",
45
+ * // { // SmsServiceNumber
46
+ * // number: "STRING_VALUE", // required
47
+ * // service: { // Service
48
+ * // id: Number("int"), // required
49
+ * // uri: "STRING_VALUE", // required
50
+ * // title: "STRING_VALUE", // required
51
+ * // settings: { // ServiceSettings
52
+ * // phoneNumber: "STRING_VALUE",
53
+ * // messagingNumber: "STRING_VALUE",
54
+ * // },
55
+ * // extensions: [ // ExtensionsList // required
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // pbx: { // ServicePbx
59
+ * // domain: "STRING_VALUE", // required
60
+ * // port: Number("int"), // required
61
+ * // },
62
+ * // },
63
+ * // },
46
64
  * // ],
47
65
  * // };
48
66
  *
@@ -42,7 +42,25 @@ declare const ListWhatsAppNumbersCommand_base: {
42
42
  * const response = await client.send(command);
43
43
  * // { // ListWhatsAppNumbersOutput
44
44
  * // numbers: [ // WhatsAppServiceNumbersList // required
45
- * // "STRING_VALUE",
45
+ * // { // WhatsAppServiceNumber
46
+ * // number: "STRING_VALUE", // required
47
+ * // service: { // Service
48
+ * // id: Number("int"), // required
49
+ * // uri: "STRING_VALUE", // required
50
+ * // title: "STRING_VALUE", // required
51
+ * // settings: { // ServiceSettings
52
+ * // phoneNumber: "STRING_VALUE",
53
+ * // messagingNumber: "STRING_VALUE",
54
+ * // },
55
+ * // extensions: [ // ExtensionsList // required
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // pbx: { // ServicePbx
59
+ * // domain: "STRING_VALUE", // required
60
+ * // port: Number("int"), // required
61
+ * // },
62
+ * // },
63
+ * // },
46
64
  * // ],
47
65
  * // };
48
66
  *
@@ -1790,11 +1790,26 @@ export interface ListSmsNumbersInput {
1790
1790
  */
1791
1791
  companyId?: string | undefined;
1792
1792
  }
1793
+ /**
1794
+ * @public
1795
+ */
1796
+ export interface SmsServiceNumber {
1797
+ /**
1798
+ * A phone number registered though Classound.
1799
+ * @public
1800
+ */
1801
+ number: string;
1802
+ /**
1803
+ * A service that is linked to specified SMS number. If empty it means that this phone number is not properly configured.
1804
+ * @public
1805
+ */
1806
+ service?: Service | undefined;
1807
+ }
1793
1808
  /**
1794
1809
  * @public
1795
1810
  */
1796
1811
  export interface ListSmsNumbersOutput {
1797
- numbers: (string)[];
1812
+ numbers: (SmsServiceNumber)[];
1798
1813
  }
1799
1814
  /**
1800
1815
  * @public
@@ -1822,11 +1837,26 @@ export interface ListWhatsAppNumbersInput {
1822
1837
  */
1823
1838
  companyId?: string | undefined;
1824
1839
  }
1840
+ /**
1841
+ * @public
1842
+ */
1843
+ export interface WhatsAppServiceNumber {
1844
+ /**
1845
+ * A WhatsApp phone number registered though Classound.
1846
+ * @public
1847
+ */
1848
+ number: string;
1849
+ /**
1850
+ * A service that is linked to specified WhatsApp number. If empty it means that this phone number is not properly configured.
1851
+ * @public
1852
+ */
1853
+ service?: Service | undefined;
1854
+ }
1825
1855
  /**
1826
1856
  * @public
1827
1857
  */
1828
1858
  export interface ListWhatsAppNumbersOutput {
1829
- numbers: (string)[];
1859
+ numbers: (WhatsAppServiceNumber)[];
1830
1860
  }
1831
1861
  /**
1832
1862
  * @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.21",
4
+ "version": "1.0.22",
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",