@budibase/pro 3.30.5 → 3.31.0
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/ai/generators/tableGeneration.d.ts +11 -3
- package/dist/ai/models/base.d.ts +1 -3
- package/dist/ai/models/budibaseai.d.ts +1 -1
- package/dist/ai/prompts/index.d.ts +0 -2
- package/dist/errors.d.ts +7 -0
- package/dist/index.js +80 -41
- package/dist/sdk/features/features.d.ts +2 -0
- package/dist/sdk/quotas/helpers/ai.d.ts +1 -0
- package/package.json +2 -2
|
@@ -14,6 +14,8 @@ export declare function isRecaptchaEnabled(): Promise<boolean>;
|
|
|
14
14
|
export declare const isPkceOidcEnabled: () => Promise<boolean>;
|
|
15
15
|
export declare function isTranslationsEnabled(): Promise<boolean>;
|
|
16
16
|
export declare function isExpandedPublicApiEnabled(): Promise<boolean>;
|
|
17
|
+
export declare function isWorkspaceImportExportEnabled(): Promise<boolean>;
|
|
18
|
+
export declare function isWorkspaceImportExportPublicApiEnabled(): Promise<boolean>;
|
|
17
19
|
export declare function isSSOEnforced(opts?: {
|
|
18
20
|
config: SettingsInnerConfig;
|
|
19
21
|
}): Promise<boolean>;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"dist"
|
|
5
5
|
],
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
|
-
"version": "3.
|
|
7
|
+
"version": "3.31.0",
|
|
8
8
|
"description": "Budibase Pro (Backend)",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "1a410a1809b5010ddf7055fc7f240aa38c6ed3ef"
|
|
73
73
|
}
|