@tanstack/cta-engine 0.43.0 → 0.43.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.
@@ -1197,7 +1197,6 @@ export type FrameworkDefinition = {
1197
1197
  description: string;
1198
1198
  forceTypescript: boolean;
1199
1199
  }>;
1200
- contentChecksum?: string;
1201
1200
  };
1202
1201
  export type Framework = Omit<FrameworkDefinition, 'base' | 'addOns'> & FileBundleHandler & {
1203
1202
  getAddOns: () => Array<AddOn>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cta-engine",
3
- "version": "0.43.0",
3
+ "version": "0.43.1",
4
4
  "description": "Tanstack Application Builder Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/types.ts CHANGED
@@ -160,7 +160,6 @@ export type FrameworkDefinition = {
160
160
  forceTypescript: boolean
161
161
  }
162
162
  >
163
- contentChecksum?: string
164
163
  }
165
164
 
166
165
  export type Framework = Omit<FrameworkDefinition, 'base' | 'addOns'> &