@legalplace/models-v3-types 3.4.49 → 3.4.51

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 (4) hide show
  1. package/index.ts +137 -77
  2. package/package.json +2 -2
  3. package/schema.json +80 -0
  4. package/yarn.lock +0 -280
package/index.ts CHANGED
@@ -1,14 +1,42 @@
1
1
  // Type definitions for model v3
2
2
  // TypeScript Version: 2.1
3
3
 
4
- type CONDITION_TYPE = 'selected' | 'not-selected' | 'not-selected-ip' | 'has-one' | 'at-least-one' | 'has-many' | 'contains' | 'does-not-contain' | '=' | '>' | '<' | '!=' | '>=' | '<=' | '<>' | '==' | 'empty' | 'not-empty' | 'is' | 'not' | 'like' | 'not-like';
4
+ type CONDITION_TYPE =
5
+ | "selected"
6
+ | "not-selected"
7
+ | "not-selected-ip"
8
+ | "has-one"
9
+ | "at-least-one"
10
+ | "has-many"
11
+ | "contains"
12
+ | "does-not-contain"
13
+ | "="
14
+ | ">"
15
+ | "<"
16
+ | "!="
17
+ | ">="
18
+ | "<="
19
+ | "<>"
20
+ | "=="
21
+ | "empty"
22
+ | "not-empty"
23
+ | "is"
24
+ | "not"
25
+ | "like"
26
+ | "not-like";
5
27
  type DATA_MAP = {
6
- var: string
28
+ var: string;
7
29
  };
8
30
  type CONDITION = {
9
- [key in CONDITION_TYPE]?: [DATA_MAP, (string | number | boolean)?, DATA_MAP[]?]
10
- }
11
- type CONDITION_OPERATOR = { [key in 'and' | 'or']?: (CONDITION_OPERATOR & CONDITION)[] };
31
+ [key in CONDITION_TYPE]?: [
32
+ DATA_MAP,
33
+ (string | number | boolean)?,
34
+ DATA_MAP[]?
35
+ ];
36
+ };
37
+ type CONDITION_OPERATOR = {
38
+ [key in "and" | "or"]?: (CONDITION_OPERATOR & CONDITION)[];
39
+ };
12
40
  export type ConditionV3 = CONDITION_OPERATOR & CONDITION;
13
41
 
14
42
  /**
@@ -33,11 +61,11 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
33
61
  * Document's PDF link
34
62
  */
35
63
  pdf?: {
36
- id: string
37
- filename: string
38
- form: FDFFormV3
39
- thumbnails: string[]
40
- }
64
+ id: string;
65
+ filename: string;
66
+ form: FDFFormV3;
67
+ thumbnails: string[];
68
+ };
41
69
  /**
42
70
  * Document's params
43
71
  */
@@ -50,8 +78,36 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
50
78
  [key: string]: boolean | undefined;
51
79
  private?: boolean;
52
80
  };
81
+ documentStyle?: {
82
+ styles?: {
83
+ Normal?: {
84
+ color?: string;
85
+ indent?: number;
86
+ },
87
+ headingOne?: {
88
+ color?: string;
89
+ indent?: number;
90
+ },
91
+ headingTwo?: {
92
+ color?: string;
93
+ indent?: number;
94
+ },
95
+ headingThree?: {
96
+ color?: string;
97
+ indent?: number;
98
+ },
99
+ headingFour?: {
100
+ color?: string;
101
+ indent?: number;
102
+ }
103
+ },
104
+ titlesNumbering?: {
105
+ enabled: boolean;
106
+ type: "ARTICLE-FIRST" | "SIMPLE"
107
+ }
108
+ };
53
109
  conditions?: ConditionV3;
54
- grantLevel?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
110
+ grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
55
111
  };
56
112
  };
57
113
  };
@@ -63,7 +119,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
63
119
  };
64
120
  customization: {
65
121
  disableAutoDefault?: boolean;
66
- meta?: ConstumizationMeta
122
+ meta?: ConstumizationMeta;
67
123
  };
68
124
  }
69
125
 
@@ -71,7 +127,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
71
127
  * Default meta customization
72
128
  */
