@fluid-experimental/property-changeset 2.0.0-internal.3.0.5 → 2.0.0-internal.3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. package/README.md +1 -0
  2. package/dist/changeset.d.ts +2 -2
  3. package/dist/changeset.d.ts.map +1 -1
  4. package/dist/changeset.js +61 -45
  5. package/dist/changeset.js.map +1 -1
  6. package/dist/changeset_operations/array.d.ts +6 -6
  7. package/dist/changeset_operations/array.d.ts.map +1 -1
  8. package/dist/changeset_operations/array.js +87 -56
  9. package/dist/changeset_operations/array.js.map +1 -1
  10. package/dist/changeset_operations/arrayChangesetIterator.d.ts.map +1 -1
  11. package/dist/changeset_operations/arrayChangesetIterator.js +43 -41
  12. package/dist/changeset_operations/arrayChangesetIterator.js.map +1 -1
  13. package/dist/changeset_operations/changesetConflictTypes.d.ts.map +1 -1
  14. package/dist/changeset_operations/changesetConflictTypes.js.map +1 -1
  15. package/dist/changeset_operations/indexedCollection.d.ts.map +1 -1
  16. package/dist/changeset_operations/indexedCollection.js +76 -44
  17. package/dist/changeset_operations/indexedCollection.js.map +1 -1
  18. package/dist/changeset_operations/isEmptyChangeset.d.ts.map +1 -1
  19. package/dist/changeset_operations/isEmptyChangeset.js +2 -1
  20. package/dist/changeset_operations/isEmptyChangeset.js.map +1 -1
  21. package/dist/changeset_operations/operationTypes.d.ts.map +1 -1
  22. package/dist/changeset_operations/operationTypes.js.map +1 -1
  23. package/dist/helpers/typeidHelper.d.ts +10 -10
  24. package/dist/helpers/typeidHelper.d.ts.map +1 -1
  25. package/dist/helpers/typeidHelper.js +19 -17
  26. package/dist/helpers/typeidHelper.js.map +1 -1
  27. package/dist/index.d.ts.map +1 -1
  28. package/dist/index.js.map +1 -1
  29. package/dist/isReservedKeyword.d.ts.map +1 -1
  30. package/dist/isReservedKeyword.js.map +1 -1
  31. package/dist/pathHelper.d.ts.map +1 -1
  32. package/dist/pathHelper.js +16 -10
  33. package/dist/pathHelper.js.map +1 -1
  34. package/dist/rebase.d.ts.map +1 -1
  35. package/dist/rebase.js +20 -13
  36. package/dist/rebase.js.map +1 -1
  37. package/dist/templateSchema.d.ts.map +1 -1
  38. package/dist/templateSchema.js +10 -11
  39. package/dist/templateSchema.js.map +1 -1
  40. package/dist/templateValidator.d.ts.map +1 -1
  41. package/dist/templateValidator.js +135 -102
  42. package/dist/templateValidator.js.map +1 -1
  43. package/dist/test/array.spec.js +141 -343
  44. package/dist/test/array.spec.js.map +1 -1
  45. package/dist/test/pathHelper.spec.js +299 -166
  46. package/dist/test/pathHelper.spec.js.map +1 -1
  47. package/dist/test/reversibleCs.spec.js.map +1 -1
  48. package/dist/test/schemaValidator.js +3 -1
  49. package/dist/test/schemaValidator.js.map +1 -1
  50. package/dist/test/schemas/badBothPropertiesAndTypeid.js +8 -8
  51. package/dist/test/schemas/badBothPropertiesAndTypeid.js.map +1 -1
  52. package/dist/test/schemas/badInvalidSemverInTypeid.js +18 -16
  53. package/dist/test/schemas/badInvalidSemverInTypeid.js.map +1 -1
  54. package/dist/test/schemas/badMissingSemverInTypeid.js +18 -16
  55. package/dist/test/schemas/badMissingSemverInTypeid.js.map +1 -1
  56. package/dist/test/schemas/badNestedProperties.js +18 -17
  57. package/dist/test/schemas/badNestedProperties.js.map +1 -1
  58. package/dist/test/schemas/badPrimitiveTypeid.js +9 -8
  59. package/dist/test/schemas/badPrimitiveTypeid.js.map +1 -1
  60. package/dist/test/schemas/badVersionedTypeid.js +19 -17
  61. package/dist/test/schemas/badVersionedTypeid.js.map +1 -1
  62. package/dist/test/schemas/goodColorPalette.js +4 -4
  63. package/dist/test/schemas/goodColorPalette.js.map +1 -1
  64. package/dist/test/schemas/goodDraftAsVersion.js +2 -4
  65. package/dist/test/schemas/goodDraftAsVersion.js.map +1 -1
  66. package/dist/test/schemas/goodPointId.js +18 -16
  67. package/dist/test/schemas/goodPointId.js.map +1 -1
  68. package/dist/test/schemas/goodReferenceAndRegular.js +5 -5
  69. package/dist/test/schemas/goodReferenceAndRegular.js.map +1 -1
  70. package/dist/test/schemas/goodReservedTypes.js +8 -7
  71. package/dist/test/schemas/goodReservedTypes.js.map +1 -1
  72. package/dist/test/schemas/goodUIBorder.js +19 -16
  73. package/dist/test/schemas/goodUIBorder.js.map +1 -1
  74. package/dist/test/tsconfig.tsbuildinfo +1 -1
  75. package/dist/test/validator/templateSyntax.spec.js.map +1 -1
  76. package/dist/test/validator/templateValidator.spec.js +329 -306
  77. package/dist/test/validator/templateValidator.spec.js.map +1 -1
  78. package/dist/test/validator/typeidHelper.spec.js +98 -65
  79. package/dist/test/validator/typeidHelper.spec.js.map +1 -1
  80. package/dist/utils.d.ts +1 -1
  81. package/dist/utils.d.ts.map +1 -1
  82. package/dist/utils.js +149 -95
  83. package/dist/utils.js.map +1 -1
  84. package/dist/validationResultBuilder.d.ts.map +1 -1
  85. package/dist/validationResultBuilder.js.map +1 -1
  86. package/lib/changeset.js +63 -47
  87. package/lib/changeset.js.map +1 -1
  88. package/lib/changeset_operations/array.js +88 -57
  89. package/lib/changeset_operations/array.js.map +1 -1
  90. package/lib/changeset_operations/arrayChangesetIterator.js +43 -41
  91. package/lib/changeset_operations/arrayChangesetIterator.js.map +1 -1
  92. package/lib/changeset_operations/changesetConflictTypes.js.map +1 -1
  93. package/lib/changeset_operations/indexedCollection.js +76 -44
  94. package/lib/changeset_operations/indexedCollection.js.map +1 -1
  95. package/lib/changeset_operations/isEmptyChangeset.js +2 -1
  96. package/lib/changeset_operations/isEmptyChangeset.js.map +1 -1
  97. package/lib/changeset_operations/operationTypes.js.map +1 -1
  98. package/lib/helpers/typeidHelper.js +19 -17
  99. package/lib/helpers/typeidHelper.js.map +1 -1
  100. package/lib/index.js.map +1 -1
  101. package/lib/isReservedKeyword.js.map +1 -1
  102. package/lib/pathHelper.js +17 -11
  103. package/lib/pathHelper.js.map +1 -1
  104. package/lib/rebase.js +20 -13
  105. package/lib/rebase.js.map +1 -1
  106. package/lib/templateSchema.js +10 -11
  107. package/lib/templateSchema.js.map +1 -1
  108. package/lib/templateValidator.js +135 -102
  109. package/lib/templateValidator.js.map +1 -1
  110. package/lib/utils.js +149 -95
  111. package/lib/utils.js.map +1 -1
  112. package/lib/validationResultBuilder.js.map +1 -1
  113. package/package.json +100 -100
@@ -13,35 +13,37 @@
13
13
  * Namespace containing all schema-related data for property set validation
14
14
  */
