@base44-preview/sdk 0.8.4-pr.51.71041fc → 0.8.4-pr.52.74aa9c1
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/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/utils/app-params.d.ts +13 -0
- package/dist/utils/app-params.js +44 -0
- package/dist/utils/common.d.ts +1 -0
- package/dist/utils/common.js +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { createClient, createClientFromRequest, type Base44Client } from "./client.js";
|
|
2
2
|
import { Base44Error } from "./utils/axios-client.js";
|
|
3
3
|
import { getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl } from "./utils/auth-utils.js";
|
|
4
|
-
|
|
4
|
+
import { appParams } from "./utils/app-params.js";
|
|
5
|
+
export { createClient, createClientFromRequest, Base44Error, getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl, appParams };
|
|
5
6
|
export type { Base44Client };
|
|
6
7
|
export * from "./types.js";
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { createClient, createClientFromRequest } from "./client.js";
|
|
2
2
|
import { Base44Error } from "./utils/axios-client.js";
|
|
3
3
|
import { getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl, } from "./utils/auth-utils.js";
|
|
4
|
-
|
|
4
|
+
import { appParams } from "./utils/app-params.js";
|
|
5
|
+
export { createClient, createClientFromRequest, Base44Error, getAccessToken, saveAccessToken, removeAccessToken, getLoginUrl, appParams };
|
|
5
6
|
export * from "./types.js";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const appParams: {
|
|
2
|
+
appId?: undefined;
|
|
3
|
+
serverUrl?: undefined;
|
|
4
|
+
token?: undefined;
|
|
5
|
+
fromUrl?: undefined;
|
|
6
|
+
functionsVersion?: undefined;
|
|
7
|
+
} | {
|
|
8
|
+
appId: any;
|
|
9
|
+
serverUrl: any;
|
|
10
|
+
token: any;
|
|
11
|
+
fromUrl: any;
|
|
12
|
+
functionsVersion: any;
|
|
13
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { isBrowser } from './common';
|
|
2
|
+
const toSnakeCase = (str) => {
|
|
3
|
+
return str.replace(/([A-Z])/g, '_$1').toLowerCase();
|
|
4
|
+
};
|
|
5
|
+
const getAppParamValue = (paramName, { defaultValue = undefined, removeFromUrl = false } = {}) => {
|
|
6
|
+
const storageKey = `base44_${toSnakeCase(paramName)}`;
|
|
7
|
+
const urlParams = new URLSearchParams(window.location.search);
|
|
8
|
+
const searchParam = urlParams.get(paramName);
|
|
9
|
+
if (removeFromUrl) {
|
|
10
|
+
urlParams.delete(paramName);
|
|
11
|
+
const newUrl = `${window.location.pathname}${urlParams.toString() ? `?${urlParams.toString()}` : ""}${window.location.hash}`;
|
|
12
|
+
window.history.replaceState({}, document.title, newUrl);
|
|
13
|
+
}
|
|
14
|
+
if (searchParam) {
|
|
15
|
+
localStorage.setItem(storageKey, searchParam);
|
|
16
|
+
return searchParam;
|
|
17
|
+
}
|
|
18
|
+
if (defaultValue) {
|
|
19
|
+
localStorage.setItem(storageKey, defaultValue);
|
|
20
|
+
return defaultValue;
|
|
21
|
+
}
|
|
22
|
+
const storedValue = localStorage.getItem(storageKey);
|
|
23
|
+
if (storedValue) {
|
|
24
|
+
return storedValue;
|
|
25
|
+
}
|
|
26
|
+
return null;
|
|
27
|
+
};
|
|
28
|
+
const getAppParams = () => {
|
|
29
|
+
if (!isBrowser) {
|
|
30
|
+
return {};
|
|
31
|
+
}
|
|
32
|
+
if (getAppParamValue("clear_access_token") === 'true') {
|
|
33
|
+
localStorage.removeItem('base44_access_token');
|
|
34
|
+
localStorage.removeItem('token');
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
appId: getAppParamValue("app_id", { defaultValue: import.meta.env.VITE_BASE44_APP_ID }),
|
|
38
|
+
serverUrl: getAppParamValue("server_url", { defaultValue: import.meta.env.VITE_BASE44_BACKEND_URL }),
|
|
39
|
+
token: getAppParamValue("access_token", { removeFromUrl: true }),
|
|
40
|
+
fromUrl: getAppParamValue("from_url", { defaultValue: window.location.href }),
|
|
41
|
+
functionsVersion: getAppParamValue("functions_version", { defaultValue: import.meta.env.VITE_BASE44_FUNCTIONS_VERSION }),
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export const appParams = getAppParams();
|
package/dist/utils/common.d.ts
CHANGED
package/dist/utils/common.js
CHANGED