@legalplace/models-v3-types 3.4.43 → 3.4.45

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.
Files changed (3) hide show
  1. package/index.ts +2 -1
  2. package/package.json +1 -1
  3. package/schema.json +9 -2
package/index.ts CHANGED
@@ -531,8 +531,9 @@ export interface FDFInputsV3 {
531
531
  },
532
532
  variables: {
533
533
  id: number,
534
- date?: 'DD' | 'MM' | 'AAAA',
534
+ date?: 'DD' | 'MM' | 'YYYY',
535
535
  hour?: 'HH' | 'MM',
536
+ email?: 'ADDRESS' | 'PROVIDER',
536
537
  fragment?: {
537
538
  from: number
538
539
  to: number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.4.43",
3
+ "version": "3.4.45",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
package/schema.json CHANGED
@@ -1493,9 +1493,16 @@
1493
1493
  "properties": {
1494
1494
  "date": {
1495
1495
  "enum": [
1496
- "AAAA",
1497
1496
  "DD",
1498
- "MM"
1497
+ "MM",
1498
+ "YYYY"
1499
+ ],
1500
+ "type": "string"
1501
+ },
1502
+ "email": {
1503
+ "enum": [
1504
+ "ADDRESS",
1505
+ "PROVIDER"
1499
1506
  ],
1500
1507
  "type": "string"
1501
1508
  },