@budibase/shared-core 3.23.24 → 3.23.25

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.
@@ -4,6 +4,7 @@ export * from "./fields";
4
4
  export * from "./rows";
5
5
  export * from "./colors";
6
6
  export * from "./themes";
7
+ export * from "./urls";
7
8
  export declare const OperatorOptions: {
8
9
  Equals: {
9
10
  value: string;
@@ -0,0 +1,12 @@
1
+ export declare const BUILDER_URLS: {
2
+ readonly WORKSPACES: "/builder/workspaces";
3
+ readonly SETTINGS_EMAIL: "/builder/settings/email";
4
+ readonly SETTINGS_AUTH: "/builder/settings/auth";
5
+ readonly SETTINGS_PEOPLE_USERS: "/builder/settings/people/users";
6
+ readonly APPS: "/builder/apps";
7
+ };
8
+ export declare const ACCOUNT_PORTAL_PATHS: {
9
+ readonly ACCOUNT: "/portal/account";
10
+ readonly BILLING: "/portal/billing";
11
+ readonly UPGRADE: "/portal/upgrade";
12
+ };
@@ -12,3 +12,4 @@ export * as views from "./views";
12
12
  export * as roles from "./roles";
13
13
  export * as lists from "./lists";
14
14
  export * from "./duplicate";
15
+ export * from "./url";
@@ -0,0 +1,19 @@
1
+ export declare const accountPortalAccountUrl: (accountPortalUrl?: string | null) => string;
2
+ export declare const accountPortalBillingUrl: (accountPortalUrl?: string | null) => string;
3
+ export declare const accountPortalUpgradeUrl: (accountPortalUrl?: string | null) => string;
4
+ export declare const builderWorkspacesUrl: (builderBaseUrl?: string | null) => string;
5
+ export declare const builderSettingsEmailUrl: (builderBaseUrl?: string | null) => string;
6
+ export declare const builderSettingsAuthUrl: (builderBaseUrl?: string | null) => string;
7
+ export declare const builderSettingsPeopleUsersUrl: (builderBaseUrl?: string | null) => string;
8
+ export declare const builderAppsUrl: (builderBaseUrl?: string | null) => string;
9
+ export declare const urlHelpers: {
10
+ accountPortalAccountUrl: (accountPortalUrl?: string | null) => string;
11
+ accountPortalBillingUrl: (accountPortalUrl?: string | null) => string;
12
+ accountPortalUpgradeUrl: (accountPortalUrl?: string | null) => string;
13
+ builderWorkspacesUrl: (builderBaseUrl?: string | null) => string;
14
+ builderSettingsEmailUrl: (builderBaseUrl?: string | null) => string;
15
+ builderSettingsAuthUrl: (builderBaseUrl?: string | null) => string;
16
+ builderSettingsPeopleUsersUrl: (builderBaseUrl?: string | null) => string;
17
+ builderAppsUrl: (builderBaseUrl?: string | null) => string;
18
+ };
19
+ export default urlHelpers;