@legalplace/models-v3-types 3.4.50 → 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 (3) hide show
  1. package/index.ts +109 -77
  2. package/package.json +2 -2
  3. 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
  */
@@ -79,7 +107,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
79
107
  }
80
108
  };
81
109
  conditions?: ConditionV3;
82
- grantLevel?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
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: 'option' | 'variable';
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?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
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?: '*' | number[];
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
- | 'static'
202
- | 'radio'
203
- | 'checkbox'
204
- | 'hidden'
205
- | 'repeated'
206
- | 'box'
207
- | 'separator';
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: '*' | number[];
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?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
280
+ grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
249
281
  /**
250
282
  * Option style
251
283
  */
252
- style?: '' | 'half' | 'full';
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
  */
@@ -315,7 +347,7 @@ export interface OptionV3 {
315
347
  /**
316
348
  * Box type
317
349
  */
318
- type?: 'warning' | 'error' | 'info' | 'light';
350
+ type?: "warning" | "error" | "info" | "light";
319
351
  /**
320
352
  * Box title
321
353
  */
@@ -366,19 +398,19 @@ export interface VariableV3 {
366
398
  * Variable's type
367
399
  */
368
400
  type:
369
- | 'text'
370
- | 'date'
371
- | 'list'
372
- | 'textarea'
373
- | 'number'
374
- | 'eval'
375
- | 'hour'
376
- | 'email'
377
- | 'mask';
401
+ | "text"
402
+ | "date"
403
+ | "list"
404
+ | "textarea"
405
+ | "number"
406
+ | "eval"
407
+ | "hour"
408
+ | "email"
409
+ | "mask";
378
410
  /**
379
411
  * Variable's grantLevel
380
412
  */
381
- grantLevel?: 'ADMIN' | 'MANAGER' | 'USER' | 'GUEST';
413
+ grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
382
414
  /**
383
415
  * Variable's suffix
384
416
  */
@@ -414,7 +446,7 @@ export interface VariableV3 {
414
446
  /**
415
447
  * Set to true if the variable should be displayed in the second step only
416
448
  */
417
- step: '*' | number[];
449
+ step: "*" | number[];
418
450
  /**
419
451
  * Variable conditions
420
452
  */
@@ -422,7 +454,7 @@ export interface VariableV3 {
422
454
  /**
423
455
  * Defines input size
424
456
  */
425
- style?: 'half' | 'full';
457
+ style?: "half" | "full";
426
458
  /**
427
459
  * Hidden variable
428
460
  */
@@ -453,15 +485,15 @@ export interface VariableV3 {
453
485
  /**
454
486
  * Round evalulation result (eval type).
455
487
  */
456
- round?: 'ceil' | 'floor' | 'round';
488
+ round?: "ceil" | "floor" | "round";
457
489
  };
458
490
 
459
491
  /**
460
492
  * Number input
461
493
  */
462
494
  number?: {
463
- intOnly?: boolean
464
- }
495
+ intOnly?: boolean;
496
+ };
465
497
 
466
498
  /**
467
499
  * Textarea styling
@@ -474,7 +506,7 @@ export interface VariableV3 {
474
506
  * - s: Small (60px)
475
507
  * - p: Custom size in number of lines
476
508
  */
477
- size?: 'l' | 'm' | 'p' | 's';
509
+ size?: "l" | "m" | "p" | "s";
478
510
  /**
479
511
  * The textarea's high (lines number) (Only if textarea_size is set to `p`)
480
512
  */
@@ -542,48 +574,48 @@ export interface PrefillingV3 {
542
574
  * FDF
543
575
  */
544
576
  export interface FDFFormV3 {
545
- inputs: FDFInputsV3[]
546
- boxes: FDFBoxesV3[]
577
+ inputs: FDFInputsV3[];
578
+ boxes: FDFBoxesV3[];
547
579
  }
548
580
 
549
581
  /**
550
582
  * FDF Inputs
551
583
  */
552
584
  export interface FDFInputsV3 {
553
- name: string
554
- page: number
585
+ name: string;
586
+ page: number;
555
587
  rect: {
556
- x: number
557
- y: number
558
- width: number
559
- height: number
560
- },
588
+ x: number;
589
+ y: number;
590
+ width: number;
591
+ height: number;
592
+ };
561
593
  variables: {
562
- id: number,
563
- date?: 'DD' | 'MM' | 'YYYY',
564
- hour?: 'HH' | 'MM',
565
- email?: 'ADDRESS' | 'PROVIDER',
594
+ id: number;
595
+ date?: "DD" | "MM" | "YYYY";
596
+ hour?: "HH" | "MM";
597
+ email?: "ADDRESS" | "PROVIDER";
566
598
  fragment?: {
567
- from?: number
568
- to?: number
569
- }
570
- }[]
599
+ from?: number;
600
+ to?: number;
601
+ };
602
+ }[];
571
603
  }
572
604
 
573
605
  /**
574
606
  * FDF Boxes
575
607
  */
576
608
  export interface FDFBoxesV3 {
577
- name: string
578
- page: number
579
- value: string
609
+ name: string;
610
+ page: number;
611
+ value: string;
580
612
  rect: {
581
- x: number
582
- y: number
583
- width: number
584
- height: number
585
- },
613
+ x: number;
614
+ y: number;
615
+ width: number;
616
+ height: number;
617
+ };
586
618
  options: {
587
- id: number
588
- }[]
589
- }
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.50",
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/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"