UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

1,271 lines 93.5 kB
import { z } from 'zod'; export declare const QuoteLineSchema: z.ZodObject<{ invMastUid: z.ZodNumber; cancelFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; complete: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; deleteFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; disposition: z.ZodNullable<z.ZodString>; itemDesc: z.ZodNullable<z.ZodString>; displayDesc: z.ZodNullable<z.ZodString>; itemId: z.ZodNullable<z.ZodString>; lineNo: z.ZodNullable<z.ZodNumber>; orderNo: z.ZodNullable<z.ZodString>; originalQtyOrdered: z.ZodNullable<z.ZodNumber>; qtyAllocated: z.ZodNullable<z.ZodNumber>; qtyCanceled: z.ZodNullable<z.ZodNumber>; qtyInvoiced: z.ZodNullable<z.ZodNumber>; qtyOnPickTickets: z.ZodNullable<z.ZodNumber>; qtyOrdered: z.ZodNullable<z.ZodNumber>; unitOfMeasure: z.ZodNullable<z.ZodString>; unitQuantity: z.ZodNullable<z.ZodNumber>; unitSize: z.ZodNullable<z.ZodString>; unitPrice: z.ZodNullable<z.ZodNumber>; extendedPrice: z.ZodNullable<z.ZodNumber>; trinityItemId: z.ZodNullable<z.ZodString>; trinityItemDesc: z.ZodNullable<z.ZodString>; agentItemId: z.ZodNullable<z.ZodString>; agentItemDesc: z.ZodNullable<z.ZodString>; }, "strip", z.ZodTypeAny, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }>; export declare const QuoteDocumentSchema: z.ZodObject<{ orderNo: z.ZodString; customerId: z.ZodNumber; customerName: z.ZodString; jobName: z.ZodNullable<z.ZodString>; orderDate: z.ZodNullable<z.ZodString>; requestedDate: z.ZodNullable<z.ZodString>; completed: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; poNo: z.ZodNullable<z.ZodString>; ship2Name: z.ZodNullable<z.ZodString>; ship2Add1: z.ZodNullable<z.ZodString>; ship2Add2: z.ZodNullable<z.ZodString>; ship2Add3: z.ZodNullable<z.ZodString>; ship2City: z.ZodNullable<z.ZodString>; ship2State: z.ZodNullable<z.ZodString>; ship2Zip: z.ZodNullable<z.ZodString>; ship2Country: z.ZodNullable<z.ZodString>; ship2EmailAddress: z.ZodNullable<z.ZodString>; shipToPhone: z.ZodNullable<z.ZodString>; deliveryInstructions: z.ZodNullable<z.ZodString>; class1Id: z.ZodNullable<z.ZodString>; class2Id: z.ZodNullable<z.ZodString>; class3Id: z.ZodNullable<z.ZodString>; class4Id: z.ZodNullable<z.ZodString>; class5Id: z.ZodNullable<z.ZodString>; contactId: z.ZodNullable<z.ZodString>; webReferenceNo: z.ZodNullable<z.ZodString>; orderStatus: z.ZodEnum<["PENDING", "SHIPPED", "ON HOLD", "IN PROCESS", "SUBMITTED"]>; taker: z.ZodNullable<z.ZodString>; contactFirstName: z.ZodNullable<z.ZodString>; contactLastName: z.ZodNullable<z.ZodString>; carrierId: z.ZodNullable<z.ZodNumber>; carrierName: z.ZodString; lines: z.ZodArray<z.ZodObject<{ invMastUid: z.ZodNumber; cancelFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; complete: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; deleteFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; disposition: z.ZodNullable<z.ZodString>; itemDesc: z.ZodNullable<z.ZodString>; displayDesc: z.ZodNullable<z.ZodString>; itemId: z.ZodNullable<z.ZodString>; lineNo: z.ZodNullable<z.ZodNumber>; orderNo: z.ZodNullable<z.ZodString>; originalQtyOrdered: z.ZodNullable<z.ZodNumber>; qtyAllocated: z.ZodNullable<z.ZodNumber>; qtyCanceled: z.ZodNullable<z.ZodNumber>; qtyInvoiced: z.ZodNullable<z.ZodNumber>; qtyOnPickTickets: z.ZodNullable<z.ZodNumber>; qtyOrdered: z.ZodNullable<z.ZodNumber>; unitOfMeasure: z.ZodNullable<z.ZodString>; unitQuantity: z.ZodNullable<z.ZodNumber>; unitSize: z.ZodNullable<z.ZodString>; unitPrice: z.ZodNullable<z.ZodNumber>; extendedPrice: z.ZodNullable<z.ZodNumber>; trinityItemId: z.ZodNullable<z.ZodString>; trinityItemDesc: z.ZodNullable<z.ZodString>; agentItemId: z.ZodNullable<z.ZodString>; agentItemDesc: z.ZodNullable<z.ZodString>; }, "strip", z.ZodTypeAny, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }>, "many">; pickTickets: z.ZodArray<z.ZodObject<{ pickTicketNo: z.ZodNumber; trackingNo: z.ZodOptional<z.ZodNullable<z.ZodString>>; orderNo: z.ZodString; invoiceNo: z.ZodOptional<z.ZodNullable<z.ZodString>>; shipDate: z.ZodOptional<z.ZodNullable<z.ZodString>>; printedFlag: z.ZodOptional<z.ZodNullable<z.ZodString>>; printDate: z.ZodOptional<z.ZodNullable<z.ZodString>>; instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>; carrierId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; carrierName: z.ZodString; lines: z.ZodArray<z.ZodObject<{ lineNumber: z.ZodNumber; shipQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; qtyRequested: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; invMastUid: z.ZodNumber; itemId: z.ZodString; itemDesc: z.ZodOptional<z.ZodNullable<z.ZodString>>; displayDesc: z.ZodOptional<z.ZodUnknown>; trinityItemId: z.ZodOptional<z.ZodString>; trinityItemDesc: z.ZodOptional<z.ZodString>; agentItemId: z.ZodOptional<z.ZodString>; agentItemDesc: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }, { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }, { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { customerId: number; contactId: string | null; taker: string | null; lines: { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }[]; poNo: string | null; customerName: string; class1Id: string | null; class2Id: string | null; class3Id: string | null; class4Id: string | null; class5Id: string | null; deliveryInstructions: string | null; orderNo: string; carrierId: number | null; carrierName: string; jobName: string | null; orderDate: string | null; requestedDate: string | null; completed: "Y" | "N" | null; ship2Name: string | null; ship2Add1: string | null; ship2Add2: string | null; ship2Add3: string | null; ship2City: string | null; ship2State: string | null; ship2Zip: string | null; ship2Country: string | null; ship2EmailAddress: string | null; shipToPhone: string | null; webReferenceNo: string | null; orderStatus: "PENDING" | "SHIPPED" | "ON HOLD" | "IN PROCESS" | "SUBMITTED"; contactFirstName: string | null; contactLastName: string | null; pickTickets: { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }[]; }, { customerId: number; contactId: string | null; taker: string | null; lines: { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }[]; poNo: string | null; customerName: string; class1Id: string | null; class2Id: string | null; class3Id: string | null; class4Id: string | null; class5Id: string | null; deliveryInstructions: string | null; orderNo: string; carrierId: number | null; carrierName: string; jobName: string | null; orderDate: string | null; requestedDate: string | null; completed: "Y" | "N" | null; ship2Name: string | null; ship2Add1: string | null; ship2Add2: string | null; ship2Add3: string | null; ship2City: string | null; ship2State: string | null; ship2Zip: string | null; ship2Country: string | null; ship2EmailAddress: string | null; shipToPhone: string | null; webReferenceNo: string | null; orderStatus: "PENDING" | "SHIPPED" | "ON HOLD" | "IN PROCESS" | "SUBMITTED"; contactFirstName: string | null; contactLastName: string | null; pickTickets: { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }[]; }>; export declare const QuoteListItemSchema: z.ZodObject<{ orderNo: z.ZodString; customerId: z.ZodNumber; customerName: z.ZodNullable<z.ZodString>; jobName: z.ZodNullable<z.ZodString>; orderDate: z.ZodNullable<z.ZodString>; requestedDate: z.ZodNullable<z.ZodString>; completed: z.ZodNullable<z.ZodString>; poNo: z.ZodNullable<z.ZodString>; orderStatus: z.ZodString; taker: z.ZodNullable<z.ZodString>; webReferenceNo: z.ZodNullable<z.ZodString>; ship2Name: z.ZodNullable<z.ZodString>; ship2Add1: z.ZodNullable<z.ZodString>; ship2Add2: z.ZodNullable<z.ZodString>; ship2Add3: z.ZodNullable<z.ZodString>; ship2City: z.ZodNullable<z.ZodString>; ship2State: z.ZodNullable<z.ZodString>; ship2Zip: z.ZodNullable<z.ZodString>; ship2Country: z.ZodNullable<z.ZodString>; ship2EmailAddress: z.ZodNullable<z.ZodString>; shipToPhone: z.ZodNullable<z.ZodString>; deliveryInstructions: z.ZodNullable<z.ZodString>; class1Id: z.ZodNullable<z.ZodString>; class2Id: z.ZodNullable<z.ZodString>; class3Id: z.ZodNullable<z.ZodString>; class4Id: z.ZodNullable<z.ZodString>; class5Id: z.ZodNullable<z.ZodString>; contactId: z.ZodNullable<z.ZodString>; contactFirstName: z.ZodNullable<z.ZodString>; contactLastName: z.ZodNullable<z.ZodString>; carrierId: z.ZodNullable<z.ZodNumber>; carrierName: z.ZodNullable<z.ZodString>; lines: z.ZodArray<z.ZodObject<{ invMastUid: z.ZodNumber; cancelFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; complete: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; deleteFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; disposition: z.ZodNullable<z.ZodString>; itemDesc: z.ZodNullable<z.ZodString>; displayDesc: z.ZodNullable<z.ZodString>; itemId: z.ZodNullable<z.ZodString>; lineNo: z.ZodNullable<z.ZodNumber>; orderNo: z.ZodNullable<z.ZodString>; originalQtyOrdered: z.ZodNullable<z.ZodNumber>; qtyAllocated: z.ZodNullable<z.ZodNumber>; qtyCanceled: z.ZodNullable<z.ZodNumber>; qtyInvoiced: z.ZodNullable<z.ZodNumber>; qtyOnPickTickets: z.ZodNullable<z.ZodNumber>; qtyOrdered: z.ZodNullable<z.ZodNumber>; unitOfMeasure: z.ZodNullable<z.ZodString>; unitQuantity: z.ZodNullable<z.ZodNumber>; unitSize: z.ZodNullable<z.ZodString>; unitPrice: z.ZodNullable<z.ZodNumber>; extendedPrice: z.ZodNullable<z.ZodNumber>; trinityItemId: z.ZodNullable<z.ZodString>; trinityItemDesc: z.ZodNullable<z.ZodString>; agentItemId: z.ZodNullable<z.ZodString>; agentItemDesc: z.ZodNullable<z.ZodString>; }, "strip", z.ZodTypeAny, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }>, "many">; pickTickets: z.ZodArray<z.ZodObject<{ pickTicketNo: z.ZodNumber; trackingNo: z.ZodOptional<z.ZodNullable<z.ZodString>>; orderNo: z.ZodString; invoiceNo: z.ZodOptional<z.ZodNullable<z.ZodString>>; shipDate: z.ZodOptional<z.ZodNullable<z.ZodString>>; printedFlag: z.ZodOptional<z.ZodNullable<z.ZodString>>; printDate: z.ZodOptional<z.ZodNullable<z.ZodString>>; instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>; carrierId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; carrierName: z.ZodString; lines: z.ZodArray<z.ZodObject<{ lineNumber: z.ZodNumber; shipQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; qtyRequested: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; invMastUid: z.ZodNumber; itemId: z.ZodString; itemDesc: z.ZodOptional<z.ZodNullable<z.ZodString>>; displayDesc: z.ZodOptional<z.ZodUnknown>; trinityItemId: z.ZodOptional<z.ZodString>; trinityItemDesc: z.ZodOptional<z.ZodString>; agentItemId: z.ZodOptional<z.ZodString>; agentItemDesc: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }, { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }, { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { customerId: number; contactId: string | null; taker: string | null; lines: { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }[]; poNo: string | null; customerName: string | null; class1Id: string | null; class2Id: string | null; class3Id: string | null; class4Id: string | null; class5Id: string | null; deliveryInstructions: string | null; orderNo: string; carrierId: number | null; carrierName: string | null; jobName: string | null; orderDate: string | null; requestedDate: string | null; completed: string | null; ship2Name: string | null; ship2Add1: string | null; ship2Add2: string | null; ship2Add3: string | null; ship2City: string | null; ship2State: string | null; ship2Zip: string | null; ship2Country: string | null; ship2EmailAddress: string | null; shipToPhone: string | null; webReferenceNo: string | null; orderStatus: string; contactFirstName: string | null; contactLastName: string | null; pickTickets: { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }[]; }, { customerId: number; contactId: string | null; taker: string | null; lines: { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }[]; poNo: string | null; customerName: string | null; class1Id: string | null; class2Id: string | null; class3Id: string | null; class4Id: string | null; class5Id: string | null; deliveryInstructions: string | null; orderNo: string; carrierId: number | null; carrierName: string | null; jobName: string | null; orderDate: string | null; requestedDate: string | null; completed: string | null; ship2Name: string | null; ship2Add1: string | null; ship2Add2: string | null; ship2Add3: string | null; ship2City: string | null; ship2State: string | null; ship2Zip: string | null; ship2Country: string | null; ship2EmailAddress: string | null; shipToPhone: string | null; webReferenceNo: string | null; orderStatus: string; contactFirstName: string | null; contactLastName: string | null; pickTickets: { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }[]; }>; export declare const QuoteListParamsSchema: z.ZodObject<{ edgeCache: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<8>, z.ZodLiteral<"1">, z.ZodLiteral<"2">, z.ZodLiteral<"3">, z.ZodLiteral<"4">, z.ZodLiteral<"5">, z.ZodLiteral<"8">]>, 3 | 2 | 4 | 1 | 5 | 8, 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8">>; } & { limit: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; orderBy: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { edgeCache?: 3 | 2 | 4 | 1 | 5 | 8 | undefined; limit?: number | undefined; offset?: number | undefined; orderBy?: string | undefined; }, { edgeCache?: 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8" | undefined; limit?: number | undefined; offset?: number | undefined; orderBy?: string | undefined; }>; export declare const QuoteListResponseSchema: z.ZodEffects<z.ZodObject<{ count: z.ZodNumber; data: z.ZodArray<z.ZodObject<{ orderNo: z.ZodString; customerId: z.ZodNumber; customerName: z.ZodNullable<z.ZodString>; jobName: z.ZodNullable<z.ZodString>; orderDate: z.ZodNullable<z.ZodString>; requestedDate: z.ZodNullable<z.ZodString>; completed: z.ZodNullable<z.ZodString>; poNo: z.ZodNullable<z.ZodString>; orderStatus: z.ZodString; taker: z.ZodNullable<z.ZodString>; webReferenceNo: z.ZodNullable<z.ZodString>; ship2Name: z.ZodNullable<z.ZodString>; ship2Add1: z.ZodNullable<z.ZodString>; ship2Add2: z.ZodNullable<z.ZodString>; ship2Add3: z.ZodNullable<z.ZodString>; ship2City: z.ZodNullable<z.ZodString>; ship2State: z.ZodNullable<z.ZodString>; ship2Zip: z.ZodNullable<z.ZodString>; ship2Country: z.ZodNullable<z.ZodString>; ship2EmailAddress: z.ZodNullable<z.ZodString>; shipToPhone: z.ZodNullable<z.ZodString>; deliveryInstructions: z.ZodNullable<z.ZodString>; class1Id: z.ZodNullable<z.ZodString>; class2Id: z.ZodNullable<z.ZodString>; class3Id: z.ZodNullable<z.ZodString>; class4Id: z.ZodNullable<z.ZodString>; class5Id: z.ZodNullable<z.ZodString>; contactId: z.ZodNullable<z.ZodString>; contactFirstName: z.ZodNullable<z.ZodString>; contactLastName: z.ZodNullable<z.ZodString>; carrierId: z.ZodNullable<z.ZodNumber>; carrierName: z.ZodNullable<z.ZodString>; lines: z.ZodArray<z.ZodObject<{ invMastUid: z.ZodNumber; cancelFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; complete: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; deleteFlag: z.ZodNullable<z.ZodEnum<["Y", "N"]>>; disposition: z.ZodNullable<z.ZodString>; itemDesc: z.ZodNullable<z.ZodString>; displayDesc: z.ZodNullable<z.ZodString>; itemId: z.ZodNullable<z.ZodString>; lineNo: z.ZodNullable<z.ZodNumber>; orderNo: z.ZodNullable<z.ZodString>; originalQtyOrdered: z.ZodNullable<z.ZodNumber>; qtyAllocated: z.ZodNullable<z.ZodNumber>; qtyCanceled: z.ZodNullable<z.ZodNumber>; qtyInvoiced: z.ZodNullable<z.ZodNumber>; qtyOnPickTickets: z.ZodNullable<z.ZodNumber>; qtyOrdered: z.ZodNullable<z.ZodNumber>; unitOfMeasure: z.ZodNullable<z.ZodString>; unitQuantity: z.ZodNullable<z.ZodNumber>; unitSize: z.ZodNullable<z.ZodString>; unitPrice: z.ZodNullable<z.ZodNumber>; extendedPrice: z.ZodNullable<z.ZodNumber>; trinityItemId: z.ZodNullable<z.ZodString>; trinityItemDesc: z.ZodNullable<z.ZodString>; agentItemId: z.ZodNullable<z.ZodString>; agentItemDesc: z.ZodNullable<z.ZodString>; }, "strip", z.ZodTypeAny, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }, { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }>, "many">; pickTickets: z.ZodArray<z.ZodObject<{ pickTicketNo: z.ZodNumber; trackingNo: z.ZodOptional<z.ZodNullable<z.ZodString>>; orderNo: z.ZodString; invoiceNo: z.ZodOptional<z.ZodNullable<z.ZodString>>; shipDate: z.ZodOptional<z.ZodNullable<z.ZodString>>; printedFlag: z.ZodOptional<z.ZodNullable<z.ZodString>>; printDate: z.ZodOptional<z.ZodNullable<z.ZodString>>; instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>; carrierId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; carrierName: z.ZodString; lines: z.ZodArray<z.ZodObject<{ lineNumber: z.ZodNumber; shipQuantity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; qtyRequested: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; invMastUid: z.ZodNumber; itemId: z.ZodString; itemDesc: z.ZodOptional<z.ZodNullable<z.ZodString>>; displayDesc: z.ZodOptional<z.ZodUnknown>; trinityItemId: z.ZodOptional<z.ZodString>; trinityItemDesc: z.ZodOptional<z.ZodString>; agentItemId: z.ZodOptional<z.ZodString>; agentItemDesc: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }, { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }, { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { customerId: number; contactId: string | null; taker: string | null; lines: { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }[]; poNo: string | null; customerName: string | null; class1Id: string | null; class2Id: string | null; class3Id: string | null; class4Id: string | null; class5Id: string | null; deliveryInstructions: string | null; orderNo: string; carrierId: number | null; carrierName: string | null; jobName: string | null; orderDate: string | null; requestedDate: string | null; completed: string | null; ship2Name: string | null; ship2Add1: string | null; ship2Add2: string | null; ship2Add3: string | null; ship2City: string | null; ship2State: string | null; ship2Zip: string | null; ship2Country: string | null; ship2EmailAddress: string | null; shipToPhone: string | null; webReferenceNo: string | null; orderStatus: string; contactFirstName: string | null; contactLastName: string | null; pickTickets: { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }[]; }, { customerId: number; contactId: string | null; taker: string | null; lines: { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets: number | null; qtyOrdered: number | null; extendedPrice: number | null; trinityItemId: string | null; trinityItemDesc: string | null; agentItemId: string | null; agentItemDesc: string | null; }[]; poNo: string | null; customerName: string | null; class1Id: string | null; class2Id: string | null; class3Id: string | null; class4Id: string | null; class5Id: string | null; deliveryInstructions: string | null; orderNo: string; carrierId: number | null; carrierName: string | null; jobName: string | null; orderDate: string | null; requestedDate: string | null; completed: string | null; ship2Name: string | null; ship2Add1: string | null; ship2Add2: string | null; ship2Add3: string | null; ship2City: string | null; ship2State: string | null; ship2Zip: string | null; ship2Country: string | null; ship2EmailAddress: string | null; shipToPhone: string | null; webReferenceNo: string | null; orderStatus: string; contactFirstName: string | null; contactLastName: string | null; pickTickets: { lines: { invMastUid: number; itemId: string; lineNumber: number; itemDesc?: string | null | undefined; displayDesc?: unknown; trinityItemId?: string | undefined; trinityItemDesc?: string | undefined; agentItemId?: string | undefined; agentItemDesc?: string | undefined; shipQuantity?: number | null | undefined; qtyRequested?: number | null | undefined; }[]; orderNo: string; pickTicketNo: number; carrierName: string; trackingNo?: string | null | undefined; invoiceNo?: string | null | undefined; shipDate?: string | null | undefined; printedFlag?: string | null | undefined; printDate?: string | null | undefined; instructions?: string | null | undefined; carrierId?: number | null | undefined; }[]; }>, "many">; message: z.ZodString; options: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>; params: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>; status: z.ZodNumber; total: z.ZodNumber; totalResults: z.ZodNumber; }, "strip", z.ZodTypeAny, { params: Record<string, unknown> | unknown[]; data: { customerId: number; contactId: string | null; taker: string | null; lines: { lineNo: number | null; invMastUid: number; unitOfMeasure: string | null; unitPrice: number | null; itemId: string | null; unitQuantity: number | null; unitSize: string | null; itemDesc: string | null; displayDesc: string | null; deleteFlag: "Y" | "N" | null; qtyAllocated: number | null; cancelFlag: "Y" | "N" | null; complete: "Y" | "N" | null; disposition: string | null; orderNo: string | null; originalQtyOrdered: number | null; qtyCanceled: number | null; qtyInvoiced: number | null; qtyOnPickTickets