bdy 1.9.55-dev → 1.9.57-dev

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bdy",
3
3
  "preferGlobal": false,
4
- "version": "1.9.55-dev",
4
+ "version": "1.9.57-dev",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -45,7 +45,7 @@ function setCiAndCommitInfo(ciInfo) {
45
45
  exports.invokerId = ciInfo.invokerId;
46
46
  exports.pipelineName = ciInfo.pipelineName;
47
47
  }
48
- if (ciInfo.ci === ciInfo_js_1.CI.GITHUB_ACTION || ciInfo.ci === ciInfo_js_1.CI.CIRCLE_CI) {
48
+ if (ciInfo.ci !== ciInfo_js_1.CI.NONE) {
49
49
  exports.executionUrl = ciInfo.executionUrl;
50
50
  }
51
51
  }
@@ -107,7 +107,7 @@ async function getSnapshotWithResources(snapshot) {
107
107
  if (context_js_1.debug) {
108
108
  output_1.default.normal(`Collected resources for snapshot: ${snapshot.name}`);
109
109
  for (const resource of resources) {
110
- output_1.default.normal(`- url: ${resource.url} status: ${resource.status} headers: ${JSON.stringify(resource.headers)} duplicate: ${resource.duplicate}`);
110
+ output_1.default.normal(`- url: ${resource.url} status: ${resource.status} headers: ${JSON.stringify(resource.headers)} duplicate: ${resource.duplicate} hasBody: ${!!resource.body} bodySize: ${typeof resource.body === 'string' ? resource.body.length : resource.body?.size}`);
111
111
  }
112
112
  }
113
113
  return {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bdy",
3
3
  "preferGlobal": false,
4
- "version": "1.9.55-dev",
4
+ "version": "1.9.57-dev",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
7
7
  "scripts": {