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