@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 +4 -4
- package/dist/schema.js +1 -1
- package/package.json +1 -1
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: "
|
|
22854
|
-
columnType: "
|
|
22855
|
-
data:
|
|
22856
|
-
driverParam: string
|
|
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:
|
|
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