@virtuals-protocol/acp-node 0.3.0-beta.32 → 0.3.0-beta.33

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/index.js CHANGED
@@ -35,7 +35,7 @@ var require_package = __commonJS({
35
35
  "package.json"(exports2, module2) {
36
36
  module2.exports = {
37
37
  name: "@virtuals-protocol/acp-node",
38
- version: "0.3.0-beta.32",
38
+ version: "0.3.0-beta.33",
39
39
  main: "./dist/index.js",
40
40
  module: "./dist/index.mjs",
41
41
  types: "./dist/index.d.ts",
@@ -4310,7 +4310,7 @@ var AcpJob = class {
4310
4310
  return this._deliverable;
4311
4311
  }
4312
4312
  const deliverable = await this.acpClient.getMemoContent(this._deliverable);
4313
- return tryParseJson(deliverable);
4313
+ return tryParseJson(deliverable) || deliverable;
4314
4314
  }
4315
4315
  async createRequirement(content) {
4316
4316
  const operations = [];
package/dist/index.mjs CHANGED
@@ -8,7 +8,7 @@ var require_package = __commonJS({
8
8
  "package.json"(exports, module) {
9
9
  module.exports = {
10
10
  name: "@virtuals-protocol/acp-node",
11
- version: "0.3.0-beta.32",
11
+ version: "0.3.0-beta.33",
12
12
  main: "./dist/index.js",
13
13
  module: "./dist/index.mjs",
14
14
  types: "./dist/index.d.ts",
@@ -4287,7 +4287,7 @@ var AcpJob = class {
4287
4287
  return this._deliverable;
4288
4288
  }
4289
4289
  const deliverable = await this.acpClient.getMemoContent(this._deliverable);
4290
- return tryParseJson(deliverable);
4290
+ return tryParseJson(deliverable) || deliverable;
4291
4291
  }
4292
4292
  async createRequirement(content) {
4293
4293
  const operations = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@virtuals-protocol/acp-node",
3
- "version": "0.3.0-beta.32",
3
+ "version": "0.3.0-beta.33",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",