@epilot/app-client 0.4.0 → 0.5.0

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
@@ -193,12 +193,6 @@ declare namespace Components {
193
193
  * c451c26a-cc7a-4c1c-92bf-1c6246cbfe88
194
194
  */
195
195
  app_id: string;
196
- /**
197
- * The ID of the component from the app. As the app can potentially have multiple custom actions, this ID is used to identify the component
198
- * example:
199
- * 2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88
200
- */
201
- component_id: string;
202
196
  }
203
197
  export interface BasicCustomActionConfig {
204
198
  /**
@@ -215,12 +209,6 @@ declare namespace Components {
215
209
  * c451c26a-cc7a-4c1c-92bf-1c6246cbfe88
216
210
  */
217
211
  app_id: string;
218
- /**
219
- * The ID of the component from the app. As the app can potentially have multiple custom actions, this ID is used to identify the component
220
- * example:
221
- * 2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88
222
- */
223
- component_id: string;
224
212
  type: "basic";
225
213
  basic_settings?: {
226
214
  /**
@@ -772,7 +760,7 @@ declare namespace Components {
772
760
  * Define data which is mapped to entity mapping ui blocks
773
761
  */
774
762
  component_mapping?: {
775
- [name: string]: "string" | "boolean" | "date" | "datetime" | "link";
763
+ [name: string]: "string" | "boolean" | "date" | "datetime" | "link" | "number";
776
764
  };
777
765
  }
778
766
  export interface NotificationConfig {
package/dist/openapi.json CHANGED
@@ -1435,16 +1435,10 @@
1435
1435
  "type": "string",
1436
1436
  "description": "The ID of the app to fetch configuration from the app API",
1437
1437
  "example": "c451c26a-cc7a-4c1c-92bf-1c6246cbfe88"
1438
- },
1439
- "component_id": {
1440
- "type": "string",
1441
- "description": "The ID of the component from the app. As the app can potentially have multiple custom actions, this ID is used to identify the component",
1442
- "example": "2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88"
1443
1438
  }
1444
1439
  },
1445
1440
  "required": [
1446
- "app_id",
1447
- "component_id"
1441
+ "app_id"
1448
1442
  ]
1449
1443
  },
1450
1444
  "BasicCustomActionConfig": {
@@ -1677,7 +1671,8 @@
1677
1671
  "boolean",
1678
1672
  "date",
1679
1673
  "datetime",
1680
- "link"
1674
+ "link",
1675
+ "number"
1681
1676
  ]
1682
1677
  }
1683
1678
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",