@powerlines/plugin-env 0.16.120 → 0.16.122

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.
@@ -32,6 +32,7 @@ async function createTemplateReflection(context, name) {
32
32
  hidden: prop.isHidden(),
33
33
  ignore: prop.isIgnored(),
34
34
  internal: prop.isInternal(),
35
+ runtime: prop.isRuntime(),
35
36
  alias: prop.getAlias().filter(__assignType((a) => a !== alias, [
36
37
  "a",
37
38
  "",
@@ -30,6 +30,7 @@ async function createTemplateReflection(context, name) {
30
30
  hidden: prop.isHidden(),
31
31
  ignore: prop.isIgnored(),
32
32
  internal: prop.isInternal(),
33
+ runtime: prop.isRuntime(),
33
34
  alias: prop.getAlias().filter(__assignType((a) => a !== alias, [
34
35
  "a",
35
36
  "",
@@ -1 +1 @@
1
- {"version":3,"file":"template-helpers.mjs","names":[],"sources":["../../src/helpers/template-helpers.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 { ReflectionClass } from \"@powerlines/deepkit/vendor/type\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { EnvPluginContext, EnvType } from \"../types/plugin\";\nimport { readEnvTypeReflection } from \"./persistence\";\n\n/**\n * Creates the reflection data used when generating runtime template files.\n *\n * @param context - The context for the configuration plugin.\n * @param name - The name of the configuration template.\n * @returns The reflection for the specified configuration template.\n */\nexport async function createTemplateReflection(\n context: EnvPluginContext,\n name?: EnvType\n): Promise<ReflectionClass<any>> {\n const reflection = await readEnvTypeReflection(context, name);\n\n reflection.getProperties().forEach(prop => {\n const aliases = prop.getAlias();\n aliases.filter(Boolean).forEach(alias => {\n reflection.addProperty({\n name: alias,\n optional: prop.isOptional() ? true : undefined,\n readonly: prop.isReadonly() ? true : undefined,\n description: prop.getDescription(),\n visibility: prop.getVisibility(),\n type: prop.getType(),\n default: prop.getDefaultValue(),\n tags: {\n hidden: prop.isHidden(),\n ignore: prop.isIgnored(),\n internal: prop.isInternal(),\n alias: prop\n .getAlias()\n .filter(a => a !== alias)\n .concat(prop.name),\n title: prop.getTitle() || titleCase(prop.name),\n readonly: prop.isReadonly(),\n permission: prop.getPermission(),\n domain: prop.getDomain()\n }\n });\n });\n });\n\n return reflection;\n}\n"],"mappings":";;;;;AAIA,SAAM,aAAS,IAAW,MAAM;AAC5B,IAAA,SAAW;AACd,QAAS;;;;;;;;;;CAYV,MAAS,aAAA,MAAkB,sBAAkB,SAAe,KAAK;AACjE,YAAS,eAAmB,CAAA,QAAO,cAAc,SAAW;AAEpD,EADC,KAAkB,UAAU,CAC5B,OAAA,QAAsB,CAAC,QAAQ,cAAa,UAAA;;IAEnD,MAAA;IACa,UAAW,KAAK,YAAU,GAAA,OAAW;IACnD,UAAA,KAAA,YAAA,GAAA,OAAA;IACS,aAAc,KAAQ,gBAAQ;IACxB,YAAY,KAAK,eAAc;IAC/B,MAAA,KAAW,SAAQ;IACjC,SAAA,KAAA,iBAAA;IACW,MAAS;KACX,QAAgB,KAAA,UAAA;KAClB,QAAA,KAAA,WAAA;KACE,UAAmB,KAAG,YAAA;KACb,OAAO,gBAEd,OAAgB,cAAgB,MAAA,MAAA,OAAA;MAAA;MAAA;MAAA;MAAA,CAAA,CAAA,CACpB,OAAA,KAAU,KAAA;KAChB,OAAQ,KAAC,UAAc,IAAG,UAAA,KAAA,KAAA;KAC5B,UAAY,KAAA,YAAA;KACV,YAAA,KAAA,eAAA;KACD,QAAK,KAAU,WAAW;KAC3B;IACT,CAAA;KACA;GAAA;GAAY;GAAK;GAAA,CAAA,CAAA;IAClB;EAAC;EAAM;EAAK;EAAS,CAAA,CAAA;AACxB,QAAI;;AAER,yBAAuB,SAAU;OAAA;CAAA;OAAA;CAAA;CAAA;CAAA;CAAA;CAAA"}
1
+ {"version":3,"file":"template-helpers.mjs","names":[],"sources":["../../src/helpers/template-helpers.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 { ReflectionClass } from \"@powerlines/deepkit/vendor/type\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { EnvPluginContext, EnvType } from \"../types/plugin\";\nimport { readEnvTypeReflection } from \"./persistence\";\n\n/**\n * Creates the reflection data used when generating runtime template files.\n *\n * @param context - The context for the configuration plugin.\n * @param name - The name of the configuration template.\n * @returns The reflection for the specified configuration template.\n */\nexport async function createTemplateReflection(\n context: EnvPluginContext,\n name?: EnvType\n): Promise<ReflectionClass<any>> {\n const reflection = await readEnvTypeReflection(context, name);\n\n reflection.getProperties().forEach(prop => {\n const aliases = prop.getAlias();\n aliases.filter(Boolean).forEach(alias => {\n reflection.addProperty({\n name: alias,\n optional: prop.isOptional() ? true : undefined,\n readonly: prop.isReadonly() ? true : undefined,\n description: prop.getDescription(),\n visibility: prop.getVisibility(),\n type: prop.getType(),\n default: prop.getDefaultValue(),\n tags: {\n hidden: prop.isHidden(),\n ignore: prop.isIgnored(),\n internal: prop.isInternal(),\n runtime: prop.isRuntime(),\n alias: prop\n .getAlias()\n .filter(a => a !== alias)\n .concat(prop.name),\n title: prop.getTitle() || titleCase(prop.name),\n readonly: prop.isReadonly(),\n permission: prop.getPermission(),\n domain: prop.getDomain()\n }\n });\n });\n });\n\n return reflection;\n}\n"],"mappings":";;;;;AAIA,SAAM,aAAS,IAAW,MAAM;AAC5B,IAAA,SAAW;AACd,QAAS;;;;;;;;;;CAYV,MAAS,aAAA,MAAkB,sBAAkB,SAAe,KAAK;AACjE,YAAS,eAAmB,CAAA,QAAO,cAAc,SAAW;AAEpD,EADC,KAAkB,UAAU,CAC5B,OAAA,QAAsB,CAAC,QAAQ,cAAa,UAAA;;IAEnD,MAAA;IACa,UAAW,KAAK,YAAU,GAAA,OAAW;IACnD,UAAA,KAAA,YAAA,GAAA,OAAA;IACS,aAAc,KAAQ,gBAAQ;IACxB,YAAY,KAAK,eAAc;IAC/B,MAAA,KAAW,SAAQ;IACjC,SAAA,KAAA,iBAAA;IACW,MAAS;KACX,QAAgB,KAAA,UAAA;KAClB,QAAA,KAAA,WAAA;KACE,UAAmB,KAAG,YAAA;KACb,SAAO,KAAA,WAAA;iBAEd,UAAgB,CACJ,OAAA,cAAU,MAAA,MAAA,OAAA;MAAA;MAAA;MAAA;MAAA,CAAA,CAAA,CAChB,OAAS,KAAQ,KAAM;KACzB,OAAA,KAAY,UAAA,IAAA,UAAA,KAAA,KAAA;KACV,UAAA,KAAA,YAAA;KACD,YAAK,KAAc,eAAQ;KAC3B,QAAK,KAAU,WAAW;KACpC;IACA,CAAA;KACA;GAAI;GAAO;GAAA;GAAS,CAAA,CAAA;IACrB;EAAC;EAAQ;EAAC;EAAK,CAAA,CAAA;AAClB,QAAI;;AAER,yBAAuB,SAAW;OAAA;CAAA;OAAA;CAAA;CAAA;CAAA;CAAA;CAAA"}
@@ -19,6 +19,7 @@ const __ΩEnvInterface = [
19
19
  "The tag for the release. This is generally in the format of \"\\<APP_NAME\\>\\@\\<APP_VERSION\\>\".",
20
20
  "ORGANIZATION",
21
21
  "The name of the organization that maintains the application.",
22
+ { alias: ["ORG"] },
22
23
  "node",
23
24
  "neutral",
24
25
  "browser",
@@ -31,6 +32,7 @@ const __ΩEnvInterface = [
31
32
  "MODE",
32
33
  "production",
33
34
  "The mode in which the application is running.",
35
+ { alias: ["NODE_ENV", "VERCEL_ENV"] },
34
36
  "ENVIRONMENT",
35
37
  "The environment the application is running in. This value will be populated with the value of `MODE` if not provided.",
36
38
  "DEBUG",
@@ -47,26 +49,70 @@ const __ΩEnvInterface = [
47
49
  "An indicator that specifies the current runtime should force hyperlinks in terminal output.",
48
50
  "AGENT_NAME",
49
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
+ },
50
56
  "COLORTERM",
51
57
  "The color terminal type. This variable is set by certain terminal emulators.",
58
+ {
59
+ hidden: true,
60
+ runtime: true
61
+ },
52
62
  "TERM",
53
63
  "The terminal type. This variable is set by certain CI/CD systems.",
64
+ {
65
+ hidden: true,
66
+ runtime: true
67
+ },
54
68
  "TERM_PROGRAM",
55
69
  "The terminal program name. This variable is set by certain terminal emulators.",
70
+ {
71
+ hidden: true,
72
+ runtime: true
73
+ },
56
74
  "TERM_PROGRAM_VERSION",
57
75
  "The terminal program version. This variable is set by certain terminal emulators.",
76
+ {
77
+ hidden: true,
78
+ runtime: true
79
+ },
58
80
  "TERMINAL_EMULATOR",
59
81
  "The terminal emulator name. This variable is set by certain terminal emulators.",
82
+ {
83
+ hidden: true,
84
+ runtime: true
85
+ },
60
86
  "WT_SESSION",
61
87
  "The terminal emulator session ID. This variable is set by certain terminal emulators.",
88
+ {
89
+ hidden: true,
90
+ runtime: true
91
+ },
62
92
  "TERMINUS_SUBLIME",
63
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
+ },
64
98
  "ConEmuTask",
65
99
  "The ConEmu task name. This variable is set by certain terminal emulators.",
100
+ {
101
+ hidden: true,
102
+ runtime: true
103
+ },
66
104
  "CURSOR_TRACE_ID",
67
105
  "The cursor trace ID. This variable is set by certain terminal emulators.",
106
+ {
107
+ hidden: true,
108
+ runtime: true
109
+ },
68
110
  "VTE_VERSION",
69
111
  "The VTE version. This variable is set by certain terminal emulators.",
112
+ {
113
+ hidden: true,
114
+ runtime: true
115
+ },
70
116
  "STACKTRACE",
71
117
  "Indicates if error stack traces should be captured.",
72
118
  "INCLUDE_ERROR_DATA",
@@ -89,141 +135,391 @@ const __ΩEnvInterface = [
89
135
  "The default lowest log level to accept. If `null`, the logger will reject all records.",
90
136
  "CI",
91
137
  "An indicator that specifies the current runtime is a continuous integration environment.",
92
- { title: "Continuous Integration" },
138
+ {
139
+ alias: ["CONTINUOUS_INTEGRATION"],
140
+ title: "Continuous Integration"
141
+ },
93
142
  "RUN_ID",
94
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
+ },
95
148
  "AGOLA_GIT_REF",
96
149
  "The agola git reference. This value is set by certain CI/CD systems.",
150
+ {
151
+ hidden: true,
152
+ runtime: true
153
+ },
97
154
  "AC_APPCIRCLE",
98
155
  "The appcircle build ID. This value is set by certain CI/CD systems.",
156
+ {
157
+ hidden: true,
158
+ runtime: true
159
+ },
99
160
  "APPVEYOR",
100
161
  "The appveyor build ID. This value is set by certain CI/CD systems.",
162
+ {
163
+ hidden: true,
164
+ runtime: true
165
+ },
101
166
  "CODEBUILD",
102
167
  "The codebuild build ID. This value is set by certain CI/CD systems.",
168
+ {
169
+ hidden: true,
170
+ runtime: true
171
+ },
103
172
  "TF_BUILD",
104
173
  "The task force build ID. This value is set by certain CI/CD systems.",
174
+ {
175
+ hidden: true,
176
+ runtime: true
177
+ },
105
178
  "bamboo_planKey",
106
179
  "The bamboo plan key. This value is set by certain CI/CD systems.",
180
+ {
181
+ hidden: true,
182
+ runtime: true
183
+ },
107
184
  "BITBUCKET_COMMIT",
108
185
  "The bitbucket commit. This value is set by certain CI/CD systems.",
186
+ {
187
+ hidden: true,
188
+ runtime: true
189
+ },
109
190
  "BITRISE_IO",
110
191
  "The bitrise build ID. This value is set by certain CI/CD systems.",
192
+ {
193
+ hidden: true,
194
+ runtime: true
195
+ },
111
196
  "BUDDY_WORKSPACE_ID",
112
197
  "The buddy workspace ID. This value is set by certain CI/CD systems.",
198
+ {
199
+ hidden: true,
200
+ runtime: true
201
+ },
113
202
  "BUILDKITE",
114
203
  "The buildkite build ID. This value is set by certain CI/CD systems.",
204
+ {
205
+ hidden: true,
206
+ runtime: true
207
+ },
115
208
  "CIRCLECI",
116
209
  "The circleci build ID. This value is set by certain CI/CD systems.",
210
+ {
211
+ hidden: true,
212
+ runtime: true
213
+ },
117
214
  "CIRRUS_CI",
118
215
  "The cirrus-ci build ID. This value is set by certain CI/CD systems.",
216
+ {
217
+ hidden: true,
218
+ runtime: true
219
+ },
119
220
  "CF_BUILD_ID",
120
221
  "The cf build ID. This value is set by certain CI/CD systems.",
222
+ {
223
+ hidden: true,
224
+ runtime: true
225
+ },
121
226
  "CM_BUILD_ID",
122
227
  "The cm build ID. This value is set by certain CI/CD systems.",
228
+ {
229
+ hidden: true,
230
+ runtime: true
231
+ },
123
232
  "CI_NAME",
124
233
  "The ci name. This value is set by certain CI/CD systems.",
234
+ {
235
+ hidden: true,
236
+ runtime: true
237
+ },
125
238
  "DRONE",
126
239
  "The drone build ID. This value is set by certain CI/CD systems.",
240
+ {
241
+ hidden: true,
242
+ runtime: true
243
+ },
127
244
  "DSARI",
128
245
  "The dsari build ID. This value is set by certain CI/CD systems.",
246
+ {
247
+ hidden: true,
248
+ runtime: true
249
+ },
129
250
  "EARTHLY_CI",
130
251
  "The earthly build ID. This value is set by certain CI/CD systems.",
252
+ {
253
+ hidden: true,
254
+ runtime: true
255
+ },
131
256
  "EAS_BUILD",
132
257
  "The eas build ID. This value is set by certain CI/CD systems.",
258
+ {
259
+ hidden: true,
260
+ runtime: true
261
+ },
133
262
  "GERRIT_PROJECT",
134
263
  "The gerrit project. This value is set by certain CI/CD systems.",
264
+ {
265
+ hidden: true,
266
+ runtime: true
267
+ },
135
268
  "GITEA_ACTIONS",
136
269
  "The gitea actions build ID. This value is set by certain CI/CD systems.",
270
+ {
271
+ hidden: true,
272
+ runtime: true
273
+ },
137
274
  "GITHUB_ACTIONS",
138
275
  "The github actions build ID. This value is set by certain CI/CD systems.",
276
+ {
277
+ hidden: true,
278
+ runtime: true
279
+ },
139
280
  "GITLAB_CI",
140
281
  "The gitlab ci build ID. This value is set by certain CI/CD systems.",
282
+ {
283
+ hidden: true,
284
+ runtime: true
285
+ },
141
286
  "GOCD",
142
287
  "The go cd build ID. This value is set by certain CI/CD systems.",
288
+ {
289
+ hidden: true,
290
+ runtime: true
291
+ },
143
292
  "BUILDER_OUTPUT",
144
293
  "The builder output build ID. This value is set by certain CI/CD systems.",
294
+ {
295
+ hidden: true,
296
+ runtime: true
297
+ },
145
298
  "HARNESS_BUILD_ID",
146
299
  "The harness build ID. This value is set by certain CI/CD systems.",
300
+ {
301
+ hidden: true,
302
+ runtime: true
303
+ },
147
304
  "JENKINS_URL",
148
305
  "The jenkins url. This value is set by certain CI/CD systems.",
306
+ {
307
+ hidden: true,
308
+ runtime: true
309
+ },
149
310
  "LAYERCI",
150
311
  "The layerci build ID. This value is set by certain CI/CD systems.",
312
+ {
313
+ hidden: true,
314
+ runtime: true
315
+ },
151
316
  "MAGNUM",
152
317
  "The magnum build ID. This value is set by certain CI/CD systems.",
318
+ {
319
+ hidden: true,
320
+ runtime: true
321
+ },
153
322
  "NETLIFY",
154
323
  "The netlify build ID. This value is set by certain CI/CD systems.",
324
+ {
325
+ hidden: true,
326
+ runtime: true
327
+ },
155
328
  "NEVERCODE",
156
329
  "The nevercode build ID. This value is set by certain CI/CD systems.",
330
+ {
331
+ hidden: true,
332
+ runtime: true
333
+ },
157
334
  "PROW_JOB_ID",
158
335
  "The prow job ID. This value is set by certain CI/CD systems.",
336
+ {
337
+ hidden: true,
338
+ runtime: true
339
+ },
159
340
  "RELEASE_BUILD_ID",
160
341
  "The release build ID. This value is set by certain CI/CD systems.",
342
+ {
343
+ hidden: true,
344
+ runtime: true
345
+ },
161
346
  "RENDER",
162
347
  "The render build ID. This value is set by certain CI/CD systems.",
348
+ {
349
+ hidden: true,
350
+ runtime: true
351
+ },
163
352
  "SAILCI",
164
353
  "The sailci build ID. This value is set by certain CI/CD systems.",
354
+ {
355
+ hidden: true,
356
+ runtime: true
357
+ },
165
358
  "HUDSON",
166
359
  "The hudson build ID. This value is set by certain CI/CD systems.",
360
+ {
361
+ hidden: true,
362
+ runtime: true
363
+ },
167
364
  "SCREWDRIVER",
168
365
  "The screwdriver build ID. This value is set by certain CI/CD systems.",
366
+ {
367
+ hidden: true,
368
+ runtime: true
369
+ },
169
370
  "SEMAPHORE",
170
371
  "The semaphore build ID. This value is set by certain CI/CD systems.",
372
+ {
373
+ hidden: true,
374
+ runtime: true
375
+ },
171
376
  "SOURCEHUT",
172
377
  "The sourcehut build ID. This value is set by certain CI/CD systems.",
378
+ {
379
+ hidden: true,
380
+ runtime: true
381
+ },
173
382
  "SPACESHIP_CI",
174
383
  "The spaceship build ID. This value is set by certain CI/CD systems.",
384
+ {
385
+ hidden: true,
386
+ runtime: true
387
+ },
175
388
  "STRIDER",
176
389
  "The strider build ID. This value is set by certain CI/CD systems.",
390
+ {
391
+ hidden: true,
392
+ runtime: true
393
+ },
177
394
  "TASK_ID",
178
395
  "The task ID. This value is set by certain CI/CD systems.",
396
+ {
397
+ hidden: true,
398
+ runtime: true
399
+ },
179
400
  "TEAMCITY_VERSION",
180
401
  "The teamcity version. This value is set by certain CI/CD systems.",
402
+ {
403
+ hidden: true,
404
+ runtime: true
405
+ },
181
406
  "TRAVIS",
182
407
  "The travis build ID. This value is set by certain CI/CD systems.",
408
+ {
409
+ hidden: true,
410
+ runtime: true
411
+ },
183
412
  "VELA",
184
413
  "The vela build ID. This value is set by certain CI/CD systems.",
414
+ {
415
+ hidden: true,
416
+ runtime: true
417
+ },
185
418
  "NOW_BUILDER",
186
419
  "The now builder build ID. This value is set by certain CI/CD systems.",
420
+ {
421
+ hidden: true,
422
+ runtime: true
423
+ },
187
424
  "APPCENTER_BUILD_ID",
188
425
  "The appcenter build ID. This value is set by certain CI/CD systems.",
426
+ {
427
+ hidden: true,
428
+ runtime: true
429
+ },
189
430
  "CI_XCODE_PROJECT",
190
431
  "The xcode project build ID. This value is set by certain CI/CD systems.",
432
+ {
433
+ hidden: true,
434
+ runtime: true
435
+ },
191
436
  "XCS",
192
437
  "The xcode server build ID. This value is set by certain CI/CD systems.",
438
+ {
439
+ hidden: true,
440
+ runtime: true
441
+ },
193
442
  "DATA_DIR",
194
443
  "The application's runtime data directory.",
195
- { title: "Data Directory" },
444
+ {
445
+ runtime: true,
446
+ title: "Data Directory"
447
+ },
196
448
  "CONFIG_DIR",
197
449
  "The application's configuration data directory.",
198
- { title: "Configuration Directory" },
450
+ {
451
+ runtime: true,
452
+ title: "Configuration Directory"
453
+ },
199
454
  "CACHE_DIR",
200
455
  "The application's cached data directory.",
201
- { title: "Cache Directory" },
456
+ {
457
+ runtime: true,
458
+ title: "Cache Directory"
459
+ },
202
460
  "LOG_DIR",
203
461
  "The application's logging directory.",
204
- { title: "Log Directory" },
462
+ {
463
+ runtime: true,
464
+ title: "Log Directory"
465
+ },
205
466
  "TEMP_DIR",
206
467
  "The application's temporary data directory.",
207
- { title: "Temporary Directory" },
468
+ {
469
+ runtime: true,
470
+ title: "Temporary Directory"
471
+ },
208
472
  "LOCALAPPDATA",
209
473
  "A variable that specifies the current user's local application data directory on Windows.",
474
+ {
475
+ hidden: true,
476
+ runtime: true
477
+ },
210
478
  "APPDATA",
211
479
  "A variable that specifies the application data directory on Windows.",
480
+ {
481
+ hidden: true,
482
+ runtime: true
483
+ },
212
484
  "XDG_DATA_HOME",
213
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
+ },
214
490
  "XDG_CONFIG_HOME",
215
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
+ },
216
496
  "XDG_CACHE_HOME",
217
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
+ },
218
502
  "XDG_STATE_HOME",
219
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
+ },
220
508
  "XDG_RUNTIME_DIR",
221
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
+ },
222
514
  "DEVENV_RUNTIME",
223
515
  "A variable that specifies the [Devenv](https://devenv.sh/) runtime directory.",
516
+ {
517
+ hidden: true,
518
+ runtime: true
519
+ },
224
520
  "The base environment configuration used by Powerlines applications",
225
521
  "EnvInterface",
226
- "P&4!9?\"&4#9>$?%&4&9?'&4(9?)&4*9?+&4,9?-&4.9?/&40?1P.2.3.4J45>6?7P.8.9.:J4;><?=&4>><??)4@?A)4B?C)4D?E)4F?GP)'J4H?IP)'J4J?K&4L89?M&4N89?O&4P89?Q&4R89?S&4T89?U&4V89?W&4X89?Y)4Z89?[&4\\89?]&4^89?_&4`89?a)4b?c)4d?e&4f?gzh&4i>j?k&4l>m?nP.o.p.q.r,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Ý8zß&4à8zâ&4ã8zå&4æ8zè&4é8zë&4ì89?í&4î89?ï&4ð89?ñ&4ò89?ó&4ô89?õ&4ö89?÷&4ø89?ù&4ú8?ûM?üwýy"
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µ&489?·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Ĝ8zĞ&4ğ8zġ&4Ģ8zĤ&4ĥ8zħ&4Ĩ8zĪ&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"
227
523
  ];
228
524
  const __ΩSecretsInterface = [
229
525
  "ENCRYPTION_KEY",
@@ -17,6 +17,7 @@ const __ΩEnvInterface = [
17
17
  "The tag for the release. This is generally in the format of \"\\<APP_NAME\\>\\@\\<APP_VERSION\\>\".",
18
18
  "ORGANIZATION",
19
19
  "The name of the organization that maintains the application.",
20
+ { alias: ["ORG"] },
20
21
  "node",
21
22
  "neutral",
22
23
  "browser",
@@ -29,6 +30,7 @@ const __ΩEnvInterface = [
29
30
  "MODE",
30
31
  "production",
31
32
  "The mode in which the application is running.",
33
+ { alias: ["NODE_ENV", "VERCEL_ENV"] },
32
34
  "ENVIRONMENT",
33
35
  "The environment the application is running in. This value will be populated with the value of `MODE` if not provided.",
34
36
  "DEBUG",
@@ -45,26 +47,70 @@ const __ΩEnvInterface = [
45
47
  "An indicator that specifies the current runtime should force hyperlinks in terminal output.",
46
48
  "AGENT_NAME",
47
49
  "The name of the agent running the application. This variable is set by certain CI/CD systems.",
50
+ {
51
+ hidden: true,
52
+ runtime: true
53
+ },
48
54
  "COLORTERM",
49
55
  "The color terminal type. This variable is set by certain terminal emulators.",
56
+ {
57
+ hidden: true,
58
+ runtime: true
59
+ },
50
60
  "TERM",
51
61
  "The terminal type. This variable is set by certain CI/CD systems.",
62
+ {
63
+ hidden: true,
64
+ runtime: true
65
+ },
52
66
  "TERM_PROGRAM",
53
67
  "The terminal program name. This variable is set by certain terminal emulators.",
68
+ {
69
+ hidden: true,
70
+ runtime: true
71
+ },
54
72
  "TERM_PROGRAM_VERSION",
55
73
  "The terminal program version. This variable is set by certain terminal emulators.",
74
+ {
75
+ hidden: true,
76
+ runtime: true
77
+ },
56
78
  "TERMINAL_EMULATOR",
57
79
  "The terminal emulator name. This variable is set by certain terminal emulators.",
80
+ {
81
+ hidden: true,
82
+ runtime: true
83
+ },
58
84
  "WT_SESSION",
59
85
  "The terminal emulator session ID. This variable is set by certain terminal emulators.",
86
+ {
87
+ hidden: true,
88
+ runtime: true
89
+ },
60
90
  "TERMINUS_SUBLIME",
61
91
  "An indicator that specifies the current terminal is running Terminus Sublime. This variable is set by certain terminal emulators.",
92
+ {
93
+ hidden: true,
94
+ runtime: true
95
+ },
62
96
  "ConEmuTask",
63
97
  "The ConEmu task name. This variable is set by certain terminal emulators.",
98
+ {
99
+ hidden: true,
100
+ runtime: true
101
+ },
64
102
  "CURSOR_TRACE_ID",
65
103
  "The cursor trace ID. This variable is set by certain terminal emulators.",
104
+ {
105
+ hidden: true,
106
+ runtime: true
107
+ },
66
108
  "VTE_VERSION",
67
109
  "The VTE version. This variable is set by certain terminal emulators.",
110
+ {
111
+ hidden: true,
112
+ runtime: true
113
+ },
68
114
  "STACKTRACE",
69
115
  "Indicates if error stack traces should be captured.",
70
116
  "INCLUDE_ERROR_DATA",
@@ -87,141 +133,391 @@ const __ΩEnvInterface = [
87
133
  "The default lowest log level to accept. If `null`, the logger will reject all records.",
88
134
  "CI",
89
135
  "An indicator that specifies the current runtime is a continuous integration environment.",
90
- { title: "Continuous Integration" },
136
+ {
137
+ alias: ["CONTINUOUS_INTEGRATION"],
138
+ title: "Continuous Integration"
139
+ },
91
140
  "RUN_ID",
92
141
  "The unique identifier for the current run. This value is set by certain CI/CD systems.",
142
+ {
143
+ hidden: true,
144
+ runtime: true
145
+ },
93
146
  "AGOLA_GIT_REF",
94
147
  "The agola git reference. This value is set by certain CI/CD systems.",
148
+ {
149
+ hidden: true,
150
+ runtime: true
151
+ },
95
152
  "AC_APPCIRCLE",
96
153
  "The appcircle build ID. This value is set by certain CI/CD systems.",
154
+ {
155
+ hidden: true,
156
+ runtime: true
157
+ },
97
158
  "APPVEYOR",
98
159
  "The appveyor build ID. This value is set by certain CI/CD systems.",
160
+ {
161
+ hidden: true,
162
+ runtime: true
163
+ },
99
164
  "CODEBUILD",
100
165
  "The codebuild build ID. This value is set by certain CI/CD systems.",
166
+ {
167
+ hidden: true,
168
+ runtime: true
169
+ },
101
170
  "TF_BUILD",
102
171
  "The task force build ID. This value is set by certain CI/CD systems.",
172
+ {
173
+ hidden: true,
174
+ runtime: true
175
+ },
103
176
  "bamboo_planKey",
104
177
  "The bamboo plan key. This value is set by certain CI/CD systems.",
178
+ {
179
+ hidden: true,
180
+ runtime: true
181
+ },
105
182
  "BITBUCKET_COMMIT",
106
183
  "The bitbucket commit. This value is set by certain CI/CD systems.",
184
+ {
185
+ hidden: true,
186
+ runtime: true
187
+ },
107
188
  "BITRISE_IO",
108
189
  "The bitrise build ID. This value is set by certain CI/CD systems.",
190
+ {
191
+ hidden: true,
192
+ runtime: true
193
+ },
109
194
  "BUDDY_WORKSPACE_ID",
110
195
  "The buddy workspace ID. This value is set by certain CI/CD systems.",
196
+ {
197
+ hidden: true,
198
+ runtime: true
199
+ },
111
200
  "BUILDKITE",
112
201
  "The buildkite build ID. This value is set by certain CI/CD systems.",
202
+ {
203
+ hidden: true,
204
+ runtime: true
205
+ },
113
206
  "CIRCLECI",
114
207
  "The circleci build ID. This value is set by certain CI/CD systems.",
208
+ {
209
+ hidden: true,
210
+ runtime: true
211
+ },
115
212
  "CIRRUS_CI",
116
213
  "The cirrus-ci build ID. This value is set by certain CI/CD systems.",
214
+ {
215
+ hidden: true,
216
+ runtime: true
217
+ },
117
218
  "CF_BUILD_ID",
118
219
  "The cf build ID. This value is set by certain CI/CD systems.",
220
+ {
221
+ hidden: true,
222
+ runtime: true
223
+ },
119
224
  "CM_BUILD_ID",
120
225
  "The cm build ID. This value is set by certain CI/CD systems.",
226
+ {
227
+ hidden: true,
228
+ runtime: true
229
+ },
121
230
  "CI_NAME",
122
231
  "The ci name. This value is set by certain CI/CD systems.",
232
+ {
233
+ hidden: true,
234
+ runtime: true
235
+ },
123
236
  "DRONE",
124
237
  "The drone build ID. This value is set by certain CI/CD systems.",
238
+ {
239
+ hidden: true,
240
+ runtime: true
241
+ },
125
242
  "DSARI",
126
243
  "The dsari build ID. This value is set by certain CI/CD systems.",
244
+ {
245
+ hidden: true,
246
+ runtime: true
247
+ },
127
248
  "EARTHLY_CI",
128
249
  "The earthly build ID. This value is set by certain CI/CD systems.",
250
+ {
251
+ hidden: true,
252
+ runtime: true
253
+ },
129
254
  "EAS_BUILD",
130
255
  "The eas build ID. This value is set by certain CI/CD systems.",
256
+ {
257
+ hidden: true,
258
+ runtime: true
259
+ },
131
260
  "GERRIT_PROJECT",
132
261
  "The gerrit project. This value is set by certain CI/CD systems.",
262
+ {
263
+ hidden: true,
264
+ runtime: true
265
+ },
133
266
  "GITEA_ACTIONS",
134
267
  "The gitea actions build ID. This value is set by certain CI/CD systems.",
268
+ {
269
+ hidden: true,
270
+ runtime: true
271
+ },
135
272
  "GITHUB_ACTIONS",
136
273
  "The github actions build ID. This value is set by certain CI/CD systems.",
274
+ {
275
+ hidden: true,
276
+ runtime: true
277
+ },
137
278
  "GITLAB_CI",
138
279
  "The gitlab ci build ID. This value is set by certain CI/CD systems.",
280
+ {
281
+ hidden: true,
282
+ runtime: true
283
+ },
139
284
  "GOCD",
140
285
  "The go cd build ID. This value is set by certain CI/CD systems.",
286
+ {
287
+ hidden: true,
288
+ runtime: true
289
+ },
141
290
  "BUILDER_OUTPUT",
142
291
  "The builder output build ID. This value is set by certain CI/CD systems.",
292
+ {
293
+ hidden: true,
294
+ runtime: true
295
+ },
143
296
  "HARNESS_BUILD_ID",
144
297
  "The harness build ID. This value is set by certain CI/CD systems.",
298
+ {
299
+ hidden: true,
300
+ runtime: true
301
+ },
145
302
  "JENKINS_URL",
146
303
  "The jenkins url. This value is set by certain CI/CD systems.",
304
+ {
305
+ hidden: true,
306
+ runtime: true
307
+ },
147
308
  "LAYERCI",
148
309
  "The layerci build ID. This value is set by certain CI/CD systems.",
310
+ {
311
+ hidden: true,
312
+ runtime: true
313
+ },
149
314
  "MAGNUM",
150
315
  "The magnum build ID. This value is set by certain CI/CD systems.",
316
+ {
317
+ hidden: true,
318
+ runtime: true
319
+ },
151
320
  "NETLIFY",
152
321
  "The netlify build ID. This value is set by certain CI/CD systems.",
322
+ {
323
+ hidden: true,
324
+ runtime: true
325
+ },
153
326
  "NEVERCODE",
154
327
  "The nevercode build ID. This value is set by certain CI/CD systems.",
328
+ {
329
+ hidden: true,
330
+ runtime: true
331
+ },
155
332
  "PROW_JOB_ID",
156
333
  "The prow job ID. This value is set by certain CI/CD systems.",
334
+ {
335
+ hidden: true,
336
+ runtime: true
337
+ },
157
338
  "RELEASE_BUILD_ID",
158
339
  "The release build ID. This value is set by certain CI/CD systems.",
340
+ {
341
+ hidden: true,
342
+ runtime: true
343
+ },
159
344
  "RENDER",
160
345
  "The render build ID. This value is set by certain CI/CD systems.",
346
+ {
347
+ hidden: true,
348
+ runtime: true
349
+ },
161
350
  "SAILCI",
162
351
  "The sailci build ID. This value is set by certain CI/CD systems.",
352
+ {
353
+ hidden: true,
354
+ runtime: true
355
+ },
163
356
  "HUDSON",
164
357
  "The hudson build ID. This value is set by certain CI/CD systems.",
358
+ {
359
+ hidden: true,
360
+ runtime: true
361
+ },
165
362
  "SCREWDRIVER",
166
363
  "The screwdriver build ID. This value is set by certain CI/CD systems.",
364
+ {
365
+ hidden: true,
366
+ runtime: true
367
+ },
167
368
  "SEMAPHORE",
168
369
  "The semaphore build ID. This value is set by certain CI/CD systems.",
370
+ {
371
+ hidden: true,
372
+ runtime: true
373
+ },
169
374
  "SOURCEHUT",
170
375
  "The sourcehut build ID. This value is set by certain CI/CD systems.",
376
+ {
377
+ hidden: true,
378
+ runtime: true
379
+ },
171
380
  "SPACESHIP_CI",
172
381
  "The spaceship build ID. This value is set by certain CI/CD systems.",
382
+ {
383
+ hidden: true,
384
+ runtime: true
385
+ },
173
386
  "STRIDER",
174
387
  "The strider build ID. This value is set by certain CI/CD systems.",
388
+ {
389
+ hidden: true,
390
+ runtime: true
391
+ },
175
392
  "TASK_ID",
176
393
  "The task ID. This value is set by certain CI/CD systems.",
394
+ {
395
+ hidden: true,
396
+ runtime: true
397
+ },
177
398
  "TEAMCITY_VERSION",
178
399
  "The teamcity version. This value is set by certain CI/CD systems.",
400
+ {
401
+ hidden: true,
402
+ runtime: true
403
+ },
179
404
  "TRAVIS",
180
405
  "The travis build ID. This value is set by certain CI/CD systems.",
406
+ {
407
+ hidden: true,
408
+ runtime: true
409
+ },
181
410
  "VELA",
182
411
  "The vela build ID. This value is set by certain CI/CD systems.",
412
+ {
413
+ hidden: true,
414
+ runtime: true
415
+ },
183
416
  "NOW_BUILDER",
184
417
  "The now builder build ID. This value is set by certain CI/CD systems.",
418
+ {
419
+ hidden: true,
420
+ runtime: true
421
+ },
185
422
  "APPCENTER_BUILD_ID",
186
423
  "The appcenter build ID. This value is set by certain CI/CD systems.",
424
+ {
425
+ hidden: true,
426
+ runtime: true
427
+ },
187
428
  "CI_XCODE_PROJECT",
188
429
  "The xcode project build ID. This value is set by certain CI/CD systems.",
430
+ {
431
+ hidden: true,
432
+ runtime: true
433
+ },
189
434
  "XCS",
190
435
  "The xcode server build ID. This value is set by certain CI/CD systems.",
436
+ {
437
+ hidden: true,
438
+ runtime: true
439
+ },
191
440
  "DATA_DIR",
192
441
  "The application's runtime data directory.",
193
- { title: "Data Directory" },
442
+ {
443
+ runtime: true,
444
+ title: "Data Directory"
445
+ },
194
446
  "CONFIG_DIR",
195
447
  "The application's configuration data directory.",
196
- { title: "Configuration Directory" },
448
+ {
449
+ runtime: true,
450
+ title: "Configuration Directory"
451
+ },
197
452
  "CACHE_DIR",
198
453
  "The application's cached data directory.",
199
- { title: "Cache Directory" },
454
+ {
455
+ runtime: true,
456
+ title: "Cache Directory"
457
+ },
200
458
  "LOG_DIR",
201
459
  "The application's logging directory.",
202
- { title: "Log Directory" },
460
+ {
461
+ runtime: true,
462
+ title: "Log Directory"
463
+ },
203
464
  "TEMP_DIR",
204
465
  "The application's temporary data directory.",
205
- { title: "Temporary Directory" },
466
+ {
467
+ runtime: true,
468
+ title: "Temporary Directory"
469
+ },
206
470
  "LOCALAPPDATA",
207
471
  "A variable that specifies the current user's local application data directory on Windows.",
472
+ {
473
+ hidden: true,
474
+ runtime: true
475
+ },
208
476
  "APPDATA",
209
477
  "A variable that specifies the application data directory on Windows.",
478
+ {
479
+ hidden: true,
480
+ runtime: true
481
+ },
210
482
  "XDG_DATA_HOME",
211
483
  "A variable that specifies the data path in the home directory on Linux systems using the XDG base directory specification.",
484
+ {
485
+ hidden: true,
486
+ runtime: true
487
+ },
212
488
  "XDG_CONFIG_HOME",
213
489
  "A variable that specifies the configuration path in the home directory on Linux systems using the XDG base directory specification.",
490
+ {
491
+ hidden: true,
492
+ runtime: true
493
+ },
214
494
  "XDG_CACHE_HOME",
215
495
  "A variable that specifies the cache path in the home directory on Linux systems using the XDG base directory specification.",
496
+ {
497
+ hidden: true,
498
+ runtime: true
499
+ },
216
500
  "XDG_STATE_HOME",
217
501
  "A variable that specifies the state directory on Linux systems using the XDG base directory specification.",
502
+ {
503
+ hidden: true,
504
+ runtime: true
505
+ },
218
506
  "XDG_RUNTIME_DIR",
219
507
  "A variable that specifies the runtime directory on Linux systems using the XDG base directory specification.",
508
+ {
509
+ hidden: true,
510
+ runtime: true
511
+ },
220
512
  "DEVENV_RUNTIME",
221
513
  "A variable that specifies the [Devenv](https://devenv.sh/) runtime directory.",
514
+ {
515
+ hidden: true,
516
+ runtime: true
517
+ },
222
518
  "The base environment configuration used by Powerlines applications",
223
519
  "EnvInterface",
224
- "P&4!9?\"&4#9>$?%&4&9?'&4(9?)&4*9?+&4,9?-&4.9?/&40?1P.2.3.4J45>6?7P.8.9.:J4;><?=&4>><??)4@?A)4B?C)4D?E)4F?GP)'J4H?IP)'J4J?K&4L89?M&4N89?O&4P89?Q&4R89?S&4T89?U&4V89?W&4X89?Y)4Z89?[&4\\89?]&4^89?_&4`89?a)4b?c)4d?e&4f?gzh&4i>j?k&4l>m?nP.o.p.q.r,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Ý8zß&4à8zâ&4ã8zå&4æ8zè&4é8zë&4ì89?í&4î89?ï&4ð89?ñ&4ò89?ó&4ô89?õ&4ö89?÷&4ø89?ù&4ú8?ûM?üwýy"
520
+ "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µ&489?·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Ĝ8zĞ&4ğ8zġ&4Ģ8zĤ&4ĥ8zħ&4Ĩ8zĪ&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"
225
521
  ];
226
522
  const __ΩSecretsInterface = [
227
523
  "ENCRYPTION_KEY",
@@ -1 +1 @@
1
- {"version":3,"file":"runtime.mjs","names":[],"sources":["../../src/types/runtime.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\n/**\n * The base environment configuration used by Powerlines applications\n *\n * @remarks\n * This interface is used to define the environment variables, configuration options, and runtime settings used by applications. It is used to provide type safety, autocompletion, and default values for the environment variables. The comments of each variable are used to provide documentation descriptions when running the \\`powerlines docs\\` command.\n *\n * @categoryDescription Platform\n * The name of the platform the configuration parameter is intended for use in.\n *\n * @showCategories\n */\nexport interface EnvInterface {\n /**\n * The name of the application.\n *\n * @readonly\n * @category neutral\n */\n readonly APP_NAME: string;\n\n /**\n * The version of the application.\n *\n * @defaultValue \"1.0.0\"\n *\n * @readonly\n * @category neutral\n */\n readonly APP_VERSION: string;\n\n /**\n * The unique identifier for the build.\n *\n * @readonly\n * @category neutral\n */\n readonly BUILD_ID: string;\n\n /**\n * The timestamp the build was ran at.\n *\n * @readonly\n * @category neutral\n */\n readonly BUILD_TIMESTAMP: string;\n\n /**\n * A checksum hash created during the build.\n *\n * @readonly\n * @category neutral\n */\n readonly BUILD_CHECKSUM: string;\n\n /**\n * The unique identifier for the release.\n *\n * @readonly\n * @category neutral\n */\n readonly RELEASE_ID: string;\n\n /**\n * The tag for the release. This is generally in the format of \"\\<APP_NAME\\>\\@\\<APP_VERSION\\>\".\n *\n * @readonly\n * @category neutral\n */\n readonly RELEASE_TAG: string;\n\n /**\n * The name of the organization that maintains the application.\n *\n * @remarks\n * This variable is used to specify the name of the organization that maintains the application. If not provided in an environment, it will try to use the value in {@link @storm-software/config-tools/StormWorkspaceConfig#organization}.\n *\n * @alias ORG\n * @alias ORG_ID\n * @category neutral\n */\n ORGANIZATION: string;\n\n /**\n * The platform for which the application was built.\n *\n * @defaultValue \"neutral\"\n *\n * @category neutral\n */\n PLATFORM: \"node\" | \"neutral\" | \"browser\";\n\n /**\n * The mode in which the application is running.\n *\n * @defaultValue \"production\"\n *\n * @alias NODE_ENV\n * @alias ENV\n * @alias VERCEL_ENV\n *\n * @category neutral\n */\n MODE: \"development\" | \"test\" | \"production\";\n\n /**\n * The environment the application is running in. This value will be populated with the value of `MODE` if not provided.\n *\n * @defaultValue \"production\"\n *\n * @category neutral\n */\n ENVIRONMENT: string;\n\n /**\n * Indicates if the application is running in debug mode.\n *\n * @category neutral\n */\n DEBUG: boolean;\n\n /**\n * An indicator that specifies the current runtime is a test environment.\n *\n * @category neutral\n */\n TEST: boolean;\n\n /**\n * An indicator that specifies the current runtime is a minimal environment.\n *\n * @category node\n */\n MINIMAL: boolean;\n\n /**\n * An indicator that specifies the current runtime is a no color environment.\n *\n * @category node\n */\n NO_COLOR: boolean;\n\n /**\n * An indicator that specifies the current runtime is a force color environment.\n *\n * @category node\n */\n FORCE_COLOR: boolean | number;\n\n /**\n * An indicator that specifies the current runtime should force hyperlinks in terminal output.\n *\n * @remarks\n * This variable is used to force hyperlinks in terminal output, even if the terminal does not support them. This is useful for debugging and development purposes.\n\n * @category node\n */\n FORCE_HYPERLINK: boolean | number;\n\n /**\n * The name of the agent running the application. This variable is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category neutral\n */\n readonly AGENT_NAME?: string;\n\n /**\n * The color terminal type. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly COLORTERM?: string;\n\n /**\n * The terminal type. This variable is set by certain CI/CD systems.\n *\n * @remarks\n * This variable is used to specify the terminal type that the application is running in. It can be used to determine how to format output for the terminal.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERM?: string;\n\n /**\n * The terminal program name. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERM_PROGRAM?: string;\n\n /**\n * The terminal program version. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERM_PROGRAM_VERSION?: string;\n\n /**\n * The terminal emulator name. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERMINAL_EMULATOR?: string;\n\n /**\n * The terminal emulator session ID. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly WT_SESSION?: string;\n\n /**\n * An indicator that specifies the current terminal is running Terminus Sublime. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERMINUS_SUBLIME?: boolean;\n\n /**\n * The ConEmu task name. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly ConEmuTask?: string;\n\n /**\n * The cursor trace ID. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CURSOR_TRACE_ID?: string;\n\n /**\n * The VTE version. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly VTE_VERSION?: string;\n\n /**\n * Indicates if error stack traces should be captured.\n *\n * @category neutral\n */\n STACKTRACE: boolean;\n\n /**\n * Indicates if error data should be included.\n *\n * @category neutral\n */\n INCLUDE_ERROR_DATA: boolean;\n\n /**\n * A web page to lookup error messages and display additional information given an error code.\n *\n * @remarks\n * This variable is used to provide a URL to a page that can be used to look up error messages given an error code. This is used to provide a more user-friendly error message to the user.\n *\n * @title Error Details URL\n * @category neutral\n */\n ERROR_URL: string;\n\n /**\n * The default timezone for the application.\n *\n * @defaultValue \"America/New_York\"\n * @category neutral\n */\n DEFAULT_TIMEZONE: string;\n\n /**\n * The default locale to be used in the application.\n *\n * @defaultValue \"en_US\"\n * @category neutral\n */\n DEFAULT_LOCALE: string;\n\n /**\n * The default lowest log level to accept. If `null`, the logger will reject all records.\n *\n * @defaultValue \"info\"\n *\n * @category neutral\n */\n LOG_LEVEL?: \"error\" | \"warn\" | \"info\" | \"debug\" | null;\n\n /**\n * An indicator that specifies the current runtime is a continuous integration environment.\n *\n * @title Continuous Integration\n * @alias CONTINUOUS_INTEGRATION\n * @category neutral\n */\n CI: boolean;\n\n /**\n * The unique identifier for the current run. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly RUN_ID?: string;\n\n /**\n * The agola git reference. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly AGOLA_GIT_REF?: string;\n\n /**\n * The appcircle build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly AC_APPCIRCLE?: string;\n\n /**\n * The appveyor build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly APPVEYOR?: string;\n\n /**\n * The codebuild build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CODEBUILD?: string;\n\n /**\n * The task force build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TF_BUILD?: string;\n\n /**\n * The bamboo plan key. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly bamboo_planKey?: string;\n\n /**\n * The bitbucket commit. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BITBUCKET_COMMIT?: string;\n\n /**\n * The bitrise build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BITRISE_IO?: string;\n\n /**\n * The buddy workspace ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BUDDY_WORKSPACE_ID?: string;\n\n /**\n * The buildkite build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BUILDKITE?: string;\n\n /**\n * The circleci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CIRCLECI?: string;\n\n /**\n * The cirrus-ci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CIRRUS_CI?: string;\n\n /**\n * The cf build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CF_BUILD_ID?: string;\n\n /**\n * The cm build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CM_BUILD_ID?: string;\n\n /**\n * The ci name. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CI_NAME?: string;\n\n /**\n * The drone build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly DRONE?: string;\n\n /**\n * The dsari build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly DSARI?: string;\n\n /**\n * The earthly build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly EARTHLY_CI?: string;\n\n /**\n * The eas build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly EAS_BUILD?: string;\n\n /**\n * The gerrit project. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GERRIT_PROJECT?: string;\n\n /**\n * The gitea actions build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GITEA_ACTIONS?: string;\n\n /**\n * The github actions build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GITHUB_ACTIONS?: string;\n\n /**\n * The gitlab ci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GITLAB_CI?: string;\n\n /**\n * The go cd build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GOCD?: string;\n\n /**\n * The builder output build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BUILDER_OUTPUT?: string;\n\n /**\n * The harness build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly HARNESS_BUILD_ID?: string;\n\n /**\n * The jenkins url. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly JENKINS_URL?: string;\n\n /**\n * The layerci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly LAYERCI?: string;\n\n /**\n * The magnum build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly MAGNUM?: string;\n\n /**\n * The netlify build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly NETLIFY?: string;\n\n /**\n * The nevercode build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly NEVERCODE?: string;\n\n /**\n * The prow job ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly PROW_JOB_ID?: string;\n\n /**\n * The release build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly RELEASE_BUILD_ID?: string;\n\n /**\n * The render build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly RENDER?: string;\n\n /**\n * The sailci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SAILCI?: string;\n\n /**\n * The hudson build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly HUDSON?: string;\n\n /**\n * The screwdriver build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SCREWDRIVER?: string;\n\n /**\n * The semaphore build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SEMAPHORE?: string;\n\n /**\n * The sourcehut build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SOURCEHUT?: string;\n /**\n * The spaceship build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SPACESHIP_CI?: string;\n\n /**\n * The strider build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly STRIDER?: string;\n\n /**\n * The task ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TASK_ID?: string;\n\n /**\n * The teamcity version. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TEAMCITY_VERSION?: string;\n\n /**\n * The travis build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TRAVIS?: string;\n\n /**\n * The vela build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly VELA?: string;\n\n /**\n * The now builder build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly NOW_BUILDER?: string;\n\n /**\n * The appcenter build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly APPCENTER_BUILD_ID?: string;\n\n /**\n * The xcode project build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CI_XCODE_PROJECT?: string;\n\n /**\n * The xcode server build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XCS?: string;\n\n /**\n * The application's runtime data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local application data directory. This variable is used to set the \\`$storm.paths.data\\` property.\n *\n * @title Data Directory\n * @runtime\n * @category node\n */\n DATA_DIR?: string;\n\n /**\n * The application's configuration data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local application configuration directory. This variable is used to set the \\`$storm.paths.config\\` property.\n *\n * @title Configuration Directory\n * @runtime\n * @category node\n */\n CONFIG_DIR?: string;\n\n /**\n * The application's cached data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local cache data directory. This variable is used to set the \\`$storm.paths.cache\\` property.\n *\n * @title Cache Directory\n * @runtime\n * @category node\n */\n CACHE_DIR?: string;\n\n /**\n * The application's logging directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local application log directory. This variable is used to set the \\`$storm.paths.log\\` property.\n *\n * @title Log Directory\n * @runtime\n * @category node\n */\n LOG_DIR?: string;\n\n /**\n * The application's temporary data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local temporary data directory. This variable is used to set the \\`$storm.paths.temp\\` property.\n *\n * @title Temporary Directory\n * @runtime\n * @category node\n */\n TEMP_DIR?: string;\n\n /**\n * A variable that specifies the current user's local application data directory on Windows.\n *\n * @see https://www.advancedinstaller.com/appdata-localappdata-programdata.html\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \\`$storm.paths.data\\`, \\`$storm.paths.cache\\`, and \\`$storm.paths.log\\` properties.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly LOCALAPPDATA?: string;\n\n /**\n * A variable that specifies the application data directory on Windows.\n *\n * @see https://www.advancedinstaller.com/appdata-localappdata-programdata.html\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \\`$storm.paths.config\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly APPDATA?: string;\n\n /**\n * A variable that specifies the data path in the home directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \\`$storm.paths.data\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_DATA_HOME?: string;\n\n /**\n * A variable that specifies the configuration path in the home directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to configuration data that is specific to the current user. This variable can be used to set the \\`$storm.paths.config\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_CONFIG_HOME?: string;\n\n /**\n * A variable that specifies the cache path in the home directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to cache data that is specific to the current user. This variable can be used to set the \\`$storm.paths.cache\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_CACHE_HOME?: string;\n\n /**\n * A variable that specifies the state directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to application state data that is specific to the current user. This variable can be used to set the \\`$storm.paths.state\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_STATE_HOME?: string;\n\n /**\n * A variable that specifies the runtime directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to runtime data that is specific to the current user. This variable can be used to set the \\`$storm.paths.temp\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_RUNTIME_DIR?: string;\n\n /**\n * A variable that specifies the [Devenv](https://devenv.sh/) runtime directory.\n *\n * @see https://devenv.sh/files-and-variables/#devenv_dotfile\n * @see https://nixos.org/\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current [Nix](https://nixos.org/) environment. This variable can be used to set the \\`$storm.paths.temp\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n DEVENV_RUNTIME?: string;\n}\n\n/**\n * The base secrets configuration used by Powerlines applications\n *\n * @remarks\n * This interface is used to define the secret configuration options used by Powerlines applications. It is used to provide type safety, autocompletion, and default values for the environment variables. The comments of each variable are used to provide documentation descriptions when running the \\`storm docs\\` command. Since these are secrets, no default values should be provided and the values should be kept confidential (excluded from the client).\n */\nexport interface SecretsInterface {\n /**\n * The secret key used for encryption and decryption.\n *\n * @remarks\n * This variable is used to provide a secret key for encryption and decryption of sensitive data. It is important that this value is kept confidential and not exposed in client-side code or public repositories.\n *\n * @title Encryption Key\n */\n ENCRYPTION_KEY: string;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmBA,MAAM,sBAAkB;CAAA;CAAsB;CAAW,EAAA,OAAA,kBAAA;CAAA;CAAA;CAAA;CAAA"}
1
+ {"version":3,"file":"runtime.mjs","names":[],"sources":["../../src/types/runtime.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\n/**\n * The base environment configuration used by Powerlines applications\n *\n * @remarks\n * This interface is used to define the environment variables, configuration options, and runtime settings used by applications. It is used to provide type safety, autocompletion, and default values for the environment variables. The comments of each variable are used to provide documentation descriptions when running the \\`powerlines docs\\` command.\n *\n * @categoryDescription Platform\n * The name of the platform the configuration parameter is intended for use in.\n *\n * @showCategories\n */\nexport interface EnvInterface {\n /**\n * The name of the application.\n *\n * @readonly\n * @category neutral\n */\n readonly APP_NAME: string;\n\n /**\n * The version of the application.\n *\n * @defaultValue \"1.0.0\"\n *\n * @readonly\n * @category neutral\n */\n readonly APP_VERSION: string;\n\n /**\n * The unique identifier for the build.\n *\n * @readonly\n * @category neutral\n */\n readonly BUILD_ID: string;\n\n /**\n * The timestamp the build was ran at.\n *\n * @readonly\n * @category neutral\n */\n readonly BUILD_TIMESTAMP: string;\n\n /**\n * A checksum hash created during the build.\n *\n * @readonly\n * @category neutral\n */\n readonly BUILD_CHECKSUM: string;\n\n /**\n * The unique identifier for the release.\n *\n * @readonly\n * @category neutral\n */\n readonly RELEASE_ID: string;\n\n /**\n * The tag for the release. This is generally in the format of \"\\<APP_NAME\\>\\@\\<APP_VERSION\\>\".\n *\n * @readonly\n * @category neutral\n */\n readonly RELEASE_TAG: string;\n\n /**\n * The name of the organization that maintains the application.\n *\n * @remarks\n * This variable is used to specify the name of the organization that maintains the application. If not provided in an environment, it will try to use the value in {@link @storm-software/config-tools/StormWorkspaceConfig#organization}.\n *\n * @alias ORG\n * @alias ORG_ID\n * @category neutral\n */\n ORGANIZATION: string;\n\n /**\n * The platform for which the application was built.\n *\n * @defaultValue \"neutral\"\n *\n * @category neutral\n */\n PLATFORM: \"node\" | \"neutral\" | \"browser\";\n\n /**\n * The mode in which the application is running.\n *\n * @defaultValue \"production\"\n *\n * @alias NODE_ENV\n * @alias ENV\n * @alias VERCEL_ENV\n *\n * @category neutral\n */\n MODE: \"development\" | \"test\" | \"production\";\n\n /**\n * The environment the application is running in. This value will be populated with the value of `MODE` if not provided.\n *\n * @defaultValue \"production\"\n *\n * @category neutral\n */\n ENVIRONMENT: string;\n\n /**\n * Indicates if the application is running in debug mode.\n *\n * @category neutral\n */\n DEBUG: boolean;\n\n /**\n * An indicator that specifies the current runtime is a test environment.\n *\n * @category neutral\n */\n TEST: boolean;\n\n /**\n * An indicator that specifies the current runtime is a minimal environment.\n *\n * @category node\n */\n MINIMAL: boolean;\n\n /**\n * An indicator that specifies the current runtime is a no color environment.\n *\n * @category node\n */\n NO_COLOR: boolean;\n\n /**\n * An indicator that specifies the current runtime is a force color environment.\n *\n * @category node\n */\n FORCE_COLOR: boolean | number;\n\n /**\n * An indicator that specifies the current runtime should force hyperlinks in terminal output.\n *\n * @remarks\n * This variable is used to force hyperlinks in terminal output, even if the terminal does not support them. This is useful for debugging and development purposes.\n\n * @category node\n */\n FORCE_HYPERLINK: boolean | number;\n\n /**\n * The name of the agent running the application. This variable is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category neutral\n */\n readonly AGENT_NAME?: string;\n\n /**\n * The color terminal type. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly COLORTERM?: string;\n\n /**\n * The terminal type. This variable is set by certain CI/CD systems.\n *\n * @remarks\n * This variable is used to specify the terminal type that the application is running in. It can be used to determine how to format output for the terminal.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERM?: string;\n\n /**\n * The terminal program name. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERM_PROGRAM?: string;\n\n /**\n * The terminal program version. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERM_PROGRAM_VERSION?: string;\n\n /**\n * The terminal emulator name. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERMINAL_EMULATOR?: string;\n\n /**\n * The terminal emulator session ID. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly WT_SESSION?: string;\n\n /**\n * An indicator that specifies the current terminal is running Terminus Sublime. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TERMINUS_SUBLIME?: boolean;\n\n /**\n * The ConEmu task name. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly ConEmuTask?: string;\n\n /**\n * The cursor trace ID. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CURSOR_TRACE_ID?: string;\n\n /**\n * The VTE version. This variable is set by certain terminal emulators.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly VTE_VERSION?: string;\n\n /**\n * Indicates if error stack traces should be captured.\n *\n * @category neutral\n */\n STACKTRACE: boolean;\n\n /**\n * Indicates if error data should be included.\n *\n * @category neutral\n */\n INCLUDE_ERROR_DATA: boolean;\n\n /**\n * A web page to lookup error messages and display additional information given an error code.\n *\n * @remarks\n * This variable is used to provide a URL to a page that can be used to look up error messages given an error code. This is used to provide a more user-friendly error message to the user.\n *\n * @title Error Details URL\n * @category neutral\n */\n ERROR_URL: string;\n\n /**\n * The default timezone for the application.\n *\n * @defaultValue \"America/New_York\"\n * @category neutral\n */\n DEFAULT_TIMEZONE: string;\n\n /**\n * The default locale to be used in the application.\n *\n * @defaultValue \"en_US\"\n * @category neutral\n */\n DEFAULT_LOCALE: string;\n\n /**\n * The default lowest log level to accept. If `null`, the logger will reject all records.\n *\n * @defaultValue \"info\"\n *\n * @category neutral\n */\n LOG_LEVEL?: \"error\" | \"warn\" | \"info\" | \"debug\" | null;\n\n /**\n * An indicator that specifies the current runtime is a continuous integration environment.\n *\n * @title Continuous Integration\n * @alias CONTINUOUS_INTEGRATION\n * @category neutral\n */\n CI: boolean;\n\n /**\n * The unique identifier for the current run. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly RUN_ID?: string;\n\n /**\n * The agola git reference. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly AGOLA_GIT_REF?: string;\n\n /**\n * The appcircle build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly AC_APPCIRCLE?: string;\n\n /**\n * The appveyor build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly APPVEYOR?: string;\n\n /**\n * The codebuild build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CODEBUILD?: string;\n\n /**\n * The task force build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TF_BUILD?: string;\n\n /**\n * The bamboo plan key. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly bamboo_planKey?: string;\n\n /**\n * The bitbucket commit. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BITBUCKET_COMMIT?: string;\n\n /**\n * The bitrise build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BITRISE_IO?: string;\n\n /**\n * The buddy workspace ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BUDDY_WORKSPACE_ID?: string;\n\n /**\n * The buildkite build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BUILDKITE?: string;\n\n /**\n * The circleci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CIRCLECI?: string;\n\n /**\n * The cirrus-ci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CIRRUS_CI?: string;\n\n /**\n * The cf build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CF_BUILD_ID?: string;\n\n /**\n * The cm build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CM_BUILD_ID?: string;\n\n /**\n * The ci name. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CI_NAME?: string;\n\n /**\n * The drone build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly DRONE?: string;\n\n /**\n * The dsari build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly DSARI?: string;\n\n /**\n * The earthly build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly EARTHLY_CI?: string;\n\n /**\n * The eas build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly EAS_BUILD?: string;\n\n /**\n * The gerrit project. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GERRIT_PROJECT?: string;\n\n /**\n * The gitea actions build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GITEA_ACTIONS?: string;\n\n /**\n * The github actions build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GITHUB_ACTIONS?: string;\n\n /**\n * The gitlab ci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GITLAB_CI?: string;\n\n /**\n * The go cd build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly GOCD?: string;\n\n /**\n * The builder output build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly BUILDER_OUTPUT?: string;\n\n /**\n * The harness build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly HARNESS_BUILD_ID?: string;\n\n /**\n * The jenkins url. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly JENKINS_URL?: string;\n\n /**\n * The layerci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly LAYERCI?: string;\n\n /**\n * The magnum build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly MAGNUM?: string;\n\n /**\n * The netlify build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly NETLIFY?: string;\n\n /**\n * The nevercode build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly NEVERCODE?: string;\n\n /**\n * The prow job ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly PROW_JOB_ID?: string;\n\n /**\n * The release build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly RELEASE_BUILD_ID?: string;\n\n /**\n * The render build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly RENDER?: string;\n\n /**\n * The sailci build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SAILCI?: string;\n\n /**\n * The hudson build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly HUDSON?: string;\n\n /**\n * The screwdriver build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SCREWDRIVER?: string;\n\n /**\n * The semaphore build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SEMAPHORE?: string;\n\n /**\n * The sourcehut build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SOURCEHUT?: string;\n /**\n * The spaceship build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly SPACESHIP_CI?: string;\n\n /**\n * The strider build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly STRIDER?: string;\n\n /**\n * The task ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TASK_ID?: string;\n\n /**\n * The teamcity version. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TEAMCITY_VERSION?: string;\n\n /**\n * The travis build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly TRAVIS?: string;\n\n /**\n * The vela build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly VELA?: string;\n\n /**\n * The now builder build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly NOW_BUILDER?: string;\n\n /**\n * The appcenter build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly APPCENTER_BUILD_ID?: string;\n\n /**\n * The xcode project build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly CI_XCODE_PROJECT?: string;\n\n /**\n * The xcode server build ID. This value is set by certain CI/CD systems.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XCS?: string;\n\n /**\n * The application's runtime data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local application data directory. This variable is used to set the \\`$storm.paths.data\\` property.\n *\n * @title Data Directory\n * @runtime\n * @category node\n */\n DATA_DIR?: string;\n\n /**\n * The application's configuration data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local application configuration directory. This variable is used to set the \\`$storm.paths.config\\` property.\n *\n * @title Configuration Directory\n * @runtime\n * @category node\n */\n CONFIG_DIR?: string;\n\n /**\n * The application's cached data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local cache data directory. This variable is used to set the \\`$storm.paths.cache\\` property.\n *\n * @title Cache Directory\n * @runtime\n * @category node\n */\n CACHE_DIR?: string;\n\n /**\n * The application's logging directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local application log directory. This variable is used to set the \\`$storm.paths.log\\` property.\n *\n * @title Log Directory\n * @runtime\n * @category node\n */\n LOG_DIR?: string;\n\n /**\n * The application's temporary data directory.\n *\n * @remarks\n * This variable is used to override the base path of the system's local temporary data directory. This variable is used to set the \\`$storm.paths.temp\\` property.\n *\n * @title Temporary Directory\n * @runtime\n * @category node\n */\n TEMP_DIR?: string;\n\n /**\n * A variable that specifies the current user's local application data directory on Windows.\n *\n * @see https://www.advancedinstaller.com/appdata-localappdata-programdata.html\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \\`$storm.paths.data\\`, \\`$storm.paths.cache\\`, and \\`$storm.paths.log\\` properties.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly LOCALAPPDATA?: string;\n\n /**\n * A variable that specifies the application data directory on Windows.\n *\n * @see https://www.advancedinstaller.com/appdata-localappdata-programdata.html\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \\`$storm.paths.config\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly APPDATA?: string;\n\n /**\n * A variable that specifies the data path in the home directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \\`$storm.paths.data\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_DATA_HOME?: string;\n\n /**\n * A variable that specifies the configuration path in the home directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to configuration data that is specific to the current user. This variable can be used to set the \\`$storm.paths.config\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_CONFIG_HOME?: string;\n\n /**\n * A variable that specifies the cache path in the home directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to cache data that is specific to the current user. This variable can be used to set the \\`$storm.paths.cache\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_CACHE_HOME?: string;\n\n /**\n * A variable that specifies the state directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to application state data that is specific to the current user. This variable can be used to set the \\`$storm.paths.state\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_STATE_HOME?: string;\n\n /**\n * A variable that specifies the runtime directory on Linux systems using the XDG base directory specification.\n *\n * @see https://gist.github.com/roalcantara/107ba66dfa3b9d023ac9329e639bc58c\n *\n * @remarks\n * This variable is used to specify a path to runtime data that is specific to the current user. This variable can be used to set the \\`$storm.paths.temp\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n readonly XDG_RUNTIME_DIR?: string;\n\n /**\n * A variable that specifies the [Devenv](https://devenv.sh/) runtime directory.\n *\n * @see https://devenv.sh/files-and-variables/#devenv_dotfile\n * @see https://nixos.org/\n *\n * @remarks\n * This variable is used to specify a path to application data that is specific to the current [Nix](https://nixos.org/) environment. This variable can be used to set the \\`$storm.paths.temp\\` property.\n *\n * @readonly\n * @runtime\n * @hidden\n * @category node\n */\n DEVENV_RUNTIME?: string;\n}\n\n/**\n * The base secrets configuration used by Powerlines applications\n *\n * @remarks\n * This interface is used to define the secret configuration options used by Powerlines applications. It is used to provide type safety, autocompletion, and default values for the environment variables. The comments of each variable are used to provide documentation descriptions when running the \\`storm docs\\` command. Since these are secrets, no default values should be provided and the values should be kept confidential (excluded from the client).\n */\nexport interface SecretsInterface {\n /**\n * The secret key used for encryption and decryption.\n *\n * @remarks\n * This variable is used to provide a secret key for encryption and decryption of sensitive data. It is important that this value is kept confidential and not exposed in client-side code or public repositories.\n *\n * @title Encryption Key\n */\n ENCRYPTION_KEY: string;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmBA,MAAM,sBAAkB;CAAA;CAAsB;CAAW,EAAA,OAAA,kBAAA;CAAA;CAAA;CAAA;CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-env",
3
- "version": "0.16.120",
3
+ "version": "0.16.122",
4
4
  "private": false,
5
5
  "description": "A package containing a Powerlines plugin for injecting static .env configuration values to the code so that they're accessible at runtime.",
6
6
  "keywords": ["dotenv", "powerlines", "storm-software", "powerlines-plugin"],
@@ -306,12 +306,12 @@
306
306
  "@alloy-js/typescript": "0.23.0-dev.4",
307
307
  "@babel/core": "^7.29.0",
308
308
  "@babel/types": "^7.29.0",
309
- "@powerlines/plugin-alloy": "^0.26.14",
310
- "@powerlines/plugin-automd": "^0.1.395",
311
- "@powerlines/plugin-babel": "^0.12.391",
312
- "@powerlines/plugin-plugin": "^0.12.346",
313
- "@powerlines/deepkit": "^0.7.8",
314
- "@powerlines/plugin-deepkit": "^0.11.276",
309
+ "@powerlines/plugin-alloy": "^0.26.16",
310
+ "@powerlines/plugin-automd": "^0.1.397",
311
+ "@powerlines/plugin-babel": "^0.12.393",
312
+ "@powerlines/plugin-plugin": "^0.12.348",
313
+ "@powerlines/deepkit": "^0.8.1",
314
+ "@powerlines/plugin-deepkit": "^0.11.278",
315
315
  "@storm-software/config-tools": "^1.189.75",
316
316
  "@stryke/capnp": "^0.12.92",
317
317
  "@stryke/convert": "^0.6.58",
@@ -325,10 +325,10 @@
325
325
  "@stryke/types": "^0.11.3",
326
326
  "automd": "^0.4.3",
327
327
  "defu": "^6.1.7",
328
- "powerlines": "^0.42.36",
328
+ "powerlines": "^0.42.38",
329
329
  "c12": "^3.3.4"
330
330
  },
331
331
  "devDependencies": { "@types/node": "^25.6.0", "vite": "^8.0.8" },
332
332
  "publishConfig": { "access": "public" },
333
- "gitHead": "ebb3c7faf787b60313824df7d801ea077abe23b1"
333
+ "gitHead": "9cec72510580fd8ee2cafc64ccae8ca65e7746a4"
334
334
  }