d5-api-initializer 1.4.0 → 1.4.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/package.json +1 -1
- package/publish/d5-api-initializer.d.ts +15 -12
package/package.json
CHANGED
|
@@ -440,22 +440,25 @@ declare class ApiHttpResponse {
|
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
interface IFilterValue {
|
|
443
|
-
'='?: string | number | Array<string | number>;
|
|
444
|
-
'
|
|
445
|
-
'
|
|
446
|
-
'
|
|
447
|
-
'
|
|
448
|
-
'
|
|
449
|
-
'
|
|
450
|
-
'
|
|
451
|
-
'
|
|
443
|
+
'='?: string | number | null | Array<string | number>;
|
|
444
|
+
'=~'?: string | null | Array<string>;
|
|
445
|
+
'>'?: string | number;
|
|
446
|
+
'>='?: string | number;
|
|
447
|
+
'<'?: string | number;
|
|
448
|
+
'<='?: string | number;
|
|
449
|
+
'!='?: string | number | null | Array<string | number>;
|
|
450
|
+
'<>'?: string | number | null | Array<string | number>;
|
|
451
|
+
'between'?: [string | number, string | number];
|
|
452
|
+
'like'?: string | number;
|
|
453
|
+
'%'?: string;
|
|
454
|
+
'%~'?: string;
|
|
452
455
|
}
|
|
453
456
|
interface IFilter {
|
|
454
457
|
[fieldName: string]: IFilterValue;
|
|
455
458
|
}
|
|
456
|
-
|
|
457
|
-
[
|
|
458
|
-
}
|
|
459
|
+
type IFiltersCollection = {
|
|
460
|
+
[fieldName: string]: IFilterValue | IFilterValue[] | IFiltersCollection[];
|
|
461
|
+
};
|
|
459
462
|
interface IMappedCollection {
|
|
460
463
|
[name: string]: any;
|
|
461
464
|
}
|