73
129
  export interface CustomizationMetaDefault {
74
- [key: string]: any,
130
+ [key: string]: any;
75
131
  extracts?: ExtractV3[];
76
132
  clientType?: {
77
133
  type: "ind" | "pro" | "conditionnal";
@@ -80,12 +136,16 @@ export interface CustomizationMetaDefault {
80
136
  isTwoSteps?: boolean;
81
137
  isFullWidth?: boolean;
82
138
  previewTitle?: string;
139
+ contractType?: {
140
+ socialType?: "individual" | "collective";
141
+ privacy?: "public" | "private";
142
+ };
83
143
  emailSection?: {
84
144
  sectionTitle?: string;
85
145
  inputLabel?: string;
86
146
  warningBlock?: string;
87
147
  ctaLabel?: string;
88
- ctaIcon?: string ;
148
+ ctaIcon?: string;
89
149
  };
90
150
  disableDownloads?: boolean;
91
151
  }
@@ -94,7 +154,7 @@ export interface CustomizationMetaDefault {
94
154
  * Extract V3
95
155
  */
96
156
  export interface ExtractV3 {
97
- type: 'option' | 'variable';
157
+ type: "option" | "variable";
98
158
  id: number;
99
159
  destination: {
100
160
  sendinblue?: {
@@ -107,17 +167,17 @@ export interface ExtractV3 {
107
167
  name: string;
108
168
  channel: string;
109
169
  };
110
- }
170
+ };
111
171
  }
112
172
 
113
173
  /**
114
174
  * Email Customization
115
175
  */
116
176
  export interface EmailStep {
117
- sectionTitle?: string
118
- icon?: "download"|"continue"
119
- ctaLabel?: string
120
- label?: string
177
+ sectionTitle?: string;
178
+ icon?: "download" | "continue";
179
+ ctaLabel?: string;
180
+ label?: string;
121
181
  }
122
182
 
123
183
  /**
@@ -131,7 +191,7 @@ export interface SectionV3 {
131
191
  /**
132
192
  * Section's grant type
133
193
  */
134
- grantLevel?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
194
+ grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
135
195
  /**
136
196
  * Section's title
137
197
  */
@@ -147,7 +207,7 @@ export interface SectionV3 {
147
207
  /**
148
208
  * Step two only
149
209
  */
150
- step?: '*' | number[];
210
+ step?: "*" | number[];
151
211
  /**
152
212
  * Tags
153
213
  */
@@ -170,13 +230,13 @@ export interface OptionV3 {
170
230
  * - `repeated`: A loop linked to a multiple (can only have `hidden` options as children)
171
231
  */
172
232
  type:
173
- | 'static'
174
- | 'radio'
175
- | 'checkbox'
176
- | 'hidden'
177
- | 'repeated'
178
- | 'box'
179
- | 'separator';
233
+ | "static"
234
+ | "radio"
235
+ | "checkbox"
236
+ | "hidden"
237
+ | "repeated"
238
+ | "box"
239
+ | "separator";
180
240
 
181
241
  /**
182
242
  * Option's label
@@ -185,7 +245,7 @@ export interface OptionV3 {
185
245
  /**
186
246
  * Option steps
187
247
  */
188
- step: '*' | number[];
248
+ step: "*" | number[];
189
249
  /**
190
250
  * Fallback Label
191
251
  */
@@ -217,11 +277,11 @@ export interface OptionV3 {
217
277
  /**
218
278
  * Option's grantLevel
219
279
  */
220
- grantLevel?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
280
+ grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
221
281
  /**
222
282
  * Option style
223
283
  */
224
- style?: '' | 'half' | 'full';
284
+ style?: "" | "half" | "full";
225
285
  /**
226
286
  * In case of a radio/checkbox/static options, this holds the default child id that should be selected in case the user advances to the next section without selecting any of the child
227
287
  */
@@ -287,7 +347,7 @@ export interface OptionV3 {
287
347
  /**
288
348
  * Box type
289
349
  */
290
- type?: 'warning' | 'error' | 'info' | 'light';
350
+ type?: "warning" | "error" | "info" | "light";
291
351
  /**
292
352
  * Box title
293
353
  */
@@ -338,19 +398,19 @@ export interface VariableV3 {
338
398
  * Variable's type
339
399
  */
340
400
  type:
341
- | 'text'
342
- | 'date'
343
- | 'list'
344
- | 'textarea'
345
- | 'number'
346
- | 'eval'
347
- | 'hour'
348
- | 'email'
349
- | 'mask';
401
+ | "text"
402
+ | "date"
403
+ | "list"
404
+ | "textarea"
405
+ | "number"
406
+ | "eval"
407
+ | "hour"
408
+ | "email"
409
+ | "mask";
350
410
  /**
351
411
  * Variable's grantLevel
352
412
  */
353
- grantLevel?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
413
+ grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
354
414
  /**
355
415
  * Variable's suffix
356
416
  */
@@ -386,7 +446,7 @@ export interface VariableV3 {
386
446
  /**
387
447
  * Set to true if the variable should be displayed in the second step only
388
448
  */
389
- step: '*' | number[];
449
+ step: "*" | number[];
390
450
  /**
391
451
  * Variable conditions
392
452
  */
@@ -394,7 +454,7 @@ export interface VariableV3 {
394
454
  /**
395
455
  * Defines input size
396
456
  */
397
- style?: 'half' | 'full';
457
+ style?: "half" | "full";
398
458
  /**
399
459
  * Hidden variable
400
460
  */
@@ -425,15 +485,15 @@ export interface VariableV3 {
425
485
  /**
426
486
  * Round evalulation result (eval type).
427
487
  */
428
- round?: 'ceil' | 'floor' | 'round';
488
+ round?: "ceil" | "floor" | "round";
429
489
  };
430
490
 
431
491
  /**
432
492
  * Number input
433
493
  */
434
494
  number?: {
435
- intOnly?: boolean
436
- }
495
+ intOnly?: boolean;
496
+ };
437
497
 
438
498
  /**
439
499
  * Textarea styling
@@ -446,7 +506,7 @@ export interface VariableV3 {
446
506
  * - s: Small (60px)
447
507
  * - p: Custom size in number of lines
448
508
  */
449
- size?: 'l' | 'm' | 'p' | 's';
509
+ size?: "l" | "m" | "p" | "s";
450
510
  /**
451
511
  * The textarea's high (lines number) (Only if textarea_size is set to `p`)
452
512
  */
@@ -514,48 +574,48 @@ export interface PrefillingV3 {
514
574
  * FDF
515
575
  */
516
576
  export interface FDFFormV3 {
517
- inputs: FDFInputsV3[]
518
- boxes: FDFBoxesV3[]
577
+ inputs: FDFInputsV3[];
578
+ boxes: FDFBoxesV3[];
519
579
  }
520
580
 
521
581
  /**
522
582
  * FDF Inputs
523
583
  */
524
584
  export interface FDFInputsV3 {
525
- name: string
526
- page: number
585
+ name: string;
586
+ page: number;
527
587
  rect: {
528
- x: number
529
- y: number
530
- width: number
531
- height: number
532
- },
588
+ x: number;
589
+ y: number;
590
+ width: number;
591
+ height: number;
592
+ };
533
593
  variables: {
534
- id: number,
535
- date?: 'DD' | 'MM' | 'YYYY',
536
- hour?: 'HH' | 'MM',
537
- email?: 'ADDRESS' | 'PROVIDER',
594
+ id: number;
595
+ date?: "DD" | "MM" | "YYYY";
596
+ hour?: "HH" | "MM";
597
+ email?: "ADDRESS" | "PROVIDER";
538
598
  fragment?: {
539
- from?: number
540
- to?: number
541
- }
542
- }[]
599
+ from?: number;
600
+ to?: number;
601
+ };
602
+ }[];
543
603
  }
544
604
 
545
605
  /**
546
606
  * FDF Boxes
547
607
  */
548
608
  export interface FDFBoxesV3 {
549
- name: string
550
- page: number
551
- value: string
609
+ name: string;
610
+ page: number;
611
+ value: string;
552
612
  rect: {
553
- x: number
554
- y: number
555
- width: number
556
- height: number
557
- },
613
+ x: number;
614
+ y: number;
615
+ width: number;
616
+ height: number;
617
+ };
558
618
  options: {
559
- id: number
560
- }[]
561
- }
619
+ id: number;
620
+ }[];
621
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.4.49",
3
+ "version": "3.4.51",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
@@ -11,4 +11,4 @@
11
11
  "devDependencies": {
12
12
  "typescript-json-schema": "^0.43.0"
13
13
  }
14
- }
14
+ }
package/schema.json CHANGED
@@ -2108,6 +2108,86 @@
2108
2108
  }
2109
2109
  ]
2110
2110
  },
