@uniformdev/mesh-edgehancer-sdk 20.71.2-alpha.14 → 20.71.2-alpha.18

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.d.mts CHANGED
@@ -274,6 +274,12 @@ type CollectedBinding = {
274
274
  locale: string | undefined;
275
275
  /** Condition index, or -1 for the default (non-conditional) value. */
276
276
  conditionIndex: number;
277
+ /**
278
+ * True when this binding is a `$loop`'s source (its `connectedData`).
279
+ * Loop sources are not a "used value", they create a container to use values from.
280
+ * This makes them a special case for some consumers, such as projection, where only used values are considered.
281
+ */
282
+ isLoopSource?: boolean;
277
283
  };
278
284
  type RequestEdgehancerDataResourceContext = {
279
285
  /**
package/dist/index.d.ts CHANGED
@@ -274,6 +274,12 @@ type CollectedBinding = {
274
274
  locale: string | undefined;
275
275
  /** Condition index, or -1 for the default (non-conditional) value. */
276
276
  conditionIndex: number;
277
+ /**
278
+ * True when this binding is a `$loop`'s source (its `connectedData`).
279
+ * Loop sources are not a "used value", they create a container to use values from.
280
+ * This makes them a special case for some consumers, such as projection, where only used values are considered.
281
+ */
282
+ isLoopSource?: boolean;
277
283
  };
278
284
  type RequestEdgehancerDataResourceContext = {
279
285
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-edgehancer-sdk",
3
- "version": "20.71.2-alpha.14+e527b409ae",
3
+ "version": "20.71.2-alpha.18+36514ab1d4",
4
4
  "description": "Uniform Mesh Edgehancer SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -47,7 +47,7 @@
47
47
  "/dist"
48
48
  ],
49
49
  "dependencies": {
50
- "@uniformdev/canvas": "20.71.2-alpha.14+e527b409ae",
50
+ "@uniformdev/canvas": "20.71.2-alpha.18+36514ab1d4",
51
51
  "tsafe": "1.8.12",
52
52
  "zod": "^4.4.3"
53
53
  },
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "e527b409ae4d2b190d4f9195e6787f5c8b89fc85"
63
+ "gitHead": "36514ab1d4273d0ea8c146d24f4e42744b1d9416"
64
64
  }