@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 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
@@ -388,6 +388,10 @@
388
388
  "type": "string",
389
389
  "description": "Unique identifier for the component"
390
390
  },
391
+ "name": {
392
+ "type": "string",
393
+ "description": "Name of the component"
394
+ },
391
395
  "options": {
392
396
  "type": "array",
393
397
  "items": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",