@creatio/base 0.810.0 → 0.811.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +87 -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,13 @@ 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
|
+
/**
|
|
182
|
+
* Converts instance to json object.
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
toJson(): ɵJsonObject;
|
|
168
186
|
}
|
|
169
187
|
|
|
170
188
|
/**
|
|
@@ -175,17 +193,26 @@ export declare class ɵBaseExpressionParser {
|
|
|
175
193
|
static fromJson(dto: ɵJsonObject, filterParser: typeof ɵBaseFilterParser): unknown;
|
|
176
194
|
}
|
|
177
195
|
|
|
178
|
-
export declare abstract class ɵBaseFilter {
|
|
196
|
+
export declare abstract class ɵBaseFilter implements ɵSerializable {
|
|
197
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
198
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
179
199
|
readonly filterType: ɵFilterType;
|
|
180
200
|
isEnabled: boolean;
|
|
181
201
|
trimDateTimeParameterToDate: boolean;
|
|
202
|
+
static [Symbol.hasInstance](instance: ɵBaseFilter): boolean;
|
|
182
203
|
protected constructor(filterType: ɵFilterType);
|
|
183
204
|
/**
|
|
184
205
|
* Parses filter from json.
|
|
185
206
|
* @public
|
|
186
207
|
*/
|
|
187
208
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵBaseFilter;
|
|
209
|
+
protected serializeItem(item: ɵSerializable): ɵJsonObject;
|
|
188
210
|
abstract clone(): ɵBaseFilter;
|
|
211
|
+
/**
|
|
212
|
+
* Converts instance to json object.
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
toJson(): ɵJsonObject;
|
|
189
216
|
}
|
|
190
217
|
|
|
191
218
|
/**
|
|
@@ -195,6 +222,7 @@ export declare abstract class ɵBaseFilterableQuery extends ɵBaseQuery {
|
|
|
195
222
|
readonly filters: ɵFilterGroup;
|
|
196
223
|
protected constructor(operationType: ɵQueryOperationType, rootSchemaName: string);
|
|
197
224
|
clearFilters(): void;
|
|
225
|
+
getMetadata(): Record<string, unknown>;
|
|
198
226
|
}
|
|
199
227
|
|
|
200
228
|
/**
|
|
@@ -304,6 +332,8 @@ export declare interface ɵBaseSysSettingsService {
|
|
|
304
332
|
}
|
|
305
333
|
|
|
306
334
|
export declare class ɵBetweenFilter extends ɵSingleFilter {
|
|
335
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
336
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
307
337
|
readonly rightLessExpression: ɵBaseExpression;
|
|
308
338
|
readonly rightGreaterExpression: ɵBaseExpression;
|
|
309
339
|
constructor(leftExpression: ɵBaseExpression, rightLessExpression: ɵBaseExpression, rightGreaterExpression: ɵBaseExpression);
|
|
@@ -313,9 +343,12 @@ export declare class ɵBetweenFilter extends ɵSingleFilter {
|
|
|
313
343
|
*/
|
|
314
344
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵBetweenFilter;
|
|
315
345
|
clone(): ɵBetweenFilter;
|
|
346
|
+
toJson(): ɵJsonObject;
|
|
316
347
|
}
|
|
317
348
|
|
|
318
349
|
export declare class ɵColumnExpression extends ɵBaseExpression {
|
|
350
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
351
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
319
352
|
readonly expressionType: ɵExpressionType;
|
|
320
353
|
columnPath: string;
|
|
321
354
|
constructor(config: ɵColumnExpressionConfig);
|
|
@@ -330,6 +363,8 @@ export declare class ɵColumnExpression extends ɵBaseExpression {
|
|
|
330
363
|
export declare type ɵColumnExpressionConfig = ɵExpressionConfig<ɵColumnExpression> & Pick<ɵColumnExpression, 'columnPath'>;
|
|
331
364
|
|
|
332
365
|
export declare class ɵCompareFilter extends ɵSingleFilter {
|
|
366
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
367
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
333
368
|
readonly rightExpression: ɵBaseExpression;
|
|
334
369
|
constructor(comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression, rightExpression: ɵBaseExpression);
|
|
335
370
|
/**
|
|
@@ -338,6 +373,7 @@ export declare class ɵCompareFilter extends ɵSingleFilter {
|
|
|
338
373
|
*/
|
|
339
374
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵCompareFilter;
|
|
340
375
|
clone(): ɵCompareFilter;
|
|
376
|
+
toJson(): ɵJsonObject;
|
|
341
377
|
}
|
|
342
378
|
|
|
343
379
|
export declare enum ɵComparisonType {
|
|
@@ -760,6 +796,8 @@ export declare class ɵDatePartFunctionColumn extends ɵBaseQueryColumn<ɵDatePa
|
|
|
760
796
|
}
|
|
761
797
|
|
|
762
798
|
export declare class ɵDatePartFunctionExpression extends ɵArgumentFunctionExpression {
|
|
799
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
800
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
763
801
|
readonly functionType: ɵFunctionType;
|
|
764
802
|
readonly datePartType: ɵDatePartType;
|
|
765
803
|
constructor(config: ɵDatePartFunctionExpressionConfig);
|
|
@@ -966,6 +1004,8 @@ export declare class ɵEntitySchemaQuery extends ɵBaseFilterableQuery {
|
|
|
966
1004
|
}
|
|
967
1005
|
|
|
968
1006
|
export declare class ɵExistsFilter extends ɵSingleFilter {
|
|
1007
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1008
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
969
1009
|
readonly subFilters?: ɵFilterGroup;
|
|
970
1010
|
readonly isAggregative: boolean;
|
|
971
1011
|
constructor(leftExpression: ɵBaseExpression, subFilters?: ɵFilterGroup, comparisonType?: ɵComparisonType, isAggregative?: boolean);
|
|
@@ -975,6 +1015,7 @@ export declare class ɵExistsFilter extends ɵSingleFilter {
|
|
|
975
1015
|
*/
|
|
976
1016
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵExistsFilter;
|
|
977
1017
|
clone(): ɵExistsFilter;
|
|
1018
|
+
toJson(): ɵJsonObject;
|
|
978
1019
|
}
|
|
979
1020
|
|
|
980
1021
|
export declare const ɵEXPRESSION_TYPE_MOCK: ɵExpressionType;
|
|
@@ -982,6 +1023,8 @@ export declare const ɵEXPRESSION_TYPE_MOCK: ɵExpressionType;
|
|
|
982
1023
|
export declare type ɵExpressionConfig<TExpression extends ɵBaseExpression> = Partial<Omit<TExpression, 'expressionType'>>;
|
|
983
1024
|
|
|
984
1025
|
export declare class ɵExpressionMock extends ɵBaseExpression {
|
|
1026
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1027
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
985
1028
|
readonly expressionType: ɵExpressionType;
|
|
986
1029
|
constructor(config?: ɵExpressionConfig<ɵExpressionMock>);
|
|
987
1030
|
get plainObject(): object;
|
|
@@ -1017,6 +1060,8 @@ export declare enum ɵExpressionType {
|
|
|
1017
1060
|
}
|
|
1018
1061
|
|
|
1019
1062
|
export declare class ɵFilterGroup extends ɵBaseFilter {
|
|
1063
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1064
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1020
1065
|
filters: Map<string, ɵBaseFilter>;
|
|
1021
1066
|
get items(): {
|
|
1022
1067
|
[key: string]: ɵBaseFilter;
|
|
@@ -1042,8 +1087,15 @@ export declare class ɵFilterGroup extends ɵBaseFilter {
|
|
|
1042
1087
|
* @param filterKey Filter key.
|
|
1043
1088
|
*/
|
|
1044
1089
|
addSchemaColumnFilterWithParameter(comparisonType: ɵComparisonType, columnPath: string, parameterValue: ɵEntityColumnValue, filterKey?: string): void;
|
|
1045
|
-
|
|
1046
|
-
|
|
1090
|
+
/**
|
|
1091
|
+
* Creates and adds in filter by values.
|
|
1092
|
+
* @param comparisonType Comparison type.
|
|
1093
|
+
* @param columnPath Column path.
|
|
1094
|
+
* @param parameterValues Parameter values.
|
|
1095
|
+
* @param filterKey Filter key.
|
|
1096
|
+
*/
|
|
1097
|
+
addSchemaColumnInFilterWithParameters(comparisonType: ɵComparisonType, columnPath: string, parameterValues: ɵEntityColumnValue[], filterKey?: string): void;
|
|
1098
|
+
addSchemaColumnIsNullFilter(columnPath: string, filterKey?: string): void;
|
|
1047
1099
|
/**
|
|
1048
1100
|
* Creates and adds not null filter.
|
|
1049
1101
|
* @param columnPath Column path.
|
|
@@ -1055,15 +1107,18 @@ export declare class ɵFilterGroup extends ɵBaseFilter {
|
|
|
1055
1107
|
* @param columnPath Column path.
|
|
1056
1108
|
* @param lessParamValue Less parameter value.
|
|
1057
1109
|
* @param greaterParamValue Greater parameter value.
|
|
1110
|
+
* @param filterKey Filter key.
|
|
1058
1111
|
*/
|
|
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;
|
|
1112
|
+
addSchemaColumnBetweenFilterWithParameters(columnPath: string, lessParamValue: Date | number, greaterParamValue: Date | number, filterKey?: string): void;
|
|
1113
|
+
addExistsFilter(columnPath: string, subFilters?: ɵFilterGroup, filterKey?: string): void;
|
|
1114
|
+
addNotExistsFilter(columnPath: string, subFilters?: ɵFilterGroup, filterKey?: string): void;
|
|
1062
1115
|
add(filter: ɵBaseFilter, filterKey?: string): void;
|
|
1063
1116
|
clone(): ɵFilterGroup;
|
|
1064
1117
|
}
|
|
1065
1118
|
|
|
1066
1119
|
export declare class ɵFilterMock extends ɵBaseFilter {
|
|
1120
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1121
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1067
1122
|
constructor(filterType?: ɵFilterType);
|
|
1068
1123
|
get plainObject(): object;
|
|
1069
1124
|
clone(): ɵFilterMock;
|
|
@@ -1096,6 +1151,8 @@ export declare enum ɵFilterType {
|
|
|
1096
1151
|
}
|
|
1097
1152
|
|
|
1098
1153
|
export declare abstract class ɵFunctionExpression extends ɵBaseExpression {
|
|
1154
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1155
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1099
1156
|
readonly expressionType: ɵExpressionType;
|
|
1100
1157
|
abstract readonly functionType: ɵFunctionType;
|
|
1101
1158
|
protected constructor(config: ɵFunctionExpressionConfig<ɵFunctionExpression>);
|
|
@@ -1145,6 +1202,8 @@ export declare function ɵgetFilterPlainObj(filterPlainObj?: object): object;
|
|
|
1145
1202
|
export declare type ɵGuid = string;
|
|
1146
1203
|
|
|
1147
1204
|
export declare class ɵInFilter extends ɵSingleFilter {
|
|
1205
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1206
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1148
1207
|
readonly rightExpressions: ɵBaseExpression[];
|
|
1149
1208
|
constructor(comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression, rightExpressions: ɵBaseExpression[]);
|
|
1150
1209
|
/**
|
|
@@ -1153,6 +1212,7 @@ export declare class ɵInFilter extends ɵSingleFilter {
|
|
|
1153
1212
|
*/
|
|
1154
1213
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser, TExpressionParser extends typeof ɵBaseExpressionParser>(dto: ɵJsonObject, filterParser: TFilterParser, expressionParser: TExpressionParser): ɵInFilter;
|
|
1155
1214
|
clone(): ɵInFilter;
|
|
1215
|
+
toJson(): ɵJsonObject;
|
|
1156
1216
|
}
|
|
1157
1217
|
|
|
1158
1218
|
/**
|
|
@@ -1184,6 +1244,8 @@ export declare function ɵisEmptyGuid(guid: ɵGuid | undefined): boolean;
|
|
|
1184
1244
|
export declare function ɵisGuid(value: unknown): boolean;
|
|
1185
1245
|
|
|
1186
1246
|
export declare class ɵIsNullFilter extends ɵSingleFilter {
|
|
1247
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1248
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1187
1249
|
constructor(comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression);
|
|
1188
1250
|
get isNull(): boolean;
|
|
1189
1251
|
/**
|
|
@@ -1220,6 +1282,8 @@ export declare class ɵLengthFunctionColumn extends ɵBaseQueryColumn<ɵLengthFu
|
|
|
1220
1282
|
}
|
|
1221
1283
|
|
|
1222
1284
|
export declare class ɵLengthFunctionExpression extends ɵArgumentFunctionExpression {
|
|
1285
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1286
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1223
1287
|
readonly functionType: ɵFunctionType;
|
|
1224
1288
|
readonly functionArgument: ɵColumnExpression;
|
|
1225
1289
|
constructor(config: ɵLengthFunctionExpressionConfig);
|
|
@@ -1301,6 +1365,8 @@ export declare class ɵMacrosFunctionColumn extends ɵBaseQueryColumn<ɵMacrosFu
|
|
|
1301
1365
|
}
|
|
1302
1366
|
|
|
1303
1367
|
export declare class ɵMacrosFunctionExpression extends ɵFunctionExpression {
|
|
1368
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1369
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1304
1370
|
readonly functionType: ɵFunctionType;
|
|
1305
1371
|
readonly macrosType: ɵQueryMacrosType;
|
|
1306
1372
|
constructor(config: ɵMacrosFunctionExpressionConfig);
|
|
@@ -1346,6 +1412,8 @@ export declare enum ɵOrderDirection {
|
|
|
1346
1412
|
}
|
|
1347
1413
|
|
|
1348
1414
|
export declare class ɵParameterExpression extends ɵBaseExpression {
|
|
1415
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1416
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1349
1417
|
readonly expressionType: ɵExpressionType;
|
|
1350
1418
|
readonly value: ɵEntityColumnValue;
|
|
1351
1419
|
readonly dataValueType: ɵDataValueType;
|
|
@@ -1502,10 +1570,17 @@ export declare type ɵResolveDependencyFn = (token: unknown) => unknown;
|
|
|
1502
1570
|
export declare class ɵSelectLocalizationQuery extends ɵEntitySchemaQuery {
|
|
1503
1571
|
}
|
|
1504
1572
|
|
|
1573
|
+
export declare interface ɵSerializable {
|
|
1574
|
+
toJson(): ɵJsonObject;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1505
1577
|
export declare abstract class ɵSingleFilter extends ɵBaseFilter {
|
|
1578
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1579
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1506
1580
|
readonly comparisonType: ɵComparisonType;
|
|
1507
1581
|
readonly leftExpression: ɵBaseExpression;
|
|
1508
1582
|
protected constructor(filterType: ɵFilterType, comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression);
|
|
1583
|
+
toJson(): ɵJsonObject;
|
|
1509
1584
|
}
|
|
1510
1585
|
|
|
1511
1586
|
/**
|
|
@@ -1527,6 +1602,8 @@ export declare class ɵSubQueryColumn extends ɵBaseQueryColumn<ɵSubQueryExpres
|
|
|
1527
1602
|
}
|
|
1528
1603
|
|
|
1529
1604
|
export declare class ɵSubQueryExpression extends ɵBaseExpression {
|
|
1605
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1606
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1530
1607
|
readonly expressionType: ɵExpressionType;
|
|
1531
1608
|
columnPath: string;
|
|
1532
1609
|
readonly subFilters: ɵFilterGroup;
|
|
@@ -1539,6 +1616,7 @@ export declare class ɵSubQueryExpression extends ɵBaseExpression {
|
|
|
1539
1616
|
*/
|
|
1540
1617
|
static fromJson<TFilterParser extends typeof ɵBaseFilterParser>(dto: ɵJsonObject, filterParser: TFilterParser): ɵSubQueryExpression;
|
|
1541
1618
|
clone(): ɵSubQueryExpression;
|
|
1619
|
+
toJson(): ɵJsonObject;
|
|
1542
1620
|
}
|
|
1543
1621
|
|
|
1544
1622
|
export declare type ɵSubQueryExpressionConfig = ɵExpressionConfig<ɵSubQueryExpression> & Pick<ɵSubQueryExpression, 'columnPath'>;
|
|
@@ -1606,6 +1684,8 @@ export declare class ɵWindowFunctionColumn extends ɵBaseQueryColumn<ɵWindowFu
|
|
|
1606
1684
|
}
|
|
1607
1685
|
|
|
1608
1686
|
export declare class ɵWindowFunctionExpression extends ɵArgumentFunctionExpression {
|
|
1687
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
1688
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
1609
1689
|
readonly functionType: ɵFunctionType;
|
|
1610
1690
|
readonly functionArgument: ɵAggregationFunctionExpression;
|
|
1611
1691
|
constructor(config: ɵWindowFunctionExpressionConfig);
|