2111
+ "documentStyle": {
2112
+ "properties": {
2113
+ "styles": {
2114
+ "properties": {
2115
+ "Normal": {
2116
+ "properties": {
2117
+ "color": {
2118
+ "type": "string"
2119
+ },
2120
+ "indent": {
2121
+ "type": "number"
2122
+ }
2123
+ },
2124
+ "type": "object"
2125
+ },
2126
+ "headingFour": {
2127
+ "properties": {
2128
+ "color": {
2129
+ "type": "string"
2130
+ },
2131
+ "indent": {
2132
+ "type": "number"
2133
+ }
2134
+ },
2135
+ "type": "object"
2136
+ },
2137
+ "headingOne": {
2138
+ "properties": {
2139
+ "color": {
2140
+ "type": "string"
2141
+ },
2142
+ "indent": {
2143
+ "type": "number"
2144
+ }
2145
+ },
2146
+ "type": "object"
2147
+ },
2148
+ "headingThree": {
2149
+ "properties": {
2150
+ "color": {
2151
+ "type": "string"
2152
+ },
2153
+ "indent": {
2154
+ "type": "number"
2155
+ }
2156
+ },
2157
+ "type": "object"
2158
+ },
2159
+ "headingTwo": {
2160
+ "properties": {
2161
+ "color": {
2162
+ "type": "string"
2163
+ },
2164
+ "indent": {
2165
+ "type": "number"
2166
+ }
2167
+ },
2168
+ "type": "object"
2169
+ }
2170
+ },
2171
+ "type": "object"
2172
+ },
2173
+ "titlesNumbering": {
2174
+ "properties": {
2175
+ "enabled": {
2176
+ "type": "boolean"
2177
+ },
2178
+ "type": {
2179
+ "enum": [
2180
+ "ARTICLE-FIRST",
2181
+ "SIMPLE"
2182
+ ],
2183
+ "type": "string"
2184
+ }
2185
+ },
2186
+ "type": "object"
2187
+ }
2188
+ },
2189
+ "type": "object"
2190
+ },
2111
2191
  "formats": {
2112
2192
  "properties": {
2113
2193
  "docx": {
package/yarn.lock DELETED
@@ -1,280 +0,0 @@
1
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
- # yarn lockfile v1
3
-
4
-
5
- "@types/json-schema@^7.0.5":
6
- version "7.0.6"
7
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0"
8
- integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==
9
-
10
- ansi-regex@^5.0.0:
11
- version "5.0.0"
12
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
13
- integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
14
-
15
- ansi-styles@^4.0.0:
16
- version "4.3.0"
17
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
18
- integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
19
- dependencies:
20
- color-convert "^2.0.1"
21
-
22
- balanced-match@^1.0.0:
23
- version "1.0.0"
24
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
25
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
26
-
27
- brace-expansion@^1.1.7:
28
- version "1.1.11"
29
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
30
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
31
- dependencies:
32
- balanced-match "^1.0.0"
33
- concat-map "0.0.1"
34
-
35
- camelcase@^5.0.0:
36
- version "5.3.1"
37
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
38
- integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
39
-
40
- cliui@^6.0.0:
41
- version "6.0.0"
42
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
43
- integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
44
- dependencies:
45
- string-width "^4.2.0"
46
- strip-ansi "^6.0.0"
47
- wrap-ansi "^6.2.0"
48
-
49
- color-convert@^2.0.1:
50
- version "2.0.1"
51
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
52
- integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
53
- dependencies:
54
- color-name "~1.1.4"
55
-
56
- color-name@~1.1.4:
57
- version "1.1.4"
58
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
59
- integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
60
-
61
- concat-map@0.0.1:
62
- version "0.0.1"
63
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
64
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
65
-
66
- decamelize@^1.2.0:
67
- version "1.2.0"
68
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
69
- integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
70
-
71
- emoji-regex@^8.0.0:
72
- version "8.0.0"
73
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
74
- integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
75
-
76
- find-up@^4.1.0:
77
- version "4.1.0"
78
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
79
- integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
80
- dependencies:
81
- locate-path "^5.0.0"
82
- path-exists "^4.0.0"
83
-
84
- fs.realpath@^1.0.0:
85
- version "1.0.0"
86
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
87
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
88
-
89
- get-caller-file@^2.0.1:
90
- version "2.0.5"
91
- resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
92
- integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
93
-
94
- glob@~7.1.6:
95
- version "7.1.6"
96
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
97
- integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
98
- dependencies:
99
- fs.realpath "^1.0.0"
100
- inflight "^1.0.4"
101
- inherits "2"
102
- minimatch "^3.0.4"
103
- once "^1.3.0"
104
- path-is-absolute "^1.0.0"
105
-
106
- inflight@^1.0.4:
107
- version "1.0.6"
108
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
109
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
110
- dependencies:
111
- once "^1.3.0"
112
- wrappy "1"
113
-
114
- inherits@2:
115
- version "2.0.4"
116
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
117
- integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
118
-
119
- is-fullwidth-code-point@^3.0.0:
120
- version "3.0.0"
121
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
122
- integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
123
-
124
- json-stable-stringify@^1.0.1:
125
- version "1.0.1"
126
- resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
127
- integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=
128
- dependencies:
129
- jsonify "~0.0.0"
130
-
131
- jsonify@~0.0.0:
132
- version "0.0.0"
133
- resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
134
- integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
135
-
136
- locate-path@^5.0.0:
137
- version "5.0.0"
138
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
139
- integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
140
- dependencies:
141
- p-locate "^4.1.0"
142
-
143
- minimatch@^3.0.4:
144
- version "3.0.4"
145
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
146
- integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
147
- dependencies:
148
- brace-expansion "^1.1.7"
149
-
150
- once@^1.3.0:
151
- version "1.4.0"
152
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
153
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
154
- dependencies:
155
- wrappy "1"
156
-
157
- p-limit@^2.2.0:
158
- version "2.3.0"
159
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
160
- integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
161
- dependencies:
162
- p-try "^2.0.0"
163
-
164
- p-locate@^4.1.0:
165
- version "4.1.0"
166
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
167
- integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
168
- dependencies:
169
- p-limit "^2.2.0"
170
-
171
- p-try@^2.0.0:
172
- version "2.2.0"
173
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
174
- integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
175
-
176
- path-exists@^4.0.0:
177
- version "4.0.0"
178
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
179
- integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
180
-
181
- path-is-absolute@^1.0.0:
182
- version "1.0.1"
183
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
184
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
185
-
186
- require-directory@^2.1.1:
187
- version "2.1.1"
188
- resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
189
- integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
190
-
191
- require-main-filename@^2.0.0:
192
- version "2.0.0"
193
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
194
- integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
195
-
196
- set-blocking@^2.0.0:
197
- version "2.0.0"
198
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
199
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
200
-
201
- string-width@^4.1.0, string-width@^4.2.0:
202
- version "4.2.0"
203
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
204
- integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
205
- dependencies:
206
- emoji-regex "^8.0.0"
207
- is-fullwidth-code-point "^3.0.0"
208
- strip-ansi "^6.0.0"
209
-
210
- strip-ansi@^6.0.0:
211
- version "6.0.0"
212
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
213
- integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
214
- dependencies:
215
- ansi-regex "^5.0.0"
216
-
217
- typescript-json-schema@^0.43.0:
218
- version "0.43.0"
219
- resolved "https://registry.yarnpkg.com/typescript-json-schema/-/typescript-json-schema-0.43.0.tgz#8bd9c832f1f15f006ff933907ce192222fdfd92f"
220
- integrity sha512-4c9IMlIlHYJiQtzL1gh2nIPJEjBgJjDUs50gsnnc+GFyDSK1oFM3uQIBSVosiuA/4t6LSAXDS9vTdqbQC6EcgA==
221
- dependencies:
222
- "@types/json-schema" "^7.0.5"
223
- glob "~7.1.6"
224
- json-stable-stringify "^1.0.1"
225
- typescript "~4.0.2"
226
- yargs "^15.4.1"
227
-
228
- typescript@~4.0.2:
229
- version "4.0.3"
230
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.3.tgz#153bbd468ef07725c1df9c77e8b453f8d36abba5"
231
- integrity sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg==
232
-
233
- which-module@^2.0.0:
234
- version "2.0.0"
235
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
236
- integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
237
-
238
- wrap-ansi@^6.2.0:
239
- version "6.2.0"
240
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
241
- integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
242
- dependencies:
243
- ansi-styles "^4.0.0"
244
- string-width "^4.1.0"
245
- strip-ansi "^6.0.0"
246
-
247
- wrappy@1:
248
- version "1.0.2"
249
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
250
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
251
-
252
- y18n@^4.0.0:
253
- version "4.0.0"
254
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
255
- integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
256
-
257
- yargs-parser@^18.1.2:
258
- version "18.1.3"
259
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
260
- integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
261
- dependencies:
262
- camelcase "^5.0.0"
263
- decamelize "^1.2.0"
264
-
265
- yargs@^15.4.1:
266
- version "15.4.1"
267
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
268
- integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
269
- dependencies:
270
- cliui "^6.0.0"
271
- decamelize "^1.2.0"
272
- find-up "^4.1.0"
273
- get-caller-file "^2.0.1"
274
- require-directory "^2.1.1"
275
- require-main-filename "^2.0.0"
276
- set-blocking "^2.0.0"
277
- string-width "^4.2.0"
278
- which-module "^2.0.0"
279
- y18n "^4.0.0"
280
- yargs-parser "^18.1.2"