@budibase/pro 2.29.2 → 2.29.4
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/api/controllers/global/auditLogs.d.ts +0 -1
- package/dist/api/routes/apps/backups.d.ts +0 -1
- package/dist/api/routes/global/auditLogs.d.ts +0 -1
- package/dist/api/routes/global/environmentVariables.d.ts +0 -1
- package/dist/api/routes/global/groups.d.ts +0 -1
- package/dist/api/routes/global/scim.d.ts +0 -1
- package/dist/api/routes/global/users.d.ts +0 -1
- package/dist/db/auditLogs.d.ts +6 -7
- package/dist/db/backups.d.ts +1 -1
- package/dist/db/quotas/quotas.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/middleware/doInScimContext.d.ts +0 -1
- package/dist/middleware/requireSCIM.d.ts +0 -1
- package/dist/sdk/auditLogs/auditLogs.d.ts +0 -1
- package/dist/sdk/backups/backup.d.ts +4 -5
- package/dist/sdk/backups/index.d.ts +4 -5
- package/dist/sdk/groups/groups.d.ts +1 -1
- package/dist/sdk/licensing/licenses/offline/signing.d.ts +0 -2
- package/dist/sdk/quotas/helpers/users.d.ts +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +8 -8
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { AppBackupContents, AppBackupFetchOpts, AppBackupMetadata, AppBackupStatus, AppBackupTrigger } from "@budibase/types";
|
|
3
2
|
import * as features from "../features";
|
|
4
3
|
/**
|
|
@@ -13,8 +12,8 @@ declare const pkg: {
|
|
|
13
12
|
metadata: any;
|
|
14
13
|
}>>;
|
|
15
14
|
triggerAppBackup: (appId: string, trigger: AppBackupTrigger, opts?: {
|
|
16
|
-
createdBy?: string
|
|
17
|
-
name?: string
|
|
15
|
+
createdBy?: string;
|
|
16
|
+
name?: string;
|
|
18
17
|
} | undefined) => Promise<Promise<string | undefined>>;
|
|
19
18
|
getBackupDownloadStream: (backupId: string) => Promise<Promise<{
|
|
20
19
|
metadata: import("@budibase/types").AppBackup;
|
|
@@ -24,10 +23,10 @@ declare const pkg: {
|
|
|
24
23
|
fetchAppBackups: (appId: string, opts?: AppBackupFetchOpts | undefined) => Promise<Promise<{
|
|
25
24
|
data: import("@budibase/types").AppBackup[];
|
|
26
25
|
hasNextPage: boolean;
|
|
27
|
-
nextPage?: string
|
|
26
|
+
nextPage?: string;
|
|
28
27
|
}>>;
|
|
29
28
|
storeAppBackupMetadata: (metadata: AppBackupMetadata, opts?: {
|
|
30
|
-
filename?: string
|
|
29
|
+
filename?: string;
|
|
31
30
|
} | undefined) => Promise<Promise<import("@budibase/types").PutResponse>>;
|
|
32
31
|
updateBackupStatus: (id: string, status: AppBackupStatus, contents?: AppBackupContents | undefined, filename?: string | undefined) => Promise<Promise<import("@budibase/types").PutResponse>>;
|
|
33
32
|
updateRestoreStatus: (id: string, rev: string, status: AppBackupStatus) => Promise<Promise<import("@budibase/types").PutResponse>>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import * as processing from "./processing";
|
|
3
2
|
import { BackupInitOpts } from "../../types";
|
|
4
3
|
import { getBackupQueue } from "./queue";
|
|
@@ -12,8 +11,8 @@ declare const _default: {
|
|
|
12
11
|
metadata: any;
|
|
13
12
|
}>>;
|
|
14
13
|
triggerAppBackup: (appId: string, trigger: import("@budibase/types").AppBackupTrigger, opts?: {
|
|
15
|
-
createdBy?: string
|
|
16
|
-
name?: string
|
|
14
|
+
createdBy?: string;
|
|
15
|
+
name?: string;
|
|
17
16
|
} | undefined) => Promise<Promise<string | undefined>>;
|
|
18
17
|
getBackupDownloadStream: (backupId: string) => Promise<Promise<{
|
|
19
18
|
metadata: import("@budibase/types").AppBackup;
|
|
@@ -23,10 +22,10 @@ declare const _default: {
|
|
|
23
22
|
fetchAppBackups: (appId: string, opts?: import("@budibase/types").AppBackupFetchOpts | undefined) => Promise<Promise<{
|
|
24
23
|
data: import("@budibase/types").AppBackup[];
|
|
25
24
|
hasNextPage: boolean;
|
|
26
|
-
nextPage?: string
|
|
25
|
+
nextPage?: string;
|
|
27
26
|
}>>;
|
|
28
27
|
storeAppBackupMetadata: (metadata: import("@budibase/types").AppBackupMetadata, opts?: {
|
|
29
|
-
filename?: string
|
|
28
|
+
filename?: string;
|
|
30
29
|
} | undefined) => Promise<Promise<import("@budibase/types").PutResponse>>;
|
|
31
30
|
updateBackupStatus: (id: string, status: import("@budibase/types").AppBackupStatus, contents?: import("@budibase/types").AppBackupContents | undefined, filename?: string | undefined) => Promise<Promise<import("@budibase/types").PutResponse>>;
|
|
32
31
|
updateRestoreStatus: (id: string, rev: string, status: import("@budibase/types").AppBackupStatus) => Promise<Promise<import("@budibase/types").PutResponse>>;
|
|
@@ -33,7 +33,7 @@ export declare function updateGroupApps(groupId: string, opts: {
|
|
|
33
33
|
}>;
|
|
34
34
|
export declare function cleanupApp(appId: string): Promise<{
|
|
35
35
|
id: string;
|
|
36
|
-
rev?: string
|
|
36
|
+
rev?: string;
|
|
37
37
|
}[]>;
|
|
38
38
|
export declare function addAppBuilder(groupId: string, appId: string): Promise<void>;
|
|
39
39
|
export declare function removeAppBuilder(groupId: string, appId: string): Promise<void>;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="pouchdb-core" />
|
|
2
|
-
/// <reference types="node" />
|
|
3
1
|
import { OfflineLicense } from "@budibase/types";
|
|
4
2
|
export declare function verifyLicenseToken(token: string): OfflineLicense;
|
|
5
3
|
export declare function sign(privateKey: string | Buffer, license: OfflineLicense): string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const addUsers: <T>(change: number, changeCreator: number, addUsersFn?: (
|
|
1
|
+
export declare const addUsers: <T>(change: number, changeCreator: number, addUsersFn?: () => Promise<T>) => Promise<T>;
|
|
2
2
|
export declare const removeUsers: (change: number, changeCreator: number) => Promise<void>;
|