@tangle-network/agent-interface 2.1.0 → 2.1.1

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.
@@ -183,9 +183,11 @@ export const agentCandidateMaterializationReceiptSchema = z
183
183
  ],
184
184
  [
185
185
  JSON.stringify(plan.profile.mountPaths) ===
186
- JSON.stringify(receipt.profileActivation.profilePlan.material.files.map((file) => file.relPath)),
186
+ JSON.stringify(receipt.profileActivation.profilePlan.material.files
187
+ .filter((file) => file.root === undefined)
188
+ .map((file) => file.relPath)),
187
189
  ["executionPlan", "material", "profile", "mountPaths"],
188
- "execution plan must bind every profile mount path",
190
+ "execution plan must bind every workspace profile mount path",
189
191
  ],
190
192
  [
191
193
  receipt.codeKind === plan.codeKind,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-interface",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",