@frontstackdev/cli 0.0.0-canary-20250414105431 → 0.0.0-canary-20250414120818

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.
@@ -133,19 +133,18 @@ declare global {
133
133
  export type Aggregation = components["schemas"]["_aggregation"][string]["total"];
134
134
  }
135
135
 
136
- {{!-- Provide global types for all project meta fields.
137
- TODO: Generate these types straight from the project config --}}
136
+ {{!-- Export all composites and enums --}}
138
137
  declare global {
139
- export type Media = components['schemas']['Media']
140
- export type Price = components['schemas']['Price']
141
- export type PriceScale = components['schemas']['PriceScale']
142
- export type Seo = components['schemas']['Seo']
143
- export type Vendor = components['schemas']['Vendor']
144
- export type Weight = components['schemas']['Weight']
145
- export type Option = components['schemas']['Option']
146
- export type Swatch = components['schemas']['Swatch']
147
- export type Availability = components['schemas']['Availability']
148
- export type StockLevel = components['schemas']['StockLevel']
138
+ {{#each components.schemas}}
139
+ {{#if (contains tags "composites")}}
140
+ export type {{@key}} = components['schemas']['{{@key}}']
141
+ {{/if}}
142
+ {{/each}}
143
+ {{#each components.schemas}}
144
+ {{#if (contains tags "enums")}}
145
+ export type {{@key}} = components['schemas']['{{@key}}']
146
+ {{/if}}
147
+ {{/each}}
149
148
  }
150
149
 
151
150
  declare global {
package/dist/version CHANGED
@@ -1 +1 @@
1
- 0.0.0-canary-20250414105431
1
+ 0.0.0-canary-20250414120818
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontstackdev/cli",
3
- "version": "0.0.0-canary-20250414105431",
3
+ "version": "0.0.0-canary-20250414120818",
4
4
  "description": "frontstack CLI for managing projects",
5
5
  "type": "module",
6
6
  "module": "dist/frontstack.mjs",