@creatio/base 0.810.0 → 0.811.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 +2 -0
- package/esm2020/lib/index.mjs +2 -1
- package/esm2020/lib/public/esq/data-model/enums/comparison-type.enum.mjs +2 -1
- package/esm2020/lib/public/esq/data-model/expressions/arithmetic/arithmetic-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/base-expression.mjs +36 -1
- package/esm2020/lib/public/esq/data-model/expressions/columns/column-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/functions/aggregation-function-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/functions/argument-function-expression.mjs +20 -1
- package/esm2020/lib/public/esq/data-model/expressions/functions/date-part-function-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/functions/function-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/functions/length-function-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/functions/macros-function-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/functions/window-function-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/mocks/expression.mock.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/parameters/parameter-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/sub-queries/aggregation-sub-query-expression.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/expressions/sub-queries/sub-query-expression.mjs +20 -1
- package/esm2020/lib/public/esq/data-model/filters/base-filter.mjs +36 -1
- package/esm2020/lib/public/esq/data-model/filters/between-filter.mjs +20 -1
- package/esm2020/lib/public/esq/data-model/filters/compare-filter.mjs +19 -1
- package/esm2020/lib/public/esq/data-model/filters/exists-filter.mjs +20 -1
- package/esm2020/lib/public/esq/data-model/filters/filter-group.mjs +36 -15
- package/esm2020/lib/public/esq/data-model/filters/in-filter.mjs +19 -1
- package/esm2020/lib/public/esq/data-model/filters/isnull-filter.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/filters/mocks/filter.mock.mjs +13 -1
- package/esm2020/lib/public/esq/data-model/filters/single-filter.mjs +19 -1
- package/esm2020/lib/public/esq/data-model/queries/base-filterable-query.mjs +7 -1
- package/esm2020/lib/public/interfaces/index.mjs +2 -0
- package/esm2020/lib/public/interfaces/serializable.mjs +2 -0
- package/fesm2015/creatio-base.mjs +382 -14
- package/fesm2015/creatio-base.mjs.map +1 -1
- package/fesm2020/creatio-base.mjs +396 -14
- package/fesm2020/creatio-base.mjs.map +1 -1
- package/index.d.ts +79 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -43,6 +43,8 @@ export declare class ɵAggregationFunctionColumn extends ɵBaseQueryColumn<ɵAgg
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
export declare class ɵAggregationFunctionExpression extends ɵArgumentFunctionExpression {
|
|
46
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
47
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
46
48
|
readonly functionType: ɵFunctionType;
|
|
47
49
|
readonly aggregationType: ɵAggregationType;
|
|
48
50
|
readonly aggregationEvalType: ɵAggregationEvalType;
|
|
@@ -62,6 +64,8 @@ export declare class ɵAggregationSubQueryColumn extends ɵBaseQueryColumn<ɵAgg
|
|
|
62
64
|
}
|
|
63
65
|
|
|
64
66
|
export declare class ɵAggregationSubQueryExpression extends ɵSubQueryExpression {
|
|
67
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
68
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
65
69
|
readonly aggregationType: ɵAggregationType;
|
|
66
70
|
readonly functionType?: ɵFunctionType;
|
|
67
71
|
constructor(config: ɵAggregationSubQueryExpressionConfig);
|
|
@@ -97,9 +101,12 @@ export declare class ɵArgumentEmptyException extends Error {
|
|
|
97
101
|
}
|
|
98
102
|
|
|
99
103
|
export declare abstract class ɵArgumentFunctionExpression extends ɵFunctionExpression {
|
|
104
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
105
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
100
106
|
readonly functionArgument: ɵBaseExpression;
|
|
101
107
|
protected constructor(config: ɵArgumentFunctionExpressionConfig<ɵArgumentFunctionExpression>);
|
|
102
108
|
abstract clone(): ɵArgumentFunctionExpression;
|
|
109
|
+
toJson(): ɵJsonObject;
|
|
103
110
|
}
|
|
104
111
|
|
|
105
112
|
export declare type ɵArgumentFunctionExpressionConfig<TExpression extends ɵArgumentFunctionExpression> = ɵFunctionExpressionConfig<TExpression> & Pick<ɵArgumentFunctionExpression, 'functionArgument'>;
|
|
@@ -109,6 +116,8 @@ export declare class ɵArgumentOutOfRangeException extends Error {
|
|
|
109
116
|
}
|
|
110
117
|
|
|
111
118
|
export declare class ɵArithmeticExpression extends ɵBaseExpression {
|
|
119
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
120
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
112
121
|
readonly expressionType: ɵExpressionType;
|
|
113
122
|
readonly arithmeticOperation: ɵArithmeticOperation;
|
|
114
123
|
readonly leftArithmeticOperand: ɵBaseExpression;
|
|
@@ -155,8 +164,11 @@ export declare interface ɵBaseDataSourceParameter {
|
|
|
155
164
|
relationsConfigs?: ɵDataSourceParameterRelationConfig[];
|
|
156
165
|
}
|
|
157
166
|
|
|
158
|
-
export declare abstract class ɵBaseExpression {
|
|
167
|
+
export declare abstract class ɵBaseExpression implements ɵSerializable {
|
|
168
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
169
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
159
170
|
readonly isBlock: boolean;
|
|
171
|
+
static [Symbol.hasInstance](instance: ɵBaseExpression): boolean;
|
|
160
172
|
abstract readonly expressionType: ɵExpressionType;
|
|
161
173
|
protected constructor(config: ɵExpressionConfig<ɵBaseExpression>);
|
|
162
174
|
/**
|
|
@@ -164,7 +176,9 @@ export declare abstract class ɵBaseExpression {
|
|
|
164
176
|
* @public
|
|
165
177
|
*/
|
|
166
178
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser?: TExpressionParser): ɵBaseExpression;
|
|
179
|
+
protected serializeItem(item: ɵSerializable): ɵJsonObject;
|
|
167
180
|
abstract clone(): ɵBaseExpression;
|
|
181
|
+
/* Excluded from this release type: toJson */
|
|
168
182
|
}
|
|
169
183
|
|
|
170
184
|
/**
|
|
@@ -175,17 +189,22 @@ export declare class ɵBaseExpressionParser {
|
|
|
175
189
|
static fromJson(dto: ɵJsonObject, filterParser: typeof ɵBaseFilterParser): unknown;
|
|
176
190
|
}
|
|
177
191
|
|
|
178
|
-
export declare abstract class ɵBaseFilter {
|
|
192
|
+
export declare abstract class ɵBaseFilter implements ɵSerializable {
|
|
193
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
194
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
179
195
|
readonly filterType: ɵFilterType;
|
|
180
196
|
isEnabled: boolean;
|
|
181
197
|
trimDateTimeParameterToDate: boolean;
|
|
198
|
+
static [Symbol.hasInstance](instance: ɵBaseFilter): boolean;
|
|
182
199
|
protected constructor(filterType: ɵFilterType);
|
|
183
200
|
/**
|
|
184
201
|
* Parses filter from json.
|
|
185
202
|
* @public
|
|
186
203
|
*/
|
|
187
204
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵBaseFilter;
|
|
205
|
+
protected serializeItem(item: ɵSerializable): ɵJsonObject;
|
|
188
206
|
abstract clone(): ɵBaseFilter;
|
|
207
|
+
/* Excluded from this release type: toJson */
|
|
189
208
|
}
|
|
190
209
|
|
|
191
210
|
/**
|
|
@@ -195,6 +214,7 @@ export declare abstract class ɵBaseFilterableQuery extends ɵBaseQuery {
|
|
|
195
214
|
readonly filters: ɵFilterGroup;
|
|
196
215
|
protected constructor(operationType: ɵQueryOperationType, rootSchemaName: string);
|
|
197
216
|
clearFilters(): void;
|
|
217
|
+
getMetadata(): Record<string, unknown>;
|
|
198
218
|
}
|
|
199
219
|
|
|
200
220
|
/**
|
|
@@ -304,6 +324,8 @@ export declare interface ɵBaseSysSettingsService {
|
|
|
304
324
|
}
|
|
305
325
|
|
|
306
326
|
export declare class ɵBetweenFilter extends ɵSingleFilter {
|
|
327
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
328
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
307
329
|
readonly rightLessExpression: ɵBaseExpression;
|
|
308
330
|
readonly rightGreaterExpression: ɵBaseExpression;
|
|
309
331
|
constructor(leftExpression: ɵBaseExpression, rightLessExpression: ɵBaseExpression, rightGreaterExpression: ɵBaseExpression);
|
|
@@ -313,9 +335,12 @@ export declare class ɵBetweenFilter extends ɵSingleFilter {
|
|
|
313
335
|
*/
|
|
314
336
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵBetweenFilter;
|
|
315
337
|
clone(): ɵBetweenFilter;
|
|
338
|
+
toJson(): ɵJsonObject;
|
|
316
339
|
}
|
|
317
340
|
|
|
318
341
|
export declare class ɵColumnExpression extends ɵBaseExpression {
|
|
342
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
343
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
319
344
|
readonly expressionType: ɵExpressionType;
|
|
320
345
|
columnPath: string;
|
|
321
346
|
constructor(config: ɵColumnExpressionConfig);
|
|
@@ -330,6 +355,8 @@ export declare class ɵColumnExpression extends ɵBaseExpression {
|
|
|
330
355
|
export declare type ɵColumnExpressionConfig = ɵExpressionConfig<ɵColumnExpression> & Pick<ɵColumnExpression, 'columnPath'>;
|
|
331
356
|
|
|
332
357
|
export declare class ɵCompareFilter extends ɵSingleFilter {
|
|
358
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
359
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
333
360
|
readonly rightExpression: ɵBaseExpression;
|
|
334
361
|
constructor(comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression, rightExpression: ɵBaseExpression);
|
|
335
362
|
/**
|
|
@@ -338,6 +365,7 @@ export declare class ɵCompareFilter extends ɵSingleFilter {
|
|
|
338
365
|
*/
|
|
339
366
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵCompareFilter;
|
|
340
367
|
clone(): ɵCompareFilter;
|
|
368
|
+
toJson(): ɵJsonObject;
|
|
341
369
|
}
|
|
342
370
|
|
|
343
371
|
export declare enum ɵComparisonType {
|
|
@@ -760,6 +788,8 @@ export declare class ɵDatePartFunctionColumn extends ɵBaseQueryColumn<ɵDatePa
|
|
|
760
788
|
}
|
|
761
789
|
|
|
762
790
|
export declare class ɵDatePartFunctionExpression extends ɵArgumentFunctionExpression {
|
|
791
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
792
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
763
793
|
readonly functionType: ɵFunctionType;
|
|
764
794
|
readonly datePartType: ɵDatePartType;
|
|
765
795
|
constructor(config: ɵDatePartFunctionExpressionConfig);
|
|
@@ -966,6 +996,8 @@ export declare class ɵEntitySchemaQuery extends ɵBaseFilterableQuery {
|
|
|
966
996
|
}
|
|
967
997
|
|
|
968
998
|
export declare class ɵExistsFilter extends ɵSingleFilter {
|
|
999
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1000
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
969
1001
|
readonly subFilters?: ɵFilterGroup;
|
|
970
1002
|
readonly isAggregative: boolean;
|
|
971
1003
|
constructor(leftExpression: ɵBaseExpression, subFilters?: ɵFilterGroup, comparisonType?: ɵComparisonType, isAggregative?: boolean);
|
|
@@ -975,6 +1007,7 @@ export declare class ɵExistsFilter extends ɵSingleFilter {
|
|
|
975
1007
|
*/
|
|
976
1008
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵExistsFilter;
|
|
977
1009
|
clone(): ɵExistsFilter;
|
|
1010
|
+
toJson(): ɵJsonObject;
|
|
978
1011
|
}
|
|
979
1012
|
|
|
980
1013
|
export declare const ɵEXPRESSION_TYPE_MOCK: ɵExpressionType;
|
|
@@ -982,6 +1015,8 @@ export declare const ɵEXPRESSION_TYPE_MOCK: ɵExpressionType;
|
|
|
982
1015
|
export declare type ɵExpressionConfig<TExpression extends ɵBaseExpression> = Partial<Omit<TExpression, 'expressionType'>>;
|
|
983
1016
|
|
|
984
1017
|
export declare class ɵExpressionMock extends ɵBaseExpression {
|
|
1018
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1019
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
985
1020
|
readonly expressionType: ɵExpressionType;
|
|
986
1021
|
constructor(config?: ɵExpressionConfig<ɵExpressionMock>);
|
|
987
1022
|
get plainObject(): object;
|
|
@@ -1017,6 +1052,8 @@ export declare enum ɵExpressionType {
|
|
|
1017
1052
|
}
|
|
1018
1053
|
|
|
1019
1054
|
export declare class ɵFilterGroup extends ɵBaseFilter {
|
|
1055
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1056
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1020
1057
|
filters: Map<string, ɵBaseFilter>;
|
|
1021
1058
|
get items(): {
|
|
1022
1059
|
[key: string]: ɵBaseFilter;
|
|
@@ -1042,8 +1079,15 @@ export declare class ɵFilterGroup extends ɵBaseFilter {
|
|
|
1042
1079
|
* @param filterKey Filter key.
|
|
1043
1080
|
*/
|
|
1044
1081
|
addSchemaColumnFilterWithParameter(comparisonType: ɵComparisonType, columnPath: string, parameterValue: ɵEntityColumnValue, filterKey?: string): void;
|
|
1045
|
-
|
|
1046
|
-
|
|
1082
|
+
/**
|
|
1083
|
+
* Creates and adds in filter by values.
|
|
1084
|
+
* @param comparisonType Comparison type.
|
|
1085
|
+
* @param columnPath Column path.
|
|
1086
|
+
* @param parameterValues Parameter values.
|
|
1087
|
+
* @param filterKey Filter key.
|
|
1088
|
+
*/
|
|
1089
|
+
addSchemaColumnInFilterWithParameters(comparisonType: ɵComparisonType, columnPath: string, parameterValues: ɵEntityColumnValue[], filterKey?: string): void;
|
|
1090
|
+
addSchemaColumnIsNullFilter(columnPath: string, filterKey?: string): void;
|
|
1047
1091
|
/**
|
|
1048
1092
|
* Creates and adds not null filter.
|
|
1049
1093
|
* @param columnPath Column path.
|
|
@@ -1055,15 +1099,18 @@ export declare class ɵFilterGroup extends ɵBaseFilter {
|
|
|
1055
1099
|
* @param columnPath Column path.
|
|
1056
1100
|
* @param lessParamValue Less parameter value.
|
|
1057
1101
|
* @param greaterParamValue Greater parameter value.
|
|
1102
|
+
* @param filterKey Filter key.
|
|
1058
1103
|
*/
|
|
1059
|
-
addSchemaColumnBetweenFilterWithParameters(columnPath: string, lessParamValue: Date | number, greaterParamValue: Date | number): void;
|
|
1060
|
-
addExistsFilter(columnPath: string, subFilters?: ɵFilterGroup): void;
|
|
1061
|
-
addNotExistsFilter(columnPath: string, subFilters?: ɵFilterGroup): void;
|
|
1104
|
+
addSchemaColumnBetweenFilterWithParameters(columnPath: string, lessParamValue: Date | number, greaterParamValue: Date | number, filterKey?: string): void;
|
|
1105
|
+
addExistsFilter(columnPath: string, subFilters?: ɵFilterGroup, filterKey?: string): void;
|
|
1106
|
+
addNotExistsFilter(columnPath: string, subFilters?: ɵFilterGroup, filterKey?: string): void;
|
|
1062
1107
|
add(filter: ɵBaseFilter, filterKey?: string): void;
|
|
1063
1108
|
clone(): ɵFilterGroup;
|
|
1064
1109
|
}
|
|
1065
1110
|
|
|
1066
1111
|
export declare class ɵFilterMock extends ɵBaseFilter {
|
|
1112
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1113
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1067
1114
|
constructor(filterType?: ɵFilterType);
|
|
1068
1115
|
get plainObject(): object;
|
|
1069
1116
|
clone(): ɵFilterMock;
|
|
@@ -1096,6 +1143,8 @@ export declare enum ɵFilterType {
|
|
|
1096
1143
|
}
|
|
1097
1144
|
|
|
1098
1145
|
export declare abstract class ɵFunctionExpression extends ɵBaseExpression {
|
|
1146
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1147
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1099
1148
|
readonly expressionType: ɵExpressionType;
|
|
1100
1149
|
abstract readonly functionType: ɵFunctionType;
|
|
1101
1150
|
protected constructor(config: ɵFunctionExpressionConfig<ɵFunctionExpression>);
|
|
@@ -1145,6 +1194,8 @@ export declare function ɵgetFilterPlainObj(filterPlainObj?: object): object;
|
|
|
1145
1194
|
export declare type ɵGuid = string;
|
|
1146
1195
|
|
|
1147
1196
|
export declare class ɵInFilter extends ɵSingleFilter {
|
|
1197
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1198
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1148
1199
|
readonly rightExpressions: ɵBaseExpression[];
|
|
1149
1200
|
constructor(comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression, rightExpressions: ɵBaseExpression[]);
|
|
1150
1201
|
/**
|
|
@@ -1153,6 +1204,7 @@ export declare class ɵInFilter extends ɵSingleFilter {
|
|
|
1153
1204
|
*/
|
|
1154
1205
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵInFilter;
|
|
1155
1206
|
clone(): ɵInFilter;
|
|
1207
|
+
toJson(): ɵJsonObject;
|
|
1156
1208
|
}
|
|
1157
1209
|
|
|
1158
1210
|
/**
|
|
@@ -1184,6 +1236,8 @@ export declare function ɵisEmptyGuid(guid: ɵGuid | undefined): boolean;
|
|
|
1184
1236
|
export declare function ɵisGuid(value: unknown): boolean;
|
|
1185
1237
|
|
|
1186
1238
|
export declare class ɵIsNullFilter extends ɵSingleFilter {
|
|
1239
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1240
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1187
1241
|
constructor(comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression);
|
|
1188
1242
|
get isNull(): boolean;
|
|
1189
1243
|
/**
|
|
@@ -1220,6 +1274,8 @@ export declare class ɵLengthFunctionColumn extends ɵBaseQueryColumn<ɵLengthFu
|
|
|
1220
1274
|
}
|
|
1221
1275
|
|
|
1222
1276
|
export declare class ɵLengthFunctionExpression extends ɵArgumentFunctionExpression {
|
|
1277
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1278
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1223
1279
|
readonly functionType: ɵFunctionType;
|
|
1224
1280
|
readonly functionArgument: ɵColumnExpression;
|
|
1225
1281
|
constructor(config: ɵLengthFunctionExpressionConfig);
|
|
@@ -1301,6 +1357,8 @@ export declare class ɵMacrosFunctionColumn extends ɵBaseQueryColumn<ɵMacrosFu
|
|
|
1301
1357
|
}
|
|
1302
1358
|
|
|
1303
1359
|
export declare class ɵMacrosFunctionExpression extends ɵFunctionExpression {
|
|
1360
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1361
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1304
1362
|
readonly functionType: ɵFunctionType;
|
|
1305
1363
|
readonly macrosType: ɵQueryMacrosType;
|
|
1306
1364
|
constructor(config: ɵMacrosFunctionExpressionConfig);
|
|
@@ -1346,6 +1404,8 @@ export declare enum ɵOrderDirection {
|
|
|
1346
1404
|
}
|
|
1347
1405
|
|
|
1348
1406
|
export declare class ɵParameterExpression extends ɵBaseExpression {
|
|
1407
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1408
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1349
1409
|
readonly expressionType: ɵExpressionType;
|
|
1350
1410
|
readonly value: ɵEntityColumnValue;
|
|
1351
1411
|
readonly dataValueType: ɵDataValueType;
|
|
@@ -1502,10 +1562,17 @@ export declare type ɵResolveDependencyFn = (token: unknown) => unknown;
|
|
|
1502
1562
|
export declare class ɵSelectLocalizationQuery extends ɵEntitySchemaQuery {
|
|
1503
1563
|
}
|
|
1504
1564
|
|
|
1565
|
+
export declare interface ɵSerializable {
|
|
1566
|
+
toJson(): ɵJsonObject;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1505
1569
|
export declare abstract class ɵSingleFilter extends ɵBaseFilter {
|
|
1570
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1571
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1506
1572
|
readonly comparisonType: ɵComparisonType;
|
|
1507
1573
|
readonly leftExpression: ɵBaseExpression;
|
|
1508
1574
|
protected constructor(filterType: ɵFilterType, comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression);
|
|
1575
|
+
toJson(): ɵJsonObject;
|
|
1509
1576
|
}
|
|
1510
1577
|
|
|
1511
1578
|
/**
|
|
@@ -1527,6 +1594,8 @@ export declare class ɵSubQueryColumn extends ɵBaseQueryColumn<ɵSubQueryExpres
|
|
|
1527
1594
|
}
|
|
1528
1595
|
|
|
1529
1596
|
export declare class ɵSubQueryExpression extends ɵBaseExpression {
|
|
1597
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1598
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1530
1599
|
readonly expressionType: ɵExpressionType;
|
|
1531
1600
|
columnPath: string;
|
|
1532
1601
|
readonly subFilters: ɵFilterGroup;
|
|
@@ -1539,6 +1608,7 @@ export declare class ɵSubQueryExpression extends ɵBaseExpression {
|
|
|
1539
1608
|
*/
|
|
1540
1609
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser>(dto: ɵJsonObject, filterParser: TFilterParser): ɵSubQueryExpression;
|
|
1541
1610
|
clone(): ɵSubQueryExpression;
|
|
1611
|
+
toJson(): ɵJsonObject;
|
|
1542
1612
|
}
|
|
1543
1613
|
|
|
1544
1614
|
export declare type ɵSubQueryExpressionConfig = ɵExpressionConfig<ɵSubQueryExpression> & Pick<ɵSubQueryExpression, 'columnPath'>;
|
|
@@ -1606,6 +1676,8 @@ export declare class ɵWindowFunctionColumn extends ɵBaseQueryColumn<ɵWindowFu
|
|
|
1606
1676
|
}
|
|
1607
1677
|
|
|
1608
1678
|
export declare class ɵWindowFunctionExpression extends ɵArgumentFunctionExpression {
|
|
1679
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1680
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1609
1681
|
readonly functionType: ɵFunctionType;
|
|
1610
1682
|
readonly functionArgument: ɵAggregationFunctionExpression;
|
|
1611
1683
|
constructor(config: ɵWindowFunctionExpressionConfig);
|