@kumori/aurora-backend-handler 1.1.60 → 1.1.61

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.
@@ -189,7 +189,7 @@ export const updateTenant = async (tenant: Tenant, security: string) => {
189
189
  await initializeGlobalWebSocketClient(security);
190
190
 
191
191
  const hasNpmRegistry =
192
- tenant.npmRegistry && tenant.npmRegistry.endpoint !== "";
192
+ tenant.npmRegistry !== undefined && tenant.npmRegistry !== null;
193
193
  const hasPlan = tenant.plan?.name;
194
194
 
195
195
  const updateBody: Record<string, any> = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-backend-handler",
3
- "version": "1.1.60",
3
+ "version": "1.1.61",
4
4
  "description": "backend handler",
5
5
  "main": "backend-handler.ts",
6
6
  "scripts": {