@budibase/shared-core 3.32.4 → 3.32.6
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 +1 -0
- package/dist/helpers/url.d.ts +2 -2
- package/dist/index.js +3 -3
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
package/dist/constants/urls.d.ts
CHANGED
package/dist/helpers/url.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const accountPortalAccountUrl: (accountPortalUrl?: string | null) => string;
|
|
2
2
|
export declare const accountPortalBillingUrl: (accountPortalUrl?: string | null) => string;
|
|
3
|
-
export declare const accountPortalUpgradeUrl: (accountPortalUrl?: string | null) => string;
|
|
3
|
+
export declare const accountPortalUpgradeUrl: (accountPortalUrl?: string | null, tenantId?: string | null) => string;
|
|
4
4
|
export declare const builderWorkspacesUrl: (builderBaseUrl?: string | null) => string;
|
|
5
5
|
export declare const builderSettingsEmailUrl: (builderBaseUrl?: string | null) => string;
|
|
6
6
|
export declare const builderSettingsAuthUrl: (builderBaseUrl?: string | null) => string;
|
|
@@ -12,7 +12,7 @@ export declare const agentChatUrl: (appUrl: string, agentId: string) => string;
|
|
|
12
12
|
export declare const urlHelpers: {
|
|
13
13
|
accountPortalAccountUrl: (accountPortalUrl?: string | null) => string;
|
|
14
14
|
accountPortalBillingUrl: (accountPortalUrl?: string | null) => string;
|
|
15
|
-
accountPortalUpgradeUrl: (accountPortalUrl?: string | null) => string;
|
|
15
|
+
accountPortalUpgradeUrl: (accountPortalUrl?: string | null, tenantId?: string | null) => string;
|
|
16
16
|
builderWorkspacesUrl: (builderBaseUrl?: string | null) => string;
|
|
17
17
|
builderSettingsEmailUrl: (builderBaseUrl?: string | null) => string;
|
|
18
18
|
builderSettingsAuthUrl: (builderBaseUrl?: string | null) => string;
|