@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
|
-
{{!--
|
|
137
|
-
TODO: Generate these types straight from the project config --}}
|
|
136
|
+
{{!-- Export all composites and enums --}}
|
|
138
137
|
declare global {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
export type
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
export type
|
|
147
|
-
|
|
148
|
-
|
|
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-
|
|
1
|
+
0.0.0-canary-20250414120818
|