@automagik/omni 2.260520.17 → 2.260520.19

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.js CHANGED
@@ -4783,11 +4783,17 @@ function psqlCapture(args) {
4783
4783
  return result.stdout ?? "";
4784
4784
  }
4785
4785
  async function copyTable(table, srcArgs, dstArgs, log) {
4786
- const src = spawn("psql", [...srcArgs, "-c", `\\copy public.${table} TO STDOUT`], {
4786
+ const src = spawn("psql", [...srcArgs, "-c", `\\copy public.${table} TO STDOUT WITH (FORMAT binary)`], {
4787
4787
  stdio: ["ignore", "pipe", "pipe"],
4788
4788
  env: { ...process.env, PGPASSWORD: "postgres" }
4789
4789
  });
4790
- const dst = spawn("psql", [...dstArgs, "-c", `SET session_replication_role='replica';`, "-c", `\\copy public.${table} FROM STDIN`], {
4790
+ const dst = spawn("psql", [
4791
+ ...dstArgs,
4792
+ "-c",
4793
+ `SET session_replication_role='replica';`,
4794
+ "-c",
4795
+ `\\copy public.${table} FROM STDIN WITH (FORMAT binary)`
4796
+ ], {
4791
4797
  stdio: ["pipe", "pipe", "pipe"],
4792
4798
  env: { ...process.env, PGPASSWORD: "postgres" }
4793
4799
  });
@@ -4905,19 +4911,24 @@ async function migrateUnmountedEmbeddedToCanonical(opts = {}) {
4905
4911
  if (tables.length === 0) {
4906
4912
  return { status: "skipped", reason: "embedded omni has no public tables" };
4907
4913
  }
4908
- log(` ${tables.length} tables to migrate`);
4909
- const truncateList = tables.map((t) => `public.${t}`).join(",");
4914
+ const SKIP_TABLES = new Set(["media_content"]);
4915
+ const filteredTables = tables.filter((t) => !SKIP_TABLES.has(t));
4916
+ const skipped = tables.filter((t) => SKIP_TABLES.has(t));
4917
+ if (skipped.length > 0)
4918
+ log(` skipping ${skipped.length} table(s) (rebuilt at runtime): ${skipped.join(", ")}`);
4919
+ log(` ${filteredTables.length} tables to migrate`);
4920
+ const truncateList = filteredTables.map((t) => `public.${t}`).join(",");
4910
4921
  psqlCapture([
4911
4922
  ...dstBaseArgs,
4912
4923
  "-c",
4913
4924
  `SET session_replication_role='replica'; TRUNCATE ${truncateList} RESTART IDENTITY CASCADE;`
4914
4925
  ]);
4915
4926
  log(" truncated canonical (CASCADE)");
4916
- for (const t of tables) {
4927
+ for (const t of filteredTables) {
4917
4928
  await copyTable(t, srcBaseArgs, dstBaseArgs, log);
4918
4929
  }
4919
4930
  resetSequences(dstBaseArgs, log);
4920
- return { status: "migrated", tables: tables.length, durationMs: Date.now() - t0 };
4931
+ return { status: "migrated", tables: filteredTables.length, durationMs: Date.now() - t0 };
4921
4932
  } finally {
4922
4933
  await temp.stop();
4923
4934
  log(" restarting omni-api");
@@ -124338,7 +124349,7 @@ import { fileURLToPath } from "url";
124338
124349
  // package.json
124339
124350
  var package_default = {
124340
124351
  name: "@automagik/omni",
124341
- version: "2.260520.17",
124352
+ version: "2.260520.19",
124342
124353
  description: "LLM-optimized CLI for Omni",
124343
124354
  type: "module",
124344
124355
  bin: {
@@ -1 +1 @@
1
- {"version":3,"file":"embedded-canonical-migration.d.ts","sourceRoot":"","sources":["../../src/lib/embedded-canonical-migration.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AAWH,MAAM,MAAM,eAAe,GACvB;IAAE,MAAM,EAAE,UAAU,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,GAC1D;IAAE,MAAM,EAAE,SAAS,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAE1C,MAAM,WAAW,cAAc;IAC7B,2EAA2E;IAC3E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,0EAA0E;IAC1E,GAAG,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9B;AA0MD;;;;;;;;GAQG;AACH;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GACrB;IAAE,IAAI,EAAE,SAAS,CAAA;CAAE,GACnB;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,eAAe,EAAE,MAAM,EAAE,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,GAC9E;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAExC,MAAM,WAAW,cAAc;IAC7B,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;;;;;GAMG;AACH,wBAAsB,gCAAgC,CAAC,IAAI,GAAE,cAAmB,GAAG,OAAO,CAAC,aAAa,CAAC,CAiDxG;AAED,wBAAsB,mCAAmC,CAAC,IAAI,GAAE,cAAmB,GAAG,OAAO,CAAC,eAAe,CAAC,CA6E7G;AAED,yEAAyE;AACzE,eAAO,MAAM,yBAAyB,QAAe,CAAC"}
1
+ {"version":3,"file":"embedded-canonical-migration.d.ts","sourceRoot":"","sources":["../../src/lib/embedded-canonical-migration.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AAWH,MAAM,MAAM,eAAe,GACvB;IAAE,MAAM,EAAE,UAAU,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,GAC1D;IAAE,MAAM,EAAE,SAAS,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAE1C,MAAM,WAAW,cAAc;IAC7B,2EAA2E;IAC3E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,0EAA0E;IAC1E,GAAG,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9B;AAyND;;;;;;;;GAQG;AACH;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GACrB;IAAE,IAAI,EAAE,SAAS,CAAA;CAAE,GACnB;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,eAAe,EAAE,MAAM,EAAE,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,GAC9E;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAExC,MAAM,WAAW,cAAc;IAC7B,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;;;;;GAMG;AACH,wBAAsB,gCAAgC,CAAC,IAAI,GAAE,cAAmB,GAAG,OAAO,CAAC,aAAa,CAAC,CAiDxG;AAED,wBAAsB,mCAAmC,CAAC,IAAI,GAAE,cAAmB,GAAG,OAAO,CAAC,eAAe,CAAC,CAuF7G;AAED,yEAAyE;AACzE,eAAO,MAAM,yBAAyB,QAAe,CAAC"}
@@ -230137,7 +230137,7 @@ var init_sentry_scrub = __esm(() => {
230137
230137
  var require_package8 = __commonJS((exports, module) => {
230138
230138
  module.exports = {
230139
230139
  name: "@omni/api",
230140
- version: "2.260520.17",
230140
+ version: "2.260520.19",
230141
230141
  type: "module",
230142
230142
  exports: {
230143
230143
  ".": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automagik/omni",
3
- "version": "2.260520.17",
3
+ "version": "2.260520.19",
4
4
  "description": "LLM-optimized CLI for Omni",
5
5
  "type": "module",
6
6
  "bin": {