ugcinc 3.80.0 → 3.82.0
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/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1596,6 +1596,8 @@ export interface DestructureSelection {
|
|
|
1596
1596
|
portId: string;
|
|
1597
1597
|
/** Index expression: single index "0", comma-separated "0, 2, 4", ranges "0-3", or mixed "0, 2-4, 7" */
|
|
1598
1598
|
indexExpr: string;
|
|
1599
|
+
/** Optional property path to extract from selected items (e.g., "messages", "data.items") */
|
|
1600
|
+
propertyPath?: string;
|
|
1599
1601
|
/** If true, read indexExpr from input port (idx-{portId}) instead of using static value */
|
|
1600
1602
|
isVariable?: boolean;
|
|
1601
1603
|
}
|