@nikovirtala/projen-constructs 0.2.0 → 0.2.2

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 (631) hide show
  1. package/.jsii +1406 -66
  2. package/docs/api/.nojekyll +1 -0
  3. package/docs/api/assets/hierarchy.js +1 -0
  4. package/docs/api/assets/highlight.css +99 -0
  5. package/docs/api/assets/icons.js +18 -0
  6. package/docs/api/assets/icons.svg +1 -0
  7. package/docs/api/assets/main.js +60 -0
  8. package/docs/api/assets/navigation.js +1 -0
  9. package/docs/api/assets/search.js +1 -0
  10. package/docs/api/assets/style.css +1633 -0
  11. package/docs/api/classes/AwsCdkConstructLibraryProject.html +308 -0
  12. package/docs/api/classes/AwsCdkTypeScriptAppProject.html +306 -0
  13. package/docs/api/classes/JsiiProject.html +294 -0
  14. package/docs/api/classes/ProjectGenerator.html +38 -0
  15. package/docs/api/classes/TypeDoc.html +37 -0
  16. package/docs/api/classes/TypeScriptProject.html +294 -0
  17. package/docs/api/classes/Vitest.html +38 -0
  18. package/docs/api/enums/CommentStyle.html +11 -0
  19. package/docs/api/enums/CoverageProvider.html +7 -0
  20. package/docs/api/enums/CoverageReporter.html +11 -0
  21. package/docs/api/enums/EntryPointStrategy.html +11 -0
  22. package/docs/api/enums/Environment.html +12 -0
  23. package/docs/api/enums/LogLevel.html +13 -0
  24. package/docs/api/enums/Pool.html +17 -0
  25. package/docs/api/enums/ProjectType.html +47 -0
  26. package/docs/api/enums/Visibility.html +9 -0
  27. package/docs/api/functions/applyDefaults.html +1 -0
  28. package/docs/api/functions/toJson_TypeDocConfiguration.html +2 -0
  29. package/docs/api/hierarchy.html +1 -0
  30. package/docs/api/index.html +86 -0
  31. package/docs/api/interfaces/AwsCdkConstructLibraryProjectOptions.html +1075 -0
  32. package/docs/api/interfaces/AwsCdkTypeScriptAppProjectOptions.html +1026 -0
  33. package/docs/api/interfaces/Component.html +13 -0
  34. package/docs/api/interfaces/ComponentOptions.html +8 -0
  35. package/docs/api/interfaces/JsiiProjectOptions.html +1003 -0
  36. package/docs/api/interfaces/ProjectGeneratorOptions.html +49 -0
  37. package/docs/api/interfaces/TypeDocConfiguration.html +141 -0
  38. package/docs/api/interfaces/TypeDocOptions.html +9 -0
  39. package/docs/api/interfaces/TypeScriptProjectOptions.html +899 -0
  40. package/docs/api/interfaces/ValidationOptions.html +9 -0
  41. package/docs/api/interfaces/VitestConfigOptions.html +111 -0
  42. package/docs/api/interfaces/VitestOptions.html +13 -0
  43. package/docs/api/modules.html +1 -0
  44. package/docs/api/variables/defaultOptions.html +1 -0
  45. package/docs/api/variables/defaults.html +1 -0
  46. package/docs/api/variables/projectDefaultOptions.html +1 -0
  47. package/lib/components/typedoc.js +5 -1
  48. package/lib/components/vitest.js +1 -1
  49. package/lib/index.d.ts +1 -0
  50. package/lib/index.js +2 -1
  51. package/lib/project-generator.js +1 -1
  52. package/lib/projects/awscdk-construct-library.generated.js +1 -1
  53. package/lib/projects/awscdk-typescript-app.generated.js +1 -1
  54. package/lib/projects/jsii-options.generated.d.ts +11 -1
  55. package/lib/projects/jsii-options.generated.js +1 -1
  56. package/lib/projects/jsii.generated.js +5 -4
  57. package/lib/projects/typescript.generated.js +1 -1
  58. package/node_modules/@jsii/spec/LICENSE +202 -0
  59. package/node_modules/@jsii/spec/NOTICE +2 -0
  60. package/node_modules/@jsii/spec/README.md +13 -0
  61. package/node_modules/@jsii/spec/jest.config.mjs +9 -0
  62. package/node_modules/@jsii/spec/lib/assembly-utils.d.ts +59 -0
  63. package/node_modules/@jsii/spec/lib/assembly-utils.js +158 -0
  64. package/node_modules/@jsii/spec/lib/assembly.d.ts +920 -0
  65. package/node_modules/@jsii/spec/lib/assembly.js +203 -0
  66. package/node_modules/@jsii/spec/lib/configuration.d.ts +147 -0
  67. package/node_modules/@jsii/spec/lib/configuration.js +3 -0
  68. package/node_modules/@jsii/spec/lib/index.d.ts +7 -0
  69. package/node_modules/@jsii/spec/lib/index.js +23 -0
  70. package/node_modules/@jsii/spec/lib/name-tree.d.ts +60 -0
  71. package/node_modules/@jsii/spec/lib/name-tree.js +84 -0
  72. package/node_modules/@jsii/spec/lib/redirect.d.ts +33 -0
  73. package/node_modules/@jsii/spec/lib/redirect.js +46 -0
  74. package/node_modules/@jsii/spec/lib/validate-assembly.d.ts +4 -0
  75. package/node_modules/@jsii/spec/lib/validate-assembly.js +29 -0
  76. package/node_modules/@jsii/spec/package.json +41 -0
  77. package/node_modules/@jsii/spec/schema/assembly-redirect.schema.json +29 -0
  78. package/node_modules/@jsii/spec/schema/jsii-spec.schema.json +1110 -0
  79. package/node_modules/@mrgrain/jsii-struct-builder/LICENSE +202 -0
  80. package/node_modules/@mrgrain/jsii-struct-builder/README.md +387 -0
  81. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/index.d.ts +1 -0
  82. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/index.js +18 -0
  83. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/struct.d.ts +144 -0
  84. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/struct.js +163 -0
  85. package/node_modules/@mrgrain/jsii-struct-builder/lib/index.d.ts +3 -0
  86. package/node_modules/@mrgrain/jsii-struct-builder/lib/index.js +20 -0
  87. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/assembly.d.ts +2 -0
  88. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/assembly.js +76 -0
  89. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/index.d.ts +2 -0
  90. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/index.js +19 -0
  91. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/utils.d.ts +2 -0
  92. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/utils.js +14 -0
  93. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/index.d.ts +2 -0
  94. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/index.js +19 -0
  95. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/projen-struct.d.ts +90 -0
  96. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/projen-struct.js +112 -0
  97. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/ts-interface.d.ts +15 -0
  98. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/ts-interface.js +18 -0
  99. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/index.d.ts +1 -0
  100. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/index.js +18 -0
  101. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/typescript.d.ts +53 -0
  102. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/typescript.js +194 -0
  103. package/node_modules/@mrgrain/jsii-struct-builder/package.json +116 -0
  104. package/node_modules/ajv/.runkit_example.js +23 -0
  105. package/node_modules/ajv/LICENSE +22 -0
  106. package/node_modules/ajv/README.md +207 -0
  107. package/node_modules/ajv/dist/2019.d.ts +19 -0
  108. package/node_modules/ajv/dist/2019.js +61 -0
  109. package/node_modules/ajv/dist/2019.js.map +1 -0
  110. package/node_modules/ajv/dist/2020.d.ts +19 -0
  111. package/node_modules/ajv/dist/2020.js +55 -0
  112. package/node_modules/ajv/dist/2020.js.map +1 -0
  113. package/node_modules/ajv/dist/ajv.d.ts +18 -0
  114. package/node_modules/ajv/dist/ajv.js +50 -0
  115. package/node_modules/ajv/dist/ajv.js.map +1 -0
  116. package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  117. package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
  118. package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  119. package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  120. package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  121. package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  122. package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  123. package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  124. package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  125. package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  126. package/node_modules/ajv/dist/compile/errors.js +123 -0
  127. package/node_modules/ajv/dist/compile/errors.js.map +1 -0
  128. package/node_modules/ajv/dist/compile/index.d.ts +80 -0
  129. package/node_modules/ajv/dist/compile/index.js +242 -0
  130. package/node_modules/ajv/dist/compile/index.js.map +1 -0
  131. package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  132. package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  133. package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  134. package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  135. package/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
  136. package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  137. package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  138. package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  139. package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  140. package/node_modules/ajv/dist/compile/names.d.ts +20 -0
  141. package/node_modules/ajv/dist/compile/names.js +28 -0
  142. package/node_modules/ajv/dist/compile/names.js.map +1 -0
  143. package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  144. package/node_modules/ajv/dist/compile/ref_error.js +12 -0
  145. package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  146. package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  147. package/node_modules/ajv/dist/compile/resolve.js +155 -0
  148. package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  149. package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  150. package/node_modules/ajv/dist/compile/rules.js +26 -0
  151. package/node_modules/ajv/dist/compile/rules.js.map +1 -0
  152. package/node_modules/ajv/dist/compile/util.d.ts +40 -0
  153. package/node_modules/ajv/dist/compile/util.js +178 -0
  154. package/node_modules/ajv/dist/compile/util.js.map +1 -0
  155. package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  156. package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  157. package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  158. package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  159. package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  160. package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  161. package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  162. package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  163. package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  164. package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  165. package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  166. package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  167. package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  168. package/node_modules/ajv/dist/compile/validate/index.js +520 -0
  169. package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  170. package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  171. package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  172. package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  173. package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  174. package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  175. package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  176. package/node_modules/ajv/dist/core.d.ts +173 -0
  177. package/node_modules/ajv/dist/core.js +618 -0
  178. package/node_modules/ajv/dist/core.js.map +1 -0
  179. package/node_modules/ajv/dist/jtd.d.ts +47 -0
  180. package/node_modules/ajv/dist/jtd.js +72 -0
  181. package/node_modules/ajv/dist/jtd.js.map +1 -0
  182. package/node_modules/ajv/dist/refs/data.json +13 -0
  183. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
  184. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
  185. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
  186. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
  187. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
  188. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
  189. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
  190. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  191. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
  192. package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
  193. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
  194. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  195. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
  196. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  197. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  198. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  199. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  200. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  201. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  202. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  203. package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  204. package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  205. package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  206. package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  207. package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  208. package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  209. package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  210. package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  211. package/node_modules/ajv/dist/runtime/equal.js +7 -0
  212. package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  213. package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  214. package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  215. package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  216. package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  217. package/node_modules/ajv/dist/runtime/quote.js +30 -0
  218. package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  219. package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  220. package/node_modules/ajv/dist/runtime/re2.js +6 -0
  221. package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  222. package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  223. package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  224. package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  225. package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  226. package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  227. package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  228. package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  229. package/node_modules/ajv/dist/runtime/uri.js +6 -0
  230. package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  231. package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  232. package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  233. package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  234. package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  235. package/node_modules/ajv/dist/standalone/index.js +90 -0
  236. package/node_modules/ajv/dist/standalone/index.js.map +1 -0
  237. package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  238. package/node_modules/ajv/dist/standalone/instance.js +35 -0
  239. package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  240. package/node_modules/ajv/dist/types/index.d.ts +183 -0
  241. package/node_modules/ajv/dist/types/index.js +3 -0
  242. package/node_modules/ajv/dist/types/index.js.map +1 -0
  243. package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  244. package/node_modules/ajv/dist/types/json-schema.js +3 -0
  245. package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  246. package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  247. package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  248. package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  249. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  250. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  251. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  252. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  253. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  254. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  255. package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  256. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  257. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  258. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  259. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  260. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  261. package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  262. package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  263. package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  264. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  265. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  266. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  267. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  268. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  269. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  270. package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  271. package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  272. package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  273. package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  274. package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  275. package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  276. package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  277. package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  278. package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  279. package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  280. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  281. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  282. package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  283. package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  284. package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  285. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  286. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  287. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  288. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  289. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  290. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  291. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  292. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  293. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  294. package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  295. package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  296. package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  297. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  298. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  299. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  300. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  301. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  302. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  303. package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  304. package/node_modules/ajv/dist/vocabularies/code.js +131 -0
  305. package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  306. package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  307. package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  308. package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  309. package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  310. package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  311. package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  312. package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  313. package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  314. package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  315. package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  316. package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
  317. package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  318. package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  319. package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  320. package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  321. package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  322. package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  323. package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  324. package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  325. package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  326. package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  327. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  328. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  329. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  330. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  331. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  332. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  333. package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  334. package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  335. package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  336. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  337. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  338. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  339. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  340. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  341. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  342. package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  343. package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  344. package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  345. package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  346. package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  347. package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  348. package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  349. package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  350. package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  351. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  352. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  353. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  354. package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  355. package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  356. package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  357. package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  358. package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  359. package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  360. package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  361. package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  362. package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  363. package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  364. package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  365. package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  366. package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  367. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  368. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  369. package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  370. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  371. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  372. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  373. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  374. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  375. package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  376. package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  377. package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  378. package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  379. package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  380. package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  381. package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  382. package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  383. package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  384. package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  385. package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  386. package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  387. package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  388. package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  389. package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  390. package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  391. package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  392. package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  393. package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  394. package/node_modules/ajv/dist/vocabularies/next.js +8 -0
  395. package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  396. package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  397. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  398. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  399. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  400. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  401. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  402. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  403. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  404. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  405. package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  406. package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  407. package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  408. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  409. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  410. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  411. package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  412. package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  413. package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  414. package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  415. package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  416. package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  417. package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  418. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  419. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  420. package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  421. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  422. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  423. package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  424. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  425. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  426. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  427. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  428. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  429. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  430. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  431. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  432. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  433. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  434. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  435. package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  436. package/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
  437. package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  438. package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  439. package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  440. package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  441. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  442. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  443. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  444. package/node_modules/ajv/lib/2019.ts +81 -0
  445. package/node_modules/ajv/lib/2020.ts +75 -0
  446. package/node_modules/ajv/lib/ajv.ts +70 -0
  447. package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
  448. package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  449. package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  450. package/node_modules/ajv/lib/compile/errors.ts +184 -0
  451. package/node_modules/ajv/lib/compile/index.ts +324 -0
  452. package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  453. package/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
  454. package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  455. package/node_modules/ajv/lib/compile/names.ts +27 -0
  456. package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  457. package/node_modules/ajv/lib/compile/resolve.ts +149 -0
  458. package/node_modules/ajv/lib/compile/rules.ts +50 -0
  459. package/node_modules/ajv/lib/compile/util.ts +213 -0
  460. package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  461. package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  462. package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  463. package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  464. package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  465. package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  466. package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  467. package/node_modules/ajv/lib/core.ts +891 -0
  468. package/node_modules/ajv/lib/jtd.ts +132 -0
  469. package/node_modules/ajv/lib/refs/data.json +13 -0
  470. package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
  471. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
  472. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
  473. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
  474. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
  475. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  476. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
  477. package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
  478. package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
  479. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
  480. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
  481. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
  482. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  483. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  484. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  485. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
  486. package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
  487. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  488. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  489. package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  490. package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  491. package/node_modules/ajv/lib/runtime/equal.ts +7 -0
  492. package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  493. package/node_modules/ajv/lib/runtime/quote.ts +31 -0
  494. package/node_modules/ajv/lib/runtime/re2.ts +6 -0
  495. package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  496. package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  497. package/node_modules/ajv/lib/runtime/uri.ts +6 -0
  498. package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  499. package/node_modules/ajv/lib/standalone/index.ts +100 -0
  500. package/node_modules/ajv/lib/standalone/instance.ts +36 -0
  501. package/node_modules/ajv/lib/types/index.ts +244 -0
  502. package/node_modules/ajv/lib/types/json-schema.ts +187 -0
  503. package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  504. package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  505. package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  506. package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  507. package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  508. package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  509. package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  510. package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  511. package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  512. package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  513. package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  514. package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  515. package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  516. package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  517. package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  518. package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  519. package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  520. package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  521. package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  522. package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  523. package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  524. package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  525. package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  526. package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
  527. package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  528. package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  529. package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  530. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  531. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  532. package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  533. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  534. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  535. package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  536. package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  537. package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  538. package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  539. package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  540. package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  541. package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  542. package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  543. package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  544. package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  545. package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  546. package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  547. package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  548. package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  549. package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  550. package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  551. package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  552. package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  553. package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  554. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  555. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  556. package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  557. package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  558. package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  559. package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  560. package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  561. package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  562. package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  563. package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  564. package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  565. package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  566. package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
  567. package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  568. package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  569. package/node_modules/ajv/package.json +126 -0
  570. package/node_modules/fast-deep-equal/LICENSE +21 -0
  571. package/node_modules/fast-deep-equal/README.md +96 -0
  572. package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  573. package/node_modules/fast-deep-equal/es6/index.js +72 -0
  574. package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  575. package/node_modules/fast-deep-equal/es6/react.js +79 -0
  576. package/node_modules/fast-deep-equal/index.d.ts +4 -0
  577. package/node_modules/fast-deep-equal/index.js +46 -0
  578. package/node_modules/fast-deep-equal/package.json +61 -0
  579. package/node_modules/fast-deep-equal/react.d.ts +2 -0
  580. package/node_modules/fast-deep-equal/react.js +53 -0
  581. package/node_modules/fast-uri/.gitattributes +2 -0
  582. package/node_modules/fast-uri/.github/.stale.yml +21 -0
  583. package/node_modules/fast-uri/.github/dependabot.yml +13 -0
  584. package/node_modules/fast-uri/.github/tests_checker.yml +8 -0
  585. package/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
  586. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
  587. package/node_modules/fast-uri/LICENSE +32 -0
  588. package/node_modules/fast-uri/README.md +143 -0
  589. package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  590. package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  591. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  592. package/node_modules/fast-uri/benchmark/package.json +17 -0
  593. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  594. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  595. package/node_modules/fast-uri/eslint.config.js +6 -0
  596. package/node_modules/fast-uri/index.js +340 -0
  597. package/node_modules/fast-uri/lib/schemes.js +267 -0
  598. package/node_modules/fast-uri/lib/utils.js +336 -0
  599. package/node_modules/fast-uri/package.json +69 -0
  600. package/node_modules/fast-uri/test/ajv.test.js +43 -0
  601. package/node_modules/fast-uri/test/equal.test.js +108 -0
  602. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  603. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  604. package/node_modules/fast-uri/test/parse.test.js +318 -0
  605. package/node_modules/fast-uri/test/resolve.test.js +78 -0
  606. package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  607. package/node_modules/fast-uri/test/serialize.test.js +151 -0
  608. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  609. package/node_modules/fast-uri/test/uri-js.test.js +912 -0
  610. package/node_modules/fast-uri/test/util.test.js +38 -0
  611. package/node_modules/fast-uri/tsconfig.json +9 -0
  612. package/node_modules/fast-uri/types/index.d.ts +60 -0
  613. package/node_modules/fast-uri/types/index.test-d.ts +17 -0
  614. package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  615. package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
  616. package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
  617. package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
  618. package/node_modules/json-schema-traverse/LICENSE +21 -0
  619. package/node_modules/json-schema-traverse/README.md +95 -0
  620. package/node_modules/json-schema-traverse/index.d.ts +40 -0
  621. package/node_modules/json-schema-traverse/index.js +93 -0
  622. package/node_modules/json-schema-traverse/package.json +43 -0
  623. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  624. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  625. package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  626. package/node_modules/require-from-string/index.js +34 -0
  627. package/node_modules/require-from-string/license +21 -0
  628. package/node_modules/require-from-string/package.json +28 -0
  629. package/node_modules/require-from-string/readme.md +56 -0
  630. package/package.json +5 -2
  631. package/typedoc.jsonc +10 -0
