@apimatic/cli 1.1.0-alpha.9 → 1.1.0-beta.10

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 (341) hide show
  1. package/README.md +443 -374
  2. package/bin/run.js +5 -0
  3. package/lib/actions/action-result.d.ts +19 -0
  4. package/lib/actions/action-result.js +70 -0
  5. package/lib/actions/action-result.js.map +1 -0
  6. package/lib/actions/api/transform.d.ts +15 -0
  7. package/lib/actions/api/transform.js +48 -0
  8. package/lib/actions/api/transform.js.map +1 -0
  9. package/lib/actions/api/validate.d.ts +14 -0
  10. package/lib/actions/api/validate.js +52 -0
  11. package/lib/actions/api/validate.js.map +1 -0
  12. package/lib/actions/auth/login.d.ts +13 -0
  13. package/lib/actions/auth/login.js +55 -0
  14. package/lib/actions/auth/login.js.map +1 -0
  15. package/lib/actions/auth/logout.d.ts +8 -0
  16. package/lib/actions/auth/logout.js +15 -0
  17. package/lib/actions/auth/logout.js.map +1 -0
  18. package/lib/actions/auth/status.d.ts +11 -0
  19. package/lib/actions/auth/status.js +26 -0
  20. package/lib/actions/auth/status.js.map +1 -0
  21. package/lib/actions/portal/copilot.d.ts +16 -0
  22. package/lib/actions/portal/copilot.js +89 -0
  23. package/lib/actions/portal/copilot.js.map +1 -0
  24. package/lib/actions/portal/generate.d.ts +11 -5
  25. package/lib/actions/portal/generate.js +60 -55
  26. package/lib/actions/portal/generate.js.map +1 -0
  27. package/lib/actions/portal/quickstart.d.ts +17 -0
  28. package/lib/actions/portal/quickstart.js +169 -0
  29. package/lib/actions/portal/quickstart.js.map +1 -0
  30. package/lib/actions/portal/recipe/new-recipe.d.ts +15 -0
  31. package/lib/actions/portal/recipe/new-recipe.js +177 -0
  32. package/lib/actions/portal/recipe/new-recipe.js.map +1 -0
  33. package/lib/actions/portal/serve.d.ts +15 -0
  34. package/lib/actions/portal/serve.js +104 -0
  35. package/lib/actions/portal/serve.js.map +1 -0
  36. package/lib/actions/portal/toc/new-toc.d.ts +17 -13
  37. package/lib/actions/portal/toc/new-toc.js +85 -123
  38. package/lib/actions/portal/toc/new-toc.js.map +1 -0
  39. package/lib/actions/quickstart.d.ts +10 -0
  40. package/lib/actions/quickstart.js +30 -0
  41. package/lib/actions/quickstart.js.map +1 -0
  42. package/lib/actions/sdk/generate.d.ts +13 -0
  43. package/lib/actions/sdk/generate.js +77 -0
  44. package/lib/actions/sdk/generate.js.map +1 -0
  45. package/lib/actions/sdk/quickstart.d.ts +17 -0
  46. package/lib/actions/sdk/quickstart.js +171 -0
  47. package/lib/actions/sdk/quickstart.js.map +1 -0
  48. package/lib/application/portal/recipe/portal-recipe.d.ts +8 -0
  49. package/lib/application/portal/recipe/portal-recipe.js +33 -0
  50. package/lib/application/portal/recipe/portal-recipe.js.map +1 -0
  51. package/lib/application/portal/recipe/recipe-generator.d.ts +21 -0
  52. package/lib/application/portal/recipe/recipe-generator.js +145 -0
  53. package/lib/application/portal/recipe/recipe-generator.js.map +1 -0
  54. package/lib/application/portal/toc/toc-content-parser.d.ts +1 -1
  55. package/lib/application/portal/toc/toc-content-parser.js +9 -11
  56. package/lib/application/portal/toc/toc-content-parser.js.map +1 -0
  57. package/lib/application/portal/toc/toc-structure-generator.d.ts +23 -2
  58. package/lib/application/portal/toc/toc-structure-generator.js +133 -66
  59. package/lib/application/portal/toc/toc-structure-generator.js.map +1 -0
  60. package/lib/client-utils/auth-manager.d.ts +7 -2
  61. package/lib/client-utils/auth-manager.js +26 -14
  62. package/lib/client-utils/auth-manager.js.map +1 -0
  63. package/lib/commands/api/transform.d.ts +10 -7
  64. package/lib/commands/api/transform.js +51 -111
  65. package/lib/commands/api/transform.js.map +1 -0
  66. package/lib/commands/api/validate.d.ts +7 -4
  67. package/lib/commands/api/validate.js +31 -74
  68. package/lib/commands/api/validate.js.map +1 -0
  69. package/lib/commands/auth/login.d.ts +3 -1
  70. package/lib/commands/auth/login.js +26 -68
  71. package/lib/commands/auth/login.js.map +1 -0
  72. package/lib/commands/auth/logout.d.ts +3 -1
  73. package/lib/commands/auth/logout.js +14 -21
  74. package/lib/commands/auth/logout.js.map +1 -0
  75. package/lib/commands/auth/status.d.ts +1 -0
  76. package/lib/commands/auth/status.js +18 -21
  77. package/lib/commands/auth/status.js.map +1 -0
  78. package/lib/commands/portal/copilot.d.ts +13 -0
  79. package/lib/commands/portal/copilot.js +34 -0
  80. package/lib/commands/portal/copilot.js.map +1 -0
  81. package/lib/commands/portal/generate.d.ts +7 -11
  82. package/lib/commands/portal/generate.js +26 -89
  83. package/lib/commands/portal/generate.js.map +1 -0
  84. package/lib/commands/portal/recipe/new.d.ts +12 -0
  85. package/lib/commands/portal/recipe/new.js +45 -0
  86. package/lib/commands/portal/recipe/new.js.map +1 -0
  87. package/lib/commands/portal/serve.d.ts +8 -8
  88. package/lib/commands/portal/serve.js +41 -125
  89. package/lib/commands/portal/serve.js.map +1 -0
  90. package/lib/commands/portal/toc/new.d.ts +8 -7
  91. package/lib/commands/portal/toc/new.js +52 -49
  92. package/lib/commands/portal/toc/new.js.map +1 -0
  93. package/lib/commands/quickstart.d.ts +9 -0
  94. package/lib/commands/quickstart.js +37 -0
  95. package/lib/commands/quickstart.js.map +1 -0
  96. package/lib/commands/sdk/generate.d.ts +10 -8
  97. package/lib/commands/sdk/generate.js +46 -131
  98. package/lib/commands/sdk/generate.js.map +1 -0
  99. package/lib/config/axios-config.js +4 -6
  100. package/lib/config/axios-config.js.map +1 -0
  101. package/lib/hooks/not-found.d.ts +3 -0
  102. package/lib/hooks/not-found.js +52 -0
  103. package/lib/hooks/not-found.js.map +1 -0
  104. package/lib/hooks/utils.d.ts +5 -0
  105. package/lib/hooks/utils.js +51 -0
  106. package/lib/hooks/utils.js.map +1 -0
  107. package/lib/index.js +2 -5
  108. package/lib/index.js.map +1 -0
  109. package/lib/infrastructure/debounce-service.d.ts +10 -0
  110. package/lib/infrastructure/debounce-service.js +55 -0
  111. package/lib/infrastructure/debounce-service.js.map +1 -0
  112. package/lib/infrastructure/env-info.d.ts +12 -0
  113. package/lib/infrastructure/env-info.js +58 -0
  114. package/lib/infrastructure/env-info.js.map +1 -0
  115. package/lib/infrastructure/file-service.d.ts +25 -0
  116. package/lib/infrastructure/file-service.js +131 -0
  117. package/lib/infrastructure/file-service.js.map +1 -0
  118. package/lib/infrastructure/launcher-service.d.ts +9 -0
  119. package/lib/infrastructure/launcher-service.js +72 -0
  120. package/lib/infrastructure/launcher-service.js.map +1 -0
  121. package/lib/infrastructure/network-service.d.ts +3 -0
  122. package/lib/infrastructure/network-service.js +7 -0
  123. package/lib/infrastructure/network-service.js.map +1 -0
  124. package/lib/infrastructure/service-error.d.ts +16 -0
  125. package/lib/infrastructure/service-error.js +49 -0
  126. package/lib/infrastructure/service-error.js.map +1 -0
  127. package/lib/infrastructure/services/api-client-factory.d.ts +6 -0
  128. package/lib/infrastructure/services/api-client-factory.js +20 -0
  129. package/lib/infrastructure/services/api-client-factory.js.map +1 -0
  130. package/lib/infrastructure/services/api-service.d.ts +13 -0
  131. package/lib/infrastructure/services/api-service.js +103 -0
  132. package/lib/infrastructure/services/api-service.js.map +1 -0
  133. package/lib/infrastructure/services/auth-service.d.ts +11 -0
  134. package/lib/infrastructure/services/auth-service.js +37 -0
  135. package/lib/infrastructure/services/auth-service.js.map +1 -0
  136. package/lib/infrastructure/services/file-download-service.d.ts +15 -0
  137. package/lib/infrastructure/services/file-download-service.js +104 -0
  138. package/lib/infrastructure/services/file-download-service.js.map +1 -0
  139. package/lib/infrastructure/services/portal-service.d.ts +15 -12
  140. package/lib/infrastructure/services/portal-service.js +152 -99
  141. package/lib/infrastructure/services/portal-service.js.map +1 -0
  142. package/lib/infrastructure/services/telemetry-service.d.ts +9 -0
  143. package/lib/infrastructure/services/telemetry-service.js +38 -0
  144. package/lib/infrastructure/services/telemetry-service.js.map +1 -0
  145. package/lib/infrastructure/services/transformation-service.d.ts +23 -0
  146. package/lib/infrastructure/services/transformation-service.js +56 -0
  147. package/lib/infrastructure/services/transformation-service.js.map +1 -0
  148. package/lib/infrastructure/services/validation-service.d.ts +43 -0
  149. package/lib/infrastructure/services/validation-service.js +142 -0
  150. package/lib/infrastructure/services/validation-service.js.map +1 -0
  151. package/lib/infrastructure/tmp-extensions.d.ts +2 -0
  152. package/lib/infrastructure/tmp-extensions.js +6 -0
  153. package/lib/infrastructure/tmp-extensions.js.map +1 -0
  154. package/lib/infrastructure/zip-service.d.ts +6 -0
  155. package/lib/infrastructure/zip-service.js +39 -0
  156. package/lib/infrastructure/zip-service.js.map +1 -0
  157. package/lib/prompts/api/transform.d.ts +11 -0
  158. package/lib/prompts/api/transform.js +29 -0
  159. package/lib/prompts/api/transform.js.map +1 -0
  160. package/lib/prompts/api/validate.d.ts +15 -0
  161. package/lib/prompts/api/validate.js +76 -0
  162. package/lib/prompts/api/validate.js.map +1 -0
  163. package/lib/prompts/auth/login.d.ts +10 -0
  164. package/lib/prompts/auth/login.js +22 -0
  165. package/lib/prompts/auth/login.js.map +1 -0
  166. package/lib/prompts/auth/logout.d.ts +3 -0
  167. package/lib/prompts/auth/logout.js +7 -0
  168. package/lib/prompts/auth/logout.js.map +1 -0
  169. package/lib/prompts/auth/status.d.ts +8 -0
  170. package/lib/prompts/auth/status.js +22 -0
  171. package/lib/prompts/auth/status.js.map +1 -0
  172. package/lib/prompts/format.d.ts +31 -0
  173. package/lib/prompts/format.js +89 -0
  174. package/lib/prompts/format.js.map +1 -0
  175. package/lib/prompts/portal/copilot.d.ts +18 -0
  176. package/lib/prompts/portal/copilot.js +82 -0
  177. package/lib/prompts/portal/copilot.js.map +1 -0
  178. package/lib/prompts/portal/generate.d.ts +13 -8
  179. package/lib/prompts/portal/generate.js +36 -53
  180. package/lib/prompts/portal/generate.js.map +1 -0
  181. package/lib/prompts/portal/quickstart.d.ts +31 -29
  182. package/lib/prompts/portal/quickstart.js +139 -185
  183. package/lib/prompts/portal/quickstart.js.map +1 -0
  184. package/lib/prompts/portal/recipe/new-recipe.d.ts +29 -0
  185. package/lib/prompts/portal/recipe/new-recipe.js +165 -0
  186. package/lib/prompts/portal/recipe/new-recipe.js.map +1 -0
  187. package/lib/prompts/portal/serve.d.ts +9 -5
  188. package/lib/prompts/portal/serve.js +29 -19
  189. package/lib/prompts/portal/serve.js.map +1 -0
  190. package/lib/prompts/portal/toc/new-toc.d.ts +13 -8
  191. package/lib/prompts/portal/toc/new-toc.js +36 -36
  192. package/lib/prompts/portal/toc/new-toc.js.map +1 -0
  193. package/lib/prompts/prompt.d.ts +3 -0
  194. package/lib/prompts/prompt.js +37 -0
  195. package/lib/prompts/prompt.js.map +1 -0
  196. package/lib/prompts/quickstart.d.ts +6 -0
  197. package/lib/prompts/quickstart.js +25 -0
  198. package/lib/prompts/quickstart.js.map +1 -0
  199. package/lib/prompts/sdk/generate.d.ts +16 -0
  200. package/lib/prompts/sdk/generate.js +57 -0
  201. package/lib/prompts/sdk/generate.js.map +1 -0
  202. package/lib/prompts/sdk/quickstart.d.ts +35 -0
  203. package/lib/prompts/sdk/quickstart.js +177 -0
  204. package/lib/prompts/sdk/quickstart.js.map +1 -0
  205. package/lib/types/api/account.d.ts +10 -0
  206. package/lib/types/api/account.js +2 -0
  207. package/lib/types/api/account.js.map +1 -0
  208. package/lib/types/api/transform.d.ts +14 -25
  209. package/lib/types/api/transform.js +20 -23
  210. package/lib/types/api/transform.js.map +1 -0
  211. package/lib/types/build/build.d.ts +22 -0
  212. package/lib/types/build/build.js +7 -0
  213. package/lib/types/build/build.js.map +1 -0
  214. package/lib/types/build-context.d.ts +13 -0
  215. package/lib/types/build-context.js +33 -0
  216. package/lib/types/build-context.js.map +1 -0
  217. package/lib/types/common/command-metadata.d.ts +4 -0
  218. package/lib/types/common/command-metadata.js +2 -0
  219. package/lib/types/common/command-metadata.js.map +1 -0
  220. package/lib/types/events/domain-event.d.ts +8 -0
  221. package/lib/types/events/domain-event.js +11 -0
  222. package/lib/types/events/domain-event.js.map +1 -0
  223. package/lib/types/events/quickstart-completed.d.ts +7 -0
  224. package/lib/types/events/quickstart-completed.js +10 -0
  225. package/lib/types/events/quickstart-completed.js.map +1 -0
  226. package/lib/types/events/quickstart-initiated.d.ts +7 -0
  227. package/lib/types/events/quickstart-initiated.js +10 -0
  228. package/lib/types/events/quickstart-initiated.js.map +1 -0
  229. package/lib/types/events/recipe-creation-failed.d.ts +5 -0
  230. package/lib/types/events/recipe-creation-failed.js +8 -0
  231. package/lib/types/events/recipe-creation-failed.js.map +1 -0
  232. package/lib/types/events/toc-creation-failed.d.ts +5 -0
  233. package/lib/types/events/toc-creation-failed.js +8 -0
  234. package/lib/types/events/toc-creation-failed.js.map +1 -0
  235. package/lib/types/file/directory.d.ts +17 -0
  236. package/lib/types/file/directory.js +87 -0
  237. package/lib/types/file/directory.js.map +1 -0
  238. package/lib/types/file/directoryPath.d.ts +10 -0
  239. package/lib/types/file/directoryPath.js +26 -0
  240. package/lib/types/file/directoryPath.js.map +1 -0
  241. package/lib/types/file/fileName.d.ts +7 -0
  242. package/lib/types/file/fileName.js +21 -0
  243. package/lib/types/file/fileName.js.map +1 -0
  244. package/lib/types/file/filePath.d.ts +10 -0
  245. package/lib/types/file/filePath.js +32 -0
  246. package/lib/types/file/filePath.js.map +1 -0
  247. package/lib/types/file/resource-input.d.ts +5 -0
  248. package/lib/types/file/resource-input.js +42 -0
  249. package/lib/types/file/resource-input.js.map +1 -0
  250. package/lib/types/file/urlPath.d.ts +6 -0
  251. package/lib/types/file/urlPath.js +22 -0
  252. package/lib/types/file/urlPath.js.map +1 -0
  253. package/lib/types/flags-provider.d.ts +15 -0
  254. package/lib/types/flags-provider.js +34 -0
  255. package/lib/types/flags-provider.js.map +1 -0
  256. package/lib/types/portal-context.d.ts +13 -0
  257. package/lib/types/portal-context.js +38 -0
  258. package/lib/types/portal-context.js.map +1 -0
  259. package/lib/types/recipe/recipe.d.ts +22 -0
  260. package/lib/types/recipe/recipe.js +6 -0
  261. package/lib/types/recipe/recipe.js.map +1 -0
  262. package/lib/types/recipe-context.d.ts +9 -0
  263. package/lib/types/recipe-context.js +26 -0
  264. package/lib/types/recipe-context.js.map +1 -0
  265. package/lib/types/resource-context.d.ts +12 -0
  266. package/lib/types/resource-context.js +30 -0
  267. package/lib/types/resource-context.js.map +1 -0
  268. package/lib/types/sdk/generate.d.ts +9 -22
  269. package/lib/types/sdk/generate.js +25 -14
  270. package/lib/types/sdk/generate.js.map +1 -0
  271. package/lib/types/sdk-context.d.ts +14 -0
  272. package/lib/types/sdk-context.js +32 -0
  273. package/lib/types/sdk-context.js.map +1 -0
  274. package/lib/types/sdl/sdl.d.ts +27 -0
  275. package/lib/types/sdl/sdl.js +145 -3
  276. package/lib/types/sdl/sdl.js.map +1 -0
  277. package/lib/types/spec-context.d.ts +12 -0
  278. package/lib/types/spec-context.js +29 -0
  279. package/lib/types/spec-context.js.map +1 -0
  280. package/lib/types/temp-context.d.ts +11 -0
  281. package/lib/types/temp-context.js +27 -0
  282. package/lib/types/temp-context.js.map +1 -0
  283. package/lib/types/toc/toc.d.ts +31 -6
  284. package/lib/types/toc/toc.js +2 -10
  285. package/lib/types/toc/toc.js.map +1 -0
  286. package/lib/types/toc-context.d.ts +12 -0
  287. package/lib/types/toc-context.js +26 -0
  288. package/lib/types/toc-context.js.map +1 -0
  289. package/lib/types/transform-context.d.ts +13 -0
  290. package/lib/types/transform-context.js +30 -0
  291. package/lib/types/transform-context.js.map +1 -0
  292. package/lib/types/utils.d.ts +0 -9
  293. package/lib/types/utils.js +2 -3
  294. package/lib/types/utils.js.map +1 -0
  295. package/lib/types/versioned-build-context.d.ts +15 -0
  296. package/lib/types/versioned-build-context.js +28 -0
  297. package/lib/types/versioned-build-context.js.map +1 -0
  298. package/lib/utils/string-utils.d.ts +3 -0
  299. package/lib/utils/string-utils.js +79 -0
  300. package/lib/utils/string-utils.js.map +1 -0
  301. package/lib/utils/utils.d.ts +2 -44
  302. package/lib/utils/utils.js +14 -366
  303. package/lib/utils/utils.js.map +1 -0
  304. package/package.json +50 -31
  305. package/bin/run +0 -9
  306. package/lib/application/portal/toc/sdl-parser.d.ts +0 -13
  307. package/lib/application/portal/toc/sdl-parser.js +0 -53
  308. package/lib/client-utils/sdk-client.d.ts +0 -23
  309. package/lib/client-utils/sdk-client.js +0 -124
  310. package/lib/commands/portal/quickstart.d.ts +0 -10
  311. package/lib/commands/portal/quickstart.js +0 -79
  312. package/lib/config/env.d.ts +0 -27
  313. package/lib/config/env.js +0 -31
  314. package/lib/controllers/api/transform.d.ts +0 -5
  315. package/lib/controllers/api/transform.js +0 -56
  316. package/lib/controllers/api/validate.d.ts +0 -3
  317. package/lib/controllers/api/validate.js +0 -33
  318. package/lib/controllers/portal/generate.d.ts +0 -3
  319. package/lib/controllers/portal/generate.js +0 -110
  320. package/lib/controllers/portal/quickstart.d.ts +0 -14
  321. package/lib/controllers/portal/quickstart.js +0 -258
  322. package/lib/controllers/portal/serve.d.ts +0 -3
  323. package/lib/controllers/portal/serve.js +0 -138
  324. package/lib/controllers/sdk/generate.d.ts +0 -4
  325. package/lib/controllers/sdk/generate.js +0 -66
  326. package/lib/services/portal/server.d.ts +0 -14
  327. package/lib/services/portal/server.js +0 -101
  328. package/lib/types/api/validate.d.ts +0 -12
  329. package/lib/types/api/validate.js +0 -3
  330. package/lib/types/common/result.d.ts +0 -17
  331. package/lib/types/common/result.js +0 -36
  332. package/lib/types/portal/generate.d.ts +0 -26
  333. package/lib/types/portal/generate.js +0 -4
  334. package/lib/types/portal/quickstart.d.ts +0 -17
  335. package/lib/types/portal/quickstart.js +0 -3
  336. package/lib/validators/common/directoryValidator.d.ts +0 -9
  337. package/lib/validators/common/directoryValidator.js +0 -53
  338. package/lib/validators/common/portValidator.d.ts +0 -5
  339. package/lib/validators/common/portValidator.js +0 -20
  340. package/lib/validators/portal/serveValidator.d.ts +0 -6
  341. package/lib/validators/portal/serveValidator.js +0 -21
