@budibase/types 2.7.34-alpha.8 → 2.7.35

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.
@@ -76,7 +76,6 @@ export enum FilterType {
76
76
  export enum DatasourceFeature {
77
77
  CONNECTION_CHECKING = "connection",
78
78
  FETCH_TABLE_NAMES = "fetch_table_names",
79
- EXPORT_SCHEMA = "export_schema",
80
79
  }
81
80
 
82
81
  export interface StepDefinition {
@@ -141,7 +140,6 @@ export interface IntegrationBase {
141
140
  update?(query: any): Promise<any[] | any>
142
141
  delete?(query: any): Promise<any[] | any>
143
142
  testConnection?(): Promise<ConnectionInfo>
144
- getExternalSchema?(): Promise<string>
145
143
  }
146
144
 
147
145
  export interface DatasourcePlus extends IntegrationBase {
@@ -7,7 +7,6 @@ export interface BuilderServedEvent extends BaseEvent {
7
7
  export interface AppServedEvent extends BaseEvent {
8
8
  appVersion: string
9
9
  timezone: string
10
- embed?: boolean
11
10
  }
12
11
 
13
12
  export interface AppPreviewServedEvent extends BaseEvent {