@foundrynorth/compass-schema 1.0.19 → 1.0.20

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
@@ -39298,6 +39298,49 @@ export declare const stribProducts: import("drizzle-orm/pg-core").PgTableWithCol
39298
39298
  identity: undefined;
39299
39299
  generated: undefined;
39300
39300
  }, {}, {}>;
39301
+ talkingPoints: import("drizzle-orm/pg-core").PgColumn<{
39302
+ name: "talking_points";
39303
+ tableName: "strib_products";
39304
+ dataType: "array";
39305
+ columnType: "PgArray";
39306
+ data: string[];
39307
+ driverParam: string | string[];
39308
+ notNull: false;
39309
+ hasDefault: false;
39310
+ isPrimaryKey: false;
39311
+ isAutoincrement: false;
39312
+ hasRuntimeDefault: false;
39313
+ enumValues: [string, ...string[]];
39314
+ baseColumn: import("drizzle-orm").Column<{
39315
+ name: "talking_points";
39316
+ tableName: "strib_products";
39317
+ dataType: "string";
39318
+ columnType: "PgText";
39319
+ data: string;
39320
+ driverParam: string;
39321
+ notNull: false;
39322
+ hasDefault: false;
39323
+ isPrimaryKey: false;
39324
+ isAutoincrement: false;
39325
+ hasRuntimeDefault: false;
39326
+ enumValues: [string, ...string[]];
39327
+ baseColumn: never;
39328
+ identity: undefined;
39329
+ generated: undefined;
39330
+ }, {}, {}>;
39331
+ identity: undefined;
39332
+ generated: undefined;
39333
+ }, {}, {
39334
+ baseBuilder: import("drizzle-orm/pg-core").PgColumnBuilder<{
39335
+ name: "talking_points";
39336
+ dataType: "string";
39337
+ columnType: "PgText";
39338
+ data: string;
39339
+ enumValues: [string, ...string[]];
39340
+ driverParam: string;
39341
+ }, {}, {}, import("drizzle-orm").ColumnBuilderExtraConfig>;
39342
+ size: undefined;
39343
+ }>;
39301
39344
  disclaimer: import("drizzle-orm/pg-core").PgColumn<{
39302
39345
  name: "disclaimer";
39303
39346
  tableName: "strib_products";
@@ -39593,6 +39636,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
39593
39636
  strengths: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
39594
39637
  kpis: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
39595
39638
  descriptionLong: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39639
+ talkingPoints: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
39596
39640
  disclaimer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39597
39641
  minimumBudget: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39598
39642
  minimumCommitmentMonths: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -39649,6 +39693,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
39649
39693
  sailthruListName?: string | null | undefined;
39650
39694
  inventoryType?: string | undefined;
39651
39695
  descriptionLong?: string | null | undefined;
39696
+ talkingPoints?: string[] | null | undefined;
39652
39697
  pricingModelLegacy?: string | null | undefined;
39653
39698
  autoApproveMaxPercent?: number | null | undefined;
39654
39699
  requireApprovalPercent?: number | null | undefined;
@@ -39698,6 +39743,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
39698
39743
  sailthruListName?: string | null | undefined;
39699
39744
  inventoryType?: string | undefined;
39700
39745
  descriptionLong?: string | null | undefined;
39746
+ talkingPoints?: string[] | null | undefined;
39701
39747
  pricingModelLegacy?: string | null | undefined;
39702
39748
  autoApproveMaxPercent?: number | null | undefined;
39703
39749
  requireApprovalPercent?: number | null | undefined;
@@ -39748,6 +39794,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
39748
39794
  sailthruListName: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39749
39795
  inventoryType: z.ZodOptional<z.ZodOptional<z.ZodString>>;
39750
39796
  descriptionLong: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39797
+ talkingPoints: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
39751
39798
  pricingModelLegacy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39752
39799
  autoApproveMaxPercent: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
39753
39800
  requireApprovalPercent: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
@@ -39797,6 +39844,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
39797
39844
  sailthruListName?: string | null | undefined;
39798
39845
  inventoryType?: string | undefined;
39799
39846
  descriptionLong?: string | null | undefined;
39847
+ talkingPoints?: string[] | null | undefined;
39800
39848
  pricingModelLegacy?: string | null | undefined;
39801
39849
  autoApproveMaxPercent?: number | null | undefined;
39802
39850
  requireApprovalPercent?: number | null | undefined;
@@ -39846,6 +39894,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
39846
39894
  sailthruListName?: string | null | undefined;
39847
39895
  inventoryType?: string | undefined;
39848
39896
  descriptionLong?: string | null | undefined;
39897
+ talkingPoints?: string[] | null | undefined;
39849
39898
  pricingModelLegacy?: string | null | undefined;
39850
39899
  autoApproveMaxPercent?: number | null | undefined;
39851
39900
  requireApprovalPercent?: number | null | undefined;