@@ -1,14 +1,3 @@
1
- import { TransformationController } from "@apimatic/sdk";
2
- export type TransformationIdParams = {
3
- file: string;
4
- url: string;
5
- format: string;
6
- };
7
- export type DownloadTransformationParams = {
8
- id: string;
9
- destinationFilePath: string;
10
- transformationController: TransformationController;
11
- };
12
1
  export type TransformationData = {
13
2
  result: NodeJS.ReadableStream | Blob;
14
3
  };
@@ -28,18 +17,18 @@ export declare const DestinationFormats: {
28
17
  GraphQlSchema: string;
29
18
  };
30
19
  export declare enum TransformationFormats {
31
- APIMATIC = "Apimatic",
32
- WADL2009 = "Wadl2009",
33
- WSDL = "Wsdl",
34
- SWAGGER10 = "Swagger10",
35
- SWAGGER20 = "Swagger20",
36
- SWAGGERYAML = "Swaggeryaml",
37
- OAS3 = "Oas3",
38
- OPENAPI3YAML = "Openapi3Yaml",
39
- APIBLUEPRINT = "Apiblueprint",
40
- RAML = "Raml",
41
- RAML10 = "Raml10",
42
- POSTMAN10 = "Postman10",
43
- POSTMAN20 = "Postman20",
44
- GRAPHQLSCHEMA = "Graphqlschema"
20
+ apimatic = "Apimatic",
21
+ wadl2009 = "Wadl2009",
22
+ wsdl = "Wsdl",
23
+ swagger10 = "Swagger10",
24
+ swagger20 = "Swagger20",
25
+ swaggeryaml = "Swaggeryaml",
26
+ oas3 = "Oas3",
27
+ openapi3yaml = "Openapi3Yaml",
28
+ apiblueprint = "Apiblueprint",
29
+ raml = "Raml",
30
+ raml10 = "Raml10",
31
+ postman10 = "Postman10",
32
+ postman20 = "Postman20",
33
+ graphqlschema = "Graphqlschema"
45
34
  }
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TransformationFormats = exports.DestinationFormats = void 0;
4
- exports.DestinationFormats = {
1
+ export const DestinationFormats = {
5
2
  OpenApi3Json: "json",
6
3
  OpenApi3Yaml: "yaml",
7
4
  APIMATIC: "json",
@@ -10,27 +7,27 @@ exports.DestinationFormats = {
10
7
  Swagger10: "json",
11
8
  Swagger20: "json",
12
9
  SwaggerYaml: "yaml",
13
- RAML: "yaml",
14
- RAML10: "yaml",
10
+ RAML: "raml",
11
+ RAML10: "raml",
15
12
  Postman10: "json",
16
13
  Postman20: "json",
17
14
  GraphQlSchema: "json"
18
15
  };
19
- var TransformationFormats;
16
+ export var TransformationFormats;
20
17
  (function (TransformationFormats) {
21
- TransformationFormats["APIMATIC"] = "Apimatic";
22
- TransformationFormats["WADL2009"] = "Wadl2009";
23
- TransformationFormats["WSDL"] = "Wsdl";
24
- TransformationFormats["SWAGGER10"] = "Swagger10";
25
- TransformationFormats["SWAGGER20"] = "Swagger20";
26
- TransformationFormats["SWAGGERYAML"] = "Swaggeryaml";
27
- TransformationFormats["OAS3"] = "Oas3";
28
- TransformationFormats["OPENAPI3YAML"] = "Openapi3Yaml";
29
- TransformationFormats["APIBLUEPRINT"] = "Apiblueprint";
30
- TransformationFormats["RAML"] = "Raml";
31
- TransformationFormats["RAML10"] = "Raml10";
32
- TransformationFormats["POSTMAN10"] = "Postman10";
33
- TransformationFormats["POSTMAN20"] = "Postman20";
34
- TransformationFormats["GRAPHQLSCHEMA"] = "Graphqlschema";
35
- })(TransformationFormats || (exports.TransformationFormats = TransformationFormats = {}));
36
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNmb3JtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3R5cGVzL2FwaS90cmFuc2Zvcm0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBa0JhLFFBQUEsa0JBQWtCLEdBQUc7SUFDaEMsWUFBWSxFQUFFLE1BQU07SUFDcEIsWUFBWSxFQUFFLE1BQU07SUFDcEIsUUFBUSxFQUFFLE1BQU07SUFDaEIsUUFBUSxFQUFFLEtBQUs7SUFDZixJQUFJLEVBQUUsS0FBSztJQUNYLFNBQVMsRUFBRSxNQUFNO0lBQ2pCLFNBQVMsRUFBRSxNQUFNO0lBQ2pCLFdBQVcsRUFBRSxNQUFNO0lBQ25CLElBQUksRUFBRSxNQUFNO0lBQ1osTUFBTSxFQUFFLE1BQU07SUFDZCxTQUFTLEVBQUUsTUFBTTtJQUNqQixTQUFTLEVBQUUsTUFBTTtJQUNqQixhQUFhLEVBQUUsTUFBTTtDQUN0QixDQUFDO0FBRUYsSUFBWSxxQkFlWDtBQWZELFdBQVkscUJBQXFCO0lBQy9CLDhDQUFxQixDQUFBO0lBQ3JCLDhDQUFxQixDQUFBO0lBQ3JCLHNDQUFhLENBQUE7SUFDYixnREFBdUIsQ0FBQTtJQUN2QixnREFBdUIsQ0FBQTtJQUN2QixvREFBMkIsQ0FBQTtJQUMzQixzQ0FBYSxDQUFBO0lBQ2Isc0RBQTZCLENBQUE7SUFDN0Isc0RBQTZCLENBQUE7SUFDN0Isc0NBQWEsQ0FBQTtJQUNiLDBDQUFpQixDQUFBO0lBQ2pCLGdEQUF1QixDQUFBO0lBQ3ZCLGdEQUF1QixDQUFBO0lBQ3ZCLHdEQUErQixDQUFBO0FBQ2pDLENBQUMsRUFmVyxxQkFBcUIscUNBQXJCLHFCQUFxQixRQWVoQyJ9
18
+ TransformationFormats["apimatic"] = "Apimatic";
19
+ TransformationFormats["wadl2009"] = "Wadl2009";
20
+ TransformationFormats["wsdl"] = "Wsdl";
21
+ TransformationFormats["swagger10"] = "Swagger10";
22
+ TransformationFormats["swagger20"] = "Swagger20";
23
+ TransformationFormats["swaggeryaml"] = "Swaggeryaml";
24
+ TransformationFormats["oas3"] = "Oas3";
25
+ TransformationFormats["openapi3yaml"] = "Openapi3Yaml";
26
+ TransformationFormats["apiblueprint"] = "Apiblueprint";
27
+ TransformationFormats["raml"] = "Raml";
28
+ TransformationFormats["raml10"] = "Raml10";
29
+ TransformationFormats["postman10"] = "Postman10";
30
+ TransformationFormats["postman20"] = "Postman20";
31
+ TransformationFormats["graphqlschema"] = "Graphqlschema";
32
+ })(TransformationFormats || (TransformationFormats = {}));
33
+ //# sourceMappingURL=transform.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transform.js","sourceRoot":"","sources":["../../../src/types/api/transform.ts"],"names":[],"mappings":"AAKA,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,YAAY,EAAE,MAAM;IACpB,YAAY,EAAE,MAAM;IACpB,QAAQ,EAAE,MAAM;IAChB,QAAQ,EAAE,KAAK;IACf,IAAI,EAAE,KAAK;IACX,SAAS,EAAE,MAAM;IACjB,SAAS,EAAE,MAAM;IACjB,WAAW,EAAE,MAAM;IACnB,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,MAAM;IACd,SAAS,EAAE,MAAM;IACjB,SAAS,EAAE,MAAM;IACjB,aAAa,EAAE,MAAM;CACtB,CAAC;AAEF,MAAM,CAAN,IAAY,qBAeX;AAfD,WAAY,qBAAqB;IAC/B,8CAAqB,CAAA;IACrB,8CAAqB,CAAA;IACrB,sCAAa,CAAA;IACb,gDAAuB,CAAA;IACvB,gDAAuB,CAAA;IACvB,oDAA2B,CAAA;IAC3B,sCAAa,CAAA;IACb,sDAA6B,CAAA;IAC7B,sDAA6B,CAAA;IAC7B,sCAAa,CAAA;IACb,0CAAiB,CAAA;IACjB,gDAAuB,CAAA;IACvB,gDAAuB,CAAA;IACvB,wDAA+B,CAAA;AACjC,CAAC,EAfW,qBAAqB,KAArB,qBAAqB,QAehC"}
@@ -0,0 +1,22 @@
1
+ import { DirectoryPath } from "../file/directoryPath.js";
2
+ export interface BuildConfig {
3
+ generatePortal?: PortalConfig;
4
+ apiCopilotConfig?: CopilotConfig;
5
+ [key: string]: unknown;
6
+ }
7
+ export interface PortalConfig {
8
+ contentFolder?: string;
9
+ languageConfig: {
10
+ [key: string]: object;
11
+ };
12
+ [key: string]: unknown;
13
+ apiSpecPath?: DirectoryPath;
14
+ }
15
+ export interface CopilotConfig {
16
+ isEnabled: boolean;
17
+ key: string;
18
+ welcomeMessage: string;
19
+ }
20
+ export declare function getLanguagesConfig(selectedLanguages: string[]): {
21
+ [key: string]: object;
22
+ };
@@ -0,0 +1,7 @@
1
+ export function getLanguagesConfig(selectedLanguages) {
2
+ return selectedLanguages.reduce((config, lang) => {
3
+ config[lang] = {};
4
+ return config;
5
+ }, {});
6
+ }
7
+ //# sourceMappingURL=build.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build.js","sourceRoot":"","sources":["../../../src/types/build/build.ts"],"names":[],"mappings":"AAqBA,MAAM,UAAU,kBAAkB,CAAC,iBAA2B;IAC5D,OAAO,iBAAiB,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,IAAI,EAAE,EAAE;QAC/C,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;QAClB,OAAO,MAAM,CAAC;IAChB,CAAC,EAAE,EAA+B,CAAC,CAAC;AACtC,CAAC"}
@@ -0,0 +1,13 @@
1
+ import { DirectoryPath } from "./file/directoryPath.js";
2
+ import { BuildConfig } from "./build/build.js";
3
+ export declare class BuildContext {
4
+ private readonly fileService;
5
+ private readonly buildDirectory;
6
+ constructor(buildDirectory: DirectoryPath);
7
+ private get buildFile();
8
+ validate(): Promise<boolean>;
9
+ exists(): Promise<boolean>;
10
+ getBuildFileContents(): Promise<BuildConfig>;
11
+ updateBuildFileContents(buildJson: BuildConfig): Promise<void>;
12
+ deleteWorkflowDir(): Promise<void>;
13
+ }
@@ -0,0 +1,33 @@
1
+ import { FileService } from "../infrastructure/file-service.js";
2
+ import { FilePath } from "./file/filePath.js";
3
+ import { FileName } from "./file/fileName.js";
4
+ export class BuildContext {
5
+ constructor(buildDirectory) {
6
+ this.fileService = new FileService();
7
+ this.buildDirectory = buildDirectory;
8
+ }
9
+ get buildFile() {
10
+ // TODO: add checks for build file path
11
+ return new FilePath(this.buildDirectory, new FileName("APIMATIC-BUILD.json"));
12
+ }
13
+ async validate() {
14
+ // TODO: add more checks here
15
+ if (!(await this.fileService.directoryExists(this.buildDirectory)))
16
+ return false;
17
+ return await this.fileService.fileExists(this.buildFile);
18
+ }
19
+ async exists() {
20
+ return !(await this.fileService.directoryEmpty(this.buildDirectory));
21
+ }
22
+ async getBuildFileContents() {
23
+ const buildFileContent = await this.fileService.getContents(this.buildFile);
24
+ return JSON.parse(buildFileContent);
25
+ }
26
+ async updateBuildFileContents(buildJson) {
27
+ await this.fileService.writeContents(this.buildFile, JSON.stringify(buildJson, null, 2));
28
+ }
29
+ async deleteWorkflowDir() {
30
+ await this.fileService.deleteDirectory(this.buildDirectory.join(".github"));
31
+ }
32
+ }
33
+ //# sourceMappingURL=build-context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build-context.js","sourceRoot":"","sources":["../../src/types/build-context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAEhE,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAG9C,MAAM,OAAO,YAAY;IAIvB,YAAY,cAA6B;QAHxB,gBAAW,GAAG,IAAI,WAAW,EAAE,CAAC;QAI/C,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACvC,CAAC;IAED,IAAY,SAAS;QACnB,uCAAuC;QACvC,OAAO,IAAI,QAAQ,CAAC,IAAI,CAAC,cAAc,EAAE,IAAI,QAAQ,CAAC,qBAAqB,CAAC,CAAC,CAAC;IAChF,CAAC;IAEM,KAAK,CAAC,QAAQ;QACnB,6BAA6B;QAC7B,IAAI,CAAC,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;YAAE,OAAO,KAAK,CAAC;QAEjF,OAAO,MAAM,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IAC3D,CAAC;IAEM,KAAK,CAAC,MAAM;QACjB,OAAO,CAAC,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC;IACvE,CAAC;IAEM,KAAK,CAAC,oBAAoB;QAC/B,MAAM,gBAAgB,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5E,OAAO,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAgB,CAAC;IACrD,CAAC;IAEM,KAAK,CAAC,uBAAuB,CAAC,SAAsB;QACzD,MAAM,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;IAC3F,CAAC;IAEM,KAAK,CAAC,iBAAiB;QAC5B,MAAM,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;IAC9E,CAAC;CACF"}
@@ -0,0 +1,4 @@
1
+ export interface CommandMetadata {
2
+ readonly commandName: string;
3
+ readonly shell: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=command-metadata.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"command-metadata.js","sourceRoot":"","sources":["../../../src/types/common/command-metadata.ts"],"names":[],"mappings":""}
@@ -0,0 +1,8 @@
1
+ export declare abstract class DomainEvent {
2
+ protected abstract readonly eventName: string;
3
+ private readonly message;
4
+ private readonly commandName;
5
+ private readonly flags;
6
+ protected constructor(message: string, commandName: string, flags: Record<string, unknown>);
7
+ private extractFlagKeys;
8
+ }
@@ -0,0 +1,11 @@
1
+ export class DomainEvent {
2
+ constructor(message, commandName, flags) {
3
+ this.message = message;
4
+ this.commandName = commandName;
5
+ this.flags = this.extractFlagKeys(flags);
6
+ }
7
+ extractFlagKeys(flags) {
8
+ return Object.keys(flags);
9
+ }
10
+ }
11
+ //# sourceMappingURL=domain-event.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"domain-event.js","sourceRoot":"","sources":["../../../src/types/events/domain-event.ts"],"names":[],"mappings":"AAAA,MAAM,OAAgB,WAAW;IAM/B,YAAsB,OAAe,EAAE,WAAmB,EAAE,KAA8B;QACxF,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC;IAEO,eAAe,CAAC,KAA8B;QACpD,OAAO,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IAC5B,CAAC;CACF"}
@@ -0,0 +1,7 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export declare class QuickstartCompletedEvent extends DomainEvent {
3
+ protected readonly eventName: string;
4
+ private static readonly message;
5
+ private static readonly commandName;
6
+ constructor();
7
+ }
@@ -0,0 +1,10 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export class QuickstartCompletedEvent extends DomainEvent {
3
+ constructor() {
4
+ super(QuickstartCompletedEvent.message, QuickstartCompletedEvent.commandName, {});
5
+ this.eventName = QuickstartCompletedEvent.name;
6
+ }
7
+ }
8
+ QuickstartCompletedEvent.message = "Quickstart completed.";
9
+ QuickstartCompletedEvent.commandName = "quickstart";
10
+ //# sourceMappingURL=quickstart-completed.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quickstart-completed.js","sourceRoot":"","sources":["../../../src/types/events/quickstart-completed.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,MAAM,OAAO,wBAAyB,SAAQ,WAAW;IAKvD;QACE,KAAK,CAAC,wBAAwB,CAAC,OAAO,EAAE,wBAAwB,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC;QALjE,cAAS,GAAG,wBAAwB,CAAC,IAAI,CAAC;IAM7D,CAAC;;AALuB,gCAAO,GAAG,uBAAgC,AAAnC,CAAoC;AAC3C,oCAAW,GAAG,YAAqB,AAAxB,CAAyB"}
@@ -0,0 +1,7 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export declare class QuickstartInitiatedEvent extends DomainEvent {
3
+ protected readonly eventName: string;
4
+ private static readonly message;
5
+ private static readonly commandName;
6
+ constructor();
7
+ }
@@ -0,0 +1,10 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export class QuickstartInitiatedEvent extends DomainEvent {
3
+ constructor() {
4
+ super(QuickstartInitiatedEvent.message, QuickstartInitiatedEvent.commandName, {});
5
+ this.eventName = QuickstartInitiatedEvent.name;
6
+ }
7
+ }
8
+ QuickstartInitiatedEvent.message = "Quickstart initiated.";
9
+ QuickstartInitiatedEvent.commandName = "quickstart";
10
+ //# sourceMappingURL=quickstart-initiated.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quickstart-initiated.js","sourceRoot":"","sources":["../../../src/types/events/quickstart-initiated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,MAAM,OAAO,wBAAyB,SAAQ,WAAW;IAKvD;QACE,KAAK,CAAC,wBAAwB,CAAC,OAAO,EAAE,wBAAwB,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC;QALjE,cAAS,GAAG,wBAAwB,CAAC,IAAI,CAAC;IAM7D,CAAC;;AALuB,gCAAO,GAAG,uBAAgC,AAAnC,CAAoC;AAC3C,oCAAW,GAAG,YAAqB,AAAxB,CAAyB"}
@@ -0,0 +1,5 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export declare class RecipeCreationFailedEvent extends DomainEvent {
3
+ protected readonly eventName: string;
4
+ constructor(message: string, commandName: string, flags: Record<string, unknown>);
5
+ }
@@ -0,0 +1,8 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export class RecipeCreationFailedEvent extends DomainEvent {
3
+ constructor(message, commandName, flags) {
4
+ super(message, commandName, flags);
5
+ this.eventName = RecipeCreationFailedEvent.name;
6
+ }
7
+ }
8
+ //# sourceMappingURL=recipe-creation-failed.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"recipe-creation-failed.js","sourceRoot":"","sources":["../../../src/types/events/recipe-creation-failed.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,MAAM,OAAO,yBAA0B,SAAQ,WAAW;IAGxD,YAAY,OAAe,EAAE,WAAmB,EAAE,KAA8B;QAC9E,KAAK,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC;QAHlB,cAAS,GAAG,yBAAyB,CAAC,IAAI,CAAC;IAI9D,CAAC;CACF"}
@@ -0,0 +1,5 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export declare class TocCreationFailedEvent extends DomainEvent {
3
+ protected readonly eventName: string;
4
+ constructor(message: string, commandName: string, flags: Record<string, unknown>);
5
+ }
@@ -0,0 +1,8 @@
1
+ import { DomainEvent } from "./domain-event.js";
2
+ export class TocCreationFailedEvent extends DomainEvent {
3
+ constructor(message, commandName, flags) {
4
+ super(message, commandName, flags);
5
+ this.eventName = TocCreationFailedEvent.name;
6
+ }
7
+ }
8
+ //# sourceMappingURL=toc-creation-failed.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"toc-creation-failed.js","sourceRoot":"","sources":["../../../src/types/events/toc-creation-failed.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,MAAM,OAAO,sBAAuB,SAAQ,WAAW;IAGrD,YAAY,OAAe,EAAE,WAAmB,EAAE,KAA8B;QAC9E,KAAK,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC;QAHlB,cAAS,GAAG,sBAAsB,CAAC,IAAI,CAAC;IAI3D,CAAC;CACF"}
@@ -0,0 +1,17 @@
1
+ import { DirectoryPath } from "./directoryPath.js";
2
+ import { FileName } from "./fileName.js";
3
+ import { TocGroup } from "../toc/toc.js";
4
+ import { TreeNode } from "../../prompts/format.js";
5
+ export type DirectoryItem = FileName | Directory;
6
+ export declare class Directory {
7
+ readonly directoryPath: DirectoryPath;
8
+ readonly items: DirectoryItem[];
9
+ private readonly fileService;
10
+ constructor(directoryPath: DirectoryPath, filePaths: DirectoryItem[]);
11
+ private static readonly folderDescriptions;
12
+ private static readonly fileDescriptions;
13
+ toTreeNode(): TreeNode;
14
+ parseContentFolder(baseContentPath: DirectoryPath): Promise<TocGroup[]>;
15
+ private getPageName;
16
+ private isRootContentDirectory;
17
+ }
@@ -0,0 +1,87 @@
1
+ import { FilePath } from "./filePath.js";
2
+ import { FileService } from "../../infrastructure/file-service.js";
3
+ export class Directory {
4
+ constructor(directoryPath, filePaths) {
5
+ this.fileService = new FileService();
6
+ this.directoryPath = directoryPath;
7
+ this.items = filePaths;
8
+ }
9
+ toTreeNode() {
10
+ const folderName = this.directoryPath.leafName();
11
+ const folderDescription = Directory.folderDescriptions[folderName];
12
+ return {
13
+ name: folderName,
14
+ description: folderDescription,
15
+ items: this.items.map((item) => {
16
+ if (item instanceof Directory) {
17
+ return item.toTreeNode();
18
+ }
19
+ // file case
20
+ const fileName = item.toString();
21
+ const fileDescription = Directory.fileDescriptions[fileName];
22
+ return {
23
+ name: fileName,
24
+ description: fileDescription
25
+ };
26
+ })
27
+ };
28
+ }
29
+ async parseContentFolder(baseContentPath) {
30
+ const groups = [];
31
+ const pages = [];
32
+ for (const item of this.items) {
33
+ if (item instanceof Directory) {
34
+ const subGroups = await item.parseContentFolder(baseContentPath);
35
+ if (subGroups.length > 0) {
36
+ const directoryName = item.directoryPath.leafName();
37
+ groups.push({
38
+ group: directoryName,
39
+ items: subGroups
40
+ });
41
+ }
42
+ }
43
+ else {
44
+ if (item.isMarkDown()) {
45
+ const currentFilePath = new FilePath(this.directoryPath, item);
46
+ const relativeFilePath = this.fileService.getRelativePath(currentFilePath, baseContentPath);
47
+ pages.push({
48
+ page: this.getPageName(item),
49
+ file: relativeFilePath
50
+ });
51
+ }
52
+ }
53
+ }
54
+ const allItems = [...pages, ...groups];
55
+ if (allItems.length === 0) {
56
+ return [];
57
+ }
58
+ if (this.isRootContentDirectory(baseContentPath)) {
59
+ return [
60
+ {
61
+ group: "Custom Content",
62
+ items: allItems
63
+ }
64
+ ];
65
+ }
66
+ // For subdirectories, return the items directly
67
+ return allItems;
68
+ }
69
+ getPageName(fileName) {
70
+ const fileNameStr = fileName.toString();
71
+ return fileNameStr.replace(/\.md$/, "");
72
+ }
73
+ isRootContentDirectory(baseContentPath) {
74
+ return this.directoryPath.toString() === baseContentPath.toString();
75
+ }
76
+ }
77
+ Directory.folderDescriptions = {
78
+ spec: "# Contains all API definition files",
79
+ content: "# Includes custom documentation pages in Markdown",
80
+ static: "# Includes all static files, such as images, GIFs, and PDFs"
81
+ };
82
+ Directory.fileDescriptions = {
83
+ "toc.yml": "# Controls the structure of the side navigation bar in the API portal",
84
+ "APIMATIC-BUILD.json": "# Defines all configurations for the API portal, including programming languages and themes",
85
+ "APIMATIC-META.json": "# Defines customization for SDK generation",
86
+ };
87
+ //# sourceMappingURL=directory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"directory.js","sourceRoot":"","sources":["../../../src/types/file/directory.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ export declare class DirectoryPath {
2
+ private readonly directoryPath;
3
+ constructor(directoryPath: string, ...subPaths: string[]);
4
+ static default: DirectoryPath;
5
+ static createInput(input: string | undefined): DirectoryPath;
6
+ toString(): string;
7
+ join(...subPath: string[]): DirectoryPath;
8
+ isEqual(other: DirectoryPath): boolean;
9
+ leafName(): string;
10
+ }
@@ -0,0 +1,26 @@
1
+ import * as path from "path";
2
+ export class DirectoryPath {
3
+ constructor(directoryPath, ...subPaths) {
4
+ this.directoryPath = path.resolve(directoryPath, ...subPaths);
5
+ }
6
+ static createInput(input) {
7
+ if (!input) {
8
+ return DirectoryPath.default;
9
+ }
10
+ return new DirectoryPath(input);
11
+ }
12
+ toString() {
13
+ return this.directoryPath;
14
+ }
15
+ join(...subPath) {
16
+ return new DirectoryPath(path.join(this.directoryPath, ...subPath));
17
+ }
18
+ isEqual(other) {
19
+ return this.directoryPath === other.directoryPath;
20
+ }
21
+ leafName() {
22
+ return path.basename(this.directoryPath);
23
+ }
24
+ }
25
+ DirectoryPath.default = new DirectoryPath("./");
26
+ //# sourceMappingURL=directoryPath.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"directoryPath.js","sourceRoot":"","sources":["../../../src/types/file/directoryPath.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAG7B,MAAM,OAAO,aAAa;IAGxB,YAAY,aAAqB,EAAE,GAAG,QAAkB;QACtD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,GAAG,QAAQ,CAAC,CAAC;IAChE,CAAC;IAIM,MAAM,CAAC,WAAW,CAAC,KAAyB;QACjD,IAAI,CAAC,KAAK,EAAE,CAAC;YACX,OAAO,aAAa,CAAC,OAAO,CAAC;QAC/B,CAAC;QACD,OAAO,IAAI,aAAa,CAAC,KAAK,CAAC,CAAC;IAClC,CAAC;IAEM,QAAQ;QACb,OAAO,IAAI,CAAC,aAAa,CAAC;IAC5B,CAAC;IAEM,IAAI,CAAC,GAAG,OAAiB;QAC9B,OAAO,IAAI,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,GAAG,OAAO,CAAC,CAAC,CAAC;IACtE,CAAC;IAEM,OAAO,CAAC,KAAoB;QACjC,OAAO,IAAI,CAAC,aAAa,KAAK,KAAK,CAAC,aAAa,CAAC;IACpD,CAAC;IACM,QAAQ;QACb,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;IAC3C,CAAC;;AAtBa,qBAAO,GAAG,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC"}
@@ -0,0 +1,7 @@
1
+ export declare class FileName {
2
+ private readonly name;
3
+ constructor(name: string);
4
+ isMarkDown(): boolean;
5
+ normalize(): FileName;
6
+ toString(): string;
7
+ }
@@ -0,0 +1,21 @@
1
+ export class FileName {
2
+ constructor(name) {
3
+ this.name = name;
4
+ }
5
+ isMarkDown() {
6
+ return this.name.endsWith(".md");
7
+ }
8
+ normalize() {
9
+ const nameWithoutExt = this.name.replace(/\.[^/.]+$/, "");
10
+ const normalized = nameWithoutExt
11
+ .toLowerCase()
12
+ .replace(/[^a-z0-9-]/g, "-")
13
+ .replace(/-+/g, "-")
14
+ .replace(/(^-|-$)/g, "");
15
+ return new FileName(normalized);
16
+ }
17
+ toString() {
18
+ return this.name;
19
+ }
20
+ }
21
+ //# sourceMappingURL=fileName.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fileName.js","sourceRoot":"","sources":["../../../src/types/file/fileName.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,QAAQ;IAGnB,YAAY,IAAY;QACtB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAEM,UAAU;QACf,OAAO,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IACnC,CAAC;IAEM,SAAS;QACd,MAAM,cAAc,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC;QAC1D,MAAM,UAAU,GAAG,cAAc;aAC9B,WAAW,EAAE;aACb,OAAO,CAAC,aAAa,EAAE,GAAG,CAAC;aAC3B,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC;aACnB,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;QAC3B,OAAO,IAAI,QAAQ,CAAC,UAAU,CAAC,CAAC;IAClC,CAAC;IAEM,QAAQ;QACb,OAAO,IAAI,CAAC,IAAI,CAAC;IACnB,CAAC;CACF"}
@@ -0,0 +1,10 @@
1
+ import { FileName } from "./fileName.js";
2
+ import { DirectoryPath } from "./directoryPath.js";
3
+ export declare class FilePath {
4
+ private readonly fileName;
5
+ private readonly directoryPath;
6
+ constructor(path: DirectoryPath, name: FileName);
7
+ replaceDirectory(newDirectory: DirectoryPath): FilePath;
8
+ toString(): string;
9
+ static create(filePath: string): FilePath | undefined;
10
+ }
@@ -0,0 +1,32 @@
1
+ import path from "path";
2
+ import { FileName } from "./fileName.js";
3
+ import { DirectoryPath } from "./directoryPath.js";
4
+ export class FilePath {
5
+ constructor(path, name) {
6
+ this.fileName = name;
7
+ this.directoryPath = path;
8
+ }
9
+ replaceDirectory(newDirectory) {
10
+ return new FilePath(newDirectory, this.fileName);
11
+ }
12
+ toString() {
13
+ return path.join(this.directoryPath.toString(), this.fileName.toString());
14
+ }
15
+ static create(filePath) {
16
+ if (!filePath) {
17
+ return undefined;
18
+ }
19
+ try {
20
+ const normalizedPath = path.normalize(filePath);
21
+ const directory = path.dirname(normalizedPath);
22
+ const filename = path.basename(normalizedPath);
23
+ const directoryPath = new DirectoryPath(directory);
24
+ const fileName = new FileName(filename);
25
+ return new FilePath(directoryPath, fileName);
26
+ }
27
+ catch (_a) {
28
+ return undefined;
29
+ }
30
+ }
31
+ }
32
+ //# sourceMappingURL=filePath.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filePath.js","sourceRoot":"","sources":["../../../src/types/file/filePath.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAEnD,MAAM,OAAO,QAAQ;IAInB,YAAY,IAAmB,EAAE,IAAc;QAC7C,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC5B,CAAC;IAEM,gBAAgB,CAAC,YAA2B;QACjD,OAAO,IAAI,QAAQ,CAAC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;IACnD,CAAC;IAEM,QAAQ;QACb,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,QAAQ,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,CAAC;IAC5E,CAAC;IAEM,MAAM,CAAC,MAAM,CAAC,QAAgB;QACnC,IAAI,CAAC,QAAQ,EAAE,CAAC;YACd,OAAO,SAAS,CAAC;QACnB,CAAC;QAED,IAAI,CAAC;YACH,MAAM,cAAc,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;YAChD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;YAC/C,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;YAC/C,MAAM,aAAa,GAAG,IAAI,aAAa,CAAC,SAAS,CAAC,CAAC;YACnD,MAAM,QAAQ,GAAG,IAAI,QAAQ,CAAC,QAAQ,CAAC,CAAC;YACxC,OAAO,IAAI,QAAQ,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;QAC/C,CAAC;QAAC,WAAM,CAAC;YACP,OAAO,SAAS,CAAC;QACnB,CAAC;IACH,CAAC;CACF"}
@@ -0,0 +1,5 @@
1
+ import { FilePath } from "./filePath.js";
2
+ import { UrlPath } from "./urlPath.js";
3
+ export type ResourceInput = FilePath | UrlPath;
4
+ export declare const createResourceInput: (file?: string, url?: string) => ResourceInput;
5
+ export declare function createResourceInputFromInput(path: string): ResourceInput | undefined;
@@ -0,0 +1,42 @@
1
+ import path from "path";
2
+ import { DirectoryPath } from "./directoryPath.js";
3
+ import { FileName } from "./fileName.js";
4
+ import { FilePath } from "./filePath.js";
5
+ import { UrlPath } from "./urlPath.js";
6
+ import { removeQuotes } from "../../utils/string-utils.js";
7
+ // Factory function to create the discriminated union
8
+ export const createResourceInput = (file, url) => {
9
+ if (file && url) {
10
+ throw new Error("Cannot specify both file and url. Please provide only one.");
11
+ }
12
+ if (!file && !url) {
13
+ throw new Error("Must specify either file or url.");
14
+ }
15
+ if (file) {
16
+ if (!file.trim()) {
17
+ throw new Error("Invalid file path provided.");
18
+ }
19
+ return new FilePath(new DirectoryPath(path.dirname(file)), new FileName(path.basename(file)));
20
+ }
21
+ if (url) {
22
+ if (!url.trim()) {
23
+ throw new Error("Invalid URL provided.");
24
+ }
25
+ return new UrlPath(url);
26
+ }
27
+ throw new Error("Must specify either file or url.");
28
+ };
29
+ export function createResourceInputFromInput(path) {
30
+ var _a;
31
+ const sanitizedPath = removeQuotes((_a = path.trim()) !== null && _a !== void 0 ? _a : "");
32
+ const urlPath = UrlPath.create(sanitizedPath);
33
+ if (urlPath) {
34
+ return urlPath;
35
+ }
36
+ const filePath = FilePath.create(sanitizedPath);
37
+ if (filePath) {
38
+ return filePath;
39
+ }
40
+ return undefined;
41
+ }
42
+ //# sourceMappingURL=resource-input.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resource-input.js","sourceRoot":"","sources":["../../../src/types/file/resource-input.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAI3D,qDAAqD;AACrD,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,IAAa,EAAE,GAAY,EAAiB,EAAE;IAChF,IAAI,IAAI,IAAI,GAAG,EAAE,CAAC;QAChB,MAAM,IAAI,KAAK,CAAC,4DAA4D,CAAC,CAAC;IAChF,CAAC;IACD,IAAI,CAAC,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC;QAClB,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;IACtD,CAAC;IAED,IAAI,IAAI,EAAE,CAAC;QACT,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,CAAC;YACjB,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC;QACjD,CAAC;QACD,OAAO,IAAI,QAAQ,CAAC,IAAI,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAChG,CAAC;IACD,IAAI,GAAG,EAAE,CAAC;QACR,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;QAC3C,CAAC;QACD,OAAO,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC;IAC1B,CAAC;IACD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;AACtD,CAAC,CAAC;AAEF,MAAM,UAAU,4BAA4B,CAAC,IAAY;;IACvD,MAAM,aAAa,GAAG,YAAY,CAAC,MAAA,IAAI,CAAC,IAAI,EAAE,mCAAI,EAAE,CAAC,CAAA;IACrD,MAAM,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;IAC9C,IAAI,OAAO,EAAE,CAAC;QACZ,OAAO,OAAO,CAAC;IACjB,CAAC;IACD,MAAM,QAAQ,GAAG,QAAQ,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;IAChD,IAAI,QAAQ,EAAE,CAAC;QACb,OAAO,QAAQ,CAAC;IAClB,CAAC;IACD,OAAO,SAAS,CAAC;AACnB,CAAC"}