@creatio/base 0.1000.0 → 0.1000.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -725,6 +725,18 @@ declare enum ɵExpressionType {
725
725
  ArithmeticOperation = 4
726
726
  }
727
727
 
728
+ /**
729
+ * @public
730
+ * @description The origin kind of a filter group — where the group was created from.
731
+ */
732
+ declare enum ɵFilterGroupOriginType {
733
+ /**
734
+ * @public
735
+ * @description The group was created from a predefined filter (preset).
736
+ */
737
+ Predefined = "Predefined"
738
+ }
739
+
728
740
  /**
729
741
  * @public
730
742
  * @description The type of filter.
@@ -734,6 +746,9 @@ declare enum ɵExpressionType {
734
746
  * - 4 In, Checks if a value is in a specified set of values.
735
747
  * - 5 Exists, Checks if a value exists.
736
748
  * - 6 FilterGroup, A group of filters combined with logical operators (AND, OR).
749
+ * - 7 Segment, Segment-membership filter — EXISTS / NOT EXISTS against the per-segment
750
+ * data table addressed by SegmentFilterOptions.segmentId. Documented in
751
+ * `crt-data-segmentation-engine/architecture/artifacts/insegment-filter-api.md`.
737
752
  */
738
753
  declare enum ɵFilterType {
739
754
  /**
@@ -772,7 +787,15 @@ declare enum ɵFilterType {
772
787
  * @public
773
788
  * @description A group of filters combined with logical operators (AND, OR).
774
789
  */
775
- FilterGroup = 6
790
+ FilterGroup = 6,
791
+ /**
792
+ * @public
793
+ * @description Segment-membership filter. Carries a nested SegmentFilterOptions payload;
794
+ * the backend resolves segmentId via the SysDataSegment lookup and emits an EXISTS / NOT
795
+ * EXISTS subquery against the segment's per-segment data table. Use comparisonType
796
+ * Exists (15) for "in segment" and Not_exists (16) for "not in segment".
797
+ */
798
+ Segment = 7
776
799
  }
777
800
 
778
801
  /**
@@ -2168,6 +2191,16 @@ declare class ɵIsNullFilter extends ɵSingleFilter {
2168
2191
  * */
2169
2192
  type IESQFilter = ɵBaseFilter | ɵBetweenFilter | ɵCompareFilter | ɵExistsFilter | IFilterGroup | ɵInFilter | ɵIsNullFilter | ɵSingleFilter;
2170
2193
 
2194
+ /**
2195
+ * @public
2196
+ * @description Origin of a filter group — where the group came from. A group can originate from a predefined
2197
+ * filter (preset); the discriminated `kind` leaves room for other origins without a breaking change. Persisted
2198
+ * as a client-side round-trip marker so a stored filter can be re-rendered as its source.
2199
+ */
2200
+ interface FilterGroupOrigin {
2201
+ readonly type: ɵFilterGroupOriginType.Predefined;
2202
+ readonly predefinedFilterId: ɵGuid;
2203
+ }
2171
2204
  /**
2172
2205
  * @public
2173
2206
  * this interface is created, because JSON schema generation does not support getters
@@ -2197,6 +2230,10 @@ type IFilterGroup = ɵBaseFilter & {
2197
2230
  * @description Root entity schema name or table name.
2198
2231
  */
2199
2232
  rootSchemaName?: string;
2233
+ /**
2234
+ * @description Origin of this filter group (e.g. the predefined filter / preset it was created from), if any.
2235
+ */
2236
+ filterGroupOrigin?: FilterGroupOrigin;
2200
2237
  };
2201
2238
  /**
2202
2239
  * @public
@@ -2245,6 +2282,10 @@ declare class ɵFilterGroup extends ɵBaseFilter implements IFilterGroup {
2245
2282
  * @description Root schema name.
2246
2283
  */
2247
2284
  rootSchemaName?: string;
