@infomaximum/widget-sdk 7.0.0-2 → 7.0.0-2601.0
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/CHANGELOG.md +40 -0
- package/LICENSE +1 -1
- package/dist/index.d.ts +241 -352
- package/dist/index.esm.js +109 -395
- package/dist/index.js +146 -421
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import * as zod_v4_core from 'zod/v4/core';
|
|
2
2
|
import * as zod from 'zod';
|
|
3
3
|
import { ZodType, z } from 'zod';
|
|
4
|
-
import
|
|
5
|
-
|
|
4
|
+
import * as _infomaximum_bi_formatting from '@infomaximum/bi-formatting';
|
|
5
|
+
import { EFormatTypes, EFormattingPresets } from '@infomaximum/bi-formatting';
|
|
6
|
+
export { EFormatTypes, EFormattingPresets, availableFormattingByFormat } from '@infomaximum/bi-formatting';
|
|
7
|
+
import { ELanguages } from '@infomaximum/localization';
|
|
8
|
+
export { ELanguages } from '@infomaximum/localization';
|
|
6
9
|
export { EFilteringMethodValues } from '@infomaximum/base-filter';
|
|
7
10
|
|
|
8
11
|
type TNullable<T> = T | null | undefined;
|
|
@@ -81,7 +84,7 @@ declare const FormulaFilterValueSchema: (z: TZod) => zod.ZodObject<{
|
|
|
81
84
|
formula: zod.ZodString;
|
|
82
85
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
83
86
|
dbDataType: zod.ZodString;
|
|
84
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
87
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
85
88
|
filteringMethod: zod.ZodEnum<{
|
|
86
89
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
87
90
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -117,7 +120,7 @@ declare const ExtendedFormulaFilterValueSchema: (z: TZod) => zod.ZodUnion<readon
|
|
|
117
120
|
formula: zod.ZodString;
|
|
118
121
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
119
122
|
dbDataType: zod.ZodString;
|
|
120
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
123
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
121
124
|
filteringMethod: zod.ZodEnum<{
|
|
122
125
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
123
126
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -164,7 +167,7 @@ declare const DimensionProcessFilterSchema: (z: TZod) => zod.ZodObject<{
|
|
|
164
167
|
formula: zod.ZodString;
|
|
165
168
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
166
169
|
dbDataType: zod.ZodString;
|
|
167
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
170
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
168
171
|
filteringMethod: zod.ZodEnum<{
|
|
169
172
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
170
173
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -214,7 +217,7 @@ declare const DimensionProcessFilterSchema: (z: TZod) => zod.ZodObject<{
|
|
|
214
217
|
formula: zod.ZodString;
|
|
215
218
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
216
219
|
dbDataType: zod.ZodString;
|
|
217
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
220
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
218
221
|
filteringMethod: zod.ZodEnum<{
|
|
219
222
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
220
223
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -264,7 +267,7 @@ declare const DimensionProcessFilterSchema: (z: TZod) => zod.ZodObject<{
|
|
|
264
267
|
formula: zod.ZodString;
|
|
265
268
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
266
269
|
dbDataType: zod.ZodString;
|
|
267
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
270
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
268
271
|
filteringMethod: zod.ZodEnum<{
|
|
269
272
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
270
273
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -331,7 +334,7 @@ declare const SettingsFilterSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodU
|
|
|
331
334
|
formula: zod.ZodString;
|
|
332
335
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
333
336
|
dbDataType: zod.ZodString;
|
|
334
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
337
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
335
338
|
filteringMethod: zod.ZodEnum<{
|
|
336
339
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
337
340
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -377,7 +380,7 @@ declare const SettingsFilterSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodU
|
|
|
377
380
|
formula: zod.ZodString;
|
|
378
381
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
379
382
|
dbDataType: zod.ZodString;
|
|
380
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
383
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
381
384
|
filteringMethod: zod.ZodEnum<{
|
|
382
385
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
383
386
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -427,7 +430,7 @@ declare const SettingsFilterSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodU
|
|
|
427
430
|
formula: zod.ZodString;
|
|
428
431
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
429
432
|
dbDataType: zod.ZodString;
|
|
430
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
433
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
431
434
|
filteringMethod: zod.ZodEnum<{
|
|
432
435
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
433
436
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -477,7 +480,7 @@ declare const SettingsFilterSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodU
|
|
|
477
480
|
formula: zod.ZodString;
|
|
478
481
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
479
482
|
dbDataType: zod.ZodString;
|
|
480
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
483
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
481
484
|
filteringMethod: zod.ZodEnum<{
|
|
482
485
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
483
486
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -723,161 +726,6 @@ type TWidgetSortingValue = TSchemaType<typeof WidgetSortingValueSchema>;
|
|
|
723
726
|
interface ISortOrder extends TSchemaType<typeof SortOrderSchema> {
|
|
724
727
|
}
|
|
725
728
|
|
|
726
|
-
declare enum EFormatTypes {
|
|
727
|
-
/** Дата */
|
|
728
|
-
DATE = "DATE",
|
|
729
|
-
/** Число */
|
|
730
|
-
NUMBER = "NUMBER",
|
|
731
|
-
/** Месяц */
|
|
732
|
-
MONTH = "MONTH",
|
|
733
|
-
/** Дата и время */
|
|
734
|
-
DATETIME = "DATETIME",
|
|
735
|
-
/** Строка */
|
|
736
|
-
STRING = "STRING",
|
|
737
|
-
/** День недели */
|
|
738
|
-
DAY_OF_WEEK = "DAY_OF_WEEK",
|
|
739
|
-
/** Длительность */
|
|
740
|
-
DURATION = "DURATION",
|
|
741
|
-
/** Час */
|
|
742
|
-
HOUR = "HOUR",
|
|
743
|
-
/** Месяц и год */
|
|
744
|
-
MONTH_YEAR = "MONTH_YEAR",
|
|
745
|
-
/** Год */
|
|
746
|
-
YEAR = "YEAR",
|
|
747
|
-
/** Квартал */
|
|
748
|
-
QUARTER = "QUARTER",
|
|
749
|
-
/** Квартал и год */
|
|
750
|
-
QUARTER_YEAR = "QUARTER_YEAR",
|
|
751
|
-
/** День месяца */
|
|
752
|
-
DAY_OF_MONTH = "DAY_OF_MONTH",
|
|
753
|
-
/** Неделя */
|
|
754
|
-
WEEK = "WEEK",
|
|
755
|
-
/** Логический */
|
|
756
|
-
BOOLEAN = "BOOLEAN",
|
|
757
|
-
PERCENT = "PERCENT"
|
|
758
|
-
}
|
|
759
|
-
declare enum EFormattingPresets {
|
|
760
|
-
"AUTO" = "AUTO",
|
|
761
|
-
"CUSTOM" = "CUSTOM",
|
|
762
|
-
"DD/M/YYYY" = "DD/M/YYYY",
|
|
763
|
-
"DD-MM-YYYY" = "DD-MM-YYYY",
|
|
764
|
-
"DD-MM-YY" = "DD-MM-YY",
|
|
765
|
-
"YYYY-MM-DD" = "YYYY-MM-DD",
|
|
766
|
-
"YY-MM-DD" = "YY-MM-DD",
|
|
767
|
-
"DD MM YYYY" = "DD MM YYYY",
|
|
768
|
-
"DD MMM YYYY" = "DD MMM YYYY",
|
|
769
|
-
"DD MMM YY" = "DD MMM YY",
|
|
770
|
-
"MM.DD.YYYY" = "MM.DD.YYYY",
|
|
771
|
-
"MM.DD.YY" = "MM.DD.YY",
|
|
772
|
-
"DD MMMM YYYY" = "DD MMMM YYYY",
|
|
773
|
-
"DD MMMM YY" = "DD MMMM YY",
|
|
774
|
-
"DD/MM/YYYY" = "DD/MM/YYYY",
|
|
775
|
-
"DD/MM/YY" = "DD/MM/YY",
|
|
776
|
-
"MM/DD/YYYY" = "MM/DD/YYYY",
|
|
777
|
-
"MM/DD/YY" = "MM/DD/YY",
|
|
778
|
-
"MMMM DD, YYYY" = "MMMM DD, YYYY",
|
|
779
|
-
"MMMM DD, YY" = "MMMM DD, YY",
|
|
780
|
-
"DD.MM.YYYY" = "DD.MM.YYYY",
|
|
781
|
-
"DD.MM.YY" = "DD.MM.YY",
|
|
782
|
-
"MM-DD-YY" = "MM-DD-YY",
|
|
783
|
-
"MM-DD-YYYY" = "MM-DD-YYYY",
|
|
784
|
-
"DD/M/YYYY HH:mm" = "DD/M/YYYY HH:mm",
|
|
785
|
-
"DD/MM/YYYY, HH:mm" = "DD/MM/YYYY, HH:mm",
|
|
786
|
-
"DD/MM/YY, HH:mm" = "DD/MM/YY, HH:mm",
|
|
787
|
-
"MM/DD/YY, hh:mm a" = "MM/DD/YY, hh:mm a",
|
|
788
|
-
"MM/DD/YYYY, hh:mm a" = "MM/DD/YYYY, hh:mm a",
|
|
789
|
-
"YYYY-MM-DD HH:mm" = "YYYY-MM-DD HH:mm",
|
|
790
|
-
"YY-MM-DD, HH:mm" = "YY-MM-DD, HH:mm",
|
|
791
|
-
"YYYY-MM-DD, HH:mm" = "YYYY-MM-DD, HH:mm",
|
|
792
|
-
"YYYY-MM-DD HH:mm:ss" = "YYYY-MM-DD HH:mm:ss",
|
|
793
|
-
"DD MM YYYY HH:mm" = "DD MM YYYY HH:mm",
|
|
794
|
-
"DD MMMM YYYY, HH:mm" = "DD MMMM YYYY, HH:mm",
|
|
795
|
-
"DD.MM.YY, HH:mm" = "DD.MM.YY, HH:mm",
|
|
796
|
-
"DD.MM.YYYY, HH:mm" = "DD.MM.YYYY, HH:mm",
|
|
797
|
-
"MM-DD-YY, hh:mm a" = "MM-DD-YY, hh:mm a",
|
|
798
|
-
"MM-DD-YYYY, hh:mm a" = "MM-DD-YYYY, hh:mm a",
|
|
799
|
-
"MM.DD.YY, hh:mm a" = "MM.DD.YY, hh:mm a",
|
|
800
|
-
"MM.DD.YYYY, hh:mm a" = "MM.DD.YYYY, hh:mm a",
|
|
801
|
-
"MM.DD.YYYY hh:mm a" = "MM.DD.YYYY hh:mm a",
|
|
802
|
-
"DD MMM YY, HH:mm" = "DD MMM YY, HH:mm",
|
|
803
|
-
"DD MMM YYYY, HH:mm" = "DD MMM YYYY, HH:mm",
|
|
804
|
-
"MMMM DD, YY, HH:mm" = "MMMM DD, YY, HH:mm",
|
|
805
|
-
"MMMM DD, YYYY, HH:mm" = "MMMM DD, YYYY, HH:mm",
|
|
806
|
-
"DD MMMM YY, HH:mm" = "DD MMMM YY, HH:mm",
|
|
807
|
-
"DD.MM.YYYY, HH:mm:ss" = "DD.MM.YYYY, HH:mm:ss",
|
|
808
|
-
"DD.MM.YYYY HH:mm:ss" = "DD.MM.YYYY HH:mm:ss",
|
|
809
|
-
"DD/MM/YYYY HH:mm:ss" = "DD/MM/YYYY HH:mm:ss",
|
|
810
|
-
"DD" = "DD",
|
|
811
|
-
"D" = "D",
|
|
812
|
-
"DDDD" = "DDDD",
|
|
813
|
-
"MMM" = "MMM",
|
|
814
|
-
"MM" = "MM",
|
|
815
|
-
"MMMM" = "MMMM",
|
|
816
|
-
"k" = "k",
|
|
817
|
-
"x" = "x",
|
|
818
|
-
"#,##x" = "#,##x",
|
|
819
|
-
"#,##x.x" = "#,##x.x",
|
|
820
|
-
"#,##x.xx" = "#,##x.xx",
|
|
821
|
-
"x[%]" = "x[%]",
|
|
822
|
-
"x.x[%]" = "x.x[%]",
|
|
823
|
-
"[$]x" = "[$]x",
|
|
824
|
-
"zx.xx[%]" = "zx.xx[%]",
|
|
825
|
-
"hh:mm:ss" = "hh:mm:ss",
|
|
826
|
-
"dd:hh:mm:ss" = "dd:hh:mm:ss",
|
|
827
|
-
"d" = "d",
|
|
828
|
-
"h" = "h",
|
|
829
|
-
"dk" = "dk",
|
|
830
|
-
"hk" = "hk",
|
|
831
|
-
"dd" = "dd",
|
|
832
|
-
"HH" = "HH",
|
|
833
|
-
"hh a" = "hh a",
|
|
834
|
-
"MMM, YYYY" = "MMM, YYYY",
|
|
835
|
-
"MMM, YY" = "MMM, YY",
|
|
836
|
-
"MM.YYYY" = "MM.YYYY",
|
|
837
|
-
"MM.YY" = "MM.YY",
|
|
838
|
-
"MMMM YYYY" = "MMMM YYYY",
|
|
839
|
-
"MMMM YY" = "MMMM YY",
|
|
840
|
-
"[Q]q" = "[Q]q",
|
|
841
|
-
"R" = "R",
|
|
842
|
-
"[Q]q[-]YYYY" = "[Q]q[-]YYYY",
|
|
843
|
-
"[Q]q[-]YY" = "[Q]q[-]YY",
|
|
844
|
-
"R[-]YYYY" = "R[-]YYYY",
|
|
845
|
-
"R[-]YY" = "R[-]YY"
|
|
846
|
-
}
|
|
847
|
-
interface IWidgetFormatting {
|
|
848
|
-
getFormattedValue: (value: string, formatType: EFormatTypes, formatting: IWidgetColumnIndicator["formatting"]) => string;
|
|
849
|
-
}
|
|
850
|
-
declare const formattingConfig: {
|
|
851
|
-
readonly availableFormatsBySimpleType: {
|
|
852
|
-
OTHER: EFormatTypes[];
|
|
853
|
-
STRING: EFormatTypes[];
|
|
854
|
-
FLOAT: EFormatTypes[];
|
|
855
|
-
INTEGER: EFormatTypes[];
|
|
856
|
-
DATE: EFormatTypes[];
|
|
857
|
-
DATETIME: EFormatTypes[];
|
|
858
|
-
DATETIME64: EFormatTypes[];
|
|
859
|
-
BOOLEAN: EFormatTypes[];
|
|
860
|
-
};
|
|
861
|
-
readonly availableFormattingByFormat: {
|
|
862
|
-
DATE: EFormattingPresets[];
|
|
863
|
-
DATETIME: EFormattingPresets[];
|
|
864
|
-
DAY_OF_WEEK: EFormattingPresets[];
|
|
865
|
-
MONTH: EFormattingPresets[];
|
|
866
|
-
NUMBER: EFormattingPresets[];
|
|
867
|
-
DURATION: EFormattingPresets[];
|
|
868
|
-
HOUR: EFormattingPresets[];
|
|
869
|
-
MONTH_YEAR: EFormattingPresets[];
|
|
870
|
-
QUARTER: EFormattingPresets[];
|
|
871
|
-
QUARTER_YEAR: EFormattingPresets[];
|
|
872
|
-
STRING: never[];
|
|
873
|
-
DAY_OF_MONTH: never[];
|
|
874
|
-
WEEK: never[];
|
|
875
|
-
YEAR: never[];
|
|
876
|
-
BOOLEAN: never[];
|
|
877
|
-
PERCENT: EFormattingPresets[];
|
|
878
|
-
};
|
|
879
|
-
};
|
|
880
|
-
|
|
881
729
|
declare const RangeSchema: (z: TZod) => zod.ZodObject<{
|
|
882
730
|
unit: zod.ZodOptional<zod.ZodString>;
|
|
883
731
|
min: zod.ZodOptional<zod.ZodNumber>;
|
|
@@ -950,10 +798,13 @@ declare const WidgetIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
950
798
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
951
799
|
name: zod.ZodString;
|
|
952
800
|
}, zod_v4_core.$strip>;
|
|
953
|
-
declare const FormatSchema: (z: TZod) => zod.ZodDefault<zod.ZodObject<{
|
|
954
|
-
mode: zod.
|
|
955
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
956
|
-
}, zod_v4_core.$strip
|
|
801
|
+
declare const FormatSchema: (z: TZod) => zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
802
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
803
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof EFormatTypes>>>;
|
|
804
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
805
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
806
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
807
|
+
}, zod_v4_core.$strip>], "mode">>;
|
|
957
808
|
declare const FormattingSchema: (z: TZod) => zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
958
809
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
959
810
|
value: zod.ZodDefault<zod.ZodEnum<typeof EFormattingPresets>>;
|
|
@@ -965,10 +816,13 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
965
816
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
966
817
|
name: zod.ZodString;
|
|
967
818
|
dbDataType: zod.ZodOptional<zod.ZodString>;
|
|
968
|
-
format: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
969
|
-
mode: zod.
|
|
970
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
971
|
-
}, zod_v4_core.$strip
|
|
819
|
+
format: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
820
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
821
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof EFormatTypes>>>;
|
|
822
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
823
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
824
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
825
|
+
}, zod_v4_core.$strip>], "mode">>>;
|
|
972
826
|
formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
973
827
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
974
828
|
value: zod.ZodDefault<zod.ZodEnum<typeof EFormattingPresets>>;
|
|
@@ -1047,7 +901,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1047
901
|
formula: zod.ZodString;
|
|
1048
902
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1049
903
|
dbDataType: zod.ZodString;
|
|
1050
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
904
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1051
905
|
filteringMethod: zod.ZodEnum<{
|
|
1052
906
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1053
907
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1157,7 +1011,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1157
1011
|
formula: zod.ZodString;
|
|
1158
1012
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1159
1013
|
dbDataType: zod.ZodString;
|
|
1160
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1014
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1161
1015
|
filteringMethod: zod.ZodEnum<{
|
|
1162
1016
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1163
1017
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1205,7 +1059,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1205
1059
|
name: zod.ZodString;
|
|
1206
1060
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
1207
1061
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
1208
|
-
scriptKey: zod.ZodString
|
|
1062
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
1209
1063
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
1210
1064
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
1211
1065
|
name: zod.ZodString;
|
|
@@ -1257,7 +1111,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1257
1111
|
formula: zod.ZodString;
|
|
1258
1112
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1259
1113
|
dbDataType: zod.ZodString;
|
|
1260
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1114
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1261
1115
|
filteringMethod: zod.ZodEnum<{
|
|
1262
1116
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1263
1117
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1306,7 +1160,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1306
1160
|
name: zod.ZodString;
|
|
1307
1161
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
1308
1162
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
1309
|
-
viewKey: zod.ZodString
|
|
1163
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
1310
1164
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
1311
1165
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
1312
1166
|
name: zod.ZodString;
|
|
@@ -1358,7 +1212,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1358
1212
|
formula: zod.ZodString;
|
|
1359
1213
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1360
1214
|
dbDataType: zod.ZodString;
|
|
1361
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1215
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1362
1216
|
filteringMethod: zod.ZodEnum<{
|
|
1363
1217
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1364
1218
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1406,7 +1260,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1406
1260
|
name: zod.ZodString;
|
|
1407
1261
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
1408
1262
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
1409
|
-
placeholderName: zod.ZodString
|
|
1263
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
1410
1264
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
1411
1265
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
1412
1266
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -1414,7 +1268,7 @@ declare const WidgetColumnIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1414
1268
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
1415
1269
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
1416
1270
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
1417
|
-
placeholderName: zod.ZodString
|
|
1271
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
1418
1272
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
1419
1273
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
1420
1274
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -1491,7 +1345,7 @@ declare const WidgetIndicatorAggregationValueSchema: (z: TZod) => zod.ZodObject<
|
|
|
1491
1345
|
formula: zod.ZodString;
|
|
1492
1346
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1493
1347
|
dbDataType: zod.ZodString;
|
|
1494
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1348
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1495
1349
|
filteringMethod: zod.ZodEnum<{
|
|
1496
1350
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1497
1351
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1541,7 +1395,7 @@ declare const WidgetMeasureAggregationValueSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1541
1395
|
formula: zod.ZodString;
|
|
1542
1396
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1543
1397
|
dbDataType: zod.ZodString;
|
|
1544
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1398
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1545
1399
|
filteringMethod: zod.ZodEnum<{
|
|
1546
1400
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1547
1401
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1592,7 +1446,7 @@ declare const WidgetIndicatorTimeValueSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1592
1446
|
formula: zod.ZodString;
|
|
1593
1447
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1594
1448
|
dbDataType: zod.ZodString;
|
|
1595
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1449
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1596
1450
|
filteringMethod: zod.ZodEnum<{
|
|
1597
1451
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1598
1452
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1630,10 +1484,13 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1630
1484
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
1631
1485
|
name: zod.ZodString;
|
|
1632
1486
|
dbDataType: zod.ZodOptional<zod.ZodString>;
|
|
1633
|
-
format: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
1634
|
-
mode: zod.
|
|
1635
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
1636
|
-
}, zod_v4_core.$strip
|
|
1487
|
+
format: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
1488
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
1489
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof EFormatTypes>>>;
|
|
1490
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
1491
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
1492
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
1493
|
+
}, zod_v4_core.$strip>], "mode">>>;
|
|
1637
1494
|
formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
1638
1495
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
1639
1496
|
value: zod.ZodDefault<zod.ZodEnum<typeof EFormattingPresets>>;
|
|
@@ -1712,7 +1569,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1712
1569
|
formula: zod.ZodString;
|
|
1713
1570
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1714
1571
|
dbDataType: zod.ZodString;
|
|
1715
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1572
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1716
1573
|
filteringMethod: zod.ZodEnum<{
|
|
1717
1574
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1718
1575
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1822,7 +1679,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1822
1679
|
formula: zod.ZodString;
|
|
1823
1680
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1824
1681
|
dbDataType: zod.ZodString;
|
|
1825
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1682
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1826
1683
|
filteringMethod: zod.ZodEnum<{
|
|
1827
1684
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1828
1685
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1870,7 +1727,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1870
1727
|
name: zod.ZodString;
|
|
1871
1728
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
1872
1729
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
1873
|
-
scriptKey: zod.ZodString
|
|
1730
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
1874
1731
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
1875
1732
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
1876
1733
|
name: zod.ZodString;
|
|
@@ -1922,7 +1779,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1922
1779
|
formula: zod.ZodString;
|
|
1923
1780
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
1924
1781
|
dbDataType: zod.ZodString;
|
|
1925
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1782
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
1926
1783
|
filteringMethod: zod.ZodEnum<{
|
|
1927
1784
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
1928
1785
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -1971,7 +1828,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
1971
1828
|
name: zod.ZodString;
|
|
1972
1829
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
1973
1830
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
1974
|
-
viewKey: zod.ZodString
|
|
1831
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
1975
1832
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
1976
1833
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
1977
1834
|
name: zod.ZodString;
|
|
@@ -2023,7 +1880,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
2023
1880
|
formula: zod.ZodString;
|
|
2024
1881
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2025
1882
|
dbDataType: zod.ZodString;
|
|
2026
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1883
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2027
1884
|
filteringMethod: zod.ZodEnum<{
|
|
2028
1885
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2029
1886
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2071,7 +1928,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
2071
1928
|
name: zod.ZodString;
|
|
2072
1929
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
2073
1930
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
2074
|
-
placeholderName: zod.ZodString
|
|
1931
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
2075
1932
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
2076
1933
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
2077
1934
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -2079,7 +1936,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
2079
1936
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
2080
1937
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
2081
1938
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
2082
|
-
placeholderName: zod.ZodString
|
|
1939
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
2083
1940
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
2084
1941
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
2085
1942
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -2115,7 +1972,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
2115
1972
|
formula: zod.ZodString;
|
|
2116
1973
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2117
1974
|
dbDataType: zod.ZodString;
|
|
2118
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
1975
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2119
1976
|
filteringMethod: zod.ZodEnum<{
|
|
2120
1977
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2121
1978
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2165,7 +2022,7 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
2165
2022
|
formula: zod.ZodString;
|
|
2166
2023
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2167
2024
|
dbDataType: zod.ZodString;
|
|
2168
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
2025
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2169
2026
|
filteringMethod: zod.ZodEnum<{
|
|
2170
2027
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2171
2028
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2203,10 +2060,13 @@ declare const WidgetDimensionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
2203
2060
|
}, zod_v4_core.$strip>;
|
|
2204
2061
|
declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
2205
2062
|
dbDataType: zod.ZodOptional<zod.ZodString>;
|
|
2206
|
-
format: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
2207
|
-
mode: zod.
|
|
2208
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
2209
|
-
}, zod_v4_core.$strip
|
|
2063
|
+
format: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
2064
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
2065
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof EFormatTypes>>>;
|
|
2066
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
2067
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
2068
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
2069
|
+
}, zod_v4_core.$strip>], "mode">>>;
|
|
2210
2070
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
2211
2071
|
value: zod.ZodOptional<zod.ZodDiscriminatedUnion<[zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
2212
2072
|
mode: zod.ZodLiteral<EWidgetIndicatorValueModes.FORMULA>;
|
|
@@ -2230,7 +2090,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2230
2090
|
formula: zod.ZodString;
|
|
2231
2091
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2232
2092
|
dbDataType: zod.ZodString;
|
|
2233
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
2093
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2234
2094
|
filteringMethod: zod.ZodEnum<{
|
|
2235
2095
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2236
2096
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2280,7 +2140,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2280
2140
|
formula: zod.ZodString;
|
|
2281
2141
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2282
2142
|
dbDataType: zod.ZodString;
|
|
2283
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
2143
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2284
2144
|
filteringMethod: zod.ZodEnum<{
|
|
2285
2145
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2286
2146
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2376,7 +2236,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2376
2236
|
formula: zod.ZodString;
|
|
2377
2237
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2378
2238
|
dbDataType: zod.ZodString;
|
|
2379
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
2239
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2380
2240
|
filteringMethod: zod.ZodEnum<{
|
|
2381
2241
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2382
2242
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2486,7 +2346,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2486
2346
|
formula: zod.ZodString;
|
|
2487
2347
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2488
2348
|
dbDataType: zod.ZodString;
|
|
2489
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
2349
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2490
2350
|
filteringMethod: zod.ZodEnum<{
|
|
2491
2351
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2492
2352
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2534,7 +2394,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2534
2394
|
name: zod.ZodString;
|
|
2535
2395
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
2536
2396
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
2537
|
-
scriptKey: zod.ZodString
|
|
2397
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
2538
2398
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
2539
2399
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
2540
2400
|
name: zod.ZodString;
|
|
@@ -2586,7 +2446,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2586
2446
|
formula: zod.ZodString;
|
|
2587
2447
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2588
2448
|
dbDataType: zod.ZodString;
|
|
2589
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
2449
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2590
2450
|
filteringMethod: zod.ZodEnum<{
|
|
2591
2451
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2592
2452
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2635,7 +2495,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2635
2495
|
name: zod.ZodString;
|
|
2636
2496
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
2637
2497
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
2638
|
-
viewKey: zod.ZodString
|
|
2498
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
2639
2499
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
2640
2500
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
2641
2501
|
name: zod.ZodString;
|
|
@@ -2687,7 +2547,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2687
2547
|
formula: zod.ZodString;
|
|
2688
2548
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
2689
2549
|
dbDataType: zod.ZodString;
|
|
2690
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
2550
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
2691
2551
|
filteringMethod: zod.ZodEnum<{
|
|
2692
2552
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
2693
2553
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -2735,7 +2595,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2735
2595
|
name: zod.ZodString;
|
|
2736
2596
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
2737
2597
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
2738
|
-
placeholderName: zod.ZodString
|
|
2598
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
2739
2599
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
2740
2600
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
2741
2601
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -2743,7 +2603,7 @@ declare const WidgetDimensionInHierarchySchema: (z: TZod) => zod.ZodObject<{
|
|
|
2743
2603
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
2744
2604
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
2745
2605
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
2746
|
-
placeholderName: zod.ZodString
|
|
2606
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
2747
2607
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
2748
2608
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
2749
2609
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -2772,8 +2632,11 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
2772
2632
|
hideEmptyValues: boolean;
|
|
2773
2633
|
dbDataType?: string | undefined;
|
|
2774
2634
|
format?: {
|
|
2775
|
-
mode: EFormatOrFormattingMode;
|
|
2635
|
+
mode: EFormatOrFormattingMode.BASE;
|
|
2776
2636
|
value?: EFormatTypes | undefined;
|
|
2637
|
+
} | {
|
|
2638
|
+
mode: EFormatOrFormattingMode.TEMPLATE;
|
|
2639
|
+
value?: string | undefined;
|
|
2777
2640
|
} | undefined;
|
|
2778
2641
|
value?: {
|
|
2779
2642
|
mode: EWidgetIndicatorValueModes.FORMULA;
|
|
@@ -2794,10 +2657,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
2794
2657
|
filters: ({
|
|
2795
2658
|
formula: string;
|
|
2796
2659
|
dbDataType: string;
|
|
2797
|
-
format: EFormatTypes;
|
|
2798
2660
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
2799
2661
|
name?: string | null | undefined;
|
|
2800
2662
|
sliceIndex?: number | undefined;
|
|
2663
|
+
format?: string | undefined;
|
|
2801
2664
|
checkedValues?: (string | null)[] | undefined;
|
|
2802
2665
|
formValues?: {
|
|
2803
2666
|
date?: string | null | undefined;
|
|
@@ -2827,10 +2690,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
2827
2690
|
filters: ({
|
|
2828
2691
|
formula: string;
|
|
2829
2692
|
dbDataType: string;
|
|
2830
|
-
format: EFormatTypes;
|
|
2831
2693
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
2832
2694
|
name?: string | null | undefined;
|
|
2833
2695
|
sliceIndex?: number | undefined;
|
|
2696
|
+
format?: string | undefined;
|
|
2834
2697
|
checkedValues?: (string | null)[] | undefined;
|
|
2835
2698
|
formValues?: {
|
|
2836
2699
|
date?: string | null | undefined;
|
|
@@ -2907,10 +2770,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
2907
2770
|
filters: ({
|
|
2908
2771
|
formula: string;
|
|
2909
2772
|
dbDataType: string;
|
|
2910
|
-
format: EFormatTypes;
|
|
2911
2773
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
2912
2774
|
name?: string | null | undefined;
|
|
2913
2775
|
sliceIndex?: number | undefined;
|
|
2776
|
+
format?: string | undefined;
|
|
2914
2777
|
checkedValues?: (string | null)[] | undefined;
|
|
2915
2778
|
formValues?: {
|
|
2916
2779
|
date?: string | null | undefined;
|
|
@@ -2999,10 +2862,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
2999
2862
|
filters: ({
|
|
3000
2863
|
formula: string;
|
|
3001
2864
|
dbDataType: string;
|
|
3002
|
-
format: EFormatTypes;
|
|
3003
2865
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3004
2866
|
name?: string | null | undefined;
|
|
3005
2867
|
sliceIndex?: number | undefined;
|
|
2868
|
+
format?: string | undefined;
|
|
3006
2869
|
checkedValues?: (string | null)[] | undefined;
|
|
3007
2870
|
formValues?: {
|
|
3008
2871
|
date?: string | null | undefined;
|
|
@@ -3032,7 +2895,6 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3032
2895
|
name: string;
|
|
3033
2896
|
type: EActionTypes.OPEN_VIEW;
|
|
3034
2897
|
mode: EViewMode.GENERATED_BY_SCRIPT;
|
|
3035
|
-
scriptKey: string;
|
|
3036
2898
|
parameters: ({
|
|
3037
2899
|
id: number;
|
|
3038
2900
|
name: string;
|
|
@@ -3081,10 +2943,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3081
2943
|
filters: ({
|
|
3082
2944
|
formula: string;
|
|
3083
2945
|
dbDataType: string;
|
|
3084
|
-
format: EFormatTypes;
|
|
3085
2946
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3086
2947
|
name?: string | null | undefined;
|
|
3087
2948
|
sliceIndex?: number | undefined;
|
|
2949
|
+
format?: string | undefined;
|
|
3088
2950
|
checkedValues?: (string | null)[] | undefined;
|
|
3089
2951
|
formValues?: {
|
|
3090
2952
|
date?: string | null | undefined;
|
|
@@ -3110,6 +2972,7 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3110
2972
|
parent: string | null;
|
|
3111
2973
|
}))[];
|
|
3112
2974
|
displayName: string;
|
|
2975
|
+
scriptKey?: string | undefined;
|
|
3113
2976
|
} & {
|
|
3114
2977
|
openIn: EViewOpenIn.DRAWER_WINDOW;
|
|
3115
2978
|
alignment: EDrawerPlacement;
|
|
@@ -3119,7 +2982,6 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3119
2982
|
name: string;
|
|
3120
2983
|
type: EActionTypes.OPEN_VIEW;
|
|
3121
2984
|
mode: EViewMode.GENERATED_BY_SCRIPT;
|
|
3122
|
-
scriptKey: string;
|
|
3123
2985
|
parameters: ({
|
|
3124
2986
|
id: number;
|
|
3125
2987
|
name: string;
|
|
@@ -3168,10 +3030,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3168
3030
|
filters: ({
|
|
3169
3031
|
formula: string;
|
|
3170
3032
|
dbDataType: string;
|
|
3171
|
-
format: EFormatTypes;
|
|
3172
3033
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3173
3034
|
name?: string | null | undefined;
|
|
3174
3035
|
sliceIndex?: number | undefined;
|
|
3036
|
+
format?: string | undefined;
|
|
3175
3037
|
checkedValues?: (string | null)[] | undefined;
|
|
3176
3038
|
formValues?: {
|
|
3177
3039
|
date?: string | null | undefined;
|
|
@@ -3197,15 +3059,15 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3197
3059
|
parent: string | null;
|
|
3198
3060
|
}))[];
|
|
3199
3061
|
displayName: string;
|
|
3062
|
+
scriptKey?: string | undefined;
|
|
3200
3063
|
} & {
|
|
3201
3064
|
openIn: EViewOpenIn.PLACEHOLDER;
|
|
3202
|
-
placeholderName
|
|
3065
|
+
placeholderName?: string | undefined;
|
|
3203
3066
|
}) | ({
|
|
3204
3067
|
id: number;
|
|
3205
3068
|
name: string;
|
|
3206
3069
|
type: EActionTypes.OPEN_VIEW;
|
|
3207
3070
|
mode: EViewMode.GENERATED_BY_SCRIPT;
|
|
3208
|
-
scriptKey: string;
|
|
3209
3071
|
parameters: ({
|
|
3210
3072
|
id: number;
|
|
3211
3073
|
name: string;
|
|
@@ -3254,10 +3116,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3254
3116
|
filters: ({
|
|
3255
3117
|
formula: string;
|
|
3256
3118
|
dbDataType: string;
|
|
3257
|
-
format: EFormatTypes;
|
|
3258
3119
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3259
3120
|
name?: string | null | undefined;
|
|
3260
3121
|
sliceIndex?: number | undefined;
|
|
3122
|
+
format?: string | undefined;
|
|
3261
3123
|
checkedValues?: (string | null)[] | undefined;
|
|
3262
3124
|
formValues?: {
|
|
3263
3125
|
date?: string | null | undefined;
|
|
@@ -3283,6 +3145,7 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3283
3145
|
parent: string | null;
|
|
3284
3146
|
}))[];
|
|
3285
3147
|
displayName: string;
|
|
3148
|
+
scriptKey?: string | undefined;
|
|
3286
3149
|
} & {
|
|
3287
3150
|
openIn: EViewOpenIn.MODAL_WINDOW;
|
|
3288
3151
|
positionByClick: boolean;
|
|
@@ -3292,7 +3155,6 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3292
3155
|
name: string;
|
|
3293
3156
|
type: EActionTypes.OPEN_VIEW;
|
|
3294
3157
|
mode: EViewMode.GENERATED_BY_SCRIPT;
|
|
3295
|
-
scriptKey: string;
|
|
3296
3158
|
parameters: ({
|
|
3297
3159
|
id: number;
|
|
3298
3160
|
name: string;
|
|
@@ -3341,10 +3203,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3341
3203
|
filters: ({
|
|
3342
3204
|
formula: string;
|
|
3343
3205
|
dbDataType: string;
|
|
3344
|
-
format: EFormatTypes;
|
|
3345
3206
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3346
3207
|
name?: string | null | undefined;
|
|
3347
3208
|
sliceIndex?: number | undefined;
|
|
3209
|
+
format?: string | undefined;
|
|
3348
3210
|
checkedValues?: (string | null)[] | undefined;
|
|
3349
3211
|
formValues?: {
|
|
3350
3212
|
date?: string | null | undefined;
|
|
@@ -3370,6 +3232,7 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3370
3232
|
parent: string | null;
|
|
3371
3233
|
}))[];
|
|
3372
3234
|
displayName: string;
|
|
3235
|
+
scriptKey?: string | undefined;
|
|
3373
3236
|
} & {
|
|
3374
3237
|
openIn: EViewOpenIn.WINDOW;
|
|
3375
3238
|
newWindow: boolean;
|
|
@@ -3379,7 +3242,6 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3379
3242
|
name: string;
|
|
3380
3243
|
type: EActionTypes.OPEN_VIEW;
|
|
3381
3244
|
mode: EViewMode.EXISTED_VIEW;
|
|
3382
|
-
viewKey: string;
|
|
3383
3245
|
parameters: ({
|
|
3384
3246
|
id: number;
|
|
3385
3247
|
name: string;
|
|
@@ -3428,10 +3290,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3428
3290
|
filters: ({
|
|
3429
3291
|
formula: string;
|
|
3430
3292
|
dbDataType: string;
|
|
3431
|
-
format: EFormatTypes;
|
|
3432
3293
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3433
3294
|
name?: string | null | undefined;
|
|
3434
3295
|
sliceIndex?: number | undefined;
|
|
3296
|
+
format?: string | undefined;
|
|
3435
3297
|
checkedValues?: (string | null)[] | undefined;
|
|
3436
3298
|
formValues?: {
|
|
3437
3299
|
date?: string | null | undefined;
|
|
@@ -3456,6 +3318,7 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3456
3318
|
option: EDataModelOption;
|
|
3457
3319
|
parent: string | null;
|
|
3458
3320
|
}))[];
|
|
3321
|
+
viewKey?: string | undefined;
|
|
3459
3322
|
} & {
|
|
3460
3323
|
openIn: EViewOpenIn.DRAWER_WINDOW;
|
|
3461
3324
|
alignment: EDrawerPlacement;
|
|
@@ -3465,7 +3328,6 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3465
3328
|
name: string;
|
|
3466
3329
|
type: EActionTypes.OPEN_VIEW;
|
|
3467
3330
|
mode: EViewMode.EXISTED_VIEW;
|
|
3468
|
-
viewKey: string;
|
|
3469
3331
|
parameters: ({
|
|
3470
3332
|
id: number;
|
|
3471
3333
|
name: string;
|
|
@@ -3514,10 +3376,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3514
3376
|
filters: ({
|
|
3515
3377
|
formula: string;
|
|
3516
3378
|
dbDataType: string;
|
|
3517
|
-
format: EFormatTypes;
|
|
3518
3379
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3519
3380
|
name?: string | null | undefined;
|
|
3520
3381
|
sliceIndex?: number | undefined;
|
|
3382
|
+
format?: string | undefined;
|
|
3521
3383
|
checkedValues?: (string | null)[] | undefined;
|
|
3522
3384
|
formValues?: {
|
|
3523
3385
|
date?: string | null | undefined;
|
|
@@ -3542,15 +3404,15 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3542
3404
|
option: EDataModelOption;
|
|
3543
3405
|
parent: string | null;
|
|
3544
3406
|
}))[];
|
|
3407
|
+
viewKey?: string | undefined;
|
|
3545
3408
|
} & {
|
|
3546
3409
|
openIn: EViewOpenIn.PLACEHOLDER;
|
|
3547
|
-
placeholderName
|
|
3410
|
+
placeholderName?: string | undefined;
|
|
3548
3411
|
}) | ({
|
|
3549
3412
|
id: number;
|
|
3550
3413
|
name: string;
|
|
3551
3414
|
type: EActionTypes.OPEN_VIEW;
|
|
3552
3415
|
mode: EViewMode.EXISTED_VIEW;
|
|
3553
|
-
viewKey: string;
|
|
3554
3416
|
parameters: ({
|
|
3555
3417
|
id: number;
|
|
3556
3418
|
name: string;
|
|
@@ -3599,10 +3461,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3599
3461
|
filters: ({
|
|
3600
3462
|
formula: string;
|
|
3601
3463
|
dbDataType: string;
|
|
3602
|
-
format: EFormatTypes;
|
|
3603
3464
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3604
3465
|
name?: string | null | undefined;
|
|
3605
3466
|
sliceIndex?: number | undefined;
|
|
3467
|
+
format?: string | undefined;
|
|
3606
3468
|
checkedValues?: (string | null)[] | undefined;
|
|
3607
3469
|
formValues?: {
|
|
3608
3470
|
date?: string | null | undefined;
|
|
@@ -3627,6 +3489,7 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3627
3489
|
option: EDataModelOption;
|
|
3628
3490
|
parent: string | null;
|
|
3629
3491
|
}))[];
|
|
3492
|
+
viewKey?: string | undefined;
|
|
3630
3493
|
} & {
|
|
3631
3494
|
openIn: EViewOpenIn.MODAL_WINDOW;
|
|
3632
3495
|
positionByClick: boolean;
|
|
@@ -3636,7 +3499,6 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3636
3499
|
name: string;
|
|
3637
3500
|
type: EActionTypes.OPEN_VIEW;
|
|
3638
3501
|
mode: EViewMode.EXISTED_VIEW;
|
|
3639
|
-
viewKey: string;
|
|
3640
3502
|
parameters: ({
|
|
3641
3503
|
id: number;
|
|
3642
3504
|
name: string;
|
|
@@ -3685,10 +3547,10 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3685
3547
|
filters: ({
|
|
3686
3548
|
formula: string;
|
|
3687
3549
|
dbDataType: string;
|
|
3688
|
-
format: EFormatTypes;
|
|
3689
3550
|
filteringMethod: ECalculatorFilterMethods | "LAST_TIME";
|
|
3690
3551
|
name?: string | null | undefined;
|
|
3691
3552
|
sliceIndex?: number | undefined;
|
|
3553
|
+
format?: string | undefined;
|
|
3692
3554
|
checkedValues?: (string | null)[] | undefined;
|
|
3693
3555
|
formValues?: {
|
|
3694
3556
|
date?: string | null | undefined;
|
|
@@ -3713,6 +3575,7 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3713
3575
|
option: EDataModelOption;
|
|
3714
3576
|
parent: string | null;
|
|
3715
3577
|
}))[];
|
|
3578
|
+
viewKey?: string | undefined;
|
|
3716
3579
|
} & {
|
|
3717
3580
|
openIn: EViewOpenIn.WINDOW;
|
|
3718
3581
|
newWindow: boolean;
|
|
@@ -3722,11 +3585,11 @@ declare const WidgetDimensionHierarchySchema: <D extends {
|
|
|
3722
3585
|
name: string;
|
|
3723
3586
|
type: EActionTypes.OPEN_VIEW;
|
|
3724
3587
|
mode: EViewMode.EMPTY;
|
|
3725
|
-
placeholderName: string;
|
|
3726
3588
|
openIn: EViewOpenIn.PLACEHOLDER;
|
|
3589
|
+
placeholderName?: string | undefined;
|
|
3727
3590
|
} & {
|
|
3728
3591
|
openIn: EViewOpenIn.PLACEHOLDER;
|
|
3729
|
-
placeholderName
|
|
3592
|
+
placeholderName?: string | undefined;
|
|
3730
3593
|
}))[] | undefined;
|
|
3731
3594
|
formatting?: {
|
|
3732
3595
|
mode: EFormatOrFormattingMode.BASE;
|
|
@@ -3760,7 +3623,7 @@ declare const WidgetIndicatorConversionValueSchema: (z: TZod) => zod.ZodObject<{
|
|
|
3760
3623
|
formula: zod.ZodString;
|
|
3761
3624
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
3762
3625
|
dbDataType: zod.ZodString;
|
|
3763
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
3626
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
3764
3627
|
filteringMethod: zod.ZodEnum<{
|
|
3765
3628
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
3766
3629
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -3802,7 +3665,7 @@ declare const WidgetIndicatorConversionValueSchema: (z: TZod) => zod.ZodObject<{
|
|
|
3802
3665
|
formula: zod.ZodString;
|
|
3803
3666
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
3804
3667
|
dbDataType: zod.ZodString;
|
|
3805
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
3668
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
3806
3669
|
filteringMethod: zod.ZodEnum<{
|
|
3807
3670
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
3808
3671
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -3847,7 +3710,7 @@ declare const WidgetIndicatorDurationValueSchema: (z: TZod) => zod.ZodObject<{
|
|
|
3847
3710
|
formula: zod.ZodString;
|
|
3848
3711
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
3849
3712
|
dbDataType: zod.ZodString;
|
|
3850
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
3713
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
3851
3714
|
filteringMethod: zod.ZodEnum<{
|
|
3852
3715
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
3853
3716
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -3889,7 +3752,7 @@ declare const WidgetIndicatorDurationValueSchema: (z: TZod) => zod.ZodObject<{
|
|
|
3889
3752
|
formula: zod.ZodString;
|
|
3890
3753
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
3891
3754
|
dbDataType: zod.ZodString;
|
|
3892
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
3755
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
3893
3756
|
filteringMethod: zod.ZodEnum<{
|
|
3894
3757
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
3895
3758
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -3933,10 +3796,13 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
3933
3796
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
3934
3797
|
name: zod.ZodString;
|
|
3935
3798
|
dbDataType: zod.ZodOptional<zod.ZodString>;
|
|
3936
|
-
format: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
3937
|
-
mode: zod.
|
|
3938
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
3939
|
-
}, zod_v4_core.$strip
|
|
3799
|
+
format: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
3800
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
3801
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof EFormatTypes>>>;
|
|
3802
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
3803
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
3804
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
3805
|
+
}, zod_v4_core.$strip>], "mode">>>;
|
|
3940
3806
|
formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
3941
3807
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
3942
3808
|
value: zod.ZodDefault<zod.ZodEnum<typeof EFormattingPresets>>;
|
|
@@ -4015,7 +3881,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4015
3881
|
formula: zod.ZodString;
|
|
4016
3882
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4017
3883
|
dbDataType: zod.ZodString;
|
|
4018
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
3884
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4019
3885
|
filteringMethod: zod.ZodEnum<{
|
|
4020
3886
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4021
3887
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4125,7 +3991,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4125
3991
|
formula: zod.ZodString;
|
|
4126
3992
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4127
3993
|
dbDataType: zod.ZodString;
|
|
4128
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
3994
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4129
3995
|
filteringMethod: zod.ZodEnum<{
|
|
4130
3996
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4131
3997
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4173,7 +4039,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4173
4039
|
name: zod.ZodString;
|
|
4174
4040
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
4175
4041
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
4176
|
-
scriptKey: zod.ZodString
|
|
4042
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
4177
4043
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
4178
4044
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
4179
4045
|
name: zod.ZodString;
|
|
@@ -4225,7 +4091,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4225
4091
|
formula: zod.ZodString;
|
|
4226
4092
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4227
4093
|
dbDataType: zod.ZodString;
|
|
4228
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4094
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4229
4095
|
filteringMethod: zod.ZodEnum<{
|
|
4230
4096
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4231
4097
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4274,7 +4140,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4274
4140
|
name: zod.ZodString;
|
|
4275
4141
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
4276
4142
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
4277
|
-
viewKey: zod.ZodString
|
|
4143
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
4278
4144
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
4279
4145
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
4280
4146
|
name: zod.ZodString;
|
|
@@ -4326,7 +4192,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4326
4192
|
formula: zod.ZodString;
|
|
4327
4193
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4328
4194
|
dbDataType: zod.ZodString;
|
|
4329
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4195
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4330
4196
|
filteringMethod: zod.ZodEnum<{
|
|
4331
4197
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4332
4198
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4374,7 +4240,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4374
4240
|
name: zod.ZodString;
|
|
4375
4241
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
4376
4242
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
4377
|
-
placeholderName: zod.ZodString
|
|
4243
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
4378
4244
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
4379
4245
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
4380
4246
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -4382,7 +4248,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4382
4248
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
4383
4249
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
4384
4250
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
4385
|
-
placeholderName: zod.ZodString
|
|
4251
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
4386
4252
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
4387
4253
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
4388
4254
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -4418,7 +4284,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4418
4284
|
formula: zod.ZodString;
|
|
4419
4285
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4420
4286
|
dbDataType: zod.ZodString;
|
|
4421
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4287
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4422
4288
|
filteringMethod: zod.ZodEnum<{
|
|
4423
4289
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4424
4290
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4465,7 +4331,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4465
4331
|
formula: zod.ZodString;
|
|
4466
4332
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4467
4333
|
dbDataType: zod.ZodString;
|
|
4468
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4334
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4469
4335
|
filteringMethod: zod.ZodEnum<{
|
|
4470
4336
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4471
4337
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4507,7 +4373,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4507
4373
|
formula: zod.ZodString;
|
|
4508
4374
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4509
4375
|
dbDataType: zod.ZodString;
|
|
4510
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4376
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4511
4377
|
filteringMethod: zod.ZodEnum<{
|
|
4512
4378
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4513
4379
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4551,7 +4417,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4551
4417
|
formula: zod.ZodString;
|
|
4552
4418
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4553
4419
|
dbDataType: zod.ZodString;
|
|
4554
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4420
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4555
4421
|
filteringMethod: zod.ZodEnum<{
|
|
4556
4422
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4557
4423
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4593,7 +4459,7 @@ declare const WidgetMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4593
4459
|
formula: zod.ZodString;
|
|
4594
4460
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4595
4461
|
dbDataType: zod.ZodString;
|
|
4596
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4462
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4597
4463
|
filteringMethod: zod.ZodEnum<{
|
|
4598
4464
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4599
4465
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4638,10 +4504,13 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4638
4504
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
4639
4505
|
name: zod.ZodString;
|
|
4640
4506
|
dbDataType: zod.ZodOptional<zod.ZodString>;
|
|
4641
|
-
format: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
4642
|
-
mode: zod.
|
|
4643
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
4644
|
-
}, zod_v4_core.$strip
|
|
4507
|
+
format: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
4508
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
4509
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof EFormatTypes>>>;
|
|
4510
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
4511
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
4512
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
4513
|
+
}, zod_v4_core.$strip>], "mode">>>;
|
|
4645
4514
|
formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
4646
4515
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
4647
4516
|
value: zod.ZodDefault<zod.ZodEnum<typeof EFormattingPresets>>;
|
|
@@ -4720,7 +4589,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4720
4589
|
formula: zod.ZodString;
|
|
4721
4590
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4722
4591
|
dbDataType: zod.ZodString;
|
|
4723
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4592
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4724
4593
|
filteringMethod: zod.ZodEnum<{
|
|
4725
4594
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4726
4595
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4830,7 +4699,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4830
4699
|
formula: zod.ZodString;
|
|
4831
4700
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4832
4701
|
dbDataType: zod.ZodString;
|
|
4833
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4702
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4834
4703
|
filteringMethod: zod.ZodEnum<{
|
|
4835
4704
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4836
4705
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4878,7 +4747,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4878
4747
|
name: zod.ZodString;
|
|
4879
4748
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
4880
4749
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
4881
|
-
scriptKey: zod.ZodString
|
|
4750
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
4882
4751
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
4883
4752
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
4884
4753
|
name: zod.ZodString;
|
|
@@ -4930,7 +4799,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4930
4799
|
formula: zod.ZodString;
|
|
4931
4800
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
4932
4801
|
dbDataType: zod.ZodString;
|
|
4933
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4802
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
4934
4803
|
filteringMethod: zod.ZodEnum<{
|
|
4935
4804
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
4936
4805
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -4979,7 +4848,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
4979
4848
|
name: zod.ZodString;
|
|
4980
4849
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
4981
4850
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
4982
|
-
viewKey: zod.ZodString
|
|
4851
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
4983
4852
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
4984
4853
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
4985
4854
|
name: zod.ZodString;
|
|
@@ -5031,7 +4900,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5031
4900
|
formula: zod.ZodString;
|
|
5032
4901
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5033
4902
|
dbDataType: zod.ZodString;
|
|
5034
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4903
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
5035
4904
|
filteringMethod: zod.ZodEnum<{
|
|
5036
4905
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5037
4906
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -5079,7 +4948,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5079
4948
|
name: zod.ZodString;
|
|
5080
4949
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
5081
4950
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
5082
|
-
placeholderName: zod.ZodString
|
|
4951
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
5083
4952
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
5084
4953
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
5085
4954
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -5087,7 +4956,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5087
4956
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
5088
4957
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
5089
4958
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
5090
|
-
placeholderName: zod.ZodString
|
|
4959
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
5091
4960
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
5092
4961
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
5093
4962
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -5123,7 +4992,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5123
4992
|
formula: zod.ZodString;
|
|
5124
4993
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5125
4994
|
dbDataType: zod.ZodString;
|
|
5126
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
4995
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
5127
4996
|
filteringMethod: zod.ZodEnum<{
|
|
5128
4997
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5129
4998
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -5170,7 +5039,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5170
5039
|
formula: zod.ZodString;
|
|
5171
5040
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5172
5041
|
dbDataType: zod.ZodString;
|
|
5173
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
5042
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
5174
5043
|
filteringMethod: zod.ZodEnum<{
|
|
5175
5044
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5176
5045
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -5212,7 +5081,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5212
5081
|
formula: zod.ZodString;
|
|
5213
5082
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5214
5083
|
dbDataType: zod.ZodString;
|
|
5215
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
5084
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
5216
5085
|
filteringMethod: zod.ZodEnum<{
|
|
5217
5086
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5218
5087
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -5256,7 +5125,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5256
5125
|
formula: zod.ZodString;
|
|
5257
5126
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5258
5127
|
dbDataType: zod.ZodString;
|
|
5259
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
5128
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
5260
5129
|
filteringMethod: zod.ZodEnum<{
|
|
5261
5130
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5262
5131
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -5298,7 +5167,7 @@ declare const MarkdownMeasureSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5298
5167
|
formula: zod.ZodString;
|
|
5299
5168
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5300
5169
|
dbDataType: zod.ZodString;
|
|
5301
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
5170
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof EFormatTypes>, zod.ZodString]>>;
|
|
5302
5171
|
filteringMethod: zod.ZodEnum<{
|
|
5303
5172
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5304
5173
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -5372,10 +5241,13 @@ declare const ProcessIndicatorSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5372
5241
|
templateName: zod.ZodString;
|
|
5373
5242
|
}, zod_v4_core.$strip>], "mode">>;
|
|
5374
5243
|
dbDataType: zod.ZodOptional<zod.ZodString>;
|
|
5375
|
-
format: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
5376
|
-
mode: zod.
|
|
5377
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
5378
|
-
}, zod_v4_core.$strip
|
|
5244
|
+
format: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
5245
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
5246
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof EFormatTypes>>>;
|
|
5247
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
5248
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
5249
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
5250
|
+
}, zod_v4_core.$strip>], "mode">>>;
|
|
5379
5251
|
formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
5380
5252
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
5381
5253
|
value: zod.ZodDefault<zod.ZodEnum<typeof EFormattingPresets>>;
|
|
@@ -5843,7 +5715,7 @@ declare const ParameterFromDynamicListSchema: (z: TZod) => zod.ZodObject<{
|
|
|
5843
5715
|
formula: zod.ZodString;
|
|
5844
5716
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5845
5717
|
dbDataType: zod.ZodString;
|
|
5846
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
5718
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
5847
5719
|
filteringMethod: zod.ZodEnum<{
|
|
5848
5720
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5849
5721
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -5938,7 +5810,7 @@ declare const ActionOnClickParameterSchema: (z: TZod) => zod.ZodIntersection<zod
|
|
|
5938
5810
|
formula: zod.ZodString;
|
|
5939
5811
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
5940
5812
|
dbDataType: zod.ZodString;
|
|
5941
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
5813
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
5942
5814
|
filteringMethod: zod.ZodEnum<{
|
|
5943
5815
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
5944
5816
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6048,7 +5920,7 @@ declare const ActionRunScriptSchema: (z: TZod) => zod.ZodObject<{
|
|
|
6048
5920
|
formula: zod.ZodString;
|
|
6049
5921
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6050
5922
|
dbDataType: zod.ZodString;
|
|
6051
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
5923
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6052
5924
|
filteringMethod: zod.ZodEnum<{
|
|
6053
5925
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6054
5926
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6159,7 +6031,7 @@ declare const ActionUpdateVariableSchema: (z: TZod) => zod.ZodObject<{
|
|
|
6159
6031
|
formula: zod.ZodString;
|
|
6160
6032
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6161
6033
|
dbDataType: zod.ZodString;
|
|
6162
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6034
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6163
6035
|
filteringMethod: zod.ZodEnum<{
|
|
6164
6036
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6165
6037
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6209,7 +6081,7 @@ declare const ActionOpenInSchema: (z: TZod) => zod.ZodDiscriminatedUnion<[zod.Zo
|
|
|
6209
6081
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
6210
6082
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
6211
6083
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
6212
|
-
placeholderName: zod.ZodString
|
|
6084
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
6213
6085
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
6214
6086
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
6215
6087
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -6224,7 +6096,7 @@ declare const ActionOpenViewSchema: (z: TZod) => zod.ZodIntersection<zod.ZodDisc
|
|
|
6224
6096
|
name: zod.ZodString;
|
|
6225
6097
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
6226
6098
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
6227
|
-
scriptKey: zod.ZodString
|
|
6099
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
6228
6100
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
6229
6101
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
6230
6102
|
name: zod.ZodString;
|
|
@@ -6276,7 +6148,7 @@ declare const ActionOpenViewSchema: (z: TZod) => zod.ZodIntersection<zod.ZodDisc
|
|
|
6276
6148
|
formula: zod.ZodString;
|
|
6277
6149
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6278
6150
|
dbDataType: zod.ZodString;
|
|
6279
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6151
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6280
6152
|
filteringMethod: zod.ZodEnum<{
|
|
6281
6153
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6282
6154
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6325,7 +6197,7 @@ declare const ActionOpenViewSchema: (z: TZod) => zod.ZodIntersection<zod.ZodDisc
|
|
|
6325
6197
|
name: zod.ZodString;
|
|
6326
6198
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
6327
6199
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
6328
|
-
viewKey: zod.ZodString
|
|
6200
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
6329
6201
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
6330
6202
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
6331
6203
|
name: zod.ZodString;
|
|
@@ -6377,7 +6249,7 @@ declare const ActionOpenViewSchema: (z: TZod) => zod.ZodIntersection<zod.ZodDisc
|
|
|
6377
6249
|
formula: zod.ZodString;
|
|
6378
6250
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6379
6251
|
dbDataType: zod.ZodString;
|
|
6380
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6252
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6381
6253
|
filteringMethod: zod.ZodEnum<{
|
|
6382
6254
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6383
6255
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6425,7 +6297,7 @@ declare const ActionOpenViewSchema: (z: TZod) => zod.ZodIntersection<zod.ZodDisc
|
|
|
6425
6297
|
name: zod.ZodString;
|
|
6426
6298
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
6427
6299
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
6428
|
-
placeholderName: zod.ZodString
|
|
6300
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
6429
6301
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
6430
6302
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
6431
6303
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -6433,7 +6305,7 @@ declare const ActionOpenViewSchema: (z: TZod) => zod.ZodIntersection<zod.ZodDisc
|
|
|
6433
6305
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
6434
6306
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
6435
6307
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
6436
|
-
placeholderName: zod.ZodString
|
|
6308
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
6437
6309
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
6438
6310
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
6439
6311
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -6504,7 +6376,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6504
6376
|
formula: zod.ZodString;
|
|
6505
6377
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6506
6378
|
dbDataType: zod.ZodString;
|
|
6507
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6379
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6508
6380
|
filteringMethod: zod.ZodEnum<{
|
|
6509
6381
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6510
6382
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6614,7 +6486,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6614
6486
|
formula: zod.ZodString;
|
|
6615
6487
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6616
6488
|
dbDataType: zod.ZodString;
|
|
6617
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6489
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6618
6490
|
filteringMethod: zod.ZodEnum<{
|
|
6619
6491
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6620
6492
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6662,7 +6534,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6662
6534
|
name: zod.ZodString;
|
|
6663
6535
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
6664
6536
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
6665
|
-
scriptKey: zod.ZodString
|
|
6537
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
6666
6538
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
6667
6539
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
6668
6540
|
name: zod.ZodString;
|
|
@@ -6714,7 +6586,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6714
6586
|
formula: zod.ZodString;
|
|
6715
6587
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6716
6588
|
dbDataType: zod.ZodString;
|
|
6717
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6589
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6718
6590
|
filteringMethod: zod.ZodEnum<{
|
|
6719
6591
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6720
6592
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6763,7 +6635,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6763
6635
|
name: zod.ZodString;
|
|
6764
6636
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
6765
6637
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
6766
|
-
viewKey: zod.ZodString
|
|
6638
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
6767
6639
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
6768
6640
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
6769
6641
|
name: zod.ZodString;
|
|
@@ -6815,7 +6687,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6815
6687
|
formula: zod.ZodString;
|
|
6816
6688
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6817
6689
|
dbDataType: zod.ZodString;
|
|
6818
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6690
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6819
6691
|
filteringMethod: zod.ZodEnum<{
|
|
6820
6692
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6821
6693
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -6863,7 +6735,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6863
6735
|
name: zod.ZodString;
|
|
6864
6736
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
6865
6737
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
6866
|
-
placeholderName: zod.ZodString
|
|
6738
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
6867
6739
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
6868
6740
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
6869
6741
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -6871,7 +6743,7 @@ declare const ActionsOnClickSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodO
|
|
|
6871
6743
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
6872
6744
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
6873
6745
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
6874
|
-
placeholderName: zod.ZodString
|
|
6746
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
6875
6747
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
6876
6748
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
6877
6749
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -6927,7 +6799,7 @@ declare const WidgetActionParameterSchema: (z: TZod) => zod.ZodIntersection<zod.
|
|
|
6927
6799
|
formula: zod.ZodString;
|
|
6928
6800
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
6929
6801
|
dbDataType: zod.ZodString;
|
|
6930
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6802
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
6931
6803
|
filteringMethod: zod.ZodEnum<{
|
|
6932
6804
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
6933
6805
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -7020,7 +6892,7 @@ declare const WidgetActionSchema: (z: TZod) => zod.ZodObject<{
|
|
|
7020
6892
|
formula: zod.ZodString;
|
|
7021
6893
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
7022
6894
|
dbDataType: zod.ZodString;
|
|
7023
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
6895
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
7024
6896
|
filteringMethod: zod.ZodEnum<{
|
|
7025
6897
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
7026
6898
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -7176,7 +7048,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7176
7048
|
formula: zod.ZodString;
|
|
7177
7049
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
7178
7050
|
dbDataType: zod.ZodString;
|
|
7179
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
7051
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
7180
7052
|
filteringMethod: zod.ZodEnum<{
|
|
7181
7053
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
7182
7054
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -7286,7 +7158,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7286
7158
|
formula: zod.ZodString;
|
|
7287
7159
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
7288
7160
|
dbDataType: zod.ZodString;
|
|
7289
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
7161
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
7290
7162
|
filteringMethod: zod.ZodEnum<{
|
|
7291
7163
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
7292
7164
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -7334,7 +7206,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7334
7206
|
name: zod.ZodString;
|
|
7335
7207
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
7336
7208
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
7337
|
-
scriptKey: zod.ZodString
|
|
7209
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
7338
7210
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
7339
7211
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
7340
7212
|
name: zod.ZodString;
|
|
@@ -7386,7 +7258,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7386
7258
|
formula: zod.ZodString;
|
|
7387
7259
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
7388
7260
|
dbDataType: zod.ZodString;
|
|
7389
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
7261
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
7390
7262
|
filteringMethod: zod.ZodEnum<{
|
|
7391
7263
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
7392
7264
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -7435,7 +7307,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7435
7307
|
name: zod.ZodString;
|
|
7436
7308
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
7437
7309
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
7438
|
-
viewKey: zod.ZodString
|
|
7310
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
7439
7311
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
7440
7312
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
7441
7313
|
name: zod.ZodString;
|
|
@@ -7487,7 +7359,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7487
7359
|
formula: zod.ZodString;
|
|
7488
7360
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
7489
7361
|
dbDataType: zod.ZodString;
|
|
7490
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
7362
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
7491
7363
|
filteringMethod: zod.ZodEnum<{
|
|
7492
7364
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
7493
7365
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -7535,7 +7407,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7535
7407
|
name: zod.ZodString;
|
|
7536
7408
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
7537
7409
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
7538
|
-
placeholderName: zod.ZodString
|
|
7410
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
7539
7411
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
7540
7412
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
7541
7413
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -7543,7 +7415,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7543
7415
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
7544
7416
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
7545
7417
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
7546
|
-
placeholderName: zod.ZodString
|
|
7418
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
7547
7419
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
7548
7420
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
7549
7421
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -7601,7 +7473,7 @@ declare const ActionSchema: (z: TZod) => zod.ZodUnion<readonly [zod.ZodUnion<rea
|
|
|
7601
7473
|
formula: zod.ZodString;
|
|
7602
7474
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
7603
7475
|
dbDataType: zod.ZodString;
|
|
7604
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
7476
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
7605
7477
|
filteringMethod: zod.ZodEnum<{
|
|
7606
7478
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
7607
7479
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -7731,7 +7603,7 @@ declare const ActionButtonSchema: (z: TZod) => zod.ZodObject<{
|
|
|
7731
7603
|
formula: zod.ZodString;
|
|
7732
7604
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
7733
7605
|
dbDataType: zod.ZodString;
|
|
7734
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
7606
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
7735
7607
|
filteringMethod: zod.ZodEnum<{
|
|
7736
7608
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
7737
7609
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -8804,13 +8676,16 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
8804
8676
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
8805
8677
|
name: zod.ZodString;
|
|
8806
8678
|
dbDataType: zod.ZodOptional<zod.ZodString>;
|
|
8807
|
-
format: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
8808
|
-
mode: zod.
|
|
8809
|
-
value: zod.ZodOptional<zod.ZodEnum<typeof EFormatTypes
|
|
8810
|
-
}, zod_v4_core.$strip
|
|
8679
|
+
format: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
8680
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
8681
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>>>;
|
|
8682
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
8683
|
+
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
8684
|
+
value: zod.ZodOptional<zod.ZodDefault<zod.ZodString>>;
|
|
8685
|
+
}, zod_v4_core.$strip>], "mode">>>;
|
|
8811
8686
|
formatting: zod.ZodOptional<zod.ZodDefault<zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
8812
8687
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.BASE>;
|
|
8813
|
-
value: zod.ZodDefault<zod.ZodEnum<typeof EFormattingPresets>>;
|
|
8688
|
+
value: zod.ZodDefault<zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormattingPresets>>;
|
|
8814
8689
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
8815
8690
|
mode: zod.ZodLiteral<EFormatOrFormattingMode.TEMPLATE>;
|
|
8816
8691
|
value: zod.ZodDefault<zod.ZodString>;
|
|
@@ -8886,7 +8761,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
8886
8761
|
formula: zod.ZodString;
|
|
8887
8762
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
8888
8763
|
dbDataType: zod.ZodString;
|
|
8889
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
8764
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
8890
8765
|
filteringMethod: zod.ZodEnum<{
|
|
8891
8766
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
8892
8767
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -8996,7 +8871,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
8996
8871
|
formula: zod.ZodString;
|
|
8997
8872
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
8998
8873
|
dbDataType: zod.ZodString;
|
|
8999
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
8874
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9000
8875
|
filteringMethod: zod.ZodEnum<{
|
|
9001
8876
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9002
8877
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9044,7 +8919,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9044
8919
|
name: zod.ZodString;
|
|
9045
8920
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
9046
8921
|
mode: zod.ZodLiteral<EViewMode.GENERATED_BY_SCRIPT>;
|
|
9047
|
-
scriptKey: zod.ZodString
|
|
8922
|
+
scriptKey: zod.ZodOptional<zod.ZodString>;
|
|
9048
8923
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
9049
8924
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
9050
8925
|
name: zod.ZodString;
|
|
@@ -9096,7 +8971,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9096
8971
|
formula: zod.ZodString;
|
|
9097
8972
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9098
8973
|
dbDataType: zod.ZodString;
|
|
9099
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
8974
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9100
8975
|
filteringMethod: zod.ZodEnum<{
|
|
9101
8976
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9102
8977
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9145,7 +9020,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9145
9020
|
name: zod.ZodString;
|
|
9146
9021
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
9147
9022
|
mode: zod.ZodLiteral<EViewMode.EXISTED_VIEW>;
|
|
9148
|
-
viewKey: zod.ZodString
|
|
9023
|
+
viewKey: zod.ZodOptional<zod.ZodString>;
|
|
9149
9024
|
parameters: zod.ZodDefault<zod.ZodArray<zod.ZodIntersection<zod.ZodObject<{
|
|
9150
9025
|
id: zod.ZodPipe<zod.ZodDefault<zod.ZodNumber>, zod.ZodTransform<number, number>>;
|
|
9151
9026
|
name: zod.ZodString;
|
|
@@ -9197,7 +9072,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9197
9072
|
formula: zod.ZodString;
|
|
9198
9073
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9199
9074
|
dbDataType: zod.ZodString;
|
|
9200
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9075
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9201
9076
|
filteringMethod: zod.ZodEnum<{
|
|
9202
9077
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9203
9078
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9245,7 +9120,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9245
9120
|
name: zod.ZodString;
|
|
9246
9121
|
type: zod.ZodLiteral<EActionTypes.OPEN_VIEW>;
|
|
9247
9122
|
mode: zod.ZodLiteral<EViewMode.EMPTY>;
|
|
9248
|
-
placeholderName: zod.ZodString
|
|
9123
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
9249
9124
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
9250
9125
|
}, zod_v4_core.$strip>], "mode">, zod.ZodDiscriminatedUnion<[zod.ZodObject<{
|
|
9251
9126
|
openIn: zod.ZodLiteral<EViewOpenIn.DRAWER_WINDOW>;
|
|
@@ -9253,7 +9128,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9253
9128
|
inheritFilter: zod.ZodDefault<zod.ZodBoolean>;
|
|
9254
9129
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
9255
9130
|
openIn: zod.ZodLiteral<EViewOpenIn.PLACEHOLDER>;
|
|
9256
|
-
placeholderName: zod.ZodString
|
|
9131
|
+
placeholderName: zod.ZodOptional<zod.ZodString>;
|
|
9257
9132
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
9258
9133
|
openIn: zod.ZodLiteral<EViewOpenIn.MODAL_WINDOW>;
|
|
9259
9134
|
positionByClick: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -9289,7 +9164,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9289
9164
|
formula: zod.ZodString;
|
|
9290
9165
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9291
9166
|
dbDataType: zod.ZodString;
|
|
9292
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9167
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9293
9168
|
filteringMethod: zod.ZodEnum<{
|
|
9294
9169
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9295
9170
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9336,7 +9211,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9336
9211
|
formula: zod.ZodString;
|
|
9337
9212
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9338
9213
|
dbDataType: zod.ZodString;
|
|
9339
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9214
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9340
9215
|
filteringMethod: zod.ZodEnum<{
|
|
9341
9216
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9342
9217
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9378,7 +9253,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9378
9253
|
formula: zod.ZodString;
|
|
9379
9254
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9380
9255
|
dbDataType: zod.ZodString;
|
|
9381
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9256
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9382
9257
|
filteringMethod: zod.ZodEnum<{
|
|
9383
9258
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9384
9259
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9422,7 +9297,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9422
9297
|
formula: zod.ZodString;
|
|
9423
9298
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9424
9299
|
dbDataType: zod.ZodString;
|
|
9425
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9300
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9426
9301
|
filteringMethod: zod.ZodEnum<{
|
|
9427
9302
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9428
9303
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9464,7 +9339,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9464
9339
|
formula: zod.ZodString;
|
|
9465
9340
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9466
9341
|
dbDataType: zod.ZodString;
|
|
9467
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9342
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9468
9343
|
filteringMethod: zod.ZodEnum<{
|
|
9469
9344
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9470
9345
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9513,7 +9388,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9513
9388
|
formula: zod.ZodString;
|
|
9514
9389
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9515
9390
|
dbDataType: zod.ZodString;
|
|
9516
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9391
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9517
9392
|
filteringMethod: zod.ZodEnum<{
|
|
9518
9393
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9519
9394
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9559,7 +9434,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9559
9434
|
formula: zod.ZodString;
|
|
9560
9435
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9561
9436
|
dbDataType: zod.ZodString;
|
|
9562
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9437
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9563
9438
|
filteringMethod: zod.ZodEnum<{
|
|
9564
9439
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9565
9440
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9609,7 +9484,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9609
9484
|
formula: zod.ZodString;
|
|
9610
9485
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9611
9486
|
dbDataType: zod.ZodString;
|
|
9612
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9487
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9613
9488
|
filteringMethod: zod.ZodEnum<{
|
|
9614
9489
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9615
9490
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9659,7 +9534,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9659
9534
|
formula: zod.ZodString;
|
|
9660
9535
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9661
9536
|
dbDataType: zod.ZodString;
|
|
9662
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9537
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9663
9538
|
filteringMethod: zod.ZodEnum<{
|
|
9664
9539
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9665
9540
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -9785,7 +9660,7 @@ declare const BaseWidgetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
|
9785
9660
|
formula: zod.ZodString;
|
|
9786
9661
|
sliceIndex: zod.ZodOptional<zod.ZodNumber>;
|
|
9787
9662
|
dbDataType: zod.ZodString;
|
|
9788
|
-
format: zod.ZodEnum<typeof EFormatTypes
|
|
9663
|
+
format: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodEnum<typeof _infomaximum_bi_formatting.EFormatTypes>, zod.ZodString]>>;
|
|
9789
9664
|
filteringMethod: zod.ZodEnum<{
|
|
9790
9665
|
EQUAL_TO: ECalculatorFilterMethods.EQUAL_TO;
|
|
9791
9666
|
NOT_EQUAL_TO: ECalculatorFilterMethods.NOT_EQUAL_TO;
|
|
@@ -10604,6 +10479,22 @@ interface IWidgetPlaceholderValues {
|
|
|
10604
10479
|
isOverlay: boolean;
|
|
10605
10480
|
}
|
|
10606
10481
|
|
|
10482
|
+
interface IWidgetFormatting {
|
|
10483
|
+
getFormattedValue: (value: string,
|
|
10484
|
+
/** При передаче строки, которая не соответствует EFormatTypes вернется `value` */
|
|
10485
|
+
formatType: EFormatTypes | string, formatting: IWidgetColumnIndicator["formatting"]) => string;
|
|
10486
|
+
}
|
|
10487
|
+
declare const availableFormatsBySimpleType: {
|
|
10488
|
+
OTHER: EFormatTypes[];
|
|
10489
|
+
STRING: EFormatTypes[];
|
|
10490
|
+
FLOAT: EFormatTypes[];
|
|
10491
|
+
INTEGER: EFormatTypes[];
|
|
10492
|
+
DATE: EFormatTypes[];
|
|
10493
|
+
DATETIME: EFormatTypes[];
|
|
10494
|
+
DATETIME64: EFormatTypes[];
|
|
10495
|
+
BOOLEAN: EFormatTypes[];
|
|
10496
|
+
};
|
|
10497
|
+
|
|
10607
10498
|
interface IWidgetPresetSettings extends TSchemaType<typeof WidgetPresetSettingsSchema> {
|
|
10608
10499
|
}
|
|
10609
10500
|
|
|
@@ -10731,13 +10622,15 @@ interface IViewContext {
|
|
|
10731
10622
|
type TLaunchActionParams = {
|
|
10732
10623
|
/** Запускаемое действие */
|
|
10733
10624
|
action: TAction;
|
|
10734
|
-
/** Callback, вызываемый при успешном выполнении действия */
|
|
10735
|
-
onComplete?: () => void;
|
|
10736
10625
|
/** Callback, вызываемый при ошибке запуска или выполнения действия */
|
|
10737
10626
|
onError?: () => void;
|
|
10738
|
-
/** Callback, вызываемый при успешном
|
|
10627
|
+
/** Callback, вызываемый при успешном завершении действия */
|
|
10739
10628
|
onSuccess?: () => void;
|
|
10740
|
-
/**
|
|
10629
|
+
/**
|
|
10630
|
+
* Требуется ли подтверждение о запуске (откроется модальное окно)
|
|
10631
|
+
* на текущий момент поддержано только для действия с типом EXECUTE_SCRIPT
|
|
10632
|
+
* для остальных типов действий будет выброшена ошибка
|
|
10633
|
+
*/
|
|
10741
10634
|
needConfirmation?: boolean;
|
|
10742
10635
|
/** Фильтрация для способов ввода COLUMN и FORMULA */
|
|
10743
10636
|
filters: ICalculatorFilter[];
|
|
@@ -10790,8 +10683,13 @@ interface IWidgetProps<WidgetSettings extends IBaseWidgetSettings = IBaseWidgetS
|
|
|
10790
10683
|
placeholder: IWidgetPlaceholderController;
|
|
10791
10684
|
/** Объект для получения значений плейсхолдера */
|
|
10792
10685
|
placeholderValues: IWidgetPlaceholderValues;
|
|
10793
|
-
/**
|
|
10794
|
-
|
|
10686
|
+
/**
|
|
10687
|
+
* Подписка на событие потери системного фокуса виджетом.
|
|
10688
|
+
*
|
|
10689
|
+
* Подписчик может вернуть Promise, чтобы запросить у системы ожидание завершения асинхронной
|
|
10690
|
+
* работы перед запуском действия.
|
|
10691
|
+
*/
|
|
10692
|
+
subscribeOnFocusOut(subscriber: () => Promise<void> | void): void;
|
|
10795
10693
|
/** Функция для захвата фокуса виджетом: остальные виджеты будут оповещены о расфокусировке */
|
|
10796
10694
|
captureFocus(options?: {
|
|
10797
10695
|
/**
|
|
@@ -10814,6 +10712,8 @@ interface IWidgetProps<WidgetSettings extends IBaseWidgetSettings = IBaseWidgetS
|
|
|
10814
10712
|
displayMode: TDisplayMode;
|
|
10815
10713
|
/** Доступность фильтрации */
|
|
10816
10714
|
filtrationAccessibility: TFiltrationAccessibility;
|
|
10715
|
+
/** Объект для форматирования значений */
|
|
10716
|
+
formatting: IWidgetFormatting;
|
|
10817
10717
|
}
|
|
10818
10718
|
/** Манифест виджета */
|
|
10819
10719
|
interface IWidgetManifest {
|
|
@@ -10852,8 +10752,6 @@ interface ICustomWidgetProps<WidgetSettings extends IBaseWidgetSettings = IBaseW
|
|
|
10852
10752
|
manifest: Partial<IWidgetManifest>;
|
|
10853
10753
|
/** body DOM элемент родительского приложения */
|
|
10854
10754
|
bodyElement: HTMLBodyElement;
|
|
10855
|
-
/** Объект для форматирования значений */
|
|
10856
|
-
formatting: IWidgetFormatting;
|
|
10857
10755
|
/** Функция для получения ресурса виджета по имени файла */
|
|
10858
10756
|
getWidgetAsset: (fileName: string) => Promise<Blob | null>;
|
|
10859
10757
|
}
|
|
@@ -10920,15 +10818,6 @@ declare const updateDefaultModeSelection: TUpdateSelection;
|
|
|
10920
10818
|
declare const updateSingleModeSelection: TUpdateSelection;
|
|
10921
10819
|
declare const replaceFiltersBySelection: (filters: ICalculatorFilter[], selection: IDimensionSelectionByFormula) => ICalculatorFilter[];
|
|
10922
10820
|
|
|
10923
|
-
/**
|
|
10924
|
-
* Получает локализованный текст на основе переданного языка и объекта локализации.
|
|
10925
|
-
* @param {ELanguages} language - Текущий язык, на котором должен быть возвращен локализованный текст.
|
|
10926
|
-
* @param {L} locObj - Объект локализации, содержащий тексты на разных языках.
|
|
10927
|
-
* @param {P} [props] - Дополнительные параметры локализации.
|
|
10928
|
-
* @returns {string} - Локализованный текст для указанного языка.
|
|
10929
|
-
*/
|
|
10930
|
-
declare const getLocalizedText: <L extends TLocalizationDescription, P extends ILocalizationProps = TExtractLocalizationParams<L>>(language: ELanguages, locObj: L, props?: P) => string;
|
|
10931
|
-
|
|
10932
10821
|
declare const WidgetPresetSettingsSchema: (z: TZod) => zod.ZodObject<{
|
|
10933
10822
|
titleSize: zod.ZodType<number, unknown, zod_v4_core.$ZodTypeInternals<number, unknown>>;
|
|
10934
10823
|
titleColor: zod.ZodType<{
|
|
@@ -11166,4 +11055,4 @@ declare global {
|
|
|
11166
11055
|
}
|
|
11167
11056
|
}
|
|
11168
11057
|
|
|
11169
|
-
export { ActionButtonSchema, ActionDrillDownSchema, ActionGoToURLSchema, ActionOnClickParameterSchema, ActionOpenInSchema, ActionOpenViewSchema, ActionRunScriptSchema, ActionSchema, ActionUpdateVariableSchema, ActionsOnClickSchema, AutoIdentifiedArrayItemSchema, BaseWidgetSettingsSchema, ColorAutoSchema, ColorBaseSchema, ColorByDimensionSchema, ColorDisabledSchema, ColorFormulaSchema, ColorGradientSchema, ColorRuleSchema, ColorSchema, ColorValuesSchema, ColoredValueSchema, ColumnIndicatorValueSchema, DimensionProcessFilterSchema, DimensionValueSchema, DisplayConditionSchema, EActionButtonsTypes, EActionTypes, EActivateConditionMode, EAutoUpdateMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDataModelOption, EDimensionAggregationTemplateName, EDimensionProcessFilterTimeUnit, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatOrFormattingMode, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EHeightMode, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureInnerTemplateNames, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESettingsSchemaMetaKey, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, ExtendedFormulaFilterValueSchema, FormatSchema, FormattingSchema, FormulaFilterValueSchema, FormulaNullableSchema, FormulaSchema, type IActionButton, type IActionDrillDown, type IActionGoToUrl, type IActionOnClickControl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICalculatorOptions, type ICollapseRecord, type IColorPickerControl, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionProcessFilter, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayConditionControl, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IEventsColorControl, type IEventsPickerControl, type IExportColumnOrder, type IFillSettings, type IFilterControl, type IFormattingControl, type IFormattingTemplateControl, type IFormulaControl, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGradient, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type IInputControl, type IInputMarkdownControl, type IInputNumberControl, type IInputRangeControl, type IInputTemplatedControl, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IMigrateContext, type IPanelDescription, type IPanelDescriptionCreator, type IParameterFromAggregation, type IParameterFromColumn, type IParameterFromDynamicList, type IParameterFromEndEvent, type IParameterFromEvent, type IParameterFromFormula, type IParameterFromManualInput, type IParameterFromStartEvent, type IParameterFromStaticList, type IParameterFromVariable, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRadioIconGroupControl, type IRange, type ISchemaContext, type ISelectBranchOption, type ISelectControl, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISizeControl, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ISwitchControl, type ITagSetControl, type ITheme, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type ITypedFormulaControl, type IVertex, type IViewAction, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDimensionInHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, KeyNullableSchema, MarkdownMeasureSchema, MeasureValueSchema, NameNullableSchema, OuterAggregation, ParameterFromAggregationSchema, ParameterFromColumnSchema, ParameterFromDataModelSchema, ParameterFromDynamicListSchema, ParameterFromEndEventSchema, ParameterFromEventSchema, ParameterFromFormulaSchema, ParameterFromManualInputSchema, ParameterFromStartEventSchema, ParameterFromStaticListSchema, ParameterFromVariableSchema, ProcessIndicatorSchema, ProcessIndicatorValueSchema, RangeSchema, SettingsFilterSchema, SortDirectionSchema, SortOrderSchema, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsConfig, type TActionsOnClick, type TAddButton, type TApiVersion, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TConditionalDimensionInHierarchy, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TControlUnion, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGradientsSetValue, type TGroupLevelRecord, type THintPlacement, type TLaunchActionParams, type TLimitedColor, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TParameterFromDataModel, type TProcessIndicatorValue, type TRecordAccessor, type TSchemaType, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSettingsFilter, type TSettingsOf, type TSortDirection, type TTabsHorizontalAlignment, type TUpdateSelection, type TValuePath, type TVersion, type TViewActionParameter, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetDimensionUnion, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetLevelRecord, type TWidgetMeasureData, type TWidgetSortingValue, type TWidgetVariable, type TWidgetsPaletteValue, type TZod, ViewActionParameterSchema, ViewActionSchema, WidgetActionParameterSchema, WidgetActionSchema, WidgetColumnIndicatorSchema, WidgetDimensionHierarchySchema, WidgetDimensionInHierarchySchema, WidgetDimensionSchema, WidgetIndicatorAggregationValueSchema, WidgetIndicatorConversionValueSchema, WidgetIndicatorDurationValueSchema, WidgetIndicatorFormulaValueSchema, WidgetIndicatorSchema, WidgetIndicatorTemplateValueSchema, WidgetIndicatorTimeValueSchema, WidgetMeasureAggregationValueSchema, WidgetMeasureSchema, WidgetPresetSettingsSchema, WidgetSortingIndicatorSchema, WidgetSortingValueSchema, apiVersion, apiVersions, applyIndexToArrayFormula, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, createEscaper, createAggregationTemplate as createMeasureAggregationTemplate, curlyBracketsContentPattern, dashboardLinkRegExp, defaultActionsConfig, dimensionAggregationTemplates, dimensionTemplateFormulas, displayConditionTemplate, doubleQuoteContentPattern, durationTemplates, escapeCurlyBracketLinkName, escapeDoubleQuoteLinkName, eventMeasureTemplateFormulas, fillTemplateSql, formattingConfig, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getLocalizedText, getMeasureFormula, getProcessDimensionValueFormula, getRuleColor, getTransitionMeasureFormula, inheritDisplayConditionFromHierarchy, isDimensionProcessFilter, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSettingsFiltersToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureInnerTemplateFormulas, measureTemplateFormulas, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, themed, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateSingleModeSelection, workspaceLinkRegExp };
|
|
11058
|
+
export { ActionButtonSchema, ActionDrillDownSchema, ActionGoToURLSchema, ActionOnClickParameterSchema, ActionOpenInSchema, ActionOpenViewSchema, ActionRunScriptSchema, ActionSchema, ActionUpdateVariableSchema, ActionsOnClickSchema, AutoIdentifiedArrayItemSchema, BaseWidgetSettingsSchema, ColorAutoSchema, ColorBaseSchema, ColorByDimensionSchema, ColorDisabledSchema, ColorFormulaSchema, ColorGradientSchema, ColorRuleSchema, ColorSchema, ColorValuesSchema, ColoredValueSchema, ColumnIndicatorValueSchema, DimensionProcessFilterSchema, DimensionValueSchema, DisplayConditionSchema, EActionButtonsTypes, EActionTypes, EActivateConditionMode, EAutoUpdateMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDataModelOption, EDimensionAggregationTemplateName, EDimensionProcessFilterTimeUnit, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatOrFormattingMode, EFormulaFilterFieldKeys, EHeightMode, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureInnerTemplateNames, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESettingsSchemaMetaKey, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, ExtendedFormulaFilterValueSchema, FormatSchema, FormattingSchema, FormulaFilterValueSchema, FormulaNullableSchema, FormulaSchema, type IActionButton, type IActionDrillDown, type IActionGoToUrl, type IActionOnClickControl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICalculatorOptions, type ICollapseRecord, type IColorPickerControl, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionProcessFilter, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayConditionControl, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IEventsColorControl, type IEventsPickerControl, type IExportColumnOrder, type IFillSettings, type IFilterControl, type IFormattingControl, type IFormattingTemplateControl, type IFormulaControl, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGradient, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type IInputControl, type IInputMarkdownControl, type IInputNumberControl, type IInputRangeControl, type IInputTemplatedControl, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IMigrateContext, type IPanelDescription, type IPanelDescriptionCreator, type IParameterFromAggregation, type IParameterFromColumn, type IParameterFromDynamicList, type IParameterFromEndEvent, type IParameterFromEvent, type IParameterFromFormula, type IParameterFromManualInput, type IParameterFromStartEvent, type IParameterFromStaticList, type IParameterFromVariable, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRadioIconGroupControl, type IRange, type ISchemaContext, type ISelectBranchOption, type ISelectControl, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISizeControl, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ISwitchControl, type ITagSetControl, type ITheme, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type ITypedFormulaControl, type IVertex, type IViewAction, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDimensionInHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, KeyNullableSchema, MarkdownMeasureSchema, MeasureValueSchema, NameNullableSchema, OuterAggregation, ParameterFromAggregationSchema, ParameterFromColumnSchema, ParameterFromDataModelSchema, ParameterFromDynamicListSchema, ParameterFromEndEventSchema, ParameterFromEventSchema, ParameterFromFormulaSchema, ParameterFromManualInputSchema, ParameterFromStartEventSchema, ParameterFromStaticListSchema, ParameterFromVariableSchema, ProcessIndicatorSchema, ProcessIndicatorValueSchema, RangeSchema, SettingsFilterSchema, SortDirectionSchema, SortOrderSchema, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsConfig, type TActionsOnClick, type TAddButton, type TApiVersion, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TConditionalDimensionInHierarchy, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TControlUnion, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGradientsSetValue, type TGroupLevelRecord, type THintPlacement, type TLaunchActionParams, type TLimitedColor, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TParameterFromDataModel, type TProcessIndicatorValue, type TRecordAccessor, type TSchemaType, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSettingsFilter, type TSettingsOf, type TSortDirection, type TTabsHorizontalAlignment, type TUpdateSelection, type TValuePath, type TVersion, type TViewActionParameter, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetDimensionUnion, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetLevelRecord, type TWidgetMeasureData, type TWidgetSortingValue, type TWidgetVariable, type TWidgetsPaletteValue, type TZod, ViewActionParameterSchema, ViewActionSchema, WidgetActionParameterSchema, WidgetActionSchema, WidgetColumnIndicatorSchema, WidgetDimensionHierarchySchema, WidgetDimensionInHierarchySchema, WidgetDimensionSchema, WidgetIndicatorAggregationValueSchema, WidgetIndicatorConversionValueSchema, WidgetIndicatorDurationValueSchema, WidgetIndicatorFormulaValueSchema, WidgetIndicatorSchema, WidgetIndicatorTemplateValueSchema, WidgetIndicatorTimeValueSchema, WidgetMeasureAggregationValueSchema, WidgetMeasureSchema, WidgetPresetSettingsSchema, WidgetSortingIndicatorSchema, WidgetSortingValueSchema, apiVersion, apiVersions, applyIndexToArrayFormula, availableFormatsBySimpleType, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, createEscaper, createAggregationTemplate as createMeasureAggregationTemplate, curlyBracketsContentPattern, dashboardLinkRegExp, defaultActionsConfig, dimensionAggregationTemplates, dimensionTemplateFormulas, displayConditionTemplate, doubleQuoteContentPattern, durationTemplates, escapeCurlyBracketLinkName, escapeDoubleQuoteLinkName, eventMeasureTemplateFormulas, fillTemplateSql, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getMeasureFormula, getProcessDimensionValueFormula, getRuleColor, getTransitionMeasureFormula, inheritDisplayConditionFromHierarchy, isDimensionProcessFilter, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSettingsFiltersToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureInnerTemplateFormulas, measureTemplateFormulas, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, themed, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateSingleModeSelection, workspaceLinkRegExp };
|