@foundrynorth/flux-schema 1.12.0 → 1.13.0

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/schema.d.ts CHANGED
@@ -22850,10 +22850,10 @@ export declare const fluxTapclicksLineItems: import("drizzle-orm/pg-core").PgTab
22850
22850
  impressions: import("drizzle-orm/pg-core").PgColumn<{
22851
22851
  name: "impressions";
22852
22852
  tableName: "flux_tapclicks_line_items";
22853
- dataType: "number";
22854
- columnType: "PgInteger";
22855
- data: number;
22856
- driverParam: string | number;
22853
+ dataType: "string";
22854
+ columnType: "PgNumeric";
22855
+ data: string;
22856
+ driverParam: string;
22857
22857
  notNull: false;
22858
22858
  hasDefault: false;
22859
22859
  isPrimaryKey: false;
package/dist/schema.js CHANGED
@@ -3755,7 +3755,7 @@ export const fluxTapclicksLineItems = pgTable("flux_tapclicks_line_items", {
3755
3755
  rate: numeric("rate"),
3756
3756
  floorRate: numeric("floor_rate"),
3757
3757
  rateType: text("rate_type"),
3758
- impressions: integer("impressions"),
3758
+ impressions: numeric("impressions"),
3759
3759
  totalCost: numeric("total_cost"),
3760
3760
  creativeOptions: text("creative_options"),
3761
3761
  dfpLineItemId: text("dfp_line_item_id"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foundrynorth/flux-schema",
3
- "version": "1.12.0",
3
+ "version": "1.13.0",
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",