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