@epilot/app-client 0.0.6 → 0.0.7
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 +3 -9
- package/dist/openapi.json +1 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -148,10 +148,7 @@ declare namespace Components {
|
|
|
148
148
|
* Unique identifier for the component
|
|
149
149
|
*/
|
|
150
150
|
id: string;
|
|
151
|
-
|
|
152
|
-
* Name of the component
|
|
153
|
-
*/
|
|
154
|
-
name?: string;
|
|
151
|
+
name?: TranslatedString;
|
|
155
152
|
/**
|
|
156
153
|
* List of options for the app component
|
|
157
154
|
*/
|
|
@@ -164,10 +161,7 @@ declare namespace Components {
|
|
|
164
161
|
* Unique identifier for the component
|
|
165
162
|
*/
|
|
166
163
|
id: string;
|
|
167
|
-
|
|
168
|
-
* Name of the component
|
|
169
|
-
*/
|
|
170
|
-
name?: string;
|
|
164
|
+
name?: TranslatedString;
|
|
171
165
|
/**
|
|
172
166
|
* List of options for the app component
|
|
173
167
|
*/
|
|
@@ -181,7 +175,7 @@ declare namespace Components {
|
|
|
181
175
|
/**
|
|
182
176
|
* Name of the component
|
|
183
177
|
*/
|
|
184
|
-
name?:
|
|
178
|
+
name?: TranslatedString;
|
|
185
179
|
/**
|
|
186
180
|
* List of options for the app component
|
|
187
181
|
*/
|
package/dist/openapi.json
CHANGED