@smart100/spu-web-plugin 0.0.22 → 0.0.24
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/spu-web-plugin.mjs +2042 -11285
- package/package.json +2 -2
- package/src/axios.ts +6 -9
- package/src/cloudServ.ts +0 -58
- package/src/components/expandexp/index.ts +16 -10
- package/src/components/expandexp/template.ts +7 -0
- package/src/core.js +2 -2
- package/src/index.ts +8 -5
- package/src/install.ts +1 -0
- package/src/login.ts +4 -4
- package/src/oss/downloadService.ts +3 -3
- package/src/oss/servtoken.ts +2 -2
- package/src/storageProxy.ts +1 -1
- package/src/tenantInfo.ts +2 -2
- package/src/types/global.d.ts +1 -0
- package/src/utils.ts +0 -18
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ interface ISPUWebPluginOptions {
|
|
|
5
5
|
modulekey: string
|
|
6
6
|
modulename: string
|
|
7
7
|
moduleversion: string
|
|
8
|
+
storageproxyprefix?: string
|
|
8
9
|
router?: any
|
|
9
10
|
}
|
|
10
11
|
|
|
@@ -63,8 +64,8 @@ export const ssProxy: any
|
|
|
63
64
|
export const getLocation: () => Promise<Location>
|
|
64
65
|
export const getDistance: (p1: [number, number], p2: [number, number]) => Promise<any>
|
|
65
66
|
export const spuAxios: any
|
|
66
|
-
// export const spuAxios: AxiosInstance
|
|
67
67
|
export const apaasAxios: any
|
|
68
|
+
export const axios: any
|
|
68
69
|
export const spuConfig: any
|
|
69
70
|
export const downloadService: IDownloadService
|
|
70
71
|
export const uploadService: IUploadService
|