@squiz/dx-json-schema-lib 1.2.13-alpha.2 → 1.2.13-alpha.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/jest.config.ts +7 -0
  3. package/lib/JsonValidationService.d.ts +4 -6
  4. package/lib/JsonValidationService.js +90 -28
  5. package/lib/JsonValidationService.js.map +1 -1
  6. package/lib/JsonValidationService.spec.js +276 -65
  7. package/lib/JsonValidationService.spec.js.map +1 -1
  8. package/lib/errors/SchemaValidationError.d.ts +1 -1
  9. package/lib/errors/SchemaValidationError.js +8 -1
  10. package/lib/errors/SchemaValidationError.js.map +1 -1
  11. package/lib/formatted-text/v1/formattedText.d.ts +18 -16
  12. package/lib/formatted-text/v1/formattedText.json +59 -88
  13. package/lib/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.d.ts +8 -0
  14. package/lib/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.js +21 -0
  15. package/lib/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.js.map +1 -0
  16. package/lib/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.spec.d.ts +1 -0
  17. package/lib/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.spec.js +52 -0
  18. package/lib/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.spec.js.map +1 -0
  19. package/lib/index.d.ts +1 -0
  20. package/lib/index.js +1 -0
  21. package/lib/index.js.map +1 -1
  22. package/lib/manifest/v1/Draft-07.json +155 -0
  23. package/lib/manifest/v1/DxComponentInputSchema.json +11 -8
  24. package/lib/manifest/v1/DxComponentInputSchema.spec.js +23 -9
  25. package/lib/manifest/v1/DxComponentInputSchema.spec.js.map +1 -1
  26. package/lib/manifest/v1/__test__/schemas/badFunctionInputComponent.json +2 -1
  27. package/lib/manifest/v1/__test__/schemas/badNestedFunctionInput.json +2 -1
  28. package/lib/manifest/v1/__test__/schemas/nonObjectFunctionInputComponent.json +2 -1
  29. package/lib/manifest/v1/__test__/schemas/validComponentJson.json +48 -0
  30. package/lib/manifest/v1/v1.d.ts +5 -7
  31. package/lib/manifest/v1/v1.spec.js +22 -3
  32. package/lib/manifest/v1/v1.spec.js.map +1 -1
  33. package/package.json +5 -3
  34. package/src/JsonValidationService.spec.ts +379 -70
  35. package/src/JsonValidationService.ts +112 -34
  36. package/src/errors/SchemaValidationError.ts +10 -2
  37. package/src/formatted-text/v1/formattedText.json +65 -89
  38. package/src/formatted-text/v1/formattedText.ts +19 -17
  39. package/src/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.spec.ts +58 -0
  40. package/src/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.ts +36 -0
  41. package/src/index.ts +1 -0
  42. package/src/manifest/v1/Draft-07.json +155 -0
  43. package/src/manifest/v1/DxComponentInputSchema.json +11 -8
  44. package/src/manifest/v1/DxComponentInputSchema.spec.ts +63 -35
  45. package/src/manifest/v1/__test__/schemas/badFunctionInputComponent.json +2 -1
  46. package/src/manifest/v1/__test__/schemas/badNestedFunctionInput.json +2 -1
  47. package/src/manifest/v1/__test__/schemas/nonObjectFunctionInputComponent.json +2 -1
  48. package/src/manifest/v1/__test__/schemas/validComponentJson.json +48 -0
  49. package/src/manifest/v1/v1.spec.ts +37 -3
  50. package/src/manifest/v1/v1.ts +5 -7
  51. package/tsconfig.json +2 -1
  52. package/tsconfig.tsbuildinfo +1 -1
@@ -1,5 +1,21 @@
1
+ import { SchemaValidationError } from '../../errors/SchemaValidationError';
1
2
  import { JsonValidationService } from '../../JsonValidationService';
2
3
 
