repzo 1.0.110 → 1.0.111

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.
@@ -3369,6 +3369,12 @@ export declare namespace Service {
3369
3369
  name?: string[] | string;
3370
3370
  local_name?: string[] | string;
3371
3371
  from_updatedAt?: number;
3372
+ from__id?: string;
3373
+ to__id?: string;
3374
+ sortBy?: {
3375
+ field: "_id";
3376
+ type: "asc" | "desc";
3377
+ }[];
3372
3378
  };
3373
3379
  interface Result extends DefaultPaginationResult {
3374
3380
  data: SpecialitySchema[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.110",
3
+ "version": "1.0.111",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -3420,6 +3420,12 @@ export namespace Service {
3420
3420
  name?: string[] | string;
3421
3421
  local_name?: string[] | string;
3422
3422
  from_updatedAt?: number;
3423
+ from__id?: string;
3424
+ to__id?: string;
3425
+ sortBy?: {
3426
+ field: "_id";
3427
+ type: "asc" | "desc";
3428
+ }[];
3423
3429
  };
3424
3430
  export interface Result extends DefaultPaginationResult {
3425
3431
  data: SpecialitySchema[];