@uniformdev/mesh-edgehancer-sdk 20.71.2-alpha.7 → 20.72.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.
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +3 -3
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.
|
|
3
|
+
"version": "20.72.1",
|
|
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.
|
|
50
|
+
"@uniformdev/canvas": "20.72.1",
|
|
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": "
|
|
63
|
+
"gitHead": "bff8f45027258b16690597b05c88e148f2ffde96"
|
|
64
64
|
}
|