exguard-backend 1.0.31 → 1.0.32

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/index.d.cts CHANGED
@@ -46,6 +46,7 @@ interface ExGuardRealtimeConfig$1 {
46
46
  enabled?: boolean;
47
47
  url?: string;
48
48
  accessToken?: string;
49
+ autoConnect?: boolean;
49
50
  }
50
51
  interface ExGuardEnhancedConfig$1 extends ExGuardConfig {
51
52
  cache?: ExGuardCacheConfig;
package/dist/index.d.ts CHANGED
@@ -46,6 +46,7 @@ interface ExGuardRealtimeConfig$1 {
46
46
  enabled?: boolean;
47
47
  url?: string;
48
48
  accessToken?: string;
49
+ autoConnect?: boolean;
49
50
  }
50
51
  interface ExGuardEnhancedConfig$1 extends ExGuardConfig {
51
52
  cache?: ExGuardCacheConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exguard-backend",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -111,7 +111,7 @@ function createDirectoryStructure() {
111
111
 
112
112
  // Create ExGuard Module
113
113
  function createExGuardModule() {
114
- logStep(2, 'Creating ExGuard Module');
114
+ logStep(2, 'Creating Ex Guard Module');
115
115
 
116
116
  const moduleContent = `import { Module, Global } from '@nestjs/common';
117
117
  import { Guard } from 'exguard-backend';
@@ -132,7 +132,6 @@ import { Guard } from 'exguard-backend';
132
132
  enabled: process.env.EXGUARD_REALTIME_ENABLED === 'true' && !!process.env.EXGUARD_REALTIME_URL,
133
133
  url: process.env.EXGUARD_REALTIME_URL || undefined,
134
134
  accessToken: process.env.EXGUARD_SERVICE_TOKEN || undefined,
135
- autoConnect: process.env.EXGUARD_REALTIME_ENABLED === 'true',
136
135
  },
137
136
  }),
138
137
  },