@budibase/shared-core 3.34.2 → 3.34.3
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/constants/urls.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const BUILDER_URLS: {
|
|
2
|
-
readonly WORKSPACES: "/builder/
|
|
2
|
+
readonly WORKSPACES: "/builder/apps";
|
|
3
3
|
readonly SETTINGS_EMAIL: "/builder/settings/email";
|
|
4
4
|
readonly SETTINGS_AUTH: "/builder/settings/auth";
|
|
5
5
|
readonly SETTINGS_PEOPLE_USERS: "/builder/settings/people/users";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isEnvironmentVariableKey(str: unknown): boolean;
|
|
@@ -33,3 +33,7 @@ export declare function withTimeout<T>(timeout: number, promise: () => Promise<T
|
|
|
33
33
|
* @return the escaped string safe for use in HTML
|
|
34
34
|
*/
|
|
35
35
|
export declare const escapeHtml: (str: string | undefined | null) => string;
|
|
36
|
+
/**
|
|
37
|
+
* Normalizes a string for case-insensitive comparisons.
|
|
38
|
+
*/
|
|
39
|
+
export declare const normalizeForComparison: (value: string) => string;
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export * as lists from "./lists";
|
|
|
15
15
|
export * from "./duplicate";
|
|
16
16
|
export { accountPortalAccountUrl, accountPortalBillingUrl, accountPortalUpgradeUrl, builderWorkspacesUrl, builderSettingsEmailUrl, builderSettingsAuthUrl, builderSettingsPeopleUsersUrl, builderAppsUrl, appChatUrl, appAgentUrl, agentChatUrl, urlHelpers, } from "./url";
|
|
17
17
|
export * from "./readableHelpers";
|
|
18
|
+
export { isEnvironmentVariableKey } from "./envVariables";
|