repzo 1.0.105 → 1.0.107
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/index.d.ts +1283 -642
- package/lib/index.js +2701 -1684
- package/lib/types/index.d.ts +11227 -10253
- package/package.json +1 -1
- package/src/types/index.ts +7 -1
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -43,7 +43,7 @@ interface ClientCreator {
|
|
|
43
43
|
name?: string;
|
|
44
44
|
client?: string;
|
|
45
45
|
}
|
|
46
|
-
interface SerialNumber {
|
|
46
|
+
export interface SerialNumber {
|
|
47
47
|
identifier: string;
|
|
48
48
|
formatted: string;
|
|
49
49
|
count: number;
|
|
@@ -4631,8 +4631,14 @@ export namespace Service {
|
|
|
4631
4631
|
to_total_time?: number;
|
|
4632
4632
|
closed_by_system?: boolean;
|
|
4633
4633
|
from_updatedAt?: number;
|
|
4634
|
+
from__id?: string;
|
|
4635
|
+
to__id?: string;
|
|
4634
4636
|
[key: string]: any; // integration_meta.
|
|
4635
4637
|
populatedKeys?: PopulatedKeys[];
|
|
4638
|
+
sortBy?: {
|
|
4639
|
+
field: "_id";
|
|
4640
|
+
type: "asc" | "desc";
|
|
4641
|
+
}[];
|
|
4636
4642
|
};
|
|
4637
4643
|
export interface Result extends DefaultPaginationResult {
|
|
4638
4644
|
data: VisitSchemaWithPopulatedKeys[];
|