rxtutils 1.0.3 → 1.0.5-beta.1
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/cjs/index.cjs +1 -1
- package/dist/es/index.mjs +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +16 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default as Cache, ICache, ICacheOptions, StorageMap } from './cache/index.cjs';
|
|
1
|
+
export { default as Cache, ICache, ICacheOptions, StorageMap, StorageType } from './cache/index.cjs';
|
|
2
2
|
export { ErrorHandlerReturnType, Options, RequestOptions, default as createBaseRequest } from './request/index.cjs';
|
|
3
3
|
export { IHookStateInitAction, IHookStateInitialSetter, IHookStateResolvable, IHookStateSetAction, IHookStateSetter, default as createStateStore } from './createStateStore/index.cjs';
|
package/dist/es/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default as Cache, ICache, ICacheOptions, StorageMap } from './cache/index.mjs';
|
|
1
|
+
export { default as Cache, ICache, ICacheOptions, StorageMap, StorageType } from './cache/index.mjs';
|
|
2
2
|
export { ErrorHandlerReturnType, Options, RequestOptions, default as createBaseRequest } from './request/index.mjs';
|
|
3
3
|
export { IHookStateInitAction, IHookStateInitialSetter, IHookStateResolvable, IHookStateSetAction, IHookStateSetter, default as createStateStore } from './createStateStore/index.mjs';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default as Cache, ICache, ICacheOptions, StorageMap } from './cache/index.js';
|
|
1
|
+
export { default as Cache, ICache, ICacheOptions, StorageMap, StorageType } from './cache/index.js';
|
|
2
2
|
export { ErrorHandlerReturnType, Options, RequestOptions, default as createBaseRequest } from './request/index.js';
|
|
3
3
|
export { IHookStateInitAction, IHookStateInitialSetter, IHookStateResolvable, IHookStateSetAction, IHookStateSetter, default as createStateStore } from './createStateStore/index.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rxtutils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5-beta.1",
|
|
4
4
|
"main": "dist/cjs/index.cjs",
|
|
5
5
|
"module": "dist/es/index.mjs",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -9,6 +9,21 @@
|
|
|
9
9
|
"import": "./dist/es/index.mjs",
|
|
10
10
|
"require": "./dist/cjs/index.cjs",
|
|
11
11
|
"types": "./dist/types/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"request": {
|
|
14
|
+
"import": "./dist/es/request.mjs",
|
|
15
|
+
"require": "./dist/cjs/request.cjs",
|
|
16
|
+
"types": "./dist/types/request.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"cache":{
|
|
19
|
+
"import": "./dist/es/cache.mjs",
|
|
20
|
+
"require": "./dist/cjs/cache.cjs",
|
|
21
|
+
"types": "./dist/types/cache.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"createStateStore":{
|
|
24
|
+
"import": "./dist/es/createStateStore.mjs",
|
|
25
|
+
"require": "./dist/cjs/createStateStore.cjs",
|
|
26
|
+
"types": "./dist/types/createStateStore.d.ts"
|
|
12
27
|
}
|
|
13
28
|
},
|
|
14
29
|
"files": [
|