@cratis/fundamentals 4.2.1 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. package/DerivedType.ts +14 -0
  2. package/Field.ts +12 -0
  3. package/Fields.ts +32 -0
  4. package/JsonSerializer.ts +110 -0
  5. package/README.md +63 -6
  6. package/d.yarnist/cjs/Constructor.d.ts +2 -0
  7. package/d.yarnist/cjs/DerivedType.d.ts +6 -0
  8. package/d.yarnist/cjs/Field.d.ts +9 -0
  9. package/d.yarnist/cjs/Fields.d.ts +8 -0
  10. package/d.yarnist/cjs/JsonSerializer.d.ts +9 -0
  11. package/d.yarnist/cjs/PropertyAccessor.d.ts +2 -0
  12. package/d.yarnist/cjs/derivedTypeDecorator.d.ts +3 -0
  13. package/d.yarnist/cjs/fieldDecorator.d.ts +3 -0
  14. package/d.yarnist/cjs/index.d.ts +13 -0
  15. package/d.yarnist/cjs/index.js +24 -0
  16. package/derivedTypeDecorator.ts +11 -0
  17. package/dist/esm/Constructor.d.ts +2 -0
  18. package/dist/esm/Constructor.d.ts.map +1 -0
  19. package/dist/esm/DerivedType.d.ts +6 -0
  20. package/dist/esm/DerivedType.d.ts.map +1 -0
  21. package/dist/esm/DerivedType.js +11 -0
  22. package/dist/esm/DerivedType.js.map +1 -0
  23. package/dist/esm/Field.d.ts +9 -0
  24. package/dist/esm/Field.d.ts.map +1 -0
  25. package/dist/esm/Field.js +11 -0
  26. package/dist/esm/Field.js.map +1 -0
  27. package/dist/esm/Fields.d.ts +8 -0
  28. package/dist/esm/Fields.d.ts.map +1 -0
  29. package/dist/esm/Fields.js +26 -0
  30. package/dist/esm/Fields.js.map +1 -0
  31. package/dist/esm/Guid.d.ts +13 -0
  32. package/dist/esm/Guid.d.ts.map +1 -0
  33. package/dist/{Guid.js → esm/Guid.js} +3 -5
  34. package/dist/esm/Guid.js.map +1 -0
  35. package/dist/esm/IEquatable.d.ts +4 -0
  36. package/dist/esm/IEquatable.d.ts.map +1 -0
  37. package/dist/esm/JsonSerializer.d.ts +9 -0
  38. package/dist/esm/JsonSerializer.d.ts.map +1 -0
  39. package/dist/esm/JsonSerializer.js +68 -0
  40. package/dist/esm/JsonSerializer.js.map +1 -0
  41. package/dist/esm/PropertyAccessor.d.ts +2 -0
  42. package/dist/esm/PropertyAccessor.d.ts.map +1 -0
  43. package/dist/esm/PropertyAccessorDescriptor.d.ts +10 -0
  44. package/dist/esm/PropertyAccessorDescriptor.d.ts.map +1 -0
  45. package/dist/{PropertyAccessorDescriptor.js → esm/PropertyAccessorDescriptor.js} +3 -5
  46. package/dist/esm/PropertyAccessorDescriptor.js.map +1 -0
  47. package/dist/esm/PropertyPathResolverProxyHandler.d.ts +12 -0
  48. package/dist/esm/PropertyPathResolverProxyHandler.d.ts.map +1 -0
  49. package/dist/{PropertyPathResolverProxyHandler.js → esm/PropertyPathResolverProxyHandler.js} +3 -5
  50. package/dist/esm/PropertyPathResolverProxyHandler.js.map +1 -0
  51. package/dist/esm/derivedTypeDecorator.d.ts +3 -0
  52. package/dist/esm/derivedTypeDecorator.d.ts.map +1 -0
  53. package/dist/esm/derivedTypeDecorator.js +11 -0
  54. package/dist/esm/derivedTypeDecorator.js.map +1 -0
  55. package/dist/esm/fieldDecorator.d.ts +3 -0
  56. package/dist/esm/fieldDecorator.d.ts.map +1 -0
  57. package/dist/esm/fieldDecorator.js +10 -0
  58. package/dist/esm/fieldDecorator.js.map +1 -0
  59. package/dist/esm/index.d.ts +13 -0
  60. package/dist/esm/index.d.ts.map +1 -0
  61. package/dist/esm/index.js +10 -0
  62. package/dist/esm/index.js.map +1 -0
  63. package/fieldDecorator.ts +11 -0
  64. package/for_Fields/when_adding_fiields_to_type.ts +42 -0
  65. package/for_JsonSerializer/when_deserializing_complex_nested_object_with_multiple_wellknown_types.ts +116 -0
  66. package/for_JsonSerializer/when_deserializing_json_array.ts +44 -0
  67. package/for_JsonSerializer/when_deserializing_object_with_any_object_on_it.ts +30 -0
  68. package/index.ts +6 -0
  69. package/package.json +25 -15
  70. package/dist/Constructor.d.ts +0 -2
  71. package/dist/Constructor.d.ts.map +0 -1
  72. package/dist/Constructor.js +0 -3
  73. package/dist/Constructor.js.map +0 -1
  74. package/dist/Guid.d.ts.map +0 -1
  75. package/dist/Guid.js.map +0 -1
  76. package/dist/IEquatable.d.ts.map +0 -1
  77. package/dist/IEquatable.js +0 -3
  78. package/dist/IEquatable.js.map +0 -1
  79. package/dist/PropertyAccessor.d.ts +0 -2
  80. package/dist/PropertyAccessor.d.ts.map +0 -1
  81. package/dist/PropertyAccessor.js +0 -3
  82. package/dist/PropertyAccessor.js.map +0 -1
  83. package/dist/PropertyAccessorDescriptor.d.ts.map +0 -1
  84. package/dist/PropertyAccessorDescriptor.js.map +0 -1
  85. package/dist/PropertyPathResolverProxyHandler.d.ts.map +0 -1
  86. package/dist/PropertyPathResolverProxyHandler.js.map +0 -1
  87. package/dist/for_Guid/when_checking_equality/of_a_guid_and_a_number.d.ts +0 -2
  88. package/dist/for_Guid/when_checking_equality/of_a_guid_and_a_number.d.ts.map +0 -1
  89. package/dist/for_Guid/when_checking_equality/of_a_guid_and_a_number.js +0 -9
  90. package/dist/for_Guid/when_checking_equality/of_a_guid_and_a_number.js.map +0 -1
  91. package/dist/for_Guid/when_checking_equality/of_two_different_guids.d.ts +0 -2
  92. package/dist/for_Guid/when_checking_equality/of_two_different_guids.d.ts.map +0 -1
  93. package/dist/for_Guid/when_checking_equality/of_two_different_guids.js +0 -9
  94. package/dist/for_Guid/when_checking_equality/of_two_different_guids.js.map +0 -1
  95. package/dist/for_Guid/when_checking_equality/of_two_different_guids_when_one_is_a_string.d.ts +0 -2
  96. package/dist/for_Guid/when_checking_equality/of_two_different_guids_when_one_is_a_string.d.ts.map +0 -1
  97. package/dist/for_Guid/when_checking_equality/of_two_different_guids_when_one_is_a_string.js +0 -9
  98. package/dist/for_Guid/when_checking_equality/of_two_different_guids_when_one_is_a_string.js.map +0 -1
  99. package/dist/for_Guid/when_checking_equality/of_two_equal_guids.d.ts +0 -2
  100. package/dist/for_Guid/when_checking_equality/of_two_equal_guids.d.ts.map +0 -1
  101. package/dist/for_Guid/when_checking_equality/of_two_equal_guids.js +0 -9
  102. package/dist/for_Guid/when_checking_equality/of_two_equal_guids.js.map +0 -1
  103. package/dist/for_Guid/when_checking_equality/of_two_equal_guids_when_one_is_a_string.d.ts +0 -2
  104. package/dist/for_Guid/when_checking_equality/of_two_equal_guids_when_one_is_a_string.d.ts.map +0 -1
  105. package/dist/for_Guid/when_checking_equality/of_two_equal_guids_when_one_is_a_string.js +0 -9
  106. package/dist/for_Guid/when_checking_equality/of_two_equal_guids_when_one_is_a_string.js.map +0 -1
  107. package/dist/for_Guid/when_constructing_using_uint8array.d.ts +0 -2
  108. package/dist/for_Guid/when_constructing_using_uint8array.d.ts.map +0 -1
  109. package/dist/for_Guid/when_constructing_using_uint8array.js +0 -10
  110. package/dist/for_Guid/when_constructing_using_uint8array.js.map +0 -1
  111. package/dist/for_Guid/when_converting_to_string.d.ts +0 -2
  112. package/dist/for_Guid/when_converting_to_string.d.ts.map +0 -1
  113. package/dist/for_Guid/when_converting_to_string.js +0 -11
  114. package/dist/for_Guid/when_converting_to_string.js.map +0 -1
  115. package/dist/for_Guid/when_creating.d.ts +0 -2
  116. package/dist/for_Guid/when_creating.d.ts.map +0 -1
  117. package/dist/for_Guid/when_creating.js +0 -8
  118. package/dist/for_Guid/when_creating.js.map +0 -1
  119. package/dist/for_Guid/when_getting_as/and_input_is_specific_type.d.ts +0 -2
  120. package/dist/for_Guid/when_getting_as/and_input_is_specific_type.d.ts.map +0 -1
  121. package/dist/for_Guid/when_getting_as/and_input_is_specific_type.js +0 -12
  122. package/dist/for_Guid/when_getting_as/and_input_is_specific_type.js.map +0 -1
  123. package/dist/for_Guid/when_getting_as/and_input_is_string.d.ts +0 -2
  124. package/dist/for_Guid/when_getting_as/and_input_is_string.d.ts.map +0 -1
  125. package/dist/for_Guid/when_getting_as/and_input_is_string.js +0 -11
  126. package/dist/for_Guid/when_getting_as/and_input_is_string.js.map +0 -1
  127. package/dist/for_Guid/when_getting_empty.d.ts +0 -2
  128. package/dist/for_Guid/when_getting_empty.d.ts.map +0 -1
  129. package/dist/for_Guid/when_getting_empty.js +0 -11
  130. package/dist/for_Guid/when_getting_empty.js.map +0 -1
  131. package/dist/for_Guid/when_parsing.d.ts +0 -2
  132. package/dist/for_Guid/when_parsing.d.ts.map +0 -1
  133. package/dist/for_Guid/when_parsing.js +0 -10
  134. package/dist/for_Guid/when_parsing.js.map +0 -1
  135. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_on_object.d.ts +0 -2
  136. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_on_object.d.ts.map +0 -1
  137. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_on_object.js +0 -19
  138. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_on_object.js.map +0 -1
  139. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_three_levels_down.d.ts +0 -2
  140. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_three_levels_down.d.ts.map +0 -1
  141. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_three_levels_down.js +0 -31
  142. package/dist/for_PropertyPathResolverProxyHandler/when_accessing_property_three_levels_down.js.map +0 -1
  143. package/dist/index.d.ts +0 -7
  144. package/dist/index.d.ts.map +0 -1
  145. package/dist/index.js +0 -10
  146. package/dist/index.js.map +0 -1
  147. package/dist/tsconfig.tsbuildinfo +0 -1
  148. /package/{dist → d.yarnist/cjs}/Guid.d.ts +0 -0
  149. /package/{dist → d.yarnist/cjs}/IEquatable.d.ts +0 -0
  150. /package/{dist → d.yarnist/cjs}/PropertyAccessorDescriptor.d.ts +0 -0
  151. /package/{dist → d.yarnist/cjs}/PropertyPathResolverProxyHandler.d.ts +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_different_guids.d.ts","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_different_guids.ts"],"names":[],"mappings":""}
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../../Guid");
4
- describe('when checking equality of two different guids', () => {
5
- const guid1 = Guid_1.Guid.parse('1a0a061b-3533-4d91-990a-524b7e6ae6a9');
6
- const guid2 = Guid_1.Guid.parse('5262a2bf-bf1a-4af5-a96f-83f455581dec');
7
- it('should not be the same', () => guid1.equals(guid2).should.not.be.true);
8
- });
9
- //# sourceMappingURL=of_two_different_guids.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_different_guids.js","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_different_guids.ts"],"names":[],"mappings":";;AAGA,qCAAkC;AAElC,QAAQ,CAAC,+CAA+C,EAAE,GAAG,EAAE;IAC3D,MAAM,KAAK,GAAG,WAAI,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC;IACjE,MAAM,KAAK,GAAG,WAAI,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC;IAEjE,EAAE,CAAC,wBAAwB,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;AAC/E,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=of_two_different_guids_when_one_is_a_string.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_different_guids_when_one_is_a_string.d.ts","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_different_guids_when_one_is_a_string.ts"],"names":[],"mappings":""}
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../../Guid");
4
- describe('when checking equality of two different guids when one is a string', () => {
5
- const guid1 = Guid_1.Guid.parse('8c9dad7d-7c4e-4d32-ac89-44561b0c3bb1');
6
- const guid2 = '437a5784-593b-477c-8685-8b52967b7ab0';
7
- it('should be the same', () => guid1.equals(guid2).should.not.be.true);
8
- });
9
- //# sourceMappingURL=of_two_different_guids_when_one_is_a_string.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_different_guids_when_one_is_a_string.js","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_different_guids_when_one_is_a_string.ts"],"names":[],"mappings":";;AAGA,qCAAkC;AAElC,QAAQ,CAAC,oEAAoE,EAAE,GAAG,EAAE;IAChF,MAAM,KAAK,GAAG,WAAI,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC;IACjE,MAAM,KAAK,GAAG,sCAAsC,CAAC;IAErD,EAAE,CAAC,oBAAoB,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;AAC3E,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=of_two_equal_guids.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_equal_guids.d.ts","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_equal_guids.ts"],"names":[],"mappings":""}
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../../Guid");
4
- describe('when checking equality of two equal guids', () => {
5
- const guid1 = Guid_1.Guid.parse('1a0a061b-3533-4d91-990a-524b7e6ae6a9');
6
- const guid2 = Guid_1.Guid.parse('1a0a061b-3533-4d91-990a-524b7e6ae6a9');
7
- it('should be the same', () => guid1.equals(guid2).should.be.true);
8
- });
9
- //# sourceMappingURL=of_two_equal_guids.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_equal_guids.js","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_equal_guids.ts"],"names":[],"mappings":";;AAGA,qCAAkC;AAElC,QAAQ,CAAC,2CAA2C,EAAE,GAAG,EAAE;IACvD,MAAM,KAAK,GAAG,WAAI,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC;IACjE,MAAM,KAAK,GAAG,WAAI,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC;IAEjE,EAAE,CAAC,oBAAoB,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;AACvE,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=of_two_equal_guids_when_one_is_a_string.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_equal_guids_when_one_is_a_string.d.ts","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_equal_guids_when_one_is_a_string.ts"],"names":[],"mappings":""}
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../../Guid");
4
- describe('when checking equality of two equal guids when one is a string', () => {
5
- const guid1 = Guid_1.Guid.parse('8c9dad7d-7c4e-4d32-ac89-44561b0c3bb1');
6
- const guid2 = '8c9dad7d-7c4e-4d32-ac89-44561b0c3bb1';
7
- it('should be the same', () => guid1.equals(guid2).should.be.true);
8
- });
9
- //# sourceMappingURL=of_two_equal_guids_when_one_is_a_string.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"of_two_equal_guids_when_one_is_a_string.js","sourceRoot":"","sources":["../../../for_Guid/when_checking_equality/of_two_equal_guids_when_one_is_a_string.ts"],"names":[],"mappings":";;AAGA,qCAAkC;AAElC,QAAQ,CAAC,gEAAgE,EAAE,GAAG,EAAE;IAC5E,MAAM,KAAK,GAAG,WAAI,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC;IACjE,MAAM,KAAK,GAAG,sCAAsC,CAAC;IAErD,EAAE,CAAC,oBAAoB,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;AACvE,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=when_constructing_using_uint8array.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_constructing_using_uint8array.d.ts","sourceRoot":"","sources":["../../for_Guid/when_constructing_using_uint8array.ts"],"names":[],"mappings":""}
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../Guid");
4
- describe('when constructing using uint8array', () => {
5
- const firstGuid = Guid_1.Guid.create();
6
- const bytes = new Uint8Array(firstGuid.bytes);
7
- const guid = new Guid_1.Guid(bytes);
8
- it('should be a guid with the expected bytes', () => guid.bytes.should.contain(firstGuid.bytes));
9
- });
10
- //# sourceMappingURL=when_constructing_using_uint8array.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_constructing_using_uint8array.js","sourceRoot":"","sources":["../../for_Guid/when_constructing_using_uint8array.ts"],"names":[],"mappings":";;AAGA,kCAA+B;AAE/B,QAAQ,CAAC,oCAAoC,EAAE,GAAG,EAAE;IAChD,MAAM,SAAS,GAAG,WAAI,CAAC,MAAM,EAAE,CAAC;IAChC,MAAM,KAAK,GAAG,IAAI,UAAU,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;IAC9C,MAAM,IAAI,GAAG,IAAI,WAAI,CAAC,KAAK,CAAC,CAAC;IAE7B,EAAE,CAAC,0CAA0C,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC;AACrG,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=when_converting_to_string.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_converting_to_string.d.ts","sourceRoot":"","sources":["../../for_Guid/when_converting_to_string.ts"],"names":[],"mappings":""}
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../Guid");
4
- describe('when converting to string', () => {
5
- const guid = Guid_1.Guid.create();
6
- const regex = new RegExp('^({{0,1}([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}}{0,1})');
7
- const stringVersion = guid.toString();
8
- const match = stringVersion.match(regex);
9
- it('should be in the correct format', () => match === null || match === void 0 ? void 0 : match.should.not.be.null);
10
- });
11
- //# sourceMappingURL=when_converting_to_string.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_converting_to_string.js","sourceRoot":"","sources":["../../for_Guid/when_converting_to_string.ts"],"names":[],"mappings":";;AAGA,kCAA+B;AAE/B,QAAQ,CAAC,2BAA2B,EAAE,GAAG,EAAE;IACvC,MAAM,IAAI,GAAG,WAAI,CAAC,MAAM,EAAE,CAAC;IAC3B,MAAM,KAAK,GAAG,IAAI,MAAM,CAAC,sGAAsG,CAAC,CAAC;IAEjI,MAAM,aAAa,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC;IAEtC,MAAM,KAAK,GAAG,aAAa,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IACzC,EAAE,CAAC,iCAAiC,EAAE,GAAG,EAAE,CAAC,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;AAC3E,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=when_creating.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_creating.d.ts","sourceRoot":"","sources":["../../for_Guid/when_creating.ts"],"names":[],"mappings":""}
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../Guid");
4
- describe('when creating', () => {
5
- const guid = Guid_1.Guid.create();
6
- it('should hold a 16 byte array', () => guid.bytes.should.be.lengthOf(16));
7
- });
8
- //# sourceMappingURL=when_creating.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_creating.js","sourceRoot":"","sources":["../../for_Guid/when_creating.ts"],"names":[],"mappings":";;AAGA,kCAA+B;AAE/B,QAAQ,CAAC,eAAe,EAAE,GAAG,EAAE;IAC3B,MAAM,IAAI,GAAG,WAAI,CAAC,MAAM,EAAE,CAAC;IAE3B,EAAE,CAAC,6BAA6B,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;AAC/E,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=and_input_is_specific_type.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"and_input_is_specific_type.d.ts","sourceRoot":"","sources":["../../../for_Guid/when_getting_as/and_input_is_specific_type.ts"],"names":[],"mappings":""}
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../../Guid");
4
- class MyType extends Guid_1.Guid {
5
- }
6
- describe('when getting as and input is specific type', () => {
7
- const guidAsString = '0be23d5b-90d6-45f4-94fb-f1537caeea73';
8
- const input = MyType.parse(guidAsString);
9
- const result = Guid_1.Guid.as(input);
10
- it('should return what was given', () => result.should.equal(input));
11
- });
12
- //# sourceMappingURL=and_input_is_specific_type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"and_input_is_specific_type.js","sourceRoot":"","sources":["../../../for_Guid/when_getting_as/and_input_is_specific_type.ts"],"names":[],"mappings":";;AAGA,qCAAkC;AAElC,MAAM,MAAO,SAAQ,WAAI;CAAG;AAE5B,QAAQ,CAAC,4CAA4C,EAAE,GAAG,EAAE;IACxD,MAAM,YAAY,GAAG,sCAAsC,CAAC;IAC5D,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,YAAY,CAAW,CAAC;IACnD,MAAM,MAAM,GAAG,WAAI,CAAC,EAAE,CAAS,KAAK,CAAC,CAAC;IAEtC,EAAE,CAAC,8BAA8B,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC;AACzE,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=and_input_is_string.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"and_input_is_string.d.ts","sourceRoot":"","sources":["../../../for_Guid/when_getting_as/and_input_is_string.ts"],"names":[],"mappings":""}
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../../Guid");
4
- class MyType extends Guid_1.Guid {
5
- }
6
- describe('when getting as and input is string', () => {
7
- const guidAsString = '0be23d5b-90d6-45f4-94fb-f1537caeea73';
8
- const result = Guid_1.Guid.as(guidAsString);
9
- it('should return a guid with the expected identifier', () => result.toString().should.equal(guidAsString));
10
- });
11
- //# sourceMappingURL=and_input_is_string.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"and_input_is_string.js","sourceRoot":"","sources":["../../../for_Guid/when_getting_as/and_input_is_string.ts"],"names":[],"mappings":";;AAGA,qCAAkC;AAElC,MAAM,MAAO,SAAQ,WAAI;CAAG;AAE5B,QAAQ,CAAC,qCAAqC,EAAE,GAAG,EAAE;IACjD,MAAM,YAAY,GAAG,sCAAsC,CAAC;IAC5D,MAAM,MAAM,GAAG,WAAI,CAAC,EAAE,CAAS,YAAY,CAAC,CAAC;IAE7C,EAAE,CAAC,mDAAmD,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC;AAChH,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=when_getting_empty.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_getting_empty.d.ts","sourceRoot":"","sources":["../../for_Guid/when_getting_empty.ts"],"names":[],"mappings":""}
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../Guid");
4
- describe('when getting empty', () => {
5
- const empty = Guid_1.Guid.empty;
6
- it('should return a guid with 16 bytes all set to 0', () => {
7
- empty.bytes.should.be.lengthOf(16);
8
- empty.bytes.some((_) => _ !== 0).should.be.false;
9
- });
10
- });
11
- //# sourceMappingURL=when_getting_empty.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_getting_empty.js","sourceRoot":"","sources":["../../for_Guid/when_getting_empty.ts"],"names":[],"mappings":";;AAGA,kCAA+B;AAE/B,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;IAChC,MAAM,KAAK,GAAG,WAAI,CAAC,KAAK,CAAC;IAEzB,EAAE,CAAC,iDAAiD,EAAE,GAAG,EAAE;QACvD,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;QACnC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,KAAK,CAAC;IAC1D,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=when_parsing.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_parsing.d.ts","sourceRoot":"","sources":["../../for_Guid/when_parsing.ts"],"names":[],"mappings":""}
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const Guid_1 = require("../Guid");
4
- describe('when parsing', () => {
5
- const originalAsString = '02f7990b-0b05-af48-aa1a-df78be031808';
6
- const parsed = Guid_1.Guid.parse(originalAsString);
7
- const parsedAsString = parsed.toString();
8
- it('should be the same', () => parsedAsString.should.equal(originalAsString));
9
- });
10
- //# sourceMappingURL=when_parsing.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_parsing.js","sourceRoot":"","sources":["../../for_Guid/when_parsing.ts"],"names":[],"mappings":";;AAGA,kCAA+B;AAE/B,QAAQ,CAAC,cAAc,EAAE,GAAG,EAAE;IAC1B,MAAM,gBAAgB,GAAG,sCAAsC,CAAC;IAChE,MAAM,MAAM,GAAG,WAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC5C,MAAM,cAAc,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC;IAEzC,EAAE,CAAC,oBAAoB,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAClF,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=when_accessing_property_on_object.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_accessing_property_on_object.d.ts","sourceRoot":"","sources":["../../for_PropertyPathResolverProxyHandler/when_accessing_property_on_object.ts"],"names":[],"mappings":""}
@@ -1,19 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const PropertyPathResolverProxyHandler_1 = require("../PropertyPathResolverProxyHandler");
4
- class MyType {
5
- get value() {
6
- return 42;
7
- }
8
- }
9
- describe('when accessing property three levels down', () => {
10
- const handler = new PropertyPathResolverProxyHandler_1.PropertyPathResolverProxyHandler();
11
- const proxy = new Proxy({}, handler);
12
- const accessor = (_) => _.value;
13
- accessor(proxy);
14
- it('should hold the entry property for the second level', () => handler.property.should.equal('value'));
15
- it('should hold a full path', () => handler.path.should.equal('value'));
16
- it('should only have 1 segment', () => handler.segments.should.be.lengthOf(1));
17
- it('should hold the value segment third', () => handler.segments[0].should.equal('value'));
18
- });
19
- //# sourceMappingURL=when_accessing_property_on_object.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_accessing_property_on_object.js","sourceRoot":"","sources":["../../for_PropertyPathResolverProxyHandler/when_accessing_property_on_object.ts"],"names":[],"mappings":";;AAGA,0FAAuF;AAEvF,MAAM,MAAM;IACR,IAAI,KAAK;QACL,OAAO,EAAE,CAAC;IACd,CAAC;CACJ;AAED,QAAQ,CAAC,2CAA2C,EAAE,GAAG,EAAE;IACvD,MAAM,OAAO,GAAG,IAAI,mEAAgC,EAAE,CAAC;IACvD,MAAM,KAAK,GAAG,IAAI,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;IACrC,MAAM,QAAQ,GAAG,CAAC,CAAS,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC;IACxC,QAAQ,CAAC,KAAK,CAAC,CAAC;IAEhB,EAAE,CAAC,qDAAqD,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;IACxG,EAAE,CAAC,yBAAyB,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;IACxE,EAAE,CAAC,4BAA4B,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;IAC/E,EAAE,CAAC,qCAAqC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;AAC/F,CAAC,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=when_accessing_property_three_levels_down.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_accessing_property_three_levels_down.d.ts","sourceRoot":"","sources":["../../for_PropertyPathResolverProxyHandler/when_accessing_property_three_levels_down.ts"],"names":[],"mappings":""}
@@ -1,31 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const PropertyPathResolverProxyHandler_1 = require("../PropertyPathResolverProxyHandler");
4
- class ThirdLevelType {
5
- get value() {
6
- return 42;
7
- }
8
- }
9
- class SecondLevelType {
10
- get thirdLevel() {
11
- return new ThirdLevelType();
12
- }
13
- }
14
- class TopLevelType {
15
- constructor() {
16
- this.secondLevel = new SecondLevelType();
17
- }
18
- }
19
- describe('when accessing property three levels down', () => {
20
- const handler = new PropertyPathResolverProxyHandler_1.PropertyPathResolverProxyHandler();
21
- const proxy = new Proxy({}, handler);
22
- const accessor = (_) => _.secondLevel.thirdLevel.value;
23
- accessor(proxy);
24
- it('should hold the entry property for the second level', () => handler.property.should.equal('secondLevel'));
25
- it('should hold a full path', () => handler.path.should.equal('secondLevel.thirdLevel.value'));
26
- it('should only have 3 segments', () => handler.segments.should.be.lengthOf(3));
27
- it('should hold the second level segment first', () => handler.segments[0].should.equal('secondLevel'));
28
- it('should hold the third level segment second', () => handler.segments[1].should.equal('thirdLevel'));
29
- it('should hold the value segment third', () => handler.segments[2].should.equal('value'));
30
- });
31
- //# sourceMappingURL=when_accessing_property_three_levels_down.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"when_accessing_property_three_levels_down.js","sourceRoot":"","sources":["../../for_PropertyPathResolverProxyHandler/when_accessing_property_three_levels_down.ts"],"names":[],"mappings":";;AAGA,0FAAuF;AAEvF,MAAM,cAAc;IAChB,IAAI,KAAK;QACL,OAAO,EAAE,CAAC;IACd,CAAC;CACJ;AAED,MAAM,eAAe;IACjB,IAAI,UAAU;QACV,OAAO,IAAI,cAAc,EAAE,CAAC;IAChC,CAAC;CACJ;AAED,MAAM,YAAY;IAGd;QACI,IAAI,CAAC,WAAW,GAAG,IAAI,eAAe,EAAE,CAAC;IAC7C,CAAC;CACJ;AAED,QAAQ,CAAC,2CAA2C,EAAE,GAAG,EAAE;IACvD,MAAM,OAAO,GAAG,IAAI,mEAAgC,EAAE,CAAC;IACvD,MAAM,KAAK,GAAG,IAAI,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;IACrC,MAAM,QAAQ,GAAG,CAAC,CAAe,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,KAAK,CAAC;IACrE,QAAQ,CAAC,KAAK,CAAC,CAAC;IAEhB,EAAE,CAAC,qDAAqD,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9G,EAAE,CAAC,yBAAyB,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,8BAA8B,CAAC,CAAC,CAAC;IAC/F,EAAE,CAAC,6BAA6B,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;IAChF,EAAE,CAAC,4CAA4C,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC;IACxG,EAAE,CAAC,4CAA4C,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC;IACvG,EAAE,CAAC,qCAAqC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;AAC/F,CAAC,CAAC,CAAC"}
package/dist/index.d.ts DELETED
@@ -1,7 +0,0 @@
1
- export * from './Constructor';
2
- export * from './Guid';
3
- export * from './IEquatable';
4
- export * from './PropertyAccessor';
5
- export * from './PropertyAccessorDescriptor';
6
- export * from './PropertyPathResolverProxyHandler';
7
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAGA,cAAc,eAAe,CAAC;AAC9B,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oCAAoC,CAAC"}
package/dist/index.js DELETED
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- (0, tslib_1.__exportStar)(require("./Constructor"), exports);
5
- (0, tslib_1.__exportStar)(require("./Guid"), exports);
6
- (0, tslib_1.__exportStar)(require("./IEquatable"), exports);
7
- (0, tslib_1.__exportStar)(require("./PropertyAccessor"), exports);
8
- (0, tslib_1.__exportStar)(require("./PropertyAccessorDescriptor"), exports);
9
- (0, tslib_1.__exportStar)(require("./PropertyPathResolverProxyHandler"), exports);
10
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAGA,6DAA8B;AAC9B,sDAAuB;AACvB,4DAA6B;AAC7B,kEAAmC;AACnC,4EAA6C;AAC7C,kFAAmD"}
@@ -1 +0,0 @@
1
- {"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es6.d.ts","../../../../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.es2020.bigint.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.esnext.intl.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../Constructor.ts","../IEquatable.ts","../Guid.ts","../PropertyAccessor.ts","../PropertyAccessorDescriptor.ts","../PropertyPathResolverProxyHandler.ts","../index.ts","../for_Guid/when_constructing_using_uint8array.ts","../for_Guid/when_converting_to_string.ts","../for_Guid/when_creating.ts","../for_Guid/when_getting_empty.ts","../for_Guid/when_parsing.ts","../for_Guid/when_checking_equality/of_a_guid_and_a_number.ts","../for_Guid/when_checking_equality/of_two_different_guids.ts","../for_Guid/when_checking_equality/of_two_different_guids_when_one_is_a_string.ts","../for_Guid/when_checking_equality/of_two_equal_guids.ts","../for_Guid/when_checking_equality/of_two_equal_guids_when_one_is_a_string.ts","../for_Guid/when_getting_as/and_input_is_specific_type.ts","../for_Guid/when_getting_as/and_input_is_string.ts","../for_PropertyPathResolverProxyHandler/when_accessing_property_on_object.ts","../for_PropertyPathResolverProxyHandler/when_accessing_property_three_levels_down.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","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/bonjour/index.d.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/chai-as-promised/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../../node_modules/@types/d3-array/index.d.ts","../../../../node_modules/@types/d3-axis/node_modules/@types/d3-selection/index.d.ts","../../../../node_modules/@types/d3-axis/index.d.ts","../../../../node_modules/@types/d3-format/index.d.ts","../../../../node_modules/@types/d3-path/index.d.ts","../../../../node_modules/@types/d3-shape/index.d.ts","../../../../node_modules/@types/d3-sankey/index.d.ts","../../../../node_modules/@types/d3-time/index.d.ts","../../../../node_modules/@types/d3-scale/index.d.ts","../../../../node_modules/@types/d3-selection/index.d.ts","../../../../node_modules/@types/d3-time-format/index.d.ts","../../../../node_modules/@types/eslint/helpers.d.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/eslint/index.d.ts","../../../../node_modules/@types/eslint-scope/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/minimatch/index.d.ts","../../../../node_modules/@types/glob/index.d.ts","../../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../../node_modules/@types/http-proxy/index.d.ts","../../../../node_modules/@types/json5/index.d.ts","../../../../node_modules/@types/minimist/index.d.ts","../../../../node_modules/@types/mocha/index.d.ts","../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/@types/parse-json/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/react-router/node_modules/@types/history/DOMUtils.d.ts","../../../../node_modules/@types/react-router/node_modules/@types/history/createBrowserHistory.d.ts","../../../../node_modules/@types/react-router/node_modules/@types/history/createHashHistory.d.ts","../../../../node_modules/@types/react-router/node_modules/@types/history/createMemoryHistory.d.ts","../../../../node_modules/@types/react-router/node_modules/@types/history/LocationUtils.d.ts","../../../../node_modules/@types/react-router/node_modules/@types/history/PathUtils.d.ts","../../../../node_modules/@types/react-router/node_modules/@types/history/index.d.ts","../../../../node_modules/@types/react-router/index.d.ts","../../../../node_modules/history/index.d.ts","../../../../node_modules/react-router/index.d.ts","../../../../node_modules/@types/react-router-dom/index.d.ts","../../../../node_modules/@types/retry/index.d.ts","../../../../node_modules/@types/scheduler/index.d.ts","../../../../node_modules/@types/serve-index/index.d.ts","../../../../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../../node_modules/@types/sinon/index.d.ts","../../../../node_modules/@types/sinon-chai/index.d.ts","../../../../node_modules/@types/sockjs/index.d.ts","../../../../node_modules/@types/ws/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","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":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"1bc82f5b3bb93df76d19730c84467b0b346187198537135d63a672956f323720","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","7b6289d30be061bd8096ab4c3a92d6c9fba01daed236934d6aa3de25efe9a47d","e1f9360da3dffc32315b792f393cdf011cc82720f31ea5fa257b336e1af1328a","b036b81d2f2b068082cf868b44b2d681171995366609520fe9b098bd12d3a195","d97b4ebec1d378437aeb5bbd3726d710bbc0ea5e63a51501801ac2c40aec7692","8b31f2cce1607616b12dff3df9470bf7aa317ba62790980b2cb03d1db54754a5","34e60fc4467c856e1b5eb54d5c20c7238ee6e3585c28dd6dda121cf7feea20b3","2c7b6b98ff1d1306875f134a59124e46ed2d286399a6c1a07a5133766ba3117b","4cfb74bea74e6d0c33720add86c6f0c100e36905df73e19422e460d8f6756b68","bc275115370bbc36c8c82718be6a27090cc8da555b6025be757942825f9fed16","7dbf14495cd95bd9898b59982a7d84ef5db226f384c25b08a54356604a2640b9","e74b3a3ad91cfbae791ff46b7240db3a6ec84fef67724f868e334114b1e87ea6","4d81c3d9fc504c2e745922a3f218ce52dbf5968a3dcf434b5e08b7b930f2cdd5","311b59cf74a9dc5b0ab05ac44f897e2bd350997da07218f2db21d9130c3e41c8","5b6d2af797466542ffc7ec3c3fef851c58ed96125eb08536e5507eb0ac4480e8","4bc01f74186e65aad7f5b8d6465483a35dc13f2a28200adf795b060eb6fc76e3","fd3bde4f354b77e0c3bcccfdd19fdd6460abe2bf547c88460c887e8fb2e3c5c9","c1706a2bd76b6511aa24a15b130833068c9845070298723b3369123f26c29237","1deb9038f085ee28e13f5cbd265a01839e023bf6d75678a7dfb9d176a2c9ef23","b05eecb7ecbb20f48e37a1d2eb978867657b013311369e2b7812a35cbbde622c","2ae78d0f537cb1b93dac4605950a6ee2c23769aacd46e04c2250914655108304","34fd0583f0fc684effbaa6254339793cd7af8ca1d44dc87517c56112be6680ee","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"0b3eba6dca8c6e534d16ef7b7d76cb546cd3cbab616c8f71daa0a151b5412b9e","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"f6ae17283c6912c202004178339d6d22f8c9edfe4e335f9f11b555c631633daf","affectsGlobalScope":true},"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","902b129c38bb60e74ca051a6bf63376079c4443f94f824dd1a4243a7eaeeff3a","cb38bdb69fd521c2b8e347551d319e197fd694dd128021b20c4a1af88ba78848","b6fd6d9be1028626098d1c768904ce4942cdc63878fabbe923175c6c10e15c1e","cac645fe7c1ce40b08310ad79d98b3ee42f5e1ad963c9128d7d2993a8bdfdecc","9bbb0e9c08a0d81ca1068daf26c4ceb17a66450af5f6d7dabaae45210fe890cb",{"version":"17cc094401d1760f6ee0d3f100e40ab3e946e8eea2a7e81cc0dc37e3e475d880","affectsGlobalScope":true},"2ce27519d3c6094081fd194b455cb24c8502f7606a8d4ba116f4162e7856232c","589cbf58df97db61280be456952054f5d54070e87a2c371303844a4bb288d8fa","8dd18f58e9cb7310ce538c83c975533b4552158a1deefe165f7fe08e1aae778b","8222d0ec458ceea0ff26a35107920f8e9e7def4a3b1aaee209c66e2023862d29","eeed4c0dfd0cf09ee75c35c92e4cd2827d32facbf50b80a4b7eded2f6bd60099",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","25268f34b96a70787a58f530623fc1c8fc958f9e2a8bf1f9c3de930b46eed814","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"e8bf92aabac2b11e1bf60a0161039cd6f5f0cd9713863ca2289dd7b10eddece8","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","6c362c5d50652957065cf52f282a2bf0a456ed3713738d0ee1a9089dbb5b5fe7","50001cd4550147fb62c68902f6e0c1856d42c575f0f5f43efe8639f931838a50","7e2ed5933a5d8d72a04093e71e61ad61a3d4c2ed991262cae21118018cded19d","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","012a04966bcb8a6f522ccd21f6efac3d837f3ea806c55b5849556aad22777f38"],"options":{"allowSyntheticDefaultImports":true,"assumeChangesOnlyAffectDirectDependencies":true,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"jsx":4,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"stripInternal":true,"target":2},"fileIdsList":[[44,50,115],[44,50,52,115],[44,50,54,115],[44,50,53,115],[44,50,56,115],[44,50,51,52,53,54,55,56,115],[115],[90,115,122,123],[82,115,122],[115,126],[114,115,122,130],[90,115,122],[115,133],[115,137],[115,139],[115,136],[115,145,146],[115,143,144,145],[87,90,115,122,128,129],[115,124,129,130,149],[87,88,115,122,151],[87,90,92,95,104,114,115,122],[72,115],[75,115],[76,81,115],[77,87,88,95,104,114,115],[77,78,87,95,115],[79,115],[80,81,88,96,115],[81,104,111,115],[82,84,87,95,115],[83,115],[84,85,115],[86,87,115],[87,115],[87,88,89,104,114,115],[87,88,89,104,115],[90,95,104,114,115],[87,88,90,91,95,104,111,114,115],[90,92,104,111,114,115],[72,73,74,75,76,77,78,79,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,119,120,121],[87,93,115],[94,114,115],[84,87,95,104,115],[96,115],[97,115],[75,98,115],[99,113,115,119],[100,115],[101,115],[87,102,115],[102,103,115,117],[87,104,105,106,115],[104,106,115],[104,105,115],[107,115],[108,115],[87,109,110,115],[109,110,115],[81,95,104,111,115],[112,115],[95,113,115],[76,90,101,114,115],[81,115],[104,115,116],[115,117],[115,118],[76,81,87,89,98,104,114,115,117,119],[104,115,120],[49,115],[49,115,169,170],[49,115,167],[115,167],[115,161,167],[115,162,163,164,165,166],[45,46,47,48,115],[88,115,150],[90,115,122,148],[115,126,176],[115,175],[87,90,92,104,111,114,115,120,122],[49,115,169]],"referencedMap":[[51,1],[53,2],[52,1],[54,1],[55,3],[56,1],[63,4],[64,4],[65,4],[66,4],[67,4],[58,4],[59,4],[60,4],[68,4],[69,4],[61,4],[62,4],[70,5],[71,5],[57,6],[175,7],[124,8],[125,9],[127,10],[126,7],[131,11],[123,12],[132,7],[134,13],[133,7],[135,7],[136,7],[138,14],[140,15],[141,7],[137,16],[142,7],[139,7],[147,17],[143,7],[146,18],[145,7],[130,19],[150,20],[152,21],[153,7],[154,22],[144,7],[155,7],[148,7],[151,7],[156,7],[157,7],[72,23],[73,23],[75,24],[76,25],[77,26],[78,27],[79,28],[80,29],[81,30],[82,31],[83,32],[84,33],[85,33],[86,34],[87,35],[88,36],[89,37],[74,7],[121,7],[90,38],[91,39],[92,40],[122,41],[93,42],[94,43],[95,44],[96,45],[97,46],[98,47],[99,48],[100,49],[101,50],[102,51],[103,52],[104,53],[106,54],[105,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],[119,68],[120,69],[158,7],[159,7],[47,7],[129,7],[128,7],[160,70],[171,71],[168,72],[161,7],[165,73],[166,73],[162,74],[163,74],[164,74],[167,75],[45,7],[49,76],[50,70],[172,7],[173,7],[48,7],[174,77],[149,78],[177,79],[176,80],[178,12],[179,81],[46,7],[169,7],[170,82],[44,7],[9,7],[10,7],[14,7],[13,7],[3,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[4,7],[5,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[35,7],[36,7],[37,7],[8,7],[42,7],[38,7],[39,7],[40,7],[41,7],[2,7],[1,7],[43,7],[12,7],[11,7]],"exportedModulesMap":[[51,1],[53,2],[52,1],[54,1],[55,3],[56,1],[63,4],[64,4],[65,4],[66,4],[67,4],[58,4],[59,4],[60,4],[68,4],[69,4],[61,4],[62,4],[70,5],[71,5],[57,6],[175,7],[124,8],[125,9],[127,10],[126,7],[131,11],[123,12],[132,7],[134,13],[133,7],[135,7],[136,7],[138,14],[140,15],[141,7],[137,16],[142,7],[139,7],[147,17],[143,7],[146,18],[145,7],[130,19],[150,20],[152,21],[153,7],[154,22],[144,7],[155,7],[148,7],[151,7],[156,7],[157,7],[72,23],[73,23],[75,24],[76,25],[77,26],[78,27],[79,28],[80,29],[81,30],[82,31],[83,32],[84,33],[85,33],[86,34],[87,35],[88,36],[89,37],[74,7],[121,7],[90,38],[91,39],[92,40],[122,41],[93,42],[94,43],[95,44],[96,45],[97,46],[98,47],[99,48],[100,49],[101,50],[102,51],[103,52],[104,53],[106,54],[105,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],[119,68],[120,69],[158,7],[159,7],[47,7],[129,7],[128,7],[160,70],[171,71],[168,72],[161,7],[165,73],[166,73],[162,74],[163,74],[164,74],[167,75],[45,7],[49,76],[50,70],[172,7],[173,7],[48,7],[174,77],[149,78],[177,79],[176,80],[178,12],[179,81],[46,7],[169,7],[170,82],[44,7],[9,7],[10,7],[14,7],[13,7],[3,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[4,7],[5,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[35,7],[36,7],[37,7],[8,7],[42,7],[38,7],[39,7],[40,7],[41,7],[2,7],[1,7],[43,7],[12,7],[11,7]],"semanticDiagnosticsPerFile":[51,53,52,54,55,56,63,64,65,66,67,58,59,60,68,69,61,62,70,71,57,175,124,125,127,126,131,123,132,134,133,135,136,138,140,141,137,142,139,147,143,146,145,130,150,152,153,154,144,155,148,151,156,157,72,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,74,121,90,91,92,122,93,94,95,96,97,98,99,100,101,102,103,104,106,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,158,159,47,129,128,160,171,168,161,165,166,162,163,164,167,45,49,50,172,173,48,174,149,177,176,178,179,46,169,170,44,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,42,38,39,40,41,2,1,43,12,11]},"version":"4.5.4"}
File without changes
File without changes