@chidchanun/bcp 0.2.14 → 0.2.16
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 +190 -12
- package/docs/README.md +45 -43
- package/docs/api-manifest.json +13 -5
- package/docs/api-reference.md +108 -3
- package/docs/cache-platform-v2.md +487 -0
- package/docs/docs-web-manifest.json +9 -5
- package/docs/platform-manifest.json +29 -4
- package/docs/plugin-module-platform.md +391 -0
- package/docs/releases/0.2.15.md +118 -0
- package/docs/releases/0.2.16.md +147 -0
- package/package.json +7 -2
- package/packages/bundler/src/client-boundary.ts +1 -0
- package/packages/cache/src/platform-v2.ts +1705 -0
- package/packages/client/src/cache.mjs +1554 -0
- package/packages/client/src/cache.ts +29 -0
- package/packages/client/src/plugins.mjs +811 -0
- package/packages/client/src/plugins.ts +26 -0
- package/packages/server/src/plugins.ts +1225 -0
|
@@ -9,3 +9,32 @@ export {
|
|
|
9
9
|
type CacheStats,
|
|
10
10
|
type RevalidateValue,
|
|
11
11
|
} from "../../cache/src/index.js";
|
|
12
|
+
|
|
13
|
+
export {
|
|
14
|
+
createCacheMetrics,
|
|
15
|
+
createCacheStore,
|
|
16
|
+
createMemoryCacheAdapter,
|
|
17
|
+
createMemoryCacheLockAdapter,
|
|
18
|
+
createRedisCacheAdapter,
|
|
19
|
+
createRedisCacheLockAdapter,
|
|
20
|
+
|
|
21
|
+
type CacheAdapter,
|
|
22
|
+
type CacheAdapterEntry,
|
|
23
|
+
type CacheAdapterSetOptions,
|
|
24
|
+
type CacheGetOrSetOptions,
|
|
25
|
+
type CacheLockAdapter,
|
|
26
|
+
type CacheMetricsRegistryLike,
|
|
27
|
+
type CacheMetricsSink,
|
|
28
|
+
type CacheStore,
|
|
29
|
+
type CacheStoreEvent,
|
|
30
|
+
type CacheStoreOptions,
|
|
31
|
+
type CacheStoreSetOptions,
|
|
32
|
+
type CacheStoreStats,
|
|
33
|
+
type MemoryCacheAdapter,
|
|
34
|
+
type MemoryCacheLockAdapter,
|
|
35
|
+
type RedisCacheAdapter,
|
|
36
|
+
type RedisCacheAdapterOptions,
|
|
37
|
+
type RedisCacheCommandClient,
|
|
38
|
+
type RedisCacheLockAdapter,
|
|
39
|
+
type RedisCacheLockAdapterOptions,
|
|
40
|
+
} from "../../cache/src/platform-v2.js";
|