orchid-orm 1.44.2 → 1.44.3

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.
@@ -2894,7 +2894,7 @@ const appCodeGenUpdateDbFile = async (dbPath, tables, extensions, domains) => {
2894
2894
  if (extensions.length) {
2895
2895
  code += `
2896
2896
  extensions: [${extensions.map(
2897
- (ext) => ext.version ? `{ ${ext.name}: '${ext.version}' }` : `'${ext.name}'`
2897
+ (ext) => ext.version ? `{ ${quoteObjectKey(ext.name)}: '${ext.version}' }` : singleQuote(ext.name)
2898
2898
  ).join(", ")}],`;
2899
2899
  }
2900
2900
  if (domains.length) {