iv-npm 1.1.2 → 1.1.3
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/package.json +1 -1
- package/packages/ui/dist/api/api.config.d.ts +14 -0
- package/packages/ui/dist/business-ui/index.d.ts +3 -0
- package/packages/ui/dist/business-ui/type.d.ts +10 -0
- package/packages/ui/dist/function-ui/index.d.ts +2 -0
- package/packages/ui/dist/index.cjs.js +0 -951
- package/packages/ui/dist/index.d.ts +8 -0
- package/packages/ui/dist/index.esm.js +0 -945
- package/packages/ui/dist/index.umd.js +4 -953
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const BASE_URL = "https://basis.nacho.cn";
|
|
2
|
+
declare const API_OPTION: {
|
|
3
|
+
getIVMrpOrgDropdown: {
|
|
4
|
+
url: string;
|
|
5
|
+
option: any;
|
|
6
|
+
};
|
|
7
|
+
getIVMrpProdBaseDropdown: {
|
|
8
|
+
url: string;
|
|
9
|
+
option: any;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const formatHTTP: (fetch: any) => Promise<any>;
|
|
13
|
+
export declare const formatUrl: (base: string, api: string, params: object) => string;
|
|
14
|
+
export { BASE_URL, API_OPTION };
|