nucleus-core-ts 0.9.798 → 0.9.799

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.
@@ -85,6 +85,12 @@ export const { useStore: useIntegrationsStore } = createStore(initial, {
85
85
  // A plan belongs to the mapping it was computed for. Showing it against a
86
86
  // different one would have an operator approve counts from another import.
87
87
  store.plan = null;
88
+ // And so does a RUN, which says something stronger than a plan does: that
89
+ // this import happened. Seen live — the Ünvanlar run stayed on screen
90
+ // under a header reading "Writes into locations", for a mapping that had
91
+ // never been run at all.
92
+ store.activeRunId = null;
93
+ store.progress = null;
88
94
  }),
89
95
  setRuns: (store)=>(items, total)=>batch(()=>{
90
96
  store.runs = items;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nucleus-core-ts",
3
- "version": "0.9.798",
3
+ "version": "0.9.799",
4
4
  "description": "Production-ready, enterprise-grade TypeScript framework for building multi-tenant APIs",
5
5
  "author": "Hidayet Can Özcan <hidayetcan@gmail.com>",
6
6
  "license": "SEE LICENSE IN LICENSE",