@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 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?: string;
178
+ name?: TranslatedString;
185
179
  /**
186
180
  * List of options for the app component
187
181
  */
package/dist/openapi.json CHANGED
@@ -389,7 +389,7 @@
389
389
  "description": "Unique identifier for the component"
390
390
  },
391
391
  "name": {
392
- "type": "string",
392
+ "$ref": "#/components/schemas/TranslatedString",
393
393
  "description": "Name of the component"
394
394
  },
395
395
  "options": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",