@remnawave/backend-contract 2.1.40 → 2.1.41

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.
@@ -22,12 +22,12 @@ var GetAllHwidDevicesCommand;
22
22
  start: zod_1.z.coerce
23
23
  .number()
24
24
  .default(0)
25
- .describe('Start index (offset) of the users to return, default is 0'),
25
+ .describe('Start index (offset) of the results to return, default is 0'),
26
26
  size: zod_1.z.coerce
27
27
  .number()
28
28
  .min(1, 'Size (limit) must be greater than 0')
29
29
  .max(1000, 'Size (limit) must be less than 1000')
30
- .describe('Number of users to return, no more than 1000')
30
+ .describe('Number of results to return, no more than 1000')
31
31
  .default(25),
32
32
  filters: zod_1.z
33
33
  .preprocess((str) => (typeof str === 'string' ? JSON.parse(str) : str), zod_1.z.array(FilterSchema))
@@ -22,12 +22,12 @@ var GetAllHwidDevicesCommand;
22
22
  start: zod_1.z.coerce
23
23
  .number()
24
24
  .default(0)
25
- .describe('Start index (offset) of the users to return, default is 0'),
25
+ .describe('Start index (offset) of the results to return, default is 0'),
26
26
  size: zod_1.z.coerce
27
27
  .number()
28
28
  .min(1, 'Size (limit) must be greater than 0')
29
29
  .max(1000, 'Size (limit) must be less than 1000')
30
- .describe('Number of users to return, no more than 1000')
30
+ .describe('Number of results to return, no more than 1000')
31
31
  .default(25),
32
32
  filters: zod_1.z
33
33
  .preprocess((str) => (typeof str === 'string' ? JSON.parse(str) : str), zod_1.z.array(FilterSchema))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnawave/backend-contract",
3
- "version": "2.1.40",
3
+ "version": "2.1.41",
4
4
  "public": true,
5
5
  "license": "AGPL-3.0-only",
6
6
  "description": "A contract library for Remnawave Backend. It can be used in backend and frontend.",