package/.jsii CHANGED
@@ -7,6 +7,7 @@
7
7
  ]
8
8
  },
9
9
  "bundled": {
10
+ "@mrgrain/jsii-struct-builder": "^0.7.64",
10
11
  "case": "^1.6.3"
11
12
  },
12
13
  "dependencies": {
@@ -10373,6 +10374,52 @@
10373
10374
  ],
10374
10375
  "symbolId": "src/projects/awscdk-typescript-app-options.generated:AwsCdkTypeScriptAppProjectOptions"
10375
10376
  },
10377
+ "@nikovirtala/projen-constructs.CommentStyle": {
10378
+ "assembly": "@nikovirtala/projen-constructs",
10379
+ "docs": {
10380
+ "see": "https://typedoc.org/documents/Options.Comments.html#commentstyle",
10381
+ "stability": "stable",
10382
+ "summary": "Specifies the documentation mode TypeDoc should use."
10383
+ },
10384
+ "fqn": "@nikovirtala/projen-constructs.CommentStyle",
10385
+ "kind": "enum",
10386
+ "locationInModule": {
10387
+ "filename": "src/components/typedoc-config.ts",
10388
+ "line": 454
10389
+ },
10390
+ "members": [
10391
+ {
10392
+ "docs": {
10393
+ "stability": "stable",
10394
+ "summary": "Parse JSDoc style comments only."
10395
+ },
10396
+ "name": "JSDOC"
10397
+ },
10398
+ {
10399
+ "docs": {
10400
+ "stability": "stable",
10401
+ "summary": "Parse block comments."
10402
+ },
10403
+ "name": "BLOCK"
10404
+ },
10405
+ {
10406
+ "docs": {
10407
+ "stability": "stable",
10408
+ "summary": "Parse line comments (//)."
10409
+ },
10410
+ "name": "LINE"
10411
+ },
10412
+ {
10413
+ "docs": {
10414
+ "stability": "stable",
10415
+ "summary": "Parse all comment styles."
10416
+ },
10417
+ "name": "ALL"
10418
+ }
10419
+ ],
10420
+ "name": "CommentStyle",
10421
+ "symbolId": "src/components/typedoc-config:CommentStyle"
10422
+ },
10376
10423
  "@nikovirtala/projen-constructs.Component": {
10377
10424
  "assembly": "@nikovirtala/projen-constructs",
10378
10425
  "datatype": true,
@@ -10590,6 +10637,52 @@
10590
10637
  "name": "CoverageReporter",
10591
10638
  "symbolId": "src/components/vitest:CoverageReporter"
10592
10639
  },
