@powerlines/plugin-env 0.16.121 → 0.16.123
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.
- package/dist/babel/plugin.cjs +1 -11
- package/dist/babel/plugin.d.cts.map +1 -1
- package/dist/babel/plugin.d.mts.map +1 -1
- package/dist/babel/plugin.mjs +1 -11
- package/dist/babel/plugin.mjs.map +1 -1
- package/dist/components/docs.cjs +44 -4
- package/dist/components/docs.mjs +43 -4
- package/dist/components/docs.mjs.map +1 -1
- package/dist/components/env-builtin.cjs +299 -53
- package/dist/components/env-builtin.d.cts.map +1 -1
- package/dist/components/env-builtin.d.mts.map +1 -1
- package/dist/components/env-builtin.mjs +301 -56
- package/dist/components/env-builtin.mjs.map +1 -1
- package/dist/components/index.cjs +3 -1
- package/dist/components/index.mjs +3 -3
- package/dist/helpers/load.cjs +1 -1
- package/dist/helpers/persistence.cjs +1 -1
- package/dist/index.cjs +77 -32
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +76 -31
- package/dist/index.mjs.map +1 -1
- package/dist/types/plugin.cjs +1 -1
- package/dist/types/plugin.d.cts +6 -6
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +6 -6
- package/dist/types/plugin.d.mts.map +1 -1
- package/dist/types/plugin.mjs +1 -1
- package/dist/types/plugin.mjs.map +1 -1
- package/dist/types/runtime.cjs +303 -7
- package/dist/types/runtime.mjs +303 -7
- package/dist/types/runtime.mjs.map +1 -1
- package/package.json +10 -10
package/dist/types/runtime.cjs
CHANGED
|
@@ -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
|
-
{
|
|
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
|
-
{
|
|
444
|
+
{
|
|
445
|
+
runtime: true,
|
|
446
|
+
title: "Data Directory"
|
|
447
|
+
},
|
|
196
448
|
"CONFIG_DIR",
|
|
197
449
|
"The application's configuration data directory.",
|
|
198
|
-
{
|
|
450
|
+
{
|
|
451
|
+
runtime: true,
|
|
452
|
+
title: "Configuration Directory"
|
|
453
|
+
},
|
|
199
454
|
"CACHE_DIR",
|
|
200
455
|
"The application's cached data directory.",
|
|
201
|
-
{
|
|
456
|
+
{
|
|
457
|
+
runtime: true,
|
|
458
|
+
title: "Cache Directory"
|
|
459
|
+
},
|
|
202
460
|
"LOG_DIR",
|
|
203
461
|
"The application's logging directory.",
|
|
204
|
-
{
|
|
462
|
+
{
|
|
463
|
+
runtime: true,
|
|
464
|
+
title: "Log Directory"
|
|
465
|
+
},
|
|
205
466
|
"TEMP_DIR",
|
|
206
467
|
"The application's temporary data directory.",
|
|
207
|
-
{
|
|
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?
|
|
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.|.}.~.,J48>?)4?z
&489?z&489?z&489?z&489?z&489?z&489?z&489?z&489?z&489?z\xA0&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ē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"
|
|
227
523
|
];
|
|
228
524
|
const __ΩSecretsInterface = [
|
|
229
525
|
"ENCRYPTION_KEY",
|