@foundrynorth/compass-schema 1.0.9 → 1.0.11

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
@@ -53940,6 +53940,40 @@ export declare const contracts: import("drizzle-orm/pg-core").PgTableWithColumns
53940
53940
  identity: undefined;
53941
53941
  generated: undefined;
53942
53942
  }, {}, {}>;
53943
+ termsUrl: import("drizzle-orm/pg-core").PgColumn<{
53944
+ name: "terms_url";
53945
+ tableName: "contracts";
53946
+ dataType: "string";
53947
+ columnType: "PgText";
53948
+ data: string;
53949
+ driverParam: string;
53950
+ notNull: false;
53951
+ hasDefault: false;
53952
+ isPrimaryKey: false;
53953
+ isAutoincrement: false;
53954
+ hasRuntimeDefault: false;
53955
+ enumValues: [string, ...string[]];
53956
+ baseColumn: never;
53957
+ identity: undefined;
53958
+ generated: undefined;
53959
+ }, {}, {}>;
53960
+ termsAddendum: import("drizzle-orm/pg-core").PgColumn<{
53961
+ name: "terms_addendum";
53962
+ tableName: "contracts";
53963
+ dataType: "string";
53964
+ columnType: "PgText";
53965
+ data: string;
53966
+ driverParam: string;
53967
+ notNull: false;
53968
+ hasDefault: false;
53969
+ isPrimaryKey: false;
53970
+ isAutoincrement: false;
53971
+ hasRuntimeDefault: false;
53972
+ enumValues: [string, ...string[]];
53973
+ baseColumn: never;
53974
+ identity: undefined;
53975
+ generated: undefined;
53976
+ }, {}, {}>;
53943
53977
  signingStatus: import("drizzle-orm/pg-core").PgColumn<{
53944
53978
  name: "signing_status";
53945
53979
  tableName: "contracts";
@@ -54096,6 +54130,8 @@ export declare const insertContractSchema: z.ZodObject<Omit<{
54096
54130
  actualMarginDollars: z.ZodOptional<z.ZodNullable<z.ZodString>>;
54097
54131
  orderCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
54098
54132
  lastRecalculatedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
54133
+ termsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
54134
+ termsAddendum: z.ZodOptional<z.ZodNullable<z.ZodString>>;
54099
54135
  signingStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
54100
54136
  sentForSigningAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
54101
54137
  sentForSigningBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -54125,6 +54161,8 @@ export declare const insertContractSchema: z.ZodObject<Omit<{
54125
54161
  productAllocations?: ContractProductAllocation[] | null | undefined;
54126
54162
  projectedMarginPct?: number | null | undefined;
54127
54163
  projectedMarginDollars?: string | null | undefined;
54164
+ termsUrl?: string | null | undefined;
54165
+ termsAddendum?: string | null | undefined;
54128
54166
  signingStatus?: string | null | undefined;
54129
54167
  sentForSigningAt?: Date | null | undefined;
54130
54168
  sentForSigningBy?: string | null | undefined;
@@ -54150,6 +54188,8 @@ export declare const insertContractSchema: z.ZodObject<Omit<{
54150
54188
  productAllocations?: ContractProductAllocation[] | null | undefined;
54151
54189
  projectedMarginPct?: number | null | undefined;
54152
54190
  projectedMarginDollars?: string | null | undefined;
54191
+ termsUrl?: string | null | undefined;
54192
+ termsAddendum?: string | null | undefined;
54153
54193
  signingStatus?: string | null | undefined;
54154
54194
  sentForSigningAt?: Date | null | undefined;
54155
54195
  sentForSigningBy?: string | null | undefined;
@@ -54176,6 +54216,8 @@ export declare const updateContractSchema: z.ZodObject<{
54176
54216
  productAllocations: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ContractProductAllocation[], z.ZodTypeDef, ContractProductAllocation[]>>>>;
54177
54217
  projectedMarginPct: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
54178
54218
  projectedMarginDollars: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
54219
+ termsUrl: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
54220
+ termsAddendum: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
54179
54221
  signingStatus: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
54180
54222
  sentForSigningAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDate>>>;
54181
54223
  sentForSigningBy: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -54201,6 +54243,8 @@ export declare const updateContractSchema: z.ZodObject<{
54201
54243
  productAllocations?: ContractProductAllocation[] | null | undefined;
54202
54244
  projectedMarginPct?: number | null | undefined;
54203
54245
  projectedMarginDollars?: string | null | undefined;
54246
+ termsUrl?: string | null | undefined;
54247
+ termsAddendum?: string | null | undefined;
54204
54248
  signingStatus?: string | null | undefined;
54205
54249
  sentForSigningAt?: Date | null | undefined;
54206
54250
  sentForSigningBy?: string | null | undefined;
@@ -54226,6 +54270,8 @@ export declare const updateContractSchema: z.ZodObject<{
54226
54270
  productAllocations?: ContractProductAllocation[] | null | undefined;
54227
54271
  projectedMarginPct?: number | null | undefined;
54228
54272
  projectedMarginDollars?: string | null | undefined;
54273
+ termsUrl?: string | null | undefined;
54274
+ termsAddendum?: string | null | undefined;
54229
54275
  signingStatus?: string | null | undefined;
54230
54276
  sentForSigningAt?: Date | null | undefined;
54231
54277
  sentForSigningBy?: string | null | undefined;