repzo 1.0.190 → 1.0.191

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.
@@ -15946,6 +15946,7 @@ export declare namespace Service {
15946
15946
  interface Data {
15947
15947
  _id: StringId;
15948
15948
  name: string;
15949
+ position: number;
15949
15950
  disabled: boolean;
15950
15951
  report_types: ReportType[];
15951
15952
  createdAt: number;
@@ -15953,10 +15954,12 @@ export declare namespace Service {
15953
15954
  }
15954
15955
  interface CreateBody {
15955
15956
  name: string;
15957
+ position?: number;
15956
15958
  report_types: ReportType[];
15957
15959
  }
15958
15960
  interface UpdateBody {
15959
15961
  name?: string;
15962
+ position?: number;
15960
15963
  report_types?: ReportType[];
15961
15964
  }
15962
15965
  namespace Find {
@@ -15964,6 +15967,7 @@ export declare namespace Service {
15964
15967
  _id?: StringId | StringId[];
15965
15968
  name?: string | string[];
15966
15969
  disabled?: boolean;
15970
+ position?: number;
15967
15971
  report_types?: ReportType | ReportType[];
15968
15972
  from_createdAt?: Date;
15969
15973
  to_updatedAt?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.190",
3
+ "version": "1.0.191",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -18048,6 +18048,7 @@ export namespace Service {
18048
18048
  export interface Data {
18049
18049
  _id: StringId;
18050
18050
  name: string;
18051
+ position: number;
18051
18052
  disabled: boolean;
18052
18053
  report_types: ReportType[];
18053
18054
  createdAt: number;
@@ -18056,11 +18057,13 @@ export namespace Service {
18056
18057
 
18057
18058
  export interface CreateBody {
18058
18059
  name: string;
18060
+ position?: number;
18059
18061
  report_types: ReportType[];
18060
18062
  }
18061
18063
 
18062
18064
  export interface UpdateBody {
18063
18065
  name?: string;
18066
+ position?: number;
18064
18067
  report_types?: ReportType[];
18065
18068
  }
18066
18069
 
@@ -18069,6 +18072,7 @@ export namespace Service {
18069
18072
  _id?: StringId | StringId[];
18070
18073
  name?: string | string[];
18071
18074
  disabled?: boolean;
18075
+ position?: number;
18072
18076
  report_types?: ReportType | ReportType[];
18073
18077
  from_createdAt?: Date;
18074
18078
  to_updatedAt?: Date;