synapse-storage 3.0.5 → 3.0.8
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/README.md +37 -48
- package/dist/api.cjs +890 -1
- package/dist/api.js +859 -1
- package/dist/core.cjs +2420 -1
- package/dist/core.js +2387 -1
- package/dist/index.cjs +4179 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4124 -1
- package/dist/react.cjs +267 -1
- package/dist/react.js +238 -1
- package/dist/reactive.cjs +642 -1
- package/dist/reactive.js +603 -1
- package/dist/utils.cjs +600 -1
- package/dist/utils.js +573 -1
- package/package.json +12 -7
- package/dist/api.d.cts +0 -365
- package/dist/chunk-22J2S57D.cjs +0 -1
- package/dist/chunk-4USKKL5R.js +0 -1
- package/dist/chunk-5X65PSGD.js +0 -1
- package/dist/chunk-635Q6YJZ.cjs +0 -1
- package/dist/chunk-6RNZVHSR.js +0 -1
- package/dist/chunk-FW5NGLPP.cjs +0 -1
- package/dist/chunk-IPUPRMZK.js +0 -1
- package/dist/chunk-NMDHQXMS.cjs +0 -1
- package/dist/chunk-S7X7IDBT.js +0 -1
- package/dist/chunk-UFBCZ25Y.cjs +0 -1
- package/dist/chunk-VSIVOWZF.cjs +0 -1
- package/dist/chunk-WC5TDS6C.cjs +0 -1
- package/dist/chunk-WQNH3LVB.js +0 -1
- package/dist/chunk-ZE2EJX2Y.js +0 -1
- package/dist/core.d.cts +0 -397
- package/dist/dispatcher.module-CdpmkplA.d.cts +0 -363
- package/dist/index.d.cts +0 -10
- package/dist/react.d.cts +0 -74
- package/dist/reactive.d.cts +0 -35
- package/dist/selector.interface-CA5y-kD_.d.cts +0 -63
- package/dist/storage.interface-Dl8SLUd1.d.cts +0 -128
- package/dist/utils.d.cts +0 -92
package/dist/index.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ export { ApiClient, ResponseFormat, apiLogger, createUniqueId, headersToObject }
|
|
|
2
2
|
export { I as ISelectorModule, S as SelectorAPI } from './selector.interface-CA5y-kD_.js';
|
|
3
3
|
export { IPlugin, IPluginExecutor, IPluginManager, IStoragePlugin, IndexedDBStorage, LocalStorage, MemoryStorage, PluginContext, SelectorModule, StoragePluginModule, broadcastMiddleware } from './core.js';
|
|
4
4
|
export { B as BatchingMiddlewareOptions, C as ConfigureMiddlewares, D as DefaultMiddlewares, G as GetDefaultMiddleware, f as IEventEmitter, g as ILogger, I as IStorage, k as IndexedDBStorageConfig, L as LocalStorageConfig, j as MemoryStorageConfig, M as Middleware, a as MiddlewareAPI, N as NextFunction, S as ShallowCompareMiddlewareOptions, b as StorageAction, h as StorageConfig, e as StorageEvent, d as StorageEvents, c as StorageKeyType, i as StorageType } from './storage.interface-Dl8SLUd1.js';
|
|
5
|
+
export { createSynapseCtx, useSelector, useStorageSubscribe } from './react.js';
|
|
5
6
|
export { A as Action, b as ActionDefinition, f as ActionsResult, d as ActionsSetup, c as ActionsSetupWithUtils, C as CreateDispatcherType, g as DispatchActions, D as DispatchFunction, k as Dispatcher, p as DispatcherActions, j as DispatcherMiddleware, i as DispatcherMiddlewareAPI, o as Effect, n as EffectBase, x as EffectsModule, a as EnhancedMiddleware, E as EnhancedMiddlewareAPI, m as ExternalStates, e as ExtractResultType, T as TypedAction, V as ValidateConfig, q as ValidateMapRequestUtils, h as WatcherActions, W as WatcherFunction, B as combineEffects, l as createDispatcher, z as createEffect, y as createEffectBase, r as ofType, s as ofTypes, t as ofTypesWaitAll, u as selectorMap, v as selectorObject, w as validateMap } from './dispatcher.module-jd8U_ZEs.js';
|
|
6
7
|
export { loggerDispatcherMiddleware } from './reactive.js';
|
|
7
8
|
export { AnySynapseStore, SynapseStoreBasic, SynapseStoreWithDispatcher, SynapseStoreWithEffects, createSynapse } from './utils.js';
|
|
8
|
-
export { createSynapseCtx, useSelector, useStorageSubscribe } from './react.js';
|
|
9
|
-
import 'rxjs';
|
|
10
9
|
import 'react';
|
|
10
|
+
import 'rxjs';
|