@foundrynorth/compass-schema 1.0.7 → 1.0.9

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
@@ -578,6 +578,23 @@ export declare const userProfiles: import("drizzle-orm/pg-core").PgTableWithColu
578
578
  identity: undefined;
579
579
  generated: undefined;
580
580
  }, {}, {}>;
581
+ hubspotOwnerId: import("drizzle-orm/pg-core").PgColumn<{
582
+ name: "hubspot_owner_id";
583
+ tableName: "user_profiles";
584
+ dataType: "string";
585
+ columnType: "PgText";
586
+ data: string;
587
+ driverParam: string;
588
+ notNull: false;
589
+ hasDefault: false;
590
+ isPrimaryKey: false;
591
+ isAutoincrement: false;
592
+ hasRuntimeDefault: false;
593
+ enumValues: [string, ...string[]];
594
+ baseColumn: never;
595
+ identity: undefined;
596
+ generated: undefined;
597
+ }, {}, {}>;
581
598
  createdAt: import("drizzle-orm/pg-core").PgColumn<{
582
599
  name: "created_at";
583
600
  tableName: "user_profiles";
@@ -632,6 +649,7 @@ export declare const insertUserProfileSchema: z.ZodObject<Omit<{
632
649
  preferredMarketId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
633
650
  cardToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
634
651
  hubspotContactId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
652
+ hubspotOwnerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
635
653
  createdAt: z.ZodOptional<z.ZodDate>;
636
654
  updatedAt: z.ZodOptional<z.ZodDate>;
637
655
  }, "id" | "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
@@ -650,6 +668,7 @@ export declare const insertUserProfileSchema: z.ZodObject<Omit<{
650
668
  preferredMarketId?: string | null | undefined;
651
669
  cardToken?: string | null | undefined;
652
670
  hubspotContactId?: string | null | undefined;
671
+ hubspotOwnerId?: string | null | undefined;
653
672
  }, {
654
673
  userId: string;
655
674
  name?: string | null | undefined;
@@ -666,6 +685,7 @@ export declare const insertUserProfileSchema: z.ZodObject<Omit<{
666
685
  preferredMarketId?: string | null | undefined;
667
686
  cardToken?: string | null | undefined;
668
687
  hubspotContactId?: string | null | undefined;
688
+ hubspotOwnerId?: string | null | undefined;
669
689
  }>;
670
690
  export declare const updateUserProfileSchema: z.ZodObject<{
671
691
  name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -683,6 +703,7 @@ export declare const updateUserProfileSchema: z.ZodObject<{
683
703
  preferredMarketId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
684
704
  cardToken: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
685
705
  hubspotContactId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
706
+ hubspotOwnerId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
686
707
  }, "strip", z.ZodTypeAny, {
687
708
  name?: string | null | undefined;
688
709
  phone?: string | null | undefined;
@@ -699,6 +720,7 @@ export declare const updateUserProfileSchema: z.ZodObject<{
699
720
  preferredMarketId?: string | null | undefined;
700
721
  cardToken?: string | null | undefined;
701
722
  hubspotContactId?: string | null | undefined;
723
+ hubspotOwnerId?: string | null | undefined;
702
724
  }, {
703
725
  name?: string | null | undefined;
704
726
  phone?: string | null | undefined;
@@ -715,6 +737,7 @@ export declare const updateUserProfileSchema: z.ZodObject<{
715
737
  preferredMarketId?: string | null | undefined;
716
738
  cardToken?: string | null | undefined;
717
739
  hubspotContactId?: string | null | undefined;
740
+ hubspotOwnerId?: string | null | undefined;
718
741
  }>;
719
742
  export type UserProfile = typeof userProfiles.$inferSelect;
720
743
  export type InsertUserProfile = z.infer<typeof insertUserProfileSchema>;