@genesislcap/foundation-criteria 14.398.0 → 14.400.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.
@@ -18,6 +18,9 @@ export declare const Serialisers: {
18
18
  contains: (e: Expression) => string;
19
19
  fieldContains: (e: Expression) => string;
20
20
  containsIgnoreCase: (e: Expression) => string;
21
+ startsWith: (e: Expression) => string;
22
+ endsWith: (e: Expression) => string;
23
+ dateIsToday: (e: Expression) => string;
21
24
  dateIsEqual: (e: Expression) => string;
22
25
  dateIsGreaterEqual: (e: Expression) => string;
23
26
  dateIsLessEqual: (e: Expression) => string;
@@ -1 +1 @@
1
- {"version":3,"file":"serialisers.d.ts","sourceRoot":"","sources":["../../src/serialisers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAY,MAAM,SAAS,CAAC;AAmB/C;;;GAGG;AACH,eAAO,MAAM,WAAW;aACb,UAAU;YACX,UAAU;aACT,UAAU;YACX,UAAU;YACV,UAAU;YACV,UAAU;YACV,UAAU;YACV,UAAU;YACV,UAAU;gBACN,UAAU;0BACA,UAAU;kBAClB,UAAU;uBACL,UAAU;4BACL,UAAU;qBACjB,UAAU;4BACH,UAAU;yBACb,UAAU;gCACH,UAAU;6BAEb,UAAU;CACpC,CAAC"}
1
+ {"version":3,"file":"serialisers.d.ts","sourceRoot":"","sources":["../../src/serialisers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAY,MAAM,SAAS,CAAC;AAmB/C;;;GAGG;AACH,eAAO,MAAM,WAAW;aACb,UAAU;YACX,UAAU;aACT,UAAU;YACX,UAAU;YACV,UAAU;YACV,UAAU;YACV,UAAU;YACV,UAAU;YACV,UAAU;gBACN,UAAU;0BACA,UAAU;kBAClB,UAAU;uBACL,UAAU;4BACL,UAAU;oBAClB,UAAU;kBACZ,UAAU;qBACP,UAAU;qBACV,UAAU;4BACH,UAAU;yBACb,UAAU;gCACH,UAAU;6BAEb,UAAU;CACpC,CAAC"}
@@ -35,6 +35,9 @@ export const Serialisers = {
35
35
  contains: (e) => `Expr.contains(${e.field}, ${getValue(e)})`,
36
36
  fieldContains: (e) => `${e.field}.contains(${getValue(e)})`,
37
37
  containsIgnoreCase: (e) => `Expr.containsIgnoreCase(${e.field}, ${getValue(e)})`,
38
+ startsWith: (e) => `${e.field}.startsWith(${getValue(e)})`,
39
+ endsWith: (e) => `${e.field}.endsWith(${getValue(e)})`,
40
+ dateIsToday: (e) => `Expr.dateIsToday(${e.field})`,
38
41
  dateIsEqual: (e) => `Expr.dateIsEqual(${e.field}, ${getValue(e)})`,
39
42
  dateIsGreaterEqual: (e) => `Expr.dateIsGreaterEqual(${e.field}, ${getValue(e)})`,
40
43
  dateIsLessEqual: (e) => `Expr.dateIsLessEqual(${e.field}, ${getValue(e)})`,
@@ -1892,6 +1892,33 @@
1892
1892
  "text": "Expression",
1893
1893
  "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
1894
1894
  },
1895
+ {
1896
+ "kind": "Content",
1897
+ "text": ") => string;\n startsWith: (e: "
1898
+ },
1899
+ {
1900
+ "kind": "Reference",
1901
+ "text": "Expression",
1902
+ "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
1903
+ },
1904
+ {
1905
+ "kind": "Content",
1906
+ "text": ") => string;\n endsWith: (e: "
1907
+ },
1908
+ {
1909
+ "kind": "Reference",
1910
+ "text": "Expression",
1911
+ "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
1912
+ },
1913
+ {
1914
+ "kind": "Content",
1915
+ "text": ") => string;\n dateIsToday: (e: "
1916
+ },
1917
+ {
1918
+ "kind": "Reference",
1919
+ "text": "Expression",
1920
+ "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
1921
+ },
1895
1922
  {
1896
1923
  "kind": "Content",
1897
1924
  "text": ") => string;\n dateIsEqual: (e: "
@@ -1948,7 +1975,7 @@
1948
1975
  "name": "Serialisers",
1949
1976
  "variableTypeTokenRange": {
1950
1977
  "startIndex": 1,
1951
- "endIndex": 40
1978
+ "endIndex": 46
1952
1979
  }
1953
1980
  }
1954
1981
  ]
@@ -218,6 +218,9 @@ export declare const Serialisers: {
218
218
  contains: (e: Expression) => string;
219
219
  fieldContains: (e: Expression) => string;
220
220
  containsIgnoreCase: (e: Expression) => string;
221
+ startsWith: (e: Expression) => string;
222
+ endsWith: (e: Expression) => string;
223
+ dateIsToday: (e: Expression) => string;
221
224
  dateIsEqual: (e: Expression) => string;
222
225
  dateIsGreaterEqual: (e: Expression) => string;
223
226
  dateIsLessEqual: (e: Expression) => string;
@@ -24,6 +24,9 @@ Serialisers: {
24
24
  contains: (e: Expression) => string;
25
25
  fieldContains: (e: Expression) => string;
26
26
  containsIgnoreCase: (e: Expression) => string;
27
+ startsWith: (e: Expression) => string;
28
+ endsWith: (e: Expression) => string;
29
+ dateIsToday: (e: Expression) => string;
27
30
  dateIsEqual: (e: Expression) => string;
28
31
  dateIsGreaterEqual: (e: Expression) => string;
29
32
  dateIsLessEqual: (e: Expression) => string;
@@ -202,6 +202,9 @@ export const Serialisers: {
202
202
  contains: (e: Expression) => string;
203
203
  fieldContains: (e: Expression) => string;
204
204
  containsIgnoreCase: (e: Expression) => string;
205
+ startsWith: (e: Expression) => string;
206
+ endsWith: (e: Expression) => string;
207
+ dateIsToday: (e: Expression) => string;
205
208
  dateIsEqual: (e: Expression) => string;
206
209
  dateIsGreaterEqual: (e: Expression) => string;
207
210
  dateIsLessEqual: (e: Expression) => string;
@@ -226,11 +229,14 @@ export const Serialisers: {
226
229
  // src/serialisers.ts:36:3 - (ae-incompatible-release-tags) The symbol "contains" is marked as @public, but its signature references "Expression" which is marked as @internal
227
230
  // src/serialisers.ts:37:3 - (ae-incompatible-release-tags) The symbol "fieldContains" is marked as @public, but its signature references "Expression" which is marked as @internal
228
231
  // src/serialisers.ts:38:3 - (ae-incompatible-release-tags) The symbol "containsIgnoreCase" is marked as @public, but its signature references "Expression" which is marked as @internal
229
- // src/serialisers.ts:39:3 - (ae-incompatible-release-tags) The symbol "dateIsEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
230
- // src/serialisers.ts:40:3 - (ae-incompatible-release-tags) The symbol "dateIsGreaterEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
231
- // src/serialisers.ts:41:3 - (ae-incompatible-release-tags) The symbol "dateIsLessEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
232
- // src/serialisers.ts:42:3 - (ae-incompatible-release-tags) The symbol "dateTimeIsGreaterEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
233
- // src/serialisers.ts:43:3 - (ae-incompatible-release-tags) The symbol "dateTimeIsLessEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
232
+ // src/serialisers.ts:39:3 - (ae-incompatible-release-tags) The symbol "startsWith" is marked as @public, but its signature references "Expression" which is marked as @internal
233
+ // src/serialisers.ts:40:3 - (ae-incompatible-release-tags) The symbol "endsWith" is marked as @public, but its signature references "Expression" which is marked as @internal
234
+ // src/serialisers.ts:41:3 - (ae-incompatible-release-tags) The symbol "dateIsToday" is marked as @public, but its signature references "Expression" which is marked as @internal
235
+ // src/serialisers.ts:42:3 - (ae-incompatible-release-tags) The symbol "dateIsEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
236
+ // src/serialisers.ts:43:3 - (ae-incompatible-release-tags) The symbol "dateIsGreaterEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
237
+ // src/serialisers.ts:44:3 - (ae-incompatible-release-tags) The symbol "dateIsLessEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
238
+ // src/serialisers.ts:45:3 - (ae-incompatible-release-tags) The symbol "dateTimeIsGreaterEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
239
+ // src/serialisers.ts:46:3 - (ae-incompatible-release-tags) The symbol "dateTimeIsLessEqual" is marked as @public, but its signature references "Expression" which is marked as @internal
234
240
  // src/types.ts:47:3 - (ae-incompatible-release-tags) The symbol "criteria" is marked as @public, but its signature references "ExpressionParams" which is marked as @internal
235
241
 
236
242
  // (No @packageDocumentation comment for this package)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-criteria",
3
3
  "description": "Genesis Foundation UI Criteria Utils",
4
- "version": "14.398.0",
4
+ "version": "14.400.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -51,17 +51,17 @@
51
51
  }
52
52
  },
53
53
  "devDependencies": {
54
- "@genesislcap/foundation-testing": "14.398.0",
55
- "@genesislcap/genx": "14.398.0",
56
- "@genesislcap/rollup-builder": "14.398.0",
57
- "@genesislcap/ts-builder": "14.398.0",
58
- "@genesislcap/uvu-playwright-builder": "14.398.0",
59
- "@genesislcap/vite-builder": "14.398.0",
60
- "@genesislcap/webpack-builder": "14.398.0"
54
+ "@genesislcap/foundation-testing": "14.400.0",
55
+ "@genesislcap/genx": "14.400.0",
56
+ "@genesislcap/rollup-builder": "14.400.0",
57
+ "@genesislcap/ts-builder": "14.400.0",
58
+ "@genesislcap/uvu-playwright-builder": "14.400.0",
59
+ "@genesislcap/vite-builder": "14.400.0",
60
+ "@genesislcap/webpack-builder": "14.400.0"
61
61
  },
62
62
  "dependencies": {
63
- "@genesislcap/foundation-logger": "14.398.0",
64
- "@genesislcap/foundation-utils": "14.398.0",
63
+ "@genesislcap/foundation-logger": "14.400.0",
64
+ "@genesislcap/foundation-utils": "14.400.0",
65
65
  "@microsoft/fast-element": "1.14.0"
66
66
  },
67
67
  "repository": {
@@ -72,5 +72,5 @@
72
72
  "publishConfig": {
73
73
  "access": "public"
74
74
  },
75
- "gitHead": "d9c0d13f49958e386d339075078dc15561455c18"
75
+ "gitHead": "e95f4522e1f30ffbd0d7ac427199da5cc7df7de8"
76
76
  }