@epilot/app-client 0.0.4 → 0.0.5
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.
- package/dist/openapi.d.ts +12 -0
- package/dist/openapi.json +4 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -151,6 +151,10 @@ declare namespace Components {
|
|
|
151
151
|
* Unique identifier for the component
|
|
152
152
|
*/
|
|
153
153
|
id: string;
|
|
154
|
+
/**
|
|
155
|
+
* Name of the component
|
|
156
|
+
*/
|
|
157
|
+
name?: string;
|
|
154
158
|
/**
|
|
155
159
|
* List of options for the app component
|
|
156
160
|
*/
|
|
@@ -163,6 +167,10 @@ declare namespace Components {
|
|
|
163
167
|
* Unique identifier for the component
|
|
164
168
|
*/
|
|
165
169
|
id: string;
|
|
170
|
+
/**
|
|
171
|
+
* Name of the component
|
|
172
|
+
*/
|
|
173
|
+
name?: string;
|
|
166
174
|
/**
|
|
167
175
|
* List of options for the app component
|
|
168
176
|
*/
|
|
@@ -173,6 +181,10 @@ declare namespace Components {
|
|
|
173
181
|
* Unique identifier for the component
|
|
174
182
|
*/
|
|
175
183
|
id: string;
|
|
184
|
+
/**
|
|
185
|
+
* Name of the component
|
|
186
|
+
*/
|
|
187
|
+
name?: string;
|
|
176
188
|
/**
|
|
177
189
|
* List of options for the app component
|
|
178
190
|
*/
|
package/dist/openapi.json
CHANGED