@powerlines/plugin-env 0.15.4 → 0.15.6

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 (264) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +29 -0
  2. package/dist/babel/index.cjs +1 -0
  3. package/dist/babel/index.d.cts +1 -0
  4. package/dist/babel/index.d.mts +1 -0
  5. package/dist/babel/index.mjs +3 -0
  6. package/dist/babel/plugin.cjs +200 -0
  7. package/dist/babel/plugin.d.cts +8 -0
  8. package/dist/babel/plugin.d.mts +9 -0
  9. package/dist/babel/plugin.mjs +198 -0
  10. package/dist/components/docs.cjs +70 -3
  11. package/dist/components/docs.d.cts +8 -1
  12. package/dist/components/docs.d.mts +8 -1
  13. package/dist/components/docs.mjs +68 -2
  14. package/dist/components/env.cjs +574 -4
  15. package/dist/components/env.d.cts +19 -2
  16. package/dist/components/env.d.mts +19 -3
  17. package/dist/components/env.mjs +570 -2
  18. package/dist/components/index.cjs +5 -7
  19. package/dist/components/index.d.cts +2 -4
  20. package/dist/components/index.d.mts +2 -5
  21. package/dist/components/index.mjs +2 -4
  22. package/dist/deepkit/schemas/reflection.cjs +5368 -0
  23. package/dist/{plugin-BwuEBScL.d.cts → deepkit/schemas/reflection.d.cts} +1 -268
  24. package/dist/{plugin-BaInAuAh.d.mts → deepkit/schemas/reflection.d.mts} +59 -326
  25. package/dist/deepkit/schemas/reflection.mjs +5365 -0
  26. package/dist/deepkit/schemas/reflection2.cjs +4112 -0
  27. package/dist/deepkit/schemas/reflection2.mjs +4110 -0
  28. package/dist/deepkit/src/capnp.cjs +1692 -0
  29. package/dist/deepkit/src/capnp.mjs +1690 -0
  30. package/dist/deepkit/src/esbuild-plugin.cjs +99 -0
  31. package/dist/deepkit/src/esbuild-plugin.mjs +98 -0
  32. package/dist/deepkit/src/reflect-type.cjs +40 -0
  33. package/dist/deepkit/src/reflect-type.mjs +38 -0
  34. package/dist/deepkit/src/resolve-reflections.cjs +23 -0
  35. package/dist/deepkit/src/resolve-reflections.mjs +22 -0
  36. package/dist/deepkit/src/transformer.cjs +92 -0
  37. package/dist/deepkit/src/transformer.mjs +89 -0
  38. package/dist/deepkit/src/transpile.cjs +39 -0
  39. package/dist/deepkit/src/transpile.mjs +37 -0
  40. package/dist/deepkit/src/types.cjs +22 -0
  41. package/dist/deepkit/src/types.d.cts +10 -0
  42. package/dist/deepkit/src/types.d.mts +10 -0
  43. package/dist/deepkit/src/types.mjs +21 -0
  44. package/dist/deepkit/src/utilities.cjs +182 -0
  45. package/dist/deepkit/src/utilities.mjs +181 -0
  46. package/dist/helpers/automd-generator.cjs +32 -0
  47. package/dist/helpers/automd-generator.mjs +31 -0
  48. package/dist/helpers/create-reflection-resource.cjs +98 -0
  49. package/dist/helpers/create-reflection-resource.d.cts +15 -0
  50. package/dist/helpers/create-reflection-resource.d.mts +15 -0
  51. package/dist/helpers/create-reflection-resource.mjs +97 -0
  52. package/dist/helpers/index.cjs +6 -0
  53. package/dist/helpers/index.d.cts +6 -0
  54. package/dist/helpers/index.d.mts +6 -0
  55. package/dist/helpers/index.mjs +8 -0
  56. package/dist/helpers/load.cjs +134 -0
  57. package/dist/helpers/load.d.cts +35 -0
  58. package/dist/helpers/load.d.mts +36 -0
  59. package/dist/helpers/load.mjs +131 -0
  60. package/dist/helpers/persistence.cjs +320 -0
  61. package/dist/helpers/persistence.d.cts +84 -0
  62. package/dist/helpers/persistence.d.mts +84 -0
  63. package/dist/helpers/persistence.mjs +308 -0
  64. package/dist/helpers/reflect.cjs +263 -0
  65. package/dist/helpers/reflect.d.cts +46 -0
  66. package/dist/helpers/reflect.d.mts +46 -0
  67. package/dist/helpers/reflect.mjs +254 -0
  68. package/dist/helpers/source-file-env.cjs +58 -0
  69. package/dist/helpers/source-file-env.d.cts +8 -0
  70. package/dist/helpers/source-file-env.d.mts +8 -0
  71. package/dist/helpers/source-file-env.mjs +56 -0
  72. package/dist/helpers/template-helpers.cjs +70 -0
  73. package/dist/helpers/template-helpers.d.cts +15 -0
  74. package/dist/helpers/template-helpers.d.mts +15 -0
  75. package/dist/helpers/template-helpers.mjs +69 -0
  76. package/dist/index.cjs +82 -696
  77. package/dist/index.d.cts +16 -185
  78. package/dist/index.d.mts +17 -190
  79. package/dist/index.mjs +31 -648
  80. package/dist/plugin-alloy/src/core/components/output.cjs +45 -0
  81. package/dist/plugin-alloy/src/core/components/output.mjs +44 -0
  82. package/dist/plugin-alloy/src/core/components/single-line-comment.cjs +22 -0
  83. package/dist/plugin-alloy/src/core/components/single-line-comment.mjs +21 -0
  84. package/dist/plugin-alloy/src/core/components/source-file.cjs +64 -0
  85. package/dist/plugin-alloy/src/core/components/source-file.d.cts +23 -0
  86. package/dist/plugin-alloy/src/core/components/source-file.d.mts +23 -0
  87. package/dist/plugin-alloy/src/core/components/source-file.mjs +62 -0
  88. package/dist/plugin-alloy/src/core/contexts/context.cjs +136 -0
  89. package/dist/plugin-alloy/src/core/contexts/context.mjs +128 -0
  90. package/dist/plugin-alloy/src/core/contexts/index.cjs +2 -0
  91. package/dist/plugin-alloy/src/core/contexts/index.mjs +4 -0
  92. package/dist/plugin-alloy/src/core/contexts/reflection.cjs +110 -0
  93. package/dist/plugin-alloy/src/core/contexts/reflection.mjs +101 -0
  94. package/dist/plugin-alloy/src/helpers/refkey.cjs +23 -0
  95. package/dist/plugin-alloy/src/helpers/refkey.mjs +22 -0
  96. package/dist/plugin-alloy/src/index.cjs +93 -0
  97. package/dist/plugin-alloy/src/index.mjs +91 -0
  98. package/dist/plugin-alloy/src/markdown/components/markdown-file.cjs +115 -0
  99. package/dist/plugin-alloy/src/markdown/components/markdown-file.mjs +114 -0
  100. package/dist/plugin-alloy/src/markdown/components/markdown-table.cjs +39 -0
  101. package/dist/plugin-alloy/src/markdown/components/markdown-table.mjs +38 -0
  102. package/dist/plugin-alloy/src/markdown/contexts/markdown-table.cjs +72 -0
  103. package/dist/plugin-alloy/src/markdown/contexts/markdown-table.mjs +71 -0
  104. package/dist/plugin-alloy/src/types/components.cjs +22 -0
  105. package/dist/plugin-alloy/src/types/components.d.cts +22 -0
  106. package/dist/{components-8W0Zgj0y.d.mts → plugin-alloy/src/types/components.d.mts} +2 -1
  107. package/dist/plugin-alloy/src/types/components.mjs +21 -0
  108. package/dist/plugin-alloy/src/types/index.d.mts +2 -0
  109. package/dist/plugin-alloy/src/types/plugin.cjs +55 -0
  110. package/dist/plugin-alloy/src/types/plugin.d.cts +37 -0
  111. package/dist/plugin-alloy/src/types/plugin.d.mts +37 -0
  112. package/dist/plugin-alloy/src/types/plugin.mjs +52 -0
  113. package/dist/plugin-alloy/src/typescript/components/builtin-file.cjs +57 -0
  114. package/dist/plugin-alloy/src/typescript/components/builtin-file.d.cts +25 -0
  115. package/dist/plugin-alloy/src/typescript/components/builtin-file.d.mts +26 -0
  116. package/dist/plugin-alloy/src/typescript/components/builtin-file.mjs +56 -0
  117. package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.cjs +126 -0
  118. package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.mjs +124 -0
  119. package/dist/plugin-alloy/src/typescript/components/tsdoc.cjs +442 -0
  120. package/dist/plugin-alloy/src/typescript/components/tsdoc.d.cts +27 -0
  121. package/dist/plugin-alloy/src/typescript/components/tsdoc.d.mts +28 -0
  122. package/dist/plugin-alloy/src/typescript/components/tsdoc.mjs +433 -0
  123. package/dist/plugin-alloy/src/typescript/components/typescript-file.cjs +194 -0
  124. package/dist/plugin-alloy/src/typescript/components/typescript-file.d.cts +14 -0
  125. package/dist/plugin-alloy/src/typescript/components/typescript-file.d.mts +15 -0
  126. package/dist/plugin-alloy/src/typescript/components/typescript-file.mjs +191 -0
  127. package/dist/plugin-alloy/src/typescript/components/typescript-interface.cjs +68 -0
  128. package/dist/plugin-alloy/src/typescript/components/typescript-interface.d.cts +11 -0
  129. package/dist/plugin-alloy/src/typescript/components/typescript-interface.d.mts +12 -0
  130. package/dist/plugin-alloy/src/typescript/components/typescript-interface.mjs +67 -0
  131. package/dist/plugin-alloy/src/typescript/components/typescript-object.cjs +124 -0
  132. package/dist/plugin-alloy/src/typescript/components/typescript-object.mjs +123 -0
  133. package/dist/plugin-automd/src/index.cjs +127 -0
  134. package/dist/plugin-automd/src/index.mjs +124 -0
  135. package/dist/plugin-automd/src/types/plugin.cjs +47 -0
  136. package/dist/plugin-automd/src/types/plugin.d.cts +38 -0
  137. package/dist/plugin-automd/src/types/plugin.d.mts +40 -0
  138. package/dist/plugin-automd/src/types/plugin.mjs +47 -0
  139. package/dist/plugin-automd/src/types/toc.cjs +26 -0
  140. package/dist/plugin-automd/src/types/toc.d.cts +33 -0
  141. package/dist/plugin-automd/src/types/toc.d.mts +33 -0
  142. package/dist/plugin-automd/src/types/toc.mjs +25 -0
  143. package/dist/plugin-babel/src/helpers/ast-utils.cjs +74 -0
  144. package/dist/plugin-babel/src/helpers/ast-utils.mjs +70 -0
  145. package/dist/plugin-babel/src/helpers/create-plugin.cjs +71 -0
  146. package/dist/plugin-babel/src/helpers/create-plugin.mjs +69 -0
  147. package/dist/plugin-babel/src/helpers/filters.cjs +158 -0
  148. package/dist/plugin-babel/src/helpers/filters.mjs +154 -0
  149. package/dist/plugin-babel/src/helpers/index.cjs +5 -0
  150. package/dist/plugin-babel/src/helpers/index.mjs +7 -0
  151. package/dist/plugin-babel/src/helpers/module-helpers.cjs +200 -0
  152. package/dist/plugin-babel/src/helpers/module-helpers.mjs +192 -0
  153. package/dist/plugin-babel/src/helpers/options.cjs +74 -0
  154. package/dist/plugin-babel/src/helpers/options.mjs +71 -0
  155. package/dist/plugin-babel/src/index.cjs +134 -0
  156. package/dist/plugin-babel/src/index.mjs +132 -0
  157. package/dist/plugin-babel/src/types/index.d.mts +1 -0
  158. package/dist/plugin-babel/src/types/plugin.cjs +42 -0
  159. package/dist/plugin-babel/src/types/plugin.d.cts +15 -0
  160. package/dist/plugin-babel/src/types/plugin.d.mts +15 -0
  161. package/dist/plugin-babel/src/types/plugin.mjs +39 -0
  162. package/dist/powerlines/schemas/fs.d.mts +1 -0
  163. package/dist/powerlines/src/api.d.mts +7 -0
  164. package/dist/powerlines/src/index.d.mts +12 -0
  165. package/dist/powerlines/src/internal/helpers/hooks.cjs +119 -0
  166. package/dist/powerlines/src/internal/helpers/hooks.d.mts +5 -0
  167. package/dist/powerlines/src/internal/helpers/hooks.mjs +118 -0
  168. package/dist/powerlines/src/lib/build/esbuild.cjs +161 -0
  169. package/dist/powerlines/src/lib/build/esbuild.mjs +159 -0
  170. package/dist/powerlines/src/lib/entry.cjs +203 -0
  171. package/dist/powerlines/src/lib/entry.mjs +201 -0
  172. package/dist/powerlines/src/lib/logger.cjs +108 -0
  173. package/dist/powerlines/src/lib/logger.mjs +106 -0
  174. package/dist/powerlines/src/lib/utilities/bundle.cjs +67 -0
  175. package/dist/powerlines/src/lib/utilities/bundle.mjs +66 -0
  176. package/dist/powerlines/src/lib/utilities/resolve.cjs +49 -0
  177. package/dist/powerlines/src/lib/utilities/resolve.mjs +48 -0
  178. package/dist/powerlines/src/plugin-utils/paths.cjs +46 -0
  179. package/dist/powerlines/src/plugin-utils/paths.mjs +45 -0
  180. package/dist/powerlines/src/types/api.cjs +1 -0
  181. package/dist/powerlines/src/types/api.d.mts +5 -0
  182. package/dist/powerlines/src/types/api.mjs +3 -0
  183. package/dist/powerlines/src/types/babel.cjs +156 -0
  184. package/dist/powerlines/src/types/babel.d.cts +23 -0
  185. package/dist/powerlines/src/types/babel.d.mts +23 -0
  186. package/dist/powerlines/src/types/babel.mjs +147 -0
  187. package/dist/powerlines/src/types/build.cjs +105 -0
  188. package/dist/powerlines/src/types/build.d.cts +145 -0
  189. package/dist/powerlines/src/types/build.d.mts +147 -0
  190. package/dist/powerlines/src/types/build.mjs +101 -0
  191. package/dist/powerlines/src/types/commands.cjs +16 -0
  192. package/dist/powerlines/src/types/commands.d.cts +8 -0
  193. package/dist/powerlines/src/types/commands.d.mts +9 -0
  194. package/dist/powerlines/src/types/commands.mjs +15 -0
  195. package/dist/powerlines/src/types/config.cjs +306 -0
  196. package/dist/powerlines/src/types/config.d.cts +387 -0
  197. package/dist/powerlines/src/types/config.d.mts +388 -0
  198. package/dist/powerlines/src/types/config.mjs +293 -0
  199. package/dist/powerlines/src/types/context.cjs +324 -0
  200. package/dist/powerlines/src/types/context.d.cts +414 -0
  201. package/dist/powerlines/src/types/context.d.mts +416 -0
  202. package/dist/powerlines/src/types/context.mjs +311 -0
  203. package/dist/powerlines/src/types/fs.cjs +78 -0
  204. package/dist/powerlines/src/types/fs.d.cts +486 -0
  205. package/dist/powerlines/src/types/fs.d.mts +486 -0
  206. package/dist/powerlines/src/types/fs.mjs +75 -0
  207. package/dist/powerlines/src/types/hooks.cjs +52 -0
  208. package/dist/powerlines/src/types/hooks.d.mts +2 -0
  209. package/dist/powerlines/src/types/hooks.mjs +48 -0
  210. package/dist/powerlines/src/types/index.cjs +11 -0
  211. package/dist/powerlines/src/types/index.d.mts +12 -0
  212. package/dist/powerlines/src/types/index.mjs +13 -0
  213. package/dist/powerlines/src/types/plugin.cjs +249 -0
  214. package/dist/powerlines/src/types/plugin.d.cts +231 -0
  215. package/dist/powerlines/src/types/plugin.d.mts +231 -0
  216. package/dist/powerlines/src/types/plugin.mjs +240 -0
  217. package/dist/powerlines/src/types/resolved.cjs +153 -0
  218. package/dist/powerlines/src/types/resolved.d.cts +82 -0
  219. package/dist/powerlines/src/types/resolved.d.mts +83 -0
  220. package/dist/powerlines/src/types/resolved.mjs +148 -0
  221. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  222. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  223. package/dist/powerlines/src/types/unplugin.cjs +1 -0
  224. package/dist/powerlines/src/types/unplugin.d.mts +7 -0
  225. package/dist/powerlines/src/types/unplugin.mjs +3 -0
  226. package/dist/types/index.cjs +10 -3
  227. package/dist/types/index.d.cts +2 -4
  228. package/dist/types/index.d.mts +2 -5
  229. package/dist/types/index.mjs +3 -4
  230. package/dist/types/plugin.cjs +133 -1
  231. package/dist/types/plugin.d.cts +156 -3
  232. package/dist/types/plugin.d.mts +158 -4
  233. package/dist/types/plugin.mjs +128 -2
  234. package/dist/types/runtime.cjs +242 -1
  235. package/dist/types/runtime.d.cts +793 -2
  236. package/dist/types/runtime.d.mts +793 -2
  237. package/dist/types/runtime.mjs +240 -2
  238. package/package.json +13 -9
  239. package/dist/components-C9bYrQVK.cjs +0 -0
  240. package/dist/components-CNIQFfeK.mjs +0 -1
  241. package/dist/create-reflection-resource-BNYxBgW2.mjs +0 -9846
  242. package/dist/create-reflection-resource-BWYhmX7O.cjs +0 -10085
  243. package/dist/docs-5r844zC1.d.mts +0 -9
  244. package/dist/docs-B66b9li3.mjs +0 -219
  245. package/dist/docs-_MmTNBQX.d.cts +0 -9
  246. package/dist/docs-hBlKCRWK.cjs +0 -224
  247. package/dist/env-BPodCdD1.d.cts +0 -116
  248. package/dist/env-IQvgnabX.mjs +0 -1578
  249. package/dist/env-cO4BUDn1.cjs +0 -1596
  250. package/dist/env-zhzvpUI5.d.mts +0 -98
  251. package/dist/index-BXxhKmeA.d.mts +0 -1
  252. package/dist/index-Cc7fCJU9.d.mts +0 -1
  253. package/dist/index-CqdNToYT.d.cts +0 -1
  254. package/dist/index-DWPDThxu.d.cts +0 -1
  255. package/dist/plugin-D3B5E_Hg.mjs +0 -1
  256. package/dist/plugin-D5qyQPqC.cjs +0 -0
  257. package/dist/resolved-BZG2cwRG.d.cts +0 -1789
  258. package/dist/resolved-V5COsfDu.d.mts +0 -1791
  259. package/dist/runtime-Bisl_1Ja.cjs +0 -0
  260. package/dist/runtime-Q8Ni8SeN.d.cts +0 -794
  261. package/dist/runtime-azNoeKr-.mjs +0 -1
  262. package/dist/runtime-qZ0Z2kEd.d.mts +0 -794
  263. package/dist/types-DwElXV6q.mjs +0 -1
  264. package/dist/types-MYBaygjr.cjs +0 -0
