@budibase/types 3.12.14 → 3.12.15

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.
@@ -43,6 +43,16 @@ export interface AddAppSampleDataResponse {
43
43
  message: string;
44
44
  }
45
45
  export type FetchAppsResponse = App[];
46
+ export interface PublishedAppData {
47
+ name: string;
48
+ appId: string;
49
+ url: string;
50
+ prodId: string;
51
+ updatedAt?: string;
52
+ }
53
+ export interface FetchPublishedAppsResponse {
54
+ apps: PublishedAppData[];
55
+ }
46
56
  export interface UpdateAppRequest extends Partial<App> {
47
57
  }
48
58
  export interface UpdateAppResponse extends App {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "3.12.14",
3
+ "version": "3.12.15",
4
4
  "description": "Budibase types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,5 +27,5 @@
27
27
  "dependencies": {
28
28
  "scim-patch": "^0.8.1"
29
29
  },
30
- "gitHead": "dbe8dd62a6714a1bf0768542434fdeca2f81052b"
30
+ "gitHead": "e773b5a964aab33ff99a5fea0aa40f16dbfaa2ea"
31
31
  }