@common-stack/store-redis 8.2.5-alpha.36 → 8.3.1-alpha.0

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.
@@ -1,3 +1,8 @@
1
+ /**
2
+ * Core utilities for Redis operations
3
+ * @packageDocumentation
4
+ */
1
5
  export * from './ioredis';
2
6
  export * from './upstash-redis';
3
7
  export * from './keyBuilder';
8
+ export declare const __esModule = true;
@@ -0,0 +1,6 @@
1
+ import'ioredis';import'@upstash/redis/cloudflare';import'crypto';import'graphql/language/index.js';/**
2
+ * Core utilities for Redis operations
3
+ * @packageDocumentation
4
+ */
5
+ // Ensure this file generates a JS output in rollup build
6
+ const __esModule = true;export{__esModule};//# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/core/index.ts"],"sourcesContent":["/**\n * Core utilities for Redis operations\n * @packageDocumentation\n */\n\nexport * from './ioredis';\nexport * from './upstash-redis';\nexport * from './keyBuilder';\n\n// Ensure this file generates a JS output in rollup build\nexport const __esModule = true;\n"],"names":[],"mappings":"mGAAA;;;AAGG;AAMH;AACO,MAAM,UAAU,GAAG"}
package/lib/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  * - Storage backends
10
10
  * - Redis patterns and utilities
11
11
  */
12
- export * from './core';
12
+ export * from './core/index.js';
13
13
  export * from './services';
14
14
  export * from './interfaces';
15
15
  export * from './services';
package/lib/index.js CHANGED
@@ -1 +1 @@
1
- export{IORedisClient}from'./core/ioredis.js';export{UpstashRedisClient}from'./core/upstash-redis.js';export{buildRedisKey,buildRedisKeyPattern}from'./core/keyBuilder/index.js';export{RedisCacheManager}from'./services/RedisCacheManager.js';export{escapeRedisPattern,isHashLikeTenantId,isValidRedisKey,sanitizeRedisKey,sanitizeRedisKeyComponent}from'./core/keyBuilder/sanitize-redis-key.js';export{RedisNamespace,buildRedisKeyPatternWithNamespace,buildRedisKeyWithNamespace,extractNamespaceFromRedisKey,extractTenantIdFromRedisKey,isValidRedisKeyWithNamespace,parseRedisKey}from'./core/keyBuilder/redis-key-builder.js';export{generateQueryCacheKey}from'./core/keyBuilder/generate-query-cache-key.js';//# sourceMappingURL=index.js.map
1
+ export{__esModule}from'./core/index.js';export{RedisCacheManager}from'./services/RedisCacheManager.js';export{IORedisClient}from'./core/ioredis.js';export{UpstashRedisClient}from'./core/upstash-redis.js';export{escapeRedisPattern,isHashLikeTenantId,isValidRedisKey,sanitizeRedisKey,sanitizeRedisKeyComponent}from'./core/keyBuilder/sanitize-redis-key.js';export{buildRedisKey,buildRedisKeyPattern}from'./core/keyBuilder/index.js';export{RedisNamespace,buildRedisKeyPatternWithNamespace,buildRedisKeyWithNamespace,extractNamespaceFromRedisKey,extractTenantIdFromRedisKey,isValidRedisKeyWithNamespace,parseRedisKey}from'./core/keyBuilder/redis-key-builder.js';export{generateQueryCacheKey}from'./core/keyBuilder/generate-query-cache-key.js';//# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/store-redis",
3
- "version": "8.2.5-alpha.36",
3
+ "version": "8.3.1-alpha.0",
4
4
  "description": "Redis store utilities and services for common-stack",
5
5
  "license": "UNLICENSED",
6
6
  "author": "CDMBase LLC",
@@ -24,7 +24,7 @@
24
24
  "watch": "npm run build:lib:watch"
25
25
  },
26
26
  "dependencies": {
27
- "@common-stack/core": "8.2.5-alpha.35"
27
+ "@common-stack/core": "8.3.1-alpha.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "common": "8.2.5-alpha.35",
@@ -55,5 +55,5 @@
55
55
  "typescript": {
56
56
  "definition": "lib/index.d.ts"
57
57
  },
58
- "gitHead": "073ba112d0d673927cca535e7805946fe30880d4"
58
+ "gitHead": "896a0a80a57b2ec62925bdda9ed35e61cd5c1e9f"
59
59
  }