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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.105",
3
+ "version": "1.0.107",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -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[];