10640
+ "@nikovirtala/projen-constructs.EntryPointStrategy": {
10641
+ "assembly": "@nikovirtala/projen-constructs",
10642
+ "docs": {
10643
+ "see": "https://typedoc.org/documents/Options.Input.html#entrypointstrategy",
10644
+ "stability": "stable",
10645
+ "summary": "Specifies the strategy to be used to convert entry points into documentation."
10646
+ },
10647
+ "fqn": "@nikovirtala/projen-constructs.EntryPointStrategy",
10648
+ "kind": "enum",
10649
+ "locationInModule": {
10650
+ "filename": "src/components/typedoc-config.ts",
10651
+ "line": 402
10652
+ },
10653
+ "members": [
10654
+ {
10655
+ "docs": {
10656
+ "stability": "stable",
10657
+ "summary": "Expects all entry points to be contained within a single package."
10658
+ },
10659
+ "name": "RESOLVE"
10660
+ },
10661
+ {
10662
+ "docs": {
10663
+ "stability": "stable",
10664
+ "summary": "Expects all entry points to be top-level directories."
10665
+ },
10666
+ "name": "EXPAND"
10667
+ },
10668
+ {
10669
+ "docs": {
10670
+ "stability": "stable",
10671
+ "summary": "Expects all entry points to be individual files."
10672
+ },
10673
+ "name": "PACKAGES"
10674
+ },
10675
+ {
10676
+ "docs": {
10677
+ "stability": "stable",
10678
+ "summary": "Merges multiple projects into a single documentation site."
10679
+ },
10680
+ "name": "MERGE"
10681
+ }
10682
+ ],
10683
+ "name": "EntryPointStrategy",
10684
+ "symbolId": "src/components/typedoc-config:EntryPointStrategy"
10685
+ },
10593
10686
  "@nikovirtala/projen-constructs.Environment": {
10594
10687
  "assembly": "@nikovirtala/projen-constructs",
10595
10688
  "docs": {
@@ -10652,7 +10745,7 @@
10652
10745
  },
10653
10746
  "locationInModule": {
10654
10747
  "filename": "src/projects/jsii.generated.ts",
10655
- "line": 20
10748
+ "line": 21
10656
10749
  },
10657
10750
  "parameters": [
10658
10751
  {
@@ -10669,7 +10762,7 @@
10669
10762
  "kind": "class",
10670
10763
  "locationInModule": {
10671
10764
  "filename": "src/projects/jsii.generated.ts",
10672
- "line": 16
10765
+ "line": 17
10673
10766
  },
10674
10767
  "name": "JsiiProject",
10675
10768
  "symbolId": "src/projects/jsii.generated:JsiiProject"
@@ -13291,6 +13384,42 @@
13291
13384
  "primitive": "string"
13292
13385
  }
13293
13386
  },
13387
+ {
13388
+ "abstract": true,
13389
+ "docs": {
13390
+ "default": "true",
13391
+ "stability": "stable",
13392
+ "summary": "Enable TypeDoc component."
13393
+ },
13394
+ "immutable": true,
13395
+ "locationInModule": {
13396
+ "filename": "src/projects/jsii-options.generated.ts",
13397
+ "line": 1067
13398
+ },
13399
+ "name": "typeDoc",
13400
+ "optional": true,
13401
+ "type": {
13402
+ "primitive": "boolean"
13403
+ }
13404
+ },
13405
+ {
13406
+ "abstract": true,
13407
+ "docs": {
13408
+ "default": "- default TypeDoc configuration",
13409
+ "stability": "stable",
13410
+ "summary": "TypeDoc configuration."
13411
+ },
13412
+ "immutable": true,
13413
+ "locationInModule": {
13414
+ "filename": "src/projects/jsii-options.generated.ts",
13415
+ "line": 1072
13416
+ },
13417
+ "name": "typeDocOptions",
13418
+ "optional": true,
13419
+ "type": {
13420
+ "fqn": "@nikovirtala/projen-constructs.TypeDocOptions"
13421
+ }
13422
+ },
13294
13423
  {
13295
13424
  "abstract": true,
13296
13425
  "docs": {
@@ -13554,6 +13683,59 @@
13554
13683
  ],
13555
13684
  "symbolId": "src/projects/jsii-options.generated:JsiiProjectOptions"
13556
13685
  },
13686
+ "@nikovirtala/projen-constructs.LogLevel": {
13687
+ "assembly": "@nikovirtala/projen-constructs",
13688
+ "docs": {
13689
+ "see": "https://typedoc.org/documents/Options.Other.html#loglevel",
13690
+ "stability": "stable",
13691
+ "summary": "Specifies the logger that should be used."
13692
+ },
13693
+ "fqn": "@nikovirtala/projen-constructs.LogLevel",
13694
+ "kind": "enum",
13695
+ "locationInModule": {
13696
+ "filename": "src/components/typedoc-config.ts",
13697
+ "line": 426
13698
+ },
13699
+ "members": [
13700
+ {
13701
+ "docs": {
13702
+ "stability": "stable",
13703
+ "summary": "Log all messages including verbose debug information."
13704
+ },
13705
+ "name": "VERBOSE"
13706
+ },
13707
+ {
13708
+ "docs": {
13709
+ "stability": "stable",
13710
+ "summary": "Log informational messages and above."
13711
+ },
13712
+ "name": "INFO"
13713
+ },
13714
+ {
13715
+ "docs": {
13716
+ "stability": "stable",
13717
+ "summary": "Log warnings and errors only."
13718
+ },
13719
+ "name": "WARN"
13720
+ },
13721
+ {
13722
+ "docs": {
13723
+ "stability": "stable",
13724
+ "summary": "Log errors only."
13725
+ },
13726
+ "name": "ERROR"
13727
+ },
13728
+ {
13729
+ "docs": {
13730
+ "stability": "stable",
13731
+ "summary": "Disable all logging."
13732
+ },
13733
+ "name": "NONE"
13734
+ }
13735
+ ],
13736
+ "name": "LogLevel",
13737
+ "symbolId": "src/components/typedoc-config:LogLevel"
13738
+ },
13557
13739
  "@nikovirtala/projen-constructs.Pool": {
13558
13740
  "assembly": "@nikovirtala/projen-constructs",
13559
13741
  "docs": {
@@ -13955,71 +14137,135 @@
13955
14137
  "name": "ProjectType",
13956
14138
  "symbolId": "src/project-type:ProjectType"
13957
14139
  },
13958
- "@nikovirtala/projen-constructs.TypeScriptProject": {
14140
+ "@nikovirtala/projen-constructs.TypeDoc": {
13959
14141
  "assembly": "@nikovirtala/projen-constructs",
13960
- "base": "projen.typescript.TypeScriptProject",
14142
+ "base": "projen.Component",
13961
14143
  "docs": {
13962
- "remarks": "Extends Projen's base class with opinionated defaults and automatic component setup.",
13963
14144
  "stability": "stable",
13964
- "summary": "TypeScriptProject with standard configuration and component integration."
14145
+ "summary": "TypeDoc component for projen projects."
13965
14146
  },
13966
- "fqn": "@nikovirtala/projen-constructs.TypeScriptProject",
14147
+ "fqn": "@nikovirtala/projen-constructs.TypeDoc",
13967
14148
  "initializer": {
13968
14149
  "docs": {
13969
14150
  "stability": "stable"
13970
14151
  },
13971
14152
  "locationInModule": {
13972
- "filename": "src/projects/typescript.generated.ts",
13973
- "line": 20
14153
+ "filename": "src/components/typedoc.ts",
14154
+ "line": 57
13974
14155
  },
13975
14156
  "parameters": [
13976
14157
  {
13977
- "docs": {
13978
- "summary": "- Project configuration."
13979
- },
14158
+ "name": "project",
14159
+ "type": {
14160
+ "fqn": "projen.javascript.NodeProject"
14161
+ }
14162
+ },
14163
+ {
13980
14164
  "name": "options",
14165
+ "optional": true,
13981
14166
  "type": {
13982
- "fqn": "@nikovirtala/projen-constructs.TypeScriptProjectOptions"
14167
+ "fqn": "@nikovirtala/projen-constructs.TypeDocOptions"
13983
14168
  }
13984
14169
  }
13985
14170
  ]
13986
14171
  },
13987
14172
  "kind": "class",
13988
14173
  "locationInModule": {
13989
- "filename": "src/projects/typescript.generated.ts",
13990
- "line": 16
14174
+ "filename": "src/components/typedoc.ts",
14175
+ "line": 39
13991
14176
  },
13992
- "name": "TypeScriptProject",
13993
- "symbolId": "src/projects/typescript.generated:TypeScriptProject"
14177
+ "methods": [
14178
+ {
14179
+ "docs": {
14180
+ "stability": "stable"
14181
+ },
14182
+ "locationInModule": {
14183
+ "filename": "src/components/typedoc.ts",
14184
+ "line": 40
14185
+ },
14186
+ "name": "of",
14187
+ "parameters": [
14188
+ {
14189
+ "name": "project",
14190
+ "type": {
14191
+ "fqn": "projen.Project"
14192
+ }
14193
+ }
14194
+ ],
14195
+ "returns": {
14196
+ "optional": true,
14197
+ "type": {
14198
+ "fqn": "@nikovirtala/projen-constructs.TypeDoc"
14199
+ }
14200
+ },
14201
+ "static": true
14202
+ }
14203
+ ],
14204
+ "name": "TypeDoc",
14205
+ "properties": [
14206
+ {
14207
+ "docs": {
14208
+ "stability": "stable",
14209
+ "summary": "TypeDoc configuration file."
14210
+ },
14211
+ "immutable": true,
14212
+ "locationInModule": {
14213
+ "filename": "src/components/typedoc.ts",
14214
+ "line": 55
14215
+ },
14216
+ "name": "file",
14217
+ "type": {
14218
+ "fqn": "projen.JsonFile"
14219
+ }
14220
+ },
14221
+ {
14222
+ "docs": {
14223
+ "stability": "stable",
14224
+ "summary": "TypeDoc task."
14225
+ },
14226
+ "immutable": true,
14227
+ "locationInModule": {
14228
+ "filename": "src/components/typedoc.ts",
14229
+ "line": 50
14230
+ },
14231
+ "name": "task",
14232
+ "type": {
14233
+ "fqn": "projen.Task"
14234
+ }
14235
+ }
14236
+ ],
14237
+ "symbolId": "src/components/typedoc:TypeDoc"
13994
14238
  },
13995
- "@nikovirtala/projen-constructs.TypeScriptProjectOptions": {
14239
+ "@nikovirtala/projen-constructs.TypeDocConfiguration": {
13996
14240
  "assembly": "@nikovirtala/projen-constructs",
13997
14241
  "datatype": true,
13998
14242
  "docs": {
14243
+ "see": "https://typedoc.org/options/",
13999
14244
  "stability": "stable",
14000
- "summary": "TypeScriptProjectOptions."
14245
+ "summary": "TypeDoc configuration."
14001
14246
  },
14002
- "fqn": "@nikovirtala/projen-constructs.TypeScriptProjectOptions",
14247
+ "fqn": "@nikovirtala/projen-constructs.TypeDocConfiguration",
14003
14248
  "kind": "interface",
14004
14249
  "locationInModule": {
14005
- "filename": "src/projects/typescript-options.generated.ts",
14006
- "line": 8
14250
+ "filename": "src/components/typedoc-config.ts",
14251
+ "line": 6
14007
14252
  },
14008
- "name": "TypeScriptProjectOptions",
14253
+ "name": "TypeDocConfiguration",
14009
14254
  "properties": [
14010
14255
  {
14011
14256
  "abstract": true,
14012
14257
  "docs": {
14013
- "default": "\"main\"",
14014
- "stability": "experimental",
14015
- "summary": "The name of the main release branch."
14258
+ "see": "https://typedoc.org/documents/Options.Output.html#basepath",
14259
+ "stability": "stable",
14260
+ "summary": "Specify the base path for all urls."
14016
14261
  },
14017
14262
  "immutable": true,
14018
14263
  "locationInModule": {
14019
- "filename": "src/projects/typescript-options.generated.ts",
14020
- "line": 312
14264
+ "filename": "src/components/typedoc-config.ts",
14265
+ "line": 82
14021
14266
  },
14022
- "name": "defaultReleaseBranch",
14267
+ "name": "basePath",
14268
+ "optional": true,
14023
14269
  "type": {
14024
14270
  "primitive": "string"
14025
14271
  }
@@ -14027,37 +14273,34 @@
14027
14273
  {
14028
14274
  "abstract": true,
14029
14275
  "docs": {
14030
- "custom": {
14031
- "featured": "true"
14032
- },
14033
- "default": "$BASEDIR",
14034
- "stability": "experimental",
14035
- "summary": "This is the name of your project."
14276
+ "see": "https://typedoc.org/documents/Options.Output.html#cachebust",
14277
+ "stability": "stable",
14278
+ "summary": "Include the generation time in links to prevent browsers from using a cached version."
14036
14279
  },
14037
14280
  "immutable": true,
14038
14281
  "locationInModule": {
14039
- "filename": "src/projects/typescript-options.generated.ts",
14040
- "line": 951
14282
+ "filename": "src/components/typedoc-config.ts",
14283
+ "line": 264
14041
14284
  },
14042
- "name": "name",
14285
+ "name": "cacheBust",
14286
+ "optional": true,
14043
14287
  "type": {
14044
- "primitive": "string"
14288
+ "primitive": "boolean"
14045
14289
  }
14046
14290
  },
14047
14291
  {
14048
14292
  "abstract": true,
14049
14293
  "docs": {
14050
- "default": "true",
14051
- "remarks": "This is normally only allowed for libraries. For apps, there's no meaning\nfor specifying these.",
14052
- "stability": "experimental",
14053
- "summary": "Allow the project to include `peerDependencies` and `bundledDependencies`."
14294
+ "see": "https://typedoc.org/documents/Options.Organization.html#categorizebygroup",
14295
+ "stability": "stable",
14296
+ "summary": "Specify the categories that will be used to group reflections."
14054
14297
  },
14055
14298
  "immutable": true,
14056
14299
  "locationInModule": {
14057
- "filename": "src/projects/typescript-options.generated.ts",
14058
- "line": 789
14300
+ "filename": "src/components/typedoc-config.ts",
14301
+ "line": 180
14059
14302
  },
14060
- "name": "allowLibraryDependencies",
14303
+ "name": "categorizeByGroup",
14061
14304
  "optional": true,
14062
14305
  "type": {
14063
14306
  "primitive": "boolean"
@@ -14066,46 +14309,1034 @@
14066
14309
  {
14067
14310
  "abstract": true,
14068
14311
  "docs": {
14069
- "default": "\"dist\"",
14070
- "stability": "experimental",
14071
- "summary": "A directory which will contain build artifacts."
14312
+ "see": "https://typedoc.org/documents/Options.Output.html#cleanoutputdir",
14313
+ "stability": "stable",
14314
+ "summary": "Prevent TypeDoc from cleaning the output directory specified with --out."
14072
14315
  },
14073
14316
  "immutable": true,
14074
14317
  "locationInModule": {
14075
- "filename": "src/projects/typescript-options.generated.ts",
14076
- "line": 306
14318
+ "filename": "src/components/typedoc-config.ts",
14319
+ "line": 96
14077
14320
  },
14078
- "name": "artifactsDirectory",
14321
+ "name": "cleanOutputDir",
14079
14322
  "optional": true,
14080
14323
  "type": {
14081
- "primitive": "string"
14324
+ "primitive": "boolean"
14082
14325
  }
14083
14326
  },
14084
14327
  {
14085
14328
  "abstract": true,
14086
14329
  "docs": {
14087
- "default": "false",
14088
- "remarks": "When enabled, creates an \"audit\" task that checks for known security vulnerabilities\nin dependencies. By default, runs during every build and checks for \"high\" severity\nvulnerabilities or above in all dependencies (including dev dependencies).",
14089
- "stability": "experimental",
14090
- "summary": "Run security audit on dependencies."
14330
+ "see": "https://typedoc.org/documents/Options.Comments.html#commentstyle",
14331
+ "stability": "stable",
14332
+ "summary": "Specify the documentation mode TypeDoc should use."
14091
14333
  },
14092
14334
  "immutable": true,
14093
14335
  "locationInModule": {
14094
- "filename": "src/projects/typescript-options.generated.ts",
14095
- "line": 300
14336
+ "filename": "src/components/typedoc-config.ts",
14337
+ "line": 152
14096
14338
  },
14097
- "name": "auditDeps",
14339
+ "name": "commentStyle",
14098
14340
  "optional": true,
14099
14341
  "type": {
14100
- "primitive": "boolean"
14342
+ "fqn": "@nikovirtala/projen-constructs.CommentStyle"
14101
14343
  }
14102
14344
  },
14103
14345
  {
14104
14346
  "abstract": true,
14105
14347
  "docs": {
14106
- "default": "- default options",
14107
- "stability": "experimental",
14108
- "summary": "Security audit options."
14348
+ "see": "https://typedoc.org/documents/Options.Organization.html#defaultcategory",
14349
+ "stability": "stable",
14350
+ "summary": "Specify the default category for reflections without a category."
14351
+ },
14352
+ "immutable": true,
14353
+ "locationInModule": {
14354
+ "filename": "src/components/typedoc-config.ts",
14355
+ "line": 166
14356
+ },
14357
+ "name": "defaultCategory",
14358
+ "optional": true,
14359
+ "type": {
14360
+ "primitive": "string"
14361
+ }
14362
+ },
14363
+ {
14364
+ "abstract": true,
14365
+ "docs": {
14366
+ "see": "https://typedoc.org/documents/Options.Organization.html#defaultgroup",
14367
+ "stability": "stable",
14368
+ "summary": "Specify the default group for reflections without a group."
14369
+ },
14370
+ "immutable": true,
14371
+ "locationInModule": {
14372
+ "filename": "src/components/typedoc-config.ts",
14373
+ "line": 173
14374
+ },
14375
+ "name": "defaultGroup",
14376
+ "optional": true,
14377
+ "type": {
14378
+ "primitive": "string"
14379
+ }
14380
+ },
14381
+ {
14382
+ "abstract": true,
14383
+ "docs": {
14384
+ "see": "https://typedoc.org/documents/Options.Comments.html#defaultvisibility",
14385
+ "stability": "stable",
14386
+ "summary": "Specify the default visibility for members without a visibility tag."
14387
+ },
14388
+ "immutable": true,
14389
+ "locationInModule": {
14390
+ "filename": "src/components/typedoc-config.ts",
14391
+ "line": 159
14392
+ },
14393
+ "name": "defaultVisibility",
14394
+ "optional": true,
14395
+ "type": {
14396
+ "fqn": "@nikovirtala/projen-constructs.Visibility"
14397
+ }
14398
+ },
14399
+ {
14400
+ "abstract": true,
14401
+ "docs": {
14402
+ "see": "https://typedoc.org/documents/Options.Comments.html#disablegit",
14403
+ "stability": "stable",
14404
+ "summary": "Disables setting the source of reflections when documenting projects within a Git repository."
14405
+ },
14406
+ "immutable": true,
14407
+ "locationInModule": {
14408
+ "filename": "src/components/typedoc-config.ts",
14409
+ "line": 243
14410
+ },
14411
+ "name": "disableGit",
14412
+ "optional": true,
14413
+ "type": {
14414
+ "primitive": "boolean"
14415
+ }
14416
+ },
14417
+ {
14418
+ "abstract": true,
14419
+ "docs": {
14420
+ "see": "https://typedoc.org/documents/Options.Comments.html#disablesources",
14421
+ "stability": "stable",
14422
+ "summary": "Disables automatically linking to source code."
14423
+ },
14424
+ "immutable": true,
14425
+ "locationInModule": {
14426
+ "filename": "src/components/typedoc-config.ts",
14427
+ "line": 236
14428
+ },
14429
+ "name": "disableSources",
14430
+ "optional": true,
14431
+ "type": {
14432
+ "primitive": "boolean"
14433
+ }
14434
+ },
14435
+ {
14436
+ "abstract": true,
14437
+ "docs": {
14438
+ "see": "https://typedoc.org/documents/Options.Input.html#entrypoints",
14439
+ "stability": "stable",
14440
+ "summary": "Specifies the entry points to be documented by TypeDoc."
14441
+ },
14442
+ "immutable": true,
14443
+ "locationInModule": {
14444
+ "filename": "src/components/typedoc-config.ts",
14445
+ "line": 12
14446
+ },
14447
+ "name": "entryPoints",
14448
+ "optional": true,
14449
+ "type": {
14450
+ "collection": {
14451
+ "elementtype": {
14452
+ "primitive": "string"
14453
+ },
14454
+ "kind": "array"
14455
+ }
14456
+ }
14457
+ },
14458
+ {
14459
+ "abstract": true,
14460
+ "docs": {
14461
+ "see": "https://typedoc.org/documents/Options.Input.html#entrypointstrategy",
14462
+ "stability": "stable",
14463
+ "summary": "Specifies the strategy to be used to convert entry points into documentation."
14464
+ },
14465
+ "immutable": true,
14466
+ "locationInModule": {
14467
+ "filename": "src/components/typedoc-config.ts",
14468
+ "line": 19
14469
+ },
14470
+ "name": "entryPointStrategy",
14471
+ "optional": true,
14472
+ "type": {
14473
+ "fqn": "@nikovirtala/projen-constructs.EntryPointStrategy"
14474
+ }
14475
+ },
14476
+ {
14477
+ "abstract": true,
14478
+ "docs": {
14479
+ "see": "https://typedoc.org/documents/Options.Input.html#exclude",
14480
+ "stability": "stable",
14481
+ "summary": "Define patterns to be excluded when expanding directories."
14482
+ },
14483
+ "immutable": true,
14484
+ "locationInModule": {
14485
+ "filename": "src/components/typedoc-config.ts",
14486
+ "line": 26
14487
+ },
14488
+ "name": "exclude",
14489
+ "optional": true,
14490
+ "type": {
14491
+ "collection": {
14492
+ "elementtype": {
14493
+ "primitive": "string"
14494
+ },
14495
+ "kind": "array"
14496
+ }
14497
+ }
14498
+ },
14499
+ {
14500
+ "abstract": true,
14501
+ "docs": {
14502
+ "see": "https://typedoc.org/documents/Options.Input.html#excludeexternals",
14503
+ "stability": "stable",
14504
+ "summary": "Prevent externally resolved symbols from being documented."
14505
+ },
14506
+ "immutable": true,
14507
+ "locationInModule": {
14508
+ "filename": "src/components/typedoc-config.ts",
14509
+ "line": 33
14510
+ },
14511
+ "name": "excludeExternals",
14512
+ "optional": true,
14513
+ "type": {
14514
+ "primitive": "boolean"
14515
+ }
14516
+ },
14517
+ {
14518
+ "abstract": true,
14519
+ "docs": {
14520
+ "see": "https://typedoc.org/documents/Options.Input.html#excludeinternal",
14521
+ "stability": "stable",
14522
+ "summary": "Prevent symbols that are not exported from being documented."
14523
+ },
14524
+ "immutable": true,
14525
+ "locationInModule": {
14526
+ "filename": "src/components/typedoc-config.ts",
14527
+ "line": 54
14528
+ },
14529
+ "name": "excludeInternal",
14530
+ "optional": true,
14531
+ "type": {
14532
+ "primitive": "boolean"
14533
+ }
14534
+ },
14535
+ {
14536
+ "abstract": true,
14537
+ "docs": {
14538
+ "see": "https://typedoc.org/documents/Options.Input.html#excludeprivate",
14539
+ "stability": "stable",
14540
+ "summary": "Prevent private members from being included in the generated documentation."
14541
+ },
14542
+ "immutable": true,
14543
+ "locationInModule": {
14544
+ "filename": "src/components/typedoc-config.ts",
14545
+ "line": 40
14546
+ },
14547
+ "name": "excludePrivate",
14548
+ "optional": true,
14549
+ "type": {
14550
+ "primitive": "boolean"
14551
+ }
14552
+ },
14553
+ {
14554
+ "abstract": true,
14555
+ "docs": {
14556
+ "see": "https://typedoc.org/documents/Options.Input.html#excludeprotected",
14557
+ "stability": "stable",
14558
+ "summary": "Prevent protected members from being included in the generated documentation."
14559
+ },
14560
+ "immutable": true,
14561
+ "locationInModule": {
14562
+ "filename": "src/components/typedoc-config.ts",
14563
+ "line": 47
14564
+ },
14565
+ "name": "excludeProtected",
14566
+ "optional": true,
14567
+ "type": {
14568
+ "primitive": "boolean"
14569
+ }
14570
+ },
14571
+ {
14572
+ "abstract": true,
14573
+ "docs": {
14574
+ "see": "https://typedoc.org/documents/Options.Input.html#externalpattern",
14575
+ "stability": "stable",
14576
+ "summary": "Define patterns for files that should be considered external."
14577
+ },
14578
+ "immutable": true,
14579
+ "locationInModule": {
14580
+ "filename": "src/components/typedoc-config.ts",
14581
+ "line": 320
14582
+ },
14583
+ "name": "externalPattern",
14584
+ "optional": true,
14585
+ "type": {
14586
+ "collection": {
14587
+ "elementtype": {
14588
+ "primitive": "string"
14589
+ },
14590
+ "kind": "array"
14591
+ }
14592
+ }
14593
+ },
14594
+ {
14595
+ "abstract": true,
14596
+ "docs": {
14597
+ "see": "https://typedoc.org/documents/Options.Comments.html#externalsymbollinkmappings",
14598
+ "stability": "stable",
14599
+ "summary": "Define custom mappings for symbols in external packages."
14600
+ },
14601
+ "immutable": true,
14602
+ "locationInModule": {
14603
+ "filename": "src/components/typedoc-config.ts",
14604
+ "line": 327
14605
+ },
14606
+ "name": "externalSymbolLinkMappings",
14607
+ "optional": true,
14608
+ "type": {
14609
+ "collection": {
14610
+ "elementtype": {
14611
+ "collection": {
14612
+ "elementtype": {
14613
+ "primitive": "string"
14614
+ },
14615
+ "kind": "map"
14616
+ }
14617
+ },
14618
+ "kind": "map"
14619
+ }
14620
+ }
14621
+ },
14622
+ {
14623
+ "abstract": true,
14624
+ "docs": {
14625
+ "see": "https://typedoc.org/documents/Options.Comments.html#gitremote",
14626
+ "stability": "stable",
14627
+ "summary": "Specify the git remote that should be used to link to source files."
14628
+ },
14629
+ "immutable": true,
14630
+ "locationInModule": {
14631
+ "filename": "src/components/typedoc-config.ts",
14632
+ "line": 222
14633
+ },
14634
+ "name": "gitRemote",
14635
+ "optional": true,
14636
+ "type": {
14637
+ "primitive": "string"
14638
+ }
14639
+ },
14640
+ {
14641
+ "abstract": true,
14642
+ "docs": {
14643
+ "see": "https://typedoc.org/documents/Options.Comments.html#gitrevision",
14644
+ "stability": "stable",
14645
+ "summary": "Specify the git revision that should be used to link to source files."
14646
+ },
14647
+ "immutable": true,
14648
+ "locationInModule": {
14649
+ "filename": "src/components/typedoc-config.ts",
14650
+ "line": 215
14651
+ },
14652
+ "name": "gitRevision",
14653
+ "optional": true,
14654
+ "type": {
14655
+ "primitive": "string"
14656
+ }
14657
+ },
14658
+ {
14659
+ "abstract": true,
14660
+ "docs": {
14661
+ "see": "https://typedoc.org/documents/Options.Output.html#hidegenerator",
14662
+ "stability": "stable",
14663
+ "summary": "Do not print the TypeDoc link at the end of the page."
14664
+ },
14665
+ "immutable": true,
14666
+ "locationInModule": {
14667
+ "filename": "src/components/typedoc-config.ts",
14668
+ "line": 250
14669
+ },
14670
+ "name": "hideGenerator",
14671
+ "optional": true,
14672
+ "type": {
14673
+ "primitive": "boolean"
14674
+ }
14675
+ },
14676
+ {
14677
+ "abstract": true,
14678
+ "docs": {
14679
+ "see": "https://typedoc.org/documents/Options.Output.html#hideparametertypesintitle",
14680
+ "stability": "stable",
14681
+ "summary": "Hide parameter types in the signature."
14682
+ },
14683
+ "immutable": true,
14684
+ "locationInModule": {
14685
+ "filename": "src/components/typedoc-config.ts",
14686
+ "line": 257
14687
+ },
14688
+ "name": "hideParameterTypesInTitle",
14689
+ "optional": true,
14690
+ "type": {
14691
+ "primitive": "boolean"
14692
+ }
14693
+ },
14694
+ {
14695
+ "abstract": true,
14696
+ "docs": {
14697
+ "see": "https://typedoc.org/documents/Options.Output.html#includes",
14698
+ "stability": "stable",
14699
+ "summary": "Specify the location to look for included documents."
14700
+ },
14701
+ "immutable": true,
14702
+ "locationInModule": {
14703
+ "filename": "src/components/typedoc-config.ts",
14704
+ "line": 103
14705
+ },
14706
+ "name": "includes",
14707
+ "optional": true,
14708
+ "type": {
14709
+ "primitive": "string"
14710
+ }
14711
+ },
14712
+ {
14713
+ "abstract": true,
14714
+ "docs": {
14715
+ "see": "https://typedoc.org/documents/Options.Validation.html#intentionallynotexported",
14716
+ "stability": "stable",
14717
+ "summary": "A list of types that should not produce warnings when not being exported."
14718
+ },
14719
+ "immutable": true,
14720
+ "locationInModule": {
14721
+ "filename": "src/components/typedoc-config.ts",
14722
+ "line": 313
14723
+ },
14724
+ "name": "intentionallyNotExported",
14725
+ "optional": true,
14726
+ "type": {
14727
+ "collection": {
14728
+ "elementtype": {
14729
+ "primitive": "string"
14730
+ },
14731
+ "kind": "array"
14732
+ }
14733
+ }
14734
+ },
14735
+ {
14736
+ "abstract": true,
14737
+ "docs": {
14738
+ "see": "https://typedoc.org/documents/Options.Output.html#json",
14739
+ "stability": "stable",
14740
+ "summary": "Specify the location the documentation should be written to."
14741
+ },
14742
+ "immutable": true,
14743
+ "locationInModule": {
14744
+ "filename": "src/components/typedoc-config.ts",
14745
+ "line": 68
14746
+ },
14747
+ "name": "json",
14748
+ "optional": true,
14749
+ "type": {
14750
+ "primitive": "string"
14751
+ }
14752
+ },
14753
+ {
14754
+ "abstract": true,
14755
+ "docs": {
14756
+ "see": "https://typedoc.org/documents/Options.Other.html#loglevel",
14757
+ "stability": "stable",
14758
+ "summary": "Specify the logger that should be used."
14759
+ },
14760
+ "immutable": true,
14761
+ "locationInModule": {
14762
+ "filename": "src/components/typedoc-config.ts",
14763
+ "line": 131
14764
+ },
14765
+ "name": "logLevel",
14766
+ "optional": true,
14767
+ "type": {
14768
+ "fqn": "@nikovirtala/projen-constructs.LogLevel"
14769
+ }
14770
+ },
14771
+ {
14772
+ "abstract": true,
14773
+ "docs": {
14774
+ "see": "https://typedoc.org/documents/Options.Output.html#media",
14775
+ "stability": "stable",
14776
+ "summary": "Specify the location with media files that should be copied to the output directory."
14777
+ },
14778
+ "immutable": true,
14779
+ "locationInModule": {
14780
+ "filename": "src/components/typedoc-config.ts",
14781
+ "line": 110
14782
+ },
14783
+ "name": "media",
14784
+ "optional": true,
14785
+ "type": {
14786
+ "primitive": "string"
14787
+ }
14788
+ },
14789
+ {
14790
+ "abstract": true,
14791
+ "docs": {
14792
+ "see": "https://typedoc.org/documents/Options.Output.html#name",
14793
+ "stability": "stable",
14794
+ "summary": "Set the name of the project that will be used in the header of the template."
14795
+ },
14796
+ "immutable": true,
14797
+ "locationInModule": {
14798
+ "filename": "src/components/typedoc-config.ts",
14799
+ "line": 89
14800
+ },
14801
+ "name": "name",
14802
+ "optional": true,
14803
+ "type": {
14804
+ "primitive": "string"
14805
+ }
14806
+ },
14807
+ {
14808
+ "abstract": true,
14809
+ "docs": {
14810
+ "see": "https://typedoc.org/documents/Options.Output.html#out",
14811
+ "stability": "stable",
14812
+ "summary": "Specifies the output directory the documentation should be written to."
14813
+ },
14814
+ "immutable": true,
14815
+ "locationInModule": {
14816
+ "filename": "src/components/typedoc-config.ts",
14817
+ "line": 61
14818
+ },
14819
+ "name": "out",
14820
+ "optional": true,
14821
+ "type": {
14822
+ "primitive": "string"
14823
+ }
14824
+ },
14825
+ {
14826
+ "abstract": true,
14827
+ "docs": {
14828
+ "see": "https://typedoc.org/documents/Options.Input.html#packagejson",
14829
+ "stability": "stable",
14830
+ "summary": "Specify the package.json file that should be used to determine the package name."
14831
+ },
14832
+ "immutable": true,
14833
+ "locationInModule": {
14834
+ "filename": "src/components/typedoc-config.ts",
14835
+ "line": 208
14836
+ },
14837
+ "name": "packageJson",
14838
+ "optional": true,
14839
+ "type": {
14840
+ "primitive": "string"
14841
+ }
14842
+ },
14843
+ {
14844
+ "abstract": true,
14845
+ "docs": {
14846
+ "see": "https://typedoc.org/documents/Options.Input.html#readme",
14847
+ "stability": "stable",
14848
+ "summary": "Specify the readme file that should be displayed on the index page."
14849
+ },
14850
+ "immutable": true,
14851
+ "locationInModule": {
14852
+ "filename": "src/components/typedoc-config.ts",
14853
+ "line": 201
14854
+ },
14855
+ "name": "readme",
14856
+ "optional": true,
14857
+ "type": {
14858
+ "primitive": "string"
14859
+ }
14860
+ },
14861
+ {
14862
+ "abstract": true,
14863
+ "docs": {
14864
+ "see": "https://typedoc.org/documents/Options.Validation.html#requiredtobedocumented",
14865
+ "stability": "stable",
14866
+ "summary": "Specify the type of reflections that must be documented."
14867
+ },
14868
+ "immutable": true,
14869
+ "locationInModule": {
14870
+ "filename": "src/components/typedoc-config.ts",
14871
+ "line": 292
14872
+ },
14873
+ "name": "requiredToBeDocumented",
14874
+ "optional": true,
14875
+ "type": {
14876
+ "collection": {
14877
+ "elementtype": {
14878
+ "primitive": "string"
14879
+ },
14880
+ "kind": "array"
14881
+ }
14882
+ }
14883
+ },
14884
+ {
14885
+ "abstract": true,
14886
+ "docs": {
14887
+ "see": "https://typedoc.org/documents/Options.Organization.html#searchcategoryboosts",
14888
+ "stability": "stable",
14889
+ "summary": "Specify the search category boosts."
14890
+ },
14891
+ "immutable": true,
14892
+ "locationInModule": {
14893
+ "filename": "src/components/typedoc-config.ts",
14894
+ "line": 194
14895
+ },
14896
+ "name": "searchCategoryBoosts",
14897
+ "optional": true,
14898
+ "type": {
14899
+ "collection": {
14900
+ "elementtype": {
14901
+ "primitive": "number"
14902
+ },
14903
+ "kind": "map"
14904
+ }
14905
+ }
14906
+ },
14907
+ {
14908
+ "abstract": true,
14909
+ "docs": {
14910
+ "see": "https://typedoc.org/documents/Options.Organization.html#searchgroupboosts",
14911
+ "stability": "stable",
14912
+ "summary": "Specify the search group boosts."
14913
+ },
14914
+ "immutable": true,
14915
+ "locationInModule": {
14916
+ "filename": "src/components/typedoc-config.ts",
14917
+ "line": 187
14918
+ },
14919
+ "name": "searchGroupBoosts",
14920
+ "optional": true,
14921
+ "type": {
14922
+ "collection": {
14923
+ "elementtype": {
14924
+ "primitive": "number"
14925
+ },
14926
+ "kind": "map"
14927
+ }
14928
+ }
14929
+ },
14930
+ {
14931
+ "abstract": true,
14932
+ "docs": {
14933
+ "see": "https://typedoc.org/documents/Options.Output.html#searchincomments",
14934
+ "stability": "stable",
14935
+ "summary": "If set, the search index will also include comments."
14936
+ },
14937
+ "immutable": true,
14938
+ "locationInModule": {
14939
+ "filename": "src/components/typedoc-config.ts",
14940
+ "line": 271
14941
+ },
14942
+ "name": "searchInComments",
14943
+ "optional": true,
14944
+ "type": {
14945
+ "primitive": "boolean"
14946
+ }
14947
+ },
14948
+ {
14949
+ "abstract": true,
14950
+ "docs": {
14951
+ "see": "https://typedoc.org/documents/Options.Output.html#searchindocuments",
14952
+ "stability": "stable",
14953
+ "summary": "If set, the search index will also include documents."
14954
+ },
14955
+ "immutable": true,
14956
+ "locationInModule": {
14957
+ "filename": "src/components/typedoc-config.ts",
14958
+ "line": 278
14959
+ },
14960
+ "name": "searchInDocuments",
14961
+ "optional": true,
14962
+ "type": {
14963
+ "primitive": "boolean"
14964
+ }
14965
+ },
14966
+ {
14967
+ "abstract": true,
14968
+ "docs": {
14969
+ "see": "https://typedoc.org/documents/Options.Organization.html#sort",
14970
+ "stability": "stable",
14971
+ "summary": "Specify the sort strategy for documented values."
14972
+ },
14973
+ "immutable": true,
14974
+ "locationInModule": {
14975
+ "filename": "src/components/typedoc-config.ts",
14976
+ "line": 138
14977
+ },
14978
+ "name": "sort",
14979
+ "optional": true,
14980
+ "type": {
14981
+ "collection": {
14982
+ "elementtype": {
14983
+ "primitive": "string"
14984
+ },
14985
+ "kind": "array"
14986
+ }
14987
+ }
14988
+ },
14989
+ {
14990
+ "abstract": true,
14991
+ "docs": {
14992
+ "see": "https://typedoc.org/documents/Options.Organization.html#sortentrypoints",
14993
+ "stability": "stable",
14994
+ "summary": "Specify the sort strategy for static and instance members."
14995
+ },
14996
+ "immutable": true,
14997
+ "locationInModule": {
14998
+ "filename": "src/components/typedoc-config.ts",
14999
+ "line": 145
15000
+ },
15001
+ "name": "sortEntryPoints",
15002
+ "optional": true,
15003
+ "type": {
15004
+ "primitive": "boolean"
15005
+ }
15006
+ },
15007
+ {
15008
+ "abstract": true,
15009
+ "docs": {
15010
+ "see": "https://typedoc.org/documents/Options.Input.html#sourcelinktemplate",
15011
+ "stability": "stable",
15012
+ "summary": "Specify a link template to be used when generating source urls."
15013
+ },
15014
+ "immutable": true,
15015
+ "locationInModule": {
15016
+ "filename": "src/components/typedoc-config.ts",
15017
+ "line": 229
15018
+ },
15019
+ "name": "sourceLinkTemplate",
15020
+ "optional": true,
15021
+ "type": {
15022
+ "primitive": "string"
15023
+ }
15024
+ },
15025
+ {
15026
+ "abstract": true,
15027
+ "docs": {
15028
+ "see": "https://typedoc.org/documents/Options.Output.html#theme",
15029
+ "stability": "stable",
15030
+ "summary": "Specify a theme name to use."
15031
+ },
15032
+ "immutable": true,
15033
+ "locationInModule": {
15034
+ "filename": "src/components/typedoc-config.ts",
15035
+ "line": 75
15036
+ },
15037
+ "name": "theme",
15038
+ "optional": true,
15039
+ "type": {
15040
+ "primitive": "string"
15041
+ }
15042
+ },
15043
+ {
15044
+ "abstract": true,
15045
+ "docs": {
15046
+ "see": "https://typedoc.org/documents/Options.Validation.html#treatvalidationwarningsaserrors",
15047
+ "stability": "stable",
15048
+ "summary": "If set, validation warnings will be treated as errors."
15049
+ },
15050
+ "immutable": true,
15051
+ "locationInModule": {
15052
+ "filename": "src/components/typedoc-config.ts",
15053
+ "line": 306
15054
+ },
15055
+ "name": "treatValidationWarningsAsErrors",
15056
+ "optional": true,
15057
+ "type": {
15058
+ "primitive": "boolean"
15059
+ }
15060
+ },
15061
+ {
15062
+ "abstract": true,
15063
+ "docs": {
15064
+ "see": "https://typedoc.org/documents/Options.Validation.html#treatwarningsaserrors",
15065
+ "stability": "stable",
15066
+ "summary": "If set, warnings will be treated as errors."
15067
+ },
15068
+ "immutable": true,
15069
+ "locationInModule": {
15070
+ "filename": "src/components/typedoc-config.ts",
15071
+ "line": 299
15072
+ },
15073
+ "name": "treatWarningsAsErrors",
15074
+ "optional": true,
15075
+ "type": {
15076
+ "primitive": "boolean"
15077
+ }
15078
+ },
15079
+ {
15080
+ "abstract": true,
15081
+ "docs": {
15082
+ "see": "https://typedoc.org/documents/Options.Input.html#tsbuildinfo",
15083
+ "stability": "stable",
15084
+ "summary": "Specify the location and filename a .tsbuildinfo file should be written to."
15085
+ },
15086
+ "immutable": true,
15087
+ "locationInModule": {
15088
+ "filename": "src/components/typedoc-config.ts",
15089
+ "line": 117
15090
+ },
15091
+ "name": "tsBuildInfo",
15092
+ "optional": true,
15093
+ "type": {
15094
+ "primitive": "string"
15095
+ }
15096
+ },
15097
+ {
15098
+ "abstract": true,
15099
+ "docs": {
15100
+ "see": "https://typedoc.org/documents/Options.Input.html#tsconfig",
15101
+ "stability": "stable",
15102
+ "summary": "Specify a TypeScript config file that should be used to load TypeScript configuration."
15103
+ },
15104
+ "immutable": true,
15105
+ "locationInModule": {
15106
+ "filename": "src/components/typedoc-config.ts",
15107
+ "line": 124
15108
+ },
15109
+ "name": "tsconfig",
15110
+ "optional": true,
15111
+ "type": {
15112
+ "primitive": "string"
15113
+ }
15114
+ },
15115
+ {
15116
+ "abstract": true,
15117
+ "docs": {
15118
+ "see": "https://typedoc.org/documents/Options.Validation.html",
15119
+ "stability": "stable",
15120
+ "summary": "Specify validation options."
15121
+ },
15122
+ "immutable": true,
15123
+ "locationInModule": {
15124
+ "filename": "src/components/typedoc-config.ts",
15125
+ "line": 285
15126
+ },
15127
+ "name": "validation",
15128
+ "optional": true,
15129
+ "type": {
15130
+ "fqn": "@nikovirtala/projen-constructs.ValidationOptions"
15131
+ }
15132
+ }
15133
+ ],
15134
+ "symbolId": "src/components/typedoc-config:TypeDocConfiguration"
15135
+ },
15136
+ "@nikovirtala/projen-constructs.TypeDocOptions": {
15137
+ "assembly": "@nikovirtala/projen-constructs",
15138
+ "datatype": true,
15139
+ "docs": {
15140
+ "stability": "stable"
15141
+ },
15142
+ "fqn": "@nikovirtala/projen-constructs.TypeDocOptions",
15143
+ "kind": "interface",
15144
+ "locationInModule": {
15145
+ "filename": "src/components/typedoc.ts",
15146
+ "line": 20
15147
+ },
15148
+ "name": "TypeDocOptions",
15149
+ "properties": [
15150
+ {
15151
+ "abstract": true,
15152
+ "docs": {
15153
+ "remarks": "This configuration will be merged with the default configuration",
15154
+ "stability": "stable",
15155
+ "summary": "Full TypeDoc configuration."
15156
+ },
15157
+ "immutable": true,
15158
+ "locationInModule": {
15159
+ "filename": "src/components/typedoc.ts",
15160
+ "line": 33
15161
+ },
15162
+ "name": "typeDocConfig",
15163
+ "optional": true,
15164
+ "type": {
15165
+ "fqn": "@nikovirtala/projen-constructs.TypeDocConfiguration"
15166
+ }
15167
+ },
15168
+ {
15169
+ "abstract": true,
15170
+ "docs": {
15171
+ "default": "\"^0.28\"",
15172
+ "stability": "stable",
15173
+ "summary": "Version of TypeDoc to use."
15174
+ },
15175
+ "immutable": true,
15176
+ "locationInModule": {
15177
+ "filename": "src/components/typedoc.ts",
15178
+ "line": 26
15179
+ },
15180
+ "name": "version",
15181
+ "optional": true,
15182
+ "type": {
15183
+ "primitive": "string"
15184
+ }
15185
+ }
15186
+ ],
15187
+ "symbolId": "src/components/typedoc:TypeDocOptions"
15188
+ },
15189
+ "@nikovirtala/projen-constructs.TypeScriptProject": {
15190
+ "assembly": "@nikovirtala/projen-constructs",
15191
+ "base": "projen.typescript.TypeScriptProject",
15192
+ "docs": {
15193
+ "remarks": "Extends Projen's base class with opinionated defaults and automatic component setup.",
15194
+ "stability": "stable",
15195
+ "summary": "TypeScriptProject with standard configuration and component integration."
15196
+ },
15197
+ "fqn": "@nikovirtala/projen-constructs.TypeScriptProject",
15198
+ "initializer": {
15199
+ "docs": {
15200
+ "stability": "stable"
15201
+ },
15202
+ "locationInModule": {
15203
+ "filename": "src/projects/typescript.generated.ts",
15204
+ "line": 20
15205
+ },
15206
+ "parameters": [
15207
+ {
15208
+ "docs": {
15209
+ "summary": "- Project configuration."
15210
+ },
15211
+ "name": "options",
15212
+ "type": {
15213
+ "fqn": "@nikovirtala/projen-constructs.TypeScriptProjectOptions"
15214
+ }
15215
+ }
15216
+ ]
15217
+ },
15218
+ "kind": "class",
15219
+ "locationInModule": {
15220
+ "filename": "src/projects/typescript.generated.ts",
15221
+ "line": 16
15222
+ },
15223
+ "name": "TypeScriptProject",
15224
+ "symbolId": "src/projects/typescript.generated:TypeScriptProject"
15225
+ },
15226
+ "@nikovirtala/projen-constructs.TypeScriptProjectOptions": {
15227
+ "assembly": "@nikovirtala/projen-constructs",
15228
+ "datatype": true,
15229
+ "docs": {
15230
+ "stability": "stable",
15231
+ "summary": "TypeScriptProjectOptions."
15232
+ },
15233
+ "fqn": "@nikovirtala/projen-constructs.TypeScriptProjectOptions",
15234
+ "kind": "interface",
15235
+ "locationInModule": {
15236
+ "filename": "src/projects/typescript-options.generated.ts",
15237
+ "line": 8
15238
+ },
15239
+ "name": "TypeScriptProjectOptions",
15240
+ "properties": [
15241
+ {
15242
+ "abstract": true,
15243
+ "docs": {
15244
+ "default": "\"main\"",
15245
+ "stability": "experimental",
15246
+ "summary": "The name of the main release branch."
15247
+ },
15248
+ "immutable": true,
15249
+ "locationInModule": {
15250
+ "filename": "src/projects/typescript-options.generated.ts",
15251
+ "line": 312
15252
+ },
15253
+ "name": "defaultReleaseBranch",
15254
+ "type": {
15255
+ "primitive": "string"
15256
+ }
15257
+ },
15258
+ {
15259
+ "abstract": true,
15260
+ "docs": {
15261
+ "custom": {
15262
+ "featured": "true"
15263
+ },
15264
+ "default": "$BASEDIR",
15265
+ "stability": "experimental",
15266
+ "summary": "This is the name of your project."
15267
+ },
15268
+ "immutable": true,
15269
+ "locationInModule": {
15270
+ "filename": "src/projects/typescript-options.generated.ts",
15271
+ "line": 951
15272
+ },
15273
+ "name": "name",
15274
+ "type": {
15275
+ "primitive": "string"
15276
+ }
15277
+ },
15278
+ {
15279
+ "abstract": true,
15280
+ "docs": {
15281
+ "default": "true",
15282
+ "remarks": "This is normally only allowed for libraries. For apps, there's no meaning\nfor specifying these.",
15283
+ "stability": "experimental",
15284
+ "summary": "Allow the project to include `peerDependencies` and `bundledDependencies`."
15285
+ },
15286
+ "immutable": true,
15287
+ "locationInModule": {
15288
+ "filename": "src/projects/typescript-options.generated.ts",
15289
+ "line": 789
15290
+ },
15291
+ "name": "allowLibraryDependencies",
15292
+ "optional": true,
15293
+ "type": {
15294
+ "primitive": "boolean"
15295
+ }
15296
+ },
15297
+ {
15298
+ "abstract": true,
15299
+ "docs": {
15300
+ "default": "\"dist\"",
15301
+ "stability": "experimental",
15302
+ "summary": "A directory which will contain build artifacts."
15303
+ },
15304
+ "immutable": true,
15305
+ "locationInModule": {
15306
+ "filename": "src/projects/typescript-options.generated.ts",
15307
+ "line": 306
15308
+ },
15309
+ "name": "artifactsDirectory",
15310
+ "optional": true,
15311
+ "type": {
15312
+ "primitive": "string"
15313
+ }
15314
+ },
15315
+ {
15316
+ "abstract": true,
15317
+ "docs": {
15318
+ "default": "false",
15319
+ "remarks": "When enabled, creates an \"audit\" task that checks for known security vulnerabilities\nin dependencies. By default, runs during every build and checks for \"high\" severity\nvulnerabilities or above in all dependencies (including dev dependencies).",
15320
+ "stability": "experimental",
15321
+ "summary": "Run security audit on dependencies."
15322
+ },
15323
+ "immutable": true,
15324
+ "locationInModule": {
15325
+ "filename": "src/projects/typescript-options.generated.ts",
15326
+ "line": 300
15327
+ },
15328
+ "name": "auditDeps",
15329
+ "optional": true,
15330
+ "type": {
15331
+ "primitive": "boolean"
15332
+ }
15333
+ },
15334
+ {
15335
+ "abstract": true,
15336
+ "docs": {
15337
+ "default": "- default options",
15338
+ "stability": "experimental",
15339
+ "summary": "Security audit options."
14109
15340
  },
14110
15341
  "immutable": true,
14111
15342
  "locationInModule": {
@@ -16614,6 +17845,115 @@
16614
17845
  ],
16615
17846
  "symbolId": "src/projects/typescript-options.generated:TypeScriptProjectOptions"
16616
17847
  },
17848
+ "@nikovirtala/projen-constructs.ValidationOptions": {
17849
+ "assembly": "@nikovirtala/projen-constructs",
17850
+ "datatype": true,
17851
+ "docs": {
17852
+ "see": "https://typedoc.org/documents/Options.Validation.html",
17853
+ "stability": "stable",
17854
+ "summary": "Validation options."
17855
+ },
17856
+ "fqn": "@nikovirtala/projen-constructs.ValidationOptions",
17857
+ "kind": "interface",
17858
+ "locationInModule": {
17859
+ "filename": "src/components/typedoc-config.ts",
17860
+ "line": 498
17861
+ },
17862
+ "name": "ValidationOptions",
17863
+ "properties": [
17864
+ {
17865
+ "abstract": true,
17866
+ "docs": {
17867
+ "stability": "stable",
17868
+ "summary": "If set, TypeDoc will produce warnings about \\@link tags which will produce broken links."
17869
+ },
17870
+ "immutable": true,
17871
+ "locationInModule": {
17872
+ "filename": "src/components/typedoc-config.ts",
17873
+ "line": 510
17874
+ },
17875
+ "name": "invalidLink",
17876
+ "optional": true,
17877
+ "type": {
17878
+ "primitive": "boolean"
17879
+ }
17880
+ },
17881
+ {
17882
+ "abstract": true,
17883
+ "docs": {
17884
+ "stability": "stable",
17885
+ "summary": "If set, TypeDoc will produce warnings when an exported symbol is not documented."
17886
+ },
17887
+ "immutable": true,
17888
+ "locationInModule": {
17889
+ "filename": "src/components/typedoc-config.ts",
17890
+ "line": 506
17891
+ },
17892
+ "name": "notDocumented",
17893
+ "optional": true,
17894
+ "type": {
17895
+ "primitive": "boolean"
17896
+ }
17897
+ },
17898
+ {
17899
+ "abstract": true,
17900
+ "docs": {
17901
+ "stability": "stable",
17902
+ "summary": "If set, TypeDoc will produce warnings when a symbol is referenced by the documentation."
17903
+ },
17904
+ "immutable": true,
17905
+ "locationInModule": {
17906
+ "filename": "src/components/typedoc-config.ts",
17907
+ "line": 502
17908
+ },
17909
+ "name": "notExported",
17910
+ "optional": true,
17911
+ "type": {
17912
+ "primitive": "boolean"
17913
+ }
17914
+ }
17915
+ ],
17916
+ "symbolId": "src/components/typedoc-config:ValidationOptions"
17917
+ },
17918
+ "@nikovirtala/projen-constructs.Visibility": {
17919
+ "assembly": "@nikovirtala/projen-constructs",
17920
+ "docs": {
17921
+ "see": "https://typedoc.org/documents/Options.Comments.html#defaultvisibility",
17922
+ "stability": "stable",
17923
+ "summary": "Specifies the default visibility for members without a visibility tag."
17924
+ },
17925
+ "fqn": "@nikovirtala/projen-constructs.Visibility",
17926
+ "kind": "enum",
17927
+ "locationInModule": {
17928
+ "filename": "src/components/typedoc-config.ts",
17929
+ "line": 478
17930
+ },
17931
+ "members": [
17932
+ {
17933
+ "docs": {
17934
+ "stability": "stable",
17935
+ "summary": "Public visibility - accessible from anywhere."
17936
+ },
17937
+ "name": "PUBLIC"
17938
+ },
17939
+ {
17940
+ "docs": {
17941
+ "stability": "stable",
17942
+ "summary": "Protected visibility - accessible from class and subclasses."
17943
+ },
17944
+ "name": "PROTECTED"
17945
+ },
17946
+ {
17947
+ "docs": {
17948
+ "stability": "stable",
17949
+ "summary": "Private visibility - accessible only within the class."
17950
+ },
17951
+ "name": "PRIVATE"
17952
+ }
17953
+ ],
17954
+ "name": "Visibility",
17955
+ "symbolId": "src/components/typedoc-config:Visibility"
17956
+ },
16617
17957
  "@nikovirtala/projen-constructs.Vitest": {
16618
17958
  "assembly": "@nikovirtala/projen-constructs",
16619
17959
  "base": "projen.Component",
@@ -17247,6 +18587,6 @@
17247
18587
  "symbolId": "src/components/vitest:VitestOptions"
17248
18588
  }
17249
18589
  },
17250
- "version": "0.2.0",
17251
- "fingerprint": "xuX563zrmTKL1EVuZhYRywKnsCFqGf4m29DJkKiXN64="
18590
+ "version": "0.2.2",
18591
+ "fingerprint": "SumPhNLQ6k9FqahIo64OQuleXEhvXALSHyphvzBJWNc="
17252
18592
  }