repzo 1.0.191 → 1.0.192
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 +2 -1
- package/package.json +1 -1
- package/src/types/index.ts +2 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -16002,7 +16002,7 @@ export declare namespace Service {
|
|
|
16002
16002
|
disabled: boolean;
|
|
16003
16003
|
key: string;
|
|
16004
16004
|
name: string;
|
|
16005
|
-
|
|
16005
|
+
position: number;
|
|
16006
16006
|
selectable: boolean;
|
|
16007
16007
|
show: "default" | "hide" | "show";
|
|
16008
16008
|
totals_key?: string;
|
|
@@ -16040,6 +16040,7 @@ export declare namespace Service {
|
|
|
16040
16040
|
_id?: StringId | StringId[];
|
|
16041
16041
|
name?: string | string[];
|
|
16042
16042
|
disabled?: boolean;
|
|
16043
|
+
position?: number;
|
|
16043
16044
|
report_types?: ReportType | ReportType[];
|
|
16044
16045
|
from_createdAt?: Date;
|
|
16045
16046
|
to_updatedAt?: Date;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -18113,7 +18113,7 @@ export namespace Service {
|
|
|
18113
18113
|
disabled: boolean;
|
|
18114
18114
|
key: string;
|
|
18115
18115
|
name: string;
|
|
18116
|
-
|
|
18116
|
+
position: number;
|
|
18117
18117
|
selectable: boolean;
|
|
18118
18118
|
show: "default" | "hide" | "show";
|
|
18119
18119
|
totals_key?: string;
|
|
@@ -18154,6 +18154,7 @@ export namespace Service {
|
|
|
18154
18154
|
_id?: StringId | StringId[];
|
|
18155
18155
|
name?: string | string[];
|
|
18156
18156
|
disabled?: boolean;
|
|
18157
|
+
position?: number;
|
|
18157
18158
|
report_types?: ReportType | ReportType[];
|
|
18158
18159
|
from_createdAt?: Date;
|
|
18159
18160
|
to_updatedAt?: Date;
|