@budibase/pro 2.29.3 → 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 { SearchAuditLogsRequest, SearchAuditLogsResponse, DownloadAuditLogsRequest, DefinitionsAuditLogsResponse, UserCtx } from "@budibase/types";
|
|
3
2
|
import { Readable } from "stream";
|
|
4
3
|
export declare function search(ctx: UserCtx<SearchAuditLogsRequest, SearchAuditLogsResponse>): Promise<void>;
|
package/dist/db/auditLogs.d.ts
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { AuditLogDoc, AuditLogSearchParams, SearchFilters, SearchResponse } from "@budibase/types";
|
|
3
2
|
import { Readable } from "stream";
|
|
4
3
|
export declare function save(doc: AuditLogDoc): Promise<{
|
|
5
4
|
_rev: string;
|
|
6
|
-
appId?: string
|
|
5
|
+
appId?: string;
|
|
7
6
|
event: import("@budibase/types").Event;
|
|
8
7
|
userId: string;
|
|
9
8
|
timestamp: string;
|
|
10
9
|
metadata: any;
|
|
11
10
|
name: string;
|
|
12
|
-
type?: "auditLog"
|
|
13
|
-
fallback?: import("@budibase/types").FallbackInfo
|
|
14
|
-
_id?: string
|
|
15
|
-
createdAt?: string | number
|
|
16
|
-
updatedAt?: string
|
|
11
|
+
type?: "auditLog";
|
|
12
|
+
fallback?: import("@budibase/types").FallbackInfo;
|
|
13
|
+
_id?: string;
|
|
14
|
+
createdAt?: string | number;
|
|
15
|
+
updatedAt?: string;
|
|
17
16
|
} | undefined>;
|
|
18
17
|
export declare function search(search: SearchFilters, bookmark?: string): Promise<SearchResponse<AuditLogDoc>>;
|
|
19
18
|
export declare function searchSQL(filters: SearchFilters, bookmark?: number, opts?: {
|
package/dist/db/backups.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare function generateAppBackupID(appId: string, timestamp: string): s
|
|
|
4
4
|
export declare function fetchAppBackups(appId: string, opts?: AppBackupFetchOpts): Promise<{
|
|
5
5
|
data: AppBackup[];
|
|
6
6
|
hasNextPage: boolean;
|
|
7
|
-
nextPage?: string
|
|
7
|
+
nextPage?: string;
|
|
8
8
|
}>;
|
|
9
9
|
export declare function storeAppBackupMetadata(metadata: AppBackupMetadata, opts?: {
|
|
10
10
|
filename?: string;
|
|
@@ -6,8 +6,8 @@ export declare const setUsagePerApp: (appValues: {
|
|
|
6
6
|
[key: string]: number;
|
|
7
7
|
}, name: MeteredQuotaName, type: QuotaUsageType) => Promise<QuotaUsage>;
|
|
8
8
|
export declare const setAppUsageValue: (quotaUsage: QuotaUsage, name: MeteredQuotaName, type: QuotaUsageType, opts: {
|
|
9
|
-
id?: string
|
|
10
|
-
appId?: string
|
|
9
|
+
id?: string;
|
|
10
|
+
appId?: string;
|
|
11
11
|
} | undefined, values: UsageValues) => QuotaUsage;
|
|
12
12
|
interface SetAllUsageParams {
|
|
13
13
|
name: MeteredQuotaName;
|