2285
+ /**
2286
+ * @description Origin of this filter group (e.g. the predefined filter / preset it was created from), if any.
2287
+ */
2288
+ filterGroupOrigin?: FilterGroupOrigin;
2248
2289
  constructor(logicalOperation?: ɵLogicalOperatorType, rootSchemaName?: string);
2249
2290
  /**
2250
2291
  * @public
@@ -2501,6 +2542,273 @@ declare const ɵparserMock: {
2501
2542
  clone: () => undefined;
2502
2543
  };
2503
2544
 
2545
+ /**
2546
+ * @public
2547
+ * @description Comparison kinds the backend accepts on a `FilterType.Segment` filter. Any
2548
+ * other value would be rejected by `EntitySchemaQuery.CreateSegmentFilter` with
2549
+ * `NotSupportedException`. `Exists` means "row is a member of the segment" (IN), while
2550
+ * `Not_exists` means "row is not a member" (NOT IN).
2551
+ */
2552
+ type ɵSegmentFilterComparisonType = ɵComparisonType.Exists | ɵComparisonType.Not_exists;
2553
+ /**
2554
+ * @public
2555
+ * @description Options that parameterise a segment-membership filter. Mirrors the wire
2556
+ * `SegmentFilterOptions` payload defined in the Segmentation API
2557
+ * (`crt-data-segmentation-engine/architecture/artifacts/insegment-filter-api.md` §5).
2558
+ *
2559
+ * `segmentId` is required. `includeRemovedMembers` toggles the active-only `RemovedOn IS NULL`
2560
+ * subquery predicate. `addedOn*` / `removedOn*` are inclusive ISO-8601 date bounds on the
2561
+ * membership row's `AddedOn` / `RemovedOn` timestamps; `removedOn*` requires
2562
+ * `includeRemovedMembers: true` (the backend throws ArgumentException otherwise).
2563
+ */
2564
+ interface ɵSegmentFilterOptions {
2565
+ /**
2566
+ * @description Identifier of the `SysDataSegment` record whose per-segment data table is
2567
+ * probed by the membership subquery. Required.
2568
+ */
2569
+ segmentId: string;
2570
+ /**
2571
+ * @description When `true`, the subquery omits the `RemovedOn IS NULL` predicate so
2572
+ * historical (removed) memberships also satisfy the filter. Required for any non-null
2573
+ * `removedOn*` bound. Defaults to `false` (active members only).
2574
+ */
2575
+ includeRemovedMembers?: boolean;
2576
+ /**
2577
+ * @description When `true`, the server bypasses the `RequireActiveSegmentUserStatus`
2578
+ * gate, so the filter is valid for any operator user status (Active / Paused /
2579
+ * Disabled). The system (lifecycle) status gate — `RequireReadySegmentStatus` — still
2580
+ * applies, so segments that have never been actualised remain rejected. Defaults to
2581
+ * `false` (Active-only).
2582
+ */
2583
+ ignoreUserStatus?: boolean;
2584
+ /**
2585
+ * @description Inclusive ISO-8601 lower bound on the membership row's `AddedOn`
2586
+ * timestamp.
2587
+ */
2588
+ addedOnFrom?: string;
2589
+ /**
2590
+ * @description Inclusive ISO-8601 upper bound on the membership row's `AddedOn`
2591
+ * timestamp.
2592
+ */
2593
+ addedOnTo?: string;
2594
+ /**
2595
+ * @description Inclusive ISO-8601 lower bound on the membership row's `RemovedOn`
2596
+ * timestamp. Requires `includeRemovedMembers: true`.
2597
+ */
2598
+ removedOnFrom?: string;
2599
+ /**
2600
+ * @description Inclusive ISO-8601 upper bound on the membership row's `RemovedOn`
2601
+ * timestamp. Requires `includeRemovedMembers: true`.
2602
+ */
2603
+ removedOnTo?: string;
2604
+ }
2605
+ /**
2606
+ * @public
2607
+ * @description Wire-level shape of the nested `segmentFilterOptions` object in a serialized
2608
+ * `SegmentFilter`. Every field is optional, so the DTO can represent both fully filled
2609
+ * payloads and unfilled preset templates (where the UI hasn't picked a segment yet).
2610
+ *
2611
+ * Extends `JsonObject` so the type interoperates with the resolver / parser dispatch
2612
+ * contracts while still exposing each documented field with its narrow type.
2613
+ */
2614
+ interface ɵSegmentFilterOptionsDto extends ɵJsonObject {
2615
+ /**
2616
+ * @description Identifier of the `SysDataSegment` record. Optional on the wire so
2617
+ * unfilled preset templates can omit it.
2618
+ */
2619
+ segmentId?: string;
2620
+ /** {@inheritDoc ɵSegmentFilterOptions.includeRemovedMembers} */
2621
+ includeRemovedMembers?: boolean;
2622
+ /** {@inheritDoc ɵSegmentFilterOptions.ignoreUserStatus} */
2623
+ ignoreUserStatus?: boolean;
2624
+ /** {@inheritDoc ɵSegmentFilterOptions.addedOnFrom} */
2625
+ addedOnFrom?: string;
2626
+ /** {@inheritDoc ɵSegmentFilterOptions.addedOnTo} */
2627
+ addedOnTo?: string;
2628
+ /** {@inheritDoc ɵSegmentFilterOptions.removedOnFrom} */
2629
+ removedOnFrom?: string;
2630
+ /** {@inheritDoc ɵSegmentFilterOptions.removedOnTo} */
2631
+ removedOnTo?: string;
2632
+ }
2633
+ /**
2634
+ * @public
2635
+ * @description Wire-level shape of a serialized `SegmentFilter`. Mirrors the documented
2636
+ * Segmentation API JSON contract (insegment-filter-api.md §5).
2637
+ *
2638
+ * Extends `JsonObject` so `toJson` can return it where a generic JSON object is expected by
2639
+ * serializers / parsers, and so `fromJson` can read fields via dot notation without runtime
2640
+ * type guards or `as` casts. Every field is optional because the parser must tolerate
2641
+ * partially filled wire payloads (e.g. preset templates with no `segmentId` yet).
2642
+ */
2643
+ interface ɵSegmentFilterDto extends ɵJsonObject {
2644
+ /**
2645
+ * @description Filter-type discriminator. Always `FilterType.Segment` (7) when present.
2646
+ */
2647
+ filterType?: ɵFilterType.Segment;
2648
+ /**
2649
+ * @description Comparison semantics. See {@link ɵSegmentFilterComparisonType}.
2650
+ */
2651
+ comparisonType?: ɵSegmentFilterComparisonType;
2652
+ /**
2653
+ * @description Whether the filter participates in the query. Defaults to `true` when
2654
+ * absent (resolved by the outer `BaseFilter`).
2655
+ */
2656
+ isEnabled?: boolean;
2657
+ /**
2658
+ * @description Truncates `DateTime`-typed parameters to a date-only value when applied.
2659
+ * Inert for segment filters (no date parameters) but kept on the wire for shape parity
2660
+ * with sibling filter DTOs.
2661
+ */
2662
+ trimDateTimeParameterToDate?: boolean;
2663
+ /**
2664
+ * @description Filter unique identifier. Consumed by `fromJson` when present on an inbound
2665
+ * payload so the UI can correlate rendered controls with the source filter. It is not
2666
+ * emitted by `toJson` (matching the sibling filter DTOs), so it does not round-trip
2667
+ * through serialization.
2668
+ */
2669
+ uId?: string;
2670
+ /**
2671
+ * @description Nested segment-membership options. See {@link ɵSegmentFilterOptionsDto}.
2672
+ */
2673
+ segmentFilterOptions?: ɵSegmentFilterOptionsDto;
2674
+ }
2675
+
2676
+ /**
2677
+ * @public
2678
+ * @description Segment-membership filter. Tests whether the outer row's primary key is
2679
+ * present in (or absent from, with `Not_exists`) the per-segment data table named by
2680
+ * `SegmentFilterOptions.segmentId`.
2681
+ *
2682
+ * Wire form (DataService `SelectQuery` filters):
2683
+ * ```jsonc
2684
+ * {
2685
+ * "filterType": 7, // FilterType.Segment
2686
+ * "comparisonType": 15, // 15 = Exists (IN), 16 = Not_exists (NOT IN)
2687
+ * "isEnabled": true,
2688
+ * "segmentFilterOptions": {
2689
+ * "segmentId": "<SysDataSegment.Id>"
2690
+ * }
2691
+ * }
2692
+ * ```
2693
+ *
2694
+ * Extends `BaseFilter` directly — segment filters have no `leftExpression`, so they don't
2695
+ * share `SingleFilter`'s contract. Structurally a sibling of `FilterGroup` in that respect.
2696
+ *
2697
+ * @extends {BaseFilter}
2698
+ */
2699
+ declare class ɵSegmentFilter extends ɵBaseFilter {
2700
+ /**
2701
+ * @internal
2702
+ * @description Backing field for {@link ɵSegmentFilter.segmentFilterOptions}. Mutated
2703
+ * only by {@link ɵSegmentFilter.patchOptions}.
2704
+ */
2705
+ private _segmentFilterOptions;
2706
+ /**
2707
+ * @internal
2708
+ * @description Backing field for {@link ɵSegmentFilter.comparisonType}. Mutated only
2709
+ * by {@link ɵSegmentFilter.updateComparisonType}.
2710
+ */
2711
+ private _comparisonType;
2712
+ /**
2713
+ * @internal
2714
+ * @dontChange
2715
+ */
2716
+ protected static readonly _instanceOfKey = "devkit_SegmentFilter";
2717
+ /**
2718
+ * @internal
2719
+ * @dontChange
2720
+ */
2721
+ protected static get _instanceOfKeys(): string[];
2722
+ /**
2723
+ * @description Type of filter.
2724
+ * @default 7
2725
+ */
2726
+ readonly filterType = ɵFilterType.Segment;
2727
+ constructor(segmentFilterOptions: ɵSegmentFilterOptions, comparisonType?: ɵSegmentFilterComparisonType);
2728
+ /**
2729
+ * @public
2730
+ * @description Segment selection + membership-mode + temporal bounds. The nested
2731
+ * object is the wire-level payload — backend reads it as
2732
+ * `Terrasoft.Core.Entities.SegmentFilterOptions`. Read-only from outside; mutate
2733
+ * via {@link ɵSegmentFilter.patchOptions}.
2734
+ */
2735
+ get segmentFilterOptions(): ɵSegmentFilterOptions;
2736
+ /**
2737
+ * @public
2738
+ * @description Comparison semantics. `Exists` = "row is in segment", `Not_exists` =
2739
+ * "row is not in segment". Any other value would be rejected by the backend with
2740
+ * `NotSupportedException`. Defaults to `ComparisonType.Exists` so the common
2741
+ * "is in segment" case requires no explicit argument. Read-only from outside; mutate
2742
+ * via {@link ɵSegmentFilter.updateComparisonType}.
2743
+ */
2744
+ get comparisonType(): ɵSegmentFilterComparisonType;
2745
+ private _serializeOptions;
2746
+ /**
2747
+ * Parses a segment filter from its wire-level DTO. The parameter is the typed
2748
+ * `SegmentFilterDto` directly — the resolver dispatch passes the raw `JsonObject`
2749
+ * at runtime, but TypeScript sees the base-class signature (`dto: JsonObject`) for
2750
+ * the call site, so this narrower parameter is structurally compatible without a
2751
+ * cast at either end.
2752
+ *
2753
+ * @public
2754
+ */
2755
+ static fromJson({ comparisonType, uId, segmentFilterOptions }: ɵSegmentFilterDto): ɵSegmentFilter;
2756
+ /**
2757
+ * @public
2758
+ * @description Patches the nested segment options with the provided partial. Existing
2759
+ * fields not present in the patch are kept; new fields override the old ones. Use this
2760
+ * from the UI when picking a segment, switching membership mode, or shifting temporal
2761
+ * bounds — direct assignment to `segmentFilterOptions` is intentionally funneled
2762
+ * through this method so all mutations live on the filter's public API.
2763
+ * @param options - Partial set of fields to merge over the current options.
2764
+ */
2765
+ patchOptions(options: Partial<ɵSegmentFilterOptions>): void;
2766
+ /**
2767
+ * @public
2768
+ * @description Switches whether the filter participates in the query. Mirrors the
2769
+ * `isEnabled` property carried by every `BaseFilter`, exposed as a method so
2770
+ * all-value writes on a `SegmentFilter` go through its public surface.
2771
+ * @param enabled - `true` to include the filter in the resulting query, `false`
2772
+ * to keep it on the rendered list but exclude it from execution.
2773
+ */
2774
+ toggle(enabled: boolean): void;
2775
+ /**
2776
+ * @public
2777
+ * @description Replaces the comparison semantics — `Exists` ("row is in segment") or
2778
+ * `Not_exists` ("row is not in segment"). Use this from the UI when the user flips
2779
+ * the "in / not in" selector; direct assignment to `comparisonType` is intentionally
2780
+ * funneled through this method so all mutations live on the filter's public API.
2781
+ * @param comparisonType - The new comparison semantics to apply.
2782
+ */
2783
+ updateComparisonType(comparisonType: ɵSegmentFilterComparisonType): void;
2784
+ /**
2785
+ * @public
2786
+ * @description Assigns the filter's unique identifier. Mirrors `BaseFilter.uId`,
2787
+ * exposed as a method so all writes on a `SegmentFilter` go through its public
2788
+ * surface — used at parse time by `fromJson` to attach the wire-level `uId` to a
2789
+ * freshly constructed instance.
2790
+ * @param uId - The identifier to set, or `undefined` to clear it.
2791
+ */
2792
+ updateId(uId: string | undefined): void;
2793
+ /**
2794
+ * @public
2795
+ * @description Clones the filter. The constructor defensively copies the options object, so
2796
+ * the clone owns an independent copy and the two instances never share mutable state. The
2797
+ * remaining own state is copied field by field, matching the explicit clone style of the
2798
+ * sibling filters.
2799
+ */
2800
+ clone(): ɵSegmentFilter;
2801
+ /** {@inheritDoc ɵSerializable.toJson} */
2802
+ toJson(): ɵSegmentFilterDto;
2803
+ /**
2804
+ * @internal
2805
+ * @description Segment filters have no column references — the backend infers the outer
2806
+ * primary key from the root schema. Returning an empty list keeps callers that walk used
2807
+ * columns (validation, suggestion helpers) safe.
2808
+ */
2809
+ _getUsedColumns(): UsedColumn[];
2810
+ }
2811
+
2504
2812
  /**
2505
2813
  * @public
2506
2814
  * @description Filter parser.
@@ -4336,5 +4644,5 @@ interface ɵBaseMessageChannelService {
4336
4644
  sendMessage(sender: string, body: unknown, channelType: ɵMessageChannelType): Promise<void>;
4337
4645
  }
4338
4646
 
4339
- export { LookupMode, eAdminUnitRoleSources, ɵAggregationEvalType, ɵAggregationFunction, ɵAggregationFunctionColumn, ɵAggregationFunctionExpression, ɵAggregationSubQueryColumn, ɵAggregationSubQueryExpression, ɵAggregationType, ɵArgumentEmptyException, ɵArgumentFunctionExpression, ɵArgumentOutOfRangeException, ɵArithmeticExpression, ɵArithmeticOperation, ɵArithmeticQueryColumn, ɵBaseExpression, ɵBaseExpressionParser, ɵBaseFilter, ɵBaseFilterParser, ɵBaseFilterableQuery, ɵBaseQuery, ɵBaseQueryColumn, ɵBaseRequest, ɵBetweenFilter, ɵColumnExpression, ɵCompareFilter, ɵComparisonType, ɵDEFAULT_COLUMN_PLAIN_OBJ, ɵDEFAULT_FILTER_PLAIN_OBJ, ɵDataSchemaAttributeType, ɵDataSchemaAttributeUsageType, ɵDataSchemaType, ɵDataSourceScope, ɵDataValueType, ɵDatePartFunctionColumn, ɵDatePartFunctionExpression, ɵDatePartType, ɵDefaultValueSource, ɵDeleteQuery, ɵEMPTY_GUID, ɵEXPRESSION_TYPE_MOCK, ɵEntityQueryColumn, ɵEntitySchemaQuery, ɵExistsFilter, ɵExpressionMock, ɵExpressionParser, ɵExpressionResolver, ɵExpressionType, ɵFilterGroup, ɵFilterMock, ɵFilterParser, ɵFilterResolver, ɵFilterType, ɵFunctionExpression, ɵFunctionType, ɵInFilter, ɵInsertQuery, ɵIsNullFilter, ɵItemNotFoundException, ɵLengthFunctionColumn, ɵLengthFunctionExpression, ɵLogicalOperatorType, ɵMacrosFunctionColumn, ɵMacrosFunctionExpression, ɵMessageChannelType, ɵModelInPageAction, ɵModelParameterType, ɵNextHandlerAlreadySpecifiedException, ɵOrderDirection, ɵParameterExpression, ɵParameterQueryColumn, ɵPlatformAPIs, ɵQueryMacrosType, ɵQueryOperationType, ɵSchemaViewMaskRequest, ɵSchemaViewMaskRequestAction, ɵSelectLocalizationQuery, ɵSingleFilter, ɵSubQueryColumn, ɵSubQueryExpression, ɵSubscription, ɵUpdateQuery, ɵValidationUtilities, ɵWindowFunctionColumn, ɵWindowFunctionExpression, ɵencodeDate, ɵgenerateGuid, ɵgetColumnPlainObj, ɵgetFilterPlainObj, ɵisEmptyGuid, ɵisGuid, ɵparserMock, ɵtoLocalISOString };
4340
- export type { IESQFilter, IFilterGroup, IParameterDefinition, UsedColumn, ɵAbstractType, ɵAggregationEval, ɵAggregationFunctionExpressionConfig, ɵAggregationSubQueryExpressionConfig, ɵArgumentFunctionExpressionConfig, ɵArithmeticExpressionConfig, ɵBaseDataSourceParameter, ɵBaseDialogButtonConfig, ɵBaseDialogConfig, ɵBaseDialogService, ɵBaseMaskService, ɵBaseMessageChannelService, ɵBaseModel, ɵBaseSysSettingsService, ɵButtonColor, ɵColumnExpressionConfig, ɵCompatibleAPIs, ɵConditionalValueItem, ɵDataSchema, ɵDataSchemaAttribute, ɵDataSchemaAttributeAggregationConfig, ɵDataSchemaAttributeAggregationFunctionConfig, ɵDataSchemaAttributeDatePartFunctionConfig, ɵDataSchemaAttributeFunctionConfig, ɵDataSchemaAttributeValidatorConfig, ɵDataSchemaAttributeValueMaskingSettings, ɵDataSchemaValidatorConfig, ɵDataSourceAggregationConfig, ɵDataSourceAggregationFunctionConfig, ɵDataSourceAttribute, ɵDataSourceAttributeType, ɵDataSourceCanExecuteOperationPayload, ɵDataSourceCanExecuteOperationResult, ɵDataSourceConfig, ɵDataSourceDatePartFunctionConfig, ɵDataSourceFunctionConfig, ɵDataSourceInsertResult, ɵDataSourceInstanceConfig, ɵDataSourceLoadOptions, ɵDataSourcePagingConfig, ɵDataSourceParameter, ɵDataSourceParameterRelationConfig, ɵDataSourceParameters, ɵDataSourceSaveResult, ɵDataSourceSortingConfig, ɵDatePart, ɵDatePartFunctionExpressionConfig, ɵDefaultValueSchema, ɵDialogAction, ɵEntityColumnValue, ɵExpressionConfig, ɵFiltrationPlatformAPIOptions, ɵFunctionExpressionConfig, ɵFunctionStringType, ɵGuid, ɵItemCreationConfig, ɵJsonArray, ɵJsonData, ɵJsonObject, ɵLengthFunctionExpressionConfig, ɵLocalizableString, ɵLocalizeFn, ɵLookupValue, ɵLookupValueWithCode, ɵMacrosFunctionExpressionConfig, ɵMessageChannelEvent, ɵMetadataProvider, ɵModelDefaultValue, ɵModelInitConfig, ɵParameterExpressionConfig, ɵPlatformAPIOptions, ɵPrimaryDisplayFilterDataSourceParameter, ɵRequestHandler, ɵRequestRegistrationConfig, ɵResolveDependencyFn, ɵSerializable, ɵSortColumnOptions, ɵSortDirection, ɵSubQueryExpressionConfig, ɵTeardownLogic, ɵType, ɵViewModelCollection, ɵViewModelContext, ɵWindowFunctionExpressionConfig };
4647
+ export { LookupMode, eAdminUnitRoleSources, ɵAggregationEvalType, ɵAggregationFunction, ɵAggregationFunctionColumn, ɵAggregationFunctionExpression, ɵAggregationSubQueryColumn, ɵAggregationSubQueryExpression, ɵAggregationType, ɵArgumentEmptyException, ɵArgumentFunctionExpression, ɵArgumentOutOfRangeException, ɵArithmeticExpression, ɵArithmeticOperation, ɵArithmeticQueryColumn, ɵBaseExpression, ɵBaseExpressionParser, ɵBaseFilter, ɵBaseFilterParser, ɵBaseFilterableQuery, ɵBaseQuery, ɵBaseQueryColumn, ɵBaseRequest, ɵBetweenFilter, ɵColumnExpression, ɵCompareFilter, ɵComparisonType, ɵDEFAULT_COLUMN_PLAIN_OBJ, ɵDEFAULT_FILTER_PLAIN_OBJ, ɵDataSchemaAttributeType, ɵDataSchemaAttributeUsageType, ɵDataSchemaType, ɵDataSourceScope, ɵDataValueType, ɵDatePartFunctionColumn, ɵDatePartFunctionExpression, ɵDatePartType, ɵDefaultValueSource, ɵDeleteQuery, ɵEMPTY_GUID, ɵEXPRESSION_TYPE_MOCK, ɵEntityQueryColumn, ɵEntitySchemaQuery, ɵExistsFilter, ɵExpressionMock, ɵExpressionParser, ɵExpressionResolver, ɵExpressionType, ɵFilterGroup, ɵFilterGroupOriginType, ɵFilterMock, ɵFilterParser, ɵFilterResolver, ɵFilterType, ɵFunctionExpression, ɵFunctionType, ɵInFilter, ɵInsertQuery, ɵIsNullFilter, ɵItemNotFoundException, ɵLengthFunctionColumn, ɵLengthFunctionExpression, ɵLogicalOperatorType, ɵMacrosFunctionColumn, ɵMacrosFunctionExpression, ɵMessageChannelType, ɵModelInPageAction, ɵModelParameterType, ɵNextHandlerAlreadySpecifiedException, ɵOrderDirection, ɵParameterExpression, ɵParameterQueryColumn, ɵPlatformAPIs, ɵQueryMacrosType, ɵQueryOperationType, ɵSchemaViewMaskRequest, ɵSchemaViewMaskRequestAction, ɵSegmentFilter, ɵSelectLocalizationQuery, ɵSingleFilter, ɵSubQueryColumn, ɵSubQueryExpression, ɵSubscription, ɵUpdateQuery, ɵValidationUtilities, ɵWindowFunctionColumn, ɵWindowFunctionExpression, ɵencodeDate, ɵgenerateGuid, ɵgetColumnPlainObj, ɵgetFilterPlainObj, ɵisEmptyGuid, ɵisGuid, ɵparserMock, ɵtoLocalISOString };
4648
+ export type { FilterGroupOrigin, IESQFilter, IFilterGroup, IParameterDefinition, UsedColumn, ɵAbstractType, ɵAggregationEval, ɵAggregationFunctionExpressionConfig, ɵAggregationSubQueryExpressionConfig, ɵArgumentFunctionExpressionConfig, ɵArithmeticExpressionConfig, ɵBaseDataSourceParameter, ɵBaseDialogButtonConfig, ɵBaseDialogConfig, ɵBaseDialogService, ɵBaseMaskService, ɵBaseMessageChannelService, ɵBaseModel, ɵBaseSysSettingsService, ɵButtonColor, ɵColumnExpressionConfig, ɵCompatibleAPIs, ɵConditionalValueItem, ɵDataSchema, ɵDataSchemaAttribute, ɵDataSchemaAttributeAggregationConfig, ɵDataSchemaAttributeAggregationFunctionConfig, ɵDataSchemaAttributeDatePartFunctionConfig, ɵDataSchemaAttributeFunctionConfig, ɵDataSchemaAttributeValidatorConfig, ɵDataSchemaAttributeValueMaskingSettings, ɵDataSchemaValidatorConfig, ɵDataSourceAggregationConfig, ɵDataSourceAggregationFunctionConfig, ɵDataSourceAttribute, ɵDataSourceAttributeType, ɵDataSourceCanExecuteOperationPayload, ɵDataSourceCanExecuteOperationResult, ɵDataSourceConfig, ɵDataSourceDatePartFunctionConfig, ɵDataSourceFunctionConfig, ɵDataSourceInsertResult, ɵDataSourceInstanceConfig, ɵDataSourceLoadOptions, ɵDataSourcePagingConfig, ɵDataSourceParameter, ɵDataSourceParameterRelationConfig, ɵDataSourceParameters, ɵDataSourceSaveResult, ɵDataSourceSortingConfig, ɵDatePart, ɵDatePartFunctionExpressionConfig, ɵDefaultValueSchema, ɵDialogAction, ɵEntityColumnValue, ɵExpressionConfig, ɵFiltrationPlatformAPIOptions, ɵFunctionExpressionConfig, ɵFunctionStringType, ɵGuid, ɵItemCreationConfig, ɵJsonArray, ɵJsonData, ɵJsonObject, ɵLengthFunctionExpressionConfig, ɵLocalizableString, ɵLocalizeFn, ɵLookupValue, ɵLookupValueWithCode, ɵMacrosFunctionExpressionConfig, ɵMessageChannelEvent, ɵMetadataProvider, ɵModelDefaultValue, ɵModelInitConfig, ɵParameterExpressionConfig, ɵPlatformAPIOptions, ɵPrimaryDisplayFilterDataSourceParameter, ɵRequestHandler, ɵRequestRegistrationConfig, ɵResolveDependencyFn, ɵSegmentFilterComparisonType, ɵSegmentFilterDto, ɵSegmentFilterOptions, ɵSegmentFilterOptionsDto, ɵSerializable, ɵSortColumnOptions, ɵSortDirection, ɵSubQueryExpressionConfig, ɵTeardownLogic, ɵType, ɵViewModelCollection, ɵViewModelContext, ɵWindowFunctionExpressionConfig };