15
15
  var templateSchema = {
16
- 'properties': [{
17
- 'id': 'position',
18
- 'properties': [{
19
- 'id': 'x',
20
- 'typeid': 'Float32',
16
+ properties: [
17
+ {
18
+ id: "position",
19
+ properties: [
20
+ {
21
+ id: "x",
22
+ typeid: "Float32",
21
23
  },
22
24
  {
23
- 'id': 'y',
24
- 'typeid': 'Float32',
25
+ id: "y",
26
+ typeid: "Float32",
25
27
  },
26
28
  {
27
- 'id': 'z',
28
- 'typeid': 'Float32',
29
+ id: "z",
30
+ typeid: "Float32",
29
31
  },
30
32
  ],
31
33
  },
32
34
  {
33
- 'id': 'color',
34
- 'typeid': 'TeamLeoValidation2:ColorID-1.0.0',
35
+ id: "color",
36
+ typeid: "TeamLeoValidation2:ColorID-1.0.0",
35
37
  },
36
38
  {
37
- 'id': 'normal',
38
- 'typeid': 'Float32',
39
- 'context': 'array',
40
- 'length': 3,
39
+ id: "normal",
40
+ typeid: "Float32",
41
+ context: "array",
42
+ length: 3,
41
43
  },
42
44
  ],
43
- '_comment': 'typeid is missing',
44
- 'typeid': 'Int32',
45
+ _comment: "typeid is missing",
46
+ typeid: "Int32",
45
47
  };
46
48
  module.exports = templateSchema;
47
49
  })();
@@ -1 +1 @@
1
- {"version":3,"file":"badVersionedTypeid.js","sourceRoot":"","sources":["../../../src/test/schemas/badVersionedTypeid.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACG;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACjB,YAAY,EAAE,CAAC;gBACP,IAAI,EAAE,UAAU;gBAChB,YAAY,EAAE,CAAC;wBACP,IAAI,EAAE,GAAG;wBACT,QAAQ,EAAE,SAAS;qBACtB;oBACD;wBACI,IAAI,EAAE,GAAG;wBACT,QAAQ,EAAE,SAAS;qBACtB;oBACD;wBACI,IAAI,EAAE,GAAG;wBACT,QAAQ,EAAE,SAAS;qBACtB;iBACJ;aACJ;YACD;gBACI,IAAI,EAAE,OAAO;gBACb,QAAQ,EAAE,kCAAkC;aAC/C;YACD;gBACI,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,SAAS;gBACnB,SAAS,EAAE,OAAO;gBAClB,QAAQ,EAAE,CAAC;aACd;SACJ;QACD,UAAU,EAAE,mBAAmB;QAC/B,QAAQ,EAAE,OAAO;KACpB,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACpC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function() {\n /**\n * @namespace property-changeset.Test\n * @alias badNestedProperties.js\n * Namespace containing all schema-related data for property set validation\n */\n var templateSchema = {\n 'properties': [{\n 'id': 'position',\n 'properties': [{\n 'id': 'x',\n 'typeid': 'Float32',\n },\n {\n 'id': 'y',\n 'typeid': 'Float32',\n },\n {\n 'id': 'z',\n 'typeid': 'Float32',\n },\n ],\n },\n {\n 'id': 'color',\n 'typeid': 'TeamLeoValidation2:ColorID-1.0.0',\n },\n {\n 'id': 'normal',\n 'typeid': 'Float32',\n 'context': 'array',\n 'length': 3,\n },\n ],\n '_comment': 'typeid is missing',\n 'typeid': 'Int32',\n };\n module.exports = templateSchema;\n})();\n"]}
1
+ {"version":3,"file":"badVersionedTypeid.js","sourceRoot":"","sources":["../../../src/test/schemas/badVersionedTypeid.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACA;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACpB,UAAU,EAAE;YACX;gBACC,EAAE,EAAE,UAAU;gBACd,UAAU,EAAE;oBACX;wBACC,EAAE,EAAE,GAAG;wBACP,MAAM,EAAE,SAAS;qBACjB;oBACD;wBACC,EAAE,EAAE,GAAG;wBACP,MAAM,EAAE,SAAS;qBACjB;oBACD;wBACC,EAAE,EAAE,GAAG;wBACP,MAAM,EAAE,SAAS;qBACjB;iBACD;aACD;YACD;gBACC,EAAE,EAAE,OAAO;gBACX,MAAM,EAAE,kCAAkC;aAC1C;YACD;gBACC,EAAE,EAAE,QAAQ;gBACZ,MAAM,EAAE,SAAS;gBACjB,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,CAAC;aACT;SACD;QACD,QAAQ,EAAE,mBAAmB;QAC7B,MAAM,EAAE,OAAO;KACf,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function () {\n\t/**\n\t * @namespace property-changeset.Test\n\t * @alias badNestedProperties.js\n\t * Namespace containing all schema-related data for property set validation\n\t */\n\tvar templateSchema = {\n\t\tproperties: [\n\t\t\t{\n\t\t\t\tid: \"position\",\n\t\t\t\tproperties: [\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"x\",\n\t\t\t\t\t\ttypeid: \"Float32\",\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"y\",\n\t\t\t\t\t\ttypeid: \"Float32\",\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"z\",\n\t\t\t\t\t\ttypeid: \"Float32\",\n\t\t\t\t\t},\n\t\t\t\t],\n\t\t\t},\n\t\t\t{\n\t\t\t\tid: \"color\",\n\t\t\t\ttypeid: \"TeamLeoValidation2:ColorID-1.0.0\",\n\t\t\t},\n\t\t\t{\n\t\t\t\tid: \"normal\",\n\t\t\t\ttypeid: \"Float32\",\n\t\t\t\tcontext: \"array\",\n\t\t\t\tlength: 3,\n\t\t\t},\n\t\t],\n\t\t_comment: \"typeid is missing\",\n\t\ttypeid: \"Int32\",\n\t};\n\tmodule.exports = templateSchema;\n})();\n"]}
@@ -13,10 +13,10 @@
13
13
  * Namespace containing all schema-related data for property set validation
14
14
  */
15
15
  var templateSchema = {
16
- 'typeid': 'Adsk.Library:Colors.ColorPalette-1.0.0',
17
- 'properties': [
18
- { 'id': 'colors', 'typeid': 'Reference<Adsk.Core:Math.Color-1.0.0>', 'context': 'map' },
19
- { 'id': 'testref', 'typeid': 'Reference', 'context': 'map' },
16
+ typeid: "Adsk.Library:Colors.ColorPalette-1.0.0",
17
+ properties: [
18
+ { id: "colors", typeid: "Reference<Adsk.Core:Math.Color-1.0.0>", context: "map" },
19
+ { id: "testref", typeid: "Reference", context: "map" },
20
20
  ],
21
21
  };
22
22
  module.exports = templateSchema;
@@ -1 +1 @@
1
- {"version":3,"file":"goodColorPalette.js","sourceRoot":"","sources":["../../../src/test/schemas/goodColorPalette.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACG;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACjB,QAAQ,EAAE,wCAAwC;QAClD,YAAY,EAAE;YACV,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,uCAAuC,EAAE,SAAS,EAAE,KAAK,EAAE;YACvF,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,KAAK,EAAE;SAC/D;KACJ,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACpC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function() {\n /**\n * @namespace property-changeset.Test\n * @alias badNestedProperties.js\n * Namespace containing all schema-related data for property set validation\n */\n var templateSchema = {\n 'typeid': 'Adsk.Library:Colors.ColorPalette-1.0.0',\n 'properties': [\n { 'id': 'colors', 'typeid': 'Reference<Adsk.Core:Math.Color-1.0.0>', 'context': 'map' },\n { 'id': 'testref', 'typeid': 'Reference', 'context': 'map' },\n ],\n };\n module.exports = templateSchema;\n})();\n"]}
1
+ {"version":3,"file":"goodColorPalette.js","sourceRoot":"","sources":["../../../src/test/schemas/goodColorPalette.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACA;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACpB,MAAM,EAAE,wCAAwC;QAChD,UAAU,EAAE;YACX,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,uCAAuC,EAAE,OAAO,EAAE,KAAK,EAAE;YACjF,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE;SACtD;KACD,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function () {\n\t/**\n\t * @namespace property-changeset.Test\n\t * @alias badNestedProperties.js\n\t * Namespace containing all schema-related data for property set validation\n\t */\n\tvar templateSchema = {\n\t\ttypeid: \"Adsk.Library:Colors.ColorPalette-1.0.0\",\n\t\tproperties: [\n\t\t\t{ id: \"colors\", typeid: \"Reference<Adsk.Core:Math.Color-1.0.0>\", context: \"map\" },\n\t\t\t{ id: \"testref\", typeid: \"Reference\", context: \"map\" },\n\t\t],\n\t};\n\tmodule.exports = templateSchema;\n})();\n"]}
@@ -13,10 +13,8 @@
13
13
  * Namespace containing all schema-related data for property set validation
14
14
  */
15
15
  var templateSchema = {
16
- 'typeid': 'autodesk:GoodDraftAsVersion-draft',
17
- 'properties': [
18
- { 'id': 'int', 'typeid': 'Int32' },
19
- ],
16
+ typeid: "autodesk:GoodDraftAsVersion-draft",
17
+ properties: [{ id: "int", typeid: "Int32" }],
20
18
  };
21
19
  module.exports = templateSchema;
22
20
  })();
@@ -1 +1 @@
1
- {"version":3,"file":"goodDraftAsVersion.js","sourceRoot":"","sources":["../../../src/test/schemas/goodDraftAsVersion.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACG;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACjB,QAAQ,EAAE,mCAAmC;QAC7C,YAAY,EAAE;YACV,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE;SACrC;KACJ,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACpC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function() {\n /**\n * @namespace property-changeset.Test\n * @alias goodDraftAsVersion.js\n * Namespace containing all schema-related data for property set validation\n */\n var templateSchema = {\n 'typeid': 'autodesk:GoodDraftAsVersion-draft',\n 'properties': [\n { 'id': 'int', 'typeid': 'Int32' },\n ],\n };\n module.exports = templateSchema;\n})();\n"]}
1
+ {"version":3,"file":"goodDraftAsVersion.js","sourceRoot":"","sources":["../../../src/test/schemas/goodDraftAsVersion.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACA;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACpB,MAAM,EAAE,mCAAmC;QAC3C,UAAU,EAAE,CAAC,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC;KAC5C,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function () {\n\t/**\n\t * @namespace property-changeset.Test\n\t * @alias goodDraftAsVersion.js\n\t * Namespace containing all schema-related data for property set validation\n\t */\n\tvar templateSchema = {\n\t\ttypeid: \"autodesk:GoodDraftAsVersion-draft\",\n\t\tproperties: [{ id: \"int\", typeid: \"Int32\" }],\n\t};\n\tmodule.exports = templateSchema;\n})();\n"]}
@@ -13,34 +13,36 @@
13
13
  * Namespace containing all schema-related data for property set validation
14
14
  */
15
15
  var templateSchema = {
16
- 'properties': [{
17
- 'id': 'position',
18
- 'properties': [{
19
- 'id': 'x',
20
- 'typeid': 'Float32',
16
+ properties: [
17
+ {
18
+ id: "position",
19
+ properties: [
20
+ {
21
+ id: "x",
22
+ typeid: "Float32",
21
23
  },
22
24
  {
23
- 'id': 'y',
24
- 'typeid': 'Float32',
25
+ id: "y",
26
+ typeid: "Float32",
25
27
  },
26
28
  {
27
- 'id': 'z',
28
- 'typeid': 'Float32',
29
+ id: "z",
30
+ typeid: "Float32",
29
31
  },
30
32
  ],
31
33
  },
32
34
  {
33
- 'id': 'color',
34
- 'typeid': 'TeamLeoValidation2:ColorID-1.0.0',
35
+ id: "color",
36
+ typeid: "TeamLeoValidation2:ColorID-1.0.0",
35
37
  },
36
38
  {
37
- 'id': 'normal',
38
- 'typeid': 'Float32',
39
- 'context': 'array',
40
- 'length': 3,
39
+ id: "normal",
40
+ typeid: "Float32",
41
+ context: "array",
42
+ length: 3,
41
43
  },
42
44
  ],
43
- 'typeid': 'TeamLeoValidation2:PointID-1.0.0',
45
+ typeid: "TeamLeoValidation2:PointID-1.0.0",
44
46
  };
45
47
  module.exports = templateSchema;
46
48
  })();
@@ -1 +1 @@
1
- {"version":3,"file":"goodPointId.js","sourceRoot":"","sources":["../../../src/test/schemas/goodPointId.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACG;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACjB,YAAY,EAAE,CAAC;gBACP,IAAI,EAAE,UAAU;gBAChB,YAAY,EAAE,CAAC;wBACP,IAAI,EAAE,GAAG;wBACT,QAAQ,EAAE,SAAS;qBACtB;oBACD;wBACI,IAAI,EAAE,GAAG;wBACT,QAAQ,EAAE,SAAS;qBACtB;oBACD;wBACI,IAAI,EAAE,GAAG;wBACT,QAAQ,EAAE,SAAS;qBACtB;iBACJ;aACJ;YACD;gBACI,IAAI,EAAE,OAAO;gBACb,QAAQ,EAAE,kCAAkC;aAC/C;YACD;gBACI,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,SAAS;gBACnB,SAAS,EAAE,OAAO;gBAClB,QAAQ,EAAE,CAAC;aACd;SACJ;QACD,QAAQ,EAAE,kCAAkC;KAC/C,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACpC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function() {\n /**\n * @namespace property-changeset.Test\n * @alias badNestedProperties.js\n * Namespace containing all schema-related data for property set validation\n */\n var templateSchema = {\n 'properties': [{\n 'id': 'position',\n 'properties': [{\n 'id': 'x',\n 'typeid': 'Float32',\n },\n {\n 'id': 'y',\n 'typeid': 'Float32',\n },\n {\n 'id': 'z',\n 'typeid': 'Float32',\n },\n ],\n },\n {\n 'id': 'color',\n 'typeid': 'TeamLeoValidation2:ColorID-1.0.0',\n },\n {\n 'id': 'normal',\n 'typeid': 'Float32',\n 'context': 'array',\n 'length': 3,\n },\n ],\n 'typeid': 'TeamLeoValidation2:PointID-1.0.0',\n };\n module.exports = templateSchema;\n})();\n"]}
1
+ {"version":3,"file":"goodPointId.js","sourceRoot":"","sources":["../../../src/test/schemas/goodPointId.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACA;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACpB,UAAU,EAAE;YACX;gBACC,EAAE,EAAE,UAAU;gBACd,UAAU,EAAE;oBACX;wBACC,EAAE,EAAE,GAAG;wBACP,MAAM,EAAE,SAAS;qBACjB;oBACD;wBACC,EAAE,EAAE,GAAG;wBACP,MAAM,EAAE,SAAS;qBACjB;oBACD;wBACC,EAAE,EAAE,GAAG;wBACP,MAAM,EAAE,SAAS;qBACjB;iBACD;aACD;YACD;gBACC,EAAE,EAAE,OAAO;gBACX,MAAM,EAAE,kCAAkC;aAC1C;YACD;gBACC,EAAE,EAAE,QAAQ;gBACZ,MAAM,EAAE,SAAS;gBACjB,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,CAAC;aACT;SACD;QACD,MAAM,EAAE,kCAAkC;KAC1C,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function () {\n\t/**\n\t * @namespace property-changeset.Test\n\t * @alias badNestedProperties.js\n\t * Namespace containing all schema-related data for property set validation\n\t */\n\tvar templateSchema = {\n\t\tproperties: [\n\t\t\t{\n\t\t\t\tid: \"position\",\n\t\t\t\tproperties: [\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"x\",\n\t\t\t\t\t\ttypeid: \"Float32\",\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"y\",\n\t\t\t\t\t\ttypeid: \"Float32\",\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"z\",\n\t\t\t\t\t\ttypeid: \"Float32\",\n\t\t\t\t\t},\n\t\t\t\t],\n\t\t\t},\n\t\t\t{\n\t\t\t\tid: \"color\",\n\t\t\t\ttypeid: \"TeamLeoValidation2:ColorID-1.0.0\",\n\t\t\t},\n\t\t\t{\n\t\t\t\tid: \"normal\",\n\t\t\t\ttypeid: \"Float32\",\n\t\t\t\tcontext: \"array\",\n\t\t\t\tlength: 3,\n\t\t\t},\n\t\t],\n\t\ttypeid: \"TeamLeoValidation2:PointID-1.0.0\",\n\t};\n\tmodule.exports = templateSchema;\n})();\n"]}
@@ -13,11 +13,11 @@
13
13
  * Namespace containing all schema-related data for property set validation
14
14
  */
15
15
  var templateSchema = {
16
- 'typeid': 'Adsk.Library:Colors.ColorPalette-1.0.0',
17
- 'properties': [
18
- { 'id': 'colorsRef', 'typeid': 'Reference<Adsk.Core:Math.Color-1.0.0>', 'context': 'map' },
19
- { 'id': 'colors', 'typeid': 'Adsk.Core:Math.Color-1.0.0' },
20
- { 'id': 'testref', 'typeid': 'Reference', 'context': 'map' },
16
+ typeid: "Adsk.Library:Colors.ColorPalette-1.0.0",
17
+ properties: [
18
+ { id: "colorsRef", typeid: "Reference<Adsk.Core:Math.Color-1.0.0>", context: "map" },
19
+ { id: "colors", typeid: "Adsk.Core:Math.Color-1.0.0" },
20
+ { id: "testref", typeid: "Reference", context: "map" },
21
21
  ],
22
22
  };
23
23
  module.exports = templateSchema;
@@ -1 +1 @@
1
- {"version":3,"file":"goodReferenceAndRegular.js","sourceRoot":"","sources":["../../../src/test/schemas/goodReferenceAndRegular.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACG;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACjB,QAAQ,EAAE,wCAAwC;QAClD,YAAY,EAAE;YACV,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,uCAAuC,EAAE,SAAS,EAAE,KAAK,EAAE;YAC1F,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,4BAA4B,EAAE;YAC1D,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,KAAK,EAAE;SAC/D;KACJ,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACpC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function() {\n /**\n * @namespace property-changeset.Test\n * @alias badNestedProperties.js\n * Namespace containing all schema-related data for property set validation\n */\n var templateSchema = {\n 'typeid': 'Adsk.Library:Colors.ColorPalette-1.0.0',\n 'properties': [\n { 'id': 'colorsRef', 'typeid': 'Reference<Adsk.Core:Math.Color-1.0.0>', 'context': 'map' },\n { 'id': 'colors', 'typeid': 'Adsk.Core:Math.Color-1.0.0' },\n { 'id': 'testref', 'typeid': 'Reference', 'context': 'map' },\n ],\n };\n module.exports = templateSchema;\n})();\n"]}
1
+ {"version":3,"file":"goodReferenceAndRegular.js","sourceRoot":"","sources":["../../../src/test/schemas/goodReferenceAndRegular.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACA;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACpB,MAAM,EAAE,wCAAwC;QAChD,UAAU,EAAE;YACX,EAAE,EAAE,EAAE,WAAW,EAAE,MAAM,EAAE,uCAAuC,EAAE,OAAO,EAAE,KAAK,EAAE;YACpF,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,4BAA4B,EAAE;YACtD,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE;SACtD;KACD,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function () {\n\t/**\n\t * @namespace property-changeset.Test\n\t * @alias badNestedProperties.js\n\t * Namespace containing all schema-related data for property set validation\n\t */\n\tvar templateSchema = {\n\t\ttypeid: \"Adsk.Library:Colors.ColorPalette-1.0.0\",\n\t\tproperties: [\n\t\t\t{ id: \"colorsRef\", typeid: \"Reference<Adsk.Core:Math.Color-1.0.0>\", context: \"map\" },\n\t\t\t{ id: \"colors\", typeid: \"Adsk.Core:Math.Color-1.0.0\" },\n\t\t\t{ id: \"testref\", typeid: \"Reference\", context: \"map\" },\n\t\t],\n\t};\n\tmodule.exports = templateSchema;\n})();\n"]}
@@ -14,15 +14,16 @@
14
14
  * Namespace containing all schema-related data for property set validation
15
15
  */
16
16
  var templateSchema = {
17
- 'typeid': 'TeamLeoValidation2:Example-1.0.0',
18
- 'inherits': 'NamedProperty',
19
- 'properties': [{
20
- 'id': 'exampleProperty1',
21
- 'typeid': 'String',
17
+ typeid: "TeamLeoValidation2:Example-1.0.0",
18
+ inherits: "NamedProperty",
19
+ properties: [
20
+ {
21
+ id: "exampleProperty1",
22
+ typeid: "String",
22
23
  },
23
24
  {
24
- 'id': 'exampleProperty2',
25
- 'typeid': 'NodeProperty',
25
+ id: "exampleProperty2",
26
+ typeid: "NodeProperty",
26
27
  },
27
28
  ],
28
29
  };
@@ -1 +1 @@
1
- {"version":3,"file":"goodReservedTypes.js","sourceRoot":"","sources":["../../../src/test/schemas/goodReservedTypes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;;GAIG;AACH,CAAC;IACG;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACjB,QAAQ,EAAE,kCAAkC;QAC5C,UAAU,EAAE,eAAe;QAC3B,YAAY,EAAE,CAAC;gBACP,IAAI,EAAE,kBAAkB;gBACxB,QAAQ,EAAE,QAAQ;aACrB;YACD;gBACI,IAAI,EAAE,kBAAkB;gBACxB,QAAQ,EAAE,cAAc;aAC3B;SACJ;KACJ,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACpC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n * Tests reserved types: NamedProperty and NodeProperty\n */\n(function() {\n /**\n * @namespace property-changeset.Test\n * @alias goodReservedTypes.js\n * Namespace containing all schema-related data for property set validation\n */\n var templateSchema = {\n 'typeid': 'TeamLeoValidation2:Example-1.0.0',\n 'inherits': 'NamedProperty',\n 'properties': [{\n 'id': 'exampleProperty1',\n 'typeid': 'String',\n },\n {\n 'id': 'exampleProperty2',\n 'typeid': 'NodeProperty',\n },\n ],\n };\n module.exports = templateSchema;\n})();\n"]}
1
+ {"version":3,"file":"goodReservedTypes.js","sourceRoot":"","sources":["../../../src/test/schemas/goodReservedTypes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;;GAIG;AACH,CAAC;IACA;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACpB,MAAM,EAAE,kCAAkC;QAC1C,QAAQ,EAAE,eAAe;QACzB,UAAU,EAAE;YACX;gBACC,EAAE,EAAE,kBAAkB;gBACtB,MAAM,EAAE,QAAQ;aAChB;YACD;gBACC,EAAE,EAAE,kBAAkB;gBACtB,MAAM,EAAE,cAAc;aACtB;SACD;KACD,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n * Tests reserved types: NamedProperty and NodeProperty\n */\n(function () {\n\t/**\n\t * @namespace property-changeset.Test\n\t * @alias goodReservedTypes.js\n\t * Namespace containing all schema-related data for property set validation\n\t */\n\tvar templateSchema = {\n\t\ttypeid: \"TeamLeoValidation2:Example-1.0.0\",\n\t\tinherits: \"NamedProperty\",\n\t\tproperties: [\n\t\t\t{\n\t\t\t\tid: \"exampleProperty1\",\n\t\t\t\ttypeid: \"String\",\n\t\t\t},\n\t\t\t{\n\t\t\t\tid: \"exampleProperty2\",\n\t\t\t\ttypeid: \"NodeProperty\",\n\t\t\t},\n\t\t],\n\t};\n\tmodule.exports = templateSchema;\n})();\n"]}
@@ -13,26 +13,29 @@
13
13
  * Namespace containing all schema-related data for property set validation
14
14
  */
15
15
  var templateSchema = {
16
- 'typeid': 'Adsk.Core:UI.Border-1.0.0',
17
- 'properties': [{
18
- 'id': 'lineType',
19
- 'typeid': 'Enum',
20
- 'properties': [
21
- { 'id': 'solid', 'value': 200, 'annotation': { 'description': 'solid line' } },
22
- { 'id': 'dashed', 'value': 100, 'annotation': { 'description': 'dashed line' } },
23
- { 'id': 'dotted', 'value': 300, 'annotation': { 'description': 'dotted line' } },
16
+ typeid: "Adsk.Core:UI.Border-1.0.0",
17
+ properties: [
18
+ {
19
+ id: "lineType",
20
+ typeid: "Enum",
21
+ properties: [
22
+ { id: "solid", value: 200, annotation: { description: "solid line" } },
23
+ { id: "dashed", value: 100, annotation: { description: "dashed line" } },
24
+ { id: "dotted", value: 300, annotation: { description: "dotted line" } },
24
25
  ],
25
26
  },
26
27
  {
27
- 'id': 'style',
28
- 'properties': [{
29
- 'id': 'thickness',
30
- 'typeid': 'Uint32',
31
- 'annotation': {
32
- 'description': 'border thickness in Pixels',
28
+ id: "style",
29
+ properties: [
30
+ {
31
+ id: "thickness",
32
+ typeid: "Uint32",
33
+ annotation: {
34
+ description: "border thickness in Pixels",
33
35
  },
34
- 'unit': 'Adsk.Core:Units.Imaging-1.0.0',
35
- }],
36
+ unit: "Adsk.Core:Units.Imaging-1.0.0",
37
+ },
38
+ ],
36
39
  },
37
40
  ],
38
41
  };
@@ -1 +1 @@
1
- {"version":3,"file":"goodUIBorder.js","sourceRoot":"","sources":["../../../src/test/schemas/goodUIBorder.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACG;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACjB,QAAQ,EAAE,2BAA2B;QACrC,YAAY,EAAE,CAAC;gBACP,IAAI,EAAE,UAAU;gBAChB,QAAQ,EAAE,MAAM;gBAChB,YAAY,EAAE;oBACV,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,YAAY,EAAE,EAAE,aAAa,EAAE,YAAY,EAAE,EAAE;oBAC9E,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,EAAE,YAAY,EAAE,EAAE,aAAa,EAAE,aAAa,EAAE,EAAE;oBAChF,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,GAAG,EAAE,YAAY,EAAE,EAAE,aAAa,EAAE,aAAa,EAAE,EAAE;iBACnF;aACJ;YACD;gBACI,IAAI,EAAE,OAAO;gBACb,YAAY,EAAE,CAAC;wBACX,IAAI,EAAE,WAAW;wBACjB,QAAQ,EAAE,QAAQ;wBAClB,YAAY,EAAE;4BACV,aAAa,EAAE,4BAA4B;yBAC9C;wBACD,MAAM,EAAE,+BAA+B;qBAC1C,CAAC;aACL;SACJ;KACJ,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACpC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function() {\n /**\n * @namespace property-changeset.Test\n * @alias badNestedProperties.js\n * Namespace containing all schema-related data for property set validation\n */\n var templateSchema = {\n 'typeid': 'Adsk.Core:UI.Border-1.0.0',\n 'properties': [{\n 'id': 'lineType',\n 'typeid': 'Enum',\n 'properties': [\n { 'id': 'solid', 'value': 200, 'annotation': { 'description': 'solid line' } },\n { 'id': 'dashed', 'value': 100, 'annotation': { 'description': 'dashed line' } },\n { 'id': 'dotted', 'value': 300, 'annotation': { 'description': 'dotted line' } },\n ],\n },\n {\n 'id': 'style',\n 'properties': [{\n 'id': 'thickness',\n 'typeid': 'Uint32',\n 'annotation': {\n 'description': 'border thickness in Pixels',\n },\n 'unit': 'Adsk.Core:Units.Imaging-1.0.0',\n }],\n },\n ],\n };\n module.exports = templateSchema;\n})();\n"]}
1
+ {"version":3,"file":"goodUIBorder.js","sourceRoot":"","sources":["../../../src/test/schemas/goodUIBorder.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH;;;GAGG;AACH,CAAC;IACA;;;;OAIG;IACH,IAAI,cAAc,GAAG;QACpB,MAAM,EAAE,2BAA2B;QACnC,UAAU,EAAE;YACX;gBACC,EAAE,EAAE,UAAU;gBACd,MAAM,EAAE,MAAM;gBACd,UAAU,EAAE;oBACX,EAAE,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,UAAU,EAAE,EAAE,WAAW,EAAE,YAAY,EAAE,EAAE;oBACtE,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,UAAU,EAAE,EAAE,WAAW,EAAE,aAAa,EAAE,EAAE;oBACxE,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,UAAU,EAAE,EAAE,WAAW,EAAE,aAAa,EAAE,EAAE;iBACxE;aACD;YACD;gBACC,EAAE,EAAE,OAAO;gBACX,UAAU,EAAE;oBACX;wBACC,EAAE,EAAE,WAAW;wBACf,MAAM,EAAE,QAAQ;wBAChB,UAAU,EAAE;4BACX,WAAW,EAAE,4BAA4B;yBACzC;wBACD,IAAI,EAAE,+BAA+B;qBACrC;iBACD;aACD;SACD;KACD,CAAC;IACF,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview\n * Test data for property set template schema testing\n */\n(function () {\n\t/**\n\t * @namespace property-changeset.Test\n\t * @alias badNestedProperties.js\n\t * Namespace containing all schema-related data for property set validation\n\t */\n\tvar templateSchema = {\n\t\ttypeid: \"Adsk.Core:UI.Border-1.0.0\",\n\t\tproperties: [\n\t\t\t{\n\t\t\t\tid: \"lineType\",\n\t\t\t\ttypeid: \"Enum\",\n\t\t\t\tproperties: [\n\t\t\t\t\t{ id: \"solid\", value: 200, annotation: { description: \"solid line\" } },\n\t\t\t\t\t{ id: \"dashed\", value: 100, annotation: { description: \"dashed line\" } },\n\t\t\t\t\t{ id: \"dotted\", value: 300, annotation: { description: \"dotted line\" } },\n\t\t\t\t],\n\t\t\t},\n\t\t\t{\n\t\t\t\tid: \"style\",\n\t\t\t\tproperties: [\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"thickness\",\n\t\t\t\t\t\ttypeid: \"Uint32\",\n\t\t\t\t\t\tannotation: {\n\t\t\t\t\t\t\tdescription: \"border thickness in Pixels\",\n\t\t\t\t\t\t},\n\t\t\t\t\t\tunit: \"Adsk.Core:Units.Imaging-1.0.0\",\n\t\t\t\t\t},\n\t\t\t\t],\n\t\t\t},\n\t\t],\n\t};\n\tmodule.exports = templateSchema;\n})();\n"]}
@@ -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.dom.d.ts","../../../../../../node_modules/typescript/lib/lib.dom.iterable.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.es2020.bigint.d.ts","../../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../../node_modules/@types/lodash/common/common.d.ts","../../../../../../node_modules/@types/lodash/common/array.d.ts","../../../../../../node_modules/@types/lodash/common/collection.d.ts","../../../../../../node_modules/@types/lodash/common/date.d.ts","../../../../../../node_modules/@types/lodash/common/function.d.ts","../../../../../../node_modules/@types/lodash/common/lang.d.ts","../../../../../../node_modules/@types/lodash/common/math.d.ts","../../../../../../node_modules/@types/lodash/common/number.d.ts","../../../../../../node_modules/@types/lodash/common/object.d.ts","../../../../../../node_modules/@types/lodash/common/seq.d.ts","../../../../../../node_modules/@types/lodash/common/string.d.ts","../../../../../../node_modules/@types/lodash/common/util.d.ts","../../../../../../node_modules/@types/lodash/index.d.ts","../../../../../../node_modules/@types/lodash/isEmpty.d.ts","../../../../../../node_modules/@types/lodash/isNumber.d.ts","../../../../../../node_modules/@types/lodash/range.d.ts","../../../../../../node_modules/@types/chai/index.d.ts","../changeset_operations/operationTypes.d.ts","../changeset_operations/arrayChangesetIterator.d.ts","../changeset_operations/array.d.ts","../changeset_operations/changesetConflictTypes.d.ts","../changeset_operations/indexedCollection.d.ts","../changeset.d.ts","../../src/test/array.spec.ts","../pathHelper.d.ts","../../src/test/pathHelper.spec.ts","../../src/test/reversibleCs.spec.ts","../validationResultBuilder.d.ts","../templateValidator.d.ts","../helpers/typeidHelper.d.ts","../../src/test/schemaValidator.ts","../../src/test/schemas/badBothPropertiesAndTypeid.ts","../../src/test/schemas/badInvalidSemverInTypeid.ts","../../src/test/schemas/badMissingSemverInTypeid.ts","../../src/test/schemas/badNestedProperties.ts","../../src/test/schemas/badPrimitiveTypeid.ts","../../src/test/schemas/badVersionedTypeid.ts","../../src/test/schemas/goodColorPalette.ts","../../src/test/schemas/goodDraftAsVersion.ts","../../src/test/schemas/goodPointId.ts","../../src/test/schemas/goodReferenceAndRegular.ts","../../src/test/schemas/goodReservedTypes.ts","../../src/test/schemas/goodUIBorder.ts","../../src/test/validator/templateSyntax.spec.ts","../../src/test/validator/templateValidator.spec.ts","../../src/test/validator/typeidHelper.spec.ts","../../../../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../../../../node_modules/@types/events/index.d.ts","../../../../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../../../../node_modules/@types/node/ts4.8/console.d.ts","../../../../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../../../../node_modules/@types/node/ts4.8/events.d.ts","../../../../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../../../../node_modules/@types/node/ts4.8/http.d.ts","../../../../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../../../../node_modules/@types/node/ts4.8/https.d.ts","../../../../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../../../../node_modules/@types/node/ts4.8/module.d.ts","../../../../../../node_modules/@types/node/ts4.8/net.d.ts","../../../../../../node_modules/@types/node/ts4.8/os.d.ts","../../../../../../node_modules/@types/node/ts4.8/path.d.ts","../../../../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../../../../node_modules/@types/node/ts4.8/process.d.ts","../../../../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../../../../node_modules/@types/node/ts4.8/url.d.ts","../../../../../../node_modules/@types/node/ts4.8/util.d.ts","../../../../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../../../../node_modules/@types/node/ts4.8/index.d.ts","../../../../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","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":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"8dcd8273655aef81be9c273e532a55f56032c7907b20f8ed4d069f7eec44ace8","e3602c7ef8cfedd027c02a023075b2c7ba2705d26ec521a8e95f2084f4a138ba","9b58c2cbd15e7c2c5ccd13f983fa2ef06c8c32724787b1f5bf1642129a0ac3c2",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},"eae9ad23597af5ac54f91efac6486eacf994957236dcbf230ac67dab40023e5b","521e70241ef4038881395d05db810a4f0dd00b2071cb1955a0e7b284616170c6","a69e270826b5ff7efcd685046a74dfefdcfab620b4723bdeab79e438c8bba857","adfadc223af3b2425a1575f2196499bd2dd9375bb517f90bbc7b3a960c8905a2","8d26f5b4902f2667abf2a87ecd8fa6515df66e9ce046598f1a2219d0b96f6738","90c87f8d1dc5e6d0ddccb760e318bf90f41991189ea2cb51208a988a18315401","55a34dd1ff76fa4960743b1710451680427e2165abcbbac6dad6253a01948a64","611749d885e410001cab7d625413d2f611b0af8a80b6bd8515bc6171588a8766","141283ebe692715e1cffb0547c4f9abc7ceab478c2a661bf79ec698555674a55","571f96493cd2d9b10f288fee42ae993c8073cede226b9bf42a49d13d92f3b4fb","d4d96bd3048618f17f8de6a9e93028e003bf7504ede4d7dccd14a2716fab2324","f40b2bb8fa900085595ff9568f48c40d244bc8f282712edd7a3821f16ee68d29","632295acb97c1b08e0e8b4f9badb4765ad01a8ab3a985736058fa3d74d4f57c7","8e41c7bae6a18a80d9b2d3cffb278c32468519b4ecd5068d11ac66e39ec2863d",{"version":"a05c24245de393428c87d935f017f5eb413d828966b8d679d08236b4f6e4718d","affectsGlobalScope":true},{"version":"af0d4bd8f72a86fe127b70b450ad6da1f5e5a99d913ea69f34a4a60fe01e2ac1","affectsGlobalScope":true},{"version":"a5ace5338a1fcb53baf6ca79933b410292f02c4a5310f387b259ee388b3c515f","affectsGlobalScope":true},{"version":"23bd3e6d0ae175bf64d4663571f6e8d1eb7bb1689d22ac0767edddb7ccff2c35","affectsGlobalScope":true},{"version":"787a8b81ee1b603b8c171053d934416b4c6c7669ab2197b866a63ddc17aee047","affectsGlobalScope":true},{"version":"4d69f21bd866f6a542689c6e1001574978d94d513873c748a2fc57d655118023","affectsGlobalScope":true},{"version":"df48817c63cb5955ce0e1f21c57418aba1785eeaa35c4b8aadc7df3f4b83086f","affectsGlobalScope":true},{"version":"3179622a2e05a59e1104e7f28f1e407119b7c47d0c01e617f82790e4591fe592","affectsGlobalScope":true},{"version":"6a21fb3374bab4a2a807b8f1ab538488e71650ebf1370c45e533281d2f28b59c","affectsGlobalScope":true},{"version":"22a409fc6f9c0b55d0ff1146c8415125766b5dbe73bb23ff15ed9937e423a7c9","affectsGlobalScope":true},{"version":"f724101943b8cc1c96851b31ba4d95eeb8b82d578a0ae1702753c71d27263410","affectsGlobalScope":true},{"version":"8450fc871ee026acfe464e1b0a4b72acf66739131c44724131fb86c8e247c5ed","affectsGlobalScope":true},"e283cb1789771306cf1a0e98d1f854bc7bd50cc0c231664bb9a07a65ed769c6b","112f66c859351d981a674e52a499717d02a28ae919fc3fff809005604ecd78c8","2c8f0db3c183e0ab928e6217ea4fb9678a372e438095d8002011746d7cc90d23","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","9deb3a5eaf187df1428f0fee83c8c51eedb74f6da3442410bad9688e42a7e2b5","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","139fd681eff7771a38d0c025d13c7a11c5474f6aab61e01c41511d71496df173","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f",{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true}],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"inlineSources":true,"module":1,"noImplicitAny":false,"noUnusedLocals":true,"outDir":"./","rootDir":"../../src/test","sourceMap":true,"strict":false,"target":4},"fileIdsList":[[49,50,51],[48,52],[47,52],[52],[57],[43,44,45,46,52],[46,54],[58,59],[46,60],[46,58,60],[46,59],[30,32,33,34,35,36,37,38,39,40,41,42],[30,31,33,34,35,36,37,38,39,40,41,42],[31,32,33,34,35,36,37,38,39,40,41,42],[30,31,32,34,35,36,37,38,39,40,41,42],[30,31,32,33,35,36,37,38,39,40,41,42],[30,31,32,33,34,36,37,38,39,40,41,42],[30,31,32,33,34,35,37,38,39,40,41,42],[30,31,32,33,34,35,36,38,39,40,41,42],[30,31,32,33,34,35,36,37,39,40,41,42],[30,31,32,33,34,35,36,37,38,40,41,42],[30,31,32,33,34,35,36,37,38,39,41,42],[30,31,32,33,34,35,36,37,38,39,40,42],[30,31,32,33,34,35,36,37,38,39,40,41],[42],[76],[78],[79,85],[81,89,90,97,106],[81,82,89,97],[83,113],[84,85,90,98],[85,106],[86,87,89,97],[87],[88,89],[89],[89,90,91,106,112],[90,91],[92,97,106,112],[89,90,92,93,97,106,109,112],[92,94,106,109,112],[76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[89,95],[96,112],[87,89,97,106],[98],[99],[78,100],[101,111],[102],[103],[89,104],[104,105,113,115],[89,106],[107],[108],[97,106,109],[110],[97,111],[103,112],[113],[106,114],[115],[116],[89,91,106,112,115,117],[106,118]],"referencedMap":[[52,1],[49,2],[48,3],[51,4],[58,5],[53,6],[55,7],[56,4],[60,8],[73,9],[74,10],[75,11],[31,12],[32,13],[30,14],[33,15],[34,16],[35,17],[36,18],[37,19],[38,20],[39,21],[40,22],[41,23],[42,24],[43,25],[44,25],[45,25],[76,26],[78,27],[79,28],[81,29],[82,30],[83,31],[84,32],[85,33],[86,34],[87,35],[88,36],[89,37],[90,38],[91,39],[92,40],[93,41],[94,42],[120,43],[95,44],[96,45],[97,46],[98,47],[99,48],[100,49],[101,50],[102,51],[103,52],[104,53],[105,54],[106,55],[107,56],[108,57],[109,58],[110,59],[111,60],[112,61],[113,62],[114,63],[115,64],[116,65],[117,66],[118,67]],"exportedModulesMap":[[52,1],[49,2],[48,3],[51,4],[58,5],[53,6],[55,7],[56,4],[60,8],[73,9],[74,10],[75,11],[31,12],[32,13],[30,14],[33,15],[34,16],[35,17],[36,18],[37,19],[38,20],[39,21],[40,22],[41,23],[42,24],[43,25],[44,25],[45,25],[76,26],[78,27],[79,28],[81,29],[82,30],[83,31],[84,32],[85,33],[86,34],[87,35],[88,36],[89,37],[90,38],[91,39],[92,40],[93,41],[94,42],[120,43],[95,44],[96,45],[97,46],[98,47],[99,48],[100,49],[101,50],[102,51],[103,52],[104,53],[105,54],[106,55],[107,56],[108,57],[109,58],[110,59],[111,60],[112,61],[113,62],[114,63],[115,64],[116,65],[117,66],[118,67]],"semanticDiagnosticsPerFile":[52,49,48,50,51,47,59,54,58,57,53,55,56,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,46,80,31,32,30,33,34,35,36,37,38,39,40,41,42,43,44,45,121,76,78,79,81,82,83,84,85,86,87,88,89,90,91,77,119,92,93,94,120,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,6,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,1,29]},"version":"4.5.5"}
1
+ {"program":{"fileNames":["../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/common.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/array.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/collection.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/date.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/function.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/lang.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/math.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/number.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/object.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/seq.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/string.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/common/util.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/index.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/isEmpty.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/isNumber.d.ts","../../../../../../node_modules/.pnpm/@types+lodash@4.14.189/node_modules/@types/lodash/range.d.ts","../changeset_operations/operationTypes.d.ts","../changeset_operations/arrayChangesetIterator.d.ts","../changeset_operations/array.d.ts","../changeset_operations/changesetConflictTypes.d.ts","../changeset_operations/indexedCollection.d.ts","../changeset.d.ts","../../src/test/array.spec.ts","../pathHelper.d.ts","../../src/test/pathHelper.spec.ts","../../src/test/reversibleCs.spec.ts","../validationResultBuilder.d.ts","../templateValidator.d.ts","../helpers/typeidHelper.d.ts","../../src/test/schemaValidator.ts","../../src/test/schemas/badBothPropertiesAndTypeid.ts","../../src/test/schemas/badInvalidSemverInTypeid.ts","../../src/test/schemas/badMissingSemverInTypeid.ts","../../src/test/schemas/badNestedProperties.ts","../../src/test/schemas/badPrimitiveTypeid.ts","../../src/test/schemas/badVersionedTypeid.ts","../../src/test/schemas/goodColorPalette.ts","../../src/test/schemas/goodDraftAsVersion.ts","../../src/test/schemas/goodPointId.ts","../../src/test/schemas/goodReferenceAndRegular.ts","../../src/test/schemas/goodReservedTypes.ts","../../src/test/schemas/goodUIBorder.ts","../../src/test/validator/templateSyntax.spec.ts","../../src/test/validator/templateValidator.spec.ts","../../src/test/validator/typeidHelper.spec.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/assert.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/globals.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/buffer.d.ts","../../../../../../node_modules/.pnpm/@types+events@3.0.0/node_modules/@types/events/index.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/child_process.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/cluster.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/console.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/constants.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/crypto.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/dgram.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/dns.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/domain.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/events.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/fs.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/http.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/http2.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/https.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/inspector.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/module.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/net.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/os.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/path.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/process.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/punycode.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/querystring.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/readline.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/repl.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/stream.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/timers.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/tls.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/trace_events.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/tty.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/url.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/util.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/v8.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/vm.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/wasi.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/zlib.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/globals.global.d.ts","../../../../../../node_modules/.pnpm/@types+node@14.18.36/node_modules/@types/node/ts4.8/index.d.ts","../../../../../../node_modules/.pnpm/@types+mocha@9.1.1/node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","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":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"8dcd8273655aef81be9c273e532a55f56032c7907b20f8ed4d069f7eec44ace8","e3602c7ef8cfedd027c02a023075b2c7ba2705d26ec521a8e95f2084f4a138ba","9b58c2cbd15e7c2c5ccd13f983fa2ef06c8c32724787b1f5bf1642129a0ac3c2","eae9ad23597af5ac54f91efac6486eacf994957236dcbf230ac67dab40023e5b","521e70241ef4038881395d05db810a4f0dd00b2071cb1955a0e7b284616170c6","8d3b1fdcee39e70bcbc6976ba80bdc15225d5ec04a098544a32797abfb5c2d7e","adfadc223af3b2425a1575f2196499bd2dd9375bb517f90bbc7b3a960c8905a2","8d26f5b4902f2667abf2a87ecd8fa6515df66e9ce046598f1a2219d0b96f6738","8693d88f245daff57686cce74892ca08d3e0b6bc2fa2807a753206f2ab0bcd9c","39bdc062a85185cf200ef55ee246ba187adc9f2c6dc01e1f5037abee034bbf15","611749d885e410001cab7d625413d2f611b0af8a80b6bd8515bc6171588a8766","4d2ab92c7e6177d9957db25e730ab8ad654cc44fb5b4b6e6a4dc4ef0a7081145","8bb18373931214e34b22f150339ad0adc489c1d2c4614f651742f0b1f80b764d","d4d96bd3048618f17f8de6a9e93028e003bf7504ede4d7dccd14a2716fab2324","f40b2bb8fa900085595ff9568f48c40d244bc8f282712edd7a3821f16ee68d29","1b12d595dd1e97a680b058631f653f4cb340b04f70c6785d1d62433c16bc041e","79805efd67a851e41ed4b8eecc35b8af82ab51faa64d2810b4c06ea9f7f86c09",{"version":"f24e5fbf285f61ee4408e487552fe42302845ebb0c56502392753549605adf3c","affectsGlobalScope":true},{"version":"e3163cdc463800856499463903d39909fa61ddeae8ce9ebd494e3e597e90fb11","affectsGlobalScope":true},{"version":"1e3eb5ae0254be73a073028eb82b498a295a8673db67126e9a22ad3a91bbdb97","affectsGlobalScope":true},{"version":"e50f3fe53016d8b2e19de18e7e4302c11645148554e267f575fea091090433fb","affectsGlobalScope":true},{"version":"1c5df11308d9ca2a1885794460e15c1ee1e4e742d37a03a31746b6ac98b019d6","affectsGlobalScope":true},{"version":"8ca5261c2267d675310520f3b80a27751fcbf6af6b290573cda8fd994e529b8d","affectsGlobalScope":true},{"version":"f3b8104a3638c305e8417622ce05ec39938638cd5271ae4d763b678fd9a474a5","affectsGlobalScope":true},{"version":"431087b067ee7de63f314ac7c3d160bf201e3c72b8c0f645449ea9c42a4b4b72","affectsGlobalScope":true},{"version":"23a8d3930d7756c8ebd9317f769f2dbc1bfcf2209eabf03e3ad3a7084c93b768","affectsGlobalScope":true},{"version":"ac3931cbbdf957519a182fcb974156ac34ba650f87ce6c18e75c8d1d695e8b53","affectsGlobalScope":true},{"version":"6a5da0d0f91bd39a7fba09e287a609dedcce46cbfd7fd1f9e56cde97a4bc23d9","affectsGlobalScope":true},{"version":"fa89162c6398e0c1034df9aad15289b366708f32695a60bf6819a60e042759f9","affectsGlobalScope":true},"520f54d6f2a53add71cacc92135eedf82904f08ceeda3b6742808b23b6fcea74","287306ef636603597524d3035b26770d6e2daf78b56f3976bb6978657ef44753","b406a03731b63302d815ef70651eed838c3e580f2949758d94f1c37cd0fdae45","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","9deb3a5eaf187df1428f0fee83c8c51eedb74f6da3442410bad9688e42a7e2b5","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","139fd681eff7771a38d0c025d13c7a11c5474f6aab61e01c41511d71496df173","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"01c93adfc4c6555c559e7334b6b5f45b48c9e1f809144822088e45ba13e36d9f",{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true}],"options":{"declaration":false,"declarationMap":false,"esModuleInterop":true,"inlineSources":true,"module":1,"noImplicitAny":false,"noUnusedLocals":true,"outDir":"./","rootDir":"../../src/test","sourceMap":true,"strict":false,"target":4},"fileIdsList":[[48,49,50],[47,51],[46,51],[51],[56],[43,44,45,51],[53],[57,58],[59],[57,59],[58],[30,32,33,34,35,36,37,38,39,40,41,42],[30,31,33,34,35,36,37,38,39,40,41,42],[31,32,33,34,35,36,37,38,39,40,41,42],[30,31,32,34,35,36,37,38,39,40,41,42],[30,31,32,33,35,36,37,38,39,40,41,42],[30,31,32,33,34,36,37,38,39,40,41,42],[30,31,32,33,34,35,37,38,39,40,41,42],[30,31,32,33,34,35,36,38,39,40,41,42],[30,31,32,33,34,35,36,37,39,40,41,42],[30,31,32,33,34,35,36,37,38,40,41,42],[30,31,32,33,34,35,36,37,38,39,41,42],[30,31,32,33,34,35,36,37,38,39,40,42],[30,31,32,33,34,35,36,37,38,39,40,41],[42],[75],[77],[78,84],[80,88,89,96,105],[80,81,88,96],[82,112],[83,84,89,97],[84,105],[85,86,88,96],[86],[87,88],[88],[88,89,90,105,111],[89,90],[91,96,105,111],[88,89,91,92,96,105,108,111],[91,93,105,108,111],[75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118],[88,94],[95,111],[86,88,96,105],[97],[98],[77,99],[100,110],[101],[102],[88,103],[103,104,112,114],[88,105],[106],[107],[96,105,108],[109],[96,110],[102,111],[112],[105,113],[114],[115],[88,90,105,111,114,116],[105,117]],"referencedMap":[[51,1],[48,2],[47,3],[50,4],[57,5],[52,6],[54,7],[55,4],[59,8],[72,9],[73,10],[74,11],[31,12],[32,13],[30,14],[33,15],[34,16],[35,17],[36,18],[37,19],[38,20],[39,21],[40,22],[41,23],[42,24],[43,25],[44,25],[45,25],[75,26],[77,27],[78,28],[80,29],[81,30],[82,31],[83,32],[84,33],[85,34],[86,35],[87,36],[88,37],[89,38],[90,39],[91,40],[92,41],[93,42],[119,43],[94,44],[95,45],[96,46],[97,47],[98,48],[99,49],[100,50],[101,51],[102,52],[103,53],[104,54],[105,55],[106,56],[107,57],[108,58],[109,59],[110,60],[111,61],[112,62],[113,63],[114,64],[115,65],[116,66],[117,67]],"exportedModulesMap":[[51,1],[48,2],[47,3],[50,4],[57,5],[52,6],[54,7],[55,4],[59,8],[72,9],[73,10],[74,11],[31,12],[32,13],[30,14],[33,15],[34,16],[35,17],[36,18],[37,19],[38,20],[39,21],[40,22],[41,23],[42,24],[43,25],[44,25],[45,25],[75,26],[77,27],[78,28],[80,29],[81,30],[82,31],[83,32],[84,33],[85,34],[86,35],[87,36],[88,37],[89,38],[90,39],[91,40],[92,41],[93,42],[119,43],[94,44],[95,45],[96,46],[97,47],[98,48],[99,49],[100,50],[101,51],[102,52],[103,53],[104,54],[105,55],[106,56],[107,57],[108,58],[109,59],[110,60],[111,61],[112,62],[113,63],[114,64],[115,65],[116,66],[117,67]],"semanticDiagnosticsPerFile":[51,48,47,49,50,46,58,53,57,56,52,54,55,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,79,31,32,30,33,34,35,36,37,38,39,40,41,42,43,44,45,120,75,77,78,80,81,82,83,84,85,86,87,88,89,90,76,118,91,92,93,119,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,6,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,1,29]},"version":"4.5.5"}
@@ -1 +1 @@
1
- {"version":3,"file":"templateSyntax.spec.js","sourceRoot":"","sources":["../../../src/test/validator/templateSyntax.spec.ts"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview In this file, we will test template syntax.\n */\n\nimport { expect } from 'chai';\nimport { SchemaValidator } from \"../schemaValidator\";\n\n(function() {\n describe(\"Simple Template Validation\", function() {\n const schemaValidator = new SchemaValidator();\n\n it(\"should validate a simple file\", function() {\n const testFile1 = require(\"../schemas/goodPointId\");\n\n const result = schemaValidator.validate(testFile1);\n\n expect(result.errors.length).to.equal(0);\n expect(result.unresolvedTypes.length).to.be.greaterThan(0);\n });\n\n it(\"should fail a file with a bad versioned typeid in it\", function() {\n const testFile2 = require(\"../schemas/badVersionedTypeid\");\n const result = schemaValidator.validate(testFile2);\n\n expect(result.isValid).to.equal(false);\n expect(result.errors.length).to.equal(1);\n });\n\n it(\"should fail a file with a bad primitive typeid in it\", function() {\n const testFile2 = require(\"../schemas/badPrimitiveTypeid\");\n const result = schemaValidator.validate(testFile2);\n\n expect(result.isValid).to.equal(false);\n expect(result.errors.length).to.be.greaterThan(0);\n });\n\n it(\"should fail when both properties and typeid/id are specified\", function() {\n const testFile3 = require(\"../schemas/badBothPropertiesAndTypeid\");\n const result = schemaValidator.validate(testFile3);\n\n expect(result.isValid).to.equal(false);\n expect(result.errors.length).to.be.greaterThan(0);\n });\n\n it(\"Should permit declaration of enums inline\", function() {\n const testFile4 = require(\"../schemas/goodUIBorder\");\n const result = schemaValidator.validate(testFile4);\n\n expect(result.isValid).to.equal(true);\n expect(result.errors.length).to.equal(0);\n expect(result.unresolvedTypes.length).to.equal(0); // Only simple types\n });\n\n it(\"Should support both kinds of reference types\", function() {\n const testFile5 = require(\"../schemas/goodColorPalette\");\n const result = schemaValidator.validate(testFile5);\n\n expect(result.isValid).to.equal(true);\n expect(result.errors.length).to.equal(0);\n expect(result.unresolvedTypes.length).to.be.greaterThan(0);\n });\n\n it(\"Should find errors down in nested types\", function() {\n const testFile6 = require(\"../schemas/badNestedProperties\");\n const result = schemaValidator.validate(testFile6);\n\n expect(result.isValid).to.equal(false);\n expect(result.errors.length).to.be.greaterThan(0);\n expect(result.unresolvedTypes.length).to.equal(2);\n });\n\n it(\"Should extract typeids from references\", function() {\n const testFile7 = require(\"../schemas/goodReferenceAndRegular\");\n const result = schemaValidator.validate(testFile7);\n\n expect(result.isValid).to.equal(true);\n expect(result.errors.length).to.equal(0);\n expect(result.unresolvedTypes.length).to.equal(1);\n });\n\n it(\"should validate a typeid with reserved type Ids\", function() {\n const testFile8 = require(\"../schemas/goodReservedTypes\");\n const result = schemaValidator.validate(testFile8);\n\n expect(result.isValid).to.equal(true);\n expect(result.errors.length).to.equal(0);\n expect(result.unresolvedTypes.length).to.be.greaterThan(0);\n });\n\n it(\"should validate a typeid with draft as version\", function() {\n const testFile9 = require(\"../schemas/goodDraftAsVersion\");\n const result = schemaValidator.validate(testFile9, testFile9, false, true, true);\n\n expect(result.isValid).to.equal(true);\n expect(result.errors.length).to.equal(0);\n expect(result.unresolvedTypes.length).to.be.equal(0);\n });\n\n it(\"should validate a typeid with draft as version\", function() {\n const testFile9 = require(\"../schemas/goodDraftAsVersion\");\n const result = schemaValidator.validate(testFile9, testFile9, false, true, false);\n\n expect(result.isValid).to.equal(false);\n expect(result.errors.length).to.equal(1);\n expect(result.unresolvedTypes.length).to.be.equal(0);\n });\n });\n})();\n"]}
1
+ {"version":3,"file":"templateSyntax.spec.js","sourceRoot":"","sources":["../../../src/test/validator/templateSyntax.spec.ts"],"names":[],"mappings":";AAAA;;;GAGG;AACH;;GAEG;;AAEH,+BAA8B;AAC9B,wDAAqD;AAErD,CAAC;IACA,QAAQ,CAAC,4BAA4B,EAAE;QACtC,MAAM,eAAe,GAAG,IAAI,iCAAe,EAAE,CAAC;QAE9C,EAAE,CAAC,+BAA+B,EAAE;YACnC,MAAM,SAAS,GAAG,OAAO,CAAC,wBAAwB,CAAC,CAAC;YAEpD,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACzC,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QAC5D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,sDAAsD,EAAE;YAC1D,MAAM,SAAS,GAAG,OAAO,CAAC,+BAA+B,CAAC,CAAC;YAC3D,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QAC1C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,sDAAsD,EAAE;YAC1D,MAAM,SAAS,GAAG,OAAO,CAAC,+BAA+B,CAAC,CAAC;YAC3D,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QACnD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,8DAA8D,EAAE;YAClE,MAAM,SAAS,GAAG,OAAO,CAAC,uCAAuC,CAAC,CAAC;YACnE,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QACnD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,2CAA2C,EAAE;YAC/C,MAAM,SAAS,GAAG,OAAO,CAAC,yBAAyB,CAAC,CAAC;YACrD,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACtC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACzC,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,oBAAoB;QACxE,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,8CAA8C,EAAE;YAClD,MAAM,SAAS,GAAG,OAAO,CAAC,6BAA6B,CAAC,CAAC;YACzD,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACtC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACzC,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QAC5D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,yCAAyC,EAAE;YAC7C,MAAM,SAAS,GAAG,OAAO,CAAC,gCAAgC,CAAC,CAAC;YAC5D,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAClD,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACnD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,wCAAwC,EAAE;YAC5C,MAAM,SAAS,GAAG,OAAO,CAAC,oCAAoC,CAAC,CAAC;YAChE,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACtC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACzC,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACnD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,iDAAiD,EAAE;YACrD,MAAM,SAAS,GAAG,OAAO,CAAC,8BAA8B,CAAC,CAAC;YAC1D,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;YAEnD,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACtC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACzC,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QAC5D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,gDAAgD,EAAE;YACpD,MAAM,SAAS,GAAG,OAAO,CAAC,+BAA+B,CAAC,CAAC;YAC3D,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;YAEjF,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACtC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACzC,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACtD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,gDAAgD,EAAE;YACpD,MAAM,SAAS,GAAG,OAAO,CAAC,+BAA+B,CAAC,CAAC;YAC3D,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;YAElF,IAAA,aAAM,EAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvC,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACzC,IAAA,aAAM,EAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACtD,CAAC,CAAC,CAAC;IACJ,CAAC,CAAC,CAAC;AACJ,CAAC,CAAC,EAAE,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/**\n * @fileoverview In this file, we will test template syntax.\n */\n\nimport { expect } from \"chai\";\nimport { SchemaValidator } from \"../schemaValidator\";\n\n(function () {\n\tdescribe(\"Simple Template Validation\", function () {\n\t\tconst schemaValidator = new SchemaValidator();\n\n\t\tit(\"should validate a simple file\", function () {\n\t\t\tconst testFile1 = require(\"../schemas/goodPointId\");\n\n\t\t\tconst result = schemaValidator.validate(testFile1);\n\n\t\t\texpect(result.errors.length).to.equal(0);\n\t\t\texpect(result.unresolvedTypes.length).to.be.greaterThan(0);\n\t\t});\n\n\t\tit(\"should fail a file with a bad versioned typeid in it\", function () {\n\t\t\tconst testFile2 = require(\"../schemas/badVersionedTypeid\");\n\t\t\tconst result = schemaValidator.validate(testFile2);\n\n\t\t\texpect(result.isValid).to.equal(false);\n\t\t\texpect(result.errors.length).to.equal(1);\n\t\t});\n\n\t\tit(\"should fail a file with a bad primitive typeid in it\", function () {\n\t\t\tconst testFile2 = require(\"../schemas/badPrimitiveTypeid\");\n\t\t\tconst result = schemaValidator.validate(testFile2);\n\n\t\t\texpect(result.isValid).to.equal(false);\n\t\t\texpect(result.errors.length).to.be.greaterThan(0);\n\t\t});\n\n\t\tit(\"should fail when both properties and typeid/id are specified\", function () {\n\t\t\tconst testFile3 = require(\"../schemas/badBothPropertiesAndTypeid\");\n\t\t\tconst result = schemaValidator.validate(testFile3);\n\n\t\t\texpect(result.isValid).to.equal(false);\n\t\t\texpect(result.errors.length).to.be.greaterThan(0);\n\t\t});\n\n\t\tit(\"Should permit declaration of enums inline\", function () {\n\t\t\tconst testFile4 = require(\"../schemas/goodUIBorder\");\n\t\t\tconst result = schemaValidator.validate(testFile4);\n\n\t\t\texpect(result.isValid).to.equal(true);\n\t\t\texpect(result.errors.length).to.equal(0);\n\t\t\texpect(result.unresolvedTypes.length).to.equal(0); // Only simple types\n\t\t});\n\n\t\tit(\"Should support both kinds of reference types\", function () {\n\t\t\tconst testFile5 = require(\"../schemas/goodColorPalette\");\n\t\t\tconst result = schemaValidator.validate(testFile5);\n\n\t\t\texpect(result.isValid).to.equal(true);\n\t\t\texpect(result.errors.length).to.equal(0);\n\t\t\texpect(result.unresolvedTypes.length).to.be.greaterThan(0);\n\t\t});\n\n\t\tit(\"Should find errors down in nested types\", function () {\n\t\t\tconst testFile6 = require(\"../schemas/badNestedProperties\");\n\t\t\tconst result = schemaValidator.validate(testFile6);\n\n\t\t\texpect(result.isValid).to.equal(false);\n\t\t\texpect(result.errors.length).to.be.greaterThan(0);\n\t\t\texpect(result.unresolvedTypes.length).to.equal(2);\n\t\t});\n\n\t\tit(\"Should extract typeids from references\", function () {\n\t\t\tconst testFile7 = require(\"../schemas/goodReferenceAndRegular\");\n\t\t\tconst result = schemaValidator.validate(testFile7);\n\n\t\t\texpect(result.isValid).to.equal(true);\n\t\t\texpect(result.errors.length).to.equal(0);\n\t\t\texpect(result.unresolvedTypes.length).to.equal(1);\n\t\t});\n\n\t\tit(\"should validate a typeid with reserved type Ids\", function () {\n\t\t\tconst testFile8 = require(\"../schemas/goodReservedTypes\");\n\t\t\tconst result = schemaValidator.validate(testFile8);\n\n\t\t\texpect(result.isValid).to.equal(true);\n\t\t\texpect(result.errors.length).to.equal(0);\n\t\t\texpect(result.unresolvedTypes.length).to.be.greaterThan(0);\n\t\t});\n\n\t\tit(\"should validate a typeid with draft as version\", function () {\n\t\t\tconst testFile9 = require(\"../schemas/goodDraftAsVersion\");\n\t\t\tconst result = schemaValidator.validate(testFile9, testFile9, false, true, true);\n\n\t\t\texpect(result.isValid).to.equal(true);\n\t\t\texpect(result.errors.length).to.equal(0);\n\t\t\texpect(result.unresolvedTypes.length).to.be.equal(0);\n\t\t});\n\n\t\tit(\"should validate a typeid with draft as version\", function () {\n\t\t\tconst testFile9 = require(\"../schemas/goodDraftAsVersion\");\n\t\t\tconst result = schemaValidator.validate(testFile9, testFile9, false, true, false);\n\n\t\t\texpect(result.isValid).to.equal(false);\n\t\t\texpect(result.errors.length).to.equal(1);\n\t\t\texpect(result.unresolvedTypes.length).to.be.equal(0);\n\t\t});\n\t});\n})();\n"]}