@finnair/v-validation-luxon 6.1.0 → 7.0.0-alpha.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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [7.0.0-alpha.0](https://github.com/finnair/v-validation/compare/v6.1.0...v7.0.0-alpha.0) (2024-11-08)
7
+
8
+ **Note:** Version bump only for package @finnair/v-validation-luxon
9
+
6
10
  # [6.1.0](https://github.com/finnair/v-validation/compare/v6.0.2...v6.1.0) (2024-10-21)
7
11
 
8
12
  **Note:** Version bump only for package @finnair/v-validation-luxon
@@ -1,30 +1,38 @@
1
- import { ValidationContext, Validator, ValidationResult } from '@finnair/v-validation';
1
+ import { ValidationContext, Validator } from '@finnair/v-validation';
2
2
  import { Path } from '@finnair/path';
3
- import { DateTime, DateTimeJSOptions, DateTimeOptions } from 'luxon';
4
- import { LuxonDateTime } from './luxon.js';
3
+ import { DateTime, DateTimeJSOptions, DateTimeOptions, Duration } from 'luxon';
4
+ import { LocalDateLuxon, DateTimeLuxon, DateTimeMillisLuxon, DateTimeUtcLuxon, LuxonDateTime, LocalTimeLuxon, LocalDateTimeLuxon } from './luxon.js';
5
5
  export type LuxonInput = string | DateTime | LuxonDateTime;
6
- export interface ValidateLuxonParams {
6
+ export interface DateTimeParams {
7
7
  type: string;
8
8
  pattern: RegExp;
9
- proto?: any;
10
9
  parser: (value: string, match: RegExpExecArray) => DateTime;
11
10
  }
12
- export declare class LuxonValidator extends Validator {
13
- params: ValidateLuxonParams;
14
- constructor(params: ValidateLuxonParams);
15
- validatePath(value: any, path: Path, ctx: ValidationContext): PromiseLike<ValidationResult>;
11
+ export interface ValidateLuxonParams<Out extends LuxonDateTime> extends DateTimeParams {
12
+ proto: new (...args: any[]) => Out;
16
13
  }
17
- declare function localDate(options?: DateTimeOptions): LuxonValidator;
18
- declare function localTime(options?: DateTimeOptions): LuxonValidator;
19
- declare function localDateTime(options?: DateTimeOptions): LuxonValidator;
20
- declare function dateTime(options?: DateTimeOptions): LuxonValidator;
21
- declare function dateTimeUtc(options?: DateTimeOptions): LuxonValidator;
22
- declare function dateTimeMillis(options?: DateTimeOptions): LuxonValidator;
23
- declare function dateTimeMillisUtc(options?: DateTimeOptions): LuxonValidator;
24
- declare function dateTimeFromISO(options?: DateTimeOptions): LuxonValidator;
25
- declare function dateTimeFromRFC2822(options?: DateTimeOptions): LuxonValidator;
26
- declare function dateTimeFromHTTP(options?: DateTimeOptions): LuxonValidator;
27
- declare function dateTimeFromSQL(options?: DateTimeOptions): LuxonValidator;
14
+ export declare class DateTimeValidator extends Validator<DateTime> {
15
+ readonly params: DateTimeParams;
16
+ constructor(params: DateTimeParams);
17
+ validatePath(value: any, path: Path, ctx: ValidationContext): PromiseLike<DateTime>;
18
+ }
19
+ export declare class LuxonValidator<Out extends LuxonDateTime> extends Validator<Out> {
20
+ readonly params: ValidateLuxonParams<Out>;
21
+ private readonly dateTimeValidator;
22
+ constructor(params: ValidateLuxonParams<Out>);
23
+ validatePath(value: any, path: Path, ctx: ValidationContext): PromiseLike<Out>;
24
+ }
25
+ declare function localDate(options?: DateTimeOptions): LuxonValidator<LocalDateLuxon>;
26
+ declare function localTime(options?: DateTimeOptions): LuxonValidator<LocalTimeLuxon>;
27
+ declare function localDateTime(options?: DateTimeOptions): LuxonValidator<LocalDateTimeLuxon>;
28
+ declare function dateTime(options?: DateTimeOptions): LuxonValidator<DateTimeLuxon>;
29
+ declare function dateTimeUtc(options?: DateTimeOptions): LuxonValidator<DateTimeUtcLuxon>;
30
+ declare function dateTimeMillis(options?: DateTimeOptions): LuxonValidator<DateTimeMillisLuxon>;
31
+ declare function dateTimeMillisUtc<DateTimeMillisUtcLuxon>(options?: DateTimeOptions): LuxonValidator<import("./luxon.js").DateTimeMillisUtcLuxon>;
32
+ declare function dateTimeFromISO(options?: DateTimeOptions): DateTimeValidator;
33
+ declare function dateTimeFromRFC2822(options?: DateTimeOptions): DateTimeValidator;
34
+ declare function dateTimeFromHTTP(options?: DateTimeOptions): DateTimeValidator;
35
+ declare function dateTimeFromSQL(options?: DateTimeOptions): DateTimeValidator;
28
36
  export interface ValidateLuxonNumberParams {
29
37
  value: any;
30
38
  path: Path;
@@ -32,14 +40,14 @@ export interface ValidateLuxonNumberParams {
32
40
  type: string;
33
41
  parser: (value: number) => DateTime;
34
42
  }
35
- export declare function validateLuxonNumber({ value, path, ctx, type, parser }: ValidateLuxonNumberParams): Promise<ValidationResult>;
36
- declare function dateTimeFromMillis(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper;
37
- declare function dateTimeFromSeconds(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper;
38
- export declare class DurationValidator extends Validator {
39
- validatePath(value: any, path: Path, ctx: ValidationContext): Promise<ValidationResult>;
43
+ export declare function validateLuxonNumber({ value, path, ctx, type, parser }: ValidateLuxonNumberParams): Promise<DateTime>;
44
+ declare function dateTimeFromMillis(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper<DateTime<boolean>, any>;
45
+ declare function dateTimeFromSeconds(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper<DateTime<boolean>, any>;
46
+ export declare class DurationValidator extends Validator<Duration> {
47
+ validatePath(value: any, path: Path, ctx: ValidationContext): Promise<Duration>;
40
48
  }
41
- export declare class TimeDurationValidator extends Validator {
42
- validatePath(value: any, path: Path, ctx: ValidationContext): Promise<ValidationResult>;
49
+ export declare class TimeDurationValidator extends Validator<Duration> {
50
+ validatePath(value: any, path: Path, ctx: ValidationContext): Promise<Duration>;
43
51
  }
44
52
  export declare const Vluxon: {
45
53
  localDate: typeof localDate;
@@ -1,10 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Vluxon = exports.TimeDurationValidator = exports.DurationValidator = exports.validateLuxonNumber = exports.LuxonValidator = void 0;
3
+ exports.Vluxon = exports.TimeDurationValidator = exports.DurationValidator = exports.LuxonValidator = exports.DateTimeValidator = void 0;
4
+ exports.validateLuxonNumber = validateLuxonNumber;
4
5
  const v_validation_1 = require("@finnair/v-validation");
5
6
  const luxon_1 = require("luxon");
6
7
  const luxon_js_1 = require("./luxon.js");
7
- class LuxonValidator extends v_validation_1.Validator {
8
+ class DateTimeValidator extends v_validation_1.Validator {
8
9
  params;
9
10
  constructor(params) {
10
11
  super();
@@ -15,14 +16,11 @@ class LuxonValidator extends v_validation_1.Validator {
15
16
  validatePath(value, path, ctx) {
16
17
  const params = this.params;
17
18
  if ((0, v_validation_1.isNullOrUndefined)(value)) {
18
- return ctx.failurePromise(v_validation_1.defaultViolations.notNull(path), value);
19
- }
20
- if (params.proto && value instanceof params.proto) {
21
- return ctx.successPromise(value);
19
+ throw v_validation_1.defaultViolations.notNull(path);
22
20
  }
23
- else if (luxon_1.DateTime.isDateTime(value)) {
21
+ if (luxon_1.DateTime.isDateTime(value)) {
24
22
  if (value.isValid) {
25
- return success(value);
23
+ return Promise.resolve(value);
26
24
  }
27
25
  }
28
26
  else if ((0, v_validation_1.isString)(value)) {
@@ -30,14 +28,30 @@ class LuxonValidator extends v_validation_1.Validator {
30
28
  if (match) {
31
29
  const dateTime = params.parser(value, match);
32
30
  if (dateTime.isValid) {
33
- return success(dateTime);
31
+ return Promise.resolve(dateTime);
34
32
  }
35
33
  }
36
34
  }
37
- return ctx.failurePromise(v_validation_1.defaultViolations.date(value, path, params.type), value);
38
- function success(dateTime) {
39
- return ctx.successPromise(params.proto ? new params.proto(dateTime) : dateTime);
35
+ throw v_validation_1.defaultViolations.date(value, path, params.type);
36
+ }
37
+ }
38
+ exports.DateTimeValidator = DateTimeValidator;
39
+ class LuxonValidator extends v_validation_1.Validator {
40
+ params;
41
+ dateTimeValidator;
42
+ constructor(params) {
43
+ super();
44
+ this.params = params;
45
+ this.dateTimeValidator = new DateTimeValidator(params);
46
+ Object.freeze(this);
47
+ }
48
+ validatePath(value, path, ctx) {
49
+ if (value instanceof this.params.proto) {
50
+ return Promise.resolve(value);
40
51
  }
52
+ return this.dateTimeValidator.validatePath(value, path, ctx).then((result) => {
53
+ return new this.params.proto(result);
54
+ });
41
55
  }
42
56
  }
43
57
  exports.LuxonValidator = LuxonValidator;
@@ -103,28 +117,28 @@ function dateTimeMillisUtc(options = { zone: luxon_1.FixedOffsetZone.utcInstance
103
117
  });
104
118
  }
105
119
  function dateTimeFromISO(options = { setZone: true }) {
106
- return new LuxonValidator({
120
+ return new DateTimeValidator({
107
121
  type: 'ISODateTime',
108
122
  pattern: /./,
109
123
  parser: (value) => luxon_1.DateTime.fromISO(value, options),
110
124
  });
111
125
  }
112
126
  function dateTimeFromRFC2822(options = { setZone: true }) {
113
- return new LuxonValidator({
127
+ return new DateTimeValidator({
114
128
  type: 'RFC2822DateTime',
115
129
  pattern: /./,
116
130
  parser: (value) => luxon_1.DateTime.fromRFC2822(value, options),
117
131
  });
118
132
  }
119
133
  function dateTimeFromHTTP(options = { setZone: true }) {
120
- return new LuxonValidator({
134
+ return new DateTimeValidator({
121
135
  type: 'HTTPDateTime',
122
136
  pattern: /./,
123
137
  parser: (value) => luxon_1.DateTime.fromHTTP(value, options),
124
138
  });
125
139
  }
126
140
  function dateTimeFromSQL(options = { zone: luxon_1.FixedOffsetZone.utcInstance }) {
127
- return new LuxonValidator({
141
+ return new DateTimeValidator({
128
142
  type: 'SQLDateTime',
129
143
  pattern: /./,
130
144
  parser: (value) => luxon_1.DateTime.fromSQL(value, options),
@@ -132,22 +146,21 @@ function dateTimeFromSQL(options = { zone: luxon_1.FixedOffsetZone.utcInstance }
132
146
  }
133
147
  async function validateLuxonNumber({ value, path, ctx, type, parser }) {
134
148
  if ((0, v_validation_1.isNullOrUndefined)(value)) {
135
- return ctx.failure(v_validation_1.defaultViolations.notNull(path), value);
149
+ throw v_validation_1.defaultViolations.notNull(path);
136
150
  }
137
151
  else if (luxon_1.DateTime.isDateTime(value)) {
138
152
  if (value.isValid) {
139
- return ctx.success(value);
153
+ return Promise.resolve(value);
140
154
  }
141
155
  }
142
156
  else if (typeof value === 'number' && !Number.isNaN(value)) {
143
157
  const dateTime = parser(value);
144
158
  if (dateTime.isValid) {
145
- return ctx.success(dateTime);
159
+ return Promise.resolve(dateTime);
146
160
  }
147
161
  }
148
- return ctx.failure(v_validation_1.defaultViolations.date(value, path, type), value);
162
+ throw v_validation_1.defaultViolations.date(value, path, type);
149
163
  }
150
- exports.validateLuxonNumber = validateLuxonNumber;
151
164
  function dateTimeFromMillis(options = { zone: luxon_1.FixedOffsetZone.utcInstance }) {
152
165
  return v_validation_1.V.fn((value, path, ctx) => validateLuxonNumber({
153
166
  value,
@@ -170,18 +183,18 @@ const durationPattern = /^P(?!$)(\d+(?:\.\d+)?Y)?(\d+(?:\.\d+)?M)?(\d+(?:\.\d+)?
170
183
  class DurationValidator extends v_validation_1.Validator {
171
184
  async validatePath(value, path, ctx) {
172
185
  if ((0, v_validation_1.isNullOrUndefined)(value)) {
173
- return ctx.failure(v_validation_1.defaultViolations.notNull(path), value);
186
+ throw v_validation_1.defaultViolations.notNull(path);
174
187
  }
175
188
  else if (luxon_1.Duration.isDuration(value)) {
176
- return ctx.success(value);
189
+ return Promise.resolve(value);
177
190
  }
178
191
  else if ((0, v_validation_1.isString)(value) && durationPattern.test(value)) {
179
192
  const duration = luxon_1.Duration.fromISO(value);
180
193
  if (duration.isValid) {
181
- return ctx.success(duration);
194
+ return Promise.resolve(duration);
182
195
  }
183
196
  }
184
- return ctx.failure(new v_validation_1.TypeMismatch(path, 'Duration', value), value);
197
+ throw new v_validation_1.TypeMismatch(path, 'Duration', value);
185
198
  }
186
199
  }
187
200
  exports.DurationValidator = DurationValidator;
@@ -191,12 +204,12 @@ class TimeDurationValidator extends v_validation_1.Validator {
191
204
  return ctx.failure(v_validation_1.defaultViolations.notNull(path), value);
192
205
  }
193
206
  else if (luxon_1.Duration.isDuration(value)) {
194
- return ctx.success(value);
207
+ return Promise.resolve(value);
195
208
  }
196
209
  else if ((0, v_validation_1.isString)(value)) {
197
210
  const duration = luxon_1.Duration.fromISOTime(value);
198
211
  if (duration.isValid) {
199
- return ctx.success(duration);
212
+ return Promise.resolve(duration);
200
213
  }
201
214
  }
202
215
  return ctx.failure(new v_validation_1.TypeMismatch(path, 'TimeDuration', value), value);
@@ -1,30 +1,38 @@
1
- import { ValidationContext, Validator, ValidationResult } from '@finnair/v-validation';
1
+ import { ValidationContext, Validator } from '@finnair/v-validation';
2
2
  import { Path } from '@finnair/path';
3
- import { DateTime, DateTimeJSOptions, DateTimeOptions } from 'luxon';
4
- import { LuxonDateTime } from './luxon.js';
3
+ import { DateTime, DateTimeJSOptions, DateTimeOptions, Duration } from 'luxon';
4
+ import { LocalDateLuxon, DateTimeLuxon, DateTimeMillisLuxon, DateTimeUtcLuxon, LuxonDateTime, LocalTimeLuxon, LocalDateTimeLuxon } from './luxon.js';
5
5
  export type LuxonInput = string | DateTime | LuxonDateTime;
6
- export interface ValidateLuxonParams {
6
+ export interface DateTimeParams {
7
7
  type: string;
8
8
  pattern: RegExp;
9
- proto?: any;
10
9
  parser: (value: string, match: RegExpExecArray) => DateTime;
11
10
  }
12
- export declare class LuxonValidator extends Validator {
13
- params: ValidateLuxonParams;
14
- constructor(params: ValidateLuxonParams);
15
- validatePath(value: any, path: Path, ctx: ValidationContext): PromiseLike<ValidationResult>;
11
+ export interface ValidateLuxonParams<Out extends LuxonDateTime> extends DateTimeParams {
12
+ proto: new (...args: any[]) => Out;
16
13
  }
17
- declare function localDate(options?: DateTimeOptions): LuxonValidator;
18
- declare function localTime(options?: DateTimeOptions): LuxonValidator;
19
- declare function localDateTime(options?: DateTimeOptions): LuxonValidator;
20
- declare function dateTime(options?: DateTimeOptions): LuxonValidator;
21
- declare function dateTimeUtc(options?: DateTimeOptions): LuxonValidator;
22
- declare function dateTimeMillis(options?: DateTimeOptions): LuxonValidator;
23
- declare function dateTimeMillisUtc(options?: DateTimeOptions): LuxonValidator;
24
- declare function dateTimeFromISO(options?: DateTimeOptions): LuxonValidator;
25
- declare function dateTimeFromRFC2822(options?: DateTimeOptions): LuxonValidator;
26
- declare function dateTimeFromHTTP(options?: DateTimeOptions): LuxonValidator;
27
- declare function dateTimeFromSQL(options?: DateTimeOptions): LuxonValidator;
14
+ export declare class DateTimeValidator extends Validator<DateTime> {
15
+ readonly params: DateTimeParams;
16
+ constructor(params: DateTimeParams);
17
+ validatePath(value: any, path: Path, ctx: ValidationContext): PromiseLike<DateTime>;
18
+ }
19
+ export declare class LuxonValidator<Out extends LuxonDateTime> extends Validator<Out> {
20
+ readonly params: ValidateLuxonParams<Out>;
21
+ private readonly dateTimeValidator;
22
+ constructor(params: ValidateLuxonParams<Out>);
23
+ validatePath(value: any, path: Path, ctx: ValidationContext): PromiseLike<Out>;
24
+ }
25
+ declare function localDate(options?: DateTimeOptions): LuxonValidator<LocalDateLuxon>;
26
+ declare function localTime(options?: DateTimeOptions): LuxonValidator<LocalTimeLuxon>;
27
+ declare function localDateTime(options?: DateTimeOptions): LuxonValidator<LocalDateTimeLuxon>;
28
+ declare function dateTime(options?: DateTimeOptions): LuxonValidator<DateTimeLuxon>;
29
+ declare function dateTimeUtc(options?: DateTimeOptions): LuxonValidator<DateTimeUtcLuxon>;
30
+ declare function dateTimeMillis(options?: DateTimeOptions): LuxonValidator<DateTimeMillisLuxon>;
31
+ declare function dateTimeMillisUtc<DateTimeMillisUtcLuxon>(options?: DateTimeOptions): LuxonValidator<import("./luxon.js").DateTimeMillisUtcLuxon>;
32
+ declare function dateTimeFromISO(options?: DateTimeOptions): DateTimeValidator;
33
+ declare function dateTimeFromRFC2822(options?: DateTimeOptions): DateTimeValidator;
34
+ declare function dateTimeFromHTTP(options?: DateTimeOptions): DateTimeValidator;
35
+ declare function dateTimeFromSQL(options?: DateTimeOptions): DateTimeValidator;
28
36
  export interface ValidateLuxonNumberParams {
29
37
  value: any;
30
38
  path: Path;
@@ -32,14 +40,14 @@ export interface ValidateLuxonNumberParams {
32
40
  type: string;
33
41
  parser: (value: number) => DateTime;
34
42
  }
35
- export declare function validateLuxonNumber({ value, path, ctx, type, parser }: ValidateLuxonNumberParams): Promise<ValidationResult>;
36
- declare function dateTimeFromMillis(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper;
37
- declare function dateTimeFromSeconds(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper;
38
- export declare class DurationValidator extends Validator {
39
- validatePath(value: any, path: Path, ctx: ValidationContext): Promise<ValidationResult>;
43
+ export declare function validateLuxonNumber({ value, path, ctx, type, parser }: ValidateLuxonNumberParams): Promise<DateTime>;
44
+ declare function dateTimeFromMillis(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper<DateTime<boolean>, any>;
45
+ declare function dateTimeFromSeconds(options?: DateTimeJSOptions): import("@finnair/v-validation").ValidatorFnWrapper<DateTime<boolean>, any>;
46
+ export declare class DurationValidator extends Validator<Duration> {
47
+ validatePath(value: any, path: Path, ctx: ValidationContext): Promise<Duration>;
40
48
  }
41
- export declare class TimeDurationValidator extends Validator {
42
- validatePath(value: any, path: Path, ctx: ValidationContext): Promise<ValidationResult>;
49
+ export declare class TimeDurationValidator extends Validator<Duration> {
50
+ validatePath(value: any, path: Path, ctx: ValidationContext): Promise<Duration>;
43
51
  }
44
52
  export declare const Vluxon: {
45
53
  localDate: typeof localDate;
@@ -1,7 +1,7 @@
1
1
  import { isNullOrUndefined, defaultViolations, isString, V, Validator, TypeMismatch } from '@finnair/v-validation';
2
2
  import { DateTime, Duration, FixedOffsetZone } from 'luxon';
3
3
  import { LocalDateLuxon, DateTimeLuxon, DateTimeMillisLuxon, DateTimeMillisUtcLuxon, DateTimeUtcLuxon, LocalTimeLuxon, LocalDateTimeLuxon, } from './luxon.js';
4
- export class LuxonValidator extends Validator {
4
+ export class DateTimeValidator extends Validator {
5
5
  params;
6
6
  constructor(params) {
7
7
  super();
@@ -12,14 +12,11 @@ export class LuxonValidator extends Validator {
12
12
  validatePath(value, path, ctx) {
13
13
  const params = this.params;
14
14
  if (isNullOrUndefined(value)) {
15
- return ctx.failurePromise(defaultViolations.notNull(path), value);
16
- }
17
- if (params.proto && value instanceof params.proto) {
18
- return ctx.successPromise(value);
15
+ throw defaultViolations.notNull(path);
19
16
  }
20
- else if (DateTime.isDateTime(value)) {
17
+ if (DateTime.isDateTime(value)) {
21
18
  if (value.isValid) {
22
- return success(value);
19
+ return Promise.resolve(value);
23
20
  }
24
21
  }
25
22
  else if (isString(value)) {
@@ -27,14 +24,29 @@ export class LuxonValidator extends Validator {
27
24
  if (match) {
28
25
  const dateTime = params.parser(value, match);
29
26
  if (dateTime.isValid) {
30
- return success(dateTime);
27
+ return Promise.resolve(dateTime);
31
28
  }
32
29
  }
33
30
  }
34
- return ctx.failurePromise(defaultViolations.date(value, path, params.type), value);
35
- function success(dateTime) {
36
- return ctx.successPromise(params.proto ? new params.proto(dateTime) : dateTime);
31
+ throw defaultViolations.date(value, path, params.type);
32
+ }
33
+ }
34
+ export class LuxonValidator extends Validator {
35
+ params;
36
+ dateTimeValidator;
37
+ constructor(params) {
38
+ super();
39
+ this.params = params;
40
+ this.dateTimeValidator = new DateTimeValidator(params);
41
+ Object.freeze(this);
42
+ }
43
+ validatePath(value, path, ctx) {
44
+ if (value instanceof this.params.proto) {
45
+ return Promise.resolve(value);
37
46
  }
47
+ return this.dateTimeValidator.validatePath(value, path, ctx).then((result) => {
48
+ return new this.params.proto(result);
49
+ });
38
50
  }
39
51
  }
40
52
  const datePattern = /^\d{4}-\d{2}-\d{2}$/;
@@ -99,28 +111,28 @@ function dateTimeMillisUtc(options = { zone: FixedOffsetZone.utcInstance }) {
99
111
  });
100
112
  }
101
113
  function dateTimeFromISO(options = { setZone: true }) {
102
- return new LuxonValidator({
114
+ return new DateTimeValidator({
103
115
  type: 'ISODateTime',
104
116
  pattern: /./,
105
117
  parser: (value) => DateTime.fromISO(value, options),
106
118
  });
107
119
  }
108
120
  function dateTimeFromRFC2822(options = { setZone: true }) {
109
- return new LuxonValidator({
121
+ return new DateTimeValidator({
110
122
  type: 'RFC2822DateTime',
111
123
  pattern: /./,
112
124
  parser: (value) => DateTime.fromRFC2822(value, options),
113
125
  });
114
126
  }
115
127
  function dateTimeFromHTTP(options = { setZone: true }) {
116
- return new LuxonValidator({
128
+ return new DateTimeValidator({
117
129
  type: 'HTTPDateTime',
118
130
  pattern: /./,
119
131
  parser: (value) => DateTime.fromHTTP(value, options),
120
132
  });
121
133
  }
122
134
  function dateTimeFromSQL(options = { zone: FixedOffsetZone.utcInstance }) {
123
- return new LuxonValidator({
135
+ return new DateTimeValidator({
124
136
  type: 'SQLDateTime',
125
137
  pattern: /./,
126
138
  parser: (value) => DateTime.fromSQL(value, options),
@@ -128,20 +140,20 @@ function dateTimeFromSQL(options = { zone: FixedOffsetZone.utcInstance }) {
128
140
  }
129
141
  export async function validateLuxonNumber({ value, path, ctx, type, parser }) {
130
142
  if (isNullOrUndefined(value)) {
131
- return ctx.failure(defaultViolations.notNull(path), value);
143
+ throw defaultViolations.notNull(path);
132
144
  }
133
145
  else if (DateTime.isDateTime(value)) {
134
146
  if (value.isValid) {
135
- return ctx.success(value);
147
+ return Promise.resolve(value);
136
148
  }
137
149
  }
138
150
  else if (typeof value === 'number' && !Number.isNaN(value)) {
139
151
  const dateTime = parser(value);
140
152
  if (dateTime.isValid) {
141
- return ctx.success(dateTime);
153
+ return Promise.resolve(dateTime);
142
154
  }
143
155
  }
144
- return ctx.failure(defaultViolations.date(value, path, type), value);
156
+ throw defaultViolations.date(value, path, type);
145
157
  }
146
158
  function dateTimeFromMillis(options = { zone: FixedOffsetZone.utcInstance }) {
147
159
  return V.fn((value, path, ctx) => validateLuxonNumber({
@@ -165,18 +177,18 @@ const durationPattern = /^P(?!$)(\d+(?:\.\d+)?Y)?(\d+(?:\.\d+)?M)?(\d+(?:\.\d+)?
165
177
  export class DurationValidator extends Validator {
166
178
  async validatePath(value, path, ctx) {
167
179
  if (isNullOrUndefined(value)) {
168
- return ctx.failure(defaultViolations.notNull(path), value);
180
+ throw defaultViolations.notNull(path);
169
181
  }
170
182
  else if (Duration.isDuration(value)) {
171
- return ctx.success(value);
183
+ return Promise.resolve(value);
172
184
  }
173
185
  else if (isString(value) && durationPattern.test(value)) {
174
186
  const duration = Duration.fromISO(value);
175
187
  if (duration.isValid) {
176
- return ctx.success(duration);
188
+ return Promise.resolve(duration);
177
189
  }
178
190
  }
179
- return ctx.failure(new TypeMismatch(path, 'Duration', value), value);
191
+ throw new TypeMismatch(path, 'Duration', value);
180
192
  }
181
193
  }
182
194
  export class TimeDurationValidator extends Validator {
@@ -185,12 +197,12 @@ export class TimeDurationValidator extends Validator {
185
197
  return ctx.failure(defaultViolations.notNull(path), value);
186
198
  }
187
199
  else if (Duration.isDuration(value)) {
188
- return ctx.success(value);
200
+ return Promise.resolve(value);
189
201
  }
190
202
  else if (isString(value)) {
191
203
  const duration = Duration.fromISOTime(value);
192
204
  if (duration.isValid) {
193
- return ctx.success(duration);
205
+ return Promise.resolve(duration);
194
206
  }
195
207
  }
196
208
  return ctx.failure(new TypeMismatch(path, 'TimeDuration', value), value);
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../path/dist/cjs/path.d.ts","../../path/dist/cjs/matchers.d.ts","../../path/dist/cjs/pathmatcher.d.ts","../../path/dist/cjs/projection.d.ts","../../path/dist/cjs/index.d.ts","../../core/dist/cjs/validators.d.ts","../../core/dist/cjs/schema.d.ts","../../core/dist/cjs/v.d.ts","../../core/dist/cjs/index.d.ts","../../../node_modules/@types/luxon/src/zone.d.ts","../../../node_modules/@types/luxon/src/settings.d.ts","../../../node_modules/@types/luxon/src/_util.d.ts","../../../node_modules/@types/luxon/src/misc.d.ts","../../../node_modules/@types/luxon/src/duration.d.ts","../../../node_modules/@types/luxon/src/interval.d.ts","../../../node_modules/@types/luxon/src/datetime.d.ts","../../../node_modules/@types/luxon/src/info.d.ts","../../../node_modules/@types/luxon/src/luxon.d.ts","../../../node_modules/@types/luxon/index.d.ts","../src/luxon.ts","../src/vluxon.ts","../src/index.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/deep-equal/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/moo/index.d.ts","../../../node_modules/@types/nearley/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/uuid/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"e69c2a812df71addd97629b25fef907cceec74e5e83fae9ee812dcb35a9add47","96cc05d7b191d61401b9cfe63ac58c483105739781a56a4bfcdbbbd1fbb6b3b8","df681dc08521fa6be7bb7ed64a2f9fe8e3caf4041a7c4317e6e77bd580a73578","d4b99fb2393b80a976a107797b9ac5e2e5b6d39e3c55151c520de76e86010980","e8a5d7c71a42e00944e2426648c9bec5a104f7b5009fc8f3cdb9faa2db46bb57","4004c961e4ed65bed2fec13db13402d6a632da3d35fde24222d8422e8b806a7e","a9e0fa778b717702fe62fadff258bf144264946c5890bca523efe048f340bf73","97805a18c39196752d7266c5060c144af5cee2ab2fb0a7c964883784de7cf6f4","43ed6d6bdcde046d712f303b7b186ce6a7c36f404550c6d87ea23b6bed56f0c4","5339f84dfcb7b04aa1c2b4d7713d6128039381447f07abc2e48d36685e2eef44","fb35a61a39c933d31b5b2549d906b2c932a1486622958586f662dbd4b2fe72e6","24e2728268be1ad2407bab004549d2753a49b2acb0f117a04c4e28ffb3ecdd4f","aff159b14eba59afe98a88fe6f57881ba02895fb9763512dda9083497bdcd0e6","b6bc775d112a7761a50594fc589aeaa8893c139ffe3db2b4999756e17f367a8d","0b8f398b88a43f8bf29a50920e7ddef19c06c3008b351e7047e9613d7195c638","25d0e0fe3731bc85c7bd2ef7f7e1faf4f5201be1c10ff3a19e1afa6ec4568669","26080058b725ac0b480241751255b4391f722263778e84e66a62068705aafd3c","46afbf46c3d62eac2afead3a2011d506637bf4f2c05e1fd64bbf7e2bb2947b7c","02f634f868780eaaff5e2d3fb4570dac8e7f018a8650bb9a0ac1deb4915df8d1",{"version":"2411e324d2cc0bc82dfdc76768204f2a707ff34d8ef7eef571237fa26aa18d17","signature":"bb24451f190b5f4e9a675efbcd7f1af1aff7a5111095f22b18cc5103c2ba828e"},{"version":"0c9eaa0a808c2d4cf51507f1da156d667a414f6062aac9e184f9baaa5fc8d9b4","signature":"7f685a1cf808b25e3a4c6ca48088ba0652191b55c0aa763b2c89ab7ce2069ff9"},"5760f609071b025ad30c31dd9cde9badcf19b243318b82fb17e3a86ff8e0c256","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","2e345cb6511f4c4c60c274df6626c94f3182939034f06cdf414bfbccc584f822","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","b7b0f360867e85305ac700e4c6f084d45adfa417a8f5d964b6f609f99ee92772","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e","7a3a840d2d933c48b6cbe80e3c74ab4f874314953457ac387759a251cab01d56","1be422477101fb35ce8c78fb19f763a5ad6aa7204d60b56ca26ceb55ccec67b8","09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","adda9e3915c6bf15e360356a41d950881a51dbe44f9a6088155836b040820663","b4855526ac5a822d6e0005e4b62ee49c599bf89897e4109135283d660e60291c","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","d70119390aece1794bf4988f10ea750d13455f5286977d35027d43dd2e9841cf",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"62486c25ff70799e9faac5c6108820969617daeb6e65644c212d03cdb5902a3c","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","ad8848c289c0b633452e58179f46edccd14b5a0fe90ebce411f79ff040b803e0",{"version":"5d4ef3f46c7f9d62f7c964f9f9ccdd293be99fb3dcc66c983f2aea7430e3c7c6","affectsGlobalScope":true},"91f8b5abcdff8f9ecb9656b9852878718416fb7700b2c4fad8331e5b97c080bb","59d8f064f86a4a2be03b33c0efcc9e7a268ad27b22f82dce16899f3364f70ba8","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"f49fb15c4aa06b65b0dce4db4584bfd8a9f74644baef1511b404dc95be34af00","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d3f4c342fb62f348f25f54b473b0ab7371828cbf637134194fa9cdf04856f87b","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b"],"root":[[77,79]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"downlevelIteration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./cjs","rootDir":"../src","strict":true,"target":9},"fileIdsList":[[167],[75,167],[68,167],[67,69,71,72,76,167],[69,70,73,167],[67,70,73,167],[69,71,73,167],[67,68,70,71,72,73,74,167],[67,73,167],[69,167],[88,167],[124,167],[125,130,158,167],[126,137,138,145,155,166,167],[126,127,137,145,167],[128,167],[129,130,138,146,167],[130,155,163,167],[131,133,137,145,167],[132,167],[133,134,167],[137,167],[135,137,167],[124,137,167],[137,138,139,155,166,167],[137,138,139,152,155,158,167],[122,167,171],[133,137,140,145,155,166,167],[137,138,140,141,145,155,163,166,167],[140,142,155,163,166,167],[88,89,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[137,143,167],[144,166,167,171],[133,137,145,155,167],[146,167],[147,167],[124,148,167],[149,165,167,171],[150,167],[151,167],[137,152,153,167],[152,154,167,169],[125,137,155,156,157,158,167],[125,155,157,167],[155,156,167],[158,167],[159,167],[124,155,167],[137,161,162,167],[161,162,167],[130,145,155,163,167],[164,167],[145,165,167],[125,140,151,166,167],[130,167],[155,167,168],[144,167,169],[167,170],[125,130,137,139,148,155,166,167,169,171],[155,167,172],[99,103,166,167],[99,155,166,167],[94,167],[96,99,163,166,167],[145,163,167],[167,174],[94,167,174],[96,99,145,166,167],[91,92,95,98,125,137,155,166,167],[91,97,167],[95,99,125,158,166,167,174],[125,167,174],[115,125,167,174],[93,94,167,174],[99,167],[93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,167],[99,106,107,167],[97,99,107,108,167],[98,167],[91,94,99,167],[99,103,107,108,167],[103,167],[97,99,102,166,167],[91,96,97,99,103,106,167],[125,155,167],[94,99,115,125,167,171,174],[63,65,167],[62,63,167],[62,63,64,167],[62,167],[77,78,167],[76,167],[62,66,76,77,167],[58,59,60,61,167],[58,167],[58,59,167],[58,60,167],[76],[62,63,66,76,77]],"referencedMap":[[80,1],[81,1],[82,1],[83,1],[76,2],[69,3],[73,4],[71,5],[74,6],[72,7],[75,8],[70,1],[68,9],[67,10],[84,1],[85,1],[86,1],[87,1],[88,11],[89,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[134,21],[136,22],[135,23],[137,24],[138,25],[139,26],[123,27],[173,1],[140,28],[141,29],[142,30],[174,31],[143,32],[144,33],[145,34],[146,35],[147,36],[148,37],[149,38],[150,39],[151,40],[152,41],[153,41],[154,42],[155,43],[157,44],[156,45],[158,46],[159,47],[160,48],[161,49],[162,50],[163,51],[164,52],[165,53],[166,54],[167,55],[168,56],[169,57],[170,58],[171,59],[172,60],[175,1],[176,1],[90,1],[56,1],[57,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[20,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[54,1],[52,1],[53,1],[1,1],[55,1],[106,61],[113,62],[105,61],[120,63],[97,64],[96,65],[119,66],[114,67],[117,68],[99,69],[98,70],[94,71],[93,72],[116,73],[95,74],[100,75],[101,1],[104,75],[91,1],[122,76],[121,75],[108,77],[109,78],[111,79],[107,80],[110,81],[115,66],[102,82],[103,83],[112,84],[92,85],[118,86],[66,87],[64,88],[65,89],[63,90],[79,91],[77,92],[78,93],[62,94],[59,95],[58,1],[60,96],[61,97]],"exportedModulesMap":[[80,1],[81,1],[82,1],[83,1],[76,2],[69,3],[73,4],[71,5],[74,6],[72,7],[75,8],[70,1],[68,9],[67,10],[84,1],[85,1],[86,1],[87,1],[88,11],[89,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[134,21],[136,22],[135,23],[137,24],[138,25],[139,26],[123,27],[173,1],[140,28],[141,29],[142,30],[174,31],[143,32],[144,33],[145,34],[146,35],[147,36],[148,37],[149,38],[150,39],[151,40],[152,41],[153,41],[154,42],[155,43],[157,44],[156,45],[158,46],[159,47],[160,48],[161,49],[162,50],[163,51],[164,52],[165,53],[166,54],[167,55],[168,56],[169,57],[170,58],[171,59],[172,60],[175,1],[176,1],[90,1],[56,1],[57,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[20,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[48,1],[9,1],[49,1],[50,1],[51,1],[54,1],[52,1],[53,1],[1,1],[55,1],[106,61],[113,62],[105,61],[120,63],[97,64],[96,65],[119,66],[114,67],[117,68],[99,69],[98,70],[94,71],[93,72],[116,73],[95,74],[100,75],[101,1],[104,75],[91,1],[122,76],[121,75],[108,77],[109,78],[111,79],[107,80],[110,81],[115,66],[102,82],[103,83],[112,84],[92,85],[118,86],[66,87],[64,88],[65,89],[63,90],[79,91],[77,98],[78,99],[62,94],[59,95],[58,1],[60,96],[61,97]],"semanticDiagnosticsPerFile":[80,81,82,83,76,69,73,71,74,72,75,70,68,67,84,85,86,87,88,89,124,125,126,127,128,129,130,131,132,133,134,136,135,137,138,139,123,173,140,141,142,174,143,144,145,146,147,148,149,150,151,152,153,154,155,157,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,175,176,90,56,57,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,54,52,53,1,55,106,113,105,120,97,96,119,114,117,99,98,94,93,116,95,100,101,104,91,122,121,108,109,111,107,110,115,102,103,112,92,118,66,64,65,63,79,77,78,62,59,58,60,61],"latestChangedDtsFile":"./cjs/index.d.ts"},"version":"5.2.2"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../path/dist/cjs/path.d.ts","../../path/dist/cjs/matchers.d.ts","../../path/dist/cjs/pathmatcher.d.ts","../../path/dist/cjs/projection.d.ts","../../path/dist/cjs/index.d.ts","../../core/dist/cjs/validators.d.ts","../../core/dist/cjs/objectvalidator.d.ts","../../core/dist/cjs/schema.d.ts","../../core/dist/cjs/objectvalidatorbuilder.d.ts","../../core/dist/cjs/v.d.ts","../../core/dist/cjs/index.d.ts","../../../node_modules/@types/luxon/src/zone.d.ts","../../../node_modules/@types/luxon/src/settings.d.ts","../../../node_modules/@types/luxon/src/_util.d.ts","../../../node_modules/@types/luxon/src/misc.d.ts","../../../node_modules/@types/luxon/src/duration.d.ts","../../../node_modules/@types/luxon/src/interval.d.ts","../../../node_modules/@types/luxon/src/datetime.d.ts","../../../node_modules/@types/luxon/src/info.d.ts","../../../node_modules/@types/luxon/src/luxon.d.ts","../../../node_modules/@types/luxon/index.d.ts","../src/luxon.ts","../src/vluxon.ts","../src/index.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/deep-equal/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/moo/index.d.ts","../../../node_modules/@types/nearley/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/uuid/index.d.ts"],"fileIdsList":[[170],[78,170],[71,170],[70,72,74,75,79,170],[72,73,76,170],[70,73,76,170],[72,74,76,170],[70,71,73,74,75,76,77,170],[70,76,170],[72,170],[91,170],[127,170],[128,133,161,170],[129,140,141,148,158,169,170],[129,130,140,148,170],[131,170],[132,133,141,149,170],[133,158,166,170],[134,136,140,148,170],[135,170],[136,137,170],[140,170],[138,140,170],[127,140,170],[140,141,142,158,169,170],[140,141,142,155,158,161,170],[125,170,174],[136,140,143,148,158,169,170],[140,141,143,144,148,158,166,169,170],[143,145,158,166,169,170],[91,92,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176],[140,146,170],[147,169,170,174],[136,140,148,158,170],[149,170],[150,170],[127,151,170],[152,168,170,174],[153,170],[154,170],[140,155,156,170],[155,157,170,172],[128,140,158,159,160,161,170],[128,158,160,170],[158,159,170],[161,170],[162,170],[127,158,170],[140,164,165,170],[164,165,170],[133,148,158,166,170],[167,170],[148,168,170],[128,143,154,169,170],[133,170],[158,170,171],[147,170,172],[170,173],[128,133,140,142,151,158,169,170,172,174],[158,170,175],[102,106,169,170],[102,158,169,170],[97,170],[99,102,166,169,170],[148,166,170],[170,177],[97,170,177],[99,102,148,169,170],[94,95,98,101,128,140,158,169,170],[94,100,170],[98,102,128,161,169,170,177],[128,170,177],[118,128,170,177],[96,97,170,177],[102,170],[96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,112,113,114,115,116,117,119,120,121,122,123,124,170],[102,109,110,170],[100,102,110,111,170],[101,170],[94,97,102,170],[102,106,110,111,170],[106,170],[100,102,105,169,170],[94,99,100,102,106,109,170],[128,158,170],[97,102,118,128,170,174,177],[64,65,67,68,170],[63,64,170],[64,65,170],[63,64,65,170],[63,64,65,66,67,170],[63,170],[80,81,170],[79,170],[63,69,79,80,170],[59,60,61,62,170],[59,170],[59,60,170],[59,61,170]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"42faa90b9a4b51517b2bbb8a65c44f522525116bd469ac44bdc49f6f24ada416","96cc05d7b191d61401b9cfe63ac58c483105739781a56a4bfcdbbbd1fbb6b3b8","df681dc08521fa6be7bb7ed64a2f9fe8e3caf4041a7c4317e6e77bd580a73578","d4b99fb2393b80a976a107797b9ac5e2e5b6d39e3c55151c520de76e86010980","e8a5d7c71a42e00944e2426648c9bec5a104f7b5009fc8f3cdb9faa2db46bb57","f4a05246fa243d403a9a8dce0b4f80a7249e50f54e84242bb071522a3bb38697","2fefd81321fa9586e4aaa69c545949591576b4f83ca59385635ddd7a096d1f92","eb524a0cd89c429c1c0e0291535ce4367705fc6ca106ea6b59f0a3269c081198","27aba4da7b1740cbce38c6d654cadc809dfe1d640d6c7f3a420e6694638a662d","522266daa2beb1dc76f684554d9ee054ed4bd8027f020381b91a46aefa469384","6be9c7ba1e0852e5d12eb391219e1b516a85934ba6e3bcc7116dc8566f51d443",{"version":"5339f84dfcb7b04aa1c2b4d7713d6128039381447f07abc2e48d36685e2eef44","impliedFormat":1},{"version":"fb35a61a39c933d31b5b2549d906b2c932a1486622958586f662dbd4b2fe72e6","impliedFormat":1},{"version":"24e2728268be1ad2407bab004549d2753a49b2acb0f117a04c4e28ffb3ecdd4f","impliedFormat":1},{"version":"aff159b14eba59afe98a88fe6f57881ba02895fb9763512dda9083497bdcd0e6","impliedFormat":1},{"version":"b6bc775d112a7761a50594fc589aeaa8893c139ffe3db2b4999756e17f367a8d","impliedFormat":1},{"version":"0b8f398b88a43f8bf29a50920e7ddef19c06c3008b351e7047e9613d7195c638","impliedFormat":1},{"version":"25d0e0fe3731bc85c7bd2ef7f7e1faf4f5201be1c10ff3a19e1afa6ec4568669","impliedFormat":1},{"version":"26080058b725ac0b480241751255b4391f722263778e84e66a62068705aafd3c","impliedFormat":1},{"version":"46afbf46c3d62eac2afead3a2011d506637bf4f2c05e1fd64bbf7e2bb2947b7c","impliedFormat":1},{"version":"02f634f868780eaaff5e2d3fb4570dac8e7f018a8650bb9a0ac1deb4915df8d1","impliedFormat":1},{"version":"2411e324d2cc0bc82dfdc76768204f2a707ff34d8ef7eef571237fa26aa18d17","signature":"bb24451f190b5f4e9a675efbcd7f1af1aff7a5111095f22b18cc5103c2ba828e"},{"version":"564ae4eb4a48149c0bc1781eaa4259950feff1f978377a282555a2e53982ffd7","signature":"3e7b49da676d47e732e398c77aa2dee618fbbe453b6f7030162de5194e5cc466"},"5760f609071b025ad30c31dd9cde9badcf19b243318b82fb17e3a86ff8e0c256",{"version":"f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","impliedFormat":1},{"version":"2e345cb6511f4c4c60c274df6626c94f3182939034f06cdf414bfbccc584f822","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"b7b0f360867e85305ac700e4c6f084d45adfa417a8f5d964b6f609f99ee92772","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e","impliedFormat":1},{"version":"7a3a840d2d933c48b6cbe80e3c74ab4f874314953457ac387759a251cab01d56","impliedFormat":1},{"version":"1be422477101fb35ce8c78fb19f763a5ad6aa7204d60b56ca26ceb55ccec67b8","impliedFormat":1},{"version":"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"adda9e3915c6bf15e360356a41d950881a51dbe44f9a6088155836b040820663","impliedFormat":1},{"version":"b4855526ac5a822d6e0005e4b62ee49c599bf89897e4109135283d660e60291c","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"d70119390aece1794bf4988f10ea750d13455f5286977d35027d43dd2e9841cf","impliedFormat":1},{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true,"impliedFormat":1},{"version":"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c","impliedFormat":1},{"version":"62486c25ff70799e9faac5c6108820969617daeb6e65644c212d03cdb5902a3c","affectsGlobalScope":true,"impliedFormat":1},{"version":"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","impliedFormat":1},{"version":"7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba","impliedFormat":1},{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","impliedFormat":1},{"version":"b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","impliedFormat":1},{"version":"b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","impliedFormat":1},{"version":"42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","impliedFormat":1},{"version":"0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","impliedFormat":1},{"version":"b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e","impliedFormat":1},{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","impliedFormat":1},{"version":"f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","impliedFormat":1},{"version":"0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","impliedFormat":1},{"version":"21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","impliedFormat":1},{"version":"396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","impliedFormat":1},{"version":"ad8848c289c0b633452e58179f46edccd14b5a0fe90ebce411f79ff040b803e0","impliedFormat":1},{"version":"5d4ef3f46c7f9d62f7c964f9f9ccdd293be99fb3dcc66c983f2aea7430e3c7c6","affectsGlobalScope":true,"impliedFormat":1},{"version":"91f8b5abcdff8f9ecb9656b9852878718416fb7700b2c4fad8331e5b97c080bb","impliedFormat":1},{"version":"59d8f064f86a4a2be03b33c0efcc9e7a268ad27b22f82dce16899f3364f70ba8","impliedFormat":1},{"version":"0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7","impliedFormat":1},{"version":"f49fb15c4aa06b65b0dce4db4584bfd8a9f74644baef1511b404dc95be34af00","affectsGlobalScope":true,"impliedFormat":1},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true,"impliedFormat":1},{"version":"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","impliedFormat":1},{"version":"3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","impliedFormat":1},{"version":"d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","impliedFormat":1},{"version":"8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","impliedFormat":1},{"version":"01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","impliedFormat":1},{"version":"458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","impliedFormat":1},{"version":"831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12","impliedFormat":1},{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","impliedFormat":1},{"version":"eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","impliedFormat":1},{"version":"7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","impliedFormat":1},{"version":"7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df","impliedFormat":1},{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","impliedFormat":1},{"version":"2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","impliedFormat":1},{"version":"5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d","impliedFormat":1},{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3f4c342fb62f348f25f54b473b0ab7371828cbf637134194fa9cdf04856f87b","impliedFormat":1},{"version":"c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","impliedFormat":1},{"version":"f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","impliedFormat":1}],"root":[[80,82]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"downlevelIteration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./cjs","rootDir":"../src","strict":true,"target":9},"referencedMap":[[83,1],[84,1],[85,1],[86,1],[79,2],[72,3],[76,4],[74,5],[77,6],[75,7],[78,8],[73,1],[71,9],[70,10],[87,1],[88,1],[89,1],[90,1],[91,11],[92,11],[127,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,21],[139,22],[138,23],[140,24],[141,25],[142,26],[126,27],[176,1],[143,28],[144,29],[145,30],[177,31],[146,32],[147,33],[148,34],[149,35],[150,36],[151,37],[152,38],[153,39],[154,40],[155,41],[156,41],[157,42],[158,43],[160,44],[159,45],[161,46],[162,47],[163,48],[164,49],[165,50],[166,51],[167,52],[168,53],[169,54],[170,55],[171,56],[172,57],[173,58],[174,59],[175,60],[178,1],[179,1],[93,1],[57,1],[58,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[55,1],[53,1],[54,1],[1,1],[56,1],[109,61],[116,62],[108,61],[123,63],[100,64],[99,65],[122,66],[117,67],[120,68],[102,69],[101,70],[97,71],[96,72],[119,73],[98,74],[103,75],[104,1],[107,75],[94,1],[125,76],[124,75],[111,77],[112,78],[114,79],[110,80],[113,81],[118,66],[105,82],[106,83],[115,84],[95,85],[121,86],[69,87],[65,88],[67,89],[66,90],[68,91],[64,92],[82,93],[80,94],[81,95],[63,96],[60,97],[59,1],[61,98],[62,99]],"latestChangedDtsFile":"./cjs/index.d.ts","version":"5.6.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finnair/v-validation-luxon",
3
- "version": "6.1.0",
3
+ "version": "7.0.0-alpha.0",
4
4
  "private": false,
5
5
  "description": "Luxon validators",
6
6
  "main": "./dist/cjs/index.js",
@@ -40,13 +40,13 @@
40
40
  "build:esm": "tsc -b . && cp ../../package.esm.json dist/esm/package.json"
41
41
  },
42
42
  "peerDependencies": {
43
- "@finnair/path": "~6.0",
44
- "@finnair/v-validation": "~6.0",
43
+ "@finnair/path": ">=6",
44
+ "@finnair/v-validation": ">=6",
45
45
  "luxon": "^3.4.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@finnair/path": "^6.1.0",
49
- "@finnair/v-validation": "^6.1.0"
48
+ "@finnair/path": "^7.0.0-alpha.0",
49
+ "@finnair/v-validation": "^7.0.0-alpha.0"
50
50
  },
51
- "gitHead": "24a7a43d0a5201a29d650e8bb767195d14af9784"
51
+ "gitHead": "9070e0d4d554bae9bb499ac5163a65adbe52dd65"
52
52
  }