@foundrynorth/compass-schema 1.0.2 → 1.0.3

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
@@ -9232,6 +9232,23 @@ export declare const plans: import("drizzle-orm/pg-core").PgTableWithColumns<{
9232
9232
  identity: undefined;
9233
9233
  generated: undefined;
9234
9234
  }, {}, {}>;
9235
+ lastHubspotSync: import("drizzle-orm/pg-core").PgColumn<{
9236
+ name: "last_hubspot_sync";
9237
+ tableName: "plans";
9238
+ dataType: "date";
9239
+ columnType: "PgTimestamp";
9240
+ data: Date;
9241
+ driverParam: string;
9242
+ notNull: false;
9243
+ hasDefault: false;
9244
+ isPrimaryKey: false;
9245
+ isAutoincrement: false;
9246
+ hasRuntimeDefault: false;
9247
+ enumValues: undefined;
9248
+ baseColumn: never;
9249
+ identity: undefined;
9250
+ generated: undefined;
9251
+ }, {}, {}>;
9235
9252
  createdAt: import("drizzle-orm/pg-core").PgColumn<{
9236
9253
  name: "created_at";
9237
9254
  tableName: "plans";
@@ -11333,6 +11350,7 @@ export declare const insertPlanSchema: z.ZodObject<Omit<{
11333
11350
  hubspotOwnerEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11334
11351
  hubspotLastActivity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11335
11352
  hubspotUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11353
+ lastHubspotSync: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
11336
11354
  createdAt: z.ZodOptional<z.ZodDate>;
11337
11355
  createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11338
11356
  ownerUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -36930,6 +36948,23 @@ export declare const stribProducts: import("drizzle-orm/pg-core").PgTableWithCol
36930
36948
  identity: undefined;
36931
36949
  generated: undefined;
36932
36950
  }, {}, {}>;
36951
+ familyId: import("drizzle-orm/pg-core").PgColumn<{
36952
+ name: "family_id";
36953
+ tableName: "strib_products";
36954
+ dataType: "number";
36955
+ columnType: "PgInteger";
36956
+ data: number;
36957
+ driverParam: string | number;
36958
+ notNull: false;
36959
+ hasDefault: false;
36960
+ isPrimaryKey: false;
36961
+ isAutoincrement: false;
36962
+ hasRuntimeDefault: false;
36963
+ enumValues: undefined;
36964
+ baseColumn: never;
36965
+ identity: undefined;
36966
+ generated: undefined;
36967
+ }, {}, {}>;
36933
36968
  code: import("drizzle-orm/pg-core").PgColumn<{
36934
36969
  name: "code";
36935
36970
  tableName: "strib_products";
@@ -37856,6 +37891,7 @@ export declare const stribProducts: import("drizzle-orm/pg-core").PgTableWithCol
37856
37891
  export declare const insertStribProductSchema: z.ZodObject<Omit<{
37857
37892
  id: z.ZodOptional<z.ZodString>;
37858
37893
  categoryId: z.ZodString;
37894
+ familyId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
37859
37895
  code: z.ZodString;
37860
37896
  name: z.ZodString;
37861
37897
  sku: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -37922,6 +37958,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
37922
37958
  minimumSpend?: number | null | undefined;
37923
37959
  costRate?: number | null | undefined;
37924
37960
  hubspotProductId?: string | null | undefined;
37961
+ familyId?: number | null | undefined;
37925
37962
  sku?: number | null | undefined;
37926
37963
  navigaProductId?: string | null | undefined;
37927
37964
  navigaRatecardId?: string | null | undefined;
@@ -37968,6 +38005,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
37968
38005
  minimumSpend?: number | null | undefined;
37969
38006
  costRate?: number | null | undefined;
37970
38007
  hubspotProductId?: string | null | undefined;
38008
+ familyId?: number | null | undefined;
37971
38009
  sku?: number | null | undefined;
37972
38010
  navigaProductId?: string | null | undefined;
37973
38011
  navigaRatecardId?: string | null | undefined;
@@ -38013,6 +38051,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
38013
38051
  minimumSpend: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
38014
38052
  costRate: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
38015
38053
  hubspotProductId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
38054
+ familyId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
38016
38055
  categoryId: z.ZodOptional<z.ZodString>;
38017
38056
  sku: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
38018
38057
  navigaProductId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -38059,6 +38098,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
38059
38098
  minimumSpend?: number | null | undefined;
38060
38099
  costRate?: number | null | undefined;
38061
38100
  hubspotProductId?: string | null | undefined;
38101
+ familyId?: number | null | undefined;
38062
38102
  categoryId?: string | undefined;
38063
38103
  sku?: number | null | undefined;
38064
38104
  navigaProductId?: string | null | undefined;
@@ -38105,6 +38145,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
38105
38145
  minimumSpend?: number | null | undefined;
38106
38146
  costRate?: number | null | undefined;
38107
38147
  hubspotProductId?: string | null | undefined;
38148
+ familyId?: number | null | undefined;
38108
38149
  categoryId?: string | undefined;
38109
38150
  sku?: number | null | undefined;
38110
38151
  navigaProductId?: string | null | undefined;