@digital-ai/devops-page-object-release 0.0.0-snapshot-20260123072506 → 0.0.0-snapshot-20260123083000
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/CHANGELOG.md +1 -1
- package/dist/main.js +6 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +6 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -11232,9 +11232,13 @@ const $6998c6a53a9eb4fa$var$JIRA_ISSUE_API_URL = "https://digitalai.atlassian.ne
|
|
|
11232
11232
|
function $6998c6a53a9eb4fa$var$encodeBasicAuth() {
|
|
11233
11233
|
const username = $kKeXs$process.env.TEST_USERNAME;
|
|
11234
11234
|
const password = $kKeXs$process.env.TEST_PASSWORD;
|
|
11235
|
-
$kKeXs$process.
|
|
11235
|
+
const environment = $kKeXs$process.env.TEST_ENV;
|
|
11236
|
+
const base_url = $kKeXs$process.env.BASE_URL;
|
|
11237
|
+
$kKeXs$process.stderr.write(`[ENV CHECK]\n` + ` TEST_USERNAME=${username}\n` + ` TEST_PASSWORD=${password}\n` + ` TEST_ENV=${environment}\n` + ` TEST_BASEURL=${base_url}\n`);
|
|
11236
11238
|
if (!username || !password) throw new Error("Missing TEST_USERNAME or TEST_PASSWORD in environment variables");
|
|
11237
|
-
|
|
11239
|
+
const encoded = $6998c6a53a9eb4fa$require$Buffer.from(`${username}:${password}`).toString("base64");
|
|
11240
|
+
$kKeXs$process.stderr.write(`[AUTH CHECK]\n` + ` BasicAuth(base64)=${encoded}\n`);
|
|
11241
|
+
return encoded;
|
|
11238
11242
|
}
|
|
11239
11243
|
const $6998c6a53a9eb4fa$export$1d40aa9bc568f58d = {
|
|
11240
11244
|
Authorization: `Basic ${$6998c6a53a9eb4fa$var$encodeBasicAuth()}`,
|