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.
- package/lib/types/index.d.ts +6 -0
- package/package.json +1 -1
- package/src/types/index.ts +6 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -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
package/src/types/index.ts
CHANGED
|
@@ -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[];
|