@budibase/types 3.12.17 → 3.12.19

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.
@@ -5,6 +5,16 @@ export interface PublishAppRequest {
5
5
  }
6
6
  export interface PublishAppResponse extends DeploymentDoc {
7
7
  }
8
+ export type PublishStatusResource = {
9
+ published: boolean;
10
+ name: string;
11
+ publishedAt?: string;
12
+ unpublishedChanges?: boolean;
13
+ };
14
+ export interface PublishStatusResponse {
15
+ workspaceApps: Record<string, PublishStatusResource>;
16
+ automations: Record<string, PublishStatusResource>;
17
+ }
8
18
  export interface DeploymentProgressResponse {
9
19
  _id: string;
10
20
  appId: string;
@@ -31,6 +31,7 @@ export interface App extends Document {
31
31
  updatedBy?: string;
32
32
  pwa?: PWAManifest;
33
33
  scripts?: AppScript[];
34
+ resourcesPublishedAt?: Record<string, string>;
34
35
  }
35
36
  export interface AppInstance {
36
37
  _id: string;
@@ -53,6 +53,7 @@ export declare enum VirtualDocumentType {
53
53
  export interface Document {
54
54
  _id?: string;
55
55
  _rev?: string;
56
+ _deleted?: boolean;
56
57
  createdAt?: string | number;
57
58
  updatedAt?: string;
58
59
  }