@epilot/app-client 0.7.0 → 0.7.1

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
@@ -55,6 +55,10 @@ declare namespace Components {
55
55
  * Configuration values for the app components
56
56
  */
57
57
  option_values?: Schemas.OptionsRef[];
58
+ /**
59
+ * Manifest ID used to create/update the entity
60
+ */
61
+ _manifest?: string /* uuid */[];
58
62
  }
59
63
  export interface PatchConfigMetadataRequest {
60
64
  /**
@@ -1538,7 +1542,9 @@ declare namespace Paths {
1538
1542
  }
1539
1543
  namespace GetPublicFacingComponent {
1540
1544
  namespace Responses {
1541
- export type $200 = Components.Schemas.BaseComponent;
1545
+ export interface $200 {
1546
+ component?: Components.Schemas.BaseComponent;
1547
+ }
1542
1548
  export interface $404 {
1543
1549
  }
1544
1550
  }
package/dist/openapi.json CHANGED
@@ -75,7 +75,12 @@
75
75
  "content": {
76
76
  "application/json": {
77
77
  "schema": {
78
- "$ref": "#/components/schemas/BaseComponent"
78
+ "type": "object",
79
+ "properties": {
80
+ "component": {
81
+ "$ref": "#/components/schemas/BaseComponent"
82
+ }
83
+ }
79
84
  }
80
85
  }
81
86
  }
@@ -1466,6 +1471,15 @@
1466
1471
  "$ref": "#/components/schemas/OptionsRef"
1467
1472
  },
1468
1473
  "description": "Configuration values for the app components"
1474
+ },
1475
+ "_manifest": {
1476
+ "type": "array",
1477
+ "description": "Manifest ID used to create/update the entity",
1478
+ "items": {
1479
+ "type": "string",
1480
+ "format": "uuid",
1481
+ "example": "123e4567-e89b-12d3-a456-426614174000"
1482
+ }
1469
1483
  }
1470
1484
  }
1471
1485
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",