@foundrynorth/flux-schema 1.9.3 → 1.9.4

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.
Files changed (2) hide show
  1. package/dist/schema.js +1 -1
  2. package/package.json +1 -1
package/dist/schema.js CHANGED
@@ -4589,7 +4589,7 @@ export const fluxContractTemplates = pgTable("flux_contract_templates", {
4589
4589
  id: text("id").primaryKey().default(sql `gen_random_uuid()::text`),
4590
4590
  name: text("name").notNull(),
4591
4591
  description: text("description"),
4592
- htmlTemplateKey: text("html_template_key").notNull().default("star_tribune"),
4592
+ htmlTemplateKey: text("html_template_key").notNull().default("star-tribune"),
4593
4593
  signatureFields: jsonb("signature_fields").notNull().default([]),
4594
4594
  termMonths: integer("term_months").notNull(),
4595
4595
  hasCancelClause: boolean("has_cancel_clause").notNull().default(false),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foundrynorth/flux-schema",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "description": "Canonical Drizzle ORM schema for Foundry Flux (broad-firefly database, flux_* tables)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",