@wildix/wms-api-client 1.1.33 → 1.1.34

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.
@@ -40,14 +40,17 @@ declare const ListPbxGroupsCommand_base: {
40
40
  * const response = await client.send(command);
41
41
  * // { // ListPbxGroupsOutput
42
42
  * // type: "result" || "error", // required
43
- * // result: [ // PbxGroupsList // required
44
- * // { // PbxGroup
45
- * // dn: "STRING_VALUE", // required
46
- * // id: "STRING_VALUE", // required
47
- * // name: "STRING_VALUE", // required
48
- * // wcgrp: "STRING_VALUE",
49
- * // },
50
- * // ],
43
+ * // result: { // ListPbxGroupsResult
44
+ * // total: Number("int"), // required
45
+ * // records: [ // PbxGroupsList // required
46
+ * // { // PbxGroup
47
+ * // dn: "STRING_VALUE", // required
48
+ * // id: "STRING_VALUE", // required
49
+ * // name: "STRING_VALUE", // required
50
+ * // wcgrp: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // },
51
54
  * // };
52
55
  *
53
56
  * ```
@@ -927,12 +927,19 @@ export interface PbxGroup {
927
927
  name: string;
928
928
  wcgrp?: string | undefined;
929
929
  }
930
+ /**
931
+ * @public
932
+ */
933
+ export interface ListPbxGroupsResult {
934
+ total: number;
935
+ records: (PbxGroup)[];
936
+ }
930
937
  /**
931
938
  * @public
932
939
  */
933
940
  export interface ListPbxGroupsOutput {
934
941
  type: ResponseType;
935
- result: (PbxGroup)[];
942
+ result: ListPbxGroupsResult;
936
943
  }
937
944
  /**
938
945
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wms-api-client",
3
3
  "description": "@wildix/wms-api-client client",
4
- "version": "1.1.33",
4
+ "version": "1.1.34",
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",