@foundrynorth/compass-schema 1.0.18 → 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
@@ -35059,6 +35059,25 @@ export declare const mediaOrders: import("drizzle-orm/pg-core").PgTableWithColum
35059
35059
  identity: undefined;
35060
35060
  generated: undefined;
35061
35061
  }, {}, {}>;
35062
+ initiativeCode: import("drizzle-orm/pg-core").PgColumn<{
35063
+ name: "initiative_code";
35064
+ tableName: "media_orders";
35065
+ dataType: "string";
35066
+ columnType: "PgVarchar";
35067
+ data: string;
35068
+ driverParam: string;
35069
+ notNull: false;
35070
+ hasDefault: false;
35071
+ isPrimaryKey: false;
35072
+ isAutoincrement: false;
35073
+ hasRuntimeDefault: false;
35074
+ enumValues: [string, ...string[]];
35075
+ baseColumn: never;
35076
+ identity: undefined;
35077
+ generated: undefined;
35078
+ }, {}, {
35079
+ length: number | undefined;
35080
+ }>;
35062
35081
  navigaAdvertiserId: import("drizzle-orm/pg-core").PgColumn<{
35063
35082
  name: "naviga_advertiser_id";
35064
35083
  tableName: "media_orders";
@@ -35717,6 +35736,7 @@ export declare const insertMediaOrderSchema: z.ZodObject<Omit<{
35717
35736
  defaultRunDateEnd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35718
35737
  defaultPromoting: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35719
35738
  orderNotes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35739
+ initiativeCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35720
35740
  navigaAdvertiserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35721
35741
  purchaseOrderNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35722
35742
  billToName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -35811,6 +35831,7 @@ export declare const insertMediaOrderSchema: z.ZodObject<Omit<{
35811
35831
  defaultRunDateStart?: string | null | undefined;
35812
35832
  defaultRunDateEnd?: string | null | undefined;
35813
35833
  orderNotes?: string | null | undefined;
35834
+ initiativeCode?: string | null | undefined;
35814
35835
  navigaAdvertiserId?: string | null | undefined;
35815
35836
  purchaseOrderNumber?: string | null | undefined;
35816
35837
  billToName?: string | null | undefined;
@@ -35895,6 +35916,7 @@ export declare const insertMediaOrderSchema: z.ZodObject<Omit<{
35895
35916
  defaultRunDateStart?: string | null | undefined;
35896
35917
  defaultRunDateEnd?: string | null | undefined;
35897
35918
  orderNotes?: string | null | undefined;
35919
+ initiativeCode?: string | null | undefined;
35898
35920
  navigaAdvertiserId?: string | null | undefined;
35899
35921
  purchaseOrderNumber?: string | null | undefined;
35900
35922
  billToName?: string | null | undefined;
@@ -35980,6 +36002,7 @@ export declare const updateMediaOrderSchema: z.ZodObject<{
35980
36002
  defaultRunDateStart: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35981
36003
  defaultRunDateEnd: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35982
36004
  orderNotes: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
36005
+ initiativeCode: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35983
36006
  navigaAdvertiserId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35984
36007
  purchaseOrderNumber: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35985
36008
  billToName: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -36068,6 +36091,7 @@ export declare const updateMediaOrderSchema: z.ZodObject<{
36068
36091
  defaultRunDateStart?: string | null | undefined;
36069
36092
  defaultRunDateEnd?: string | null | undefined;
36070
36093
  orderNotes?: string | null | undefined;
36094
+ initiativeCode?: string | null | undefined;
36071
36095
  navigaAdvertiserId?: string | null | undefined;
36072
36096
  purchaseOrderNumber?: string | null | undefined;
36073
36097
  billToName?: string | null | undefined;
@@ -36152,6 +36176,7 @@ export declare const updateMediaOrderSchema: z.ZodObject<{
36152
36176
  defaultRunDateStart?: string | null | undefined;
36153
36177
  defaultRunDateEnd?: string | null | undefined;
36154
36178
  orderNotes?: string | null | undefined;
36179
+ initiativeCode?: string | null | undefined;
36155
36180
  navigaAdvertiserId?: string | null | undefined;
36156
36181
  purchaseOrderNumber?: string | null | undefined;
36157
36182
  billToName?: string | null | undefined;
@@ -39273,6 +39298,49 @@ export declare const stribProducts: import("drizzle-orm/pg-core").PgTableWithCol
39273
39298
  identity: undefined;
39274
39299
  generated: undefined;
39275
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
+ }>;
39276
39344
  disclaimer: import("drizzle-orm/pg-core").PgColumn<{
39277
39345
  name: "disclaimer";
39278
39346
  tableName: "strib_products";
@@ -39568,6 +39636,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
39568
39636
  strengths: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
39569
39637
  kpis: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
39570
39638
  descriptionLong: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39639
+ talkingPoints: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
39571
39640
  disclaimer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39572
39641
  minimumBudget: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39573
39642
  minimumCommitmentMonths: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -39624,6 +39693,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
39624
39693
  sailthruListName?: string | null | undefined;
39625
39694
  inventoryType?: string | undefined;
39626
39695
  descriptionLong?: string | null | undefined;
39696
+ talkingPoints?: string[] | null | undefined;
39627
39697
  pricingModelLegacy?: string | null | undefined;
39628
39698
  autoApproveMaxPercent?: number | null | undefined;
39629
39699
  requireApprovalPercent?: number | null | undefined;
@@ -39673,6 +39743,7 @@ export declare const insertStribProductSchema: z.ZodObject<Omit<{
39673
39743
  sailthruListName?: string | null | undefined;
39674
39744
  inventoryType?: string | undefined;
39675
39745
  descriptionLong?: string | null | undefined;
39746
+ talkingPoints?: string[] | null | undefined;
39676
39747
  pricingModelLegacy?: string | null | undefined;
39677
39748
  autoApproveMaxPercent?: number | null | undefined;
39678
39749
  requireApprovalPercent?: number | null | undefined;
@@ -39723,6 +39794,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
39723
39794
  sailthruListName: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39724
39795
  inventoryType: z.ZodOptional<z.ZodOptional<z.ZodString>>;
39725
39796
  descriptionLong: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39797
+ talkingPoints: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>>;
39726
39798
  pricingModelLegacy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
39727
39799
  autoApproveMaxPercent: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
39728
39800
  requireApprovalPercent: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
@@ -39772,6 +39844,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
39772
39844
  sailthruListName?: string | null | undefined;
39773
39845
  inventoryType?: string | undefined;
39774
39846
  descriptionLong?: string | null | undefined;
39847
+ talkingPoints?: string[] | null | undefined;
39775
39848
  pricingModelLegacy?: string | null | undefined;
39776
39849
  autoApproveMaxPercent?: number | null | undefined;
39777
39850
  requireApprovalPercent?: number | null | undefined;
@@ -39821,6 +39894,7 @@ export declare const updateStribProductSchema: z.ZodObject<{
39821
39894
  sailthruListName?: string | null | undefined;
39822
39895
  inventoryType?: string | undefined;
39823
39896
  descriptionLong?: string | null | undefined;
39897
+ talkingPoints?: string[] | null | undefined;
39824
39898
  pricingModelLegacy?: string | null | undefined;
39825
39899
  autoApproveMaxPercent?: number | null | undefined;
39826
39900
  requireApprovalPercent?: number | null | undefined;