@budibase/shared-core 3.31.3 → 3.31.5
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 +6 -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,5 +13,5 @@ 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
|
|
16
|
+
export { accountPortalAccountUrl, accountPortalBillingUrl, accountPortalUpgradeUrl, builderWorkspacesUrl, builderSettingsEmailUrl, builderSettingsAuthUrl, builderSettingsPeopleUsersUrl, builderAppsUrl, appChatUrl, appAgentUrl, agentChatUrl, urlHelpers, } from "./url";
|
|
17
17
|
export * from "./readableHelpers";
|
package/dist/helpers/url.d.ts
CHANGED
|
@@ -6,6 +6,9 @@ export declare const builderSettingsEmailUrl: (builderBaseUrl?: string | null) =
|
|
|
6
6
|
export declare const builderSettingsAuthUrl: (builderBaseUrl?: string | null) => string;
|
|
7
7
|
export declare const builderSettingsPeopleUsersUrl: (builderBaseUrl?: string | null) => string;
|
|
8
8
|
export declare const builderAppsUrl: (builderBaseUrl?: string | null) => string;
|
|
9
|
+
export declare const appChatUrl: (appUrl: string) => string;
|
|
10
|
+
export declare const appAgentUrl: (appUrl: string, agentId: string) => string;
|
|
11
|
+
export declare const agentChatUrl: (appUrl: string, agentId: string) => string;
|
|
9
12
|
export declare const urlHelpers: {
|
|
10
13
|
accountPortalAccountUrl: (accountPortalUrl?: string | null) => string;
|
|
11
14
|
accountPortalBillingUrl: (accountPortalUrl?: string | null) => string;
|
|
@@ -15,5 +18,8 @@ export declare const urlHelpers: {
|
|
|
15
18
|
builderSettingsAuthUrl: (builderBaseUrl?: string | null) => string;
|
|
16
19
|
builderSettingsPeopleUsersUrl: (builderBaseUrl?: string | null) => string;
|
|
17
20
|
builderAppsUrl: (builderBaseUrl?: string | null) => string;
|
|
21
|
+
appChatUrl: (appUrl: string) => string;
|
|
22
|
+
appAgentUrl: (appUrl: string, agentId: string) => string;
|
|
23
|
+
agentChatUrl: (appUrl: string, agentId: string) => string;
|
|
18
24
|
};
|
|
19
25
|
export default urlHelpers;
|