@budibase/backend-core 3.3.0 → 3.3.2
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/index.js +7 -7
- package/dist/index.js.map +2 -2
- package/dist/package.json +2 -2
- package/dist/plugins.js +1 -1
- package/dist/plugins.js.map +1 -1
- package/dist/src/features/features.d.ts +2 -0
- package/package.json +2 -2
|
@@ -21,10 +21,12 @@ export declare class FlagSet<T extends {
|
|
|
21
21
|
}
|
|
22
22
|
export declare const flags: FlagSet<{
|
|
23
23
|
USE_ZOD_VALIDATOR: boolean;
|
|
24
|
+
CHECK_SCREEN_COMPONENT_SETTINGS_ERRORS: boolean;
|
|
24
25
|
DIRECT_LOGIN_TO_ACCOUNT_PORTAL: boolean;
|
|
25
26
|
}>;
|
|
26
27
|
export declare function isEnabled(flag: keyof typeof FeatureFlagDefaults): Promise<boolean>;
|
|
27
28
|
export declare function all(): Promise<{
|
|
28
29
|
USE_ZOD_VALIDATOR: boolean;
|
|
30
|
+
CHECK_SCREEN_COMPONENT_SETTINGS_ERRORS: boolean;
|
|
29
31
|
DIRECT_LOGIN_TO_ACCOUNT_PORTAL: boolean;
|
|
30
32
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/backend-core",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "Budibase backend core libraries used in server and worker",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "5ffd630cc8ca4b533986ee1d830404a496365385"
|
|
114
114
|
}
|