4
+ // eslint-disable-next-line @typescript-eslint/ban-types
5
+ function expectToThrowErrorMatchingTypeAndMessage(received: Function, errorType: Function, message: string) {
6
+ let error: null | Error = null;
7
+
8
+ try {
9
+ received();
10
+ } catch (e: any) {
11
+ error = e;
12
+ }
13
+
14
+ expect(error).toBeDefined();
15
+ expect(error?.message).toEqual(message);
16
+ expect(error).toBeInstanceOf(errorType);
17
+ }
18
+
3
19
  describe('DxComponentInputSchema', () => {
4
20
  let jsonValidationService: JsonValidationService;
5
21
  beforeAll(() => {
@@ -10,16 +26,19 @@ describe('DxComponentInputSchema', () => {
10
26
  expect(() => jsonValidationService.validateContentSchema({})).not.toThrowError();
11
27
  });
12
28
 
13
- it('should require required if properties is specified', () => {
14
- expect(() =>
15
- jsonValidationService.validateContentSchema({
16
- properties: {
17
- foo: {
18
- type: 'string',
29
+ it('should require "required" if properties is specified', () => {
30
+ expectToThrowErrorMatchingTypeAndMessage(
31
+ () =>
32
+ jsonValidationService.validateContentSchema({
33
+ properties: {
34
+ foo: {
35
+ type: 'string',
36
+ },
19
37
  },
20
- },
21
- }),
22
- ).toThrowError();
38
+ }),
39
+ SchemaValidationError,
40
+ 'failed validation: The required property `required` is missing at `#`',
41
+ );
23
42
  });
24
43
 
25
44
  it('should pass if required and properties are specified', () => {
@@ -36,11 +55,14 @@ describe('DxComponentInputSchema', () => {
36
55
  });
37
56
 
38
57
  it('should error if type is not "object"', () => {
39
- expect(() =>
40
- jsonValidationService.validateContentSchema({
41
- type: 'string',
42
- }),
43
- ).toThrowError();
58
+ expectToThrowErrorMatchingTypeAndMessage(
59
+ () =>
60
+ jsonValidationService.validateContentSchema({
61
+ type: 'string',
62
+ }),
63
+ SchemaValidationError,
64
+ 'failed validation: Expected value at `#/type` to be `object`, but value given is `string`',
65
+ );
44
66
  });
45
67
 
46
68
  it('should allow a nested type to be "FormattedText"', () => {
@@ -58,12 +80,15 @@ describe('DxComponentInputSchema', () => {
58
80
  });
59
81
 
60
82
  it('should error on unknown keywords', () => {
61
- expect(() =>
62
- jsonValidationService.validateContentSchema({
63
- type: 'object',
64
- foo: 'bar',
65
- }),
66
- ).toThrowError();
83
+ expectToThrowErrorMatchingTypeAndMessage(
84
+ () =>
85
+ jsonValidationService.validateContentSchema({
86
+ type: 'object',
87
+ foo: 'bar',
88
+ }),
89
+ SchemaValidationError,
90
+ 'failed validation: Additional property `foo` in `#` is not allowed',
91
+ );
67
92
  });
68
93
 
69
94
  it('should allow a nested property to be an array of of objects which have a property of type to be "FormattedText" that is required', () => {
@@ -90,25 +115,28 @@ describe('DxComponentInputSchema', () => {
90
115
  });
91
116
 
92
117
  it('should error if any nested object does not have a required property', () => {
93
- expect(() =>
94
- jsonValidationService.validateContentSchema({
95
- type: 'object',
96
- properties: {
97
- foo: {
98
- type: 'array',
99
- items: {
100
- type: 'object',
101
- properties: {
102
- bar: {
103
- type: 'FormattedText',
118
+ expectToThrowErrorMatchingTypeAndMessage(
119
+ () =>
120
+ jsonValidationService.validateContentSchema({
121
+ type: 'object',
122
+ properties: {
123
+ foo: {
124
+ type: 'array',
125
+ items: {
126
+ type: 'object',
127
+ properties: {
128
+ bar: {
129
+ type: 'FormattedText',
130
+ },
104
131
  },
105
132
  },
106
133
  },
107
134
  },
108
- },
109
- required: ['foo'],
110
- }),
111
- ).toThrowError();
135
+ required: ['foo'],
136
+ }),
137
+ SchemaValidationError,
138
+ 'failed validation: Object at `#/properties/foo/items` does not match any schema',
139
+ );
112
140
  });
113
141
 
114
142
  it('should succeed if required is on every nested object', () => {
@@ -29,7 +29,8 @@
29
29
  },
30
30
  "additionalProperties": {
31
31
  "type": "FormattedText"
32
- }
32
+ },
33
+ "required": ["xt"]
33
34
  }
34
35
  },
35
36
  "required": []
@@ -29,7 +29,8 @@
29
29
  },
30
30
  "additionalProperties": {
31
31
  "type": "FormattedText"
32
- }
32
+ },
33
+ "required": ["xt"]
33
34
  }
34
35
  },
35
36
  "required": []
@@ -29,7 +29,8 @@
29
29
  },
30
30
  "additionalProperties": {
31
31
  "type": "FormattedText"
32
- }
32
+ },
33
+ "required": []
33
34
  }
34
35
  },
35
36
  "required": []
@@ -0,0 +1,48 @@
1
+ {
2
+ "$schema": "../../v1.json",
3
+ "description": "t",
4
+ "displayName": "t",
5
+ "name": "test",
6
+ "namespace": "other",
7
+ "mainFunction": "main",
8
+ "version": "1.0.4",
9
+ "environment": [],
10
+ "functions": [
11
+ {
12
+ "entry": "main.js",
13
+ "name": "main",
14
+ "output": {
15
+ "responseType": "json",
16
+ "definition": {
17
+ "type": "object",
18
+ "properties": {
19
+ "prop": {
20
+ "type": "array"
21
+ }
22
+ }
23
+ }
24
+ },
25
+ "input": {
26
+ "type": "object",
27
+ "properties": {
28
+ "textValue": {
29
+ "type": "FormattedText"
30
+ },
31
+ "anotherValue": {
32
+ "type": "object",
33
+ "properties": {
34
+ "xt": {
35
+ "type": "FormattedText"
36
+ }
37
+ },
38
+ "required": [],
39
+ "additionalProperties": {
40
+ "type": "FormattedText"
41
+ }
42
+ }
43
+ },
44
+ "required": []
45
+ }
46
+ }
47
+ ]
48
+ }
@@ -9,6 +9,20 @@ async function fetchTestManifest(filename: string) {
9
9
  });
10
10
  return JSON.parse(contents);
11
11
  }
12
+ // eslint-disable-next-line @typescript-eslint/ban-types
13
+ function expectToThrowErrorMatchingTypeAndMessage(received: Function, errorType: Function, message: string) {
14
+ let error: null | Error = null;
15
+
16
+ try {
17
+ received();
18
+ } catch (e: any) {
19
+ error = e;
20
+ }
21
+
22
+ expect(error).toBeDefined();
23
+ expect(error?.message).toEqual(message);
24
+ expect(error).toBeInstanceOf(errorType);
25
+ }
12
26
 
13
27
  describe('manifest/v1', () => {
14
28
  let validationService: JsonValidationService;
@@ -24,16 +38,36 @@ describe('manifest/v1', () => {
24
38
 
25
39
  it('errors on invalid property types in function input', async () => {
26
40
  const manifest = await fetchTestManifest('badFunctionInputComponent.json');
27
- expect(() => validationService.validateManifest(manifest, 'v1')).toThrowError(SchemaValidationError);
41
+
42
+ expectToThrowErrorMatchingTypeAndMessage(
43
+ () => {
44
+ validationService.validateManifest(manifest, 'v1');
45
+ },
46
+ SchemaValidationError,
47
+ 'failed validation: Value `badInputType` at `#/functions/0/input/properties/textValue/type` does not match any schema',
48
+ );
28
49
  });
29
50
 
30
51
  it('errors on invalid property types in nested function input', async () => {
31
52
  const manifest = await fetchTestManifest('badNestedFunctionInput.json');
32
- expect(() => validationService.validateManifest(manifest, 'v1')).toThrowError(SchemaValidationError);
53
+
54
+ expectToThrowErrorMatchingTypeAndMessage(
55
+ () => {
56
+ validationService.validateManifest(manifest, 'v1');
57
+ },
58
+ SchemaValidationError,
59
+ 'failed validation: Value `astd` at `#/functions/0/input/properties/anotherValue/properties/xt/type` does not match any schema',
60
+ );
33
61
  });
34
62
 
35
63
  it('errors on non-object top level input', async () => {
36
64
  const manifest = await fetchTestManifest('nonObjectFunctionInputComponent.json');
37
- expect(() => validationService.validateManifest(manifest, 'v1')).toThrowError(SchemaValidationError);
65
+ expectToThrowErrorMatchingTypeAndMessage(
66
+ () => {
67
+ validationService.validateManifest(manifest, 'v1');
68
+ },
69
+ SchemaValidationError,
70
+ 'failed validation: Expected value at `#/functions/0/input/type` to be `object`, but value given is `string`',
71
+ );
38
72
  });
39
73
  });
@@ -8,8 +8,11 @@
8
8
  /**
9
9
  * Input schema for a DxComponent
10
10
  */
11
- export type DxComponentInputSchema = DxComponentInputSchema1 & DxComponentInputSchema2;
12
- export type DxComponentInputSchema1 = CoreSchemaMetaSchema;
11
+ export type DxComponentInputSchema = CoreSchemaMetaSchema & {
12
+ type?: 'object';
13
+ additionalProperties?: boolean;
14
+ [k: string]: unknown;
15
+ };
13
16
  export type CoreSchemaMetaSchema = CoreSchemaMetaSchema1 & CoreSchemaMetaSchema2;
14
17
  export type CoreSchemaMetaSchema2 =
15
18
  | {
@@ -2539,11 +2542,6 @@ export interface CoreSchemaMetaSchema1 {
2539
2542
  oneOf?: SchemaArray;
2540
2543
  not?: CoreSchemaMetaSchema2;
2541
2544
  }
2542
- export interface DxComponentInputSchema2 {
2543
- type?: 'object';
2544
- additionalProperties?: boolean;
2545
- [k: string]: unknown;
2546
- }
2547
2545
  /**
2548
2546
  * The HtmlResponse type is for returning html content. The response out of the function must be a string. This response object also includes references to resources (staticFiles) the component needs to execute correctly. It is up to the integrating system to respect this.
2549
2547
  */
package/tsconfig.json CHANGED
@@ -6,7 +6,8 @@
6
6
  "resolveJsonModule": true,
7
7
  "composite": true,
8
8
  "rootDir": "./src",
9
- "sourceMap": true
9
+ "sourceMap": true,
10
+ "types": ["jest", "node"]
10
11
  },
11
12
 
12
13
  "references": [],
@@ -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.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.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.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.esnext.intl.d.ts","./node_modules/typescript/lib/lib.es2019.full.d.ts","./node_modules/uri-js/dist/es5/uri.all.d.ts","./node_modules/ajv/dist/compile/codegen/code.d.ts","./node_modules/ajv/dist/compile/codegen/scope.d.ts","./node_modules/ajv/dist/compile/codegen/index.d.ts","./node_modules/ajv/dist/compile/rules.d.ts","./node_modules/ajv/dist/compile/util.d.ts","./node_modules/ajv/dist/compile/validate/subschema.d.ts","./node_modules/ajv/dist/compile/errors.d.ts","./node_modules/ajv/dist/compile/validate/index.d.ts","./node_modules/ajv/dist/compile/validate/dataType.d.ts","./node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","./node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","./node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","./node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","./node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","./node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","./node_modules/ajv/dist/vocabularies/applicator/not.d.ts","./node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","./node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","./node_modules/ajv/dist/vocabularies/applicator/if.d.ts","./node_modules/ajv/dist/vocabularies/applicator/index.d.ts","./node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","./node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","./node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","./node_modules/ajv/dist/vocabularies/validation/required.d.ts","./node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","./node_modules/ajv/dist/vocabularies/validation/const.d.ts","./node_modules/ajv/dist/vocabularies/validation/enum.d.ts","./node_modules/ajv/dist/vocabularies/validation/index.d.ts","./node_modules/ajv/dist/vocabularies/format/format.d.ts","./node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","./node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","./node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","./node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","./node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","./node_modules/ajv/dist/vocabularies/errors.d.ts","./node_modules/ajv/dist/types/json-schema.d.ts","./node_modules/ajv/dist/types/jtd-schema.d.ts","./node_modules/ajv/dist/runtime/validation_error.d.ts","./node_modules/ajv/dist/compile/ref_error.d.ts","./node_modules/ajv/dist/core.d.ts","./node_modules/ajv/dist/compile/resolve.d.ts","./node_modules/ajv/dist/compile/index.d.ts","./node_modules/ajv/dist/types/index.d.ts","./node_modules/ajv/dist/ajv.d.ts","./node_modules/ajv-formats/dist/formats.d.ts","./node_modules/ajv-formats/dist/limit.d.ts","./node_modules/ajv-formats/dist/index.d.ts","./node_modules/better-ajv-errors/typings.d.ts","./src/manifest/v1/DxComponentInputSchema.json","./src/manifest/v1/DxComponentIcons.json","./src/manifest/v1/DxContentMetaSchema.json","./src/manifest/v1/v1.json","./src/errors/SchemaValidationError.ts","./src/JsonValidationService.ts","./src/manifest/v1/__test__/schemas/validComponent.json","./src/JsonValidationService.spec.ts","./src/manifest/v1/v1.ts","./src/manifest/v1/manifestModels.ts","./src/manifest/v1/manifestSchemas.ts","./src/formatted-text/v1/formattedText.ts","./src/formatted-text/v1/formattedTextModels.ts","./src/formatted-text/v1/formattedText.json","./src/formatted-text/v1/formattedTextSchemas.ts","./src/manifest/v1/subSchemas.ts","./src/index.ts","./src/manifest/v1/DxComponentInputSchema.spec.ts","./src/manifest/v1/v1.spec.ts","./src/manifest/v1/__test__/schemas/badFunctionInputComponent.json","./src/manifest/v1/__test__/schemas/badNestedFunctionInput.json","./src/manifest/v1/__test__/schemas/nonObjectFunctionInputComponent.json","./node_modules/@jest/expect-utils/build/index.d.ts","./node_modules/chalk/index.d.ts","./node_modules/@sinclair/typebox/typebox.d.ts","./node_modules/@jest/schemas/build/index.d.ts","./node_modules/pretty-format/build/index.d.ts","./node_modules/jest-diff/build/index.d.ts","./node_modules/jest-matcher-utils/build/index.d.ts","./node_modules/expect/build/index.d.ts","./node_modules/@types/jest/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.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/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/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/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"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","44a8d350600656882fd7462774e32e8d13788313ba2e36d2e8d5437ac91b98df","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b8870b5155d11a273c75718a4f19026da49f91c548703858cd3400d06c3bd3b8","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","8d26ae32e5c9c080e44aee4a67e5ef02b5fda0604e6fecbb7b753c537e5282d9","05c4e792dae38912ba333725cdf8c42d242337d006c0d887f4ce5a7787871a95","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","d3d0d11d30c9878ada3356b9c36a2754b8c7b6204a41c86bfb1488c08ce263b0","a6493f1f479637ed89a3ebec03f6dc117e3b1851d7e938ac4c8501396b8639a8","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9d00e3a59eff68fa8c40e89953083eeaad1c5b2580ed7da2304424b249ecb237","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","4430dea494b0ee77bf823d9a7c4850a539e1060d5d865316bb23fb393e4f01d7","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","66e655f7c43558bae6703242cbd6c0551a94d0a97204bd4c4bbf7e77f24d1f85","72f7b32e023814078046c036ed4b7ad92414be0aebb63e805c682e14103ae38a","a89d8e67966d085ff971c9900cfa1abdd9732bab66d9c1914ecc15befdf8623d","0fb8624f1f056f55f1a1a06411f5006930eaeacae23a2025b847ea4169e5e4ea","608eb9d411ac76e93a10e05f8aae92b3a5cefc87594219b737df7c8737ba2bd7","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","93ba4ac36f570c70a12d588e21c10dda9f351fad3e77d416952acddb27bff01d","8750f9dc1e277ffff7446c95571bae61aca0984e8f99e40fc1e8cb7161ae0642","66408d81ba8962282b1a55da34c6bd767105141f54d0ba14dca330efe0c8f552","7481b9d93ca44eb1f689e0b939545ff00dead7bdb9daba401dfb74292d83f831","1a81526753a454468403c6473b7504c297bd4ee9aa8557f4ebf4092db7712fde","18992725cbd51b0846132ec46237bc7de4da1db440deb66a6242e2de8715dcfb","44f29187cfbc7aa4a6109204c8e5186509abc3b78874a2ee1498c51ab50f0f62","19ab78c1376c16e18c5b87dfa750813c935f0c4ce1d6ef88058ec38f9cf5ef08","75cf4ad42e6028796dfc8602566e7a3893a8c7445484ae29fdb5d1ba41edeac3","5e6199ec893a10e18ae205d1677ef1e948cd7522c06593845092a8d3ca6ac6fe","977878c27e5b764f2ff69842219d51e56ef95393444052eb1c47bf5a45e9c528","9db857c42420a19dc73db374a06c552d9fa82873b9d5d46d66df83cca27640a2","ab06bafc061bf97a4d71582652fd255386dc73ad5a617f3df731e92608cb8a83",{"version":"f521d19ffb64ebeb3b98d4f3578efdfaa3b850a14aabfeb7b38a66db887a6a08","signature":"eb37cae77829e1eed29efd7c19b8277e9e564608466f4f3b396b56ed565eb75a"},{"version":"ae68df0c08c03b94717861eeab34145191acbb3193f6f78f95098fb72751e802","signature":"ffa30c5894438b647510ff377700166b89657f894bdca0dbed973dc6c5c3dee7"},"644b80d1f9462cc7fd530312ecf8f52c50f906cc7bb5382bc47617ac6ae65183",{"version":"20f6e20d55f692648a3fd9b92a51b152a19ba3941ab576707359c3d386f941d0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"22ac2278bf820a5a921e2204776a2effe373854ef24b13c4aed5e9117e834fa4","signature":"2e33835484b25c47f1cd5afd596b16d77ab5b8bcc43626362891898a9f03ebba"},"49845efff6f2735906a5dc8f6a8ea205118a7e7a0b04b5d1ab681b3c93709fd4",{"version":"04a5d44f26c4e61c59e8cd87a6fd183062aebec9de57b9c6072cd4422072dc3f","signature":"d8e1b7b74a6512d4e1c2c373b93d85f49e6b1627acf893e68289e40f93e5cf20"},{"version":"4997857bccede00308acbaf90c75a1a64d28b0c4136e18cef33a80c51736bac5","signature":"f9b994a6d69958e1075ef382168b21d725f90c8414028e72921c7b7ae14bb675"},"3d281067e486b0d8cd6b37921b826fca714ead972a8d15b4fd284f109fe5d8a1","31e8461393757645220497ddd224236bf0b1a9c21a4782884db24bcfbaa0d0f8",{"version":"eff6398eed90c632c579b19e3470bf3351311711883c59a17c2304b7e26887fb","signature":"a7aa17d3e62726a9643aad42d0e1e8ceb7d902942ad0658896c2c5db1f3b88bd"},{"version":"99a4027658509893e27f4df342e83c5a9d821d6920e1ba8f0bf5fe914bcbd5a0","signature":"c93af3685f1f8db83cbbdcccf6870892da402271e4c81fb958098d5e5c10eef2"},{"version":"844bd7e6e9f33644077272379fe711bf9dce28148b6fd09173550231d78c7a8f","signature":"39a334a35b770032228c2ab5f44063d5739f6a1fab881655900bbe53aa524c77"},{"version":"b9d4ebb12ce355d0b6207fe9047d94591d0f80017ef73c723f3c8d0a8a1fcf01","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d05b9dc25a60b4aa97635aea372312ebae0bcfc44f28d4cbd44b573d9a9f0819","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"9ffeddce6eb8da6b0e2072e610d5d99156b1ad278298cdeebb5eaa878375418e","a613ebb28ccf38d6beeec01cf45f63eaa104dd998f5fb10f53c79d7230b93458","2ce32cfd5c913b2bf7886c47b07eee939a88752a3176a4cc9d8c5ba7601e8092","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","918a76828d88a73924bb26fef58040a6eb8a9adb7e407ea7264175520dda9450","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[170],[120,170],[122,125,170],[127,170],[130,170],[131,136,170],[132,142,143,150,159,169,170],[132,133,142,150,170],[134,170],[135,136,143,151,170],[136,159,166,170],[137,139,142,150,170],[138,170],[139,140,170],[141,142,170],[142,170],[142,143,144,159,169,170],[142,143,144,159,170],[145,150,159,169,170],[142,143,145,146,150,159,166,169,170],[145,147,159,166,169,170],[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],[142,148,170],[149,169,170],[139,142,150,159,170],[151,170],[152,170],[130,153,170],[154,168,170,174],[155,170],[156,170],[142,157,170],[157,158,170,172],[142,159,160,161,170],[159,161,170],[159,160,170],[162,170],[163,170],[142,164,165,170],[164,165,170],[136,150,159,166,170],[167,170],[150,168,170],[131,145,156,169,170],[136,170],[159,170,171],[170,172],[170,173],[131,136,142,144,153,159,169,170,172,174],[159,170,175],[91,170],[91,92,93,170],[50,51,55,82,83,85,86,87,89,90,170],[48,49,170],[48,170],[50,90,170],[50,51,87,88,90,170],[90,170],[47,90,91,170],[50,51,89,90,170],[50,51,53,54,89,90,170],[50,51,52,89,90,170],[50,51,55,82,83,84,85,86,89,90,170],[47,50,51,55,87,89,170],[55,90,170],[57,58,59,60,61,62,63,64,65,66,90,170],[80,90,170],[56,67,75,76,77,78,79,81,170],[60,90,170],[68,69,70,71,72,73,74,90,170],[118,124,170],[122,170],[119,123,170],[121,170],[100,101,102,170],[91,94,95,96,97,98,99,100,170],[95,170],[107,170],[109,170],[100,101,105,106,108,110,111,170],[101,170],[104,170],[99,170],[96,97,98,170],[100,101,144,152,170],[91],[95],[109],[100,101,105,106,108,110,111],[99],[96,97,98]],"referencedMap":[[118,1],[121,2],[120,1],[126,3],[127,4],[128,4],[130,5],[131,6],[132,7],[133,8],[134,9],[135,10],[136,11],[137,12],[138,13],[139,14],[140,14],[141,15],[142,16],[143,17],[144,18],[129,1],[176,1],[145,19],[146,20],[147,21],[177,22],[148,23],[149,24],[150,25],[151,26],[152,27],[153,28],[154,29],[155,30],[156,31],[157,32],[158,33],[159,34],[161,35],[160,36],[162,37],[163,38],[164,39],[165,40],[166,41],[167,42],[168,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,50],[92,51],[94,52],[93,51],[91,53],[48,1],[50,54],[49,55],[54,56],[89,57],[86,58],[88,59],[51,58],[52,60],[56,60],[55,61],[53,62],[87,63],[85,58],[90,64],[83,1],[84,1],[57,65],[62,58],[64,58],[59,58],[60,65],[66,58],[67,66],[58,58],[63,58],[65,58],[61,58],[81,67],[80,58],[82,68],[76,58],[78,58],[77,58],[73,58],[79,69],[74,58],[75,70],[68,58],[69,58],[70,58],[71,58],[72,58],[95,51],[119,1],[125,71],[123,72],[124,73],[122,74],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,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],[46,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],[1,1],[45,1],[11,1],[10,1],[47,1],[103,75],[101,76],[100,77],[109,1],[107,1],[108,78],[110,79],[112,80],[97,1],[96,1],[113,81],[98,1],[115,1],[116,1],[117,1],[102,1],[105,82],[106,83],[111,84],[99,1],[114,85],[104,1]],"exportedModulesMap":[[118,1],[121,2],[120,1],[126,3],[127,4],[128,4],[130,5],[131,6],[132,7],[133,8],[134,9],[135,10],[136,11],[137,12],[138,13],[139,14],[140,14],[141,15],[142,16],[143,17],[144,18],[129,1],[176,1],[145,19],[146,20],[147,21],[177,22],[148,23],[149,24],[150,25],[151,26],[152,27],[153,28],[154,29],[155,30],[156,31],[157,32],[158,33],[159,34],[161,35],[160,36],[162,37],[163,38],[164,39],[165,40],[166,41],[167,42],[168,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,50],[92,51],[94,52],[93,51],[91,53],[48,1],[50,54],[49,55],[54,56],[89,57],[86,58],[88,59],[51,58],[52,60],[56,60],[55,61],[53,62],[87,63],[85,58],[90,64],[83,1],[84,1],[57,65],[62,58],[64,58],[59,58],[60,65],[66,58],[67,66],[58,58],[63,58],[65,58],[61,58],[81,67],[80,58],[82,68],[76,58],[78,58],[77,58],[73,58],[79,69],[74,58],[75,70],[68,58],[69,58],[70,58],[71,58],[72,58],[95,51],[119,1],[125,71],[123,72],[124,73],[122,74],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,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],[46,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],[1,1],[45,1],[11,1],[10,1],[47,1],[101,86],[100,87],[109,1],[108,78],[110,88],[112,89],[97,1],[96,1],[98,1],[115,1],[116,1],[117,1],[102,1],[105,82],[106,90],[111,91],[99,1]],"semanticDiagnosticsPerFile":[118,121,120,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,176,145,146,147,177,148,149,150,151,152,153,154,155,156,157,158,159,161,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,92,94,93,91,48,50,49,54,89,86,88,51,52,56,55,53,87,85,90,83,84,57,62,64,59,60,66,67,58,63,65,61,81,80,82,76,78,77,73,79,74,75,68,69,70,71,72,95,119,125,123,124,122,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,46,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,47,103,101,100,109,107,108,110,112,97,96,113,98,115,116,117,102,105,106,111,99,114,104],"latestChangedDtsFile":"./lib/manifest/v1/v1.spec.d.ts"},"version":"4.9.3"}
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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.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.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.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.d.ts","./src/manifest/v1/DxComponentInputSchema.json","./src/manifest/v1/DxComponentIcons.json","./src/manifest/v1/DxContentMetaSchema.json","./src/manifest/v1/Draft-07.json","./src/formatted-text/v1/formattedText.json","./src/manifest/v1/v1.json","../../node_modules/ajv/lib/ajv.d.ts","../../node_modules/better-ajv-errors/typings.d.ts","./src/errors/SchemaValidationError.ts","../../node_modules/json-schema-library/dist/lib/step.d.ts","../../node_modules/json-schema-library/dist/lib/validate.d.ts","../../node_modules/json-schema-library/dist/lib/resolveOneOf.strict.d.ts","../../node_modules/json-schema-library/dist/lib/resolveRef.strict.d.ts","../../node_modules/json-schema-library/dist/lib/resolveAllOf.d.ts","../../node_modules/json-schema-library/dist/lib/resolveAnyOf.d.ts","../../node_modules/json-schema-library/dist/lib/getTemplate.d.ts","../../node_modules/json-schema-library/dist/lib/getChildSchemaSelection.d.ts","../../node_modules/json-schema-library/dist/lib/getSchema.d.ts","../../node_modules/json-schema-library/dist/lib/each.d.ts","../../node_modules/json-schema-library/dist/lib/isValid.d.ts","../../node_modules/json-schema-library/dist/lib/eachSchema.d.ts","../../node_modules/json-schema-library/dist/lib/createSchemaOf.d.ts","../../node_modules/json-schema-library/dist/lib/compile/index.d.ts","../../node_modules/json-schema-library/dist/lib/compileSchema.d.ts","../../node_modules/json-schema-library/dist/lib/addRemoteSchema.d.ts","../../node_modules/json-schema-library/dist/lib/draft/index.d.ts","../../node_modules/json-schema-library/dist/lib/types.d.ts","../../node_modules/json-schema-library/dist/lib/utils/createCustomError.d.ts","../../node_modules/json-schema-library/dist/lib/getTypeOf.d.ts","../../node_modules/json-schema-library/dist/lib/resolveOneOf.fuzzy.d.ts","../../node_modules/json-schema-library/dist/lib/resolveRef.merge.d.ts","../../node_modules/json-schema-library/dist/lib/jsoneditor/index.d.ts","../../node_modules/json-schema-library/dist/lib/SchemaService.d.ts","../../node_modules/json-schema-library/dist/lib/config/settings.d.ts","../../node_modules/json-schema-library/dist/lib/validateAsync.d.ts","../../node_modules/json-schema-library/dist/lib/utils/render.d.ts","../../node_modules/json-schema-library/dist/lib/draft04/index.d.ts","../../node_modules/json-schema-library/dist/lib/draft06/index.d.ts","../../node_modules/json-schema-library/dist/lib/draft07/index.d.ts","../../node_modules/json-schema-library/dist/index.d.ts","./src/manifest/v1/v1.ts","./src/manifest/v1/manifestModels.ts","./src/manifest/v1/manifestSchemas.ts","./src/formatted-text/v1/formattedText.ts","./src/formatted-text/v1/formattedTextModels.ts","./src/formatted-text/v1/formattedTextSchemas.ts","./src/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.ts","./src/manifest/v1/subSchemas.ts","./src/index.ts","./src/JsonValidationService.ts","./src/manifest/v1/__test__/schemas/validComponent.json","./src/manifest/v1/__test__/schemas/validComponentJson.json","./src/JsonValidationService.spec.ts","./src/formatted-text/v1/higherOrderFormattedTextToBaseFormattedText.spec.ts","./src/manifest/v1/DxComponentInputSchema.spec.ts","./src/manifest/v1/v1.spec.ts","./src/manifest/v1/__test__/schemas/badFunctionInputComponent.json","./src/manifest/v1/__test__/schemas/badNestedFunctionInput.json","./src/manifest/v1/__test__/schemas/nonObjectFunctionInputComponent.json","../../node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.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/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/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/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"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","d56d096f009561a724ce60f75390a3b45f05f268e719b6c99936b21746d967fd","977878c27e5b764f2ff69842219d51e56ef95393444052eb1c47bf5a45e9c528","9db857c42420a19dc73db374a06c552d9fa82873b9d5d46d66df83cca27640a2","561ca644d941d3e58cd59645efefbf845827c6cf647a6a4cf25ce7774fbd7864","7133de86c684c70e150f4ff6162bada29137a679cd74242b9a8f2e2f6f285728","ab06bafc061bf97a4d71582652fd255386dc73ad5a617f3df731e92608cb8a83","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","75cf4ad42e6028796dfc8602566e7a3893a8c7445484ae29fdb5d1ba41edeac3",{"version":"765a2f79715a6cb8ad9a68ba12c662d60478dc4c5a83ca5e7318fe49512c340a","signature":"9396896a411d8204d8046a81291dc0931e6f08d807c9a6a845ede90b39c2ffd8"},"4c7311cb9548d88b2d514d9882865cfeb91a86d8200763141434d12041e1266e","b8df1e322d33912c71404ccebd30fe19e7bf4761aa538482f9c352f596ff3791","b0c02f5265344f39ad399efb769d04adc61bd2d731a89546c6ac1dd13402882f","068d586667afde115e25440a009c19b6847570b40ac8aabfbc179fcbfe8bf506","39f4754191feee4a82ae8c6f358801d498826bc39782aa71ab8a22e0acd69bfb","93550869fe38dbbbbebd70566fb25d0f412e145eda5ef1e306555aab88f7e746","34ef5e31febc088ea29fff60b9ce63c6f93b427f16be96b5fc54fa2365efd4b4","509f89bbeb74491d210f6a1667a77476ef0065ae0a356039c695bcffac416085","099151d9a5269199a9056e0c237e11a0914bf4d1c5dfa74b047ad51dcfc29f2f","72454c6f36beaddf243a2300b8117c8cdcee40c7ded3ec1102294b281c638c0e","a16e63b2b46bb255554fd37add8635dba51bce4994418dc59e3fdc1cae1842f4","da3a35a812ff5951746e1951f8a15c412dcb38232b82609921b7b8339b72a2a1","24d86f36e3b15397f3d6de1e7a0418acb6a24b81d76a5d010b68bc3f9f39c335","c40fa1d33437d63704e9b6adcdeb777bc9f935c7fb99d8f9b1ef8da749d8c4f3","295c3d2ae8dc914f976382303561add84c237693303753a68c159d322a7c318a","a4f6e7947555e8404ee1a9a7da66f1c099b9c803797294960cdacae0b2d373f4","736ecb548e79b950e0cc025aaed5b7c9199b4a37b4fa44fdb136f12af52006bc","71ae34007e09dda0671692e094de88d52c8c5e61c22db466268d99494a121fe3","a1202f82dbd5d9810328ba5540dc679df111f08e2f8e65b6b0433095cc92247b","674e7039e020b9080b69081e0ed9da2bb28ad20e43bef57a19f74d3ad759369c","8c61f80006532ac74d63b31857b8a0805ca3525f251e948bcd353c4a06b3ce56","6aa51c3925b80dd867ffb433985ab02b84cec947c0ace5481dcfbaa5b327d85e","370c06384b4972e973a1bd4ca68ecfd5d3d4b5dd4c6779d72a05e3bdf3c883c1","7cd4af1e9de8de9f374e3aede01fed7f7b672a288e79f44ad5a6abfa039209f7","bfe0f62462a8931ec56b40ed78a624d610af7cfd0a5ad0f0e3c0a0c8829bf290","1271808fc3d34cbb76c4476245dfa00daa422ec0bb5a3a082af3f715b7a972bf","b084a929ac328c408701c387b1290eb0a8fb5836f62d11cbc590ccbcdb3c8663","7ec575d98458f81e00984975395311d4b6b05dbe0b94fb8ee6667bf1c19b9556","04f7fd3054a9f996ae2c16f3267975cc4772c57af534d67aa6803fc7e5d16378","1faef1a6c17f7568bb9a352f34cb984ba6a60b24e737f6bbb71afc852d83fdc7","3a1f387ba73588586704b6c30f708a78961d84c6b856a497f6d79fcba573d3c0",{"version":"8c8105bf4e3269488af88e0802133b022bfe023804eee578bd5630f4e47daa3e","signature":"ac3bb357cb869703dfc9d16f3baec86847175471109dcc1625376ffe723601e5"},"49845efff6f2735906a5dc8f6a8ea205118a7e7a0b04b5d1ab681b3c93709fd4",{"version":"04a5d44f26c4e61c59e8cd87a6fd183062aebec9de57b9c6072cd4422072dc3f","signature":"d8e1b7b74a6512d4e1c2c373b93d85f49e6b1627acf893e68289e40f93e5cf20"},{"version":"c0e7b228bfd9b52201d6542d691174f5e03c8960ab11887e80b42044e0309d68","signature":"96b610cbad396c4a27f75aa30f59dd7a00866cf63334677cda5ee875ef909ed5"},"3d281067e486b0d8cd6b37921b826fca714ead972a8d15b4fd284f109fe5d8a1",{"version":"eff6398eed90c632c579b19e3470bf3351311711883c59a17c2304b7e26887fb","signature":"a7aa17d3e62726a9643aad42d0e1e8ceb7d902942ad0658896c2c5db1f3b88bd"},{"version":"8f01a9776f8b982fbe75e3b4b5c35728b6ab7fd9b0cb2df9186cc105c618b5a1","signature":"09245c4eabaa6ecdb56fcf441c6bae4abaffb4d6aa54349ef3001049a7efc63f"},{"version":"99a4027658509893e27f4df342e83c5a9d821d6920e1ba8f0bf5fe914bcbd5a0","signature":"c93af3685f1f8db83cbbdcccf6870892da402271e4c81fb958098d5e5c10eef2"},{"version":"face79c871a94c9214cc94a6174b8306050b3518d078b4c69d54acce9accd7a8","signature":"3a5fb0a90f97a114372c32660562c25610eb4ca9f277b65997d4469044d37587"},{"version":"91f5585f11490d1f059a6d603a30ad66b1db1fe8d357aea0d72948d0c8019ddb","signature":"5763df6fc624d42bb70a1c02ae5f53c84b98b656253e537aeee6d5fcc3a728d8"},"644b80d1f9462cc7fd530312ecf8f52c50f906cc7bb5382bc47617ac6ae65183","68a1db1021b307ce7650b44e9a44cef40a6c120f6e714bf12f547ad50b6506b4",{"version":"72b065a0035a93cb87cc983e88c859b35eb295a0d40835bf4555d5a81736cf09","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"113d82639c7a13ae6f69ee3a3fe5c0f0dec6b85d216c6550da863e185ffb193e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e78ed970261a6de83ca2b38b1e35fb569591d926c44e06847d90c7fbfc5eb662","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"fe0561937121eeabcc226031a5e636ce3e1b2d5930821ef848187dda10b5ec5c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"51ee820f71c328f7a7d11885397c8a90bf8221dc74da209cf6cc58130534539b","675c493f58a200ace97e3c52dcd9a5d6e2ae18bcc7f369bb67eef96f34aa3eeb","a03da7e60d55d09cbeeea4dd90ca137db53a95efe4553f2ae21e88b72db0dc1c","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","918a76828d88a73924bb26fef58040a6eb8a9adb7e407ea7264175520dda9450","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[158],[108,158],[110,113,158],[53,158],[106,112,158],[110,158],[107,111,158],[58,59,60,65,67,72,73,74,75,76,77,78,79,80,81,82,83,84,85,158],[73,78,158],[72,73,158],[69,158],[73,158],[56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,73,74,158],[72,158],[109,158],[115,158],[118,158],[119,124,158],[120,130,131,138,147,157,158],[120,121,130,138,158],[122,158],[123,124,131,139,158],[124,147,154,158],[125,127,130,138,158],[126,158],[127,128,158],[129,130,158],[130,158],[130,131,132,147,157,158],[130,131,132,147,158],[133,138,147,157,158],[130,131,133,134,138,147,154,157,158],[133,135,147,154,157,158],[115,116,117,118,119,120,121,122,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],[130,136,158],[137,157,158],[127,130,138,147,158],[139,158],[140,158],[118,141,158],[142,156,158,162],[143,158],[144,158],[130,145,158],[145,146,158,160],[130,147,148,149,158],[147,149,158],[147,148,158],[150,158],[151,158],[130,152,153,158],[152,153,158],[124,138,147,154,158],[155,158],[138,156,158],[119,133,144,157,158],[124,158],[147,158,159],[158,160],[158,161],[119,124,130,132,141,147,157,158,160,162],[147,158,163],[55,90,96,97,98,158],[47,48,49,50,51,52,55,86,95,158],[54,158],[90,158],[51,158],[90,93,158],[55,88,89,91,92,93,94,96,158],[55,96,158],[87,158],[52,158],[47,48,49,158],[55,96,132,140,158],[86],[54],[51],[90],[55,88,89,91,92,93,94,96],[52],[47,48,49]],"referencedMap":[[106,1],[109,2],[108,1],[114,3],[53,1],[54,4],[107,1],[113,5],[111,6],[112,7],[86,8],[79,9],[71,10],[69,10],[70,11],[80,1],[68,12],[72,13],[83,10],[84,10],[85,10],[65,10],[67,12],[63,10],[64,10],[62,10],[75,1],[66,10],[78,10],[60,10],[61,10],[76,10],[58,10],[77,12],[59,12],[56,10],[73,14],[74,12],[82,1],[57,10],[81,10],[110,15],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,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],[46,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],[1,1],[45,1],[11,1],[10,1],[115,16],[116,16],[118,17],[119,18],[120,19],[121,20],[122,21],[123,22],[124,23],[125,24],[126,25],[127,26],[128,26],[129,27],[130,28],[131,29],[132,30],[117,1],[164,1],[133,31],[134,32],[135,33],[165,34],[136,35],[137,36],[138,37],[139,38],[140,39],[141,40],[142,41],[143,42],[144,43],[145,44],[146,45],[147,46],[149,47],[148,48],[150,49],[151,50],[152,51],[153,52],[154,53],[155,54],[156,55],[157,56],[158,57],[159,58],[160,59],[161,60],[162,61],[163,62],[99,63],[96,64],[55,65],[51,1],[90,1],[91,66],[92,67],[100,68],[93,66],[95,69],[50,1],[48,1],[47,1],[101,70],[49,1],[103,1],[104,1],[105,1],[97,1],[98,1],[88,71],[89,72],[94,73],[52,1],[102,74],[87,1]],"exportedModulesMap":[[106,1],[109,2],[108,1],[114,3],[53,1],[54,4],[107,1],[113,5],[111,6],[112,7],[86,8],[79,9],[71,10],[69,10],[70,11],[80,1],[68,12],[72,13],[83,10],[84,10],[85,10],[65,10],[67,12],[63,10],[64,10],[62,10],[75,1],[66,10],[78,10],[60,10],[61,10],[76,10],[58,10],[77,12],[59,12],[56,10],[73,14],[74,12],[82,1],[57,10],[81,10],[110,15],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,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],[46,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],[1,1],[45,1],[11,1],[10,1],[115,16],[116,16],[118,17],[119,18],[120,19],[121,20],[122,21],[123,22],[124,23],[125,24],[126,25],[127,26],[128,26],[129,27],[130,28],[131,29],[132,30],[117,1],[164,1],[133,31],[134,32],[135,33],[165,34],[136,35],[137,36],[138,37],[139,38],[140,39],[141,40],[142,41],[143,42],[144,43],[145,44],[146,45],[147,46],[149,47],[148,48],[150,49],[151,50],[152,51],[153,52],[154,53],[155,54],[156,55],[157,56],[158,57],[159,58],[160,59],[161,60],[162,61],[163,62],[96,75],[55,76],[51,1],[91,66],[92,77],[93,78],[95,79],[50,1],[48,1],[47,1],[49,1],[103,1],[104,1],[105,1],[97,1],[98,1],[88,71],[89,80],[94,81],[52,1]],"semanticDiagnosticsPerFile":[106,109,108,114,53,54,107,113,111,112,86,79,71,69,70,80,68,72,83,84,85,65,67,63,64,62,75,66,78,60,61,76,58,77,59,56,73,74,82,57,81,110,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,46,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,117,164,133,134,135,165,136,137,138,139,140,141,142,143,144,145,146,147,149,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,99,96,55,51,90,91,92,100,93,95,50,48,47,101,49,103,104,105,97,98,88,89,94,52,102,87],"latestChangedDtsFile":"./lib/manifest/v1/v1.spec.d.ts"},"version":"4.9.3"}