@legalplace/models-v3-types 3.4.50 → 3.5.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.
- package/index.ts +113 -77
- package/package.json +2 -2
- package/schema.json +4 -0
- 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 =
|
|
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]?: [
|
|
10
|
-
|
|
11
|
-
|
|
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
|
*/
|
|
@@ -79,7 +107,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
|
|
|
79
107
|
}
|
|
80
108
|
};
|
|
81
109
|
conditions?: ConditionV3;
|
|
82
|
-
grantLevel?:
|
|
110
|
+
grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
|
|
83
111
|
};
|
|
84
112
|
};
|
|
85
113
|
};
|
|
@@ -91,7 +119,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
|
|
|
91
119
|
};
|
|
92
120
|
customization: {
|
|
93
121
|
disableAutoDefault?: boolean;
|
|
94
|
-
meta?: ConstumizationMeta
|
|
122
|
+
meta?: ConstumizationMeta;
|
|
95
123
|
};
|
|
96
124
|
}
|
|
97
125
|
|
|
@@ -99,7 +127,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
|
|
|
99
127
|
* Default meta customization
|
|
100
128
|
*/
|
|
101
129
|
export interface CustomizationMetaDefault {
|
|
102
|
-
[key: string]: any
|
|
130
|
+
[key: string]: any;
|
|
103
131
|
extracts?: ExtractV3[];
|
|
104
132
|
clientType?: {
|
|
105
133
|
type: "ind" | "pro" | "conditionnal";
|
|
@@ -108,12 +136,16 @@ export interface CustomizationMetaDefault {
|
|
|
108
136
|
isTwoSteps?: boolean;
|
|
109
137
|
isFullWidth?: boolean;
|
|
110
138
|
previewTitle?: string;
|
|
139
|
+
contractType?: {
|
|
140
|
+
socialType?: "individual" | "collective";
|
|
141
|
+
privacy?: "public" | "private";
|
|
142
|
+
};
|
|
111
143
|
emailSection?: {
|
|
112
144
|
sectionTitle?: string;
|
|
113
145
|
inputLabel?: string;
|
|
114
146
|
warningBlock?: string;
|
|
115
147
|
ctaLabel?: string;
|
|
116
|
-
ctaIcon?: string
|
|
148
|
+
ctaIcon?: string;
|
|
117
149
|
};
|
|
118
150
|
disableDownloads?: boolean;
|
|
119
151
|
}
|
|
@@ -122,7 +154,7 @@ export interface CustomizationMetaDefault {
|
|
|
122
154
|
* Extract V3
|
|
123
155
|
*/
|
|
124
156
|
export interface ExtractV3 {
|
|
125
|
-
type:
|
|
157
|
+
type: "option" | "variable";
|
|
126
158
|
id: number;
|
|
127
159
|
destination: {
|
|
128
160
|
sendinblue?: {
|
|
@@ -135,17 +167,17 @@ export interface ExtractV3 {
|
|
|
135
167
|
name: string;
|
|
136
168
|
channel: string;
|
|
137
169
|
};
|
|
138
|
-
}
|
|
170
|
+
};
|
|
139
171
|
}
|
|
140
172
|
|
|
141
173
|
/**
|
|
142
174
|
* Email Customization
|
|
143
175
|
*/
|
|
144
176
|
export interface EmailStep {
|
|
145
|
-
sectionTitle?: string
|
|
146
|
-
icon?: "download"|"continue"
|
|
147
|
-
ctaLabel?: string
|
|
148
|
-
label?: string
|
|
177
|
+
sectionTitle?: string;
|
|
178
|
+
icon?: "download" | "continue";
|
|
179
|
+
ctaLabel?: string;
|
|
180
|
+
label?: string;
|
|
149
181
|
}
|
|
150
182
|
|
|
151
183
|
/**
|
|
@@ -159,7 +191,7 @@ export interface SectionV3 {
|
|
|
159
191
|
/**
|
|
160
192
|
* Section's grant type
|
|
161
193
|
*/
|
|
162
|
-
grantLevel?:
|
|
194
|
+
grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
|
|
163
195
|
/**
|
|
164
196
|
* Section's title
|
|
165
197
|
*/
|
|
@@ -175,7 +207,7 @@ export interface SectionV3 {
|
|
|
175
207
|
/**
|
|
176
208
|
* Step two only
|
|
177
209
|
*/
|
|
178
|
-
step?:
|
|
210
|
+
step?: "*" | number[];
|
|
179
211
|
/**
|
|
180
212
|
* Tags
|
|
181
213
|
*/
|
|
@@ -198,13 +230,13 @@ export interface OptionV3 {
|
|
|
198
230
|
* - `repeated`: A loop linked to a multiple (can only have `hidden` options as children)
|
|
199
231
|
*/
|
|
200
232
|
type:
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
|
|
|
206
|
-
|
|
|
207
|
-
|
|
|
233
|
+
| "static"
|
|
234
|
+
| "radio"
|
|
235
|
+
| "checkbox"
|
|
236
|
+
| "hidden"
|
|
237
|
+
| "repeated"
|
|
238
|
+
| "box"
|
|
239
|
+
| "separator";
|
|
208
240
|
|
|
209
241
|
/**
|
|
210
242
|
* Option's label
|
|
@@ -213,7 +245,7 @@ export interface OptionV3 {
|
|
|
213
245
|
/**
|
|
214
246
|
* Option steps
|
|
215
247
|
*/
|
|
216
|
-
step:
|
|
248
|
+
step: "*" | number[];
|
|
217
249
|
/**
|
|
218
250
|
* Fallback Label
|
|
219
251
|
*/
|
|
@@ -245,11 +277,11 @@ export interface OptionV3 {
|
|
|
245
277
|
/**
|
|
246
278
|
* Option's grantLevel
|
|
247
279
|
*/
|
|
248
|
-
grantLevel?:
|
|
280
|
+
grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
|
|
249
281
|
/**
|
|
250
282
|
* Option style
|
|
251
283
|
*/
|
|
252
|
-
style?:
|
|
284
|
+
style?: "" | "half" | "full";
|
|
253
285
|
/**
|
|
254
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
|
|
255
287
|
*/
|
|
@@ -258,6 +290,10 @@ export interface OptionV3 {
|
|
|
258
290
|
* In case of a `repeated` option, this defines the multiple's id that the loop should be linked to
|
|
259
291
|
*/
|
|
260
292
|
repeatOption?: number;
|
|
293
|
+
/**
|
|
294
|
+
* Hidden option
|
|
295
|
+
*/
|
|
296
|
+
hidden?: boolean;
|
|
261
297
|
/**
|
|
262
298
|
* Validator PARAMS
|
|
263
299
|
*/
|
|
@@ -315,7 +351,7 @@ export interface OptionV3 {
|
|
|
315
351
|
/**
|
|
316
352
|
* Box type
|
|
317
353
|
*/
|
|
318
|
-
type?:
|
|
354
|
+
type?: "warning" | "error" | "info" | "light";
|
|
319
355
|
/**
|
|
320
356
|
* Box title
|
|
321
357
|
*/
|
|
@@ -366,19 +402,19 @@ export interface VariableV3 {
|
|
|
366
402
|
* Variable's type
|
|
367
403
|
*/
|
|
368
404
|
type:
|
|
369
|
-
|
|
|
370
|
-
|
|
|
371
|
-
|
|
|
372
|
-
|
|
|
373
|
-
|
|
|
374
|
-
|
|
|
375
|
-
|
|
|
376
|
-
|
|
|
377
|
-
|
|
|
405
|
+
| "text"
|
|
406
|
+
| "date"
|
|
407
|
+
| "list"
|
|
408
|
+
| "textarea"
|
|
409
|
+
| "number"
|
|
410
|
+
| "eval"
|
|
411
|
+
| "hour"
|
|
412
|
+
| "email"
|
|
413
|
+
| "mask";
|
|
378
414
|
/**
|
|
379
415
|
* Variable's grantLevel
|
|
380
416
|
*/
|
|
381
|
-
grantLevel?:
|
|
417
|
+
grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
|
|
382
418
|
/**
|
|
383
419
|
* Variable's suffix
|
|
384
420
|
*/
|
|
@@ -414,7 +450,7 @@ export interface VariableV3 {
|
|
|
414
450
|
/**
|
|
415
451
|
* Set to true if the variable should be displayed in the second step only
|
|
416
452
|
*/
|
|
417
|
-
step:
|
|
453
|
+
step: "*" | number[];
|
|
418
454
|
/**
|
|
419
455
|
* Variable conditions
|
|
420
456
|
*/
|
|
@@ -422,7 +458,7 @@ export interface VariableV3 {
|
|
|
422
458
|
/**
|
|
423
459
|
* Defines input size
|
|
424
460
|
*/
|
|
425
|
-
style?:
|
|
461
|
+
style?: "half" | "full";
|
|
426
462
|
/**
|
|
427
463
|
* Hidden variable
|
|
428
464
|
*/
|
|
@@ -453,15 +489,15 @@ export interface VariableV3 {
|
|
|
453
489
|
/**
|
|
454
490
|
* Round evalulation result (eval type).
|
|
455
491
|
*/
|
|
456
|
-
round?:
|
|
492
|
+
round?: "ceil" | "floor" | "round";
|
|
457
493
|
};
|
|
458
494
|
|
|
459
495
|
/**
|
|
460
496
|
* Number input
|
|
461
497
|
*/
|
|
462
498
|
number?: {
|
|
463
|
-
intOnly?: boolean
|
|
464
|
-
}
|
|
499
|
+
intOnly?: boolean;
|
|
500
|
+
};
|
|
465
501
|
|
|
466
502
|
/**
|
|
467
503
|
* Textarea styling
|
|
@@ -474,7 +510,7 @@ export interface VariableV3 {
|
|
|
474
510
|
* - s: Small (60px)
|
|
475
511
|
* - p: Custom size in number of lines
|
|
476
512
|
*/
|
|
477
|
-
size?:
|
|
513
|
+
size?: "l" | "m" | "p" | "s";
|
|
478
514
|
/**
|
|
479
515
|
* The textarea's high (lines number) (Only if textarea_size is set to `p`)
|
|
480
516
|
*/
|
|
@@ -542,48 +578,48 @@ export interface PrefillingV3 {
|
|
|
542
578
|
* FDF
|
|
543
579
|
*/
|
|
544
580
|
export interface FDFFormV3 {
|
|
545
|
-
inputs: FDFInputsV3[]
|
|
546
|
-
boxes: FDFBoxesV3[]
|
|
581
|
+
inputs: FDFInputsV3[];
|
|
582
|
+
boxes: FDFBoxesV3[];
|
|
547
583
|
}
|
|
548
584
|
|
|
549
585
|
/**
|
|
550
586
|
* FDF Inputs
|
|
551
587
|
*/
|
|
552
588
|
export interface FDFInputsV3 {
|
|
553
|
-
name: string
|
|
554
|
-
page: number
|
|
589
|
+
name: string;
|
|
590
|
+
page: number;
|
|
555
591
|
rect: {
|
|
556
|
-
x: number
|
|
557
|
-
y: number
|
|
558
|
-
width: number
|
|
559
|
-
height: number
|
|
560
|
-
}
|
|
592
|
+
x: number;
|
|
593
|
+
y: number;
|
|
594
|
+
width: number;
|
|
595
|
+
height: number;
|
|
596
|
+
};
|
|
561
597
|
variables: {
|
|
562
|
-
id: number
|
|
563
|
-
date?:
|
|
564
|
-
hour?:
|
|
565
|
-
email?:
|
|
598
|
+
id: number;
|
|
599
|
+
date?: "DD" | "MM" | "YYYY";
|
|
600
|
+
hour?: "HH" | "MM";
|
|
601
|
+
email?: "ADDRESS" | "PROVIDER";
|
|
566
602
|
fragment?: {
|
|
567
|
-
from?: number
|
|
568
|
-
to?: number
|
|
569
|
-
}
|
|
570
|
-
}[]
|
|
603
|
+
from?: number;
|
|
604
|
+
to?: number;
|
|
605
|
+
};
|
|
606
|
+
}[];
|
|
571
607
|
}
|
|
572
608
|
|
|
573
609
|
/**
|
|
574
610
|
* FDF Boxes
|
|
575
611
|
*/
|
|
576
612
|
export interface FDFBoxesV3 {
|
|
577
|
-
name: string
|
|
578
|
-
page: number
|
|
579
|
-
value: string
|
|
613
|
+
name: string;
|
|
614
|
+
page: number;
|
|
615
|
+
value: string;
|
|
580
616
|
rect: {
|
|
581
|
-
x: number
|
|
582
|
-
y: number
|
|
583
|
-
width: number
|
|
584
|
-
height: number
|
|
585
|
-
}
|
|
617
|
+
x: number;
|
|
618
|
+
y: number;
|
|
619
|
+
width: number;
|
|
620
|
+
height: number;
|
|
621
|
+
};
|
|
586
622
|
options: {
|
|
587
|
-
id: number
|
|
588
|
-
}[]
|
|
589
|
-
}
|
|
623
|
+
id: number;
|
|
624
|
+
}[];
|
|
625
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legalplace/models-v3-types",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
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
|
@@ -1607,6 +1607,10 @@
|
|
|
1607
1607
|
"description": "The html content of the helper block",
|
|
1608
1608
|
"type": "string"
|
|
1609
1609
|
},
|
|
1610
|
+
"hidden": {
|
|
1611
|
+
"description": "Hidden option",
|
|
1612
|
+
"type": "boolean"
|
|
1613
|
+
},
|
|
1610
1614
|
"id": {
|
|
1611
1615
|
"description": "Option's id",
|
|
1612
1616
|
"type": "number"
|
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"
|