@budibase/pro 2.10.12-alpha.1 → 2.10.12-alpha.10

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.
@@ -1,5 +1,5 @@
1
1
  import { DatabaseQueryOpts, UserGroup } from "@budibase/types";
2
- declare type UserGroupsViewParams = DatabaseQueryOpts & {
2
+ type UserGroupsViewParams = DatabaseQueryOpts & {
3
3
  emailSearch?: string;
4
4
  bookmark?: string;
5
5
  };
@@ -1,4 +1,4 @@
1
- declare type AutomationOpts = {
1
+ type AutomationOpts = {
2
2
  automationId?: string;
3
3
  };
4
4
  export declare const addAutomation: (runAutomationFn: any, { automationId }?: AutomationOpts) => Promise<any>;
@@ -1,4 +1,4 @@
1
- declare type QueryOpts = {
1
+ type QueryOpts = {
2
2
  datasourceId?: string;
3
3
  };
4
4
  export declare function addQuery<T>(runQueryFunction: () => Promise<T>, { datasourceId }?: QueryOpts): Promise<T>;
@@ -1,4 +1,4 @@
1
- declare type RowOpts = {
1
+ type RowOpts = {
2
2
  tableId?: string;
3
3
  };
4
4
  export declare const addRow: (addRowFn: any, { tableId }?: RowOpts) => Promise<any>;
@@ -12,11 +12,11 @@ export interface ImportAppConfig {
12
12
  };
13
13
  key: string;
14
14
  }
15
- declare type ExportAppFn = (devAppId: string, opts: {
15
+ type ExportAppFn = (devAppId: string, opts: {
16
16
  tar: boolean;
17
17
  }) => Promise<string>;
18
- declare type ImportAppFn = (devAppId: string, db: any, config: ImportAppConfig) => Promise<string>;
19
- declare type StatsFn = (devAppId: string) => Promise<AppBackupContents>;
18
+ type ImportAppFn = (devAppId: string, db: any, config: ImportAppConfig) => Promise<string>;
19
+ type StatsFn = (devAppId: string) => Promise<AppBackupContents>;
20
20
  export interface BackupProcessingOpts {
21
21
  exportAppFn: ExportAppFn;
22
22
  importAppFn: ImportAppFn;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "dist"
5
5
  ],
6
6
  "license": "UNLICENSED",
7
- "version": "2.10.12-alpha.1",
7
+ "version": "2.10.12-alpha.10",
8
8
  "description": "Budibase Pro (Backend)",
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/src/index.d.ts",
@@ -13,10 +13,10 @@
13
13
  "url": "https://github.com/Budibase/budibase-pro.git"
14
14
  },
15
15
  "dependencies": {
16
- "@budibase/backend-core": "2.10.12-alpha.1",
17
- "@budibase/shared-core": "2.10.12-alpha.1",
18
- "@budibase/string-templates": "2.10.12-alpha.1",
19
- "@budibase/types": "2.10.12-alpha.1",
16
+ "@budibase/backend-core": "2.10.12-alpha.10",
17
+ "@budibase/shared-core": "2.10.12-alpha.10",
18
+ "@budibase/string-templates": "2.10.12-alpha.10",
19
+ "@budibase/types": "2.10.12-alpha.10",
20
20
  "@koa/router": "8.0.8",
21
21
  "bull": "4.10.1",
22
22
  "joi": "17.6.0",
@@ -49,7 +49,7 @@
49
49
  "ts-jest": "29.1.1",
50
50
  "ts-node": "10.8.1",
51
51
  "tsconfig-paths": "^4.2.0",
52
- "typescript": "4.7.3"
52
+ "typescript": "5.2.2"
53
53
  },
54
54
  "scripts": {
55
55
  "setup": "yarn && yarn build",
@@ -75,5 +75,5 @@
75
75
  }
76
76
  }
77
77
  },
78
- "gitHead": "3939f02549b5d9c5ce2cad18bde2c1ad54bd40bf"
78
+ "gitHead": "a0dcea8f787e67daa8e49ae1d7f546dfa1e29010"
79
79
  }