@plyaz/api 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/services/files/GET/downloadFile.d.ts.map +1 -1
- package/dist/api/services/files/GET/useDownloadFile.d.ts.map +1 -1
- package/dist/entry-frontend.cjs +2 -6
- package/dist/entry-frontend.cjs.map +1 -1
- package/dist/entry-frontend.mjs +2 -6
- package/dist/entry-frontend.mjs.map +1 -1
- package/dist/index.cjs +2 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/entry-frontend.mjs
CHANGED
|
@@ -23683,7 +23683,7 @@ async function downloadFile(request, options) {
|
|
|
23683
23683
|
);
|
|
23684
23684
|
}
|
|
23685
23685
|
const serviceDefaults = {
|
|
23686
|
-
unifiedStrategy: "
|
|
23686
|
+
unifiedStrategy: "mutation",
|
|
23687
23687
|
timeout: 6e4
|
|
23688
23688
|
// 60 seconds for downloads
|
|
23689
23689
|
};
|
|
@@ -23738,11 +23738,7 @@ __name(useGetFile, "useGetFile");
|
|
|
23738
23738
|
|
|
23739
23739
|
// src/api/services/files/GET/useDownloadFile.ts
|
|
23740
23740
|
function useDownloadFile(queryKey, request, serviceOptions, queryOptions) {
|
|
23741
|
-
return createApiQuery(downloadFile,
|
|
23742
|
-
apiConfig: {
|
|
23743
|
-
unifiedStrategy: "background"
|
|
23744
|
-
}
|
|
23745
|
-
})(queryKey, request, serviceOptions, queryOptions);
|
|
23741
|
+
return createApiQuery(downloadFile)(queryKey, request, serviceOptions, queryOptions);
|
|
23746
23742
|
}
|
|
23747
23743
|
__name(useDownloadFile, "useDownloadFile");
|
|
23748
23744
|
|