@foundrynorth/compass-schema 1.0.12 → 1.0.13
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/README.md +43 -0
- package/dist/schema.d.ts +19 -0
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +3 -0
- package/dist/schema.js.map +1 -1
- package/package.json +1 -1
- package/src/schema.ts +3 -0
package/package.json
CHANGED
package/src/schema.ts
CHANGED
|
@@ -4643,6 +4643,7 @@ export const mediaOrders = pgTable(
|
|
|
4643
4643
|
index("media_orders_plan_id_idx").on(table.planId),
|
|
4644
4644
|
index("media_orders_engagement_id_idx").on(table.engagementId),
|
|
4645
4645
|
index("media_orders_partner_id_idx").on(table.partnerId),
|
|
4646
|
+
index("media_orders_hubspot_company_id_idx").on(table.hubspotCompanyId),
|
|
4646
4647
|
index("media_orders_status_idx").on(table.status),
|
|
4647
4648
|
index("media_orders_vendor_id_idx").on(table.vendorId),
|
|
4648
4649
|
index("media_orders_vendor_fulfillment_status_idx").on(table.vendorFulfillmentStatus),
|
|
@@ -5638,6 +5639,8 @@ export const presentationDecks = pgTable(
|
|
|
5638
5639
|
acceptedAt: timestamp("accepted_at"),
|
|
5639
5640
|
htmlContent: text("html_content"),
|
|
5640
5641
|
engagementId: text("engagement_id"),
|
|
5642
|
+
// AI deck planner blueprint — stores the DeckBlueprint that shaped slide selection/ordering
|
|
5643
|
+
blueprintJson: jsonb("blueprint_json").$type<Record<string, any>>(),
|
|
5641
5644
|
},
|
|
5642
5645
|
(table) => [
|
|
5643
5646
|
index("presentation_decks_plan_id_idx").on(table.planId),
|