@budibase/shared-core 3.35.0 → 3.35.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/helpers/index.d.ts +1 -1
- package/dist/helpers/url.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
package/dist/helpers/index.d.ts
CHANGED
|
@@ -13,6 +13,6 @@ export * as views from "./views";
|
|
|
13
13
|
export * as roles from "./roles";
|
|
14
14
|
export * as lists from "./lists";
|
|
15
15
|
export * from "./duplicate";
|
|
16
|
-
export { accountPortalAccountUrl, accountPortalBillingUrl, accountPortalUpgradeUrl, builderWorkspacesUrl, builderSettingsEmailUrl, builderSettingsAuthUrl, builderSettingsPeopleUsersUrl, builderAppsUrl, appChatUrl, appAgentUrl, agentChatUrl, urlHelpers, } from "./url";
|
|
16
|
+
export { accountPortalAccountUrl, accountPortalBillingUrl, accountPortalUpgradeUrl, builderWorkspacesUrl, builderSettingsEmailUrl, builderSettingsAuthUrl, builderSettingsPeopleUsersUrl, builderAppsUrl, appChatUrl, appAgentUrl, agentChatUrl, urlHelpers, applyBaseUrl, } from "./url";
|
|
17
17
|
export * from "./readableHelpers";
|
|
18
18
|
export { isEnvironmentVariableKey } from "./envVariables";
|
package/dist/helpers/url.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare function applyBaseUrl(currentUrl: string, newBase: string): string;
|
|
1
2
|
export declare const accountPortalAccountUrl: (accountPortalUrl?: string | null) => string;
|
|
2
3
|
export declare const accountPortalBillingUrl: (accountPortalUrl?: string | null) => string;
|
|
3
4
|
export declare const accountPortalUpgradeUrl: (accountPortalUrl?: string | null, tenantId?: string | null) => string;
|