@digital-ai/devops-page-object-release 0.0.0-snapshot-20260123073622 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
- ## 0.0.0-snapshot-20260123073622
3
+ ## 0.0.0-snapshot-20260123083000
4
4
 
5
5
  ### Patch Changes
6
6
 
package/dist/main.js CHANGED
@@ -11234,9 +11234,11 @@ function $6998c6a53a9eb4fa$var$encodeBasicAuth() {
11234
11234
  const password = $kKeXs$process.env.TEST_PASSWORD;
11235
11235
  const environment = $kKeXs$process.env.TEST_ENV;
11236
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_USERNAME=${base_url}\n`);
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`);
11238
11238
  if (!username || !password) throw new Error("Missing TEST_USERNAME or TEST_PASSWORD in environment variables");
11239
- return $6998c6a53a9eb4fa$require$Buffer.from(`${username}:${password}`).toString("base64");
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;
11240
11242
  }
11241
11243
  const $6998c6a53a9eb4fa$export$1d40aa9bc568f58d = {
11242
11244
  Authorization: `Basic ${$6998c6a53a9eb4fa$var$encodeBasicAuth()}`,