@bluecopa/react 0.1.81 → 0.1.83

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.
@@ -12,6 +12,13 @@ export declare function useRunPublishedDefinition(options?: {}): UseMutationResu
12
12
  };
13
13
  variable: string;
14
14
  inputs: object;
15
+ /**
16
+ * Pre-fetched solution bindings map. Fetch once via
17
+ * `copaUtils.fetchSolutionBindings()` on app/context load and forward
18
+ * here on every call. When omitted/empty, the BFF skips hydration and
19
+ * falls through to the original `published/run` pass-through.
20
+ */
21
+ solutionBindings?: Record<string, unknown>;
15
22
  source?: any;
16
23
  }>;
17
24
  //# sourceMappingURL=useRunPublishedDefinition.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useRunPublishedDefinition.d.ts","sourceRoot":"","sources":["../../src/hooks/useRunPublishedDefinition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,KAAK,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAG5E;;;;GAIG;AACH,wBAAgB,yBAAyB,CACvC,OAAO,KAAK,GACX,iBAAiB,CAClB,GAAG,EACH,KAAK,EACL;IACE,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAA;KAAE,CAAC;IAChD,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,GAAG,CAAC;CACd,CACF,CAaA"}
1
+ {"version":3,"file":"useRunPublishedDefinition.d.ts","sourceRoot":"","sources":["../../src/hooks/useRunPublishedDefinition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,KAAK,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAG5E;;;;GAIG;AACH,wBAAgB,yBAAyB,CACvC,OAAO,KAAK,GACX,iBAAiB,CAClB,GAAG,EACH,KAAK,EACL;IACE,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAA;KAAE,CAAC;IAChD,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf;;;;;OAKG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC3C,MAAM,CAAC,EAAE,GAAG,CAAC;CACd,CACF,CAcA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluecopa/react",
3
- "version": "0.1.81",
3
+ "version": "0.1.83",
4
4
  "description": "Bluecopa react library with TanStack Query integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.es.js",
@@ -27,7 +27,7 @@
27
27
  "react-dom": ">=18.0.0"
28
28
  },
29
29
  "dependencies": {
30
- "@bluecopa/core": "0.1.78",
30
+ "@bluecopa/core": "0.1.83",
31
31
  "@tanstack/react-query": "5.59.0",
32
32
  "@tanstack/react-query-devtools": "5.59.0"
33
33
  },