@qxs-bns/utils 0.0.41 → 0.0.43
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/es/src/api-client/axios-client.mjs +1 -1
- package/es/src/api-client/axios-client.mjs.map +1 -1
- package/es/src/api-client/fetch-client.mjs +1 -1
- package/es/src/api-client/fetch-client.mjs.map +1 -1
- package/es/src/argo-log.mjs +1 -1
- package/es/src/argo-log.mjs.map +1 -1
- package/es/src/file-operations.mjs +1 -1
- package/es/src/file-operations.mjs.map +1 -1
- package/es/src/json.mjs +1 -1
- package/es/src/json.mjs.map +1 -1
- package/es/src/types.mjs +1 -1
- package/es/src/types.mjs.map +1 -1
- package/lib/src/api-client/axios-client.cjs +1 -1
- package/lib/src/api-client/axios-client.cjs.map +1 -1
- package/lib/src/api-client/fetch-client.cjs +1 -1
- package/lib/src/api-client/fetch-client.cjs.map +1 -1
- package/lib/src/argo-log.cjs +1 -1
- package/lib/src/argo-log.cjs.map +1 -1
- package/lib/src/file-operations.cjs +1 -1
- package/lib/src/file-operations.cjs.map +1 -1
- package/lib/src/json.cjs +1 -1
- package/lib/src/json.cjs.map +1 -1
- package/lib/src/types.cjs +1 -1
- package/lib/src/types.cjs.map +1 -1
- package/package.json +1 -1
- package/types/src/api-client/fetch-client.d.ts +6 -12
- package/types/src/api-client/fetch-client.d.ts.map +1 -1
- package/types/src/api-client/types.d.ts +1 -1
- package/types/src/api-client/types.d.ts.map +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{isPlainObject as e}from"../types.mjs";var s=Object.defineProperty,t=(e,t,r)=>((e,t,r)=>t in e?s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r)(e,"symbol"!=typeof t?t+"":t,r);const r=class s{constructor(e,r){var i=this;if(this.apiInstance=e,this.isWholeResponse=r,t(this,"useApi",async function(e,s){let t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:i.isWholeResponse,r=null,o=null;try{const o={...e,...s?e.method&&["GET"].includes(e.method.toUpperCase())?{params:s}:{data:s}:{}};o.url=(o.proxyPrefix||"")+e.url,delete o.proxyPrefix;const n=await i.apiInstance(o);r=t?n.data:n.data.data}catch(e){"AxiosError"!==e.name
|
|
1
|
+
import{isPlainObject as e}from"../types.mjs";var s=Object.defineProperty,t=(e,t,r)=>((e,t,r)=>t in e?s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r)(e,"symbol"!=typeof t?t+"":t,r);const r=class s{constructor(e,r){var i=this;if(this.apiInstance=e,this.isWholeResponse=r,t(this,"useApi",async function(e,s){let t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:i.isWholeResponse,r=null,o=null;try{const o={...e,...s?e.method&&["GET"].includes(e.method.toUpperCase())?{params:s}:{data:s}:{}};o.url=(o.proxyPrefix||"")+e.url,delete o.proxyPrefix;const n=await i.apiInstance(o);r=t?n.data:n.data.data}catch(e){"AxiosError"!==e.name&&(i.isAxiosResponse(e)?o=e.data:i.isErrorResponse(e)&&(o=e))}return{res:r,error:o}}),t(this,"apiClient",async(e,s,t)=>{t??this.isWholeResponse;const r={...e,...s?e.method&&["GET"].includes(e.method.toUpperCase())?{params:s}:{data:s}:{}};return r.proxyPrefix&&(r.url=(r.proxyPrefix||"")+e.url,delete r.proxyPrefix),await this.apiInstance(r)}),s.instance)return s.instance;s.instance=this,this.isWholeResponse=r}isBusinessError(s){return e(s)&&"string"==typeof s.message&&"number"==typeof s.code&&0!==s.code}isAxiosResponse(s){return e(s)&&void 0!==s.data&&this.isBusinessError(s.data)&&void 0!==s.status&&void 0!==s.statusText&&void 0!==s.headers&&void 0!==s.config&&void 0!==s.request}isErrorResponse(e){return"code"in e&&"data"in e&&"message"in e&&0!==e.code}};t(r,"instance");let i=r;export{i as ApiService};
|
|
2
2
|
//# sourceMappingURL=axios-client.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axios-client.mjs","sources":["../../../../../packages/utils/src/api-client/axios-client.ts"],"sourcesContent":["import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n BaseSuccessResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n SuccessResponse,\n UrlObjectType,\n} from './types'\nimport { isPlainObject } from '../types'\n\n/**\n * Axios API 响应的统一封装\n * @template W - 是否返回完整响应,true 返回完整响应,false 只返回 data\n * @template T - 响应数据的类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n */\nexport interface AxiosUseApiResponse<\n W extends boolean = false,\n T = unknown,\n S extends BaseSuccessResponse<T> = SuccessResponse<T>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n res: W extends true ? S : T\n error: E | null\n}\n\n/**\n * API 服务类,提供统一的请求处理和错误处理\n * @template T - API 类型映射\n * @template U - URL 配置对象类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n *\n * @example\n * ```typescript\n * // 定义 API 类型映射\n * interface UserApi extends ApiTypeMap<UserUrlObject> {\n * '/user/list': {\n * request: { page: number; size: number }\n * response: User[]\n * }\n * }\n *\n * // 使用默认响应类型\n * const api = new ApiService<UserApi, UserUrlObject>(axios.create(), false)\n *\n * // 使用自定义响应类型\n * interface CustomSuccessResponse<T> {\n * status: number\n * result: T\n * msg: string\n * }\n *\n * interface CustomErrorResponse {\n * status: number\n * result: null\n * msg: string\n * }\n *\n * const customApi = new ApiService<\n * UserApi,\n * UserUrlObject,\n * CustomSuccessResponse<unknown>,\n * CustomErrorResponse\n * >(axios.create(), false)\n *\n * // 发起请求\n * const { res, error } = await api.useApi({\n * url: '/user/list',\n * method: 'GET',\n * params: { page: 1, size: 10 }\n * })\n * ```\n */\nexport class ApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n S extends BaseSuccessResponse = SuccessResponse<unknown>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: ApiService<any, any, any, any>\n\n /**\n * 构造函数,实现单例模式\n * @param apiInstance - Axios 实例\n * @param isWholeResponse - 是否返回完整响应\n */\n constructor(\n private apiInstance: AxiosInstance,\n private isWholeResponse: boolean,\n ) {\n if (ApiService.instance) {\n return ApiService.instance as ApiService<T, U, S, E>\n }\n ApiService.instance = this\n this.isWholeResponse = isWholeResponse\n }\n\n /**\n * 判断是否为业务错误\n * @param obj - 待判断的对象\n */\n private isBusinessError(obj: E): boolean {\n return isPlainObject(obj)\n && typeof (obj as any).message === 'string'\n && typeof (obj as any).code === 'number'\n && (obj as any).code !== 0\n }\n\n /**\n * 判断是否为 Axios 响应对象\n * @param value - 待判断的值\n */\n private isAxiosResponse(value: any): value is AxiosResponse {\n return isPlainObject(value)\n && value.data !== undefined\n && this.isBusinessError(value.data)\n && value.status !== undefined\n && value.statusText !== undefined\n && value.headers !== undefined\n && value.config !== undefined\n && value.request !== undefined\n }\n\n /**\n * 判断是否为错误响应\n * @param value - 待判断的值\n */\n private isErrorResponse(value: any): value is E {\n return 'code' in value && 'data' in value && 'message' in value && value.code !== 0\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应,true 返回 SuccessResponse,false 只返回 data\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数(GET 请求会自动转为 params,其他方法转为 data)\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns Promise<UseApiResponse<W, T, S, E>> - 包含 res 和 error 的统一响应对象\n */\n public useApi = async <\n K extends U,\n W extends boolean = false,\n >(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse: W = this.isWholeResponse as W,\n ): Promise<AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>> => {\n let res: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['res'] | null = null\n let error: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['error'] = null\n\n try {\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n\n // 发起请求\n const response = await this.apiInstance<SuccessResponse<T[K['url']]['response']>>(config)\n res = isWholeResponse\n ? response.data\n : response.data.data\n }\n catch (err: any) {\n // 错误处理\n if (err.name !== 'AxiosError') {\n if (this.isAxiosResponse(err)) {\n error = err.data as E\n }\n else if (this.isErrorResponse(err)) {\n error = err\n }\n }\n else {\n console.error(err)\n }\n }\n\n return { res: res!, error }\n }\n\n /**\n * 发起 API 请求\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns 根据 isWholeResponse 返回完整响应或解包后的数据\n */\n public apiClient = async <K extends U, W extends boolean = false>(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse?: W,\n ): Promise<W extends true ? AxiosResponse<T[K['url']]['response']> : T[K['url']]['response']> => {\n const useWholeResponse = isWholeResponse ?? this.isWholeResponse\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n if (config.proxyPrefix) {\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n }\n\n // 发起请求,利用 axios 的第二个泛型参数 R 控制解包\n if (useWholeResponse) {\n return await this.apiInstance<T[K['url']]['response']>(config)\n }\n else {\n return await this.apiInstance<any, T[K['url']]['response']>(config)\n }\n }\n}\n"],"names":["_ApiService","constructor","apiInstance","isWholeResponse","_this","this","__publicField","async","axiosConfig","params","arguments","length","undefined","res","error","config","method","includes","toUpperCase","data","url","proxyPrefix","response","err","name","isAxiosResponse","isErrorResponse","
|
|
1
|
+
{"version":3,"file":"axios-client.mjs","sources":["../../../../../packages/utils/src/api-client/axios-client.ts"],"sourcesContent":["import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n BaseSuccessResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n SuccessResponse,\n UrlObjectType,\n} from './types'\nimport { isPlainObject } from '../types'\n\n/**\n * Axios API 响应的统一封装\n * @template W - 是否返回完整响应,true 返回完整响应,false 只返回 data\n * @template T - 响应数据的类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n */\nexport interface AxiosUseApiResponse<\n W extends boolean = false,\n T = unknown,\n S extends BaseSuccessResponse<T> = SuccessResponse<T>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n res: W extends true ? S : T\n error: E | null\n}\n\n/**\n * API 服务类,提供统一的请求处理和错误处理\n * @template T - API 类型映射\n * @template U - URL 配置对象类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n *\n * @example\n * ```typescript\n * // 定义 API 类型映射\n * interface UserApi extends ApiTypeMap<UserUrlObject> {\n * '/user/list': {\n * request: { page: number; size: number }\n * response: User[]\n * }\n * }\n *\n * // 使用默认响应类型\n * const api = new ApiService<UserApi, UserUrlObject>(axios.create(), false)\n *\n * // 使用自定义响应类型\n * interface CustomSuccessResponse<T> {\n * status: number\n * result: T\n * msg: string\n * }\n *\n * interface CustomErrorResponse {\n * status: number\n * result: null\n * msg: string\n * }\n *\n * const customApi = new ApiService<\n * UserApi,\n * UserUrlObject,\n * CustomSuccessResponse<unknown>,\n * CustomErrorResponse\n * >(axios.create(), false)\n *\n * // 发起请求\n * const { res, error } = await api.useApi({\n * url: '/user/list',\n * method: 'GET',\n * params: { page: 1, size: 10 }\n * })\n * ```\n */\nexport class ApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n S extends BaseSuccessResponse = SuccessResponse<unknown>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: ApiService<any, any, any, any>\n\n /**\n * 构造函数,实现单例模式\n * @param apiInstance - Axios 实例\n * @param isWholeResponse - 是否返回完整响应\n */\n constructor(\n private apiInstance: AxiosInstance,\n private isWholeResponse: boolean,\n ) {\n if (ApiService.instance) {\n return ApiService.instance as ApiService<T, U, S, E>\n }\n ApiService.instance = this\n this.isWholeResponse = isWholeResponse\n }\n\n /**\n * 判断是否为业务错误\n * @param obj - 待判断的对象\n */\n private isBusinessError(obj: E): boolean {\n return isPlainObject(obj)\n && typeof (obj as any).message === 'string'\n && typeof (obj as any).code === 'number'\n && (obj as any).code !== 0\n }\n\n /**\n * 判断是否为 Axios 响应对象\n * @param value - 待判断的值\n */\n private isAxiosResponse(value: any): value is AxiosResponse {\n return isPlainObject(value)\n && value.data !== undefined\n && this.isBusinessError(value.data)\n && value.status !== undefined\n && value.statusText !== undefined\n && value.headers !== undefined\n && value.config !== undefined\n && value.request !== undefined\n }\n\n /**\n * 判断是否为错误响应\n * @param value - 待判断的值\n */\n private isErrorResponse(value: any): value is E {\n return 'code' in value && 'data' in value && 'message' in value && value.code !== 0\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应,true 返回 SuccessResponse,false 只返回 data\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数(GET 请求会自动转为 params,其他方法转为 data)\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns Promise<UseApiResponse<W, T, S, E>> - 包含 res 和 error 的统一响应对象\n */\n public useApi = async <\n K extends U,\n W extends boolean = false,\n >(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse: W = this.isWholeResponse as W,\n ): Promise<AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>> => {\n let res: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['res'] | null = null\n let error: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['error'] = null\n\n try {\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n\n // 发起请求\n const response = await this.apiInstance<SuccessResponse<T[K['url']]['response']>>(config)\n res = isWholeResponse\n ? response.data\n : response.data.data\n }\n catch (err: any) {\n // 错误处理\n if (err.name !== 'AxiosError') {\n if (this.isAxiosResponse(err)) {\n error = err.data as E\n }\n else if (this.isErrorResponse(err)) {\n error = err\n }\n }\n else {\n console.error(err)\n }\n }\n\n return { res: res!, error }\n }\n\n /**\n * 发起 API 请求\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns 根据 isWholeResponse 返回完整响应或解包后的数据\n */\n public apiClient = async <K extends U, W extends boolean = false>(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse?: W,\n ): Promise<W extends true ? AxiosResponse<T[K['url']]['response']> : T[K['url']]['response']> => {\n const useWholeResponse = isWholeResponse ?? this.isWholeResponse\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n if (config.proxyPrefix) {\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n }\n\n // 发起请求,利用 axios 的第二个泛型参数 R 控制解包\n if (useWholeResponse) {\n return await this.apiInstance<T[K['url']]['response']>(config)\n }\n else {\n return await this.apiInstance<any, T[K['url']]['response']>(config)\n }\n }\n}\n"],"names":["_ApiService","constructor","apiInstance","isWholeResponse","_this","this","__publicField","async","axiosConfig","params","arguments","length","undefined","res","error","config","method","includes","toUpperCase","data","url","proxyPrefix","response","err","name","isAxiosResponse","isErrorResponse","instance","isBusinessError","obj","isPlainObject","message","code","value","status","statusText","headers","request","ApiService"],"mappings":"uMA8EO,MAAMA,EAAN,MAAMA,EAaXC,WAAAA,CACUC,EACAC,GACR,IAAAC,EAAAC,KACA,GAHQA,KAAAH,YAAAA,EACAG,KAAAF,gBAAAA,EAoDVG,EAAAD,KAAO,SAASE,eAIdC,EAGAC,GAE0G,IAD1GN,EAAAO,UAAAC,OAAA,QAAAC,IAAAF,UAAA,GAAAA,UAAA,GAAqBN,EAAKD,gBAEtBU,EAAkH,KAClHC,EAA+G,KAEnH,IAEE,MAAMC,EAAS,IACVP,KACCC,EAAUD,EAAYQ,QAAU,CAAC,OAAOC,SAAST,EAAYQ,OAAOE,eAAiB,CAAET,UAAW,CAAEU,KAAMV,GAAY,CAAA,GAI5HM,EAAOK,KAAOL,EAAOM,aAAe,IAAMb,EAAYY,WAC/CL,EAAOM,YAGd,MAAMC,QAAiBlB,EAAKF,YAAsDa,GAClFF,EAAMV,EACFmB,EAASH,KACTG,EAASH,KAAKA,IACpB,OACOI,GAEY,eAAbA,EAAIC,OACFpB,EAAKqB,gBAAgBF,GACvBT,EAAQS,EAAIJ,KAELf,EAAKsB,gBAAgBH,KAC5BT,EAAQS,GAMd,CAEA,MAAO,CAAEV,MAAWC,QACtB,GAWAR,EAAAD,KAAO,YAAYE,MACjBC,EAGAC,EACAN,KAEyBA,GAAmBE,KAAKF,gBAAjD,MAEMY,EAAS,IACVP,KACCC,EAAUD,EAAYQ,QAAU,CAAC,OAAOC,SAAST,EAAYQ,OAAOE,eAAiB,CAAET,UAAW,CAAEU,KAAMV,GAAY,CAAA,GAU5H,OANIM,EAAOM,cACTN,EAAOK,KAAOL,EAAOM,aAAe,IAAMb,EAAYY,WAC/CL,EAAOM,mBAKDhB,KAAKH,YAAqCa,KAjIrDf,EAAW2B,SACb,OAAO3B,EAAW2B,SAEpB3B,EAAW2B,SAAWtB,KACtBA,KAAKF,gBAAkBA,CACzB,CAMQyB,eAAAA,CAAgBC,GACtB,OAAOC,EAAcD,IACgB,iBAAxBA,EAAYE,SACS,iBAArBF,EAAYG,MACE,IAArBH,EAAYG,IACpB,CAMQP,eAAAA,CAAgBQ,GACtB,OAAOH,EAAcG,SACD,IAAfA,EAAMd,MACNd,KAAKuB,gBAAgBK,EAAMd,YACV,IAAjBc,EAAMC,aACe,IAArBD,EAAME,iBACY,IAAlBF,EAAMG,cACW,IAAjBH,EAAMlB,aACY,IAAlBkB,EAAMI,OACb,CAMQX,eAAAA,CAAgBO,GACtB,MAAO,SAAUA,GAAS,SAAUA,GAAS,YAAaA,GAAwB,IAAfA,EAAMD,IAC3E,GAlDA1B,EANWN,EAMI,YANV,IAAMsC,EAANtC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var
|
|
1
|
+
var t=Object.defineProperty,e=(e,s,r)=>((e,s,r)=>s in e?t(e,s,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[s]=r)(e,"symbol"!=typeof s?s+"":s,r);class s extends Error{constructor(t,s,r,n){super(s),e(this,"code"),e(this,"details"),e(this,"status"),this.name="ApiError",this.code=t,this.status=r,this.details=n}}const r=class t{constructor(s){if(this.client=s,e(this,"useApi",async(t,e)=>{let s=null,r=null;try{const{url:r,proxyPrefix:n,...a}=t,o=(n||"")+r,i={...a};e&&("GET"===t.method.toUpperCase()?i.searchParams=e:i.json=e);const c=await this.client(o,i);s=(c.headers.get("content-type")??"").toLowerCase().includes("text/event-stream")?c.body:await c.json()}catch(t){r=t}return{res:s,error:r}}),e(this,"apiClient",async(t,e)=>{const{url:s,method:r,proxyPrefix:n,...a}=t,o=(n||"")+s,i={...a,method:r.toLowerCase(),throwOnError:!0};e&&("GET"===r.toUpperCase()?i.searchParams=e:i.json=e);const c=await this.client(o,i);return(c.headers.get("content-type")??"").toLowerCase().includes("text/event-stream")?c.body:await c.json()}),t.instance)return t.instance;t.instance=this}};e(r,"instance");let n=r;export{s as ApiError,n as FetchApiService};
|
|
2
2
|
//# sourceMappingURL=fetch-client.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-client.mjs","sources":["../../../../../packages/utils/src/api-client/fetch-client.ts"],"sourcesContent":["import type { Options } from 'ky'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n UrlObjectType,\n UseApiResponse,\n} from './types'\n\n/**\n * 扩展的 API 请求配置选项\n */\ninterface ExtendedOptions extends Options {\n /** 内部标记:是否为重试请求 @internal */\n _isRetry?: boolean\n /** 静默模式:401 错误不弹出登录弹窗 @default false */\n _silent?: boolean\n /** 操作上下文:用于登录弹窗说明 */\n _actionContext?: string\n /** 错误处理策略:是否抛出错误 @default false */\n throwOnError?: boolean\n}\n\n/**\n * 自定义 API 错误类\n */\nexport class ApiError extends Error {\n code: string\n details?: string\n status: number\n\n constructor(code: string, message: string, status: number, details?: string) {\n super(message)\n this.name = 'ApiError'\n this.code = code\n this.status = status\n this.details = details\n }\n}\n\n// ============================================================================\n// Fetch API 服务类\n// ============================================================================\n\n/**\n * Fetch API 服务类,基于 ky 提供统一的请求处理\n */\nexport class FetchApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: FetchApiService<any, any, any>\n\n constructor(private client: any) {\n if (FetchApiService.instance) {\n return FetchApiService.instance as FetchApiService<T, U, E>\n }\n FetchApiService.instance = this\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @param config -
|
|
1
|
+
{"version":3,"file":"fetch-client.mjs","sources":["../../../../../packages/utils/src/api-client/fetch-client.ts"],"sourcesContent":["import type { Options } from 'ky'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n UrlObjectType,\n UseApiResponse,\n} from './types'\n\n/**\n * 扩展的 API 请求配置选项\n */\ninterface ExtendedOptions extends Options {\n /** 内部标记:是否为重试请求 @internal */\n _isRetry?: boolean\n /** 静默模式:401 错误不弹出登录弹窗 @default false */\n _silent?: boolean\n /** 操作上下文:用于登录弹窗说明 */\n _actionContext?: string\n /** 错误处理策略:是否抛出错误 @default false */\n throwOnError?: boolean\n}\n\n/**\n * 自定义 API 错误类\n */\nexport class ApiError extends Error {\n code: string\n details?: string\n status: number\n\n constructor(code: string, message: string, status: number, details?: string) {\n super(message)\n this.name = 'ApiError'\n this.code = code\n this.status = status\n this.details = details\n }\n}\n\n// ============================================================================\n// Fetch API 服务类\n// ============================================================================\n\n/**\n * Fetch API 服务类,基于 ky 提供统一的请求处理\n */\nexport class FetchApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: FetchApiService<any, any, any>\n\n constructor(private client: any) {\n if (FetchApiService.instance) {\n return FetchApiService.instance as FetchApiService<T, U, E>\n }\n FetchApiService.instance = this\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @param config - 请求配置(单参数时使用 ky 原生参数如 searchParams/json)\n * @param requestData - 请求数据(双参数时自动根据 method 处理)\n * @returns Promise<{ res, error }> - 统一响应格式\n */\n public useApi = async <K extends U>(\n config: Omit<ExtendedOptions, 'method'> & K,\n requestData?: RequestParams<T[K['url']]['request']> | RequestPayload<T[K['url']]['request']>,\n ): Promise<UseApiResponse<T[K['url']]['response'], E>> => {\n let res: T[K['url']]['response'] | null = null\n let error: E | null = null\n\n try {\n // 构建请求配置\n const { url, proxyPrefix, ...restOptions } = config\n const fullUrl = (proxyPrefix || '') + url\n\n const options: ExtendedOptions = {\n ...restOptions,\n }\n\n // 双参数调用:自动根据 method 处理\n if (requestData) {\n if (config.method.toUpperCase() === 'GET') {\n options.searchParams = requestData\n }\n else {\n options.json = requestData\n }\n }\n\n // 发起请求\n const response = await this.client(fullUrl, options)\n\n // 处理 SSE 流式响应\n const contentType = response.headers.get('content-type') ?? ''\n if (contentType.toLowerCase().includes('text/event-stream')) {\n res = response.body\n }\n else {\n res = await response.json()\n }\n }\n catch (err: any) {\n // 错误已在 ky hooks 中处理,这里只需捕获\n error = err\n }\n\n return { res, error }\n }\n\n /**\n * 发起 API 请求,直接返回数据或抛出错误\n * @template K - URL 配置对象类型\n * @param config - 请求配置(单参数时使用 ky 原生参数如 searchParams/json)\n * @param requestData - 请求数据(双参数时自动根据 method 处理)\n * @returns Promise<Response> - 直接返回响应数据\n */\n public apiClient = async <K extends U>(\n config: Omit<ExtendedOptions, 'method'> & K,\n requestData?: RequestParams<T[K['url']]['request']> | RequestPayload<T[K['url']]['request']>,\n ): Promise<T[K['url']]['response']> => {\n const { url, method, proxyPrefix, ...restOptions } = config\n const fullUrl = (proxyPrefix || '') + url\n\n const options: ExtendedOptions = {\n ...restOptions,\n method: method.toLowerCase(),\n throwOnError: true,\n }\n\n // 双参数调用:自动根据 method 处理\n if (requestData) {\n if (method.toUpperCase() === 'GET') {\n options.searchParams = requestData\n }\n else {\n options.json = requestData\n }\n }\n\n // 发起请求\n const response = await this.client(fullUrl, options)\n\n // 处理 SSE 流式响应\n const contentType = response.headers.get('content-type') ?? ''\n if (contentType.toLowerCase().includes('text/event-stream')) {\n return response.body as any\n }\n\n return await response.json()\n }\n}\n"],"names":["ApiError","Error","constructor","code","message","status","details","super","__publicField","this","name","_FetchApiService","client","async","config","requestData","res","error","url","proxyPrefix","restOptions","fullUrl","options","method","toUpperCase","searchParams","json","response","headers","get","toLowerCase","includes","body","err","throwOnError","instance","FetchApiService"],"mappings":"0JA4BO,MAAMA,UAAiBC,MAK5BC,WAAAA,CAAYC,EAAcC,EAAiBC,EAAgBC,GACzDC,MAAMH,GALRI,EAAAC,KAAA,QACAD,EAAAC,KAAA,WACAD,EAAAC,KAAA,UAIEA,KAAKC,KAAO,WACZD,KAAKN,KAAOA,EACZM,KAAKJ,OAASA,EACdI,KAAKH,QAAUA,CACjB,EAUK,MAAMK,EAAN,MAAMA,EAOXT,WAAAA,CAAoBU,GAClB,GADkBH,KAAAG,OAAAA,EAcpBJ,EAAAC,KAAO,SAASI,MACdC,EACAC,KAEA,IAAIC,EAAsC,KACtCC,EAAkB,KAEtB,IAEE,MAAMC,IAAEA,EAAAC,YAAKA,KAAgBC,GAAgBN,EACvCO,GAAWF,GAAe,IAAMD,EAEhCI,EAA2B,IAC5BF,GAIDL,IACkC,QAAhCD,EAAOS,OAAOC,cAChBF,EAAQG,aAAeV,EAGvBO,EAAQI,KAAOX,GAKnB,MAAMY,QAAiBlB,KAAKG,OAAOS,EAASC,GAK1CN,GAFkBW,EAASC,QAAQC,IAAI,iBAAmB,IAC5CC,cAAcC,SAAS,qBAC/BJ,EAASK,WAGHL,EAASD,MAEzB,OACOO,GAELhB,EAAQgB,CACV,CAEA,MAAO,CAAEjB,MAAKC,WAUhBT,EAAAC,KAAO,YAAYI,MACjBC,EACAC,KAEA,MAAMG,IAAEA,EAAAK,OAAKA,EAAAJ,YAAQA,KAAgBC,GAAgBN,EAC/CO,GAAWF,GAAe,IAAMD,EAEhCI,EAA2B,IAC5BF,EACHG,OAAQA,EAAOO,cACfI,cAAc,GAIZnB,IAC2B,QAAzBQ,EAAOC,cACTF,EAAQG,aAAeV,EAGvBO,EAAQI,KAAOX,GAKnB,MAAMY,QAAiBlB,KAAKG,OAAOS,EAASC,GAI5C,OADoBK,EAASC,QAAQC,IAAI,iBAAmB,IAC5CC,cAAcC,SAAS,qBAC9BJ,EAASK,WAGLL,EAASD,SAlGlBf,EAAgBwB,SAClB,OAAOxB,EAAgBwB,SAEzBxB,EAAgBwB,SAAW1B,IAC7B,GAPAD,EALWG,EAKI,YALV,IAAMyB,EAANzB"}
|
package/es/src/argo-log.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var i=Object.defineProperty,
|
|
1
|
+
var i=Object.defineProperty,t=(t,s,e)=>((t,s,e)=>s in t?i(t,s,{enumerable:!0,configurable:!0,writable:!0,value:e}):t[s]=e)(t,"symbol"!=typeof s?s+"":s,e);const s=class i{constructor(){t(this,"sdkPromise",null),t(this,"sdk",null)}static getInstance(){return i.instance||(i.instance=new i),i.instance}async loadSDK(){if(this.sdk)return this.sdk;if(this.sdkPromise)return this.sdkPromise;if("undefined"==typeof window)return null;const i=window;return i.__argoLogSDKPromise?(this.sdkPromise=i.__argoLogSDKPromise,this.sdk=await this.sdkPromise,this.sdk):(this.sdkPromise=this.createSDKPromise(),i.__argoLogSDKPromise=this.sdkPromise,this.sdk=await this.sdkPromise,this.sdk)}async createSDKPromise(){try{return(await import("ans-javascript-sdk")).default}catch(i){return this.createMockSDK()}}createMockSDK(){return{init:i=>{},track:(i,t)=>{},profileSet:i=>{},alias:i=>{}}}getSDK(){return this.sdk}isLoaded(){return null!==this.sdk}};t(s,"instance");const e=s.getInstance(),n=class i{constructor(s){t(this,"AnalysysAgent",null),t(this,"pendingQueue",[]),t(this,"isInitialized",!1),t(this,"isInitializing",!1),t(this,"track",(i,t)=>{const s=()=>{i&&this.AnalysysAgent&&this.AnalysysAgent.track(i,t)};if(this.isInitialized)try{s()}catch(i){}else this.pendingQueue.push(s)}),t(this,"setProfile",i=>{const t=()=>{i&&this.AnalysysAgent&&this.AnalysysAgent.profileSet(i)};if(this.isInitialized)try{t()}catch(i){}else this.pendingQueue.push(t)}),t(this,"setAlias",i=>{const t=()=>{i&&this.AnalysysAgent&&this.AnalysysAgent.alias(i)};if(this.isInitialized)try{t()}catch(i){}else this.pendingQueue.push(t)});try{if("undefined"==typeof window)return this;const t=JSON.stringify(s),e=i.instances.get(t);if(e)return e;if(!s)return this;this.initializeSDK(s,t)}catch(i){}return this}async initializeSDK(t,s){if(!this.isInitializing&&!this.isInitialized){this.isInitializing=!0;try{const n=await e.loadSDK();n&&(this.AnalysysAgent=n,n.init(t),this.isInitialized=!0,i.instances.set(s,this),this.processPendingQueue())}catch(i){}finally{this.isInitializing=!1}}}processPendingQueue(){this.pendingQueue.forEach(i=>i()),this.pendingQueue=[]}get initialized(){return this.isInitialized}async waitForInitialization(){if(this.isInitialized)return!0;const i=Date.now();for(;!this.isInitialized&&Date.now()-i<5e3;)await new Promise(i=>setTimeout(i,100));return this.isInitialized}};t(n,"instances",new Map);let a=n;export{a as ArgoLog};
|
|
2
2
|
//# sourceMappingURL=argo-log.mjs.map
|
package/es/src/argo-log.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"argo-log.mjs","sources":["../../../../packages/utils/src/argo-log.ts"],"sourcesContent":["// SDK 配置接口\nexport interface AnalysysConfig {\n encryptType?: number\n debugMode?: number\n appkey: string\n uploadURL: string\n autoProfile?: boolean\n autoTrack?: boolean\n}\n\n// SDK 实例接口\nexport interface AnalysysAgentInterface {\n init: (config: AnalysysConfig) => void\n track: (eventName: string, properties?: Record<string, any>) => void\n profileSet: (properties: Record<string, any>) => void\n alias: (aliasId: string) => void\n}\n\n// 全局窗口类型扩展\ndeclare global {\n interface Window {\n __argoLogSDKPromise?: Promise<AnalysysAgentInterface | null>\n }\n}\n\n// 定义配置项的类型别名,保持向后兼容\nexport interface EnvironmentConfig extends AnalysysConfig {}\n\n/**\n * SDK 加载器 - 统一管理 SDK 的加载和初始化\n */\nclass SDKLoader {\n private static instance: SDKLoader\n private sdkPromise: Promise<AnalysysAgentInterface | null> | null = null\n private sdk: AnalysysAgentInterface | null = null\n\n private constructor() {}\n\n static getInstance(): SDKLoader {\n if (!SDKLoader.instance) {\n SDKLoader.instance = new SDKLoader()\n }\n return SDKLoader.instance\n }\n\n /**\n * 加载 SDK\n */\n async loadSDK(): Promise<AnalysysAgentInterface | null> {\n // 如果已经加载过,直接返回\n if (this.sdk) {\n return this.sdk\n }\n\n // 如果正在加载,等待加载完成\n if (this.sdkPromise) {\n return this.sdkPromise\n }\n\n // 检查浏览器环境\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return null\n }\n\n // 检查是否已有全局 Promise\n const windowAny = window as any\n if (windowAny.__argoLogSDKPromise) {\n this.sdkPromise = windowAny.__argoLogSDKPromise\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n // 创建新的加载 Promise\n this.sdkPromise = this.createSDKPromise()\n windowAny.__argoLogSDKPromise = this.sdkPromise\n\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n /**\n * 创建 SDK 加载 Promise\n */\n private async createSDKPromise(): Promise<AnalysysAgentInterface | null> {\n try {\n // 尝试动态导入\n const module = await import('ans-javascript-sdk')\n return module.default as AnalysysAgentInterface\n }\n catch (error) {\n // 在 docs 环境中,可能无法加载 SDK,提供一个 mock 实现\n console.warn('[ArgoLog] SDK 加载失败,使用 mock 实现:', error)\n return this.createMockSDK()\n }\n }\n\n /**\n * 创建 Mock SDK - 用于开发和文档环境\n */\n private createMockSDK(): AnalysysAgentInterface {\n return {\n init: (config) => {\n console.log('[ArgoLog Mock] SDK 初始化:', config)\n },\n track: (eventName, properties) => {\n console.log('[ArgoLog Mock] 追踪事件:', eventName, properties)\n },\n profileSet: (properties) => {\n console.log('[ArgoLog Mock] 设置用户画像:', properties)\n },\n alias: (aliasId) => {\n console.log('[ArgoLog Mock] 设置用户别名:', aliasId)\n },\n }\n }\n\n /**\n * 获取已加载的 SDK\n */\n getSDK(): AnalysysAgentInterface | null {\n return this.sdk\n }\n\n /**\n * 检查 SDK 是否已加载\n */\n isLoaded(): boolean {\n return this.sdk !== null\n }\n}\n\n// SDK 加载器单例\nconst sdkLoader = SDKLoader.getInstance()\n\n/**\n * ArgoLog 类 - 用于处理埋点统计的工具类\n *\n * @class ArgoLog\n * @description 基于 AnalysysAgent SDK 封装的埋点工具类,提供了埋点追踪、用户画像设置和用户别名设置等功能\n * @example\n * ```typescript\n * const argoLog = new ArgoLog({\n * appkey: 'your-app-key',\n * uploadURL: 'your-upload-url'\n * });\n *\n * // 追踪事件\n * argoLog.track('event_name', { key: 'value' });\n * ```\n */\nexport class ArgoLog<T extends EnvironmentConfig = EnvironmentConfig> {\n private static instances = new Map<string, ArgoLog<any>>()\n private AnalysysAgent: AnalysysAgentInterface | null = null\n private pendingQueue: Array<() => void> = []\n private isInitialized = false\n private isInitializing = false\n\n constructor(envConfig: T) {\n try {\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return this\n }\n\n const configKey = JSON.stringify(envConfig)\n const existingInstance = ArgoLog.instances.get(configKey)\n if (existingInstance) {\n return existingInstance\n }\n\n if (!envConfig) {\n console.error('[ArgoLog] envConfig is required')\n return this\n }\n\n this.initializeSDK(envConfig, configKey)\n }\n catch (error) {\n console.warn('[ArgoLog] Init failed:', error)\n }\n return this\n }\n\n private async initializeSDK(envConfig: T, configKey: string) {\n if (this.isInitializing || this.isInitialized) {\n return\n }\n\n this.isInitializing = true\n\n try {\n // 使用 SDK 加载器加载 SDK\n const sdk = await sdkLoader.loadSDK()\n\n if (sdk) {\n this.AnalysysAgent = sdk\n sdk.init(envConfig)\n this.isInitialized = true\n ArgoLog.instances.set(configKey, this)\n this.processPendingQueue()\n }\n else {\n console.warn('[ArgoLog] SDK 加载失败')\n }\n }\n catch (error) {\n console.warn('[ArgoLog] SDK 初始化失败:', error)\n }\n finally {\n this.isInitializing = false\n }\n }\n\n private processPendingQueue() {\n // SDK 初始化完成后,重放所有暂存的调用\n this.pendingQueue.forEach(fn => fn())\n this.pendingQueue = []\n }\n\n track = (name: string, opt?: Record<string, any>): void => {\n const exec = () => {\n if (!name) {\n console.warn('[ArgoLog] track: name is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.track(name, opt)\n }\n }\n\n if (!this.isInitialized) {\n // SDK 未初始化,暂存调用\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息,避免用户困惑\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] track failed:', error)\n }\n }\n\n setProfile = (info: Record<string, any>): void => {\n const exec = () => {\n if (!info) {\n console.warn('[ArgoLog] setProfile: info is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.profileSet(info)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setProfile failed:', error)\n }\n }\n\n setAlias = (code: string): void => {\n const exec = () => {\n if (!code) {\n console.warn('[ArgoLog] setAlias: code is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.alias(code)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setAlias failed:', error)\n }\n }\n\n /**\n * 获取 SDK 初始化状态\n */\n get initialized(): boolean {\n return this.isInitialized\n }\n\n /**\n * 等待 SDK 初始化完成\n */\n async waitForInitialization(): Promise<boolean> {\n if (this.isInitialized) {\n return true\n }\n\n // 等待最多 5 秒\n const timeout = 5000\n const startTime = Date.now()\n\n while (!this.isInitialized && (Date.now() - startTime) < timeout) {\n await new Promise(resolve => setTimeout(resolve, 100))\n }\n\n return this.isInitialized\n }\n}\n"],"names":["_SDKLoader","constructor","__publicField","this","getInstance","instance","loadSDK","sdk","sdkPromise","window","console","warn","windowAny","__argoLogSDKPromise","createSDKPromise","import","default","error","createMockSDK","init","config","log","track","eventName","properties","profileSet","alias","aliasId","getSDK","isLoaded","sdkLoader","_ArgoLog","envConfig","name","opt","exec","AnalysysAgent","isInitialized","pendingQueue","push","info","code","configKey","JSON","stringify","existingInstance","instances","get","initializeSDK","isInitializing","set","processPendingQueue","forEach","fn","initialized","waitForInitialization","startTime","Date","now","Promise","resolve","setTimeout","Map","ArgoLog"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"argo-log.mjs","sources":["../../../../packages/utils/src/argo-log.ts"],"sourcesContent":["// SDK 配置接口\nexport interface AnalysysConfig {\n encryptType?: number\n debugMode?: number\n appkey: string\n uploadURL: string\n autoProfile?: boolean\n autoTrack?: boolean\n}\n\n// SDK 实例接口\nexport interface AnalysysAgentInterface {\n init: (config: AnalysysConfig) => void\n track: (eventName: string, properties?: Record<string, any>) => void\n profileSet: (properties: Record<string, any>) => void\n alias: (aliasId: string) => void\n}\n\n// 全局窗口类型扩展\ndeclare global {\n interface Window {\n __argoLogSDKPromise?: Promise<AnalysysAgentInterface | null>\n }\n}\n\n// 定义配置项的类型别名,保持向后兼容\nexport interface EnvironmentConfig extends AnalysysConfig {}\n\n/**\n * SDK 加载器 - 统一管理 SDK 的加载和初始化\n */\nclass SDKLoader {\n private static instance: SDKLoader\n private sdkPromise: Promise<AnalysysAgentInterface | null> | null = null\n private sdk: AnalysysAgentInterface | null = null\n\n private constructor() {}\n\n static getInstance(): SDKLoader {\n if (!SDKLoader.instance) {\n SDKLoader.instance = new SDKLoader()\n }\n return SDKLoader.instance\n }\n\n /**\n * 加载 SDK\n */\n async loadSDK(): Promise<AnalysysAgentInterface | null> {\n // 如果已经加载过,直接返回\n if (this.sdk) {\n return this.sdk\n }\n\n // 如果正在加载,等待加载完成\n if (this.sdkPromise) {\n return this.sdkPromise\n }\n\n // 检查浏览器环境\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return null\n }\n\n // 检查是否已有全局 Promise\n const windowAny = window as any\n if (windowAny.__argoLogSDKPromise) {\n this.sdkPromise = windowAny.__argoLogSDKPromise\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n // 创建新的加载 Promise\n this.sdkPromise = this.createSDKPromise()\n windowAny.__argoLogSDKPromise = this.sdkPromise\n\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n /**\n * 创建 SDK 加载 Promise\n */\n private async createSDKPromise(): Promise<AnalysysAgentInterface | null> {\n try {\n // 尝试动态导入\n const module = await import('ans-javascript-sdk')\n return module.default as AnalysysAgentInterface\n }\n catch (error) {\n // 在 docs 环境中,可能无法加载 SDK,提供一个 mock 实现\n console.warn('[ArgoLog] SDK 加载失败,使用 mock 实现:', error)\n return this.createMockSDK()\n }\n }\n\n /**\n * 创建 Mock SDK - 用于开发和文档环境\n */\n private createMockSDK(): AnalysysAgentInterface {\n return {\n init: (config) => {\n console.log('[ArgoLog Mock] SDK 初始化:', config)\n },\n track: (eventName, properties) => {\n console.log('[ArgoLog Mock] 追踪事件:', eventName, properties)\n },\n profileSet: (properties) => {\n console.log('[ArgoLog Mock] 设置用户画像:', properties)\n },\n alias: (aliasId) => {\n console.log('[ArgoLog Mock] 设置用户别名:', aliasId)\n },\n }\n }\n\n /**\n * 获取已加载的 SDK\n */\n getSDK(): AnalysysAgentInterface | null {\n return this.sdk\n }\n\n /**\n * 检查 SDK 是否已加载\n */\n isLoaded(): boolean {\n return this.sdk !== null\n }\n}\n\n// SDK 加载器单例\nconst sdkLoader = SDKLoader.getInstance()\n\n/**\n * ArgoLog 类 - 用于处理埋点统计的工具类\n *\n * @class ArgoLog\n * @description 基于 AnalysysAgent SDK 封装的埋点工具类,提供了埋点追踪、用户画像设置和用户别名设置等功能\n * @example\n * ```typescript\n * const argoLog = new ArgoLog({\n * appkey: 'your-app-key',\n * uploadURL: 'your-upload-url'\n * });\n *\n * // 追踪事件\n * argoLog.track('event_name', { key: 'value' });\n * ```\n */\nexport class ArgoLog<T extends EnvironmentConfig = EnvironmentConfig> {\n private static instances = new Map<string, ArgoLog<any>>()\n private AnalysysAgent: AnalysysAgentInterface | null = null\n private pendingQueue: Array<() => void> = []\n private isInitialized = false\n private isInitializing = false\n\n constructor(envConfig: T) {\n try {\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return this\n }\n\n const configKey = JSON.stringify(envConfig)\n const existingInstance = ArgoLog.instances.get(configKey)\n if (existingInstance) {\n return existingInstance\n }\n\n if (!envConfig) {\n console.error('[ArgoLog] envConfig is required')\n return this\n }\n\n this.initializeSDK(envConfig, configKey)\n }\n catch (error) {\n console.warn('[ArgoLog] Init failed:', error)\n }\n return this\n }\n\n private async initializeSDK(envConfig: T, configKey: string) {\n if (this.isInitializing || this.isInitialized) {\n return\n }\n\n this.isInitializing = true\n\n try {\n // 使用 SDK 加载器加载 SDK\n const sdk = await sdkLoader.loadSDK()\n\n if (sdk) {\n this.AnalysysAgent = sdk\n sdk.init(envConfig)\n this.isInitialized = true\n ArgoLog.instances.set(configKey, this)\n this.processPendingQueue()\n }\n else {\n console.warn('[ArgoLog] SDK 加载失败')\n }\n }\n catch (error) {\n console.warn('[ArgoLog] SDK 初始化失败:', error)\n }\n finally {\n this.isInitializing = false\n }\n }\n\n private processPendingQueue() {\n // SDK 初始化完成后,重放所有暂存的调用\n this.pendingQueue.forEach(fn => fn())\n this.pendingQueue = []\n }\n\n track = (name: string, opt?: Record<string, any>): void => {\n const exec = () => {\n if (!name) {\n console.warn('[ArgoLog] track: name is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.track(name, opt)\n }\n }\n\n if (!this.isInitialized) {\n // SDK 未初始化,暂存调用\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息,避免用户困惑\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] track failed:', error)\n }\n }\n\n setProfile = (info: Record<string, any>): void => {\n const exec = () => {\n if (!info) {\n console.warn('[ArgoLog] setProfile: info is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.profileSet(info)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setProfile failed:', error)\n }\n }\n\n setAlias = (code: string): void => {\n const exec = () => {\n if (!code) {\n console.warn('[ArgoLog] setAlias: code is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.alias(code)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setAlias failed:', error)\n }\n }\n\n /**\n * 获取 SDK 初始化状态\n */\n get initialized(): boolean {\n return this.isInitialized\n }\n\n /**\n * 等待 SDK 初始化完成\n */\n async waitForInitialization(): Promise<boolean> {\n if (this.isInitialized) {\n return true\n }\n\n // 等待最多 5 秒\n const timeout = 5000\n const startTime = Date.now()\n\n while (!this.isInitialized && (Date.now() - startTime) < timeout) {\n await new Promise(resolve => setTimeout(resolve, 100))\n }\n\n return this.isInitialized\n }\n}\n"],"names":["_SDKLoader","constructor","__publicField","this","getInstance","instance","loadSDK","sdk","sdkPromise","window","windowAny","__argoLogSDKPromise","createSDKPromise","import","default","error","createMockSDK","init","config","track","eventName","properties","profileSet","alias","aliasId","getSDK","isLoaded","sdkLoader","_ArgoLog","envConfig","name","opt","exec","AnalysysAgent","isInitialized","pendingQueue","push","info","code","configKey","JSON","stringify","existingInstance","instances","get","initializeSDK","isInitializing","set","processPendingQueue","forEach","fn","initialized","waitForInitialization","startTime","Date","now","Promise","resolve","setTimeout","Map","ArgoLog"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
async function o(o){return new Promise((n,
|
|
1
|
+
async function o(o){return new Promise((n,d)=>{try{const e=document.createElement("script");e.src=o,e.onload=()=>{n()},e.onerror=()=>{d(new Error(`Failed to load script from ${o}`))},document.head.appendChild(e)}catch(o){d(o)}})}async function n(n){if("undefined"==typeof window)throw new TypeError("VideoUploader 只能在浏览器环境中使用");window.AliyunUpload||await async function(){try{if(await o("https://gosspublic.alicdn.com/aliyun-oss-sdk.min.js"),await o("https://cdnfile.yaomaitong.cn/cdn/js/aliyun-upload-sdk1.3.1.min.js"),!window.AliyunUpload)throw new Error("SDK 加载成功但未找到 AliyunUpload 对象")}catch(o){throw o}}();let d=null,e=null;const a=new window.AliyunUpload.Vod({onUploadProgress:n.onUploadProgress,onUploadTokenExpired:n.onUploadTokenExpired||(()=>{}),onUploadstarted:async o=>{try{const{uploadAuth:d,uploadAddress:e,videoId:t}=await(n.onUploadstarted?.(o))||{};d&&e&&t&&a.setUploadAuthAndAddress(o,d,e,t)}catch(o){throw o}},onUploadSucceed:o=>{d?.(o)},onUploadFailed:(o,n,d)=>{e?.(new Error(`${d} ${n}`))}});return{uploader:a,upload:async o=>new Promise((n,t)=>{d=n,e=t;const r=JSON.stringify({Vod:{UserData:{IsShowWaterMark:"false",Priority:"7"}}});a.addFile(o,null,null,null,r),a.startUpload()})}}function d(o,n){const d=document.createElement("a");d.download=n,d.style.display="none",d.href=o,document.body.appendChild(d),d.click(),document.body.removeChild(d)}export{n as createVideoUploader,d as downloadFile};
|
|
2
2
|
//# sourceMappingURL=file-operations.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-operations.mjs","sources":["../../../../packages/utils/src/file-operations.ts"],"sourcesContent":["declare global {\n interface Window {\n AliyunUpload: any\n OSS: any\n }\n}\n\nasync function loadScript(src: string): Promise<void> {\n return new Promise((resolve, reject) => {\n try {\n const script = document.createElement('script')\n script.src = src\n script.onload = () => {\n resolve()\n }\n script.onerror = () => {\n reject(new Error(`Failed to load script from ${src}`))\n }\n document.head.appendChild(script)\n }\n catch (error) {\n console.error('loadScript error:', error)\n reject(error)\n }\n })\n}\nasync function initAliyunSDK() {\n try {\n await loadScript('https://gosspublic.alicdn.com/aliyun-oss-sdk.min.js')\n await loadScript('https://cdnfile.yaomaitong.cn/cdn/js/aliyun-upload-sdk1.3.1.min.js')\n\n if (!window.AliyunUpload) {\n throw new Error('SDK 加载成功但未找到 AliyunUpload 对象')\n }\n }\n catch (error) {\n console.error('无法加载阿里云上传SDK:', error)\n throw error\n }\n}\n\nexport interface UploadInfo {\n file: File\n videoId?: string\n}\n\ninterface VideoUploadOptions {\n onUploadFailed?: (uploadInfo: any, code: string, message: string) => void\n onUploadSucceed?: (uploadInfo: any) => void\n onUploadProgress?: (uploadInfo: UploadInfo, totalSize: number, percent: number) => void\n onUploadTokenExpired?: (response: any) => void\n onUploadstarted?: (uploadInfo: UploadInfo) => Promise<{ uploadAuth: string, uploadAddress: string, videoId: string }>\n}\n\ninterface VideoUploadResult {\n videoId: string\n uploadInfo: any\n}\nexport interface IVideoUploader {\n uploader: any\n upload: (file: File) => Promise<VideoUploadResult>\n}\n\n/**\n * 创建阿里云视频上传器实例\n * @param options - 上传配置选项,包含各种回调函数\n * @returns 返回一个包含上传器实例和上传方法的对象\n */\nexport async function createVideoUploader(options: VideoUploadOptions): Promise<IVideoUploader> {\n // 检查是否在浏览器环境中运行\n if (typeof window === 'undefined') {\n throw new TypeError('VideoUploader 只能在浏览器环境中使用')\n }\n\n // 如果阿里云SDK未加载,则初始化SDK\n if (!window.AliyunUpload) {\n await initAliyunSDK()\n }\n\n // 声明Promise的resolve和reject函数,用于控制上传过程\n let currentResolve: ((value: VideoUploadResult) => void) | null = null\n let currentReject: ((reason: any) => void) | null = null\n\n // 创建阿里云上传实例\n const uploader = new window.AliyunUpload.Vod({\n // 上传进度回调\n onUploadProgress: options.onUploadProgress,\n // 上传凭证过期回调\n onUploadTokenExpired: options.onUploadTokenExpired || (() => {}),\n // 开始上传回调,用于设置上传凭证和地址\n onUploadstarted: async (uploadInfo: UploadInfo) => {\n try {\n const { uploadAuth, uploadAddress, videoId } = await options.onUploadstarted?.(uploadInfo) || {}\n if (uploadAuth && uploadAddress && videoId) {\n uploader.setUploadAuthAndAddress(uploadInfo, uploadAuth, uploadAddress, videoId)\n }\n }\n catch (error) {\n console.error('onUploadstarted error: ', error)\n throw error\n }\n },\n // 上传成功回调\n onUploadSucceed: (uploadInfo: any) => {\n currentResolve?.(uploadInfo)\n },\n // 上传失败回调\n onUploadFailed: (info: any, code: string, message: string) => {\n console.log('info: ', info)\n currentReject?.(new Error(`${message} ${code}`))\n },\n })\n\n /**\n * 上传文件方法\n * @param file - 要上传的文件对象\n * @returns Promise,解析为上传结果\n */\n const upload = async (file: File): Promise<VideoUploadResult> => {\n return new Promise((resolve, reject) => {\n currentResolve = resolve\n currentReject = reject\n\n // 设置上传的用户自定义数据\n const userData = JSON.stringify({\n Vod: {\n UserData: {\n IsShowWaterMark: 'false', // 不显示水印\n Priority: '7', // 上传优先级\n },\n },\n })\n\n // 添加文件到上传队列并开始上传\n uploader.addFile(file, null, null, null, userData)\n uploader.startUpload()\n })\n }\n\n // 返回上传器实例和上传方法\n return {\n uploader,\n upload,\n }\n}\n\n/**\n * 下载文件,创建一个隐藏的链接元素,设置下载属性并触发点击事件,然后移除该链接元素\n * @param url - 文件的URL\n * @param fileName - 文件的名称\n */\nexport function downloadFile(url: string, fileName: string) {\n const link = document.createElement('a')\n link.download = fileName\n link.style.display = 'none'\n link.href = url\n document.body.appendChild(link)\n link.click()\n document.body.removeChild(link)\n}\n"],"names":["async","loadScript","src","Promise","resolve","reject","script","document","createElement","onload","onerror","Error","head","appendChild","error","
|
|
1
|
+
{"version":3,"file":"file-operations.mjs","sources":["../../../../packages/utils/src/file-operations.ts"],"sourcesContent":["declare global {\n interface Window {\n AliyunUpload: any\n OSS: any\n }\n}\n\nasync function loadScript(src: string): Promise<void> {\n return new Promise((resolve, reject) => {\n try {\n const script = document.createElement('script')\n script.src = src\n script.onload = () => {\n resolve()\n }\n script.onerror = () => {\n reject(new Error(`Failed to load script from ${src}`))\n }\n document.head.appendChild(script)\n }\n catch (error) {\n console.error('loadScript error:', error)\n reject(error)\n }\n })\n}\nasync function initAliyunSDK() {\n try {\n await loadScript('https://gosspublic.alicdn.com/aliyun-oss-sdk.min.js')\n await loadScript('https://cdnfile.yaomaitong.cn/cdn/js/aliyun-upload-sdk1.3.1.min.js')\n\n if (!window.AliyunUpload) {\n throw new Error('SDK 加载成功但未找到 AliyunUpload 对象')\n }\n }\n catch (error) {\n console.error('无法加载阿里云上传SDK:', error)\n throw error\n }\n}\n\nexport interface UploadInfo {\n file: File\n videoId?: string\n}\n\ninterface VideoUploadOptions {\n onUploadFailed?: (uploadInfo: any, code: string, message: string) => void\n onUploadSucceed?: (uploadInfo: any) => void\n onUploadProgress?: (uploadInfo: UploadInfo, totalSize: number, percent: number) => void\n onUploadTokenExpired?: (response: any) => void\n onUploadstarted?: (uploadInfo: UploadInfo) => Promise<{ uploadAuth: string, uploadAddress: string, videoId: string }>\n}\n\ninterface VideoUploadResult {\n videoId: string\n uploadInfo: any\n}\nexport interface IVideoUploader {\n uploader: any\n upload: (file: File) => Promise<VideoUploadResult>\n}\n\n/**\n * 创建阿里云视频上传器实例\n * @param options - 上传配置选项,包含各种回调函数\n * @returns 返回一个包含上传器实例和上传方法的对象\n */\nexport async function createVideoUploader(options: VideoUploadOptions): Promise<IVideoUploader> {\n // 检查是否在浏览器环境中运行\n if (typeof window === 'undefined') {\n throw new TypeError('VideoUploader 只能在浏览器环境中使用')\n }\n\n // 如果阿里云SDK未加载,则初始化SDK\n if (!window.AliyunUpload) {\n await initAliyunSDK()\n }\n\n // 声明Promise的resolve和reject函数,用于控制上传过程\n let currentResolve: ((value: VideoUploadResult) => void) | null = null\n let currentReject: ((reason: any) => void) | null = null\n\n // 创建阿里云上传实例\n const uploader = new window.AliyunUpload.Vod({\n // 上传进度回调\n onUploadProgress: options.onUploadProgress,\n // 上传凭证过期回调\n onUploadTokenExpired: options.onUploadTokenExpired || (() => {}),\n // 开始上传回调,用于设置上传凭证和地址\n onUploadstarted: async (uploadInfo: UploadInfo) => {\n try {\n const { uploadAuth, uploadAddress, videoId } = await options.onUploadstarted?.(uploadInfo) || {}\n if (uploadAuth && uploadAddress && videoId) {\n uploader.setUploadAuthAndAddress(uploadInfo, uploadAuth, uploadAddress, videoId)\n }\n }\n catch (error) {\n console.error('onUploadstarted error: ', error)\n throw error\n }\n },\n // 上传成功回调\n onUploadSucceed: (uploadInfo: any) => {\n currentResolve?.(uploadInfo)\n },\n // 上传失败回调\n onUploadFailed: (info: any, code: string, message: string) => {\n console.log('info: ', info)\n currentReject?.(new Error(`${message} ${code}`))\n },\n })\n\n /**\n * 上传文件方法\n * @param file - 要上传的文件对象\n * @returns Promise,解析为上传结果\n */\n const upload = async (file: File): Promise<VideoUploadResult> => {\n return new Promise((resolve, reject) => {\n currentResolve = resolve\n currentReject = reject\n\n // 设置上传的用户自定义数据\n const userData = JSON.stringify({\n Vod: {\n UserData: {\n IsShowWaterMark: 'false', // 不显示水印\n Priority: '7', // 上传优先级\n },\n },\n })\n\n // 添加文件到上传队列并开始上传\n uploader.addFile(file, null, null, null, userData)\n uploader.startUpload()\n })\n }\n\n // 返回上传器实例和上传方法\n return {\n uploader,\n upload,\n }\n}\n\n/**\n * 下载文件,创建一个隐藏的链接元素,设置下载属性并触发点击事件,然后移除该链接元素\n * @param url - 文件的URL\n * @param fileName - 文件的名称\n */\nexport function downloadFile(url: string, fileName: string) {\n const link = document.createElement('a')\n link.download = fileName\n link.style.display = 'none'\n link.href = url\n document.body.appendChild(link)\n link.click()\n document.body.removeChild(link)\n}\n"],"names":["async","loadScript","src","Promise","resolve","reject","script","document","createElement","onload","onerror","Error","head","appendChild","error","createVideoUploader","options","window","TypeError","AliyunUpload","initAliyunSDK","currentResolve","currentReject","uploader","Vod","onUploadProgress","onUploadTokenExpired","onUploadstarted","uploadAuth","uploadAddress","videoId","uploadInfo","setUploadAuthAndAddress","onUploadSucceed","onUploadFailed","info","code","message","upload","userData","JSON","stringify","UserData","IsShowWaterMark","Priority","addFile","file","startUpload","downloadFile","url","fileName","link","download","style","display","href","body","click","removeChild"],"mappings":"AAOAA,eAAeC,EAAWC,GACxB,OAAO,IAAIC,QAAQ,CAACC,EAASC,KAC3B,IACE,MAAMC,EAASC,SAASC,cAAc,UACtCF,EAAOJ,IAAMA,EACbI,EAAOG,OAAS,KACdL,KAEFE,EAAOI,QAAU,KACfL,EAAO,IAAIM,MAAM,8BAA8BT,OAEjDK,SAASK,KAAKC,YAAYP,EAC5B,OACOQ,GAELT,EAAOS,EACT,GAEJ,CA2CAd,eAAsBe,EAAoBC,GAExC,GAAsB,oBAAXC,OACT,MAAM,IAAIC,UAAU,6BAIjBD,OAAOE,oBAjDdnB,iBACE,IAIE,SAHMC,EAAW,6DACXA,EAAW,uEAEZgB,OAAOE,aACV,MAAM,IAAIR,MAAM,+BAEpB,OACOG,GAEL,MAAMA,CACR,CACF,CAqCUM,GAIR,IAAIC,EAA8D,KAC9DC,EAAgD,KAGpD,MAAMC,EAAW,IAAIN,OAAOE,aAAaK,IAAI,CAE3CC,iBAAkBT,EAAQS,iBAE1BC,qBAAsBV,EAAQU,sBAAA,MAAgC,GAE9DC,gBAAiB3B,UACf,IACE,MAAM4B,WAAEA,EAAAC,cAAYA,EAAAC,QAAeA,SAAkBd,EAAQW,kBAAkBI,KAAe,CAAA,EAC1FH,GAAcC,GAAiBC,GACjCP,EAASS,wBAAwBD,EAAYH,EAAYC,EAAeC,EAE5E,OACOhB,GAEL,MAAMA,CACR,GAGFmB,gBAAkBF,IAChBV,IAAiBU,IAGnBG,eAAgBA,CAACC,EAAWC,EAAcC,KAExCf,IAAgB,IAAIX,MAAM,GAAG0B,KAAWD,SA+B5C,MAAO,CACLb,WACAe,OAxBatC,SACN,IAAIG,QAAQ,CAACC,EAASC,KAC3BgB,EAAiBjB,EACjBkB,EAAgBjB,EAGhB,MAAMkC,EAAWC,KAAKC,UAAU,CAC9BjB,IAAK,CACHkB,SAAU,CACRC,gBAAiB,QACjBC,SAAU,QAMhBrB,EAASsB,QAAQC,EAAM,KAAM,KAAM,KAAMP,GACzChB,EAASwB,gBASf,CAOO,SAASC,EAAaC,EAAaC,GACxC,MAAMC,EAAO5C,SAASC,cAAc,KACpC2C,EAAKC,SAAWF,EAChBC,EAAKE,MAAMC,QAAU,OACrBH,EAAKI,KAAON,EACZ1C,SAASiD,KAAK3C,YAAYsC,GAC1BA,EAAKM,QACLlD,SAASiD,KAAKE,YAAYP,EAC5B"}
|
package/es/src/json.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{utils as e,writeFile as t,read as o}from"xlsx";function r(){let o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2?arguments[2]:void 0;try{if(!r.length)return;const s=e.aoa_to_sheet(r);n&&(s["!merges"]=n);const c=e.book_new();e.book_append_sheet(c,s,""),t(c,`${o}.xlsx`)}catch(e){return
|
|
1
|
+
import{utils as e,writeFile as t,read as o}from"xlsx";function r(){let o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2?arguments[2]:void 0;try{if(!r.length)return;const s=e.aoa_to_sheet(r);n&&(s["!merges"]=n);const c=e.book_new();e.book_append_sheet(c,s,""),t(c,`${o}.xlsx`)}catch(e){return new Error("数据导出失败")}}function n(t,r,n){return new Promise((s,c)=>{const a=new FileReader;a.readAsArrayBuffer(t),a.onload=t=>{const c=t.target?.result,a=o(c,{type:"binary"}),h=[];for(const t in a.Sheets)if(Object.prototype.hasOwnProperty.call(a.Sheets,t)){let o=[];const r=a.Sheets[t]["!ref"]||"",s=r.split(":"),c=n+s[1].toString();o=o.concat(e.sheet_to_json(a.Sheets[t],{header:1,range:n?c:r}));const i=o[0];o.shift();const l=o.map(e=>{const t={};return i.forEach((o,r)=>{t[o]=e[r]}),t});h.push(...l)}r&&r(h),s(h)},a.onerror=e=>{c(e)}})}export{r as JsonToExcel,n as excelToJson};
|
|
2
2
|
//# sourceMappingURL=json.mjs.map
|
package/es/src/json.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"json.mjs","sources":["../../../../packages/utils/src/json.ts"],"sourcesContent":["import { read, utils, writeFile } from 'xlsx'\n\n/**\n * 将JSON数据导出为Excel文件\n * @param title - Excel文件的标题\n * @param json - JSON数据\n * @param merge - 合并单元格的配置\n * @returns 如果JSON数据为空,则返回undefined,否则返回Excel文件的名称\n */\nexport function JsonToExcel(title = '', json: (string | number)[][] = [], merge?: any) {\n try {\n if (!json.length) {\n return\n }\n // 创建worksheet\n const worksheet = utils.aoa_to_sheet(json)\n if (merge) {\n worksheet['!merges'] = merge\n }\n // 新建空workbook,加入worksheet\n const workbook = utils.book_new()\n utils.book_append_sheet(workbook, worksheet, '')\n writeFile(workbook, `${title}.xlsx`)\n }\n catch (e) {\n console.log('e: ', e)\n return new Error('数据导出失败')\n }\n}\n\n/**\n * 将Excel数据转换为JSON\n * @param file - Excel文件\n * @param cb - 转换完成后的回调函数\n * @param start - 开始行号\n */\nexport function excelToJson(file: File, cb: (json: any[]) => void, start: number): Promise<any[]> {\n return new Promise((resolve, reject) => {\n const reader = new FileReader()\n reader.readAsArrayBuffer(file)\n reader.onload = (e) => {\n const data = e.target?.result\n const workbook = read(data, { type: 'binary' })\n // 遍历每张表读取\n const json: any[] = []\n for (const sheet in workbook.Sheets) {\n if (Object.prototype.hasOwnProperty.call(workbook.Sheets, sheet)) {\n let arr: string[][] = []\n const fromTo = workbook.Sheets[sheet]['!ref'] || ''\n const end = fromTo.split(':')\n const space = start + end[1].toString()\n arr = arr.concat(utils.sheet_to_json(workbook.Sheets[sheet], { header: 1, range: start ? space : fromTo }))\n const titleArr = arr[0]\n arr.shift()\n const excelJsonArr = arr.map((item) => {\n const obj: {\n [key: string]: any\n } = {}\n titleArr.forEach((titleItem: string, index: number) => {\n obj[titleItem] = item[index]\n })\n return obj\n })\n json.push(...excelJsonArr)\n }\n }\n if (cb) {\n cb(json)\n }\n resolve(json)\n }\n reader.onerror = (e) => {\n reject(e)\n }\n })\n}\n"],"names":["JsonToExcel","title","arguments","length","undefined","json","merge","worksheet","utils","aoa_to_sheet","workbook","book_new","book_append_sheet","writeFile","e","
|
|
1
|
+
{"version":3,"file":"json.mjs","sources":["../../../../packages/utils/src/json.ts"],"sourcesContent":["import { read, utils, writeFile } from 'xlsx'\n\n/**\n * 将JSON数据导出为Excel文件\n * @param title - Excel文件的标题\n * @param json - JSON数据\n * @param merge - 合并单元格的配置\n * @returns 如果JSON数据为空,则返回undefined,否则返回Excel文件的名称\n */\nexport function JsonToExcel(title = '', json: (string | number)[][] = [], merge?: any) {\n try {\n if (!json.length) {\n return\n }\n // 创建worksheet\n const worksheet = utils.aoa_to_sheet(json)\n if (merge) {\n worksheet['!merges'] = merge\n }\n // 新建空workbook,加入worksheet\n const workbook = utils.book_new()\n utils.book_append_sheet(workbook, worksheet, '')\n writeFile(workbook, `${title}.xlsx`)\n }\n catch (e) {\n console.log('e: ', e)\n return new Error('数据导出失败')\n }\n}\n\n/**\n * 将Excel数据转换为JSON\n * @param file - Excel文件\n * @param cb - 转换完成后的回调函数\n * @param start - 开始行号\n */\nexport function excelToJson(file: File, cb: (json: any[]) => void, start: number): Promise<any[]> {\n return new Promise((resolve, reject) => {\n const reader = new FileReader()\n reader.readAsArrayBuffer(file)\n reader.onload = (e) => {\n const data = e.target?.result\n const workbook = read(data, { type: 'binary' })\n // 遍历每张表读取\n const json: any[] = []\n for (const sheet in workbook.Sheets) {\n if (Object.prototype.hasOwnProperty.call(workbook.Sheets, sheet)) {\n let arr: string[][] = []\n const fromTo = workbook.Sheets[sheet]['!ref'] || ''\n const end = fromTo.split(':')\n const space = start + end[1].toString()\n arr = arr.concat(utils.sheet_to_json(workbook.Sheets[sheet], { header: 1, range: start ? space : fromTo }))\n const titleArr = arr[0]\n arr.shift()\n const excelJsonArr = arr.map((item) => {\n const obj: {\n [key: string]: any\n } = {}\n titleArr.forEach((titleItem: string, index: number) => {\n obj[titleItem] = item[index]\n })\n return obj\n })\n json.push(...excelJsonArr)\n }\n }\n if (cb) {\n cb(json)\n }\n resolve(json)\n }\n reader.onerror = (e) => {\n reject(e)\n }\n })\n}\n"],"names":["JsonToExcel","title","arguments","length","undefined","json","merge","worksheet","utils","aoa_to_sheet","workbook","book_new","book_append_sheet","writeFile","e","Error","excelToJson","file","cb","start","Promise","resolve","reject","reader","FileReader","readAsArrayBuffer","onload","data","target","result","read","type","sheet","Sheets","Object","prototype","hasOwnProperty","call","arr","fromTo","end","split","space","toString","concat","sheet_to_json","header","range","titleArr","shift","excelJsonArr","map","item","obj","forEach","titleItem","index","push","onerror"],"mappings":"sDASO,SAASA,IAAuE,IAA3DC,EAAAC,UAAAC,OAAA,QAAAC,IAAAF,UAAA,GAAAA,UAAA,GAAQ,GAAIG,EAAAH,UAAAC,OAAA,QAAAC,IAAAF,UAAA,GAAAA,UAAA,GAA8B,GAAII,EAAAJ,UAAAC,OAAA,EAAAD,kBAAAE,EACxE,IACE,IAAKC,EAAKF,OACR,OAGF,MAAMI,EAAYC,EAAMC,aAAaJ,GACjCC,IACFC,EAAU,WAAaD,GAGzB,MAAMI,EAAWF,EAAMG,WACvBH,EAAMI,kBAAkBF,EAAUH,EAAW,IAC7CM,EAAUH,EAAU,GAAGT,SACzB,OACOa,GAEL,OAAO,IAAIC,MAAM,SACnB,CACF,CAQO,SAASC,EAAYC,EAAYC,EAA2BC,GACjE,OAAO,IAAIC,QAAQ,CAACC,EAASC,KAC3B,MAAMC,EAAS,IAAIC,WACnBD,EAAOE,kBAAkBR,GACzBM,EAAOG,OAAUZ,IACf,MAAMa,EAAOb,EAAEc,QAAQC,OACjBnB,EAAWoB,EAAKH,EAAM,CAAEI,KAAM,WAE9B1B,EAAc,GACpB,IAAA,MAAW2B,KAAStB,EAASuB,OAC3B,GAAIC,OAAOC,UAAUC,eAAeC,KAAK3B,EAASuB,OAAQD,GAAQ,CAChE,IAAIM,EAAkB,GACtB,MAAMC,EAAS7B,EAASuB,OAAOD,GAAO,SAAW,GAC3CQ,EAAMD,EAAOE,MAAM,KACnBC,EAAQvB,EAAQqB,EAAI,GAAGG,WAC7BL,EAAMA,EAAIM,OAAOpC,EAAMqC,cAAcnC,EAASuB,OAAOD,GAAQ,CAAEc,OAAQ,EAAGC,MAAO5B,EAAQuB,EAAQH,KACjG,MAAMS,EAAWV,EAAI,GACrBA,EAAIW,QACJ,MAAMC,EAAeZ,EAAIa,IAAKC,IAC5B,MAAMC,EAEF,CAAA,EAIJ,OAHAL,EAASM,QAAQ,CAACC,EAAmBC,KACnCH,EAAIE,GAAaH,EAAKI,KAEjBH,IAEThD,EAAKoD,QAAQP,EACf,CAEEhC,GACFA,EAAGb,GAELgB,EAAQhB,IAEVkB,EAAOmC,QAAW5C,IAChBQ,EAAOR,KAGb"}
|
package/es/src/types.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const
|
|
1
|
+
const t=t=>void 0===t,e=t=>"boolean"==typeof t,n=t=>"number"==typeof t;function r(t){return"undefined"!=typeof Element&&t instanceof Element}function o(t){return t===window}function u(t){return/^[\],:{}\s]*$/.test(t.replace(/\\["\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))&&function(t){try{return JSON.parse(t),!0}catch(t){return!1}}(t)}function c(t){return t.type.startsWith("image/")}function f(t){if(null===t||"object"!=typeof t)return!1;const e=Object.getPrototypeOf(t);return null===e||e===Object.prototype}export{e as isBoolean,r as isElement,c as isImageByMimeType,u as isJSONString,n as isNumber,f as isPlainObject,t as isUndefined,o as isWindow};
|
|
2
2
|
//# sourceMappingURL=types.mjs.map
|
package/es/src/types.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.mjs","sources":["../../../../packages/utils/src/types.ts"],"sourcesContent":["export const isUndefined = (val: any): val is undefined => val === undefined\nexport const isBoolean = (val: any): val is boolean => typeof val === 'boolean'\nexport const isNumber = (val: any): val is number => typeof val === 'number'\n\nexport function isElement(e: unknown): e is Element {\n if (typeof Element === 'undefined') {\n return false\n }\n return e instanceof Element\n}\n\nexport function isWindow(val: unknown): val is Window {\n return val === window\n}\n\n/**\n * 判断字符串是否为JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是JSON字符串,则返回true,否则返回false\n */\nexport function isJSONString(str: string) {\n const jsonStringRegex = /^[\\],:{}\\s]*$/\n .test(str.replace(/\\\\[\"\\\\/bfnrtu]/g, '@')\n .replace(/\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g, ']')\n .replace(/(?:^|:|,)(?:\\s*\\[)+/g, ''))\n\n return jsonStringRegex && isValidJSON(str)\n}\n\n/**\n * 判断字符串是否为有效的JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是有效的JSON字符串,则返回true,否则返回false\n */\nfunction isValidJSON(str: string) {\n try {\n JSON.parse(str)\n return true\n }\n catch (e) {\n console.log('e: ', e)\n return false\n }\n}\n\n/**\n * 通过 MIME 类型判断文件是否为图片\n * @param file - 要检查的文件对象\n * @returns {boolean} 如果文件是图片类型返回 true,否则返回 false\n * @example\n * const file = new File([''], 'test.png', { type: 'image/png' });\n * isImageByMimeType(file); // true\n */\nexport function isImageByMimeType(file: File) {\n return file.type.startsWith('image/')\n}\n\n/**\n * 判断一个值是否为普通对象\n * @param value - 要判断的值\n * @returns 如果值是普通对象,则返回 true,否则返回 false\n */\nexport function isPlainObject(value: unknown): value is Record<string, any> {\n if (value === null || typeof value !== 'object') {\n return false\n }\n\n // 获取原型\n const proto = Object.getPrototypeOf(value)\n\n // 如果没有原型(proto === null),说明是通过 Object.create(null) 创建的\n // 或者原型就是 Object.prototype,说明是普通对象\n return proto === null || proto === Object.prototype\n}\n"],"names":["isUndefined","val","isBoolean","isNumber","isElement","e","Element","isWindow","window","isJSONString","str","test","replace","JSON","parse","
|
|
1
|
+
{"version":3,"file":"types.mjs","sources":["../../../../packages/utils/src/types.ts"],"sourcesContent":["export const isUndefined = (val: any): val is undefined => val === undefined\nexport const isBoolean = (val: any): val is boolean => typeof val === 'boolean'\nexport const isNumber = (val: any): val is number => typeof val === 'number'\n\nexport function isElement(e: unknown): e is Element {\n if (typeof Element === 'undefined') {\n return false\n }\n return e instanceof Element\n}\n\nexport function isWindow(val: unknown): val is Window {\n return val === window\n}\n\n/**\n * 判断字符串是否为JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是JSON字符串,则返回true,否则返回false\n */\nexport function isJSONString(str: string) {\n const jsonStringRegex = /^[\\],:{}\\s]*$/\n .test(str.replace(/\\\\[\"\\\\/bfnrtu]/g, '@')\n .replace(/\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g, ']')\n .replace(/(?:^|:|,)(?:\\s*\\[)+/g, ''))\n\n return jsonStringRegex && isValidJSON(str)\n}\n\n/**\n * 判断字符串是否为有效的JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是有效的JSON字符串,则返回true,否则返回false\n */\nfunction isValidJSON(str: string) {\n try {\n JSON.parse(str)\n return true\n }\n catch (e) {\n console.log('e: ', e)\n return false\n }\n}\n\n/**\n * 通过 MIME 类型判断文件是否为图片\n * @param file - 要检查的文件对象\n * @returns {boolean} 如果文件是图片类型返回 true,否则返回 false\n * @example\n * const file = new File([''], 'test.png', { type: 'image/png' });\n * isImageByMimeType(file); // true\n */\nexport function isImageByMimeType(file: File) {\n return file.type.startsWith('image/')\n}\n\n/**\n * 判断一个值是否为普通对象\n * @param value - 要判断的值\n * @returns 如果值是普通对象,则返回 true,否则返回 false\n */\nexport function isPlainObject(value: unknown): value is Record<string, any> {\n if (value === null || typeof value !== 'object') {\n return false\n }\n\n // 获取原型\n const proto = Object.getPrototypeOf(value)\n\n // 如果没有原型(proto === null),说明是通过 Object.create(null) 创建的\n // 或者原型就是 Object.prototype,说明是普通对象\n return proto === null || proto === Object.prototype\n}\n"],"names":["isUndefined","val","isBoolean","isNumber","isElement","e","Element","isWindow","window","isJSONString","str","test","replace","JSON","parse","isValidJSON","isImageByMimeType","file","type","startsWith","isPlainObject","value","proto","Object","getPrototypeOf","prototype"],"mappings":"AAAO,MAAMA,EAAeC,QAAuC,IAARA,EAC9CC,EAAaD,GAA4C,kBAARA,EACjDE,EAAYF,GAA2C,iBAARA,EAErD,SAASG,EAAUC,GACxB,MAAuB,oBAAZC,SAGJD,aAAaC,OACtB,CAEO,SAASC,EAASN,GACvB,OAAOA,IAAQO,MACjB,CAOO,SAASC,EAAaC,GAM3B,MALwB,gBACrBC,KAAKD,EAAIE,QAAQ,kBAAmB,KAClCA,QAAQ,mEAAoE,KAC5EA,QAAQ,uBAAwB,MAUvC,SAAqBF,GACnB,IAEE,OADAG,KAAKC,MAAMJ,IACJ,CACT,OACOL,GAEL,OAAO,CACT,CACF,CAjB4BU,CAAYL,EACxC,CA0BO,SAASM,EAAkBC,GAChC,OAAOA,EAAKC,KAAKC,WAAW,SAC9B,CAOO,SAASC,EAAcC,GAC5B,GAAc,OAAVA,GAAmC,iBAAVA,EAC3B,OAAO,EAIT,MAAMC,EAAQC,OAAOC,eAAeH,GAIpC,OAAiB,OAAVC,GAAkBA,IAAUC,OAAOE,SAC5C"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var e=require("../types.cjs"),s=Object.defineProperty,t=(e,t,
|
|
1
|
+
"use strict";var e=require("../types.cjs"),s=Object.defineProperty,t=(e,t,i)=>((e,t,i)=>t in e?s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i)(e,"symbol"!=typeof t?t+"":t,i);const i=class s{constructor(e,i){var r=this;if(this.apiInstance=e,this.isWholeResponse=i,t(this,"useApi",async function(e,s){let t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:r.isWholeResponse,i=null,n=null;try{const n={...e,...s?e.method&&["GET"].includes(e.method.toUpperCase())?{params:s}:{data:s}:{}};n.url=(n.proxyPrefix||"")+e.url,delete n.proxyPrefix;const o=await r.apiInstance(n);i=t?o.data:o.data.data}catch(e){"AxiosError"!==e.name&&(r.isAxiosResponse(e)?n=e.data:r.isErrorResponse(e)&&(n=e))}return{res:i,error:n}}),t(this,"apiClient",async(e,s,t)=>{t??this.isWholeResponse;const i={...e,...s?e.method&&["GET"].includes(e.method.toUpperCase())?{params:s}:{data:s}:{}};return i.proxyPrefix&&(i.url=(i.proxyPrefix||"")+e.url,delete i.proxyPrefix),await this.apiInstance(i)}),s.instance)return s.instance;s.instance=this,this.isWholeResponse=i}isBusinessError(s){return e.isPlainObject(s)&&"string"==typeof s.message&&"number"==typeof s.code&&0!==s.code}isAxiosResponse(s){return e.isPlainObject(s)&&void 0!==s.data&&this.isBusinessError(s.data)&&void 0!==s.status&&void 0!==s.statusText&&void 0!==s.headers&&void 0!==s.config&&void 0!==s.request}isErrorResponse(e){return"code"in e&&"data"in e&&"message"in e&&0!==e.code}};t(i,"instance");let r=i;exports.ApiService=r;
|
|
2
2
|
//# sourceMappingURL=axios-client.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axios-client.cjs","sources":["../../../../../packages/utils/src/api-client/axios-client.ts"],"sourcesContent":["import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n BaseSuccessResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n SuccessResponse,\n UrlObjectType,\n} from './types'\nimport { isPlainObject } from '../types'\n\n/**\n * Axios API 响应的统一封装\n * @template W - 是否返回完整响应,true 返回完整响应,false 只返回 data\n * @template T - 响应数据的类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n */\nexport interface AxiosUseApiResponse<\n W extends boolean = false,\n T = unknown,\n S extends BaseSuccessResponse<T> = SuccessResponse<T>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n res: W extends true ? S : T\n error: E | null\n}\n\n/**\n * API 服务类,提供统一的请求处理和错误处理\n * @template T - API 类型映射\n * @template U - URL 配置对象类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n *\n * @example\n * ```typescript\n * // 定义 API 类型映射\n * interface UserApi extends ApiTypeMap<UserUrlObject> {\n * '/user/list': {\n * request: { page: number; size: number }\n * response: User[]\n * }\n * }\n *\n * // 使用默认响应类型\n * const api = new ApiService<UserApi, UserUrlObject>(axios.create(), false)\n *\n * // 使用自定义响应类型\n * interface CustomSuccessResponse<T> {\n * status: number\n * result: T\n * msg: string\n * }\n *\n * interface CustomErrorResponse {\n * status: number\n * result: null\n * msg: string\n * }\n *\n * const customApi = new ApiService<\n * UserApi,\n * UserUrlObject,\n * CustomSuccessResponse<unknown>,\n * CustomErrorResponse\n * >(axios.create(), false)\n *\n * // 发起请求\n * const { res, error } = await api.useApi({\n * url: '/user/list',\n * method: 'GET',\n * params: { page: 1, size: 10 }\n * })\n * ```\n */\nexport class ApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n S extends BaseSuccessResponse = SuccessResponse<unknown>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: ApiService<any, any, any, any>\n\n /**\n * 构造函数,实现单例模式\n * @param apiInstance - Axios 实例\n * @param isWholeResponse - 是否返回完整响应\n */\n constructor(\n private apiInstance: AxiosInstance,\n private isWholeResponse: boolean,\n ) {\n if (ApiService.instance) {\n return ApiService.instance as ApiService<T, U, S, E>\n }\n ApiService.instance = this\n this.isWholeResponse = isWholeResponse\n }\n\n /**\n * 判断是否为业务错误\n * @param obj - 待判断的对象\n */\n private isBusinessError(obj: E): boolean {\n return isPlainObject(obj)\n && typeof (obj as any).message === 'string'\n && typeof (obj as any).code === 'number'\n && (obj as any).code !== 0\n }\n\n /**\n * 判断是否为 Axios 响应对象\n * @param value - 待判断的值\n */\n private isAxiosResponse(value: any): value is AxiosResponse {\n return isPlainObject(value)\n && value.data !== undefined\n && this.isBusinessError(value.data)\n && value.status !== undefined\n && value.statusText !== undefined\n && value.headers !== undefined\n && value.config !== undefined\n && value.request !== undefined\n }\n\n /**\n * 判断是否为错误响应\n * @param value - 待判断的值\n */\n private isErrorResponse(value: any): value is E {\n return 'code' in value && 'data' in value && 'message' in value && value.code !== 0\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应,true 返回 SuccessResponse,false 只返回 data\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数(GET 请求会自动转为 params,其他方法转为 data)\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns Promise<UseApiResponse<W, T, S, E>> - 包含 res 和 error 的统一响应对象\n */\n public useApi = async <\n K extends U,\n W extends boolean = false,\n >(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse: W = this.isWholeResponse as W,\n ): Promise<AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>> => {\n let res: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['res'] | null = null\n let error: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['error'] = null\n\n try {\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n\n // 发起请求\n const response = await this.apiInstance<SuccessResponse<T[K['url']]['response']>>(config)\n res = isWholeResponse\n ? response.data\n : response.data.data\n }\n catch (err: any) {\n // 错误处理\n if (err.name !== 'AxiosError') {\n if (this.isAxiosResponse(err)) {\n error = err.data as E\n }\n else if (this.isErrorResponse(err)) {\n error = err\n }\n }\n else {\n console.error(err)\n }\n }\n\n return { res: res!, error }\n }\n\n /**\n * 发起 API 请求\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns 根据 isWholeResponse 返回完整响应或解包后的数据\n */\n public apiClient = async <K extends U, W extends boolean = false>(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse?: W,\n ): Promise<W extends true ? AxiosResponse<T[K['url']]['response']> : T[K['url']]['response']> => {\n const useWholeResponse = isWholeResponse ?? this.isWholeResponse\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n if (config.proxyPrefix) {\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n }\n\n // 发起请求,利用 axios 的第二个泛型参数 R 控制解包\n if (useWholeResponse) {\n return await this.apiInstance<T[K['url']]['response']>(config)\n }\n else {\n return await this.apiInstance<any, T[K['url']]['response']>(config)\n }\n }\n}\n"],"names":["_ApiService","constructor","apiInstance","isWholeResponse","_this","this","__publicField","async","axiosConfig","params","arguments","length","undefined","res","error","config","method","includes","toUpperCase","data","url","proxyPrefix","response","err","name","isAxiosResponse","isErrorResponse","
|
|
1
|
+
{"version":3,"file":"axios-client.cjs","sources":["../../../../../packages/utils/src/api-client/axios-client.ts"],"sourcesContent":["import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n BaseSuccessResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n SuccessResponse,\n UrlObjectType,\n} from './types'\nimport { isPlainObject } from '../types'\n\n/**\n * Axios API 响应的统一封装\n * @template W - 是否返回完整响应,true 返回完整响应,false 只返回 data\n * @template T - 响应数据的类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n */\nexport interface AxiosUseApiResponse<\n W extends boolean = false,\n T = unknown,\n S extends BaseSuccessResponse<T> = SuccessResponse<T>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n res: W extends true ? S : T\n error: E | null\n}\n\n/**\n * API 服务类,提供统一的请求处理和错误处理\n * @template T - API 类型映射\n * @template U - URL 配置对象类型\n * @template S - 自定义成功响应类型\n * @template E - 自定义错误响应类型\n *\n * @example\n * ```typescript\n * // 定义 API 类型映射\n * interface UserApi extends ApiTypeMap<UserUrlObject> {\n * '/user/list': {\n * request: { page: number; size: number }\n * response: User[]\n * }\n * }\n *\n * // 使用默认响应类型\n * const api = new ApiService<UserApi, UserUrlObject>(axios.create(), false)\n *\n * // 使用自定义响应类型\n * interface CustomSuccessResponse<T> {\n * status: number\n * result: T\n * msg: string\n * }\n *\n * interface CustomErrorResponse {\n * status: number\n * result: null\n * msg: string\n * }\n *\n * const customApi = new ApiService<\n * UserApi,\n * UserUrlObject,\n * CustomSuccessResponse<unknown>,\n * CustomErrorResponse\n * >(axios.create(), false)\n *\n * // 发起请求\n * const { res, error } = await api.useApi({\n * url: '/user/list',\n * method: 'GET',\n * params: { page: 1, size: 10 }\n * })\n * ```\n */\nexport class ApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n S extends BaseSuccessResponse = SuccessResponse<unknown>,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: ApiService<any, any, any, any>\n\n /**\n * 构造函数,实现单例模式\n * @param apiInstance - Axios 实例\n * @param isWholeResponse - 是否返回完整响应\n */\n constructor(\n private apiInstance: AxiosInstance,\n private isWholeResponse: boolean,\n ) {\n if (ApiService.instance) {\n return ApiService.instance as ApiService<T, U, S, E>\n }\n ApiService.instance = this\n this.isWholeResponse = isWholeResponse\n }\n\n /**\n * 判断是否为业务错误\n * @param obj - 待判断的对象\n */\n private isBusinessError(obj: E): boolean {\n return isPlainObject(obj)\n && typeof (obj as any).message === 'string'\n && typeof (obj as any).code === 'number'\n && (obj as any).code !== 0\n }\n\n /**\n * 判断是否为 Axios 响应对象\n * @param value - 待判断的值\n */\n private isAxiosResponse(value: any): value is AxiosResponse {\n return isPlainObject(value)\n && value.data !== undefined\n && this.isBusinessError(value.data)\n && value.status !== undefined\n && value.statusText !== undefined\n && value.headers !== undefined\n && value.config !== undefined\n && value.request !== undefined\n }\n\n /**\n * 判断是否为错误响应\n * @param value - 待判断的值\n */\n private isErrorResponse(value: any): value is E {\n return 'code' in value && 'data' in value && 'message' in value && value.code !== 0\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应,true 返回 SuccessResponse,false 只返回 data\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数(GET 请求会自动转为 params,其他方法转为 data)\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns Promise<UseApiResponse<W, T, S, E>> - 包含 res 和 error 的统一响应对象\n */\n public useApi = async <\n K extends U,\n W extends boolean = false,\n >(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse: W = this.isWholeResponse as W,\n ): Promise<AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>> => {\n let res: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['res'] | null = null\n let error: AxiosUseApiResponse<W, T[K['url']]['response'], SuccessResponse<T[K['url']]['response']>, E>['error'] = null\n\n try {\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n\n // 发起请求\n const response = await this.apiInstance<SuccessResponse<T[K['url']]['response']>>(config)\n res = isWholeResponse\n ? response.data\n : response.data.data\n }\n catch (err: any) {\n // 错误处理\n if (err.name !== 'AxiosError') {\n if (this.isAxiosResponse(err)) {\n error = err.data as E\n }\n else if (this.isErrorResponse(err)) {\n error = err\n }\n }\n else {\n console.error(err)\n }\n }\n\n return { res: res!, error }\n }\n\n /**\n * 发起 API 请求\n * @template K - URL 配置对象类型\n * @template W - 是否返回完整响应\n * @param axiosConfig - Axios 请求配置\n * @param params - 请求参数\n * @param isWholeResponse - 是否返回完整响应,默认使用实例配置\n * @returns 根据 isWholeResponse 返回完整响应或解包后的数据\n */\n public apiClient = async <K extends U, W extends boolean = false>(\n axiosConfig: Omit<AxiosRequestConfig<RequestPayload<T[K['url']]['request']>>, 'params'> & K & {\n params?: RequestParams<T[K['url']]['request']>\n },\n params?: RequestParams<T[K['url']]['request']>,\n isWholeResponse?: W,\n ): Promise<W extends true ? AxiosResponse<T[K['url']]['response']> : T[K['url']]['response']> => {\n const useWholeResponse = isWholeResponse ?? this.isWholeResponse\n // 处理请求配置\n const config = {\n ...axiosConfig,\n ...(params ? (axiosConfig.method && ['GET'].includes(axiosConfig.method.toUpperCase()) ? { params } : { data: params }) : {}),\n }\n\n // 处理代理前缀\n if (config.proxyPrefix) {\n config.url = (config.proxyPrefix || '') + axiosConfig.url\n delete config.proxyPrefix\n }\n\n // 发起请求,利用 axios 的第二个泛型参数 R 控制解包\n if (useWholeResponse) {\n return await this.apiInstance<T[K['url']]['response']>(config)\n }\n else {\n return await this.apiInstance<any, T[K['url']]['response']>(config)\n }\n }\n}\n"],"names":["_ApiService","constructor","apiInstance","isWholeResponse","_this","this","__publicField","async","axiosConfig","params","arguments","length","undefined","res","error","config","method","includes","toUpperCase","data","url","proxyPrefix","response","err","name","isAxiosResponse","isErrorResponse","instance","isBusinessError","obj","isPlainObject","message","code","value","status","statusText","headers","request","ApiService"],"mappings":"iMA8EO,MAAMA,EAAN,MAAMA,EAaXC,WAAAA,CACUC,EACAC,GACR,IAAAC,EAAAC,KACA,GAHQA,KAAAH,YAAAA,EACAG,KAAAF,gBAAAA,EAoDVG,EAAAD,KAAO,SAASE,eAIdC,EAGAC,GAE0G,IAD1GN,EAAAO,UAAAC,OAAA,QAAAC,IAAAF,UAAA,GAAAA,UAAA,GAAqBN,EAAKD,gBAEtBU,EAAkH,KAClHC,EAA+G,KAEnH,IAEE,MAAMC,EAAS,IACVP,KACCC,EAAUD,EAAYQ,QAAU,CAAC,OAAOC,SAAST,EAAYQ,OAAOE,eAAiB,CAAET,UAAW,CAAEU,KAAMV,GAAY,CAAA,GAI5HM,EAAOK,KAAOL,EAAOM,aAAe,IAAMb,EAAYY,WAC/CL,EAAOM,YAGd,MAAMC,QAAiBlB,EAAKF,YAAsDa,GAClFF,EAAMV,EACFmB,EAASH,KACTG,EAASH,KAAKA,IACpB,OACOI,GAEY,eAAbA,EAAIC,OACFpB,EAAKqB,gBAAgBF,GACvBT,EAAQS,EAAIJ,KAELf,EAAKsB,gBAAgBH,KAC5BT,EAAQS,GAMd,CAEA,MAAO,CAAEV,MAAWC,QACtB,GAWAR,EAAAD,KAAO,YAAYE,MACjBC,EAGAC,EACAN,KAEyBA,GAAmBE,KAAKF,gBAAjD,MAEMY,EAAS,IACVP,KACCC,EAAUD,EAAYQ,QAAU,CAAC,OAAOC,SAAST,EAAYQ,OAAOE,eAAiB,CAAET,UAAW,CAAEU,KAAMV,GAAY,CAAA,GAU5H,OANIM,EAAOM,cACTN,EAAOK,KAAOL,EAAOM,aAAe,IAAMb,EAAYY,WAC/CL,EAAOM,mBAKDhB,KAAKH,YAAqCa,KAjIrDf,EAAW2B,SACb,OAAO3B,EAAW2B,SAEpB3B,EAAW2B,SAAWtB,KACtBA,KAAKF,gBAAkBA,CACzB,CAMQyB,eAAAA,CAAgBC,GACtB,OAAOC,EAAAA,cAAcD,IACgB,iBAAxBA,EAAYE,SACS,iBAArBF,EAAYG,MACE,IAArBH,EAAYG,IACpB,CAMQP,eAAAA,CAAgBQ,GACtB,OAAOH,gBAAcG,SACD,IAAfA,EAAMd,MACNd,KAAKuB,gBAAgBK,EAAMd,YACV,IAAjBc,EAAMC,aACe,IAArBD,EAAME,iBACY,IAAlBF,EAAMG,cACW,IAAjBH,EAAMlB,aACY,IAAlBkB,EAAMI,OACb,CAMQX,eAAAA,CAAgBO,GACtB,MAAO,SAAUA,GAAS,SAAUA,GAAS,YAAaA,GAAwB,IAAfA,EAAMD,IAC3E,GAlDA1B,EANWN,EAMI,YANV,IAAMsC,EAANtC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var t=Object.defineProperty,e=(e,s,r)=>((e,s,r)=>s in e?t(e,s,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[s]=r)(e,"symbol"!=typeof s?s+"":s,r);class s extends Error{constructor(t,s,r,n){super(s),e(this,"code"),e(this,"details"),e(this,"status"),this.name="ApiError",this.code=t,this.status=r,this.details=n}}const r=class t{constructor(s){if(this.client=s,e(this,"useApi",async(t,e)=>{let s=null,r=null;try{const{url:r,proxyPrefix:n,...o}=t,a=(n||"")+r,i={...o};e&&("GET"===t.method.toUpperCase()?i.searchParams=e:i.json=e);const c=await this.client(a,i);s=(c.headers.get("content-type")??"").toLowerCase().includes("text/event-stream")?c.body:await c.json()}catch(t){r=t}return{res:s,error:r}}),e(this,"apiClient",async(t,e)=>{const{url:s,method:r,proxyPrefix:n,...o}=t,a=(n||"")+s,i={...o,method:r.toLowerCase(),throwOnError:!0};e&&("GET"===r.toUpperCase()?i.searchParams=e:i.json=e);const c=await this.client(a,i);return(c.headers.get("content-type")??"").toLowerCase().includes("text/event-stream")?c.body:await c.json()}),t.instance)return t.instance;t.instance=this}};e(r,"instance");let n=r;exports.ApiError=s,exports.FetchApiService=n;
|
|
2
2
|
//# sourceMappingURL=fetch-client.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-client.cjs","sources":["../../../../../packages/utils/src/api-client/fetch-client.ts"],"sourcesContent":["import type { Options } from 'ky'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n UrlObjectType,\n UseApiResponse,\n} from './types'\n\n/**\n * 扩展的 API 请求配置选项\n */\ninterface ExtendedOptions extends Options {\n /** 内部标记:是否为重试请求 @internal */\n _isRetry?: boolean\n /** 静默模式:401 错误不弹出登录弹窗 @default false */\n _silent?: boolean\n /** 操作上下文:用于登录弹窗说明 */\n _actionContext?: string\n /** 错误处理策略:是否抛出错误 @default false */\n throwOnError?: boolean\n}\n\n/**\n * 自定义 API 错误类\n */\nexport class ApiError extends Error {\n code: string\n details?: string\n status: number\n\n constructor(code: string, message: string, status: number, details?: string) {\n super(message)\n this.name = 'ApiError'\n this.code = code\n this.status = status\n this.details = details\n }\n}\n\n// ============================================================================\n// Fetch API 服务类\n// ============================================================================\n\n/**\n * Fetch API 服务类,基于 ky 提供统一的请求处理\n */\nexport class FetchApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: FetchApiService<any, any, any>\n\n constructor(private client: any) {\n if (FetchApiService.instance) {\n return FetchApiService.instance as FetchApiService<T, U, E>\n }\n FetchApiService.instance = this\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @param config -
|
|
1
|
+
{"version":3,"file":"fetch-client.cjs","sources":["../../../../../packages/utils/src/api-client/fetch-client.ts"],"sourcesContent":["import type { Options } from 'ky'\nimport type {\n ApiTypeMap,\n BaseErrorResponse,\n ErrorResponse,\n RequestParams,\n RequestPayload,\n UrlObjectType,\n UseApiResponse,\n} from './types'\n\n/**\n * 扩展的 API 请求配置选项\n */\ninterface ExtendedOptions extends Options {\n /** 内部标记:是否为重试请求 @internal */\n _isRetry?: boolean\n /** 静默模式:401 错误不弹出登录弹窗 @default false */\n _silent?: boolean\n /** 操作上下文:用于登录弹窗说明 */\n _actionContext?: string\n /** 错误处理策略:是否抛出错误 @default false */\n throwOnError?: boolean\n}\n\n/**\n * 自定义 API 错误类\n */\nexport class ApiError extends Error {\n code: string\n details?: string\n status: number\n\n constructor(code: string, message: string, status: number, details?: string) {\n super(message)\n this.name = 'ApiError'\n this.code = code\n this.status = status\n this.details = details\n }\n}\n\n// ============================================================================\n// Fetch API 服务类\n// ============================================================================\n\n/**\n * Fetch API 服务类,基于 ky 提供统一的请求处理\n */\nexport class FetchApiService<\n T extends ApiTypeMap<U>,\n U extends UrlObjectType,\n E extends BaseErrorResponse = ErrorResponse,\n> {\n private static instance: FetchApiService<any, any, any>\n\n constructor(private client: any) {\n if (FetchApiService.instance) {\n return FetchApiService.instance as FetchApiService<T, U, E>\n }\n FetchApiService.instance = this\n }\n\n /**\n * 发起 API 请求,返回统一的响应格式 { res, error }\n * @template K - URL 配置对象类型\n * @param config - 请求配置(单参数时使用 ky 原生参数如 searchParams/json)\n * @param requestData - 请求数据(双参数时自动根据 method 处理)\n * @returns Promise<{ res, error }> - 统一响应格式\n */\n public useApi = async <K extends U>(\n config: Omit<ExtendedOptions, 'method'> & K,\n requestData?: RequestParams<T[K['url']]['request']> | RequestPayload<T[K['url']]['request']>,\n ): Promise<UseApiResponse<T[K['url']]['response'], E>> => {\n let res: T[K['url']]['response'] | null = null\n let error: E | null = null\n\n try {\n // 构建请求配置\n const { url, proxyPrefix, ...restOptions } = config\n const fullUrl = (proxyPrefix || '') + url\n\n const options: ExtendedOptions = {\n ...restOptions,\n }\n\n // 双参数调用:自动根据 method 处理\n if (requestData) {\n if (config.method.toUpperCase() === 'GET') {\n options.searchParams = requestData\n }\n else {\n options.json = requestData\n }\n }\n\n // 发起请求\n const response = await this.client(fullUrl, options)\n\n // 处理 SSE 流式响应\n const contentType = response.headers.get('content-type') ?? ''\n if (contentType.toLowerCase().includes('text/event-stream')) {\n res = response.body\n }\n else {\n res = await response.json()\n }\n }\n catch (err: any) {\n // 错误已在 ky hooks 中处理,这里只需捕获\n error = err\n }\n\n return { res, error }\n }\n\n /**\n * 发起 API 请求,直接返回数据或抛出错误\n * @template K - URL 配置对象类型\n * @param config - 请求配置(单参数时使用 ky 原生参数如 searchParams/json)\n * @param requestData - 请求数据(双参数时自动根据 method 处理)\n * @returns Promise<Response> - 直接返回响应数据\n */\n public apiClient = async <K extends U>(\n config: Omit<ExtendedOptions, 'method'> & K,\n requestData?: RequestParams<T[K['url']]['request']> | RequestPayload<T[K['url']]['request']>,\n ): Promise<T[K['url']]['response']> => {\n const { url, method, proxyPrefix, ...restOptions } = config\n const fullUrl = (proxyPrefix || '') + url\n\n const options: ExtendedOptions = {\n ...restOptions,\n method: method.toLowerCase(),\n throwOnError: true,\n }\n\n // 双参数调用:自动根据 method 处理\n if (requestData) {\n if (method.toUpperCase() === 'GET') {\n options.searchParams = requestData\n }\n else {\n options.json = requestData\n }\n }\n\n // 发起请求\n const response = await this.client(fullUrl, options)\n\n // 处理 SSE 流式响应\n const contentType = response.headers.get('content-type') ?? ''\n if (contentType.toLowerCase().includes('text/event-stream')) {\n return response.body as any\n }\n\n return await response.json()\n }\n}\n"],"names":["ApiError","Error","constructor","code","message","status","details","super","__publicField","this","name","_FetchApiService","client","async","config","requestData","res","error","url","proxyPrefix","restOptions","fullUrl","options","method","toUpperCase","searchParams","json","response","headers","get","toLowerCase","includes","body","err","throwOnError","instance","FetchApiService"],"mappings":"uKA4BO,MAAMA,UAAiBC,MAK5BC,WAAAA,CAAYC,EAAcC,EAAiBC,EAAgBC,GACzDC,MAAMH,GALRI,EAAAC,KAAA,QACAD,EAAAC,KAAA,WACAD,EAAAC,KAAA,UAIEA,KAAKC,KAAO,WACZD,KAAKN,KAAOA,EACZM,KAAKJ,OAASA,EACdI,KAAKH,QAAUA,CACjB,EAUK,MAAMK,EAAN,MAAMA,EAOXT,WAAAA,CAAoBU,GAClB,GADkBH,KAAAG,OAAAA,EAcpBJ,EAAAC,KAAO,SAASI,MACdC,EACAC,KAEA,IAAIC,EAAsC,KACtCC,EAAkB,KAEtB,IAEE,MAAMC,IAAEA,EAAAC,YAAKA,KAAgBC,GAAgBN,EACvCO,GAAWF,GAAe,IAAMD,EAEhCI,EAA2B,IAC5BF,GAIDL,IACkC,QAAhCD,EAAOS,OAAOC,cAChBF,EAAQG,aAAeV,EAGvBO,EAAQI,KAAOX,GAKnB,MAAMY,QAAiBlB,KAAKG,OAAOS,EAASC,GAK1CN,GAFkBW,EAASC,QAAQC,IAAI,iBAAmB,IAC5CC,cAAcC,SAAS,qBAC/BJ,EAASK,WAGHL,EAASD,MAEzB,OACOO,GAELhB,EAAQgB,CACV,CAEA,MAAO,CAAEjB,MAAKC,WAUhBT,EAAAC,KAAO,YAAYI,MACjBC,EACAC,KAEA,MAAMG,IAAEA,EAAAK,OAAKA,EAAAJ,YAAQA,KAAgBC,GAAgBN,EAC/CO,GAAWF,GAAe,IAAMD,EAEhCI,EAA2B,IAC5BF,EACHG,OAAQA,EAAOO,cACfI,cAAc,GAIZnB,IAC2B,QAAzBQ,EAAOC,cACTF,EAAQG,aAAeV,EAGvBO,EAAQI,KAAOX,GAKnB,MAAMY,QAAiBlB,KAAKG,OAAOS,EAASC,GAI5C,OADoBK,EAASC,QAAQC,IAAI,iBAAmB,IAC5CC,cAAcC,SAAS,qBAC9BJ,EAASK,WAGLL,EAASD,SAlGlBf,EAAgBwB,SAClB,OAAOxB,EAAgBwB,SAEzBxB,EAAgBwB,SAAW1B,IAC7B,GAPAD,EALWG,EAKI,YALV,IAAMyB,EAANzB"}
|
package/lib/src/argo-log.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var i=Object.defineProperty,
|
|
1
|
+
"use strict";var i=Object.defineProperty,t=(t,s,e)=>((t,s,e)=>s in t?i(t,s,{enumerable:!0,configurable:!0,writable:!0,value:e}):t[s]=e)(t,"symbol"!=typeof s?s+"":s,e);const s=class i{constructor(){t(this,"sdkPromise",null),t(this,"sdk",null)}static getInstance(){return i.instance||(i.instance=new i),i.instance}async loadSDK(){if(this.sdk)return this.sdk;if(this.sdkPromise)return this.sdkPromise;if("undefined"==typeof window)return null;const i=window;return i.__argoLogSDKPromise?(this.sdkPromise=i.__argoLogSDKPromise,this.sdk=await this.sdkPromise,this.sdk):(this.sdkPromise=this.createSDKPromise(),i.__argoLogSDKPromise=this.sdkPromise,this.sdk=await this.sdkPromise,this.sdk)}async createSDKPromise(){try{return(await import("ans-javascript-sdk")).default}catch(i){return this.createMockSDK()}}createMockSDK(){return{init:i=>{},track:(i,t)=>{},profileSet:i=>{},alias:i=>{}}}getSDK(){return this.sdk}isLoaded(){return null!==this.sdk}};t(s,"instance");const e=s.getInstance(),n=class i{constructor(s){t(this,"AnalysysAgent",null),t(this,"pendingQueue",[]),t(this,"isInitialized",!1),t(this,"isInitializing",!1),t(this,"track",(i,t)=>{const s=()=>{i&&this.AnalysysAgent&&this.AnalysysAgent.track(i,t)};if(this.isInitialized)try{s()}catch(i){}else this.pendingQueue.push(s)}),t(this,"setProfile",i=>{const t=()=>{i&&this.AnalysysAgent&&this.AnalysysAgent.profileSet(i)};if(this.isInitialized)try{t()}catch(i){}else this.pendingQueue.push(t)}),t(this,"setAlias",i=>{const t=()=>{i&&this.AnalysysAgent&&this.AnalysysAgent.alias(i)};if(this.isInitialized)try{t()}catch(i){}else this.pendingQueue.push(t)});try{if("undefined"==typeof window)return this;const t=JSON.stringify(s),e=i.instances.get(t);if(e)return e;if(!s)return this;this.initializeSDK(s,t)}catch(i){}return this}async initializeSDK(t,s){if(!this.isInitializing&&!this.isInitialized){this.isInitializing=!0;try{const n=await e.loadSDK();n&&(this.AnalysysAgent=n,n.init(t),this.isInitialized=!0,i.instances.set(s,this),this.processPendingQueue())}catch(i){}finally{this.isInitializing=!1}}}processPendingQueue(){this.pendingQueue.forEach(i=>i()),this.pendingQueue=[]}get initialized(){return this.isInitialized}async waitForInitialization(){if(this.isInitialized)return!0;const i=Date.now();for(;!this.isInitialized&&Date.now()-i<5e3;)await new Promise(i=>setTimeout(i,100));return this.isInitialized}};t(n,"instances",new Map);let a=n;exports.ArgoLog=a;
|
|
2
2
|
//# sourceMappingURL=argo-log.cjs.map
|
package/lib/src/argo-log.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"argo-log.cjs","sources":["../../../../packages/utils/src/argo-log.ts"],"sourcesContent":["// SDK 配置接口\nexport interface AnalysysConfig {\n encryptType?: number\n debugMode?: number\n appkey: string\n uploadURL: string\n autoProfile?: boolean\n autoTrack?: boolean\n}\n\n// SDK 实例接口\nexport interface AnalysysAgentInterface {\n init: (config: AnalysysConfig) => void\n track: (eventName: string, properties?: Record<string, any>) => void\n profileSet: (properties: Record<string, any>) => void\n alias: (aliasId: string) => void\n}\n\n// 全局窗口类型扩展\ndeclare global {\n interface Window {\n __argoLogSDKPromise?: Promise<AnalysysAgentInterface | null>\n }\n}\n\n// 定义配置项的类型别名,保持向后兼容\nexport interface EnvironmentConfig extends AnalysysConfig {}\n\n/**\n * SDK 加载器 - 统一管理 SDK 的加载和初始化\n */\nclass SDKLoader {\n private static instance: SDKLoader\n private sdkPromise: Promise<AnalysysAgentInterface | null> | null = null\n private sdk: AnalysysAgentInterface | null = null\n\n private constructor() {}\n\n static getInstance(): SDKLoader {\n if (!SDKLoader.instance) {\n SDKLoader.instance = new SDKLoader()\n }\n return SDKLoader.instance\n }\n\n /**\n * 加载 SDK\n */\n async loadSDK(): Promise<AnalysysAgentInterface | null> {\n // 如果已经加载过,直接返回\n if (this.sdk) {\n return this.sdk\n }\n\n // 如果正在加载,等待加载完成\n if (this.sdkPromise) {\n return this.sdkPromise\n }\n\n // 检查浏览器环境\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return null\n }\n\n // 检查是否已有全局 Promise\n const windowAny = window as any\n if (windowAny.__argoLogSDKPromise) {\n this.sdkPromise = windowAny.__argoLogSDKPromise\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n // 创建新的加载 Promise\n this.sdkPromise = this.createSDKPromise()\n windowAny.__argoLogSDKPromise = this.sdkPromise\n\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n /**\n * 创建 SDK 加载 Promise\n */\n private async createSDKPromise(): Promise<AnalysysAgentInterface | null> {\n try {\n // 尝试动态导入\n const module = await import('ans-javascript-sdk')\n return module.default as AnalysysAgentInterface\n }\n catch (error) {\n // 在 docs 环境中,可能无法加载 SDK,提供一个 mock 实现\n console.warn('[ArgoLog] SDK 加载失败,使用 mock 实现:', error)\n return this.createMockSDK()\n }\n }\n\n /**\n * 创建 Mock SDK - 用于开发和文档环境\n */\n private createMockSDK(): AnalysysAgentInterface {\n return {\n init: (config) => {\n console.log('[ArgoLog Mock] SDK 初始化:', config)\n },\n track: (eventName, properties) => {\n console.log('[ArgoLog Mock] 追踪事件:', eventName, properties)\n },\n profileSet: (properties) => {\n console.log('[ArgoLog Mock] 设置用户画像:', properties)\n },\n alias: (aliasId) => {\n console.log('[ArgoLog Mock] 设置用户别名:', aliasId)\n },\n }\n }\n\n /**\n * 获取已加载的 SDK\n */\n getSDK(): AnalysysAgentInterface | null {\n return this.sdk\n }\n\n /**\n * 检查 SDK 是否已加载\n */\n isLoaded(): boolean {\n return this.sdk !== null\n }\n}\n\n// SDK 加载器单例\nconst sdkLoader = SDKLoader.getInstance()\n\n/**\n * ArgoLog 类 - 用于处理埋点统计的工具类\n *\n * @class ArgoLog\n * @description 基于 AnalysysAgent SDK 封装的埋点工具类,提供了埋点追踪、用户画像设置和用户别名设置等功能\n * @example\n * ```typescript\n * const argoLog = new ArgoLog({\n * appkey: 'your-app-key',\n * uploadURL: 'your-upload-url'\n * });\n *\n * // 追踪事件\n * argoLog.track('event_name', { key: 'value' });\n * ```\n */\nexport class ArgoLog<T extends EnvironmentConfig = EnvironmentConfig> {\n private static instances = new Map<string, ArgoLog<any>>()\n private AnalysysAgent: AnalysysAgentInterface | null = null\n private pendingQueue: Array<() => void> = []\n private isInitialized = false\n private isInitializing = false\n\n constructor(envConfig: T) {\n try {\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return this\n }\n\n const configKey = JSON.stringify(envConfig)\n const existingInstance = ArgoLog.instances.get(configKey)\n if (existingInstance) {\n return existingInstance\n }\n\n if (!envConfig) {\n console.error('[ArgoLog] envConfig is required')\n return this\n }\n\n this.initializeSDK(envConfig, configKey)\n }\n catch (error) {\n console.warn('[ArgoLog] Init failed:', error)\n }\n return this\n }\n\n private async initializeSDK(envConfig: T, configKey: string) {\n if (this.isInitializing || this.isInitialized) {\n return\n }\n\n this.isInitializing = true\n\n try {\n // 使用 SDK 加载器加载 SDK\n const sdk = await sdkLoader.loadSDK()\n\n if (sdk) {\n this.AnalysysAgent = sdk\n sdk.init(envConfig)\n this.isInitialized = true\n ArgoLog.instances.set(configKey, this)\n this.processPendingQueue()\n }\n else {\n console.warn('[ArgoLog] SDK 加载失败')\n }\n }\n catch (error) {\n console.warn('[ArgoLog] SDK 初始化失败:', error)\n }\n finally {\n this.isInitializing = false\n }\n }\n\n private processPendingQueue() {\n // SDK 初始化完成后,重放所有暂存的调用\n this.pendingQueue.forEach(fn => fn())\n this.pendingQueue = []\n }\n\n track = (name: string, opt?: Record<string, any>): void => {\n const exec = () => {\n if (!name) {\n console.warn('[ArgoLog] track: name is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.track(name, opt)\n }\n }\n\n if (!this.isInitialized) {\n // SDK 未初始化,暂存调用\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息,避免用户困惑\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] track failed:', error)\n }\n }\n\n setProfile = (info: Record<string, any>): void => {\n const exec = () => {\n if (!info) {\n console.warn('[ArgoLog] setProfile: info is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.profileSet(info)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setProfile failed:', error)\n }\n }\n\n setAlias = (code: string): void => {\n const exec = () => {\n if (!code) {\n console.warn('[ArgoLog] setAlias: code is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.alias(code)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setAlias failed:', error)\n }\n }\n\n /**\n * 获取 SDK 初始化状态\n */\n get initialized(): boolean {\n return this.isInitialized\n }\n\n /**\n * 等待 SDK 初始化完成\n */\n async waitForInitialization(): Promise<boolean> {\n if (this.isInitialized) {\n return true\n }\n\n // 等待最多 5 秒\n const timeout = 5000\n const startTime = Date.now()\n\n while (!this.isInitialized && (Date.now() - startTime) < timeout) {\n await new Promise(resolve => setTimeout(resolve, 100))\n }\n\n return this.isInitialized\n }\n}\n"],"names":["_SDKLoader","constructor","__publicField","this","getInstance","instance","loadSDK","sdk","sdkPromise","window","console","warn","windowAny","__argoLogSDKPromise","createSDKPromise","import","default","error","createMockSDK","init","config","log","track","eventName","properties","profileSet","alias","aliasId","getSDK","isLoaded","sdkLoader","_ArgoLog","envConfig","name","opt","exec","AnalysysAgent","isInitialized","pendingQueue","push","info","code","configKey","JSON","stringify","existingInstance","instances","get","initializeSDK","isInitializing","set","processPendingQueue","forEach","fn","initialized","waitForInitialization","startTime","Date","now","Promise","resolve","setTimeout","Map","ArgoLog"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"argo-log.cjs","sources":["../../../../packages/utils/src/argo-log.ts"],"sourcesContent":["// SDK 配置接口\nexport interface AnalysysConfig {\n encryptType?: number\n debugMode?: number\n appkey: string\n uploadURL: string\n autoProfile?: boolean\n autoTrack?: boolean\n}\n\n// SDK 实例接口\nexport interface AnalysysAgentInterface {\n init: (config: AnalysysConfig) => void\n track: (eventName: string, properties?: Record<string, any>) => void\n profileSet: (properties: Record<string, any>) => void\n alias: (aliasId: string) => void\n}\n\n// 全局窗口类型扩展\ndeclare global {\n interface Window {\n __argoLogSDKPromise?: Promise<AnalysysAgentInterface | null>\n }\n}\n\n// 定义配置项的类型别名,保持向后兼容\nexport interface EnvironmentConfig extends AnalysysConfig {}\n\n/**\n * SDK 加载器 - 统一管理 SDK 的加载和初始化\n */\nclass SDKLoader {\n private static instance: SDKLoader\n private sdkPromise: Promise<AnalysysAgentInterface | null> | null = null\n private sdk: AnalysysAgentInterface | null = null\n\n private constructor() {}\n\n static getInstance(): SDKLoader {\n if (!SDKLoader.instance) {\n SDKLoader.instance = new SDKLoader()\n }\n return SDKLoader.instance\n }\n\n /**\n * 加载 SDK\n */\n async loadSDK(): Promise<AnalysysAgentInterface | null> {\n // 如果已经加载过,直接返回\n if (this.sdk) {\n return this.sdk\n }\n\n // 如果正在加载,等待加载完成\n if (this.sdkPromise) {\n return this.sdkPromise\n }\n\n // 检查浏览器环境\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return null\n }\n\n // 检查是否已有全局 Promise\n const windowAny = window as any\n if (windowAny.__argoLogSDKPromise) {\n this.sdkPromise = windowAny.__argoLogSDKPromise\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n // 创建新的加载 Promise\n this.sdkPromise = this.createSDKPromise()\n windowAny.__argoLogSDKPromise = this.sdkPromise\n\n this.sdk = await this.sdkPromise\n return this.sdk\n }\n\n /**\n * 创建 SDK 加载 Promise\n */\n private async createSDKPromise(): Promise<AnalysysAgentInterface | null> {\n try {\n // 尝试动态导入\n const module = await import('ans-javascript-sdk')\n return module.default as AnalysysAgentInterface\n }\n catch (error) {\n // 在 docs 环境中,可能无法加载 SDK,提供一个 mock 实现\n console.warn('[ArgoLog] SDK 加载失败,使用 mock 实现:', error)\n return this.createMockSDK()\n }\n }\n\n /**\n * 创建 Mock SDK - 用于开发和文档环境\n */\n private createMockSDK(): AnalysysAgentInterface {\n return {\n init: (config) => {\n console.log('[ArgoLog Mock] SDK 初始化:', config)\n },\n track: (eventName, properties) => {\n console.log('[ArgoLog Mock] 追踪事件:', eventName, properties)\n },\n profileSet: (properties) => {\n console.log('[ArgoLog Mock] 设置用户画像:', properties)\n },\n alias: (aliasId) => {\n console.log('[ArgoLog Mock] 设置用户别名:', aliasId)\n },\n }\n }\n\n /**\n * 获取已加载的 SDK\n */\n getSDK(): AnalysysAgentInterface | null {\n return this.sdk\n }\n\n /**\n * 检查 SDK 是否已加载\n */\n isLoaded(): boolean {\n return this.sdk !== null\n }\n}\n\n// SDK 加载器单例\nconst sdkLoader = SDKLoader.getInstance()\n\n/**\n * ArgoLog 类 - 用于处理埋点统计的工具类\n *\n * @class ArgoLog\n * @description 基于 AnalysysAgent SDK 封装的埋点工具类,提供了埋点追踪、用户画像设置和用户别名设置等功能\n * @example\n * ```typescript\n * const argoLog = new ArgoLog({\n * appkey: 'your-app-key',\n * uploadURL: 'your-upload-url'\n * });\n *\n * // 追踪事件\n * argoLog.track('event_name', { key: 'value' });\n * ```\n */\nexport class ArgoLog<T extends EnvironmentConfig = EnvironmentConfig> {\n private static instances = new Map<string, ArgoLog<any>>()\n private AnalysysAgent: AnalysysAgentInterface | null = null\n private pendingQueue: Array<() => void> = []\n private isInitialized = false\n private isInitializing = false\n\n constructor(envConfig: T) {\n try {\n if (typeof window === 'undefined') {\n console.warn('[ArgoLog] 仅支持浏览器环境')\n return this\n }\n\n const configKey = JSON.stringify(envConfig)\n const existingInstance = ArgoLog.instances.get(configKey)\n if (existingInstance) {\n return existingInstance\n }\n\n if (!envConfig) {\n console.error('[ArgoLog] envConfig is required')\n return this\n }\n\n this.initializeSDK(envConfig, configKey)\n }\n catch (error) {\n console.warn('[ArgoLog] Init failed:', error)\n }\n return this\n }\n\n private async initializeSDK(envConfig: T, configKey: string) {\n if (this.isInitializing || this.isInitialized) {\n return\n }\n\n this.isInitializing = true\n\n try {\n // 使用 SDK 加载器加载 SDK\n const sdk = await sdkLoader.loadSDK()\n\n if (sdk) {\n this.AnalysysAgent = sdk\n sdk.init(envConfig)\n this.isInitialized = true\n ArgoLog.instances.set(configKey, this)\n this.processPendingQueue()\n }\n else {\n console.warn('[ArgoLog] SDK 加载失败')\n }\n }\n catch (error) {\n console.warn('[ArgoLog] SDK 初始化失败:', error)\n }\n finally {\n this.isInitializing = false\n }\n }\n\n private processPendingQueue() {\n // SDK 初始化完成后,重放所有暂存的调用\n this.pendingQueue.forEach(fn => fn())\n this.pendingQueue = []\n }\n\n track = (name: string, opt?: Record<string, any>): void => {\n const exec = () => {\n if (!name) {\n console.warn('[ArgoLog] track: name is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.track(name, opt)\n }\n }\n\n if (!this.isInitialized) {\n // SDK 未初始化,暂存调用\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息,避免用户困惑\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] track failed:', error)\n }\n }\n\n setProfile = (info: Record<string, any>): void => {\n const exec = () => {\n if (!info) {\n console.warn('[ArgoLog] setProfile: info is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.profileSet(info)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setProfile failed:', error)\n }\n }\n\n setAlias = (code: string): void => {\n const exec = () => {\n if (!code) {\n console.warn('[ArgoLog] setAlias: code is required')\n return\n }\n if (this.AnalysysAgent) {\n this.AnalysysAgent.alias(code)\n }\n }\n\n if (!this.isInitialized) {\n this.pendingQueue.push(exec)\n // 静默处理,不显示暂存信息\n return\n }\n\n try {\n exec()\n }\n catch (error) {\n console.warn('[ArgoLog] setAlias failed:', error)\n }\n }\n\n /**\n * 获取 SDK 初始化状态\n */\n get initialized(): boolean {\n return this.isInitialized\n }\n\n /**\n * 等待 SDK 初始化完成\n */\n async waitForInitialization(): Promise<boolean> {\n if (this.isInitialized) {\n return true\n }\n\n // 等待最多 5 秒\n const timeout = 5000\n const startTime = Date.now()\n\n while (!this.isInitialized && (Date.now() - startTime) < timeout) {\n await new Promise(resolve => setTimeout(resolve, 100))\n }\n\n return this.isInitialized\n }\n}\n"],"names":["_SDKLoader","constructor","__publicField","this","getInstance","instance","loadSDK","sdk","sdkPromise","window","windowAny","__argoLogSDKPromise","createSDKPromise","import","default","error","createMockSDK","init","config","track","eventName","properties","profileSet","alias","aliasId","getSDK","isLoaded","sdkLoader","_ArgoLog","envConfig","name","opt","exec","AnalysysAgent","isInitialized","pendingQueue","push","info","code","configKey","JSON","stringify","existingInstance","instances","get","initializeSDK","isInitializing","set","processPendingQueue","forEach","fn","initialized","waitForInitialization","startTime","Date","now","Promise","resolve","setTimeout","Map","ArgoLog"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";async function o(o){return new Promise((n,
|
|
1
|
+
"use strict";async function o(o){return new Promise((n,d)=>{try{const e=document.createElement("script");e.src=o,e.onload=()=>{n()},e.onerror=()=>{d(new Error(`Failed to load script from ${o}`))},document.head.appendChild(e)}catch(o){d(o)}})}exports.createVideoUploader=async function(n){if("undefined"==typeof window)throw new TypeError("VideoUploader 只能在浏览器环境中使用");window.AliyunUpload||await async function(){try{if(await o("https://gosspublic.alicdn.com/aliyun-oss-sdk.min.js"),await o("https://cdnfile.yaomaitong.cn/cdn/js/aliyun-upload-sdk1.3.1.min.js"),!window.AliyunUpload)throw new Error("SDK 加载成功但未找到 AliyunUpload 对象")}catch(o){throw o}}();let d=null,e=null;const a=new window.AliyunUpload.Vod({onUploadProgress:n.onUploadProgress,onUploadTokenExpired:n.onUploadTokenExpired||(()=>{}),onUploadstarted:async o=>{try{const{uploadAuth:d,uploadAddress:e,videoId:t}=await(n.onUploadstarted?.(o))||{};d&&e&&t&&a.setUploadAuthAndAddress(o,d,e,t)}catch(o){throw o}},onUploadSucceed:o=>{d?.(o)},onUploadFailed:(o,n,d)=>{e?.(new Error(`${d} ${n}`))}});return{uploader:a,upload:async o=>new Promise((n,t)=>{d=n,e=t;const r=JSON.stringify({Vod:{UserData:{IsShowWaterMark:"false",Priority:"7"}}});a.addFile(o,null,null,null,r),a.startUpload()})}},exports.downloadFile=function(o,n){const d=document.createElement("a");d.download=n,d.style.display="none",d.href=o,document.body.appendChild(d),d.click(),document.body.removeChild(d)};
|
|
2
2
|
//# sourceMappingURL=file-operations.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-operations.cjs","sources":["../../../../packages/utils/src/file-operations.ts"],"sourcesContent":["declare global {\n interface Window {\n AliyunUpload: any\n OSS: any\n }\n}\n\nasync function loadScript(src: string): Promise<void> {\n return new Promise((resolve, reject) => {\n try {\n const script = document.createElement('script')\n script.src = src\n script.onload = () => {\n resolve()\n }\n script.onerror = () => {\n reject(new Error(`Failed to load script from ${src}`))\n }\n document.head.appendChild(script)\n }\n catch (error) {\n console.error('loadScript error:', error)\n reject(error)\n }\n })\n}\nasync function initAliyunSDK() {\n try {\n await loadScript('https://gosspublic.alicdn.com/aliyun-oss-sdk.min.js')\n await loadScript('https://cdnfile.yaomaitong.cn/cdn/js/aliyun-upload-sdk1.3.1.min.js')\n\n if (!window.AliyunUpload) {\n throw new Error('SDK 加载成功但未找到 AliyunUpload 对象')\n }\n }\n catch (error) {\n console.error('无法加载阿里云上传SDK:', error)\n throw error\n }\n}\n\nexport interface UploadInfo {\n file: File\n videoId?: string\n}\n\ninterface VideoUploadOptions {\n onUploadFailed?: (uploadInfo: any, code: string, message: string) => void\n onUploadSucceed?: (uploadInfo: any) => void\n onUploadProgress?: (uploadInfo: UploadInfo, totalSize: number, percent: number) => void\n onUploadTokenExpired?: (response: any) => void\n onUploadstarted?: (uploadInfo: UploadInfo) => Promise<{ uploadAuth: string, uploadAddress: string, videoId: string }>\n}\n\ninterface VideoUploadResult {\n videoId: string\n uploadInfo: any\n}\nexport interface IVideoUploader {\n uploader: any\n upload: (file: File) => Promise<VideoUploadResult>\n}\n\n/**\n * 创建阿里云视频上传器实例\n * @param options - 上传配置选项,包含各种回调函数\n * @returns 返回一个包含上传器实例和上传方法的对象\n */\nexport async function createVideoUploader(options: VideoUploadOptions): Promise<IVideoUploader> {\n // 检查是否在浏览器环境中运行\n if (typeof window === 'undefined') {\n throw new TypeError('VideoUploader 只能在浏览器环境中使用')\n }\n\n // 如果阿里云SDK未加载,则初始化SDK\n if (!window.AliyunUpload) {\n await initAliyunSDK()\n }\n\n // 声明Promise的resolve和reject函数,用于控制上传过程\n let currentResolve: ((value: VideoUploadResult) => void) | null = null\n let currentReject: ((reason: any) => void) | null = null\n\n // 创建阿里云上传实例\n const uploader = new window.AliyunUpload.Vod({\n // 上传进度回调\n onUploadProgress: options.onUploadProgress,\n // 上传凭证过期回调\n onUploadTokenExpired: options.onUploadTokenExpired || (() => {}),\n // 开始上传回调,用于设置上传凭证和地址\n onUploadstarted: async (uploadInfo: UploadInfo) => {\n try {\n const { uploadAuth, uploadAddress, videoId } = await options.onUploadstarted?.(uploadInfo) || {}\n if (uploadAuth && uploadAddress && videoId) {\n uploader.setUploadAuthAndAddress(uploadInfo, uploadAuth, uploadAddress, videoId)\n }\n }\n catch (error) {\n console.error('onUploadstarted error: ', error)\n throw error\n }\n },\n // 上传成功回调\n onUploadSucceed: (uploadInfo: any) => {\n currentResolve?.(uploadInfo)\n },\n // 上传失败回调\n onUploadFailed: (info: any, code: string, message: string) => {\n console.log('info: ', info)\n currentReject?.(new Error(`${message} ${code}`))\n },\n })\n\n /**\n * 上传文件方法\n * @param file - 要上传的文件对象\n * @returns Promise,解析为上传结果\n */\n const upload = async (file: File): Promise<VideoUploadResult> => {\n return new Promise((resolve, reject) => {\n currentResolve = resolve\n currentReject = reject\n\n // 设置上传的用户自定义数据\n const userData = JSON.stringify({\n Vod: {\n UserData: {\n IsShowWaterMark: 'false', // 不显示水印\n Priority: '7', // 上传优先级\n },\n },\n })\n\n // 添加文件到上传队列并开始上传\n uploader.addFile(file, null, null, null, userData)\n uploader.startUpload()\n })\n }\n\n // 返回上传器实例和上传方法\n return {\n uploader,\n upload,\n }\n}\n\n/**\n * 下载文件,创建一个隐藏的链接元素,设置下载属性并触发点击事件,然后移除该链接元素\n * @param url - 文件的URL\n * @param fileName - 文件的名称\n */\nexport function downloadFile(url: string, fileName: string) {\n const link = document.createElement('a')\n link.download = fileName\n link.style.display = 'none'\n link.href = url\n document.body.appendChild(link)\n link.click()\n document.body.removeChild(link)\n}\n"],"names":["async","loadScript","src","Promise","resolve","reject","script","document","createElement","onload","onerror","Error","head","appendChild","error","
|
|
1
|
+
{"version":3,"file":"file-operations.cjs","sources":["../../../../packages/utils/src/file-operations.ts"],"sourcesContent":["declare global {\n interface Window {\n AliyunUpload: any\n OSS: any\n }\n}\n\nasync function loadScript(src: string): Promise<void> {\n return new Promise((resolve, reject) => {\n try {\n const script = document.createElement('script')\n script.src = src\n script.onload = () => {\n resolve()\n }\n script.onerror = () => {\n reject(new Error(`Failed to load script from ${src}`))\n }\n document.head.appendChild(script)\n }\n catch (error) {\n console.error('loadScript error:', error)\n reject(error)\n }\n })\n}\nasync function initAliyunSDK() {\n try {\n await loadScript('https://gosspublic.alicdn.com/aliyun-oss-sdk.min.js')\n await loadScript('https://cdnfile.yaomaitong.cn/cdn/js/aliyun-upload-sdk1.3.1.min.js')\n\n if (!window.AliyunUpload) {\n throw new Error('SDK 加载成功但未找到 AliyunUpload 对象')\n }\n }\n catch (error) {\n console.error('无法加载阿里云上传SDK:', error)\n throw error\n }\n}\n\nexport interface UploadInfo {\n file: File\n videoId?: string\n}\n\ninterface VideoUploadOptions {\n onUploadFailed?: (uploadInfo: any, code: string, message: string) => void\n onUploadSucceed?: (uploadInfo: any) => void\n onUploadProgress?: (uploadInfo: UploadInfo, totalSize: number, percent: number) => void\n onUploadTokenExpired?: (response: any) => void\n onUploadstarted?: (uploadInfo: UploadInfo) => Promise<{ uploadAuth: string, uploadAddress: string, videoId: string }>\n}\n\ninterface VideoUploadResult {\n videoId: string\n uploadInfo: any\n}\nexport interface IVideoUploader {\n uploader: any\n upload: (file: File) => Promise<VideoUploadResult>\n}\n\n/**\n * 创建阿里云视频上传器实例\n * @param options - 上传配置选项,包含各种回调函数\n * @returns 返回一个包含上传器实例和上传方法的对象\n */\nexport async function createVideoUploader(options: VideoUploadOptions): Promise<IVideoUploader> {\n // 检查是否在浏览器环境中运行\n if (typeof window === 'undefined') {\n throw new TypeError('VideoUploader 只能在浏览器环境中使用')\n }\n\n // 如果阿里云SDK未加载,则初始化SDK\n if (!window.AliyunUpload) {\n await initAliyunSDK()\n }\n\n // 声明Promise的resolve和reject函数,用于控制上传过程\n let currentResolve: ((value: VideoUploadResult) => void) | null = null\n let currentReject: ((reason: any) => void) | null = null\n\n // 创建阿里云上传实例\n const uploader = new window.AliyunUpload.Vod({\n // 上传进度回调\n onUploadProgress: options.onUploadProgress,\n // 上传凭证过期回调\n onUploadTokenExpired: options.onUploadTokenExpired || (() => {}),\n // 开始上传回调,用于设置上传凭证和地址\n onUploadstarted: async (uploadInfo: UploadInfo) => {\n try {\n const { uploadAuth, uploadAddress, videoId } = await options.onUploadstarted?.(uploadInfo) || {}\n if (uploadAuth && uploadAddress && videoId) {\n uploader.setUploadAuthAndAddress(uploadInfo, uploadAuth, uploadAddress, videoId)\n }\n }\n catch (error) {\n console.error('onUploadstarted error: ', error)\n throw error\n }\n },\n // 上传成功回调\n onUploadSucceed: (uploadInfo: any) => {\n currentResolve?.(uploadInfo)\n },\n // 上传失败回调\n onUploadFailed: (info: any, code: string, message: string) => {\n console.log('info: ', info)\n currentReject?.(new Error(`${message} ${code}`))\n },\n })\n\n /**\n * 上传文件方法\n * @param file - 要上传的文件对象\n * @returns Promise,解析为上传结果\n */\n const upload = async (file: File): Promise<VideoUploadResult> => {\n return new Promise((resolve, reject) => {\n currentResolve = resolve\n currentReject = reject\n\n // 设置上传的用户自定义数据\n const userData = JSON.stringify({\n Vod: {\n UserData: {\n IsShowWaterMark: 'false', // 不显示水印\n Priority: '7', // 上传优先级\n },\n },\n })\n\n // 添加文件到上传队列并开始上传\n uploader.addFile(file, null, null, null, userData)\n uploader.startUpload()\n })\n }\n\n // 返回上传器实例和上传方法\n return {\n uploader,\n upload,\n }\n}\n\n/**\n * 下载文件,创建一个隐藏的链接元素,设置下载属性并触发点击事件,然后移除该链接元素\n * @param url - 文件的URL\n * @param fileName - 文件的名称\n */\nexport function downloadFile(url: string, fileName: string) {\n const link = document.createElement('a')\n link.download = fileName\n link.style.display = 'none'\n link.href = url\n document.body.appendChild(link)\n link.click()\n document.body.removeChild(link)\n}\n"],"names":["async","loadScript","src","Promise","resolve","reject","script","document","createElement","onload","onerror","Error","head","appendChild","error","options","window","TypeError","AliyunUpload","initAliyunSDK","currentResolve","currentReject","uploader","Vod","onUploadProgress","onUploadTokenExpired","onUploadstarted","uploadAuth","uploadAddress","videoId","uploadInfo","setUploadAuthAndAddress","onUploadSucceed","onUploadFailed","info","code","message","upload","userData","JSON","stringify","UserData","IsShowWaterMark","Priority","addFile","file","startUpload","url","fileName","link","download","style","display","href","body","click","removeChild"],"mappings":"aAOAA,eAAeC,EAAWC,GACxB,OAAO,IAAIC,QAAQ,CAACC,EAASC,KAC3B,IACE,MAAMC,EAASC,SAASC,cAAc,UACtCF,EAAOJ,IAAMA,EACbI,EAAOG,OAAS,KACdL,KAEFE,EAAOI,QAAU,KACfL,EAAO,IAAIM,MAAM,8BAA8BT,OAEjDK,SAASK,KAAKC,YAAYP,EAC5B,OACOQ,GAELT,EAAOS,EACT,GAEJ,6BA2CAd,eAA0Ce,GAExC,GAAsB,oBAAXC,OACT,MAAM,IAAIC,UAAU,6BAIjBD,OAAOE,oBAjDdlB,iBACE,IAIE,SAHMC,EAAW,6DACXA,EAAW,uEAEZe,OAAOE,aACV,MAAM,IAAIP,MAAM,+BAEpB,OACOG,GAEL,MAAMA,CACR,CACF,CAqCUK,GAIR,IAAIC,EAA8D,KAC9DC,EAAgD,KAGpD,MAAMC,EAAW,IAAIN,OAAOE,aAAaK,IAAI,CAE3CC,iBAAkBT,EAAQS,iBAE1BC,qBAAsBV,EAAQU,sBAAA,MAAgC,GAE9DC,gBAAiB1B,UACf,IACE,MAAM2B,WAAEA,EAAAC,cAAYA,EAAAC,QAAeA,SAAkBd,EAAQW,kBAAkBI,KAAe,CAAA,EAC1FH,GAAcC,GAAiBC,GACjCP,EAASS,wBAAwBD,EAAYH,EAAYC,EAAeC,EAE5E,OACOf,GAEL,MAAMA,CACR,GAGFkB,gBAAkBF,IAChBV,IAAiBU,IAGnBG,eAAgBA,CAACC,EAAWC,EAAcC,KAExCf,IAAgB,IAAIV,MAAM,GAAGyB,KAAWD,SA+B5C,MAAO,CACLb,WACAe,OAxBarC,SACN,IAAIG,QAAQ,CAACC,EAASC,KAC3Be,EAAiBhB,EACjBiB,EAAgBhB,EAGhB,MAAMiC,EAAWC,KAAKC,UAAU,CAC9BjB,IAAK,CACHkB,SAAU,CACRC,gBAAiB,QACjBC,SAAU,QAMhBrB,EAASsB,QAAQC,EAAM,KAAM,KAAM,KAAMP,GACzChB,EAASwB,gBASf,uBAOO,SAAsBC,EAAaC,GACxC,MAAMC,EAAO1C,SAASC,cAAc,KACpCyC,EAAKC,SAAWF,EAChBC,EAAKE,MAAMC,QAAU,OACrBH,EAAKI,KAAON,EACZxC,SAAS+C,KAAKzC,YAAYoC,GAC1BA,EAAKM,QACLhD,SAAS+C,KAAKE,YAAYP,EAC5B"}
|
package/lib/src/json.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var e=require("xlsx");exports.JsonToExcel=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",
|
|
1
|
+
"use strict";var e=require("xlsx");exports.JsonToExcel=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],o=arguments.length>2?arguments[2]:void 0;try{if(!r.length)return;const n=e.utils.aoa_to_sheet(r);o&&(n["!merges"]=o);const s=e.utils.book_new();e.utils.book_append_sheet(s,n,""),e.writeFile(s,`${t}.xlsx`)}catch(e){return new Error("数据导出失败")}},exports.excelToJson=function(t,r,o){return new Promise((n,s)=>{const i=new FileReader;i.readAsArrayBuffer(t),i.onload=t=>{const s=t.target?.result,i=e.read(s,{type:"binary"}),c=[];for(const t in i.Sheets)if(Object.prototype.hasOwnProperty.call(i.Sheets,t)){let r=[];const n=i.Sheets[t]["!ref"]||"",s=n.split(":"),l=o+s[1].toString();r=r.concat(e.utils.sheet_to_json(i.Sheets[t],{header:1,range:o?l:n}));const a=r[0];r.shift();const h=r.map(e=>{const t={};return a.forEach((r,o)=>{t[r]=e[o]}),t});c.push(...h)}r&&r(c),n(c)},i.onerror=e=>{s(e)}})};
|
|
2
2
|
//# sourceMappingURL=json.cjs.map
|
package/lib/src/json.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"json.cjs","sources":["../../../../packages/utils/src/json.ts"],"sourcesContent":["import { read, utils, writeFile } from 'xlsx'\n\n/**\n * 将JSON数据导出为Excel文件\n * @param title - Excel文件的标题\n * @param json - JSON数据\n * @param merge - 合并单元格的配置\n * @returns 如果JSON数据为空,则返回undefined,否则返回Excel文件的名称\n */\nexport function JsonToExcel(title = '', json: (string | number)[][] = [], merge?: any) {\n try {\n if (!json.length) {\n return\n }\n // 创建worksheet\n const worksheet = utils.aoa_to_sheet(json)\n if (merge) {\n worksheet['!merges'] = merge\n }\n // 新建空workbook,加入worksheet\n const workbook = utils.book_new()\n utils.book_append_sheet(workbook, worksheet, '')\n writeFile(workbook, `${title}.xlsx`)\n }\n catch (e) {\n console.log('e: ', e)\n return new Error('数据导出失败')\n }\n}\n\n/**\n * 将Excel数据转换为JSON\n * @param file - Excel文件\n * @param cb - 转换完成后的回调函数\n * @param start - 开始行号\n */\nexport function excelToJson(file: File, cb: (json: any[]) => void, start: number): Promise<any[]> {\n return new Promise((resolve, reject) => {\n const reader = new FileReader()\n reader.readAsArrayBuffer(file)\n reader.onload = (e) => {\n const data = e.target?.result\n const workbook = read(data, { type: 'binary' })\n // 遍历每张表读取\n const json: any[] = []\n for (const sheet in workbook.Sheets) {\n if (Object.prototype.hasOwnProperty.call(workbook.Sheets, sheet)) {\n let arr: string[][] = []\n const fromTo = workbook.Sheets[sheet]['!ref'] || ''\n const end = fromTo.split(':')\n const space = start + end[1].toString()\n arr = arr.concat(utils.sheet_to_json(workbook.Sheets[sheet], { header: 1, range: start ? space : fromTo }))\n const titleArr = arr[0]\n arr.shift()\n const excelJsonArr = arr.map((item) => {\n const obj: {\n [key: string]: any\n } = {}\n titleArr.forEach((titleItem: string, index: number) => {\n obj[titleItem] = item[index]\n })\n return obj\n })\n json.push(...excelJsonArr)\n }\n }\n if (cb) {\n cb(json)\n }\n resolve(json)\n }\n reader.onerror = (e) => {\n reject(e)\n }\n })\n}\n"],"names":["title","arguments","length","undefined","json","merge","worksheet","utils","aoa_to_sheet","workbook","book_new","book_append_sheet","writeFile","e","
|
|
1
|
+
{"version":3,"file":"json.cjs","sources":["../../../../packages/utils/src/json.ts"],"sourcesContent":["import { read, utils, writeFile } from 'xlsx'\n\n/**\n * 将JSON数据导出为Excel文件\n * @param title - Excel文件的标题\n * @param json - JSON数据\n * @param merge - 合并单元格的配置\n * @returns 如果JSON数据为空,则返回undefined,否则返回Excel文件的名称\n */\nexport function JsonToExcel(title = '', json: (string | number)[][] = [], merge?: any) {\n try {\n if (!json.length) {\n return\n }\n // 创建worksheet\n const worksheet = utils.aoa_to_sheet(json)\n if (merge) {\n worksheet['!merges'] = merge\n }\n // 新建空workbook,加入worksheet\n const workbook = utils.book_new()\n utils.book_append_sheet(workbook, worksheet, '')\n writeFile(workbook, `${title}.xlsx`)\n }\n catch (e) {\n console.log('e: ', e)\n return new Error('数据导出失败')\n }\n}\n\n/**\n * 将Excel数据转换为JSON\n * @param file - Excel文件\n * @param cb - 转换完成后的回调函数\n * @param start - 开始行号\n */\nexport function excelToJson(file: File, cb: (json: any[]) => void, start: number): Promise<any[]> {\n return new Promise((resolve, reject) => {\n const reader = new FileReader()\n reader.readAsArrayBuffer(file)\n reader.onload = (e) => {\n const data = e.target?.result\n const workbook = read(data, { type: 'binary' })\n // 遍历每张表读取\n const json: any[] = []\n for (const sheet in workbook.Sheets) {\n if (Object.prototype.hasOwnProperty.call(workbook.Sheets, sheet)) {\n let arr: string[][] = []\n const fromTo = workbook.Sheets[sheet]['!ref'] || ''\n const end = fromTo.split(':')\n const space = start + end[1].toString()\n arr = arr.concat(utils.sheet_to_json(workbook.Sheets[sheet], { header: 1, range: start ? space : fromTo }))\n const titleArr = arr[0]\n arr.shift()\n const excelJsonArr = arr.map((item) => {\n const obj: {\n [key: string]: any\n } = {}\n titleArr.forEach((titleItem: string, index: number) => {\n obj[titleItem] = item[index]\n })\n return obj\n })\n json.push(...excelJsonArr)\n }\n }\n if (cb) {\n cb(json)\n }\n resolve(json)\n }\n reader.onerror = (e) => {\n reject(e)\n }\n })\n}\n"],"names":["title","arguments","length","undefined","json","merge","worksheet","utils","aoa_to_sheet","workbook","book_new","book_append_sheet","writeFile","e","Error","file","cb","start","Promise","resolve","reject","reader","FileReader","readAsArrayBuffer","onload","data","target","result","read","type","sheet","Sheets","Object","prototype","hasOwnProperty","call","arr","fromTo","end","split","space","toString","concat","sheet_to_json","header","range","titleArr","shift","excelJsonArr","map","item","obj","forEach","titleItem","index","push","onerror"],"mappings":"uDASO,WAAgF,IAA3DA,EAAAC,UAAAC,OAAA,QAAAC,IAAAF,UAAA,GAAAA,UAAA,GAAQ,GAAIG,EAAAH,UAAAC,OAAA,QAAAC,IAAAF,UAAA,GAAAA,UAAA,GAA8B,GAAII,EAAAJ,UAAAC,OAAA,EAAAD,kBAAAE,EACxE,IACE,IAAKC,EAAKF,OACR,OAGF,MAAMI,EAAYC,EAAAA,MAAMC,aAAaJ,GACjCC,IACFC,EAAU,WAAaD,GAGzB,MAAMI,EAAWF,EAAAA,MAAMG,WACvBH,EAAAA,MAAMI,kBAAkBF,EAAUH,EAAW,IAC7CM,EAAAA,UAAUH,EAAU,GAAGT,SACzB,OACOa,GAEL,OAAO,IAAIC,MAAM,SACnB,CACF,sBAQO,SAAqBC,EAAYC,EAA2BC,GACjE,OAAO,IAAIC,QAAQ,CAACC,EAASC,KAC3B,MAAMC,EAAS,IAAIC,WACnBD,EAAOE,kBAAkBR,GACzBM,EAAOG,OAAUX,IACf,MAAMY,EAAOZ,EAAEa,QAAQC,OACjBlB,EAAWmB,EAAAA,KAAKH,EAAM,CAAEI,KAAM,WAE9BzB,EAAc,GACpB,IAAA,MAAW0B,KAASrB,EAASsB,OAC3B,GAAIC,OAAOC,UAAUC,eAAeC,KAAK1B,EAASsB,OAAQD,GAAQ,CAChE,IAAIM,EAAkB,GACtB,MAAMC,EAAS5B,EAASsB,OAAOD,GAAO,SAAW,GAC3CQ,EAAMD,EAAOE,MAAM,KACnBC,EAAQvB,EAAQqB,EAAI,GAAGG,WAC7BL,EAAMA,EAAIM,OAAOnC,EAAAA,MAAMoC,cAAclC,EAASsB,OAAOD,GAAQ,CAAEc,OAAQ,EAAGC,MAAO5B,EAAQuB,EAAQH,KACjG,MAAMS,EAAWV,EAAI,GACrBA,EAAIW,QACJ,MAAMC,EAAeZ,EAAIa,IAAKC,IAC5B,MAAMC,EAEF,CAAA,EAIJ,OAHAL,EAASM,QAAQ,CAACC,EAAmBC,KACnCH,EAAIE,GAAaH,EAAKI,KAEjBH,IAET/C,EAAKmD,QAAQP,EACf,CAEEhC,GACFA,EAAGZ,GAELe,EAAQf,IAEViB,EAAOmC,QAAW3C,IAChBO,EAAOP,KAGb"}
|
package/lib/src/types.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";exports.isBoolean=e=>"boolean"==typeof e,exports.isElement=function(e){return"undefined"!=typeof Element&&e instanceof Element},exports.isImageByMimeType=function(e){return e.type.startsWith("image/")},exports.isJSONString=function(e){return/^[\],:{}\s]*$/.test(e.replace(/\\["\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))&&function(e){try{return JSON.parse(e),!0}catch(e){return
|
|
1
|
+
"use strict";exports.isBoolean=e=>"boolean"==typeof e,exports.isElement=function(e){return"undefined"!=typeof Element&&e instanceof Element},exports.isImageByMimeType=function(e){return e.type.startsWith("image/")},exports.isJSONString=function(e){return/^[\],:{}\s]*$/.test(e.replace(/\\["\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))&&function(e){try{return JSON.parse(e),!0}catch(e){return!1}}(e)},exports.isNumber=e=>"number"==typeof e,exports.isPlainObject=function(e){if(null===e||"object"!=typeof e)return!1;const t=Object.getPrototypeOf(e);return null===t||t===Object.prototype},exports.isUndefined=e=>void 0===e,exports.isWindow=function(e){return e===window};
|
|
2
2
|
//# sourceMappingURL=types.cjs.map
|
package/lib/src/types.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.cjs","sources":["../../../../packages/utils/src/types.ts"],"sourcesContent":["export const isUndefined = (val: any): val is undefined => val === undefined\nexport const isBoolean = (val: any): val is boolean => typeof val === 'boolean'\nexport const isNumber = (val: any): val is number => typeof val === 'number'\n\nexport function isElement(e: unknown): e is Element {\n if (typeof Element === 'undefined') {\n return false\n }\n return e instanceof Element\n}\n\nexport function isWindow(val: unknown): val is Window {\n return val === window\n}\n\n/**\n * 判断字符串是否为JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是JSON字符串,则返回true,否则返回false\n */\nexport function isJSONString(str: string) {\n const jsonStringRegex = /^[\\],:{}\\s]*$/\n .test(str.replace(/\\\\[\"\\\\/bfnrtu]/g, '@')\n .replace(/\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g, ']')\n .replace(/(?:^|:|,)(?:\\s*\\[)+/g, ''))\n\n return jsonStringRegex && isValidJSON(str)\n}\n\n/**\n * 判断字符串是否为有效的JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是有效的JSON字符串,则返回true,否则返回false\n */\nfunction isValidJSON(str: string) {\n try {\n JSON.parse(str)\n return true\n }\n catch (e) {\n console.log('e: ', e)\n return false\n }\n}\n\n/**\n * 通过 MIME 类型判断文件是否为图片\n * @param file - 要检查的文件对象\n * @returns {boolean} 如果文件是图片类型返回 true,否则返回 false\n * @example\n * const file = new File([''], 'test.png', { type: 'image/png' });\n * isImageByMimeType(file); // true\n */\nexport function isImageByMimeType(file: File) {\n return file.type.startsWith('image/')\n}\n\n/**\n * 判断一个值是否为普通对象\n * @param value - 要判断的值\n * @returns 如果值是普通对象,则返回 true,否则返回 false\n */\nexport function isPlainObject(value: unknown): value is Record<string, any> {\n if (value === null || typeof value !== 'object') {\n return false\n }\n\n // 获取原型\n const proto = Object.getPrototypeOf(value)\n\n // 如果没有原型(proto === null),说明是通过 Object.create(null) 创建的\n // 或者原型就是 Object.prototype,说明是普通对象\n return proto === null || proto === Object.prototype\n}\n"],"names":["val","e","Element","file","type","startsWith","str","test","replace","JSON","parse","
|
|
1
|
+
{"version":3,"file":"types.cjs","sources":["../../../../packages/utils/src/types.ts"],"sourcesContent":["export const isUndefined = (val: any): val is undefined => val === undefined\nexport const isBoolean = (val: any): val is boolean => typeof val === 'boolean'\nexport const isNumber = (val: any): val is number => typeof val === 'number'\n\nexport function isElement(e: unknown): e is Element {\n if (typeof Element === 'undefined') {\n return false\n }\n return e instanceof Element\n}\n\nexport function isWindow(val: unknown): val is Window {\n return val === window\n}\n\n/**\n * 判断字符串是否为JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是JSON字符串,则返回true,否则返回false\n */\nexport function isJSONString(str: string) {\n const jsonStringRegex = /^[\\],:{}\\s]*$/\n .test(str.replace(/\\\\[\"\\\\/bfnrtu]/g, '@')\n .replace(/\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g, ']')\n .replace(/(?:^|:|,)(?:\\s*\\[)+/g, ''))\n\n return jsonStringRegex && isValidJSON(str)\n}\n\n/**\n * 判断字符串是否为有效的JSON字符串\n * @param str - 要判断的字符串\n * @returns 如果字符串是有效的JSON字符串,则返回true,否则返回false\n */\nfunction isValidJSON(str: string) {\n try {\n JSON.parse(str)\n return true\n }\n catch (e) {\n console.log('e: ', e)\n return false\n }\n}\n\n/**\n * 通过 MIME 类型判断文件是否为图片\n * @param file - 要检查的文件对象\n * @returns {boolean} 如果文件是图片类型返回 true,否则返回 false\n * @example\n * const file = new File([''], 'test.png', { type: 'image/png' });\n * isImageByMimeType(file); // true\n */\nexport function isImageByMimeType(file: File) {\n return file.type.startsWith('image/')\n}\n\n/**\n * 判断一个值是否为普通对象\n * @param value - 要判断的值\n * @returns 如果值是普通对象,则返回 true,否则返回 false\n */\nexport function isPlainObject(value: unknown): value is Record<string, any> {\n if (value === null || typeof value !== 'object') {\n return false\n }\n\n // 获取原型\n const proto = Object.getPrototypeOf(value)\n\n // 如果没有原型(proto === null),说明是通过 Object.create(null) 创建的\n // 或者原型就是 Object.prototype,说明是普通对象\n return proto === null || proto === Object.prototype\n}\n"],"names":["val","e","Element","file","type","startsWith","str","test","replace","JSON","parse","isValidJSON","value","proto","Object","getPrototypeOf","prototype","window"],"mappings":"+BAC0BA,GAA4C,kBAARA,oBAGvD,SAAmBC,GACxB,MAAuB,oBAAZC,SAGJD,aAAaC,OACtB,4BA4CO,SAA2BC,GAChC,OAAOA,EAAKC,KAAKC,WAAW,SAC9B,uBAnCO,SAAsBC,GAM3B,MALwB,gBACrBC,KAAKD,EAAIE,QAAQ,kBAAmB,KAClCA,QAAQ,mEAAoE,KAC5EA,QAAQ,uBAAwB,MAUvC,SAAqBF,GACnB,IAEE,OADAG,KAAKC,MAAMJ,IACJ,CACT,OACOL,GAEL,OAAO,CACT,CACF,CAjB4BU,CAAYL,EACxC,mBAzByBN,GAA2C,iBAARA,wBA4DrD,SAAuBY,GAC5B,GAAc,OAAVA,GAAmC,iBAAVA,EAC3B,OAAO,EAIT,MAAMC,EAAQC,OAAOC,eAAeH,GAIpC,OAAiB,OAAVC,GAAkBA,IAAUC,OAAOE,SAC5C,sBAzE4BhB,QAAuC,IAARA,mBAWpD,SAAkBA,GACvB,OAAOA,IAAQiB,MACjB"}
|
package/package.json
CHANGED
|
@@ -32,25 +32,19 @@ export declare class FetchApiService<T extends ApiTypeMap<U>, U extends UrlObjec
|
|
|
32
32
|
/**
|
|
33
33
|
* 发起 API 请求,返回统一的响应格式 { res, error }
|
|
34
34
|
* @template K - URL 配置对象类型
|
|
35
|
-
* @param config -
|
|
36
|
-
* @param
|
|
35
|
+
* @param config - 请求配置(单参数时使用 ky 原生参数如 searchParams/json)
|
|
36
|
+
* @param requestData - 请求数据(双参数时自动根据 method 处理)
|
|
37
37
|
* @returns Promise<{ res, error }> - 统一响应格式
|
|
38
38
|
*/
|
|
39
|
-
useApi: <K extends U>(config: Omit<ExtendedOptions, "method"> & K
|
|
40
|
-
params?: RequestParams<T[K["url"]]["request"]>;
|
|
41
|
-
data?: RequestPayload<T[K["url"]]["request"]>;
|
|
42
|
-
}, params?: RequestParams<T[K["url"]]["request"]> | RequestPayload<T[K["url"]]["request"]>) => Promise<UseApiResponse<T[K["url"]]["response"], E>>;
|
|
39
|
+
useApi: <K extends U>(config: Omit<ExtendedOptions, "method"> & K, requestData?: RequestParams<T[K["url"]]["request"]> | RequestPayload<T[K["url"]]["request"]>) => Promise<UseApiResponse<T[K["url"]]["response"], E>>;
|
|
43
40
|
/**
|
|
44
41
|
* 发起 API 请求,直接返回数据或抛出错误
|
|
45
42
|
* @template K - URL 配置对象类型
|
|
46
|
-
* @param config -
|
|
47
|
-
* @param
|
|
43
|
+
* @param config - 请求配置(单参数时使用 ky 原生参数如 searchParams/json)
|
|
44
|
+
* @param requestData - 请求数据(双参数时自动根据 method 处理)
|
|
48
45
|
* @returns Promise<Response> - 直接返回响应数据
|
|
49
46
|
*/
|
|
50
|
-
apiClient: <K extends U>(config: Omit<ExtendedOptions, "method"> & K
|
|
51
|
-
params?: RequestParams<T[K["url"]]["request"]>;
|
|
52
|
-
data?: RequestPayload<T[K["url"]]["request"]>;
|
|
53
|
-
}, params?: RequestParams<T[K["url"]]["request"]> | RequestPayload<T[K["url"]]["request"]>) => Promise<T[K["url"]]["response"]>;
|
|
47
|
+
apiClient: <K extends U>(config: Omit<ExtendedOptions, "method"> & K, requestData?: RequestParams<T[K["url"]]["request"]> | RequestPayload<T[K["url"]]["request"]>) => Promise<T[K["url"]]["response"]>;
|
|
54
48
|
}
|
|
55
49
|
export {};
|
|
56
50
|
//# sourceMappingURL=fetch-client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-client.d.ts","sourceRoot":"","sources":["../../../../../packages/utils/src/api-client/fetch-client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,IAAI,CAAA;AACjC,OAAO,KAAK,EACV,UAAU,EACV,iBAAiB,EACjB,aAAa,EACb,aAAa,EACb,cAAc,EACd,aAAa,EACb,cAAc,EACf,MAAM,SAAS,CAAA;AAEhB;;GAEG;AACH,UAAU,eAAgB,SAAQ,OAAO;IACvC,6BAA6B;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,wCAAwC;IACxC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,qBAAqB;IACrB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,mCAAmC;IACnC,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB;AAED;;GAEG;AACH,qBAAa,QAAS,SAAQ,KAAK;IACjC,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;gBAEF,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM;CAO5E;AAMD;;GAEG;AACH,qBAAa,eAAe,CAC1B,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EACvB,CAAC,SAAS,aAAa,EACvB,CAAC,SAAS,iBAAiB,GAAG,aAAa;IAI/B,OAAO,CAAC,MAAM;IAF1B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAgC;gBAEnC,MAAM,EAAE,GAAG;IAO/B;;;;;;OAMG;IACI,MAAM,GAAU,CAAC,SAAS,CAAC,EAChC,QAAQ,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC,GAAG,CAAC,
|
|
1
|
+
{"version":3,"file":"fetch-client.d.ts","sourceRoot":"","sources":["../../../../../packages/utils/src/api-client/fetch-client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,IAAI,CAAA;AACjC,OAAO,KAAK,EACV,UAAU,EACV,iBAAiB,EACjB,aAAa,EACb,aAAa,EACb,cAAc,EACd,aAAa,EACb,cAAc,EACf,MAAM,SAAS,CAAA;AAEhB;;GAEG;AACH,UAAU,eAAgB,SAAQ,OAAO;IACvC,6BAA6B;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,wCAAwC;IACxC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,qBAAqB;IACrB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,mCAAmC;IACnC,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB;AAED;;GAEG;AACH,qBAAa,QAAS,SAAQ,KAAK;IACjC,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;gBAEF,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM;CAO5E;AAMD;;GAEG;AACH,qBAAa,eAAe,CAC1B,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,EACvB,CAAC,SAAS,aAAa,EACvB,CAAC,SAAS,iBAAiB,GAAG,aAAa;IAI/B,OAAO,CAAC,MAAM;IAF1B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAgC;gBAEnC,MAAM,EAAE,GAAG;IAO/B;;;;;;OAMG;IACI,MAAM,GAAU,CAAC,SAAS,CAAC,EAChC,QAAQ,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC,GAAG,CAAC,EAC3C,cAAc,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAC3F,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAyCrD;IAED;;;;;;OAMG;IACI,SAAS,GAAU,CAAC,SAAS,CAAC,EACnC,QAAQ,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC,GAAG,CAAC,EAC3C,cAAc,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAC3F,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CA8BlC;CACF"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* HTTP 请求方法类型
|
|
3
3
|
*/
|
|
4
|
-
export type Method = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
|
|
4
|
+
export type Method = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS' | 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'options';
|
|
5
5
|
/**
|
|
6
6
|
* API URL 配置对象类型
|
|
7
7
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../packages/utils/src/api-client/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,MAAM,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../packages/utils/src/api-client/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,MAAM,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAA;AAExJ;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED;;;GAGG;AACH,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,aAAa,GAAG,aAAa,IAAI;KAC/D,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG;QACf,OAAO,EAAE,GAAG,CAAA;QACZ,QAAQ,EAAE,GAAG,CAAA;KACd;CACF,CAAA;AAED;;;GAGG;AACH,MAAM,WAAW,mBAAmB,CAAC,CAAC,GAAG,OAAO;IAC9C,IAAI,EAAE,CAAC,CAAA;IACP,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACnB;AAED;;;GAGG;AACH,MAAM,WAAW,eAAe,CAAC,CAAC,CAAE,SAAQ,mBAAmB,CAAC,CAAC,CAAC;IAChE,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,CAAC,CAAA;IACP,OAAO,EAAE,MAAM,CAAA;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,aAAc,SAAQ,iBAAiB;IACtD,IAAI,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc,CAAC,CAAC,GAAG,OAAO,EAAE,CAAC,SAAS,iBAAiB,GAAG,aAAa;IACtF,GAAG,EAAE,CAAC,GAAG,IAAI,CAAA;IACb,KAAK,EAAE,CAAC,GAAG,IAAI,CAAA;CAChB;AAED;;GAEG;AACH,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI,CAAC,SAAS;IAAE,IAAI,EAAE,MAAM,CAAC,CAAA;CAAE,GAAG,CAAC,GAAG,KAAK,CAAA;AAEvE;;GAEG;AACH,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,CAAC,SAAS;IAAE,MAAM,EAAE,MAAM,CAAC,CAAA;CAAE,GAAG,CAAC,GAAG,CAAC,SAAS;IAAE,IAAI,EAAE,MAAM,CAAC,CAAA;CAAE,GAAG,CAAC,GAAG,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@vue+shared@3.5.18/node_modules/@vue/shared/dist/shared.d.ts","../../../node_modules/.pnpm/@vue+reactivity@3.5.18/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../../node_modules/.pnpm/@vue+runtime-core@3.5.18/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@vue+runtime-dom@3.5.18/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../../node_modules/.pnpm/vue@3.5.18_typescript@5.9.2/node_modules/vue/jsx-runtime/index.d.ts","../../../packages/utils/src/argo-log.ts","../../../packages/utils/src/date-transfer.ts","../../../packages/utils/src/device.ts","../../../packages/utils/src/file-operations.ts","../../../node_modules/.pnpm/xlsx@0.18.5/node_modules/xlsx/types/index.d.ts","../../../packages/utils/src/json.ts","../../../node_modules/.pnpm/@types+ali-oss@6.16.13/node_modules/@types/ali-oss/index.d.ts","../../../packages/utils/src/oss-uploader.ts","../../../packages/utils/src/storage.ts","../../../packages/utils/src/types.ts","../../../packages/utils/src/watermark.ts","../../../node_modules/.pnpm/axios@1.11.0/node_modules/axios/index.d.ts","../../../packages/utils/src/api-client/types.ts","../../../packages/utils/src/api-client/axios-client.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/common.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/hooks.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/retry.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/options.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/core/constants.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/response.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/responsepromise.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/ky.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/request.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/errors/httperror.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/errors/timeouterror.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/errors/forceretryerror.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/utils/type-guards.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/index.d.ts","../../../packages/utils/src/api-client/fetch-client.ts","../../../packages/utils/src/api-client/index.ts","../../../packages/utils/index.ts","../../../packages/utils/shims.d.ts"],"fileIdsList":[[82],[82,83,84,86],[83,84,85,86],[105],[106],[105,107,110],[110],[103,105,107,108,109,110,111,112,113,114],[105,106,115],[105,106,108],[102,103,104],[107],[111,112,113],[86],[87,88,89,90,91,93,95,96,97,98,117],[87,97,99,100],[87,100,115],[87,100,101,116],[87],[87,119],[87,92],[87,94]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"25e0492430a92b27414c02e43d9a67a96d915cc9982caa3f36096933e1492f1e","impliedFormat":1},{"version":"616a55b9694bdb765470c1f66dc9606779b250520a36b87f4de2e4c594cea9bc","impliedFormat":1},{"version":"7e7187b0314b6ee31f37db0f82da408112ef548713ccbe28796ef551d47a6e0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"591c55c575d645b7f600dd2be6d9cf8d28c4b4a5297d9dfcd41b861fddce04ab","impliedFormat":1},{"version":"269536033c45b92c13747175bf6d197b959559acb119247b3eb9a0eee250c8c5","impliedFormat":1},{"version":"7bdf93e623085b522f7e1bb4fe4ee9c4df2400b53398eb9a803b9f10f911725b","signature":"4085058b6de61f42972027fce952ec6d0f966070d17d023a3f5c3ebd0c869407","affectsGlobalScope":true},{"version":"72af2f99ff91a9a6767e9374d5bcfdfa734f056e0ca4f99acfbdc0b6910cbe6a","signature":"642691020b5d2610d98d8dfa25df7e7c58a2e885d24bdec278f98842b02892f6"},{"version":"de9652b1bdad8aa2fa302b263a6a72265b276fec040394aa3b6c1adcff419ebc","signature":"6364be1269de7f1efc40324fb2cadc9a17d9bd2742d5bc1b95e309d848ca50f6"},{"version":"8f2a5590837d3f29a8d141931432d8b61e019382d1bdcb5d9990f2525242942b","signature":"4f8d8bcaa7127e5ed2d649cd5fc16b4e46b6d6960d82982ede8429d8066f9b96","affectsGlobalScope":true},{"version":"593654eebe902db28ca173f021f74ea9f77e8b344aebb0a80fa4d10f29bb3a9d","impliedFormat":1},{"version":"19f50a093aa873de6321cd996913aa89e0ec5308a8ae49bf05f071cd9614d0c6","signature":"10ee1d72a1aeb7992ec2517f444db7d425261969e0476b94a1bef6e47fd5c4b6"},{"version":"3cee95a3d958bf994db4705fbe6b7ae503867445972247adc49626f7fd16d46a","impliedFormat":1},{"version":"cab10f9be9bc19e3175a7fecd1a3ee3a810c139e8edbb9bd313928cf71d44cb8","signature":"6a2fbda7ededa991e6090e3e1523246344249347d05fbe97b441b3bcf6a5506a"},{"version":"7484cd645652e5de0e944021ff47e2794cd64e91ccba9e2ddfe2e5c4c7e62b89","signature":"b5ff6435fa9c6d61900a8764225558104fce909c6005109cb4ec42a6772052bd"},{"version":"7ad9aed3f5dc3de5049e8ba6912319dace213430b8babffad59e9b3cb8835760","signature":"a7b65e5fbd85d753c99c13a242176ec0f4f024108de502acbd52f82108f9386d"},{"version":"df1bca5fc6bc70b5a4d100bc5e359d8905927cb3534101a90ad6e54334bc4d7a","signature":"57b68e7019ec085b6644c3ce5572dfcf262183369e4e617b1fba51099a851100"},{"version":"1d7ee0c4eb734d59b6d962bc9151f6330895067cd3058ce6a3cd95347ef5c6e8","impliedFormat":99},{"version":"c26c640706cc94726992df1fc4dcc04bd4a1c4c5119de3abe36cdb9342c4cc84","signature":"509842ceade8e29c27dbb655d6fb51075ab8239c663a616eb4f49cef21272a21"},{"version":"eeed3ec943e5613d867b479bd6f0f27898e8b3b9fc04faaeb472e28926f6cb6a","signature":"c994340180d0d188e270da55ede62fac328ee97d2ed753cd787983cdda1d9b9c"},{"version":"20fcb118bebfb69ca52595ac4f0dd500fe457a5cedb0a4186a3b09cb20aad7c7","impliedFormat":99},{"version":"253aaaa09ecea0012b1a66a3b9f1df249a190cbd4ad3a34faed290ffd76cc2ef","impliedFormat":99},{"version":"d8521817842936ef14076cfe1a5a8cd86f6681afab3e1284b4e6f82ef9603c4a","impliedFormat":99},{"version":"731cfe307acc27e7d6a1b7a92485d91e9381e34e8b23d218aa5ee2a53df399e0","impliedFormat":99},{"version":"f89148f4772e016c8de02d18124e0dd5a84a5ac8e111baaa5405e02311c04345","impliedFormat":99},{"version":"b7ff22e70edc0399bdbb137addc7305f349996fe308125c6e29a5616ddfca817","impliedFormat":99},{"version":"303fdf723814de36ab2dde0cac7aee973ff152b9375b94f5919a66a0520b30f2","impliedFormat":99},{"version":"d599aadec3c934bfebce534bb669a3293a57c0ec1b9c037ccc6e5a3ffddda700","impliedFormat":99},{"version":"e60c9658a1253a68172fa78f91409e3f5587007d6d12c8ea63733db038cfaa33","impliedFormat":99},{"version":"c6c9cac842a0ef7f3358f4caf5c24d24bcb8fad986d8c784ccb813edf8011655","impliedFormat":99},{"version":"924e5a838ba92f49627b61352a57dedffc392cdb39954ac4086e8b786637d142","impliedFormat":99},{"version":"cb26ff91cd0ac970c7653b81163eeef385b170b9e13e4fbbd63f92ca8907f1bf","impliedFormat":99},{"version":"84d5ff92c1e1d49743f1140d1388226e40e311968f9de29cdae606b5111e7bae","impliedFormat":99},{"version":"35f8161d6edaddbdecc2a18ed564ac69fa7dee792b49a8d3f33e4181551b6efe","impliedFormat":99},{"version":"21a751f4234f9129bb91001be8240824c9bce40c5b010bd6801fa7bae88ed2ca","signature":"b81f59fc43815dbc136d400d4a362206786b349def10d3bf4bc25be34aad7819"},{"version":"4ae6f6585218504ec54c96a0f18ca84325610ecf149151e0f222dd08d4416a51","signature":"30c696c6252651063b8cc48c9ba869f8b975a449b0574a0206d8e8500716cf95"},{"version":"8b9ddc32e6d53ab2563f3a425e99d2a0139d361692e963d7765e35ccc73253db","signature":"88602184760b77d470ad73433b1103ac2f64541749d5ffa63ef2b6eaf2720c5b"},{"version":"a911a3d8df881033bf7dddc7c2e68233d6121c2114826324eae73232d0d30b97","affectsGlobalScope":true}],"root":[[88,91],93,[95,98],100,101,[116,119]],"options":{"allowImportingTsExtensions":true,"allowJs":true,"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noFallthroughCasesInSwitch":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../../../packages/utils","skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[83,1],[84,2],[86,3],[106,4],[113,5],[111,6],[112,7],[115,8],[103,9],[109,10],[105,11],[108,12],[114,13],[87,14],[118,15],[101,16],[116,17],[117,18],[100,19],[88,20],[89,19],[90,19],[91,19],[93,21],[95,22],[96,19],[97,19],[98,19]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.2"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@vue+shared@3.5.18/node_modules/@vue/shared/dist/shared.d.ts","../../../node_modules/.pnpm/@vue+reactivity@3.5.18/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../../node_modules/.pnpm/@vue+runtime-core@3.5.18/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@vue+runtime-dom@3.5.18/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../../node_modules/.pnpm/vue@3.5.18_typescript@5.9.2/node_modules/vue/jsx-runtime/index.d.ts","../../../packages/utils/src/argo-log.ts","../../../packages/utils/src/date-transfer.ts","../../../packages/utils/src/device.ts","../../../packages/utils/src/file-operations.ts","../../../node_modules/.pnpm/xlsx@0.18.5/node_modules/xlsx/types/index.d.ts","../../../packages/utils/src/json.ts","../../../node_modules/.pnpm/@types+ali-oss@6.16.13/node_modules/@types/ali-oss/index.d.ts","../../../packages/utils/src/oss-uploader.ts","../../../packages/utils/src/storage.ts","../../../packages/utils/src/types.ts","../../../packages/utils/src/watermark.ts","../../../node_modules/.pnpm/axios@1.11.0/node_modules/axios/index.d.ts","../../../packages/utils/src/api-client/types.ts","../../../packages/utils/src/api-client/axios-client.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/common.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/hooks.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/retry.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/options.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/core/constants.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/response.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/responsepromise.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/ky.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/types/request.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/errors/httperror.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/errors/timeouterror.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/errors/forceretryerror.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/utils/type-guards.d.ts","../../../node_modules/.pnpm/ky@1.14.1/node_modules/ky/distribution/index.d.ts","../../../packages/utils/src/api-client/fetch-client.ts","../../../packages/utils/src/api-client/index.ts","../../../packages/utils/index.ts","../../../packages/utils/shims.d.ts"],"fileIdsList":[[82],[82,83,84,86],[83,84,85,86],[105],[106],[105,107,110],[110],[103,105,107,108,109,110,111,112,113,114],[105,106,115],[105,106,108],[102,103,104],[107],[111,112,113],[86],[87,88,89,90,91,93,95,96,97,98,117],[87,97,99,100],[87,100,115],[87,100,101,116],[87],[87,119],[87,92],[87,94]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"25e0492430a92b27414c02e43d9a67a96d915cc9982caa3f36096933e1492f1e","impliedFormat":1},{"version":"616a55b9694bdb765470c1f66dc9606779b250520a36b87f4de2e4c594cea9bc","impliedFormat":1},{"version":"7e7187b0314b6ee31f37db0f82da408112ef548713ccbe28796ef551d47a6e0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"591c55c575d645b7f600dd2be6d9cf8d28c4b4a5297d9dfcd41b861fddce04ab","impliedFormat":1},{"version":"269536033c45b92c13747175bf6d197b959559acb119247b3eb9a0eee250c8c5","impliedFormat":1},{"version":"7bdf93e623085b522f7e1bb4fe4ee9c4df2400b53398eb9a803b9f10f911725b","signature":"4085058b6de61f42972027fce952ec6d0f966070d17d023a3f5c3ebd0c869407","affectsGlobalScope":true},{"version":"72af2f99ff91a9a6767e9374d5bcfdfa734f056e0ca4f99acfbdc0b6910cbe6a","signature":"642691020b5d2610d98d8dfa25df7e7c58a2e885d24bdec278f98842b02892f6"},{"version":"de9652b1bdad8aa2fa302b263a6a72265b276fec040394aa3b6c1adcff419ebc","signature":"6364be1269de7f1efc40324fb2cadc9a17d9bd2742d5bc1b95e309d848ca50f6"},{"version":"8f2a5590837d3f29a8d141931432d8b61e019382d1bdcb5d9990f2525242942b","signature":"4f8d8bcaa7127e5ed2d649cd5fc16b4e46b6d6960d82982ede8429d8066f9b96","affectsGlobalScope":true},{"version":"593654eebe902db28ca173f021f74ea9f77e8b344aebb0a80fa4d10f29bb3a9d","impliedFormat":1},{"version":"19f50a093aa873de6321cd996913aa89e0ec5308a8ae49bf05f071cd9614d0c6","signature":"10ee1d72a1aeb7992ec2517f444db7d425261969e0476b94a1bef6e47fd5c4b6"},{"version":"3cee95a3d958bf994db4705fbe6b7ae503867445972247adc49626f7fd16d46a","impliedFormat":1},{"version":"cab10f9be9bc19e3175a7fecd1a3ee3a810c139e8edbb9bd313928cf71d44cb8","signature":"6a2fbda7ededa991e6090e3e1523246344249347d05fbe97b441b3bcf6a5506a"},{"version":"7484cd645652e5de0e944021ff47e2794cd64e91ccba9e2ddfe2e5c4c7e62b89","signature":"b5ff6435fa9c6d61900a8764225558104fce909c6005109cb4ec42a6772052bd"},{"version":"7ad9aed3f5dc3de5049e8ba6912319dace213430b8babffad59e9b3cb8835760","signature":"a7b65e5fbd85d753c99c13a242176ec0f4f024108de502acbd52f82108f9386d"},{"version":"df1bca5fc6bc70b5a4d100bc5e359d8905927cb3534101a90ad6e54334bc4d7a","signature":"57b68e7019ec085b6644c3ce5572dfcf262183369e4e617b1fba51099a851100"},{"version":"1d7ee0c4eb734d59b6d962bc9151f6330895067cd3058ce6a3cd95347ef5c6e8","impliedFormat":99},{"version":"4a3f874e483fa265fcda7d507216a362c0c71bb4eaa1c4406f83b7fb0ecfef8a","signature":"004ed2f28cdc2572c9d668facceda3631929ffe31273b75641263849d3b44bd4"},{"version":"eeed3ec943e5613d867b479bd6f0f27898e8b3b9fc04faaeb472e28926f6cb6a","signature":"c994340180d0d188e270da55ede62fac328ee97d2ed753cd787983cdda1d9b9c"},{"version":"20fcb118bebfb69ca52595ac4f0dd500fe457a5cedb0a4186a3b09cb20aad7c7","impliedFormat":99},{"version":"253aaaa09ecea0012b1a66a3b9f1df249a190cbd4ad3a34faed290ffd76cc2ef","impliedFormat":99},{"version":"d8521817842936ef14076cfe1a5a8cd86f6681afab3e1284b4e6f82ef9603c4a","impliedFormat":99},{"version":"731cfe307acc27e7d6a1b7a92485d91e9381e34e8b23d218aa5ee2a53df399e0","impliedFormat":99},{"version":"f89148f4772e016c8de02d18124e0dd5a84a5ac8e111baaa5405e02311c04345","impliedFormat":99},{"version":"b7ff22e70edc0399bdbb137addc7305f349996fe308125c6e29a5616ddfca817","impliedFormat":99},{"version":"303fdf723814de36ab2dde0cac7aee973ff152b9375b94f5919a66a0520b30f2","impliedFormat":99},{"version":"d599aadec3c934bfebce534bb669a3293a57c0ec1b9c037ccc6e5a3ffddda700","impliedFormat":99},{"version":"e60c9658a1253a68172fa78f91409e3f5587007d6d12c8ea63733db038cfaa33","impliedFormat":99},{"version":"c6c9cac842a0ef7f3358f4caf5c24d24bcb8fad986d8c784ccb813edf8011655","impliedFormat":99},{"version":"924e5a838ba92f49627b61352a57dedffc392cdb39954ac4086e8b786637d142","impliedFormat":99},{"version":"cb26ff91cd0ac970c7653b81163eeef385b170b9e13e4fbbd63f92ca8907f1bf","impliedFormat":99},{"version":"84d5ff92c1e1d49743f1140d1388226e40e311968f9de29cdae606b5111e7bae","impliedFormat":99},{"version":"35f8161d6edaddbdecc2a18ed564ac69fa7dee792b49a8d3f33e4181551b6efe","impliedFormat":99},{"version":"1cfc3c86df770bd0716957709fe85dbf941c90032946f4c6c3fafca92fd254c2","signature":"d273292c8b9e4cbb9e18fccdd108dca5a8649128c35ff2ce2c0bf742aeae1700"},{"version":"4ae6f6585218504ec54c96a0f18ca84325610ecf149151e0f222dd08d4416a51","signature":"30c696c6252651063b8cc48c9ba869f8b975a449b0574a0206d8e8500716cf95"},{"version":"8b9ddc32e6d53ab2563f3a425e99d2a0139d361692e963d7765e35ccc73253db","signature":"88602184760b77d470ad73433b1103ac2f64541749d5ffa63ef2b6eaf2720c5b"},{"version":"a911a3d8df881033bf7dddc7c2e68233d6121c2114826324eae73232d0d30b97","affectsGlobalScope":true}],"root":[[88,91],93,[95,98],100,101,[116,119]],"options":{"allowImportingTsExtensions":true,"allowJs":true,"composite":true,"declaration":true,"declarationDir":"./","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noFallthroughCasesInSwitch":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../../../packages/utils","skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[83,1],[84,2],[86,3],[106,4],[113,5],[111,6],[112,7],[115,8],[103,9],[109,10],[105,11],[108,12],[114,13],[87,14],[118,15],[101,16],[116,17],[117,18],[100,19],[88,20],[89,19],[90,19],[91,19],[93,21],[95,22],[96,19],[97,19],[98,19]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.2"}
|