@epilot/app-client 0.0.3 → 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 +13 -1
- package/dist/openapi.json +5 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -151,18 +151,26 @@ 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
|
*/
|
|
157
161
|
options?: /* Options for the component configuration */ Options[];
|
|
158
162
|
} | {
|
|
159
|
-
component_type
|
|
163
|
+
component_type: "PORTAL_EXTENSION";
|
|
160
164
|
origin?: "END_CUSTOMER_PORTAL" | "INSTALLER_PORTAL";
|
|
161
165
|
configuration: PortalExtensionConfig;
|
|
162
166
|
/**
|
|
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": {
|
|
@@ -425,7 +429,7 @@
|
|
|
425
429
|
{
|
|
426
430
|
"type": "object",
|
|
427
431
|
"required": [
|
|
428
|
-
"
|
|
432
|
+
"component_type",
|
|
429
433
|
"configuration"
|
|
430
434
|
],
|
|
431
435
|
"properties": {
|