react-toolkits 0.8.39 → 0.8.40

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # react-toolkits
2
2
 
3
+ ## 0.8.40
4
+
5
+ ### Patch Changes
6
+
7
+ - c7c3fd6: feat: export RequestResponse type
8
+
3
9
  ## 0.8.39
4
10
 
5
11
  ### Patch Changes
package/lib/index.d.ts CHANGED
@@ -341,7 +341,7 @@ declare interface RequestOptions extends Omit<RequestInit, 'body'> {
341
341
  isGlobal?: boolean;
342
342
  }
343
343
 
344
- declare type RequestResponse<T> = Pick<Response, 'headers' | 'status' | 'statusText' | 'url'> & {
344
+ export declare type RequestResponse<T> = Pick<Response, 'headers' | 'status' | 'statusText' | 'url'> & {
345
345
  data: T;
346
346
  };
347
347
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-toolkits",
3
- "version": "0.8.39",
3
+ "version": "0.8.40",
4
4
  "packageManager": "^pnpm@8.7.5",
5
5
  "sideEffects": [
6
6
  "**/*.css"