@powerlines/plugin-env 0.16.156 → 0.16.157

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 (49) hide show
  1. package/dist/_virtual/_rolldown/runtime.cjs +1 -29
  2. package/dist/babel/index.cjs +1 -4
  3. package/dist/babel/index.mjs +1 -3
  4. package/dist/babel/plugin.cjs +4 -129
  5. package/dist/babel/plugin.mjs +4 -127
  6. package/dist/babel/plugin.mjs.map +1 -1
  7. package/dist/components/docs.cjs +1 -111
  8. package/dist/components/docs.mjs +1 -108
  9. package/dist/components/docs.mjs.map +1 -1
  10. package/dist/components/env-builtin.cjs +13 -730
  11. package/dist/components/env-builtin.mjs +11 -726
  12. package/dist/components/env-builtin.mjs.map +1 -1
  13. package/dist/components/index.cjs +1 -9
  14. package/dist/components/index.mjs +1 -4
  15. package/dist/helpers/automd-generator.cjs +1 -32
  16. package/dist/helpers/automd-generator.mjs +1 -30
  17. package/dist/helpers/automd-generator.mjs.map +1 -1
  18. package/dist/helpers/create-reflection-resource.cjs +1 -23
  19. package/dist/helpers/create-reflection-resource.mjs +1 -22
  20. package/dist/helpers/create-reflection-resource.mjs.map +1 -1
  21. package/dist/helpers/index.cjs +1 -34
  22. package/dist/helpers/index.mjs +1 -8
  23. package/dist/helpers/load.cjs +1 -139
  24. package/dist/helpers/load.mjs +1 -135
  25. package/dist/helpers/load.mjs.map +1 -1
  26. package/dist/helpers/persistence.cjs +1 -308
  27. package/dist/helpers/persistence.mjs +1 -295
  28. package/dist/helpers/persistence.mjs.map +1 -1
  29. package/dist/helpers/reflect.cjs +1 -290
  30. package/dist/helpers/reflect.mjs +1 -280
  31. package/dist/helpers/reflect.mjs.map +1 -1
  32. package/dist/helpers/source-file-env.cjs +1 -59
  33. package/dist/helpers/source-file-env.mjs +1 -56
  34. package/dist/helpers/source-file-env.mjs.map +1 -1
  35. package/dist/helpers/template-helpers.cjs +1 -70
  36. package/dist/helpers/template-helpers.mjs +1 -68
  37. package/dist/helpers/template-helpers.mjs.map +1 -1
  38. package/dist/index.cjs +1 -241
  39. package/dist/index.mjs +1 -234
  40. package/dist/index.mjs.map +1 -1
  41. package/dist/types/index.cjs +1 -11
  42. package/dist/types/index.mjs +1 -4
  43. package/dist/types/plugin.cjs +1 -115
  44. package/dist/types/plugin.mjs +1 -109
  45. package/dist/types/plugin.mjs.map +1 -1
  46. package/dist/types/runtime.cjs +1 -535
  47. package/dist/types/runtime.mjs +1 -532
  48. package/dist/types/runtime.mjs.map +1 -1
  49. package/package.json +7 -7
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.mjs","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { Children } from \"@alloy-js/core\";\nimport { Reflection } from \"@powerlines/deepkit/types\";\nimport { AutoMDPluginOptions } from \"@powerlines/plugin-automd/types/plugin\";\nimport {\n BabelPluginContext,\n BabelPluginOptions,\n BabelPluginResolvedConfig,\n BabelPluginUserConfig\n} from \"@powerlines/plugin-babel/types\";\nimport {\n DeepkitPluginContext,\n DeepkitPluginOptions,\n DeepkitPluginResolvedConfig,\n DeepkitPluginUserConfig\n} from \"@powerlines/plugin-deepkit/types/plugin\";\nimport type { DotenvParseOutput } from \"@stryke/env/types\";\nimport {\n DotenvConfiguration,\n TypeDefinition,\n TypeDefinitionParameter\n} from \"@stryke/types/configuration\";\nimport { EnvInterface, SecretsInterface } from \"./runtime\";\n\nexport type EnvType = \"env\" | \"secrets\";\n\nexport type EnvPluginOptions = Omit<DotenvConfiguration, \"types\"> & {\n /**\n * A path to the type definition for the expected env configuration parameters. This value can include both a path to the typescript file and the name of the type definition to use separated by a `\":\"` or `\"#\"` character. For example: `\"./src/types/env.ts#ConfigConfiguration\"`.\n */\n types?: TypeDefinitionParameter;\n\n /**\n * A path to the type definition for the expected env secret parameters. This value can include both a path to the typescript file and the name of the type definition to use separated by a `\":\"` or `\"#\"` character. For example: `\"./src/types/env.ts#ConfigSecrets\"`.\n */\n secrets?: TypeDefinitionParameter;\n\n /**\n * An additional prefix (or list of additional prefixes) to apply to the environment variables\n *\n * @remarks\n * By default, the plugin will use the `POWERLINES_` prefix. This option is useful for avoiding conflicts with other environment variables.\n */\n prefix?: string | string[];\n\n /**\n * Should the plugin inject the env variables in the source code with their values?\n *\n * @defaultValue false\n */\n inject?: boolean;\n\n /**\n * Should the plugin validate the loaded environment variables against the provided type definitions?\n *\n * @defaultValue false\n */\n validate?: boolean;\n\n /**\n * The default configuration to use when loading environment variables.\n *\n * @remarks\n * This configuration is used as the base configuration when loading environment variables, and will be overridden by any values found in the `.env` file or the process environment.\n */\n defaultConfig?: Children;\n\n /**\n * Babel configuration options to use when injecting environment variables into the source code.\n *\n * @remarks\n * This option allows you to customize the Babel transformation process used to inject environment variables into the source code. If not provided, the plugin will use default Babel settings.\n */\n babel?: BabelPluginOptions;\n\n /**\n * AutoMD configuration options to allow injecting environment variables documentation into a markdown file such as a README.md.\n *\n * @remarks\n * The README.md file should contain the `<!-- automd:env --><!-- /automd -->` comment block where the documentation will be injected.\n */\n automd?: AutoMDPluginOptions;\n\n /**\n * Alloy configuration options to use when injecting environment variables into the source code.\n *\n * @remarks\n * This option allows you to customize the Deepkit transformation process used to inject environment variables into the source code. If not provided, the plugin will use default Deepkit settings.\n */\n deepkit?: DeepkitPluginOptions;\n};\n\nexport type EnvPluginUserConfig = BabelPluginUserConfig &\n DeepkitPluginUserConfig & {\n env: EnvPluginOptions;\n };\n\nexport type EnvPluginResolvedConfig = BabelPluginResolvedConfig &\n DeepkitPluginResolvedConfig & {\n env: Required<Pick<DotenvConfiguration, \"additionalFiles\">> &\n Required<Pick<EnvPluginOptions, \"defaultConfig\">> & {\n /**\n * The type definition for the expected env variable parameters\n *\n * @remarks\n * This value is parsed from the {@link EnvPluginOptions.types} option.\n */\n types: TypeDefinition;\n\n /**\n * The type definition for the expected env secret parameters\n *\n * @remarks\n * This value is parsed from the {@link EnvPluginOptions.secrets} option.\n */\n secrets: TypeDefinition;\n\n /**\n * Should the plugin inject the env variables in the source code with their values?\n *\n * @remarks\n * This value is the result of reflecting the {@link EnvPluginOptions.inject} option.\n */\n inject: boolean;\n\n /**\n * Should the plugin validate the loaded environment variables against the provided type definitions?\n *\n * @remarks\n * This value is the result of reflecting the {@link EnvPluginOptions.validate} option.\n */\n validate: boolean;\n\n /**\n * The prefix used for environment variables\n *\n * @remarks\n * This value is used to filter environment variables that are loaded from the .env file and the process environment.\n */\n prefix: string[];\n };\n };\n\nexport interface EnvPluginContext<\n TResolvedConfig extends EnvPluginResolvedConfig = EnvPluginResolvedConfig\n>\n extends\n BabelPluginContext<TResolvedConfig>,\n DeepkitPluginContext<TResolvedConfig> {\n env: {\n /**\n * The type definitions reflection for the env variables and secrets\n *\n * @remarks\n * These reflections contains the structure of the expected environment variables and secrets as defined by the type definitions provided in the plugin configuration.\n */\n types: {\n /**\n * The type definitions for the expected env variables\n */\n env: Reflection;\n\n /**\n * The type definitions for the expected env secrets\n */\n secrets: Reflection;\n };\n\n /**\n * The current **used** environment variables and secrets reflection\n *\n * @remarks\n * This reflection contains the structure of the current environment variables and secrets as defined during the plugin initialization by extracting the values from the source code.\n */\n used: {\n /**\n * The current env variables reflection\n */\n env: Reflection<EnvInterface>;\n\n /**\n * The current env secrets reflection\n */\n secrets: Reflection<SecretsInterface>;\n };\n\n /**\n * The parsed .env configuration object\n *\n * @remarks\n * This value is the result of loading the .env configuration file found in the project root directory and merging it with the values provided at {@link EnvPluginOptions.values}\n */\n parsed: DotenvParseOutput;\n\n /**\n * The injected environment variables and secrets reflection\n *\n * @remarks\n * This reflection contains the structure of the injected environment variables and secrets that were injected into the source code during the build process.\n */\n injected: Reflection;\n };\n}\n"],"mappings":";AAAA,MAAM,UAAU;CAAC;CAAK;OAAW;OAAe;CAAY;CAAQ;CAAC;;;;;;AAErE,MAAM,UAAU;CAAC;CAAI;CAAM;CAAQ;CAAG;;;;;;;AAEtC,MAAM,aAAS;CAAA;CAAY;CAAW;CAAW;CAAU;AAE3D,MAAM,sBAAmB;OAAQ;CAAS;CAAK;CAAa;CAAO;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;;;;;;;AAInE,MAAC,6BAAkC;OAAO;OAAmB;CAAA;OAAA;OAAA;OAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;AAE7D,MAAC,sBAA0B;OAAQ;CAAkB;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA;CAAA"}
1
+ {"version":3,"file":"plugin.mjs","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { Children } from \"@alloy-js/core\";\nimport { Reflection } from \"@powerlines/deepkit/types\";\nimport { AutoMDPluginOptions } from \"@powerlines/plugin-automd/types/plugin\";\nimport {\n BabelPluginContext,\n BabelPluginOptions,\n BabelPluginResolvedConfig,\n BabelPluginUserConfig\n} from \"@powerlines/plugin-babel/types\";\nimport {\n DeepkitPluginContext,\n DeepkitPluginOptions,\n DeepkitPluginResolvedConfig,\n DeepkitPluginUserConfig\n} from \"@powerlines/plugin-deepkit/types/plugin\";\nimport type { DotenvParseOutput } from \"@stryke/env/types\";\nimport {\n DotenvConfiguration,\n TypeDefinition,\n TypeDefinitionParameter\n} from \"@stryke/types/configuration\";\nimport { EnvInterface, SecretsInterface } from \"./runtime\";\n\nexport type EnvType = \"env\" | \"secrets\";\n\nexport type EnvPluginOptions = Omit<DotenvConfiguration, \"types\"> & {\n /**\n * A path to the type definition for the expected env configuration parameters. This value can include both a path to the typescript file and the name of the type definition to use separated by a `\":\"` or `\"#\"` character. For example: `\"./src/types/env.ts#ConfigConfiguration\"`.\n */\n types?: TypeDefinitionParameter;\n\n /**\n * A path to the type definition for the expected env secret parameters. This value can include both a path to the typescript file and the name of the type definition to use separated by a `\":\"` or `\"#\"` character. For example: `\"./src/types/env.ts#ConfigSecrets\"`.\n */\n secrets?: TypeDefinitionParameter;\n\n /**\n * An additional prefix (or list of additional prefixes) to apply to the environment variables\n *\n * @remarks\n * By default, the plugin will use the `POWERLINES_` prefix. This option is useful for avoiding conflicts with other environment variables.\n */\n prefix?: string | string[];\n\n /**\n * Should the plugin inject the env variables in the source code with their values?\n *\n * @defaultValue false\n */\n inject?: boolean;\n\n /**\n * Should the plugin validate the loaded environment variables against the provided type definitions?\n *\n * @defaultValue false\n */\n validate?: boolean;\n\n /**\n * The default configuration to use when loading environment variables.\n *\n * @remarks\n * This configuration is used as the base configuration when loading environment variables, and will be overridden by any values found in the `.env` file or the process environment.\n */\n defaultConfig?: Children;\n\n /**\n * Babel configuration options to use when injecting environment variables into the source code.\n *\n * @remarks\n * This option allows you to customize the Babel transformation process used to inject environment variables into the source code. If not provided, the plugin will use default Babel settings.\n */\n babel?: BabelPluginOptions;\n\n /**\n * AutoMD configuration options to allow injecting environment variables documentation into a markdown file such as a README.md.\n *\n * @remarks\n * The README.md file should contain the `<!-- automd:env --><!-- /automd -->` comment block where the documentation will be injected.\n */\n automd?: AutoMDPluginOptions;\n\n /**\n * Alloy configuration options to use when injecting environment variables into the source code.\n *\n * @remarks\n * This option allows you to customize the Deepkit transformation process used to inject environment variables into the source code. If not provided, the plugin will use default Deepkit settings.\n */\n deepkit?: DeepkitPluginOptions;\n};\n\nexport type EnvPluginUserConfig = BabelPluginUserConfig &\n DeepkitPluginUserConfig & {\n env: EnvPluginOptions;\n };\n\nexport type EnvPluginResolvedConfig = BabelPluginResolvedConfig &\n DeepkitPluginResolvedConfig & {\n env: Required<Pick<DotenvConfiguration, \"additionalFiles\">> &\n Required<Pick<EnvPluginOptions, \"defaultConfig\">> & {\n /**\n * The type definition for the expected env variable parameters\n *\n * @remarks\n * This value is parsed from the {@link EnvPluginOptions.types} option.\n */\n types: TypeDefinition;\n\n /**\n * The type definition for the expected env secret parameters\n *\n * @remarks\n * This value is parsed from the {@link EnvPluginOptions.secrets} option.\n */\n secrets: TypeDefinition;\n\n /**\n * Should the plugin inject the env variables in the source code with their values?\n *\n * @remarks\n * This value is the result of reflecting the {@link EnvPluginOptions.inject} option.\n */\n inject: boolean;\n\n /**\n * Should the plugin validate the loaded environment variables against the provided type definitions?\n *\n * @remarks\n * This value is the result of reflecting the {@link EnvPluginOptions.validate} option.\n */\n validate: boolean;\n\n /**\n * The prefix used for environment variables\n *\n * @remarks\n * This value is used to filter environment variables that are loaded from the .env file and the process environment.\n */\n prefix: string[];\n };\n };\n\nexport interface EnvPluginContext<\n TResolvedConfig extends EnvPluginResolvedConfig = EnvPluginResolvedConfig\n>\n extends\n BabelPluginContext<TResolvedConfig>,\n DeepkitPluginContext<TResolvedConfig> {\n env: {\n /**\n * The type definitions reflection for the env variables and secrets\n *\n * @remarks\n * These reflections contains the structure of the expected environment variables and secrets as defined by the type definitions provided in the plugin configuration.\n */\n types: {\n /**\n * The type definitions for the expected env variables\n */\n env: Reflection;\n\n /**\n * The type definitions for the expected env secrets\n */\n secrets: Reflection;\n };\n\n /**\n * The current **used** environment variables and secrets reflection\n *\n * @remarks\n * This reflection contains the structure of the current environment variables and secrets as defined during the plugin initialization by extracting the values from the source code.\n */\n used: {\n /**\n * The current env variables reflection\n */\n env: Reflection<EnvInterface>;\n\n /**\n * The current env secrets reflection\n */\n secrets: Reflection<SecretsInterface>;\n };\n\n /**\n * The parsed .env configuration object\n *\n * @remarks\n * This value is the result of loading the .env configuration file found in the project root directory and merging it with the values provided at {@link EnvPluginOptions.values}\n */\n parsed: DotenvParseOutput;\n\n /**\n * The injected environment variables and secrets reflection\n *\n * @remarks\n * This reflection contains the structure of the injected environment variables and secrets that were injected into the source code during the build process.\n */\n injected: Reflection;\n };\n}\n"],"mappings":"AAAA,MAAM,EAAU,CAAC,IAAK,QAAW,MAAe,EAAY,OAAQ,0BAAC,+CAE/D,EAAU,CAAC,IAAI,IAAM,OAAQ,4BAAG,6DAEhC,EAAS,CAAA,MAAY,UAAW,UAAW,YAAU,CAErD,EAAmB,KAAQ,EAAS,QAAK,QAAa,sRAAO,UAAA,yQAAA,SAAA,8FAAA,SAAA,GAAA,mFAAA,WAAA,qGAAA,WAAA,gBAAA,uEAAA,QAAA,gGAAA,SAAA,gIAAA,UAAA,gGAAA,mBAAA,gFAAA,uDAIlE,EAAkC,KAAO,MAAmB,EAAA,sBAAA,MAAA,MAAA,EAAA,gBAAA,QAAA,+DAAA,UAAA,6DAAA,SAAA,mFAAA,WAAA,qGAAA,SAAA,4CAAA,MAAA,0BAAA,+DAAA,CAE5D,EAA0B,KAAQ,EAAkB,kBAAA,MAAA,sDAAA,UAAA,oDAAA,oEAAA,QAAA,uCAAA,qCAAA,oEAAA,OAAA,SAAA,uCAAA,WAAA,4DAAA,mBAAA,gEAAA"}
@@ -1,535 +1 @@
1
- Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
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", "VERCEL_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
- "DEBUG",
39
- "Indicates if the application is running in debug mode.",
40
- "TEST",
41
- "An indicator that specifies the current runtime is a test environment.",
42
- "MINIMAL",
43
- "An indicator that specifies the current runtime is a minimal environment.",
44
- "NO_COLOR",
45
- "An indicator that specifies the current runtime is a no color environment.",
46
- "FORCE_COLOR",
47
- "An indicator that specifies the current runtime is a force color environment.",
48
- "FORCE_HYPERLINK",
49
- "An indicator that specifies the current runtime should force hyperlinks in terminal output.",
50
- "AGENT_NAME",
51
- "The name of the agent running the application. This variable is set by certain CI/CD systems.",
52
- {
53
- hidden: true,
54
- runtime: true
55
- },
56
- "COLORTERM",
57
- "The color terminal type. This variable is set by certain terminal emulators.",
58
- {
59
- hidden: true,
60
- runtime: true
61
- },
62
- "TERM",
63
- "The terminal type. This variable is set by certain CI/CD systems.",
64
- {
65
- hidden: true,
66
- runtime: true
67
- },
68
- "TERM_PROGRAM",
69
- "The terminal program name. This variable is set by certain terminal emulators.",
70
- {
71
- hidden: true,
72
- runtime: true
73
- },
74
- "TERM_PROGRAM_VERSION",
75
- "The terminal program version. This variable is set by certain terminal emulators.",
76
- {
77
- hidden: true,
78
- runtime: true
79
- },
80
- "TERMINAL_EMULATOR",
81
- "The terminal emulator name. This variable is set by certain terminal emulators.",
82
- {
83
- hidden: true,
84
- runtime: true
85
- },
86
- "WT_SESSION",
87
- "The terminal emulator session ID. This variable is set by certain terminal emulators.",
88
- {
89
- hidden: true,
90
- runtime: true
91
- },
92
- "TERMINUS_SUBLIME",
93
- "An indicator that specifies the current terminal is running Terminus Sublime. This variable is set by certain terminal emulators.",
94
- {
95
- hidden: true,
96
- runtime: true
97
- },
98
- "ConEmuTask",
99
- "The ConEmu task name. This variable is set by certain terminal emulators.",
100
- {
101
- hidden: true,
102
- runtime: true
103
- },
104
- "CURSOR_TRACE_ID",
105
- "The cursor trace ID. This variable is set by certain terminal emulators.",
106
- {
107
- hidden: true,
108
- runtime: true
109
- },
110
- "VTE_VERSION",
111
- "The VTE version. This variable is set by certain terminal emulators.",
112
- {
113
- hidden: true,
114
- runtime: true
115
- },
116
- "STACKTRACE",
117
- "Indicates if error stack traces should be captured.",
118
- "INCLUDE_ERROR_DATA",
119
- "Indicates if error data should be included.",
120
- "ERROR_URL",
121
- "A web page to lookup error messages and display additional information given an error code.",
122
- { title: "Error Details URL" },
123
- "DEFAULT_TIMEZONE",
124
- "America/New_York",
125
- "The default timezone for the application.",
126
- "DEFAULT_LOCALE",
127
- "en_US",
128
- "The default locale to be used in the application.",
129
- "error",
130
- "warn",
131
- "info",
132
- "debug",
133
- "LOG_LEVEL",
134
- "info",
135
- "The default lowest log level to accept. If `null`, the logger will reject all records.",
136
- "CI",
137
- "An indicator that specifies the current runtime is a continuous integration environment.",
138
- {
139
- alias: ["CONTINUOUS_INTEGRATION"],
140
- title: "Continuous Integration"
141
- },
142
- "RUN_ID",
143
- "The unique identifier for the current run. This value is set by certain CI/CD systems.",
144
- {
145
- hidden: true,
146
- runtime: true
147
- },
148
- "AGOLA_GIT_REF",
149
- "The agola git reference. This value is set by certain CI/CD systems.",
150
- {
151
- hidden: true,
152
- runtime: true
153
- },
154
- "AC_APPCIRCLE",
155
- "The appcircle build ID. This value is set by certain CI/CD systems.",
156
- {
157
- hidden: true,
158
- runtime: true
159
- },
160
- "APPVEYOR",
161
- "The appveyor build ID. This value is set by certain CI/CD systems.",
162
- {
163
- hidden: true,
164
- runtime: true
165
- },
166
- "CODEBUILD",
167
- "The codebuild build ID. This value is set by certain CI/CD systems.",
168
- {
169
- hidden: true,
170
- runtime: true
171
- },
172
- "TF_BUILD",
173
- "The task force build ID. This value is set by certain CI/CD systems.",
174
- {
175
- hidden: true,
176
- runtime: true
177
- },
178
- "bamboo_planKey",
179
- "The bamboo plan key. This value is set by certain CI/CD systems.",
180
- {
181
- hidden: true,
182
- runtime: true
183
- },
184
- "BITBUCKET_COMMIT",
185
- "The bitbucket commit. This value is set by certain CI/CD systems.",
186
- {
187
- hidden: true,
188
- runtime: true
189
- },
190
- "BITRISE_IO",
191
- "The bitrise build ID. This value is set by certain CI/CD systems.",
192
- {
193
- hidden: true,
194
- runtime: true
195
- },
196
- "BUDDY_WORKSPACE_ID",
197
- "The buddy workspace ID. This value is set by certain CI/CD systems.",
198
- {
199
- hidden: true,
200
- runtime: true
201
- },
202
- "BUILDKITE",
203
- "The buildkite build ID. This value is set by certain CI/CD systems.",
204
- {
205
- hidden: true,
206
- runtime: true
207
- },
208
- "CIRCLECI",
209
- "The circleci build ID. This value is set by certain CI/CD systems.",
210
- {
211
- hidden: true,
212
- runtime: true
213
- },
214
- "CIRRUS_CI",
215
- "The cirrus-ci build ID. This value is set by certain CI/CD systems.",
216
- {
217
- hidden: true,
218
- runtime: true
219
- },
220
- "CF_BUILD_ID",
221
- "The cf build ID. This value is set by certain CI/CD systems.",
222
- {
223
- hidden: true,
224
- runtime: true
225
- },
226
- "CM_BUILD_ID",
227
- "The cm build ID. This value is set by certain CI/CD systems.",
228
- {
229
- hidden: true,
230
- runtime: true
231
- },
232
- "CI_NAME",
233
- "The ci name. This value is set by certain CI/CD systems.",
234
- {
235
- hidden: true,
236
- runtime: true
237
- },
238
- "DRONE",
239
- "The drone build ID. This value is set by certain CI/CD systems.",
240
- {
241
- hidden: true,
242
- runtime: true
243
- },
244
- "DSARI",
245
- "The dsari build ID. This value is set by certain CI/CD systems.",
246
- {
247
- hidden: true,
248
- runtime: true
249
- },
250
- "EARTHLY_CI",
251
- "The earthly build ID. This value is set by certain CI/CD systems.",
252
- {
253
- hidden: true,
254
- runtime: true
255
- },
256
- "EAS_BUILD",
257
- "The eas build ID. This value is set by certain CI/CD systems.",
258
- {
259
- hidden: true,
260
- runtime: true
261
- },
262
- "GERRIT_PROJECT",
263
- "The gerrit project. This value is set by certain CI/CD systems.",
264
- {
265
- hidden: true,
266
- runtime: true
267
- },
268
- "GITEA_ACTIONS",
269
- "The gitea actions build ID. This value is set by certain CI/CD systems.",
270
- {
271
- hidden: true,
272
- runtime: true
273
- },
274
- "GITHUB_ACTIONS",
275
- "The github actions build ID. This value is set by certain CI/CD systems.",
276
- {
277
- hidden: true,
278
- runtime: true
279
- },
280
- "GITLAB_CI",
281
- "The gitlab ci build ID. This value is set by certain CI/CD systems.",
282
- {
283
- hidden: true,
284
- runtime: true
285
- },
286
- "GOCD",
287
- "The go cd build ID. This value is set by certain CI/CD systems.",
288
- {
289
- hidden: true,
290
- runtime: true
291
- },
292
- "BUILDER_OUTPUT",
293
- "The builder output build ID. This value is set by certain CI/CD systems.",
294
- {
295
- hidden: true,
296
- runtime: true
297
- },
298
- "HARNESS_BUILD_ID",
299
- "The harness build ID. This value is set by certain CI/CD systems.",
300
- {
301
- hidden: true,
302
- runtime: true
303
- },
304
- "JENKINS_URL",
305
- "The jenkins url. This value is set by certain CI/CD systems.",
306
- {
307
- hidden: true,
308
- runtime: true
309
- },
310
- "LAYERCI",
311
- "The layerci build ID. This value is set by certain CI/CD systems.",
312
- {
313
- hidden: true,
314
- runtime: true
315
- },
316
- "MAGNUM",
317
- "The magnum build ID. This value is set by certain CI/CD systems.",
318
- {
319
- hidden: true,
320
- runtime: true
321
- },
322
- "NETLIFY",
323
- "The netlify build ID. This value is set by certain CI/CD systems.",
324
- {
325
- hidden: true,
326
- runtime: true
327
- },
328
- "NEVERCODE",
329
- "The nevercode build ID. This value is set by certain CI/CD systems.",
330
- {
331
- hidden: true,
332
- runtime: true
333
- },
334
- "PROW_JOB_ID",
335
- "The prow job ID. This value is set by certain CI/CD systems.",
336
- {
337
- hidden: true,
338
- runtime: true
339
- },
340
- "RELEASE_BUILD_ID",
341
- "The release build ID. This value is set by certain CI/CD systems.",
342
- {
343
- hidden: true,
344
- runtime: true
345
- },
346
- "RENDER",
347
- "The render build ID. This value is set by certain CI/CD systems.",
348
- {
349
- hidden: true,
350
- runtime: true
351
- },
352
- "SAILCI",
353
- "The sailci build ID. This value is set by certain CI/CD systems.",
354
- {
355
- hidden: true,
356
- runtime: true
357
- },
358
- "HUDSON",
359
- "The hudson build ID. This value is set by certain CI/CD systems.",
360
- {
361
- hidden: true,
362
- runtime: true
363
- },
364
- "SCREWDRIVER",
365
- "The screwdriver build ID. This value is set by certain CI/CD systems.",
366
- {
367
- hidden: true,
368
- runtime: true
369
- },
370
- "SEMAPHORE",
371
- "The semaphore build ID. This value is set by certain CI/CD systems.",
372
- {
373
- hidden: true,
374
- runtime: true
375
- },
376
- "SOURCEHUT",
377
- "The sourcehut build ID. This value is set by certain CI/CD systems.",
378
- {
379
- hidden: true,
380
- runtime: true
381
- },
382
- "SPACESHIP_CI",
383
- "The spaceship build ID. This value is set by certain CI/CD systems.",
384
- {
385
- hidden: true,
386
- runtime: true
387
- },
388
- "STRIDER",
389
- "The strider build ID. This value is set by certain CI/CD systems.",
390
- {
391
- hidden: true,
392
- runtime: true
393
- },
394
- "TASK_ID",
395
- "The task ID. This value is set by certain CI/CD systems.",
396
- {
397
- hidden: true,
398
- runtime: true
399
- },
400
- "TEAMCITY_VERSION",
401
- "The teamcity version. This value is set by certain CI/CD systems.",
402
- {
403
- hidden: true,
404
- runtime: true
405
- },
406
- "TRAVIS",
407
- "The travis build ID. This value is set by certain CI/CD systems.",
408
- {
409
- hidden: true,
410
- runtime: true
411
- },
412
- "VELA",
413
- "The vela build ID. This value is set by certain CI/CD systems.",
414
- {
415
- hidden: true,
416
- runtime: true
417
- },
418
- "NOW_BUILDER",
419
- "The now builder build ID. This value is set by certain CI/CD systems.",
420
- {
421
- hidden: true,
422
- runtime: true
423
- },
424
- "APPCENTER_BUILD_ID",
425
- "The appcenter build ID. This value is set by certain CI/CD systems.",
426
- {
427
- hidden: true,
428
- runtime: true
429
- },
430
- "CI_XCODE_PROJECT",
431
- "The xcode project build ID. This value is set by certain CI/CD systems.",
432
- {
433
- hidden: true,
434
- runtime: true
435
- },
436
- "XCS",
437
- "The xcode server build ID. This value is set by certain CI/CD systems.",
438
- {
439
- hidden: true,
440
- runtime: true
441
- },
442
- "DATA_DIR",
443
- "The application's runtime data directory.",
444
- {
445
- runtime: true,
446
- title: "Data Directory"
447
- },
448
- "CONFIG_DIR",
449
- "The application's configuration data directory.",
450
- {
451
- runtime: true,
452
- title: "Configuration Directory"
453
- },
454
- "CACHE_DIR",
455
- "The application's cached data directory.",
456
- {
457
- runtime: true,
458
- title: "Cache Directory"
459
- },
460
- "LOG_DIR",
461
- "The application's logging directory.",
462
- {
463
- runtime: true,
464
- title: "Log Directory"
465
- },
466
- "TEMP_DIR",
467
- "The application's temporary data directory.",
468
- {
469
- runtime: true,
470
- title: "Temporary Directory"
471
- },
472
- "LOCALAPPDATA",
473
- "A variable that specifies the current user's local application data directory on Windows.",
474
- {
475
- hidden: true,
476
- runtime: true
477
- },
478
- "APPDATA",
479
- "A variable that specifies the application data directory on Windows.",
480
- {
481
- hidden: true,
482
- runtime: true
483
- },
484
- "XDG_DATA_HOME",
485
- "A variable that specifies the data path in the home directory on Linux systems using the XDG base directory specification.",
486
- {
487
- hidden: true,
488
- runtime: true
489
- },
490
- "XDG_CONFIG_HOME",
491
- "A variable that specifies the configuration path in the home directory on Linux systems using the XDG base directory specification.",
492
- {
493
- hidden: true,
494
- runtime: true
495
- },
496
- "XDG_CACHE_HOME",
497
- "A variable that specifies the cache path in the home directory on Linux systems using the XDG base directory specification.",
498
- {
499
- hidden: true,
500
- runtime: true
501
- },
502
- "XDG_STATE_HOME",
503
- "A variable that specifies the state directory on Linux systems using the XDG base directory specification.",
504
- {
505
- hidden: true,
506
- runtime: true
507
- },
508
- "XDG_RUNTIME_DIR",
509
- "A variable that specifies the runtime directory on Linux systems using the XDG base directory specification.",
510
- {
511
- hidden: true,
512
- runtime: true
513
- },
514
- "DEVENV_RUNTIME",
515
- "A variable that specifies the [Devenv](https://devenv.sh/) runtime directory.",
516
- {
517
- hidden: true,
518
- runtime: true
519
- },
520
- "The base environment configuration used by Powerlines applications",
521
- "EnvInterface",
522
- "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@>=?A)4B?C)4D?E)4F?G)4H?IP)'J4J?KP)'J4L?M&4N89?OzP&4Q89?RzS&4T89?UzV&4W89?XzY&4Z89?[z\\&4]89?^z_&4`89?azb)4c89?dze&4f89?gzh&4i89?jzk&4l89?mzn)4o?p)4q?r&4s?tzu&4v>w?x&4y>z?{P.|.}.~.,J4€8>?‚)4ƒ?„z…&4†89?‡zˆ&4‰89?Šz‹&4Œ89?zŽ&489?z‘&4’89?“z”&4•89?–z—&4˜89?™zš&4›89?œz&4ž89?Ÿz\xA0&4¡89?¢z£&4¤89?¥z¦&4§89?¨z©&4ª89?«z¬&4­89?®z¯&4°89?±z²&4³89?´zµ&4¶89?·z¸&4¹89?ºz»&4¼89?½z¾&4¿89?ÀzÁ&4Â89?ÃzÄ&4Å89?ÆzÇ&4È89?ÉzÊ&4Ë89?ÌzÍ&4Î89?ÏzÐ&4Ñ89?ÒzÓ&4Ô89?ÕzÖ&4×89?ØzÙ&4Ú89?ÛzÜ&4Ý89?Þzß&4à89?ázâ&4ã89?äzå&4æ89?çzè&4é89?êzë&4ì89?ízî&4ï89?ðzñ&4ò89?ózô&4õ89?öz÷&4ø89?ùzú&4û89?üzý&4þ89?ÿzĀ&4ā89?Ăză&4Ą89?ązĆ&4ć89?Ĉzĉ&4Ċ89?ċzČ&4č89?Ďzď&4Đ89?đzĒ&4ē89?Ĕzĕ&4Ė89?ėzĘ&4ę89?Ězě&4Ĝ8?ĝzĞ&4ğ8?Ġzġ&4Ģ8?ģzĤ&4ĥ8?Ħzħ&4Ĩ8?ĩzĪ&4ī89?Ĭzĭ&4Į89?įzİ&4ı89?IJzij&4Ĵ89?ĵzĶ&4ķ89?ĸzĹ&4ĺ89?Ļzļ&4Ľ89?ľzĿ&4ŀ89?ŁzłM?Ńwńy"
523
- ];
524
- const __ΩSecretsInterface = [
525
- "ENCRYPTION_KEY",
526
- "The secret key used for encryption and decryption.",
527
- { title: "Encryption Key" },
528
- "The base secrets configuration used by Powerlines applications",
529
- "SecretsInterface",
530
- "P&4!?\"z#M?$w%y"
531
- ];
532
-
533
- //#endregion
534
- exports.__ΩEnvInterface = __ΩEnvInterface;
535
- exports.__ΩSecretsInterface = __ΩSecretsInterface;
1
+ Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=[`APP_NAME`,`The name of the application.`,`APP_VERSION`,`1.0.0`,`The version of the application.`,`BUILD_ID`,`The unique identifier for the build.`,`BUILD_TIMESTAMP`,`The timestamp the build was ran at.`,`BUILD_CHECKSUM`,`A checksum hash created during the build.`,`RELEASE_ID`,`The unique identifier for the release.`,`RELEASE_TAG`,`The tag for the release. This is generally in the format of "\\<APP_NAME\\>\\@\\<APP_VERSION\\>".`,`ORGANIZATION`,`The name of the organization that maintains the application.`,{alias:[`ORG`]},`node`,`neutral`,`browser`,`PLATFORM`,`neutral`,`The platform for which the application was built.`,`development`,`test`,`production`,`MODE`,`production`,`The mode in which the application is running.`,{alias:[`NODE_ENV`,`VERCEL_ENV`]},`ENVIRONMENT`,"The environment the application is running in. This value will be populated with the value of `MODE` if not provided.",`DEBUG`,`Indicates if the application is running in debug mode.`,`TEST`,`An indicator that specifies the current runtime is a test environment.`,`MINIMAL`,`An indicator that specifies the current runtime is a minimal environment.`,`NO_COLOR`,`An indicator that specifies the current runtime is a no color environment.`,`FORCE_COLOR`,`An indicator that specifies the current runtime is a force color environment.`,`FORCE_HYPERLINK`,`An indicator that specifies the current runtime should force hyperlinks in terminal output.`,`AGENT_NAME`,`The name of the agent running the application. This variable is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`COLORTERM`,`The color terminal type. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`TERM`,`The terminal type. This variable is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`TERM_PROGRAM`,`The terminal program name. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`TERM_PROGRAM_VERSION`,`The terminal program version. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`TERMINAL_EMULATOR`,`The terminal emulator name. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`WT_SESSION`,`The terminal emulator session ID. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`TERMINUS_SUBLIME`,`An indicator that specifies the current terminal is running Terminus Sublime. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`ConEmuTask`,`The ConEmu task name. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`CURSOR_TRACE_ID`,`The cursor trace ID. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`VTE_VERSION`,`The VTE version. This variable is set by certain terminal emulators.`,{hidden:!0,runtime:!0},`STACKTRACE`,`Indicates if error stack traces should be captured.`,`INCLUDE_ERROR_DATA`,`Indicates if error data should be included.`,`ERROR_URL`,`A web page to lookup error messages and display additional information given an error code.`,{title:`Error Details URL`},`DEFAULT_TIMEZONE`,`America/New_York`,`The default timezone for the application.`,`DEFAULT_LOCALE`,`en_US`,`The default locale to be used in the application.`,`error`,`warn`,`info`,`debug`,`LOG_LEVEL`,`info`,"The default lowest log level to accept. If `null`, the logger will reject all records.",`CI`,`An indicator that specifies the current runtime is a continuous integration environment.`,{alias:[`CONTINUOUS_INTEGRATION`],title:`Continuous Integration`},`RUN_ID`,`The unique identifier for the current run. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`AGOLA_GIT_REF`,`The agola git reference. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`AC_APPCIRCLE`,`The appcircle build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`APPVEYOR`,`The appveyor build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`CODEBUILD`,`The codebuild build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`TF_BUILD`,`The task force build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`bamboo_planKey`,`The bamboo plan key. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`BITBUCKET_COMMIT`,`The bitbucket commit. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`BITRISE_IO`,`The bitrise build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`BUDDY_WORKSPACE_ID`,`The buddy workspace ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`BUILDKITE`,`The buildkite build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`CIRCLECI`,`The circleci build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`CIRRUS_CI`,`The cirrus-ci build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`CF_BUILD_ID`,`The cf build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`CM_BUILD_ID`,`The cm build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`CI_NAME`,`The ci name. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`DRONE`,`The drone build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`DSARI`,`The dsari build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`EARTHLY_CI`,`The earthly build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`EAS_BUILD`,`The eas build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`GERRIT_PROJECT`,`The gerrit project. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`GITEA_ACTIONS`,`The gitea actions build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`GITHUB_ACTIONS`,`The github actions build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`GITLAB_CI`,`The gitlab ci build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`GOCD`,`The go cd build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`BUILDER_OUTPUT`,`The builder output build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`HARNESS_BUILD_ID`,`The harness build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`JENKINS_URL`,`The jenkins url. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`LAYERCI`,`The layerci build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`MAGNUM`,`The magnum build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`NETLIFY`,`The netlify build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`NEVERCODE`,`The nevercode build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`PROW_JOB_ID`,`The prow job ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`RELEASE_BUILD_ID`,`The release build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`RENDER`,`The render build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`SAILCI`,`The sailci build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`HUDSON`,`The hudson build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`SCREWDRIVER`,`The screwdriver build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`SEMAPHORE`,`The semaphore build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`SOURCEHUT`,`The sourcehut build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`SPACESHIP_CI`,`The spaceship build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`STRIDER`,`The strider build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`TASK_ID`,`The task ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`TEAMCITY_VERSION`,`The teamcity version. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`TRAVIS`,`The travis build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`VELA`,`The vela build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`NOW_BUILDER`,`The now builder build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`APPCENTER_BUILD_ID`,`The appcenter build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`CI_XCODE_PROJECT`,`The xcode project build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`XCS`,`The xcode server build ID. This value is set by certain CI/CD systems.`,{hidden:!0,runtime:!0},`DATA_DIR`,`The application's runtime data directory.`,{runtime:!0,title:`Data Directory`},`CONFIG_DIR`,`The application's configuration data directory.`,{runtime:!0,title:`Configuration Directory`},`CACHE_DIR`,`The application's cached data directory.`,{runtime:!0,title:`Cache Directory`},`LOG_DIR`,`The application's logging directory.`,{runtime:!0,title:`Log Directory`},`TEMP_DIR`,`The application's temporary data directory.`,{runtime:!0,title:`Temporary Directory`},`LOCALAPPDATA`,`A variable that specifies the current user's local application data directory on Windows.`,{hidden:!0,runtime:!0},`APPDATA`,`A variable that specifies the application data directory on Windows.`,{hidden:!0,runtime:!0},`XDG_DATA_HOME`,`A variable that specifies the data path in the home directory on Linux systems using the XDG base directory specification.`,{hidden:!0,runtime:!0},`XDG_CONFIG_HOME`,`A variable that specifies the configuration path in the home directory on Linux systems using the XDG base directory specification.`,{hidden:!0,runtime:!0},`XDG_CACHE_HOME`,`A variable that specifies the cache path in the home directory on Linux systems using the XDG base directory specification.`,{hidden:!0,runtime:!0},`XDG_STATE_HOME`,`A variable that specifies the state directory on Linux systems using the XDG base directory specification.`,{hidden:!0,runtime:!0},`XDG_RUNTIME_DIR`,`A variable that specifies the runtime directory on Linux systems using the XDG base directory specification.`,{hidden:!0,runtime:!0},`DEVENV_RUNTIME`,`A variable that specifies the [Devenv](https://devenv.sh/) runtime directory.`,{hidden:!0,runtime:!0},`The base environment configuration used by Powerlines applications`,`EnvInterface`,`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@>=?A)4B?C)4D?E)4F?G)4H?IP)'J4J?KP)'J4L?M&4N89?OzP&4Q89?RzS&4T89?UzV&4W89?XzY&4Z89?[z\\&4]89?^z_&4\`89?azb)4c89?dze&4f89?gzh&4i89?jzk&4l89?mzn)4o?p)4q?r&4s?tzu&4v>w?x&4y>z?{P.|.}.~.,J4€8>?‚)4ƒ?„z…&4†89?‡zˆ&4‰89?Šz‹&4Œ89?zŽ&489?z‘&4’89?“z”&4•89?–z—&4˜89?™zš&4›89?œz&4ž89?Ÿz\xA0&4¡89?¢z£&4¤89?¥z¦&4§89?¨z©&4ª89?«z¬&4­89?®z¯&4°89?±z²&4³89?´zµ&4¶89?·z¸&4¹89?ºz»&4¼89?½z¾&4¿89?ÀzÁ&4Â89?ÃzÄ&4Å89?ÆzÇ&4È89?ÉzÊ&4Ë89?ÌzÍ&4Î89?ÏzÐ&4Ñ89?ÒzÓ&4Ô89?ÕzÖ&4×89?ØzÙ&4Ú89?ÛzÜ&4Ý89?Þzß&4à89?ázâ&4ã89?äzå&4æ89?çzè&4é89?êzë&4ì89?ízî&4ï89?ðzñ&4ò89?ózô&4õ89?öz÷&4ø89?ùzú&4û89?üzý&4þ89?ÿzĀ&4ā89?Ăză&4Ą89?ązĆ&4ć89?Ĉzĉ&4Ċ89?ċzČ&4č89?Ďzď&4Đ89?đzĒ&4ē89?Ĕzĕ&4Ė89?ėzĘ&4ę89?Ězě&4Ĝ8?ĝzĞ&4ğ8?Ġzġ&4Ģ8?ģzĤ&4ĥ8?Ħzħ&4Ĩ8?ĩzĪ&4ī89?Ĭzĭ&4Į89?įzİ&4ı89?IJzij&4Ĵ89?ĵzĶ&4ķ89?ĸzĹ&4ĺ89?Ļzļ&4Ľ89?ľzĿ&4ŀ89?ŁzłM?Ńwńy`],t=[`ENCRYPTION_KEY`,`The secret key used for encryption and decryption.`,{title:`Encryption Key`},`The base secrets configuration used by Powerlines applications`,`SecretsInterface`,`P&4!?"z#M?$w%y`];exports.__ΩEnvInterface=e,exports.__ΩSecretsInterface=t;