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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/scripts/setup-nestjs.cjs +1 -2
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
package/scripts/setup-nestjs.cjs
CHANGED
|
@@ -111,7 +111,7 @@ function createDirectoryStructure() {
|
|
|
111
111
|
|
|
112
112
|
// Create ExGuard Module
|
|
113
113
|
function createExGuardModule() {
|
|
114
|
-
logStep(2, 'Creating
|
|
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
|
},
|