@@ -1 +1,242 @@
1
- require('../runtime-Bisl_1Ja.cjs');
1
+ const require_context = require('../powerlines/src/types/context.cjs');
2
+
3
+ //#region src/types/runtime.ts
4
+ const __ΩEnvInterface = [
5
+ "APP_NAME",
6
+ "The name of the application.",
7
+ "APP_VERSION",
8
+ "1.0.0",
9
+ "The version of the application.",
10
+ "BUILD_ID",
11
+ "The unique identifier for the build.",
12
+ "BUILD_TIMESTAMP",
13
+ "The timestamp the build was ran at.",
14
+ "BUILD_CHECKSUM",
15
+ "A checksum hash created during the build.",
16
+ "RELEASE_ID",
17
+ "The unique identifier for the release.",
18
+ "RELEASE_TAG",
19
+ "The tag for the release. This is generally in the format of \"\\<APP_NAME\\>\\@\\<APP_VERSION\\>\".",
20
+ "ORGANIZATION",
21
+ "The name of the organization that maintains the application.",
22
+ { alias: ["ORG"] },
23
+ "node",
24
+ "neutral",
25
+ "browser",
26
+ "PLATFORM",
27
+ "neutral",
28
+ "The platform for which the application was built.",
29
+ "development",
30
+ "test",
31
+ "production",
32
+ "MODE",
33
+ "production",
34
+ "The mode in which the application is running.",
35
+ { alias: ["NODE_ENV"] },
36
+ "ENVIRONMENT",
37
+ "The environment the application is running in. This value will be populated with the value of `MODE` if not provided.",
38
+ { alias: ["ENV"] },
39
+ "DEBUG",
40
+ "Indicates if the application is running in debug mode.",
41
+ "TEST",
42
+ "An indicator that specifies the current runtime is a test environment.",
43
+ "MINIMAL",
44
+ "An indicator that specifies the current runtime is a minimal environment.",
45
+ "NO_COLOR",
46
+ "An indicator that specifies the current runtime is a no color environment.",
47
+ "FORCE_COLOR",
48
+ "An indicator that specifies the current runtime is a force color environment.",
49
+ "FORCE_HYPERLINK",
50
+ "An indicator that specifies the current runtime should force hyperlinks in terminal output.",
51
+ "AGENT_NAME",
52
+ "The name of the agent running the application. This variable is set by certain CI/CD systems.",
53
+ "COLORTERM",
54
+ "The color terminal type. This variable is set by certain terminal emulators.",
55
+ "TERM",
56
+ "The terminal type. This variable is set by certain CI/CD systems.",
57
+ "TERM_PROGRAM",
58
+ "The terminal program name. This variable is set by certain terminal emulators.",
59
+ "TERM_PROGRAM_VERSION",
60
+ "The terminal program version. This variable is set by certain terminal emulators.",
61
+ "TERMINAL_EMULATOR",
62
+ "The terminal emulator name. This variable is set by certain terminal emulators.",
63
+ "WT_SESSION",
64
+ "The terminal emulator session ID. This variable is set by certain terminal emulators.",
65
+ "TERMINUS_SUBLIME",
66
+ "An indicator that specifies the current terminal is running Terminus Sublime. This variable is set by certain terminal emulators.",
67
+ "ConEmuTask",
68
+ "The ConEmu task name. This variable is set by certain terminal emulators.",
69
+ "CURSOR_TRACE_ID",
70
+ "The cursor trace ID. This variable is set by certain terminal emulators.",
71
+ "VTE_VERSION",
72
+ "The VTE version. This variable is set by certain terminal emulators.",
73
+ "STACKTRACE",
74
+ "Indicates if error stack traces should be captured.",
75
+ "INCLUDE_ERROR_DATA",
76
+ "Indicates if error data should be included.",
77
+ "ERROR_URL",
78
+ "A web page to lookup error messages and display additional information given an error code.",
79
+ { title: "Error Details URL" },
80
+ "DEFAULT_TIMEZONE",
81
+ "America/New_York",
82
+ "The default timezone for the application.",
83
+ "DEFAULT_LOCALE",
84
+ "en_US",
85
+ "The default locale to be used in the application.",
86
+ () => require_context.__ΩLogLevel,
87
+ "LOG_LEVEL",
88
+ "info",
89
+ "The default lowest log level to accept. If `null`, the logger will reject all records. This value only applies if `lowestLogLevel` is not provided to the `logs` configuration.",
90
+ "CI",
91
+ "An indicator that specifies the current runtime is a continuous integration environment.",
92
+ {
93
+ alias: ["CONTINUOUS_INTEGRATION"],
94
+ title: "Continuous Integration"
95
+ },
96
+ "RUN_ID",
97
+ "The unique identifier for the current run. This value is set by certain CI/CD systems.",
98
+ "AGOLA_GIT_REF",
99
+ "The agola git reference. This value is set by certain CI/CD systems.",
100
+ "AC_APPCIRCLE",
101
+ "The appcircle build ID. This value is set by certain CI/CD systems.",
102
+ "APPVEYOR",
103
+ "The appveyor build ID. This value is set by certain CI/CD systems.",
104
+ "CODEBUILD",
105
+ "The codebuild build ID. This value is set by certain CI/CD systems.",
106
+ "TF_BUILD",
107
+ "The task force build ID. This value is set by certain CI/CD systems.",
108
+ "bamboo_planKey",
109
+ "The bamboo plan key. This value is set by certain CI/CD systems.",
110
+ "BITBUCKET_COMMIT",
111
+ "The bitbucket commit. This value is set by certain CI/CD systems.",
112
+ "BITRISE_IO",
113
+ "The bitrise build ID. This value is set by certain CI/CD systems.",
114
+ "BUDDY_WORKSPACE_ID",
115
+ "The buddy workspace ID. This value is set by certain CI/CD systems.",
116
+ "BUILDKITE",
117
+ "The buildkite build ID. This value is set by certain CI/CD systems.",
118
+ "CIRCLECI",
119
+ "The circleci build ID. This value is set by certain CI/CD systems.",
120
+ "CIRRUS_CI",
121
+ "The cirrus-ci build ID. This value is set by certain CI/CD systems.",
122
+ "CF_BUILD_ID",
123
+ "The cf build ID. This value is set by certain CI/CD systems.",
124
+ "CM_BUILD_ID",
125
+ "The cm build ID. This value is set by certain CI/CD systems.",
126
+ "CI_NAME",
127
+ "The ci name. This value is set by certain CI/CD systems.",
128
+ "DRONE",
129
+ "The drone build ID. This value is set by certain CI/CD systems.",
130
+ "DSARI",
131
+ "The dsari build ID. This value is set by certain CI/CD systems.",
132
+ "EARTHLY_CI",
133
+ "The earthly build ID. This value is set by certain CI/CD systems.",
134
+ "EAS_BUILD",
135
+ "The eas build ID. This value is set by certain CI/CD systems.",
136
+ "GERRIT_PROJECT",
137
+ "The gerrit project. This value is set by certain CI/CD systems.",
138
+ "GITEA_ACTIONS",
139
+ "The gitea actions build ID. This value is set by certain CI/CD systems.",
140
+ "GITHUB_ACTIONS",
141
+ "The github actions build ID. This value is set by certain CI/CD systems.",
142
+ "GITLAB_CI",
143
+ "The gitlab ci build ID. This value is set by certain CI/CD systems.",
144
+ "GOCD",
145
+ "The go cd build ID. This value is set by certain CI/CD systems.",
146
+ "BUILDER_OUTPUT",
147
+ "The builder output build ID. This value is set by certain CI/CD systems.",
148
+ "HARNESS_BUILD_ID",
149
+ "The harness build ID. This value is set by certain CI/CD systems.",
150
+ "JENKINS_URL",
151
+ "The jenkins url. This value is set by certain CI/CD systems.",
152
+ "LAYERCI",
153
+ "The layerci build ID. This value is set by certain CI/CD systems.",
154
+ "MAGNUM",
155
+ "The magnum build ID. This value is set by certain CI/CD systems.",
156
+ "NETLIFY",
157
+ "The netlify build ID. This value is set by certain CI/CD systems.",
158
+ "NEVERCODE",
159
+ "The nevercode build ID. This value is set by certain CI/CD systems.",
160
+ "PROW_JOB_ID",
161
+ "The prow job ID. This value is set by certain CI/CD systems.",
162
+ "RELEASE_BUILD_ID",
163
+ "The release build ID. This value is set by certain CI/CD systems.",
164
+ "RENDER",
165
+ "The render build ID. This value is set by certain CI/CD systems.",
166
+ "SAILCI",
167
+ "The sailci build ID. This value is set by certain CI/CD systems.",
168
+ "HUDSON",
169
+ "The hudson build ID. This value is set by certain CI/CD systems.",
170
+ "SCREWDRIVER",
171
+ "The screwdriver build ID. This value is set by certain CI/CD systems.",
172
+ "SEMAPHORE",
173
+ "The semaphore build ID. This value is set by certain CI/CD systems.",
174
+ "SOURCEHUT",
175
+ "The sourcehut build ID. This value is set by certain CI/CD systems.",
176
+ "SPACESHIP_CI",
177
+ "The spaceship build ID. This value is set by certain CI/CD systems.",
178
+ "STRIDER",
179
+ "The strider build ID. This value is set by certain CI/CD systems.",
180
+ "TASK_ID",
181
+ "The task ID. This value is set by certain CI/CD systems.",
182
+ "TEAMCITY_VERSION",
183
+ "The teamcity version. This value is set by certain CI/CD systems.",
184
+ "TRAVIS",
185
+ "The travis build ID. This value is set by certain CI/CD systems.",
186
+ "VELA",
187
+ "The vela build ID. This value is set by certain CI/CD systems.",
188
+ "NOW_BUILDER",
189
+ "The now builder build ID. This value is set by certain CI/CD systems.",
190
+ "APPCENTER_BUILD_ID",
191
+ "The appcenter build ID. This value is set by certain CI/CD systems.",
192
+ "CI_XCODE_PROJECT",
193
+ "The xcode project build ID. This value is set by certain CI/CD systems.",
194
+ "XCS",
195
+ "The xcode server build ID. This value is set by certain CI/CD systems.",
196
+ "DATA_DIR",
197
+ "The application's runtime data directory.",
198
+ { title: "Data Directory" },
199
+ "CONFIG_DIR",
200
+ "The application's configuration data directory.",
201
+ { title: "Configuration Directory" },
202
+ "CACHE_DIR",
203
+ "The application's cached data directory.",
204
+ { title: "Cache Directory" },
205
+ "LOG_DIR",
206
+ "The application's logging directory.",
207
+ { title: "Log Directory" },
208
+ "TEMP_DIR",
209
+ "The application's temporary data directory.",
210
+ { title: "Temporary Directory" },
211
+ "LOCALAPPDATA",
212
+ "A variable that specifies the current user's local application data directory on Windows.",
213
+ "APPDATA",
214
+ "A variable that specifies the application data directory on Windows.",
215
+ "XDG_DATA_HOME",
216
+ "A variable that specifies the data path in the home directory on Linux systems using the XDG base directory specification.",
217
+ "XDG_CONFIG_HOME",
218
+ "A variable that specifies the configuration path in the home directory on Linux systems using the XDG base directory specification.",
219
+ "XDG_CACHE_HOME",
220
+ "A variable that specifies the cache path in the home directory on Linux systems using the XDG base directory specification.",
221
+ "XDG_STATE_HOME",
222
+ "A variable that specifies the state directory on Linux systems using the XDG base directory specification.",
223
+ "XDG_RUNTIME_DIR",
224
+ "A variable that specifies the runtime directory on Linux systems using the XDG base directory specification.",
225
+ "DEVENV_RUNTIME",
226
+ "A variable that specifies the [Devenv](https://devenv.sh/) runtime directory.",
227
+ "The base environment configuration used by Powerlines applications",
228
+ "EnvInterface",
229
+ "P&4!9?\"&4#9>$?%&4&9?'&4(9?)&4*9?+&4,9?-&4.9?/&40?1z2P.3.4.5J46>7?8P.9.:.;J4<>=?>z?&4@>=?AzB)4C?D)4E?F)4G?H)4I?JP)'J4K?LP)'J4M?N&4O89?P&4Q89?R&4S89?T&4U89?V&4W89?X&4Y89?Z&4[89?\\)4]89?^&4_89?`&4a89?b&4c89?d)4e?f)4g?h&4i?jzk&4l>m?n&4o>p?qPnr,J4s8>t?u)4v?wzx&4y89?z&4{89?|&4}89?~&489?€&489?‚&4ƒ89?„&4…89?†&4‡89?ˆ&4‰89?Š&4‹89?Œ&489?Ž&489?&4‘89?’&4“89?”&4•89?–&4—89?˜&4™89?š&4›89?œ&489?ž&4Ÿ89?\xA0&4¡89?¢&4£89?¤&4¥89?¦&4§89?¨&4©89?ª&4«89?¬&4­89?®&4¯89?°&4±89?²&4³89?´&4µ89?¶&4·89?¸&4¹89?º&4»89?¼&4½89?¾&4¿89?À&4Á89?Â&4Ã89?Ä&4Å89?Æ&4Ç89?È&4É89?Ê&4Ë89?Ì&4Í89?Î&4Ï89?Ð&4Ñ89?Ò&4Ó89?Ô&4Õ89?Ö&4×89?Ø&4Ù89?Ú&4Û89?Ü&4Ý8?Þzß&4à8?ázâ&4ã8?äzå&4æ8?çzè&4é8?êzë&4ì89?í&4î89?ï&4ð89?ñ&4ò89?ó&4ô89?õ&4ö89?÷&4ø89?ù&4ú8?ûM?üwýy"
230
+ ];
231
+ const __ΩSecretsInterface = [
232
+ "ENCRYPTION_KEY",
233
+ "The secret key used for encryption and decryption.",
234
+ { title: "Encryption Key" },
235
+ "The base secrets configuration used by Powerlines applications",
236
+ "SecretsInterface",
237
+ "P&4!?\"z#M?$w%y"
238
+ ];
239
+
240
+ //#endregion
241
+ exports.__ΩEnvInterface = __ΩEnvInterface;
242
+ exports.__ΩSecretsInterface = __ΩSecretsInterface;