repzo 1.0.200 → 1.0.201
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 +4 -0
- package/package.json +1 -1
- package/src/types/index.ts +4 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -16708,6 +16708,8 @@ export declare namespace Service {
|
|
|
16708
16708
|
is_default?: boolean;
|
|
16709
16709
|
teams_populated: Pick<Team.TeamSchema, "name" | "_id">;
|
|
16710
16710
|
copied_from_populated?: ReportView.Data;
|
|
16711
|
+
report_view_favorite_id?: StringId;
|
|
16712
|
+
report_view_default_id?: StringId;
|
|
16711
16713
|
})[];
|
|
16712
16714
|
}
|
|
16713
16715
|
}
|
|
@@ -16723,6 +16725,8 @@ export declare namespace Service {
|
|
|
16723
16725
|
is_default?: boolean;
|
|
16724
16726
|
teams_populated: Pick<Team.TeamSchema, "name" | "_id">;
|
|
16725
16727
|
copied_from_populated?: ReportView.Data;
|
|
16728
|
+
report_view_favorite_id?: StringId;
|
|
16729
|
+
report_view_default_id?: StringId;
|
|
16726
16730
|
};
|
|
16727
16731
|
}
|
|
16728
16732
|
namespace Create {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -18951,6 +18951,8 @@ export namespace Service {
|
|
|
18951
18951
|
is_default?: boolean;
|
|
18952
18952
|
teams_populated: Pick<Team.TeamSchema, "name" | "_id">;
|
|
18953
18953
|
copied_from_populated?: ReportView.Data;
|
|
18954
|
+
report_view_favorite_id?: StringId;
|
|
18955
|
+
report_view_default_id?: StringId;
|
|
18954
18956
|
})[];
|
|
18955
18957
|
}
|
|
18956
18958
|
}
|
|
@@ -18967,6 +18969,8 @@ export namespace Service {
|
|
|
18967
18969
|
is_default?: boolean;
|
|
18968
18970
|
teams_populated: Pick<Team.TeamSchema, "name" | "_id">;
|
|
18969
18971
|
copied_from_populated?: ReportView.Data;
|
|
18972
|
+
report_view_favorite_id?: StringId;
|
|
18973
|
+
report_view_default_id?: StringId;
|
|
18970
18974
|
};
|
|
18971
18975
|
}
|
|
18972
18976
|
|