@connectedxm/admin 1.8.0 → 1.8.1
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/dist/index.d.mts +1 -4
- package/dist/index.d.ts +1 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3949,7 +3949,7 @@ interface EventQuestionUpdateInputs {
|
|
|
3949
3949
|
sortOrder?: number | string | null;
|
|
3950
3950
|
featured?: boolean;
|
|
3951
3951
|
}
|
|
3952
|
-
interface CustomReportCreateInputs {
|
|
3952
|
+
interface CustomReportCreateInputs extends ReportFilters {
|
|
3953
3953
|
name: string;
|
|
3954
3954
|
description?: string | null;
|
|
3955
3955
|
filters?: string | null;
|
|
@@ -3957,9 +3957,6 @@ interface CustomReportCreateInputs {
|
|
|
3957
3957
|
columns?: string | null;
|
|
3958
3958
|
advancedFilter?: string | null;
|
|
3959
3959
|
shared?: boolean;
|
|
3960
|
-
eventId?: string | null;
|
|
3961
|
-
placeId?: string | null;
|
|
3962
|
-
groupId?: string | null;
|
|
3963
3960
|
}
|
|
3964
3961
|
interface CustomReportUpdateInputs {
|
|
3965
3962
|
name?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -3949,7 +3949,7 @@ interface EventQuestionUpdateInputs {
|
|
|
3949
3949
|
sortOrder?: number | string | null;
|
|
3950
3950
|
featured?: boolean;
|
|
3951
3951
|
}
|
|
3952
|
-
interface CustomReportCreateInputs {
|
|
3952
|
+
interface CustomReportCreateInputs extends ReportFilters {
|
|
3953
3953
|
name: string;
|
|
3954
3954
|
description?: string | null;
|
|
3955
3955
|
filters?: string | null;
|
|
@@ -3957,9 +3957,6 @@ interface CustomReportCreateInputs {
|
|
|
3957
3957
|
columns?: string | null;
|
|
3958
3958
|
advancedFilter?: string | null;
|
|
3959
3959
|
shared?: boolean;
|
|
3960
|
-
eventId?: string | null;
|
|
3961
|
-
placeId?: string | null;
|
|
3962
|
-
groupId?: string | null;
|
|
3963
3960
|
}
|
|
3964
3961
|
interface CustomReportUpdateInputs {
|
|
3965
3962
|
name?: string | null;
|