@epilot/app-client 0.1.1 → 0.1.3
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 +26 -6
- package/dist/openapi.json +16 -5
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -11,7 +11,10 @@ import type {
|
|
|
11
11
|
declare namespace Components {
|
|
12
12
|
namespace RequestBodies {
|
|
13
13
|
export interface CreateConfigRequest {
|
|
14
|
-
|
|
14
|
+
/**
|
|
15
|
+
* Name of the app
|
|
16
|
+
*/
|
|
17
|
+
name: string;
|
|
15
18
|
description: Schemas.TranslatedString;
|
|
16
19
|
category?: string;
|
|
17
20
|
/**
|
|
@@ -40,7 +43,10 @@ declare namespace Components {
|
|
|
40
43
|
option_values?: Schemas.OptionsRef[];
|
|
41
44
|
}
|
|
42
45
|
export interface PatchConfigMetadataRequest {
|
|
43
|
-
|
|
46
|
+
/**
|
|
47
|
+
* Name of the app
|
|
48
|
+
*/
|
|
49
|
+
name?: string;
|
|
44
50
|
description?: Schemas.TranslatedString;
|
|
45
51
|
category?: string;
|
|
46
52
|
documentation_url?: string;
|
|
@@ -162,12 +168,19 @@ declare namespace Components {
|
|
|
162
168
|
*/
|
|
163
169
|
export interface Configuration {
|
|
164
170
|
app_id: string;
|
|
165
|
-
|
|
171
|
+
/**
|
|
172
|
+
* Name of the app
|
|
173
|
+
*/
|
|
174
|
+
name: string;
|
|
166
175
|
author?: Author;
|
|
167
176
|
/**
|
|
168
177
|
* List of available versions of the app
|
|
169
178
|
*/
|
|
170
179
|
versions?: string[];
|
|
180
|
+
/**
|
|
181
|
+
* List of available public versions of the app
|
|
182
|
+
*/
|
|
183
|
+
public_versions?: string[];
|
|
171
184
|
/**
|
|
172
185
|
* Email address for support requests
|
|
173
186
|
*/
|
|
@@ -261,12 +274,19 @@ declare namespace Components {
|
|
|
261
274
|
*/
|
|
262
275
|
export interface ConfigurationMetadata {
|
|
263
276
|
app_id: string;
|
|
264
|
-
|
|
277
|
+
/**
|
|
278
|
+
* Name of the app
|
|
279
|
+
*/
|
|
280
|
+
name: string;
|
|
265
281
|
author?: Author;
|
|
266
282
|
/**
|
|
267
283
|
* List of available versions of the app
|
|
268
284
|
*/
|
|
269
285
|
versions?: string[];
|
|
286
|
+
/**
|
|
287
|
+
* List of available public versions of the app
|
|
288
|
+
*/
|
|
289
|
+
public_versions?: string[];
|
|
270
290
|
/**
|
|
271
291
|
* Email address for support requests
|
|
272
292
|
*/
|
|
@@ -428,7 +448,7 @@ declare namespace Components {
|
|
|
428
448
|
/**
|
|
429
449
|
* Name of the app
|
|
430
450
|
*/
|
|
431
|
-
name:
|
|
451
|
+
name: string;
|
|
432
452
|
/**
|
|
433
453
|
* Configuration values for the app components
|
|
434
454
|
*/
|
|
@@ -709,7 +729,7 @@ declare namespace Paths {
|
|
|
709
729
|
version?: Parameters.Version;
|
|
710
730
|
}
|
|
711
731
|
namespace Responses {
|
|
712
|
-
export type $200 = /*
|
|
732
|
+
export type $200 = /* Configuration of the published app */ Components.Schemas.Configuration;
|
|
713
733
|
export interface $404 {
|
|
714
734
|
}
|
|
715
735
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"content": {
|
|
144
144
|
"application/json": {
|
|
145
145
|
"schema": {
|
|
146
|
-
"$ref": "#/components/schemas/
|
|
146
|
+
"$ref": "#/components/schemas/Configuration"
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
}
|
|
@@ -765,7 +765,8 @@
|
|
|
765
765
|
"type": "object",
|
|
766
766
|
"properties": {
|
|
767
767
|
"name": {
|
|
768
|
-
"
|
|
768
|
+
"type": "string",
|
|
769
|
+
"description": "Name of the app"
|
|
769
770
|
},
|
|
770
771
|
"description": {
|
|
771
772
|
"$ref": "#/components/schemas/TranslatedString"
|
|
@@ -829,7 +830,8 @@
|
|
|
829
830
|
],
|
|
830
831
|
"properties": {
|
|
831
832
|
"name": {
|
|
832
|
-
"
|
|
833
|
+
"type": "string",
|
|
834
|
+
"description": "Name of the app"
|
|
833
835
|
},
|
|
834
836
|
"description": {
|
|
835
837
|
"$ref": "#/components/schemas/TranslatedString"
|
|
@@ -1478,7 +1480,8 @@
|
|
|
1478
1480
|
"readOnly": true
|
|
1479
1481
|
},
|
|
1480
1482
|
"name": {
|
|
1481
|
-
"
|
|
1483
|
+
"type": "string",
|
|
1484
|
+
"description": "Name of the app"
|
|
1482
1485
|
},
|
|
1483
1486
|
"author": {
|
|
1484
1487
|
"$ref": "#/components/schemas/Author"
|
|
@@ -1491,6 +1494,14 @@
|
|
|
1491
1494
|
"description": "List of available versions of the app",
|
|
1492
1495
|
"readOnly": true
|
|
1493
1496
|
},
|
|
1497
|
+
"public_versions": {
|
|
1498
|
+
"type": "array",
|
|
1499
|
+
"items": {
|
|
1500
|
+
"type": "string"
|
|
1501
|
+
},
|
|
1502
|
+
"description": "List of available public versions of the app",
|
|
1503
|
+
"readOnly": true
|
|
1504
|
+
},
|
|
1494
1505
|
"support_email": {
|
|
1495
1506
|
"type": "string",
|
|
1496
1507
|
"description": "Email address for support requests"
|
|
@@ -1664,7 +1675,7 @@
|
|
|
1664
1675
|
"description": "Flag to indicate if the app is enabled. Enabled is set to true when required option values are set."
|
|
1665
1676
|
},
|
|
1666
1677
|
"name": {
|
|
1667
|
-
"
|
|
1678
|
+
"type": "string",
|
|
1668
1679
|
"description": "Name of the app",
|
|
1669
1680
|
"readOnly": true
|
|
1670
1681
|
},
|