@artaio/node-api 0.30.1 → 0.32.0

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.
Files changed (57) hide show
  1. package/README.md +3 -1
  2. package/dist/lib/ArtaClient.d.ts +5 -5
  3. package/dist/lib/ArtaClient.js +17 -4
  4. package/dist/lib/MetadataTypes.d.ts +1 -93
  5. package/dist/lib/MetadataTypes.js +15 -0
  6. package/dist/lib/arta.d.ts +1 -1
  7. package/dist/lib/arta.js +2 -2
  8. package/dist/lib/endpoint/attachment.d.ts +4 -10
  9. package/dist/lib/endpoint/emailRules.d.ts +6 -12
  10. package/dist/lib/endpoint/emailSubscriptions.d.ts +6 -12
  11. package/dist/lib/endpoint/endpoint.d.ts +5 -5
  12. package/dist/lib/endpoint/endpoint.js +3 -2
  13. package/dist/lib/endpoint/hostedSessions.d.ts +12 -29
  14. package/dist/lib/endpoint/invoicePayments.d.ts +7 -14
  15. package/dist/lib/endpoint/invoicePayments.js +13 -3
  16. package/dist/lib/endpoint/invoices.d.ts +4 -18
  17. package/dist/lib/endpoint/keys.d.ts +6 -16
  18. package/dist/lib/endpoint/logs.d.ts +7 -19
  19. package/dist/lib/endpoint/logs.js +12 -3
  20. package/dist/lib/endpoint/metadata.d.ts +3 -3
  21. package/dist/lib/endpoint/organization.d.ts +2 -14
  22. package/dist/lib/endpoint/payments.d.ts +7 -11
  23. package/dist/lib/endpoint/payments.js +13 -3
  24. package/dist/lib/endpoint/requests.d.ts +17 -41
  25. package/dist/lib/endpoint/requests.js +17 -5
  26. package/dist/lib/endpoint/shipments.d.ts +6 -73
  27. package/dist/lib/endpoint/shipments.js +19 -13
  28. package/dist/lib/endpoint/trackings.d.ts +3 -19
  29. package/dist/lib/endpoint/trackings.js +15 -6
  30. package/dist/lib/endpoint/uploads.d.ts +7 -18
  31. package/dist/lib/endpoint/webhookDeliveries.d.ts +4 -18
  32. package/dist/lib/endpoint/webhooks.d.ts +10 -13
  33. package/dist/lib/index.d.ts +9 -16
  34. package/dist/lib/net/FetchHttpClient.d.ts +13 -0
  35. package/dist/lib/net/FetchHttpClient.js +128 -0
  36. package/dist/lib/net/HttpClient.d.ts +6 -6
  37. package/dist/lib/net/RestClient.d.ts +3 -3
  38. package/dist/lib/types.d.ts +750 -0
  39. package/dist/lib/types.js +2 -0
  40. package/dist/lib/utils.d.ts +7 -2
  41. package/dist/lib/utils.js +16 -5
  42. package/dist/package.json +29 -21
  43. package/dist/schemas/generate.d.ts +1 -0
  44. package/dist/schemas/generate.js +51 -0
  45. package/dist/schemas/index.d.ts +3204 -0
  46. package/dist/schemas/index.js +733 -0
  47. package/dist/test-integration/index.d.ts +2 -0
  48. package/dist/test-integration/index.js +7 -0
  49. package/dist/test-integration/keys.test.d.ts +1 -0
  50. package/dist/test-integration/keys.test.js +71 -0
  51. package/dist/test-integration/requests.test.d.ts +1 -0
  52. package/dist/test-integration/requests.test.js +87 -0
  53. package/dist/test-integration/shipments.test.d.ts +1 -0
  54. package/dist/test-integration/shipments.test.js +114 -0
  55. package/package.json +29 -21
  56. package/dist/lib/net/NodeHttpClient.d.ts +0 -20
  57. package/dist/lib/net/NodeHttpClient.js +0 -203
@@ -0,0 +1,3204 @@
1
+ import { z } from 'zod';
2
+ export declare const datedSchema: z.ZodObject<{
3
+ updated_at: z.ZodDate;
4
+ created_at: z.ZodDate;
5
+ }, "strip", z.ZodTypeAny, {
6
+ updated_at: Date;
7
+ created_at: Date;
8
+ }, {
9
+ updated_at: Date;
10
+ created_at: Date;
11
+ }>;
12
+ export declare function createPaginatedResponseSchema<T extends z.ZodTypeAny>(itemSchema: T): z.ZodObject<{
13
+ metadata: z.ZodObject<{
14
+ page: z.ZodNumber;
15
+ page_size: z.ZodNumber;
16
+ total_count: z.ZodNumber;
17
+ }, "strip", z.ZodTypeAny, {
18
+ page: number;
19
+ page_size: number;
20
+ total_count: number;
21
+ }, {
22
+ page: number;
23
+ page_size: number;
24
+ total_count: number;
25
+ }>;
26
+ items: z.ZodArray<T, "many">;
27
+ }, "strip", z.ZodTypeAny, {
28
+ metadata: {
29
+ page: number;
30
+ page_size: number;
31
+ total_count: number;
32
+ };
33
+ items: T["_output"][];
34
+ }, {
35
+ metadata: {
36
+ page: number;
37
+ page_size: number;
38
+ total_count: number;
39
+ };
40
+ items: T["_input"][];
41
+ }>;
42
+ export declare const keySchema: z.ZodObject<{
43
+ updated_at: z.ZodDate;
44
+ created_at: z.ZodDate;
45
+ id: z.ZodNumber;
46
+ name: z.ZodNullable<z.ZodString>;
47
+ is_testing: z.ZodBoolean;
48
+ token: z.ZodString;
49
+ }, "strip", z.ZodTypeAny, {
50
+ id: number;
51
+ name: string | null;
52
+ updated_at: Date;
53
+ created_at: Date;
54
+ is_testing: boolean;
55
+ token: string;
56
+ }, {
57
+ id: number;
58
+ name: string | null;
59
+ updated_at: Date;
60
+ created_at: Date;
61
+ is_testing: boolean;
62
+ token: string;
63
+ }>;
64
+ export declare const supportedCurrencySchema: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
65
+ export declare const additionalServiceSchema: z.ZodEnum<["assembly", "debris_disposal", "deinstallation", "destination_additional_labor", "destination_building_coi", "destination_condition_check", "destination_full_condition_report", "destination_unpacking", "double_blind_bols", "installation", "origin_building_coi", "origin_condition_check", "origin_full_condition_report", "placement", "signature_delivery", "tarmac_supervision"]>;
66
+ export declare const accessRetrictionSchema: z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>;
67
+ export declare const quoteTypeSchema: z.ZodEnum<["parcel", "premium", "select", "self_ship"]>;
68
+ export declare const disqualificationResonSchema: z.ZodEnum<["cannot_be_packed", "client_timeout_reached", "external_service_unavailable", "object_not_supported", "out_of_network", "over_size", "over_value", "over_volume", "over_weight", "requested_service_unavailable", "too_many_items", "under_value", "under_volume", "under_weight"]>;
69
+ export declare const insuranceSchema: z.ZodEnum<["arta_transit_insurance", "no_arta_insurance"]>;
70
+ export declare const paymentProcessSchema: z.ZodEnum<["checkout", "checkout_direct", "invoicing"]>;
71
+ export declare const quoteRequestStatusSchema: z.ZodEnum<["cancelled", "closed", "disqualified", "expired", "in_progress", "pending", "quoted"]>;
72
+ export declare const contactSchema: z.ZodObject<{
73
+ name: z.ZodString;
74
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76
+ }, "strip", z.ZodTypeAny, {
77
+ name: string;
78
+ email_address?: string | null | undefined;
79
+ phone_number?: string | null | undefined;
80
+ }, {
81
+ name: string;
82
+ email_address?: string | null | undefined;
83
+ phone_number?: string | null | undefined;
84
+ }>;
85
+ export declare const detailsSchema: z.ZodObject<{
86
+ materials: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["stone_marble", "precious_stones", "fiber_synthetic", "fabric_natural", "taxidermy", "carbon_fiber", "live_animal", "paper", "glass", "presious_metals", "particleboard", "styrofoam", "wood", "photo_film", "sand", "metal", "plexiglass", "aquatic_life", "canvas", "drywall", "hard_plastic", "vinyl", "soft_plastic", "leather", "rubber", "concreate", "paint", "electronics", "fiber_natural", "gas", "fabric_synthetic", "CITES", "liquids", "salts"]>, "many">>>;
87
+ creation_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
88
+ creator: z.ZodOptional<z.ZodNullable<z.ZodString>>;
89
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
90
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
91
+ is_fragile: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
92
+ is_cites: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
93
+ }, "strip", z.ZodTypeAny, {
94
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
95
+ creation_date?: string | null | undefined;
96
+ creator?: string | null | undefined;
97
+ notes?: string | null | undefined;
98
+ title?: string | null | undefined;
99
+ is_fragile?: boolean | null | undefined;
100
+ is_cites?: boolean | null | undefined;
101
+ }, {
102
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
103
+ creation_date?: string | null | undefined;
104
+ creator?: string | null | undefined;
105
+ notes?: string | null | undefined;
106
+ title?: string | null | undefined;
107
+ is_fragile?: boolean | null | undefined;
108
+ is_cites?: boolean | null | undefined;
109
+ }>;
110
+ export declare const artaObjectSchema: z.ZodObject<{
111
+ internal_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
112
+ current_packing: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["alcohol_case", "lay_flat_wine_box", "blanket", "wardrobe_box", "cardboard_box", "chandelier_box", "chair_box", "cbin_closed", "cbin_open", "ply_box", "fine_art_econo_crate", "fine_art_international_crate", "econo_crate", "international_econo_crate", "furniture_crate", "international_furniture_crate", "parcel_crate", "museum_crate", "international_museum_crate", "foam_lined_box", "cavity_box", "strongbox", "double_box", "travel_frame", "travel_frame_art", "travel_frame_other", "a_frame", "slat_crate", "tri_wall_crate", "lockbox", "no_packing", "pallet", "international_pallet", "portfolio", "rug_rolled", "shadow_box", "slipcase", "slipcase_glass_tape", "poly_cardboard", "bubble_cardboard", "garment_bag", "poly_only", "dartek_only", "bubble_only", "cling_wrap", "cbin_communal", "sonotube", "stabilizing_box", "shipping_tube_small", "shipping_tube_large"]>, "many">>>;
113
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
114
+ materials: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["stone_marble", "precious_stones", "fiber_synthetic", "fabric_natural", "taxidermy", "carbon_fiber", "live_animal", "paper", "glass", "presious_metals", "particleboard", "styrofoam", "wood", "photo_film", "sand", "metal", "plexiglass", "aquatic_life", "canvas", "drywall", "hard_plastic", "vinyl", "soft_plastic", "leather", "rubber", "concreate", "paint", "electronics", "fiber_natural", "gas", "fabric_synthetic", "CITES", "liquids", "salts"]>, "many">>>;
115
+ creation_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116
+ creator: z.ZodOptional<z.ZodNullable<z.ZodString>>;
117
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
118
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
119
+ is_fragile: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
120
+ is_cites: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
121
+ }, "strip", z.ZodTypeAny, {
122
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
123
+ creation_date?: string | null | undefined;
124
+ creator?: string | null | undefined;
125
+ notes?: string | null | undefined;
126
+ title?: string | null | undefined;
127
+ is_fragile?: boolean | null | undefined;
128
+ is_cites?: boolean | null | undefined;
129
+ }, {
130
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
131
+ creation_date?: string | null | undefined;
132
+ creator?: string | null | undefined;
133
+ notes?: string | null | undefined;
134
+ title?: string | null | undefined;
135
+ is_fragile?: boolean | null | undefined;
136
+ is_cites?: boolean | null | undefined;
137
+ }>>>;
138
+ height: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
139
+ width: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
140
+ weight: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
141
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
142
+ depth: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
143
+ images: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
144
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
145
+ subtype: z.ZodEnum<["painting_unframed", "painting_framed", "painting_framed_plexi", "painting_framed_glass", "work_on_paper_unframed", "work_on_paper_framed", "work_on_paper_framed_plexi", "work_on_paper_framed_glass", "mixed_media_unframed", "mixed_media_framed", "mixed_media_framed_plexi", "mixed_media_framed_glass", "photograph_unframed", "photograph_framed", "photograph_framed_plexi", "photograph_framed_glass", "new_media", "sculpture", "pedestal", "pedestal_case_glass", "pedestal_case_plexi", "ceramic", "neon", "tapestry", "other_art", "table", "chair", "sofa_loveseat_chaise", "floor_lamp", "floor_lamp_shade", "table_lamp", "table_lamp_shade", "sconce", "ottoman", "bookcase_storage", "nightstand", "armoire_dresser", "carpet_rug", "mirror", "chandelier", "bedframe", "headboard", "desk_vanity", "media_console", "other_furniture", "earrings", "necklace", "bracelet", "ring", "brooch", "watch", "cufflinks", "eyeglasses", "set", "precious_stones", "snuff_box_cigarette_case", "other_jewelry", "vase_vessel", "bowl", "plaque", "object_of_vertu", "candelabra_candlestick", "dinnerware", "flatware", "glassware", "serveware", "porcelain_plate", "porcelain_bowl", "tabletop_accessory", "clock", "other_decorative_arts", "stamp", "book", "coin", "document_manuscript", "toy", "miniature_model", "figurine_doll", "neon_sign", "memorabilia", "camera_electrical", "other_collectibles", "wine_bottle", "spirits_bottle", "beer_bottle", "wine_case", "spirits_case", "beer_case", "wine_barrel", "spirits_barrel", "beer_barrel", "other_alcohols", "car", "motorcycle", "bus", "van", "limousine", "carriage", "trailer", "sidecar", "other_automotive", "clothing", "footwear", "handbag", "accessories", "other_fashion", "musical_instrument", "firearm_weapon", "hunting_fishing", "medical_equipment", "other"]>;
146
+ unit_of_measurement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
147
+ weight_unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
148
+ value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
149
+ }, "strip", z.ZodTypeAny, {
150
+ height: string | number;
151
+ width: string | number;
152
+ value: string | number;
153
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
154
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
155
+ internal_reference?: string | null | undefined;
156
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
157
+ details?: {
158
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
159
+ creation_date?: string | null | undefined;
160
+ creator?: string | null | undefined;
161
+ notes?: string | null | undefined;
162
+ title?: string | null | undefined;
163
+ is_fragile?: boolean | null | undefined;
164
+ is_cites?: boolean | null | undefined;
165
+ } | null | undefined;
166
+ weight?: string | number | null | undefined;
167
+ depth?: string | number | null | undefined;
168
+ images?: string[] | null | undefined;
169
+ public_reference?: string | null | undefined;
170
+ unit_of_measurement?: string | null | undefined;
171
+ weight_unit?: string | null | undefined;
172
+ }, {
173
+ height: string | number;
174
+ width: string | number;
175
+ value: string | number;
176
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
177
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
178
+ internal_reference?: string | null | undefined;
179
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
180
+ details?: {
181
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
182
+ creation_date?: string | null | undefined;
183
+ creator?: string | null | undefined;
184
+ notes?: string | null | undefined;
185
+ title?: string | null | undefined;
186
+ is_fragile?: boolean | null | undefined;
187
+ is_cites?: boolean | null | undefined;
188
+ } | null | undefined;
189
+ weight?: string | number | null | undefined;
190
+ depth?: string | number | null | undefined;
191
+ images?: string[] | null | undefined;
192
+ public_reference?: string | null | undefined;
193
+ unit_of_measurement?: string | null | undefined;
194
+ weight_unit?: string | null | undefined;
195
+ }>;
196
+ export declare const artaLocationSchema: z.ZodObject<{
197
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
198
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
199
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
200
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
201
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
202
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
203
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
204
+ country: z.ZodString;
205
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
206
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
207
+ name: z.ZodString;
208
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
209
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
210
+ }, "strip", z.ZodTypeAny, {
211
+ name: string;
212
+ email_address?: string | null | undefined;
213
+ phone_number?: string | null | undefined;
214
+ }, {
215
+ name: string;
216
+ email_address?: string | null | undefined;
217
+ phone_number?: string | null | undefined;
218
+ }>, "many">>>;
219
+ estimated_country: z.ZodOptional<z.ZodString>;
220
+ estimated_region: z.ZodOptional<z.ZodString>;
221
+ estimated_city: z.ZodOptional<z.ZodString>;
222
+ }, "strip", z.ZodTypeAny, {
223
+ country: string;
224
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
225
+ address_line_1?: string | null | undefined;
226
+ address_line_2?: string | null | undefined;
227
+ address_line_3?: string | null | undefined;
228
+ city?: string | null | undefined;
229
+ region?: string | null | undefined;
230
+ postal_code?: string | null | undefined;
231
+ title?: string | null | undefined;
232
+ contacts?: {
233
+ name: string;
234
+ email_address?: string | null | undefined;
235
+ phone_number?: string | null | undefined;
236
+ }[] | null | undefined;
237
+ estimated_country?: string | undefined;
238
+ estimated_region?: string | undefined;
239
+ estimated_city?: string | undefined;
240
+ }, {
241
+ country: string;
242
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
243
+ address_line_1?: string | null | undefined;
244
+ address_line_2?: string | null | undefined;
245
+ address_line_3?: string | null | undefined;
246
+ city?: string | null | undefined;
247
+ region?: string | null | undefined;
248
+ postal_code?: string | null | undefined;
249
+ title?: string | null | undefined;
250
+ contacts?: {
251
+ name: string;
252
+ email_address?: string | null | undefined;
253
+ phone_number?: string | null | undefined;
254
+ }[] | null | undefined;
255
+ estimated_country?: string | undefined;
256
+ estimated_region?: string | undefined;
257
+ estimated_city?: string | undefined;
258
+ }>;
259
+ export declare const disqualificationSchema: z.ZodObject<{
260
+ quote_types: z.ZodArray<z.ZodEnum<["parcel", "premium", "select", "self_ship"]>, "many">;
261
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
262
+ reason_code: z.ZodEnum<["cannot_be_packed", "client_timeout_reached", "external_service_unavailable", "object_not_supported", "out_of_network", "over_size", "over_value", "over_volume", "over_weight", "requested_service_unavailable", "too_many_items", "under_value", "under_volume", "under_weight"]>;
263
+ }, "strip", z.ZodTypeAny, {
264
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
265
+ reason_code: "cannot_be_packed" | "client_timeout_reached" | "external_service_unavailable" | "object_not_supported" | "out_of_network" | "over_size" | "over_value" | "over_volume" | "over_weight" | "requested_service_unavailable" | "too_many_items" | "under_value" | "under_volume" | "under_weight";
266
+ reason?: string | null | undefined;
267
+ }, {
268
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
269
+ reason_code: "cannot_be_packed" | "client_timeout_reached" | "external_service_unavailable" | "object_not_supported" | "out_of_network" | "over_size" | "over_value" | "over_volume" | "over_weight" | "requested_service_unavailable" | "too_many_items" | "under_value" | "under_volume" | "under_weight";
270
+ reason?: string | null | undefined;
271
+ }>;
272
+ export declare const artaTrackingServiceSubSubTypeSchema: z.ZodString;
273
+ export declare const insurancePolicySchema: z.ZodObject<{
274
+ amount: z.ZodNumber;
275
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
276
+ id: z.ZodString;
277
+ insured_value: z.ZodNumber;
278
+ insured_value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
279
+ }, "strip", z.ZodTypeAny, {
280
+ id: string;
281
+ amount: number;
282
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
283
+ insured_value: number;
284
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
285
+ }, {
286
+ id: string;
287
+ amount: number;
288
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
289
+ insured_value: number;
290
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
291
+ }>;
292
+ export declare const artaServiceSchema: z.ZodObject<{
293
+ amount: z.ZodNumber;
294
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
295
+ is_requested: z.ZodOptional<z.ZodBoolean>;
296
+ is_required: z.ZodOptional<z.ZodBoolean>;
297
+ name: z.ZodString;
298
+ sub_subtype: z.ZodString;
299
+ subtype: z.ZodEnum<["specialized", "consolidated", "freight", "parcel", "collection", "delivery", "location", "unpacking", "condition", "installation", "deinstallation", "debris_disposal", "site_visit", "handling", "packing", "packing_materials", "receive_release", "warehouse", "customs", "coi", "administration", "taxes_duties", "fees", "security", "equipment"]>;
300
+ type: z.ZodEnum<["transport", "location", "handling", "packing", "storage", "administration", "taxes_duties_fees", "security", "equipment"]>;
301
+ included_services: z.ZodArray<z.ZodAny, "many">;
302
+ }, "strip", z.ZodTypeAny, {
303
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
304
+ name: string;
305
+ amount: number;
306
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
307
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
308
+ sub_subtype: string;
309
+ included_services: any[];
310
+ is_requested?: boolean | undefined;
311
+ is_required?: boolean | undefined;
312
+ }, {
313
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
314
+ name: string;
315
+ amount: number;
316
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
317
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
318
+ sub_subtype: string;
319
+ included_services: any[];
320
+ is_requested?: boolean | undefined;
321
+ is_required?: boolean | undefined;
322
+ }>;
323
+ export declare const quoteSchema: z.ZodObject<{
324
+ id: z.ZodNumber;
325
+ included_services: z.ZodArray<z.ZodObject<{
326
+ amount: z.ZodNumber;
327
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
328
+ is_requested: z.ZodOptional<z.ZodBoolean>;
329
+ is_required: z.ZodOptional<z.ZodBoolean>;
330
+ name: z.ZodString;
331
+ sub_subtype: z.ZodString;
332
+ subtype: z.ZodEnum<["specialized", "consolidated", "freight", "parcel", "collection", "delivery", "location", "unpacking", "condition", "installation", "deinstallation", "debris_disposal", "site_visit", "handling", "packing", "packing_materials", "receive_release", "warehouse", "customs", "coi", "administration", "taxes_duties", "fees", "security", "equipment"]>;
333
+ type: z.ZodEnum<["transport", "location", "handling", "packing", "storage", "administration", "taxes_duties_fees", "security", "equipment"]>;
334
+ included_services: z.ZodArray<z.ZodAny, "many">;
335
+ }, "strip", z.ZodTypeAny, {
336
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
337
+ name: string;
338
+ amount: number;
339
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
340
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
341
+ sub_subtype: string;
342
+ included_services: any[];
343
+ is_requested?: boolean | undefined;
344
+ is_required?: boolean | undefined;
345
+ }, {
346
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
347
+ name: string;
348
+ amount: number;
349
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
350
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
351
+ sub_subtype: string;
352
+ included_services: any[];
353
+ is_requested?: boolean | undefined;
354
+ is_required?: boolean | undefined;
355
+ }>, "many">;
356
+ included_insurance_policy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
357
+ amount: z.ZodNumber;
358
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
359
+ id: z.ZodString;
360
+ insured_value: z.ZodNumber;
361
+ insured_value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
362
+ }, "strip", z.ZodTypeAny, {
363
+ id: string;
364
+ amount: number;
365
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
366
+ insured_value: number;
367
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
368
+ }, {
369
+ id: string;
370
+ amount: number;
371
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
372
+ insured_value: number;
373
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
374
+ }>>>;
375
+ optional_services: z.ZodArray<z.ZodObject<{
376
+ amount: z.ZodNumber;
377
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
378
+ is_requested: z.ZodOptional<z.ZodBoolean>;
379
+ is_required: z.ZodOptional<z.ZodBoolean>;
380
+ name: z.ZodString;
381
+ sub_subtype: z.ZodString;
382
+ subtype: z.ZodEnum<["specialized", "consolidated", "freight", "parcel", "collection", "delivery", "location", "unpacking", "condition", "installation", "deinstallation", "debris_disposal", "site_visit", "handling", "packing", "packing_materials", "receive_release", "warehouse", "customs", "coi", "administration", "taxes_duties", "fees", "security", "equipment"]>;
383
+ type: z.ZodEnum<["transport", "location", "handling", "packing", "storage", "administration", "taxes_duties_fees", "security", "equipment"]>;
384
+ included_services: z.ZodArray<z.ZodAny, "many">;
385
+ }, "strip", z.ZodTypeAny, {
386
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
387
+ name: string;
388
+ amount: number;
389
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
390
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
391
+ sub_subtype: string;
392
+ included_services: any[];
393
+ is_requested?: boolean | undefined;
394
+ is_required?: boolean | undefined;
395
+ }, {
396
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
397
+ name: string;
398
+ amount: number;
399
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
400
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
401
+ sub_subtype: string;
402
+ included_services: any[];
403
+ is_requested?: boolean | undefined;
404
+ is_required?: boolean | undefined;
405
+ }>, "many">;
406
+ quote_type: z.ZodEnum<["parcel", "premium", "select", "self_ship"]>;
407
+ status: z.ZodString;
408
+ total: z.ZodNumber;
409
+ total_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
410
+ }, "strip", z.ZodTypeAny, {
411
+ id: number;
412
+ total: number;
413
+ status: string;
414
+ included_services: {
415
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
416
+ name: string;
417
+ amount: number;
418
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
419
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
420
+ sub_subtype: string;
421
+ included_services: any[];
422
+ is_requested?: boolean | undefined;
423
+ is_required?: boolean | undefined;
424
+ }[];
425
+ optional_services: {
426
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
427
+ name: string;
428
+ amount: number;
429
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
430
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
431
+ sub_subtype: string;
432
+ included_services: any[];
433
+ is_requested?: boolean | undefined;
434
+ is_required?: boolean | undefined;
435
+ }[];
436
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
437
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
438
+ included_insurance_policy?: {
439
+ id: string;
440
+ amount: number;
441
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
442
+ insured_value: number;
443
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
444
+ } | null | undefined;
445
+ }, {
446
+ id: number;
447
+ total: number;
448
+ status: string;
449
+ included_services: {
450
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
451
+ name: string;
452
+ amount: number;
453
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
454
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
455
+ sub_subtype: string;
456
+ included_services: any[];
457
+ is_requested?: boolean | undefined;
458
+ is_required?: boolean | undefined;
459
+ }[];
460
+ optional_services: {
461
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
462
+ name: string;
463
+ amount: number;
464
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
465
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
466
+ sub_subtype: string;
467
+ included_services: any[];
468
+ is_requested?: boolean | undefined;
469
+ is_required?: boolean | undefined;
470
+ }[];
471
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
472
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
473
+ included_insurance_policy?: {
474
+ id: string;
475
+ amount: number;
476
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
477
+ insured_value: number;
478
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
479
+ } | null | undefined;
480
+ }>;
481
+ export declare const requestListItemSchema: z.ZodObject<{
482
+ updated_at: z.ZodDate;
483
+ created_at: z.ZodDate;
484
+ id: z.ZodString;
485
+ bookable: z.ZodObject<{
486
+ missing: z.ZodArray<z.ZodString, "many">;
487
+ ready: z.ZodBoolean;
488
+ }, "strip", z.ZodTypeAny, {
489
+ missing: string[];
490
+ ready: boolean;
491
+ }, {
492
+ missing: string[];
493
+ ready: boolean;
494
+ }>;
495
+ destination: z.ZodObject<{
496
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
497
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
498
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
499
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
500
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
501
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
502
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
503
+ country: z.ZodString;
504
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
505
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
506
+ name: z.ZodString;
507
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
508
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
509
+ }, "strip", z.ZodTypeAny, {
510
+ name: string;
511
+ email_address?: string | null | undefined;
512
+ phone_number?: string | null | undefined;
513
+ }, {
514
+ name: string;
515
+ email_address?: string | null | undefined;
516
+ phone_number?: string | null | undefined;
517
+ }>, "many">>>;
518
+ estimated_country: z.ZodOptional<z.ZodString>;
519
+ estimated_region: z.ZodOptional<z.ZodString>;
520
+ estimated_city: z.ZodOptional<z.ZodString>;
521
+ }, "strip", z.ZodTypeAny, {
522
+ country: string;
523
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
524
+ address_line_1?: string | null | undefined;
525
+ address_line_2?: string | null | undefined;
526
+ address_line_3?: string | null | undefined;
527
+ city?: string | null | undefined;
528
+ region?: string | null | undefined;
529
+ postal_code?: string | null | undefined;
530
+ title?: string | null | undefined;
531
+ contacts?: {
532
+ name: string;
533
+ email_address?: string | null | undefined;
534
+ phone_number?: string | null | undefined;
535
+ }[] | null | undefined;
536
+ estimated_country?: string | undefined;
537
+ estimated_region?: string | undefined;
538
+ estimated_city?: string | undefined;
539
+ }, {
540
+ country: string;
541
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
542
+ address_line_1?: string | null | undefined;
543
+ address_line_2?: string | null | undefined;
544
+ address_line_3?: string | null | undefined;
545
+ city?: string | null | undefined;
546
+ region?: string | null | undefined;
547
+ postal_code?: string | null | undefined;
548
+ title?: string | null | undefined;
549
+ contacts?: {
550
+ name: string;
551
+ email_address?: string | null | undefined;
552
+ phone_number?: string | null | undefined;
553
+ }[] | null | undefined;
554
+ estimated_country?: string | undefined;
555
+ estimated_region?: string | undefined;
556
+ estimated_city?: string | undefined;
557
+ }>;
558
+ hosted_session_id: z.ZodNullable<z.ZodNumber>;
559
+ insurance: z.ZodNullable<z.ZodEnum<["arta_transit_insurance", "no_arta_insurance"]>>;
560
+ internal_reference: z.ZodNullable<z.ZodString>;
561
+ log_request_id: z.ZodString;
562
+ object_count: z.ZodNullable<z.ZodNumber>;
563
+ origin: z.ZodObject<{
564
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
565
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
566
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
567
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
568
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
569
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
570
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
571
+ country: z.ZodString;
572
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
573
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
574
+ name: z.ZodString;
575
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
576
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
577
+ }, "strip", z.ZodTypeAny, {
578
+ name: string;
579
+ email_address?: string | null | undefined;
580
+ phone_number?: string | null | undefined;
581
+ }, {
582
+ name: string;
583
+ email_address?: string | null | undefined;
584
+ phone_number?: string | null | undefined;
585
+ }>, "many">>>;
586
+ estimated_country: z.ZodOptional<z.ZodString>;
587
+ estimated_region: z.ZodOptional<z.ZodString>;
588
+ estimated_city: z.ZodOptional<z.ZodString>;
589
+ }, "strip", z.ZodTypeAny, {
590
+ country: string;
591
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
592
+ address_line_1?: string | null | undefined;
593
+ address_line_2?: string | null | undefined;
594
+ address_line_3?: string | null | undefined;
595
+ city?: string | null | undefined;
596
+ region?: string | null | undefined;
597
+ postal_code?: string | null | undefined;
598
+ title?: string | null | undefined;
599
+ contacts?: {
600
+ name: string;
601
+ email_address?: string | null | undefined;
602
+ phone_number?: string | null | undefined;
603
+ }[] | null | undefined;
604
+ estimated_country?: string | undefined;
605
+ estimated_region?: string | undefined;
606
+ estimated_city?: string | undefined;
607
+ }, {
608
+ country: string;
609
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
610
+ address_line_1?: string | null | undefined;
611
+ address_line_2?: string | null | undefined;
612
+ address_line_3?: string | null | undefined;
613
+ city?: string | null | undefined;
614
+ region?: string | null | undefined;
615
+ postal_code?: string | null | undefined;
616
+ title?: string | null | undefined;
617
+ contacts?: {
618
+ name: string;
619
+ email_address?: string | null | undefined;
620
+ phone_number?: string | null | undefined;
621
+ }[] | null | undefined;
622
+ estimated_country?: string | undefined;
623
+ estimated_region?: string | undefined;
624
+ estimated_city?: string | undefined;
625
+ }>;
626
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
627
+ quote_types: z.ZodArray<z.ZodEnum<["parcel", "premium", "select", "self_ship"]>, "many">;
628
+ shortcode: z.ZodString;
629
+ status: z.ZodEnum<["cancelled", "closed", "disqualified", "expired", "in_progress", "pending", "quoted"]>;
630
+ tags: z.ZodAny;
631
+ }, "strip", z.ZodTypeAny, {
632
+ id: string;
633
+ origin: {
634
+ country: string;
635
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
636
+ address_line_1?: string | null | undefined;
637
+ address_line_2?: string | null | undefined;
638
+ address_line_3?: string | null | undefined;
639
+ city?: string | null | undefined;
640
+ region?: string | null | undefined;
641
+ postal_code?: string | null | undefined;
642
+ title?: string | null | undefined;
643
+ contacts?: {
644
+ name: string;
645
+ email_address?: string | null | undefined;
646
+ phone_number?: string | null | undefined;
647
+ }[] | null | undefined;
648
+ estimated_country?: string | undefined;
649
+ estimated_region?: string | undefined;
650
+ estimated_city?: string | undefined;
651
+ };
652
+ status: "closed" | "pending" | "expired" | "cancelled" | "disqualified" | "in_progress" | "quoted";
653
+ destination: {
654
+ country: string;
655
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
656
+ address_line_1?: string | null | undefined;
657
+ address_line_2?: string | null | undefined;
658
+ address_line_3?: string | null | undefined;
659
+ city?: string | null | undefined;
660
+ region?: string | null | undefined;
661
+ postal_code?: string | null | undefined;
662
+ title?: string | null | undefined;
663
+ contacts?: {
664
+ name: string;
665
+ email_address?: string | null | undefined;
666
+ phone_number?: string | null | undefined;
667
+ }[] | null | undefined;
668
+ estimated_country?: string | undefined;
669
+ estimated_region?: string | undefined;
670
+ estimated_city?: string | undefined;
671
+ };
672
+ updated_at: Date;
673
+ created_at: Date;
674
+ insurance: "arta_transit_insurance" | "no_arta_insurance" | null;
675
+ internal_reference: string | null;
676
+ shortcode: string;
677
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
678
+ bookable: {
679
+ missing: string[];
680
+ ready: boolean;
681
+ };
682
+ hosted_session_id: number | null;
683
+ log_request_id: string;
684
+ object_count: number | null;
685
+ public_reference?: string | null | undefined;
686
+ tags?: any;
687
+ }, {
688
+ id: string;
689
+ origin: {
690
+ country: string;
691
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
692
+ address_line_1?: string | null | undefined;
693
+ address_line_2?: string | null | undefined;
694
+ address_line_3?: string | null | undefined;
695
+ city?: string | null | undefined;
696
+ region?: string | null | undefined;
697
+ postal_code?: string | null | undefined;
698
+ title?: string | null | undefined;
699
+ contacts?: {
700
+ name: string;
701
+ email_address?: string | null | undefined;
702
+ phone_number?: string | null | undefined;
703
+ }[] | null | undefined;
704
+ estimated_country?: string | undefined;
705
+ estimated_region?: string | undefined;
706
+ estimated_city?: string | undefined;
707
+ };
708
+ status: "closed" | "pending" | "expired" | "cancelled" | "disqualified" | "in_progress" | "quoted";
709
+ destination: {
710
+ country: string;
711
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
712
+ address_line_1?: string | null | undefined;
713
+ address_line_2?: string | null | undefined;
714
+ address_line_3?: string | null | undefined;
715
+ city?: string | null | undefined;
716
+ region?: string | null | undefined;
717
+ postal_code?: string | null | undefined;
718
+ title?: string | null | undefined;
719
+ contacts?: {
720
+ name: string;
721
+ email_address?: string | null | undefined;
722
+ phone_number?: string | null | undefined;
723
+ }[] | null | undefined;
724
+ estimated_country?: string | undefined;
725
+ estimated_region?: string | undefined;
726
+ estimated_city?: string | undefined;
727
+ };
728
+ updated_at: Date;
729
+ created_at: Date;
730
+ insurance: "arta_transit_insurance" | "no_arta_insurance" | null;
731
+ internal_reference: string | null;
732
+ shortcode: string;
733
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
734
+ bookable: {
735
+ missing: string[];
736
+ ready: boolean;
737
+ };
738
+ hosted_session_id: number | null;
739
+ log_request_id: string;
740
+ object_count: number | null;
741
+ public_reference?: string | null | undefined;
742
+ tags?: any;
743
+ }>;
744
+ export declare const requestSchema: z.ZodObject<{
745
+ id: z.ZodString;
746
+ origin: z.ZodObject<{
747
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
748
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
749
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
750
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
751
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
752
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
753
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
754
+ country: z.ZodString;
755
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
756
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
757
+ name: z.ZodString;
758
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
759
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
760
+ }, "strip", z.ZodTypeAny, {
761
+ name: string;
762
+ email_address?: string | null | undefined;
763
+ phone_number?: string | null | undefined;
764
+ }, {
765
+ name: string;
766
+ email_address?: string | null | undefined;
767
+ phone_number?: string | null | undefined;
768
+ }>, "many">>>;
769
+ estimated_country: z.ZodOptional<z.ZodString>;
770
+ estimated_region: z.ZodOptional<z.ZodString>;
771
+ estimated_city: z.ZodOptional<z.ZodString>;
772
+ }, "strip", z.ZodTypeAny, {
773
+ country: string;
774
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
775
+ address_line_1?: string | null | undefined;
776
+ address_line_2?: string | null | undefined;
777
+ address_line_3?: string | null | undefined;
778
+ city?: string | null | undefined;
779
+ region?: string | null | undefined;
780
+ postal_code?: string | null | undefined;
781
+ title?: string | null | undefined;
782
+ contacts?: {
783
+ name: string;
784
+ email_address?: string | null | undefined;
785
+ phone_number?: string | null | undefined;
786
+ }[] | null | undefined;
787
+ estimated_country?: string | undefined;
788
+ estimated_region?: string | undefined;
789
+ estimated_city?: string | undefined;
790
+ }, {
791
+ country: string;
792
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
793
+ address_line_1?: string | null | undefined;
794
+ address_line_2?: string | null | undefined;
795
+ address_line_3?: string | null | undefined;
796
+ city?: string | null | undefined;
797
+ region?: string | null | undefined;
798
+ postal_code?: string | null | undefined;
799
+ title?: string | null | undefined;
800
+ contacts?: {
801
+ name: string;
802
+ email_address?: string | null | undefined;
803
+ phone_number?: string | null | undefined;
804
+ }[] | null | undefined;
805
+ estimated_country?: string | undefined;
806
+ estimated_region?: string | undefined;
807
+ estimated_city?: string | undefined;
808
+ }>;
809
+ status: z.ZodEnum<["cancelled", "closed", "disqualified", "expired", "in_progress", "pending", "quoted"]>;
810
+ destination: z.ZodObject<{
811
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
812
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
813
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
814
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
815
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
816
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
817
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
818
+ country: z.ZodString;
819
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
820
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
821
+ name: z.ZodString;
822
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
823
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
824
+ }, "strip", z.ZodTypeAny, {
825
+ name: string;
826
+ email_address?: string | null | undefined;
827
+ phone_number?: string | null | undefined;
828
+ }, {
829
+ name: string;
830
+ email_address?: string | null | undefined;
831
+ phone_number?: string | null | undefined;
832
+ }>, "many">>>;
833
+ estimated_country: z.ZodOptional<z.ZodString>;
834
+ estimated_region: z.ZodOptional<z.ZodString>;
835
+ estimated_city: z.ZodOptional<z.ZodString>;
836
+ }, "strip", z.ZodTypeAny, {
837
+ country: string;
838
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
839
+ address_line_1?: string | null | undefined;
840
+ address_line_2?: string | null | undefined;
841
+ address_line_3?: string | null | undefined;
842
+ city?: string | null | undefined;
843
+ region?: string | null | undefined;
844
+ postal_code?: string | null | undefined;
845
+ title?: string | null | undefined;
846
+ contacts?: {
847
+ name: string;
848
+ email_address?: string | null | undefined;
849
+ phone_number?: string | null | undefined;
850
+ }[] | null | undefined;
851
+ estimated_country?: string | undefined;
852
+ estimated_region?: string | undefined;
853
+ estimated_city?: string | undefined;
854
+ }, {
855
+ country: string;
856
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
857
+ address_line_1?: string | null | undefined;
858
+ address_line_2?: string | null | undefined;
859
+ address_line_3?: string | null | undefined;
860
+ city?: string | null | undefined;
861
+ region?: string | null | undefined;
862
+ postal_code?: string | null | undefined;
863
+ title?: string | null | undefined;
864
+ contacts?: {
865
+ name: string;
866
+ email_address?: string | null | undefined;
867
+ phone_number?: string | null | undefined;
868
+ }[] | null | undefined;
869
+ estimated_country?: string | undefined;
870
+ estimated_region?: string | undefined;
871
+ estimated_city?: string | undefined;
872
+ }>;
873
+ updated_at: z.ZodDate;
874
+ created_at: z.ZodDate;
875
+ insurance: z.ZodNullable<z.ZodEnum<["arta_transit_insurance", "no_arta_insurance"]>>;
876
+ internal_reference: z.ZodNullable<z.ZodString>;
877
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
878
+ shortcode: z.ZodString;
879
+ quote_types: z.ZodArray<z.ZodEnum<["parcel", "premium", "select", "self_ship"]>, "many">;
880
+ bookable: z.ZodObject<{
881
+ missing: z.ZodArray<z.ZodString, "many">;
882
+ ready: z.ZodBoolean;
883
+ }, "strip", z.ZodTypeAny, {
884
+ missing: string[];
885
+ ready: boolean;
886
+ }, {
887
+ missing: string[];
888
+ ready: boolean;
889
+ }>;
890
+ hosted_session_id: z.ZodNullable<z.ZodNumber>;
891
+ log_request_id: z.ZodString;
892
+ object_count: z.ZodNullable<z.ZodNumber>;
893
+ tags: z.ZodAny;
894
+ currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
895
+ additional_services: z.ZodArray<z.ZodEnum<["assembly", "debris_disposal", "deinstallation", "destination_additional_labor", "destination_building_coi", "destination_condition_check", "destination_full_condition_report", "destination_unpacking", "double_blind_bols", "installation", "origin_building_coi", "origin_condition_check", "origin_full_condition_report", "placement", "signature_delivery", "tarmac_supervision"]>, "many">;
896
+ disqualifications: z.ZodArray<z.ZodObject<{
897
+ quote_types: z.ZodArray<z.ZodEnum<["parcel", "premium", "select", "self_ship"]>, "many">;
898
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
899
+ reason_code: z.ZodEnum<["cannot_be_packed", "client_timeout_reached", "external_service_unavailable", "object_not_supported", "out_of_network", "over_size", "over_value", "over_volume", "over_weight", "requested_service_unavailable", "too_many_items", "under_value", "under_volume", "under_weight"]>;
900
+ }, "strip", z.ZodTypeAny, {
901
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
902
+ reason_code: "cannot_be_packed" | "client_timeout_reached" | "external_service_unavailable" | "object_not_supported" | "out_of_network" | "over_size" | "over_value" | "over_volume" | "over_weight" | "requested_service_unavailable" | "too_many_items" | "under_value" | "under_volume" | "under_weight";
903
+ reason?: string | null | undefined;
904
+ }, {
905
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
906
+ reason_code: "cannot_be_packed" | "client_timeout_reached" | "external_service_unavailable" | "object_not_supported" | "out_of_network" | "over_size" | "over_value" | "over_volume" | "over_weight" | "requested_service_unavailable" | "too_many_items" | "under_value" | "under_volume" | "under_weight";
907
+ reason?: string | null | undefined;
908
+ }>, "many">;
909
+ objects: z.ZodArray<z.ZodObject<{
910
+ internal_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
911
+ current_packing: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["alcohol_case", "lay_flat_wine_box", "blanket", "wardrobe_box", "cardboard_box", "chandelier_box", "chair_box", "cbin_closed", "cbin_open", "ply_box", "fine_art_econo_crate", "fine_art_international_crate", "econo_crate", "international_econo_crate", "furniture_crate", "international_furniture_crate", "parcel_crate", "museum_crate", "international_museum_crate", "foam_lined_box", "cavity_box", "strongbox", "double_box", "travel_frame", "travel_frame_art", "travel_frame_other", "a_frame", "slat_crate", "tri_wall_crate", "lockbox", "no_packing", "pallet", "international_pallet", "portfolio", "rug_rolled", "shadow_box", "slipcase", "slipcase_glass_tape", "poly_cardboard", "bubble_cardboard", "garment_bag", "poly_only", "dartek_only", "bubble_only", "cling_wrap", "cbin_communal", "sonotube", "stabilizing_box", "shipping_tube_small", "shipping_tube_large"]>, "many">>>;
912
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
913
+ materials: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["stone_marble", "precious_stones", "fiber_synthetic", "fabric_natural", "taxidermy", "carbon_fiber", "live_animal", "paper", "glass", "presious_metals", "particleboard", "styrofoam", "wood", "photo_film", "sand", "metal", "plexiglass", "aquatic_life", "canvas", "drywall", "hard_plastic", "vinyl", "soft_plastic", "leather", "rubber", "concreate", "paint", "electronics", "fiber_natural", "gas", "fabric_synthetic", "CITES", "liquids", "salts"]>, "many">>>;
914
+ creation_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
915
+ creator: z.ZodOptional<z.ZodNullable<z.ZodString>>;
916
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
917
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
918
+ is_fragile: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
919
+ is_cites: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
920
+ }, "strip", z.ZodTypeAny, {
921
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
922
+ creation_date?: string | null | undefined;
923
+ creator?: string | null | undefined;
924
+ notes?: string | null | undefined;
925
+ title?: string | null | undefined;
926
+ is_fragile?: boolean | null | undefined;
927
+ is_cites?: boolean | null | undefined;
928
+ }, {
929
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
930
+ creation_date?: string | null | undefined;
931
+ creator?: string | null | undefined;
932
+ notes?: string | null | undefined;
933
+ title?: string | null | undefined;
934
+ is_fragile?: boolean | null | undefined;
935
+ is_cites?: boolean | null | undefined;
936
+ }>>>;
937
+ height: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
938
+ width: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
939
+ weight: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
940
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
941
+ depth: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
942
+ images: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
943
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
944
+ subtype: z.ZodEnum<["painting_unframed", "painting_framed", "painting_framed_plexi", "painting_framed_glass", "work_on_paper_unframed", "work_on_paper_framed", "work_on_paper_framed_plexi", "work_on_paper_framed_glass", "mixed_media_unframed", "mixed_media_framed", "mixed_media_framed_plexi", "mixed_media_framed_glass", "photograph_unframed", "photograph_framed", "photograph_framed_plexi", "photograph_framed_glass", "new_media", "sculpture", "pedestal", "pedestal_case_glass", "pedestal_case_plexi", "ceramic", "neon", "tapestry", "other_art", "table", "chair", "sofa_loveseat_chaise", "floor_lamp", "floor_lamp_shade", "table_lamp", "table_lamp_shade", "sconce", "ottoman", "bookcase_storage", "nightstand", "armoire_dresser", "carpet_rug", "mirror", "chandelier", "bedframe", "headboard", "desk_vanity", "media_console", "other_furniture", "earrings", "necklace", "bracelet", "ring", "brooch", "watch", "cufflinks", "eyeglasses", "set", "precious_stones", "snuff_box_cigarette_case", "other_jewelry", "vase_vessel", "bowl", "plaque", "object_of_vertu", "candelabra_candlestick", "dinnerware", "flatware", "glassware", "serveware", "porcelain_plate", "porcelain_bowl", "tabletop_accessory", "clock", "other_decorative_arts", "stamp", "book", "coin", "document_manuscript", "toy", "miniature_model", "figurine_doll", "neon_sign", "memorabilia", "camera_electrical", "other_collectibles", "wine_bottle", "spirits_bottle", "beer_bottle", "wine_case", "spirits_case", "beer_case", "wine_barrel", "spirits_barrel", "beer_barrel", "other_alcohols", "car", "motorcycle", "bus", "van", "limousine", "carriage", "trailer", "sidecar", "other_automotive", "clothing", "footwear", "handbag", "accessories", "other_fashion", "musical_instrument", "firearm_weapon", "hunting_fishing", "medical_equipment", "other"]>;
945
+ unit_of_measurement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
946
+ weight_unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
947
+ value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
948
+ }, "strip", z.ZodTypeAny, {
949
+ height: string | number;
950
+ width: string | number;
951
+ value: string | number;
952
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
953
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
954
+ internal_reference?: string | null | undefined;
955
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
956
+ details?: {
957
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
958
+ creation_date?: string | null | undefined;
959
+ creator?: string | null | undefined;
960
+ notes?: string | null | undefined;
961
+ title?: string | null | undefined;
962
+ is_fragile?: boolean | null | undefined;
963
+ is_cites?: boolean | null | undefined;
964
+ } | null | undefined;
965
+ weight?: string | number | null | undefined;
966
+ depth?: string | number | null | undefined;
967
+ images?: string[] | null | undefined;
968
+ public_reference?: string | null | undefined;
969
+ unit_of_measurement?: string | null | undefined;
970
+ weight_unit?: string | null | undefined;
971
+ }, {
972
+ height: string | number;
973
+ width: string | number;
974
+ value: string | number;
975
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
976
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
977
+ internal_reference?: string | null | undefined;
978
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
979
+ details?: {
980
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
981
+ creation_date?: string | null | undefined;
982
+ creator?: string | null | undefined;
983
+ notes?: string | null | undefined;
984
+ title?: string | null | undefined;
985
+ is_fragile?: boolean | null | undefined;
986
+ is_cites?: boolean | null | undefined;
987
+ } | null | undefined;
988
+ weight?: string | number | null | undefined;
989
+ depth?: string | number | null | undefined;
990
+ images?: string[] | null | undefined;
991
+ public_reference?: string | null | undefined;
992
+ unit_of_measurement?: string | null | undefined;
993
+ weight_unit?: string | null | undefined;
994
+ }>, "many">;
995
+ payment_process: z.ZodEnum<["checkout", "checkout_direct", "invoicing"]>;
996
+ preferred_quote_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["parcel", "premium", "select", "self_ship"]>, "many">>>;
997
+ shipping_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
998
+ quotes: z.ZodArray<z.ZodObject<{
999
+ id: z.ZodNumber;
1000
+ included_services: z.ZodArray<z.ZodObject<{
1001
+ amount: z.ZodNumber;
1002
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1003
+ is_requested: z.ZodOptional<z.ZodBoolean>;
1004
+ is_required: z.ZodOptional<z.ZodBoolean>;
1005
+ name: z.ZodString;
1006
+ sub_subtype: z.ZodString;
1007
+ subtype: z.ZodEnum<["specialized", "consolidated", "freight", "parcel", "collection", "delivery", "location", "unpacking", "condition", "installation", "deinstallation", "debris_disposal", "site_visit", "handling", "packing", "packing_materials", "receive_release", "warehouse", "customs", "coi", "administration", "taxes_duties", "fees", "security", "equipment"]>;
1008
+ type: z.ZodEnum<["transport", "location", "handling", "packing", "storage", "administration", "taxes_duties_fees", "security", "equipment"]>;
1009
+ included_services: z.ZodArray<z.ZodAny, "many">;
1010
+ }, "strip", z.ZodTypeAny, {
1011
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1012
+ name: string;
1013
+ amount: number;
1014
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1015
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1016
+ sub_subtype: string;
1017
+ included_services: any[];
1018
+ is_requested?: boolean | undefined;
1019
+ is_required?: boolean | undefined;
1020
+ }, {
1021
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1022
+ name: string;
1023
+ amount: number;
1024
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1025
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1026
+ sub_subtype: string;
1027
+ included_services: any[];
1028
+ is_requested?: boolean | undefined;
1029
+ is_required?: boolean | undefined;
1030
+ }>, "many">;
1031
+ included_insurance_policy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1032
+ amount: z.ZodNumber;
1033
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1034
+ id: z.ZodString;
1035
+ insured_value: z.ZodNumber;
1036
+ insured_value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1037
+ }, "strip", z.ZodTypeAny, {
1038
+ id: string;
1039
+ amount: number;
1040
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1041
+ insured_value: number;
1042
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1043
+ }, {
1044
+ id: string;
1045
+ amount: number;
1046
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1047
+ insured_value: number;
1048
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1049
+ }>>>;
1050
+ optional_services: z.ZodArray<z.ZodObject<{
1051
+ amount: z.ZodNumber;
1052
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1053
+ is_requested: z.ZodOptional<z.ZodBoolean>;
1054
+ is_required: z.ZodOptional<z.ZodBoolean>;
1055
+ name: z.ZodString;
1056
+ sub_subtype: z.ZodString;
1057
+ subtype: z.ZodEnum<["specialized", "consolidated", "freight", "parcel", "collection", "delivery", "location", "unpacking", "condition", "installation", "deinstallation", "debris_disposal", "site_visit", "handling", "packing", "packing_materials", "receive_release", "warehouse", "customs", "coi", "administration", "taxes_duties", "fees", "security", "equipment"]>;
1058
+ type: z.ZodEnum<["transport", "location", "handling", "packing", "storage", "administration", "taxes_duties_fees", "security", "equipment"]>;
1059
+ included_services: z.ZodArray<z.ZodAny, "many">;
1060
+ }, "strip", z.ZodTypeAny, {
1061
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1062
+ name: string;
1063
+ amount: number;
1064
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1065
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1066
+ sub_subtype: string;
1067
+ included_services: any[];
1068
+ is_requested?: boolean | undefined;
1069
+ is_required?: boolean | undefined;
1070
+ }, {
1071
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1072
+ name: string;
1073
+ amount: number;
1074
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1075
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1076
+ sub_subtype: string;
1077
+ included_services: any[];
1078
+ is_requested?: boolean | undefined;
1079
+ is_required?: boolean | undefined;
1080
+ }>, "many">;
1081
+ quote_type: z.ZodEnum<["parcel", "premium", "select", "self_ship"]>;
1082
+ status: z.ZodString;
1083
+ total: z.ZodNumber;
1084
+ total_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1085
+ }, "strip", z.ZodTypeAny, {
1086
+ id: number;
1087
+ total: number;
1088
+ status: string;
1089
+ included_services: {
1090
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1091
+ name: string;
1092
+ amount: number;
1093
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1094
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1095
+ sub_subtype: string;
1096
+ included_services: any[];
1097
+ is_requested?: boolean | undefined;
1098
+ is_required?: boolean | undefined;
1099
+ }[];
1100
+ optional_services: {
1101
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1102
+ name: string;
1103
+ amount: number;
1104
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1105
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1106
+ sub_subtype: string;
1107
+ included_services: any[];
1108
+ is_requested?: boolean | undefined;
1109
+ is_required?: boolean | undefined;
1110
+ }[];
1111
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
1112
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1113
+ included_insurance_policy?: {
1114
+ id: string;
1115
+ amount: number;
1116
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1117
+ insured_value: number;
1118
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1119
+ } | null | undefined;
1120
+ }, {
1121
+ id: number;
1122
+ total: number;
1123
+ status: string;
1124
+ included_services: {
1125
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1126
+ name: string;
1127
+ amount: number;
1128
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1129
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1130
+ sub_subtype: string;
1131
+ included_services: any[];
1132
+ is_requested?: boolean | undefined;
1133
+ is_required?: boolean | undefined;
1134
+ }[];
1135
+ optional_services: {
1136
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1137
+ name: string;
1138
+ amount: number;
1139
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1140
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1141
+ sub_subtype: string;
1142
+ included_services: any[];
1143
+ is_requested?: boolean | undefined;
1144
+ is_required?: boolean | undefined;
1145
+ }[];
1146
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
1147
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1148
+ included_insurance_policy?: {
1149
+ id: string;
1150
+ amount: number;
1151
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1152
+ insured_value: number;
1153
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1154
+ } | null | undefined;
1155
+ }>, "many">;
1156
+ }, "strip", z.ZodTypeAny, {
1157
+ id: string;
1158
+ origin: {
1159
+ country: string;
1160
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1161
+ address_line_1?: string | null | undefined;
1162
+ address_line_2?: string | null | undefined;
1163
+ address_line_3?: string | null | undefined;
1164
+ city?: string | null | undefined;
1165
+ region?: string | null | undefined;
1166
+ postal_code?: string | null | undefined;
1167
+ title?: string | null | undefined;
1168
+ contacts?: {
1169
+ name: string;
1170
+ email_address?: string | null | undefined;
1171
+ phone_number?: string | null | undefined;
1172
+ }[] | null | undefined;
1173
+ estimated_country?: string | undefined;
1174
+ estimated_region?: string | undefined;
1175
+ estimated_city?: string | undefined;
1176
+ };
1177
+ quotes: {
1178
+ id: number;
1179
+ total: number;
1180
+ status: string;
1181
+ included_services: {
1182
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1183
+ name: string;
1184
+ amount: number;
1185
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1186
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1187
+ sub_subtype: string;
1188
+ included_services: any[];
1189
+ is_requested?: boolean | undefined;
1190
+ is_required?: boolean | undefined;
1191
+ }[];
1192
+ optional_services: {
1193
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1194
+ name: string;
1195
+ amount: number;
1196
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1197
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1198
+ sub_subtype: string;
1199
+ included_services: any[];
1200
+ is_requested?: boolean | undefined;
1201
+ is_required?: boolean | undefined;
1202
+ }[];
1203
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
1204
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1205
+ included_insurance_policy?: {
1206
+ id: string;
1207
+ amount: number;
1208
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1209
+ insured_value: number;
1210
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1211
+ } | null | undefined;
1212
+ }[];
1213
+ status: "closed" | "pending" | "expired" | "cancelled" | "disqualified" | "in_progress" | "quoted";
1214
+ currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1215
+ destination: {
1216
+ country: string;
1217
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1218
+ address_line_1?: string | null | undefined;
1219
+ address_line_2?: string | null | undefined;
1220
+ address_line_3?: string | null | undefined;
1221
+ city?: string | null | undefined;
1222
+ region?: string | null | undefined;
1223
+ postal_code?: string | null | undefined;
1224
+ title?: string | null | undefined;
1225
+ contacts?: {
1226
+ name: string;
1227
+ email_address?: string | null | undefined;
1228
+ phone_number?: string | null | undefined;
1229
+ }[] | null | undefined;
1230
+ estimated_country?: string | undefined;
1231
+ estimated_region?: string | undefined;
1232
+ estimated_city?: string | undefined;
1233
+ };
1234
+ updated_at: Date;
1235
+ created_at: Date;
1236
+ additional_services: ("assembly" | "debris_disposal" | "deinstallation" | "destination_additional_labor" | "destination_building_coi" | "destination_condition_check" | "destination_full_condition_report" | "destination_unpacking" | "double_blind_bols" | "installation" | "origin_building_coi" | "origin_condition_check" | "origin_full_condition_report" | "placement" | "signature_delivery" | "tarmac_supervision")[];
1237
+ insurance: "arta_transit_insurance" | "no_arta_insurance" | null;
1238
+ internal_reference: string | null;
1239
+ objects: {
1240
+ height: string | number;
1241
+ width: string | number;
1242
+ value: string | number;
1243
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1244
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1245
+ internal_reference?: string | null | undefined;
1246
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1247
+ details?: {
1248
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1249
+ creation_date?: string | null | undefined;
1250
+ creator?: string | null | undefined;
1251
+ notes?: string | null | undefined;
1252
+ title?: string | null | undefined;
1253
+ is_fragile?: boolean | null | undefined;
1254
+ is_cites?: boolean | null | undefined;
1255
+ } | null | undefined;
1256
+ weight?: string | number | null | undefined;
1257
+ depth?: string | number | null | undefined;
1258
+ images?: string[] | null | undefined;
1259
+ public_reference?: string | null | undefined;
1260
+ unit_of_measurement?: string | null | undefined;
1261
+ weight_unit?: string | null | undefined;
1262
+ }[];
1263
+ payment_process: "checkout" | "checkout_direct" | "invoicing";
1264
+ shortcode: string;
1265
+ disqualifications: {
1266
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
1267
+ reason_code: "cannot_be_packed" | "client_timeout_reached" | "external_service_unavailable" | "object_not_supported" | "out_of_network" | "over_size" | "over_value" | "over_volume" | "over_weight" | "requested_service_unavailable" | "too_many_items" | "under_value" | "under_volume" | "under_weight";
1268
+ reason?: string | null | undefined;
1269
+ }[];
1270
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
1271
+ bookable: {
1272
+ missing: string[];
1273
+ ready: boolean;
1274
+ };
1275
+ hosted_session_id: number | null;
1276
+ log_request_id: string;
1277
+ object_count: number | null;
1278
+ public_reference?: string | null | undefined;
1279
+ tags?: any;
1280
+ preferred_quote_types?: ("select" | "parcel" | "premium" | "self_ship")[] | null | undefined;
1281
+ shipping_notes?: string | null | undefined;
1282
+ }, {
1283
+ id: string;
1284
+ origin: {
1285
+ country: string;
1286
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1287
+ address_line_1?: string | null | undefined;
1288
+ address_line_2?: string | null | undefined;
1289
+ address_line_3?: string | null | undefined;
1290
+ city?: string | null | undefined;
1291
+ region?: string | null | undefined;
1292
+ postal_code?: string | null | undefined;
1293
+ title?: string | null | undefined;
1294
+ contacts?: {
1295
+ name: string;
1296
+ email_address?: string | null | undefined;
1297
+ phone_number?: string | null | undefined;
1298
+ }[] | null | undefined;
1299
+ estimated_country?: string | undefined;
1300
+ estimated_region?: string | undefined;
1301
+ estimated_city?: string | undefined;
1302
+ };
1303
+ quotes: {
1304
+ id: number;
1305
+ total: number;
1306
+ status: string;
1307
+ included_services: {
1308
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1309
+ name: string;
1310
+ amount: number;
1311
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1312
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1313
+ sub_subtype: string;
1314
+ included_services: any[];
1315
+ is_requested?: boolean | undefined;
1316
+ is_required?: boolean | undefined;
1317
+ }[];
1318
+ optional_services: {
1319
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
1320
+ name: string;
1321
+ amount: number;
1322
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1323
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
1324
+ sub_subtype: string;
1325
+ included_services: any[];
1326
+ is_requested?: boolean | undefined;
1327
+ is_required?: boolean | undefined;
1328
+ }[];
1329
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
1330
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1331
+ included_insurance_policy?: {
1332
+ id: string;
1333
+ amount: number;
1334
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1335
+ insured_value: number;
1336
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1337
+ } | null | undefined;
1338
+ }[];
1339
+ status: "closed" | "pending" | "expired" | "cancelled" | "disqualified" | "in_progress" | "quoted";
1340
+ currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1341
+ destination: {
1342
+ country: string;
1343
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1344
+ address_line_1?: string | null | undefined;
1345
+ address_line_2?: string | null | undefined;
1346
+ address_line_3?: string | null | undefined;
1347
+ city?: string | null | undefined;
1348
+ region?: string | null | undefined;
1349
+ postal_code?: string | null | undefined;
1350
+ title?: string | null | undefined;
1351
+ contacts?: {
1352
+ name: string;
1353
+ email_address?: string | null | undefined;
1354
+ phone_number?: string | null | undefined;
1355
+ }[] | null | undefined;
1356
+ estimated_country?: string | undefined;
1357
+ estimated_region?: string | undefined;
1358
+ estimated_city?: string | undefined;
1359
+ };
1360
+ updated_at: Date;
1361
+ created_at: Date;
1362
+ additional_services: ("assembly" | "debris_disposal" | "deinstallation" | "destination_additional_labor" | "destination_building_coi" | "destination_condition_check" | "destination_full_condition_report" | "destination_unpacking" | "double_blind_bols" | "installation" | "origin_building_coi" | "origin_condition_check" | "origin_full_condition_report" | "placement" | "signature_delivery" | "tarmac_supervision")[];
1363
+ insurance: "arta_transit_insurance" | "no_arta_insurance" | null;
1364
+ internal_reference: string | null;
1365
+ objects: {
1366
+ height: string | number;
1367
+ width: string | number;
1368
+ value: string | number;
1369
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1370
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1371
+ internal_reference?: string | null | undefined;
1372
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1373
+ details?: {
1374
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1375
+ creation_date?: string | null | undefined;
1376
+ creator?: string | null | undefined;
1377
+ notes?: string | null | undefined;
1378
+ title?: string | null | undefined;
1379
+ is_fragile?: boolean | null | undefined;
1380
+ is_cites?: boolean | null | undefined;
1381
+ } | null | undefined;
1382
+ weight?: string | number | null | undefined;
1383
+ depth?: string | number | null | undefined;
1384
+ images?: string[] | null | undefined;
1385
+ public_reference?: string | null | undefined;
1386
+ unit_of_measurement?: string | null | undefined;
1387
+ weight_unit?: string | null | undefined;
1388
+ }[];
1389
+ payment_process: "checkout" | "checkout_direct" | "invoicing";
1390
+ shortcode: string;
1391
+ disqualifications: {
1392
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
1393
+ reason_code: "cannot_be_packed" | "client_timeout_reached" | "external_service_unavailable" | "object_not_supported" | "out_of_network" | "over_size" | "over_value" | "over_volume" | "over_weight" | "requested_service_unavailable" | "too_many_items" | "under_value" | "under_volume" | "under_weight";
1394
+ reason?: string | null | undefined;
1395
+ }[];
1396
+ quote_types: ("select" | "parcel" | "premium" | "self_ship")[];
1397
+ bookable: {
1398
+ missing: string[];
1399
+ ready: boolean;
1400
+ };
1401
+ hosted_session_id: number | null;
1402
+ log_request_id: string;
1403
+ object_count: number | null;
1404
+ public_reference?: string | null | undefined;
1405
+ tags?: any;
1406
+ preferred_quote_types?: ("select" | "parcel" | "premium" | "self_ship")[] | null | undefined;
1407
+ shipping_notes?: string | null | undefined;
1408
+ }>;
1409
+ export declare const paymentContextSchema: z.ZodEnum<["hosted_checkout", "invoiced"]>;
1410
+ export declare const paymentSchema: z.ZodObject<{
1411
+ updated_at: z.ZodDate;
1412
+ created_at: z.ZodDate;
1413
+ id: z.ZodNumber;
1414
+ amount: z.ZodNumber;
1415
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1416
+ context: z.ZodEnum<["hosted_checkout", "invoiced"]>;
1417
+ paid_on: z.ZodDate;
1418
+ }, "strip", z.ZodTypeAny, {
1419
+ id: number;
1420
+ updated_at: Date;
1421
+ created_at: Date;
1422
+ paid_on: Date;
1423
+ amount: number;
1424
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1425
+ context: "hosted_checkout" | "invoiced";
1426
+ }, {
1427
+ id: number;
1428
+ updated_at: Date;
1429
+ created_at: Date;
1430
+ paid_on: Date;
1431
+ amount: number;
1432
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1433
+ context: "hosted_checkout" | "invoiced";
1434
+ }>;
1435
+ export declare const shipmentExceptionStatusSchema: z.ZodEnum<["in_progress", "new", "resolved"]>;
1436
+ export declare const packageStatusSechema: z.ZodEnum<["pending", "transit", "out_for_delivery", "delivered", "unknown", "notfound", "undelivered", "exception", "expired"]>;
1437
+ export declare const packageSchema: z.ZodObject<{
1438
+ depth: z.ZodNumber;
1439
+ eta: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1440
+ handle_with_care: z.ZodBoolean;
1441
+ height: z.ZodNumber;
1442
+ id: z.ZodNumber;
1443
+ is_sufficiently_packed: z.ZodBoolean;
1444
+ objects: z.ZodArray<z.ZodObject<{
1445
+ internal_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1446
+ current_packing: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["alcohol_case", "lay_flat_wine_box", "blanket", "wardrobe_box", "cardboard_box", "chandelier_box", "chair_box", "cbin_closed", "cbin_open", "ply_box", "fine_art_econo_crate", "fine_art_international_crate", "econo_crate", "international_econo_crate", "furniture_crate", "international_furniture_crate", "parcel_crate", "museum_crate", "international_museum_crate", "foam_lined_box", "cavity_box", "strongbox", "double_box", "travel_frame", "travel_frame_art", "travel_frame_other", "a_frame", "slat_crate", "tri_wall_crate", "lockbox", "no_packing", "pallet", "international_pallet", "portfolio", "rug_rolled", "shadow_box", "slipcase", "slipcase_glass_tape", "poly_cardboard", "bubble_cardboard", "garment_bag", "poly_only", "dartek_only", "bubble_only", "cling_wrap", "cbin_communal", "sonotube", "stabilizing_box", "shipping_tube_small", "shipping_tube_large"]>, "many">>>;
1447
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1448
+ materials: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["stone_marble", "precious_stones", "fiber_synthetic", "fabric_natural", "taxidermy", "carbon_fiber", "live_animal", "paper", "glass", "presious_metals", "particleboard", "styrofoam", "wood", "photo_film", "sand", "metal", "plexiglass", "aquatic_life", "canvas", "drywall", "hard_plastic", "vinyl", "soft_plastic", "leather", "rubber", "concreate", "paint", "electronics", "fiber_natural", "gas", "fabric_synthetic", "CITES", "liquids", "salts"]>, "many">>>;
1449
+ creation_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1450
+ creator: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1451
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1452
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1453
+ is_fragile: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1454
+ is_cites: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1455
+ }, "strip", z.ZodTypeAny, {
1456
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1457
+ creation_date?: string | null | undefined;
1458
+ creator?: string | null | undefined;
1459
+ notes?: string | null | undefined;
1460
+ title?: string | null | undefined;
1461
+ is_fragile?: boolean | null | undefined;
1462
+ is_cites?: boolean | null | undefined;
1463
+ }, {
1464
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1465
+ creation_date?: string | null | undefined;
1466
+ creator?: string | null | undefined;
1467
+ notes?: string | null | undefined;
1468
+ title?: string | null | undefined;
1469
+ is_fragile?: boolean | null | undefined;
1470
+ is_cites?: boolean | null | undefined;
1471
+ }>>>;
1472
+ height: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1473
+ width: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1474
+ weight: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
1475
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1476
+ depth: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
1477
+ images: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1478
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1479
+ subtype: z.ZodEnum<["painting_unframed", "painting_framed", "painting_framed_plexi", "painting_framed_glass", "work_on_paper_unframed", "work_on_paper_framed", "work_on_paper_framed_plexi", "work_on_paper_framed_glass", "mixed_media_unframed", "mixed_media_framed", "mixed_media_framed_plexi", "mixed_media_framed_glass", "photograph_unframed", "photograph_framed", "photograph_framed_plexi", "photograph_framed_glass", "new_media", "sculpture", "pedestal", "pedestal_case_glass", "pedestal_case_plexi", "ceramic", "neon", "tapestry", "other_art", "table", "chair", "sofa_loveseat_chaise", "floor_lamp", "floor_lamp_shade", "table_lamp", "table_lamp_shade", "sconce", "ottoman", "bookcase_storage", "nightstand", "armoire_dresser", "carpet_rug", "mirror", "chandelier", "bedframe", "headboard", "desk_vanity", "media_console", "other_furniture", "earrings", "necklace", "bracelet", "ring", "brooch", "watch", "cufflinks", "eyeglasses", "set", "precious_stones", "snuff_box_cigarette_case", "other_jewelry", "vase_vessel", "bowl", "plaque", "object_of_vertu", "candelabra_candlestick", "dinnerware", "flatware", "glassware", "serveware", "porcelain_plate", "porcelain_bowl", "tabletop_accessory", "clock", "other_decorative_arts", "stamp", "book", "coin", "document_manuscript", "toy", "miniature_model", "figurine_doll", "neon_sign", "memorabilia", "camera_electrical", "other_collectibles", "wine_bottle", "spirits_bottle", "beer_bottle", "wine_case", "spirits_case", "beer_case", "wine_barrel", "spirits_barrel", "beer_barrel", "other_alcohols", "car", "motorcycle", "bus", "van", "limousine", "carriage", "trailer", "sidecar", "other_automotive", "clothing", "footwear", "handbag", "accessories", "other_fashion", "musical_instrument", "firearm_weapon", "hunting_fishing", "medical_equipment", "other"]>;
1480
+ unit_of_measurement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1481
+ weight_unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1482
+ value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1483
+ }, "strip", z.ZodTypeAny, {
1484
+ height: string | number;
1485
+ width: string | number;
1486
+ value: string | number;
1487
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1488
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1489
+ internal_reference?: string | null | undefined;
1490
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1491
+ details?: {
1492
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1493
+ creation_date?: string | null | undefined;
1494
+ creator?: string | null | undefined;
1495
+ notes?: string | null | undefined;
1496
+ title?: string | null | undefined;
1497
+ is_fragile?: boolean | null | undefined;
1498
+ is_cites?: boolean | null | undefined;
1499
+ } | null | undefined;
1500
+ weight?: string | number | null | undefined;
1501
+ depth?: string | number | null | undefined;
1502
+ images?: string[] | null | undefined;
1503
+ public_reference?: string | null | undefined;
1504
+ unit_of_measurement?: string | null | undefined;
1505
+ weight_unit?: string | null | undefined;
1506
+ }, {
1507
+ height: string | number;
1508
+ width: string | number;
1509
+ value: string | number;
1510
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1511
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1512
+ internal_reference?: string | null | undefined;
1513
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1514
+ details?: {
1515
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1516
+ creation_date?: string | null | undefined;
1517
+ creator?: string | null | undefined;
1518
+ notes?: string | null | undefined;
1519
+ title?: string | null | undefined;
1520
+ is_fragile?: boolean | null | undefined;
1521
+ is_cites?: boolean | null | undefined;
1522
+ } | null | undefined;
1523
+ weight?: string | number | null | undefined;
1524
+ depth?: string | number | null | undefined;
1525
+ images?: string[] | null | undefined;
1526
+ public_reference?: string | null | undefined;
1527
+ unit_of_measurement?: string | null | undefined;
1528
+ weight_unit?: string | null | undefined;
1529
+ }>, "many">;
1530
+ packing_materials: z.ZodArray<z.ZodEnum<["alcohol_case", "lay_flat_wine_box", "blanket", "wardrobe_box", "cardboard_box", "chandelier_box", "chair_box", "cbin_closed", "cbin_open", "ply_box", "fine_art_econo_crate", "fine_art_international_crate", "econo_crate", "international_econo_crate", "furniture_crate", "international_furniture_crate", "parcel_crate", "museum_crate", "international_museum_crate", "foam_lined_box", "cavity_box", "strongbox", "double_box", "travel_frame", "travel_frame_art", "travel_frame_other", "a_frame", "slat_crate", "tri_wall_crate", "lockbox", "no_packing", "pallet", "international_pallet", "portfolio", "rug_rolled", "shadow_box", "slipcase", "slipcase_glass_tape", "poly_cardboard", "bubble_cardboard", "garment_bag", "poly_only", "dartek_only", "bubble_only", "cling_wrap", "cbin_communal", "sonotube", "stabilizing_box", "shipping_tube_small", "shipping_tube_large"]>, "many">;
1531
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["pending", "transit", "out_for_delivery", "delivered", "unknown", "notfound", "undelivered", "exception", "expired"]>>>;
1532
+ unit_of_measurement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1533
+ weight: z.ZodNumber;
1534
+ weight_unit: z.ZodString;
1535
+ width: z.ZodNumber;
1536
+ }, "strip", z.ZodTypeAny, {
1537
+ id: number;
1538
+ height: number;
1539
+ width: number;
1540
+ packing_materials: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[];
1541
+ objects: {
1542
+ height: string | number;
1543
+ width: string | number;
1544
+ value: string | number;
1545
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1546
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1547
+ internal_reference?: string | null | undefined;
1548
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1549
+ details?: {
1550
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1551
+ creation_date?: string | null | undefined;
1552
+ creator?: string | null | undefined;
1553
+ notes?: string | null | undefined;
1554
+ title?: string | null | undefined;
1555
+ is_fragile?: boolean | null | undefined;
1556
+ is_cites?: boolean | null | undefined;
1557
+ } | null | undefined;
1558
+ weight?: string | number | null | undefined;
1559
+ depth?: string | number | null | undefined;
1560
+ images?: string[] | null | undefined;
1561
+ public_reference?: string | null | undefined;
1562
+ unit_of_measurement?: string | null | undefined;
1563
+ weight_unit?: string | null | undefined;
1564
+ }[];
1565
+ weight: number;
1566
+ depth: number;
1567
+ weight_unit: string;
1568
+ handle_with_care: boolean;
1569
+ is_sufficiently_packed: boolean;
1570
+ eta?: string | null | undefined;
1571
+ status?: "pending" | "expired" | "unknown" | "transit" | "out_for_delivery" | "delivered" | "notfound" | "undelivered" | "exception" | null | undefined;
1572
+ unit_of_measurement?: string | null | undefined;
1573
+ }, {
1574
+ id: number;
1575
+ height: number;
1576
+ width: number;
1577
+ packing_materials: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[];
1578
+ objects: {
1579
+ height: string | number;
1580
+ width: string | number;
1581
+ value: string | number;
1582
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1583
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1584
+ internal_reference?: string | null | undefined;
1585
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1586
+ details?: {
1587
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1588
+ creation_date?: string | null | undefined;
1589
+ creator?: string | null | undefined;
1590
+ notes?: string | null | undefined;
1591
+ title?: string | null | undefined;
1592
+ is_fragile?: boolean | null | undefined;
1593
+ is_cites?: boolean | null | undefined;
1594
+ } | null | undefined;
1595
+ weight?: string | number | null | undefined;
1596
+ depth?: string | number | null | undefined;
1597
+ images?: string[] | null | undefined;
1598
+ public_reference?: string | null | undefined;
1599
+ unit_of_measurement?: string | null | undefined;
1600
+ weight_unit?: string | null | undefined;
1601
+ }[];
1602
+ weight: number;
1603
+ depth: number;
1604
+ weight_unit: string;
1605
+ handle_with_care: boolean;
1606
+ is_sufficiently_packed: boolean;
1607
+ eta?: string | null | undefined;
1608
+ status?: "pending" | "expired" | "unknown" | "transit" | "out_for_delivery" | "delivered" | "notfound" | "undelivered" | "exception" | null | undefined;
1609
+ unit_of_measurement?: string | null | undefined;
1610
+ }>;
1611
+ export declare const shipmentExceptionTypeIdSchema: z.ZodEnum<["change_of_address_request", "customs_information_required", "damaged_items", "direct_payment_required", "held_at_customs", "inaccurate_object_details", "incorrect_address", "lost_in_transit", "not_ready_for_delivery", "not_ready_for_release", "other", "prepayment_required", "requested_hold_to_collect", "requested_hold_to_deliver", "wrong_item"]>;
1612
+ export declare const shipmentExceptionSchema: z.ZodObject<{
1613
+ updated_at: z.ZodDate;
1614
+ created_at: z.ZodDate;
1615
+ exception_type_label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1616
+ id: z.ZodString;
1617
+ package_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1618
+ resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1619
+ status: z.ZodEnum<["in_progress", "new", "resolved"]>;
1620
+ type: z.ZodEnum<["change_of_address_request", "customs_information_required", "damaged_items", "direct_payment_required", "held_at_customs", "inaccurate_object_details", "incorrect_address", "lost_in_transit", "not_ready_for_delivery", "not_ready_for_release", "other", "prepayment_required", "requested_hold_to_collect", "requested_hold_to_deliver", "wrong_item"]>;
1621
+ }, "strip", z.ZodTypeAny, {
1622
+ type: "other" | "change_of_address_request" | "customs_information_required" | "damaged_items" | "direct_payment_required" | "held_at_customs" | "inaccurate_object_details" | "incorrect_address" | "lost_in_transit" | "not_ready_for_delivery" | "not_ready_for_release" | "prepayment_required" | "requested_hold_to_collect" | "requested_hold_to_deliver" | "wrong_item";
1623
+ id: string;
1624
+ status: "new" | "in_progress" | "resolved";
1625
+ updated_at: Date;
1626
+ created_at: Date;
1627
+ exception_type_label?: string | null | undefined;
1628
+ package_id?: number | null | undefined;
1629
+ resolution?: string | null | undefined;
1630
+ }, {
1631
+ type: "other" | "change_of_address_request" | "customs_information_required" | "damaged_items" | "direct_payment_required" | "held_at_customs" | "inaccurate_object_details" | "incorrect_address" | "lost_in_transit" | "not_ready_for_delivery" | "not_ready_for_release" | "prepayment_required" | "requested_hold_to_collect" | "requested_hold_to_deliver" | "wrong_item";
1632
+ id: string;
1633
+ status: "new" | "in_progress" | "resolved";
1634
+ updated_at: Date;
1635
+ created_at: Date;
1636
+ exception_type_label?: string | null | undefined;
1637
+ package_id?: number | null | undefined;
1638
+ resolution?: string | null | undefined;
1639
+ }>;
1640
+ export declare const shipmentScheduleSchema: z.ZodObject<{
1641
+ delivery_end: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1642
+ delivery_start: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1643
+ delivery_window_modifier: z.ZodString;
1644
+ pickup_end: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1645
+ pickup_start: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1646
+ pickup_window_modifier: z.ZodString;
1647
+ }, "strip", z.ZodTypeAny, {
1648
+ delivery_window_modifier: string;
1649
+ pickup_window_modifier: string;
1650
+ delivery_end?: Date | null | undefined;
1651
+ delivery_start?: Date | null | undefined;
1652
+ pickup_end?: Date | null | undefined;
1653
+ pickup_start?: Date | null | undefined;
1654
+ }, {
1655
+ delivery_window_modifier: string;
1656
+ pickup_window_modifier: string;
1657
+ delivery_end?: Date | null | undefined;
1658
+ delivery_start?: Date | null | undefined;
1659
+ pickup_end?: Date | null | undefined;
1660
+ pickup_start?: Date | null | undefined;
1661
+ }>;
1662
+ export declare const shipmentTrackingSchema: z.ZodObject<{
1663
+ carrier_name: z.ZodString;
1664
+ label_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1665
+ package_id: z.ZodNumber;
1666
+ tracking_number: z.ZodString;
1667
+ url: z.ZodString;
1668
+ }, "strip", z.ZodTypeAny, {
1669
+ url: string;
1670
+ tracking_number: string;
1671
+ package_id: number;
1672
+ carrier_name: string;
1673
+ label_url?: string | null | undefined;
1674
+ }, {
1675
+ url: string;
1676
+ tracking_number: string;
1677
+ package_id: number;
1678
+ carrier_name: string;
1679
+ label_url?: string | null | undefined;
1680
+ }>;
1681
+ export declare const eeiFormStatusSchema: z.ZodEnum<["pending", "cleared", "approved", "rejected", "submitted"]>;
1682
+ export declare const shipmentStatusSchema: z.ZodEnum<["pending", "confirmed", "collected", "in_transit", "completed"]>;
1683
+ export declare const shipmentSchema: z.ZodObject<{
1684
+ updated_at: z.ZodDate;
1685
+ created_at: z.ZodDate;
1686
+ id: z.ZodString;
1687
+ destination: z.ZodObject<{
1688
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
1689
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1690
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1691
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1692
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1693
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1694
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1695
+ country: z.ZodString;
1696
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1697
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1698
+ name: z.ZodString;
1699
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1700
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1701
+ }, "strip", z.ZodTypeAny, {
1702
+ name: string;
1703
+ email_address?: string | null | undefined;
1704
+ phone_number?: string | null | undefined;
1705
+ }, {
1706
+ name: string;
1707
+ email_address?: string | null | undefined;
1708
+ phone_number?: string | null | undefined;
1709
+ }>, "many">>>;
1710
+ estimated_country: z.ZodOptional<z.ZodString>;
1711
+ estimated_region: z.ZodOptional<z.ZodString>;
1712
+ estimated_city: z.ZodOptional<z.ZodString>;
1713
+ }, "strip", z.ZodTypeAny, {
1714
+ country: string;
1715
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1716
+ address_line_1?: string | null | undefined;
1717
+ address_line_2?: string | null | undefined;
1718
+ address_line_3?: string | null | undefined;
1719
+ city?: string | null | undefined;
1720
+ region?: string | null | undefined;
1721
+ postal_code?: string | null | undefined;
1722
+ title?: string | null | undefined;
1723
+ contacts?: {
1724
+ name: string;
1725
+ email_address?: string | null | undefined;
1726
+ phone_number?: string | null | undefined;
1727
+ }[] | null | undefined;
1728
+ estimated_country?: string | undefined;
1729
+ estimated_region?: string | undefined;
1730
+ estimated_city?: string | undefined;
1731
+ }, {
1732
+ country: string;
1733
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1734
+ address_line_1?: string | null | undefined;
1735
+ address_line_2?: string | null | undefined;
1736
+ address_line_3?: string | null | undefined;
1737
+ city?: string | null | undefined;
1738
+ region?: string | null | undefined;
1739
+ postal_code?: string | null | undefined;
1740
+ title?: string | null | undefined;
1741
+ contacts?: {
1742
+ name: string;
1743
+ email_address?: string | null | undefined;
1744
+ phone_number?: string | null | undefined;
1745
+ }[] | null | undefined;
1746
+ estimated_country?: string | undefined;
1747
+ estimated_region?: string | undefined;
1748
+ estimated_city?: string | undefined;
1749
+ }>;
1750
+ eei_form_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["pending", "cleared", "approved", "rejected", "submitted"]>>>;
1751
+ emissions: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1752
+ emissions_unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1753
+ exceptions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1754
+ updated_at: z.ZodDate;
1755
+ created_at: z.ZodDate;
1756
+ exception_type_label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1757
+ id: z.ZodString;
1758
+ package_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1759
+ resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1760
+ status: z.ZodEnum<["in_progress", "new", "resolved"]>;
1761
+ type: z.ZodEnum<["change_of_address_request", "customs_information_required", "damaged_items", "direct_payment_required", "held_at_customs", "inaccurate_object_details", "incorrect_address", "lost_in_transit", "not_ready_for_delivery", "not_ready_for_release", "other", "prepayment_required", "requested_hold_to_collect", "requested_hold_to_deliver", "wrong_item"]>;
1762
+ }, "strip", z.ZodTypeAny, {
1763
+ type: "other" | "change_of_address_request" | "customs_information_required" | "damaged_items" | "direct_payment_required" | "held_at_customs" | "inaccurate_object_details" | "incorrect_address" | "lost_in_transit" | "not_ready_for_delivery" | "not_ready_for_release" | "prepayment_required" | "requested_hold_to_collect" | "requested_hold_to_deliver" | "wrong_item";
1764
+ id: string;
1765
+ status: "new" | "in_progress" | "resolved";
1766
+ updated_at: Date;
1767
+ created_at: Date;
1768
+ exception_type_label?: string | null | undefined;
1769
+ package_id?: number | null | undefined;
1770
+ resolution?: string | null | undefined;
1771
+ }, {
1772
+ type: "other" | "change_of_address_request" | "customs_information_required" | "damaged_items" | "direct_payment_required" | "held_at_customs" | "inaccurate_object_details" | "incorrect_address" | "lost_in_transit" | "not_ready_for_delivery" | "not_ready_for_release" | "prepayment_required" | "requested_hold_to_collect" | "requested_hold_to_deliver" | "wrong_item";
1773
+ id: string;
1774
+ status: "new" | "in_progress" | "resolved";
1775
+ updated_at: Date;
1776
+ created_at: Date;
1777
+ exception_type_label?: string | null | undefined;
1778
+ package_id?: number | null | undefined;
1779
+ resolution?: string | null | undefined;
1780
+ }>, "many">>>;
1781
+ hosted_session_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1782
+ insurance_policy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1783
+ amount: z.ZodNumber;
1784
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1785
+ id: z.ZodString;
1786
+ insured_value: z.ZodNumber;
1787
+ insured_value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1788
+ }, "strip", z.ZodTypeAny, {
1789
+ id: string;
1790
+ amount: number;
1791
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1792
+ insured_value: number;
1793
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1794
+ }, {
1795
+ id: string;
1796
+ amount: number;
1797
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1798
+ insured_value: number;
1799
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1800
+ }>>>;
1801
+ internal_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1802
+ log_request_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1803
+ object_count: z.ZodNumber;
1804
+ origin: z.ZodObject<{
1805
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
1806
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1807
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1808
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1809
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1810
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1811
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1812
+ country: z.ZodString;
1813
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1814
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1815
+ name: z.ZodString;
1816
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1817
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1818
+ }, "strip", z.ZodTypeAny, {
1819
+ name: string;
1820
+ email_address?: string | null | undefined;
1821
+ phone_number?: string | null | undefined;
1822
+ }, {
1823
+ name: string;
1824
+ email_address?: string | null | undefined;
1825
+ phone_number?: string | null | undefined;
1826
+ }>, "many">>>;
1827
+ estimated_country: z.ZodOptional<z.ZodString>;
1828
+ estimated_region: z.ZodOptional<z.ZodString>;
1829
+ estimated_city: z.ZodOptional<z.ZodString>;
1830
+ }, "strip", z.ZodTypeAny, {
1831
+ country: string;
1832
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1833
+ address_line_1?: string | null | undefined;
1834
+ address_line_2?: string | null | undefined;
1835
+ address_line_3?: string | null | undefined;
1836
+ city?: string | null | undefined;
1837
+ region?: string | null | undefined;
1838
+ postal_code?: string | null | undefined;
1839
+ title?: string | null | undefined;
1840
+ contacts?: {
1841
+ name: string;
1842
+ email_address?: string | null | undefined;
1843
+ phone_number?: string | null | undefined;
1844
+ }[] | null | undefined;
1845
+ estimated_country?: string | undefined;
1846
+ estimated_region?: string | undefined;
1847
+ estimated_city?: string | undefined;
1848
+ }, {
1849
+ country: string;
1850
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
1851
+ address_line_1?: string | null | undefined;
1852
+ address_line_2?: string | null | undefined;
1853
+ address_line_3?: string | null | undefined;
1854
+ city?: string | null | undefined;
1855
+ region?: string | null | undefined;
1856
+ postal_code?: string | null | undefined;
1857
+ title?: string | null | undefined;
1858
+ contacts?: {
1859
+ name: string;
1860
+ email_address?: string | null | undefined;
1861
+ phone_number?: string | null | undefined;
1862
+ }[] | null | undefined;
1863
+ estimated_country?: string | undefined;
1864
+ estimated_region?: string | undefined;
1865
+ estimated_city?: string | undefined;
1866
+ }>;
1867
+ package_count: z.ZodNumber;
1868
+ packages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1869
+ depth: z.ZodNumber;
1870
+ eta: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1871
+ handle_with_care: z.ZodBoolean;
1872
+ height: z.ZodNumber;
1873
+ id: z.ZodNumber;
1874
+ is_sufficiently_packed: z.ZodBoolean;
1875
+ objects: z.ZodArray<z.ZodObject<{
1876
+ internal_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1877
+ current_packing: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["alcohol_case", "lay_flat_wine_box", "blanket", "wardrobe_box", "cardboard_box", "chandelier_box", "chair_box", "cbin_closed", "cbin_open", "ply_box", "fine_art_econo_crate", "fine_art_international_crate", "econo_crate", "international_econo_crate", "furniture_crate", "international_furniture_crate", "parcel_crate", "museum_crate", "international_museum_crate", "foam_lined_box", "cavity_box", "strongbox", "double_box", "travel_frame", "travel_frame_art", "travel_frame_other", "a_frame", "slat_crate", "tri_wall_crate", "lockbox", "no_packing", "pallet", "international_pallet", "portfolio", "rug_rolled", "shadow_box", "slipcase", "slipcase_glass_tape", "poly_cardboard", "bubble_cardboard", "garment_bag", "poly_only", "dartek_only", "bubble_only", "cling_wrap", "cbin_communal", "sonotube", "stabilizing_box", "shipping_tube_small", "shipping_tube_large"]>, "many">>>;
1878
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1879
+ materials: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["stone_marble", "precious_stones", "fiber_synthetic", "fabric_natural", "taxidermy", "carbon_fiber", "live_animal", "paper", "glass", "presious_metals", "particleboard", "styrofoam", "wood", "photo_film", "sand", "metal", "plexiglass", "aquatic_life", "canvas", "drywall", "hard_plastic", "vinyl", "soft_plastic", "leather", "rubber", "concreate", "paint", "electronics", "fiber_natural", "gas", "fabric_synthetic", "CITES", "liquids", "salts"]>, "many">>>;
1880
+ creation_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1881
+ creator: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1882
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1883
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1884
+ is_fragile: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1885
+ is_cites: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1886
+ }, "strip", z.ZodTypeAny, {
1887
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1888
+ creation_date?: string | null | undefined;
1889
+ creator?: string | null | undefined;
1890
+ notes?: string | null | undefined;
1891
+ title?: string | null | undefined;
1892
+ is_fragile?: boolean | null | undefined;
1893
+ is_cites?: boolean | null | undefined;
1894
+ }, {
1895
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1896
+ creation_date?: string | null | undefined;
1897
+ creator?: string | null | undefined;
1898
+ notes?: string | null | undefined;
1899
+ title?: string | null | undefined;
1900
+ is_fragile?: boolean | null | undefined;
1901
+ is_cites?: boolean | null | undefined;
1902
+ }>>>;
1903
+ height: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1904
+ width: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1905
+ weight: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
1906
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1907
+ depth: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
1908
+ images: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1909
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1910
+ subtype: z.ZodEnum<["painting_unframed", "painting_framed", "painting_framed_plexi", "painting_framed_glass", "work_on_paper_unframed", "work_on_paper_framed", "work_on_paper_framed_plexi", "work_on_paper_framed_glass", "mixed_media_unframed", "mixed_media_framed", "mixed_media_framed_plexi", "mixed_media_framed_glass", "photograph_unframed", "photograph_framed", "photograph_framed_plexi", "photograph_framed_glass", "new_media", "sculpture", "pedestal", "pedestal_case_glass", "pedestal_case_plexi", "ceramic", "neon", "tapestry", "other_art", "table", "chair", "sofa_loveseat_chaise", "floor_lamp", "floor_lamp_shade", "table_lamp", "table_lamp_shade", "sconce", "ottoman", "bookcase_storage", "nightstand", "armoire_dresser", "carpet_rug", "mirror", "chandelier", "bedframe", "headboard", "desk_vanity", "media_console", "other_furniture", "earrings", "necklace", "bracelet", "ring", "brooch", "watch", "cufflinks", "eyeglasses", "set", "precious_stones", "snuff_box_cigarette_case", "other_jewelry", "vase_vessel", "bowl", "plaque", "object_of_vertu", "candelabra_candlestick", "dinnerware", "flatware", "glassware", "serveware", "porcelain_plate", "porcelain_bowl", "tabletop_accessory", "clock", "other_decorative_arts", "stamp", "book", "coin", "document_manuscript", "toy", "miniature_model", "figurine_doll", "neon_sign", "memorabilia", "camera_electrical", "other_collectibles", "wine_bottle", "spirits_bottle", "beer_bottle", "wine_case", "spirits_case", "beer_case", "wine_barrel", "spirits_barrel", "beer_barrel", "other_alcohols", "car", "motorcycle", "bus", "van", "limousine", "carriage", "trailer", "sidecar", "other_automotive", "clothing", "footwear", "handbag", "accessories", "other_fashion", "musical_instrument", "firearm_weapon", "hunting_fishing", "medical_equipment", "other"]>;
1911
+ unit_of_measurement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1912
+ weight_unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1913
+ value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
1914
+ }, "strip", z.ZodTypeAny, {
1915
+ height: string | number;
1916
+ width: string | number;
1917
+ value: string | number;
1918
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1919
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1920
+ internal_reference?: string | null | undefined;
1921
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1922
+ details?: {
1923
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1924
+ creation_date?: string | null | undefined;
1925
+ creator?: string | null | undefined;
1926
+ notes?: string | null | undefined;
1927
+ title?: string | null | undefined;
1928
+ is_fragile?: boolean | null | undefined;
1929
+ is_cites?: boolean | null | undefined;
1930
+ } | null | undefined;
1931
+ weight?: string | number | null | undefined;
1932
+ depth?: string | number | null | undefined;
1933
+ images?: string[] | null | undefined;
1934
+ public_reference?: string | null | undefined;
1935
+ unit_of_measurement?: string | null | undefined;
1936
+ weight_unit?: string | null | undefined;
1937
+ }, {
1938
+ height: string | number;
1939
+ width: string | number;
1940
+ value: string | number;
1941
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1942
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1943
+ internal_reference?: string | null | undefined;
1944
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1945
+ details?: {
1946
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1947
+ creation_date?: string | null | undefined;
1948
+ creator?: string | null | undefined;
1949
+ notes?: string | null | undefined;
1950
+ title?: string | null | undefined;
1951
+ is_fragile?: boolean | null | undefined;
1952
+ is_cites?: boolean | null | undefined;
1953
+ } | null | undefined;
1954
+ weight?: string | number | null | undefined;
1955
+ depth?: string | number | null | undefined;
1956
+ images?: string[] | null | undefined;
1957
+ public_reference?: string | null | undefined;
1958
+ unit_of_measurement?: string | null | undefined;
1959
+ weight_unit?: string | null | undefined;
1960
+ }>, "many">;
1961
+ packing_materials: z.ZodArray<z.ZodEnum<["alcohol_case", "lay_flat_wine_box", "blanket", "wardrobe_box", "cardboard_box", "chandelier_box", "chair_box", "cbin_closed", "cbin_open", "ply_box", "fine_art_econo_crate", "fine_art_international_crate", "econo_crate", "international_econo_crate", "furniture_crate", "international_furniture_crate", "parcel_crate", "museum_crate", "international_museum_crate", "foam_lined_box", "cavity_box", "strongbox", "double_box", "travel_frame", "travel_frame_art", "travel_frame_other", "a_frame", "slat_crate", "tri_wall_crate", "lockbox", "no_packing", "pallet", "international_pallet", "portfolio", "rug_rolled", "shadow_box", "slipcase", "slipcase_glass_tape", "poly_cardboard", "bubble_cardboard", "garment_bag", "poly_only", "dartek_only", "bubble_only", "cling_wrap", "cbin_communal", "sonotube", "stabilizing_box", "shipping_tube_small", "shipping_tube_large"]>, "many">;
1962
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["pending", "transit", "out_for_delivery", "delivered", "unknown", "notfound", "undelivered", "exception", "expired"]>>>;
1963
+ unit_of_measurement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1964
+ weight: z.ZodNumber;
1965
+ weight_unit: z.ZodString;
1966
+ width: z.ZodNumber;
1967
+ }, "strip", z.ZodTypeAny, {
1968
+ id: number;
1969
+ height: number;
1970
+ width: number;
1971
+ packing_materials: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[];
1972
+ objects: {
1973
+ height: string | number;
1974
+ width: string | number;
1975
+ value: string | number;
1976
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
1977
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
1978
+ internal_reference?: string | null | undefined;
1979
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
1980
+ details?: {
1981
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
1982
+ creation_date?: string | null | undefined;
1983
+ creator?: string | null | undefined;
1984
+ notes?: string | null | undefined;
1985
+ title?: string | null | undefined;
1986
+ is_fragile?: boolean | null | undefined;
1987
+ is_cites?: boolean | null | undefined;
1988
+ } | null | undefined;
1989
+ weight?: string | number | null | undefined;
1990
+ depth?: string | number | null | undefined;
1991
+ images?: string[] | null | undefined;
1992
+ public_reference?: string | null | undefined;
1993
+ unit_of_measurement?: string | null | undefined;
1994
+ weight_unit?: string | null | undefined;
1995
+ }[];
1996
+ weight: number;
1997
+ depth: number;
1998
+ weight_unit: string;
1999
+ handle_with_care: boolean;
2000
+ is_sufficiently_packed: boolean;
2001
+ eta?: string | null | undefined;
2002
+ status?: "pending" | "expired" | "unknown" | "transit" | "out_for_delivery" | "delivered" | "notfound" | "undelivered" | "exception" | null | undefined;
2003
+ unit_of_measurement?: string | null | undefined;
2004
+ }, {
2005
+ id: number;
2006
+ height: number;
2007
+ width: number;
2008
+ packing_materials: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[];
2009
+ objects: {
2010
+ height: string | number;
2011
+ width: string | number;
2012
+ value: string | number;
2013
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
2014
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2015
+ internal_reference?: string | null | undefined;
2016
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
2017
+ details?: {
2018
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2019
+ creation_date?: string | null | undefined;
2020
+ creator?: string | null | undefined;
2021
+ notes?: string | null | undefined;
2022
+ title?: string | null | undefined;
2023
+ is_fragile?: boolean | null | undefined;
2024
+ is_cites?: boolean | null | undefined;
2025
+ } | null | undefined;
2026
+ weight?: string | number | null | undefined;
2027
+ depth?: string | number | null | undefined;
2028
+ images?: string[] | null | undefined;
2029
+ public_reference?: string | null | undefined;
2030
+ unit_of_measurement?: string | null | undefined;
2031
+ weight_unit?: string | null | undefined;
2032
+ }[];
2033
+ weight: number;
2034
+ depth: number;
2035
+ weight_unit: string;
2036
+ handle_with_care: boolean;
2037
+ is_sufficiently_packed: boolean;
2038
+ eta?: string | null | undefined;
2039
+ status?: "pending" | "expired" | "unknown" | "transit" | "out_for_delivery" | "delivered" | "notfound" | "undelivered" | "exception" | null | undefined;
2040
+ unit_of_measurement?: string | null | undefined;
2041
+ }>, "many">>>;
2042
+ payment_process: z.ZodOptional<z.ZodNullable<z.ZodEnum<["checkout", "checkout_direct", "invoicing"]>>>;
2043
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2044
+ quote_type: z.ZodEnum<["parcel", "premium", "select", "self_ship"]>;
2045
+ schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2046
+ delivery_end: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2047
+ delivery_start: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2048
+ delivery_window_modifier: z.ZodString;
2049
+ pickup_end: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2050
+ pickup_start: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2051
+ pickup_window_modifier: z.ZodString;
2052
+ }, "strip", z.ZodTypeAny, {
2053
+ delivery_window_modifier: string;
2054
+ pickup_window_modifier: string;
2055
+ delivery_end?: Date | null | undefined;
2056
+ delivery_start?: Date | null | undefined;
2057
+ pickup_end?: Date | null | undefined;
2058
+ pickup_start?: Date | null | undefined;
2059
+ }, {
2060
+ delivery_window_modifier: string;
2061
+ pickup_window_modifier: string;
2062
+ delivery_end?: Date | null | undefined;
2063
+ delivery_start?: Date | null | undefined;
2064
+ pickup_end?: Date | null | undefined;
2065
+ pickup_start?: Date | null | undefined;
2066
+ }>>>;
2067
+ services: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2068
+ amount: z.ZodNumber;
2069
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
2070
+ is_requested: z.ZodOptional<z.ZodBoolean>;
2071
+ is_required: z.ZodOptional<z.ZodBoolean>;
2072
+ name: z.ZodString;
2073
+ sub_subtype: z.ZodString;
2074
+ subtype: z.ZodEnum<["specialized", "consolidated", "freight", "parcel", "collection", "delivery", "location", "unpacking", "condition", "installation", "deinstallation", "debris_disposal", "site_visit", "handling", "packing", "packing_materials", "receive_release", "warehouse", "customs", "coi", "administration", "taxes_duties", "fees", "security", "equipment"]>;
2075
+ type: z.ZodEnum<["transport", "location", "handling", "packing", "storage", "administration", "taxes_duties_fees", "security", "equipment"]>;
2076
+ included_services: z.ZodArray<z.ZodAny, "many">;
2077
+ }, "strip", z.ZodTypeAny, {
2078
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
2079
+ name: string;
2080
+ amount: number;
2081
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2082
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
2083
+ sub_subtype: string;
2084
+ included_services: any[];
2085
+ is_requested?: boolean | undefined;
2086
+ is_required?: boolean | undefined;
2087
+ }, {
2088
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
2089
+ name: string;
2090
+ amount: number;
2091
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2092
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
2093
+ sub_subtype: string;
2094
+ included_services: any[];
2095
+ is_requested?: boolean | undefined;
2096
+ is_required?: boolean | undefined;
2097
+ }>, "many">>>;
2098
+ shipping_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2099
+ shortcode: z.ZodString;
2100
+ status: z.ZodEnum<["pending", "confirmed", "collected", "in_transit", "completed"]>;
2101
+ total: z.ZodNumber;
2102
+ total_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
2103
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2104
+ tracking: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2105
+ carrier_name: z.ZodString;
2106
+ label_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2107
+ package_id: z.ZodNumber;
2108
+ tracking_number: z.ZodString;
2109
+ url: z.ZodString;
2110
+ }, "strip", z.ZodTypeAny, {
2111
+ url: string;
2112
+ tracking_number: string;
2113
+ package_id: number;
2114
+ carrier_name: string;
2115
+ label_url?: string | null | undefined;
2116
+ }, {
2117
+ url: string;
2118
+ tracking_number: string;
2119
+ package_id: number;
2120
+ carrier_name: string;
2121
+ label_url?: string | null | undefined;
2122
+ }>, "many">>>;
2123
+ }, "strip", z.ZodTypeAny, {
2124
+ id: string;
2125
+ origin: {
2126
+ country: string;
2127
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2128
+ address_line_1?: string | null | undefined;
2129
+ address_line_2?: string | null | undefined;
2130
+ address_line_3?: string | null | undefined;
2131
+ city?: string | null | undefined;
2132
+ region?: string | null | undefined;
2133
+ postal_code?: string | null | undefined;
2134
+ title?: string | null | undefined;
2135
+ contacts?: {
2136
+ name: string;
2137
+ email_address?: string | null | undefined;
2138
+ phone_number?: string | null | undefined;
2139
+ }[] | null | undefined;
2140
+ estimated_country?: string | undefined;
2141
+ estimated_region?: string | undefined;
2142
+ estimated_city?: string | undefined;
2143
+ };
2144
+ total: number;
2145
+ status: "pending" | "completed" | "confirmed" | "collected" | "in_transit";
2146
+ destination: {
2147
+ country: string;
2148
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2149
+ address_line_1?: string | null | undefined;
2150
+ address_line_2?: string | null | undefined;
2151
+ address_line_3?: string | null | undefined;
2152
+ city?: string | null | undefined;
2153
+ region?: string | null | undefined;
2154
+ postal_code?: string | null | undefined;
2155
+ title?: string | null | undefined;
2156
+ contacts?: {
2157
+ name: string;
2158
+ email_address?: string | null | undefined;
2159
+ phone_number?: string | null | undefined;
2160
+ }[] | null | undefined;
2161
+ estimated_country?: string | undefined;
2162
+ estimated_region?: string | undefined;
2163
+ estimated_city?: string | undefined;
2164
+ };
2165
+ updated_at: Date;
2166
+ created_at: Date;
2167
+ shortcode: string;
2168
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
2169
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2170
+ object_count: number;
2171
+ package_count: number;
2172
+ eei_form_status?: "pending" | "rejected" | "cleared" | "approved" | "submitted" | null | undefined;
2173
+ emissions?: number | null | undefined;
2174
+ emissions_unit?: string | null | undefined;
2175
+ exceptions?: {
2176
+ type: "other" | "change_of_address_request" | "customs_information_required" | "damaged_items" | "direct_payment_required" | "held_at_customs" | "inaccurate_object_details" | "incorrect_address" | "lost_in_transit" | "not_ready_for_delivery" | "not_ready_for_release" | "prepayment_required" | "requested_hold_to_collect" | "requested_hold_to_deliver" | "wrong_item";
2177
+ id: string;
2178
+ status: "new" | "in_progress" | "resolved";
2179
+ updated_at: Date;
2180
+ created_at: Date;
2181
+ exception_type_label?: string | null | undefined;
2182
+ package_id?: number | null | undefined;
2183
+ resolution?: string | null | undefined;
2184
+ }[] | null | undefined;
2185
+ hosted_session_id?: number | null | undefined;
2186
+ insurance_policy?: {
2187
+ id: string;
2188
+ amount: number;
2189
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2190
+ insured_value: number;
2191
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2192
+ } | null | undefined;
2193
+ internal_reference?: string | null | undefined;
2194
+ log_request_id?: string | null | undefined;
2195
+ packages?: {
2196
+ id: number;
2197
+ height: number;
2198
+ width: number;
2199
+ packing_materials: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[];
2200
+ objects: {
2201
+ height: string | number;
2202
+ width: string | number;
2203
+ value: string | number;
2204
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
2205
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2206
+ internal_reference?: string | null | undefined;
2207
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
2208
+ details?: {
2209
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2210
+ creation_date?: string | null | undefined;
2211
+ creator?: string | null | undefined;
2212
+ notes?: string | null | undefined;
2213
+ title?: string | null | undefined;
2214
+ is_fragile?: boolean | null | undefined;
2215
+ is_cites?: boolean | null | undefined;
2216
+ } | null | undefined;
2217
+ weight?: string | number | null | undefined;
2218
+ depth?: string | number | null | undefined;
2219
+ images?: string[] | null | undefined;
2220
+ public_reference?: string | null | undefined;
2221
+ unit_of_measurement?: string | null | undefined;
2222
+ weight_unit?: string | null | undefined;
2223
+ }[];
2224
+ weight: number;
2225
+ depth: number;
2226
+ weight_unit: string;
2227
+ handle_with_care: boolean;
2228
+ is_sufficiently_packed: boolean;
2229
+ eta?: string | null | undefined;
2230
+ status?: "pending" | "expired" | "unknown" | "transit" | "out_for_delivery" | "delivered" | "notfound" | "undelivered" | "exception" | null | undefined;
2231
+ unit_of_measurement?: string | null | undefined;
2232
+ }[] | null | undefined;
2233
+ payment_process?: "checkout" | "checkout_direct" | "invoicing" | null | undefined;
2234
+ public_reference?: string | null | undefined;
2235
+ schedule?: {
2236
+ delivery_window_modifier: string;
2237
+ pickup_window_modifier: string;
2238
+ delivery_end?: Date | null | undefined;
2239
+ delivery_start?: Date | null | undefined;
2240
+ pickup_end?: Date | null | undefined;
2241
+ pickup_start?: Date | null | undefined;
2242
+ } | null | undefined;
2243
+ services?: {
2244
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
2245
+ name: string;
2246
+ amount: number;
2247
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2248
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
2249
+ sub_subtype: string;
2250
+ included_services: any[];
2251
+ is_requested?: boolean | undefined;
2252
+ is_required?: boolean | undefined;
2253
+ }[] | null | undefined;
2254
+ shipping_notes?: string | null | undefined;
2255
+ url?: string | null | undefined;
2256
+ tracking?: {
2257
+ url: string;
2258
+ tracking_number: string;
2259
+ package_id: number;
2260
+ carrier_name: string;
2261
+ label_url?: string | null | undefined;
2262
+ }[] | null | undefined;
2263
+ }, {
2264
+ id: string;
2265
+ origin: {
2266
+ country: string;
2267
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2268
+ address_line_1?: string | null | undefined;
2269
+ address_line_2?: string | null | undefined;
2270
+ address_line_3?: string | null | undefined;
2271
+ city?: string | null | undefined;
2272
+ region?: string | null | undefined;
2273
+ postal_code?: string | null | undefined;
2274
+ title?: string | null | undefined;
2275
+ contacts?: {
2276
+ name: string;
2277
+ email_address?: string | null | undefined;
2278
+ phone_number?: string | null | undefined;
2279
+ }[] | null | undefined;
2280
+ estimated_country?: string | undefined;
2281
+ estimated_region?: string | undefined;
2282
+ estimated_city?: string | undefined;
2283
+ };
2284
+ total: number;
2285
+ status: "pending" | "completed" | "confirmed" | "collected" | "in_transit";
2286
+ destination: {
2287
+ country: string;
2288
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2289
+ address_line_1?: string | null | undefined;
2290
+ address_line_2?: string | null | undefined;
2291
+ address_line_3?: string | null | undefined;
2292
+ city?: string | null | undefined;
2293
+ region?: string | null | undefined;
2294
+ postal_code?: string | null | undefined;
2295
+ title?: string | null | undefined;
2296
+ contacts?: {
2297
+ name: string;
2298
+ email_address?: string | null | undefined;
2299
+ phone_number?: string | null | undefined;
2300
+ }[] | null | undefined;
2301
+ estimated_country?: string | undefined;
2302
+ estimated_region?: string | undefined;
2303
+ estimated_city?: string | undefined;
2304
+ };
2305
+ updated_at: Date;
2306
+ created_at: Date;
2307
+ shortcode: string;
2308
+ quote_type: "select" | "parcel" | "premium" | "self_ship";
2309
+ total_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2310
+ object_count: number;
2311
+ package_count: number;
2312
+ eei_form_status?: "pending" | "rejected" | "cleared" | "approved" | "submitted" | null | undefined;
2313
+ emissions?: number | null | undefined;
2314
+ emissions_unit?: string | null | undefined;
2315
+ exceptions?: {
2316
+ type: "other" | "change_of_address_request" | "customs_information_required" | "damaged_items" | "direct_payment_required" | "held_at_customs" | "inaccurate_object_details" | "incorrect_address" | "lost_in_transit" | "not_ready_for_delivery" | "not_ready_for_release" | "prepayment_required" | "requested_hold_to_collect" | "requested_hold_to_deliver" | "wrong_item";
2317
+ id: string;
2318
+ status: "new" | "in_progress" | "resolved";
2319
+ updated_at: Date;
2320
+ created_at: Date;
2321
+ exception_type_label?: string | null | undefined;
2322
+ package_id?: number | null | undefined;
2323
+ resolution?: string | null | undefined;
2324
+ }[] | null | undefined;
2325
+ hosted_session_id?: number | null | undefined;
2326
+ insurance_policy?: {
2327
+ id: string;
2328
+ amount: number;
2329
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2330
+ insured_value: number;
2331
+ insured_value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2332
+ } | null | undefined;
2333
+ internal_reference?: string | null | undefined;
2334
+ log_request_id?: string | null | undefined;
2335
+ packages?: {
2336
+ id: number;
2337
+ height: number;
2338
+ width: number;
2339
+ packing_materials: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[];
2340
+ objects: {
2341
+ height: string | number;
2342
+ width: string | number;
2343
+ value: string | number;
2344
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
2345
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2346
+ internal_reference?: string | null | undefined;
2347
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
2348
+ details?: {
2349
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2350
+ creation_date?: string | null | undefined;
2351
+ creator?: string | null | undefined;
2352
+ notes?: string | null | undefined;
2353
+ title?: string | null | undefined;
2354
+ is_fragile?: boolean | null | undefined;
2355
+ is_cites?: boolean | null | undefined;
2356
+ } | null | undefined;
2357
+ weight?: string | number | null | undefined;
2358
+ depth?: string | number | null | undefined;
2359
+ images?: string[] | null | undefined;
2360
+ public_reference?: string | null | undefined;
2361
+ unit_of_measurement?: string | null | undefined;
2362
+ weight_unit?: string | null | undefined;
2363
+ }[];
2364
+ weight: number;
2365
+ depth: number;
2366
+ weight_unit: string;
2367
+ handle_with_care: boolean;
2368
+ is_sufficiently_packed: boolean;
2369
+ eta?: string | null | undefined;
2370
+ status?: "pending" | "expired" | "unknown" | "transit" | "out_for_delivery" | "delivered" | "notfound" | "undelivered" | "exception" | null | undefined;
2371
+ unit_of_measurement?: string | null | undefined;
2372
+ }[] | null | undefined;
2373
+ payment_process?: "checkout" | "checkout_direct" | "invoicing" | null | undefined;
2374
+ public_reference?: string | null | undefined;
2375
+ schedule?: {
2376
+ delivery_window_modifier: string;
2377
+ pickup_window_modifier: string;
2378
+ delivery_end?: Date | null | undefined;
2379
+ delivery_start?: Date | null | undefined;
2380
+ pickup_end?: Date | null | undefined;
2381
+ pickup_start?: Date | null | undefined;
2382
+ } | null | undefined;
2383
+ services?: {
2384
+ type: "location" | "transport" | "storage" | "handling" | "packing" | "administration" | "security" | "equipment" | "taxes_duties_fees";
2385
+ name: string;
2386
+ amount: number;
2387
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2388
+ subtype: "location" | "parcel" | "debris_disposal" | "deinstallation" | "installation" | "specialized" | "consolidated" | "freight" | "collection" | "delivery" | "unpacking" | "condition" | "site_visit" | "handling" | "packing" | "packing_materials" | "receive_release" | "warehouse" | "customs" | "coi" | "administration" | "taxes_duties" | "fees" | "security" | "equipment";
2389
+ sub_subtype: string;
2390
+ included_services: any[];
2391
+ is_requested?: boolean | undefined;
2392
+ is_required?: boolean | undefined;
2393
+ }[] | null | undefined;
2394
+ shipping_notes?: string | null | undefined;
2395
+ url?: string | null | undefined;
2396
+ tracking?: {
2397
+ url: string;
2398
+ tracking_number: string;
2399
+ package_id: number;
2400
+ carrier_name: string;
2401
+ label_url?: string | null | undefined;
2402
+ }[] | null | undefined;
2403
+ }>;
2404
+ export declare const attatchmentSchema: z.ZodObject<{
2405
+ updated_at: z.ZodDate;
2406
+ created_at: z.ZodDate;
2407
+ id: z.ZodNumber;
2408
+ upload_id: z.ZodNumber;
2409
+ request_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2410
+ shipment_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2411
+ }, "strip", z.ZodTypeAny, {
2412
+ id: number;
2413
+ updated_at: Date;
2414
+ created_at: Date;
2415
+ upload_id: number;
2416
+ request_id?: string | null | undefined;
2417
+ shipment_id?: string | null | undefined;
2418
+ }, {
2419
+ id: number;
2420
+ updated_at: Date;
2421
+ created_at: Date;
2422
+ upload_id: number;
2423
+ request_id?: string | null | undefined;
2424
+ shipment_id?: string | null | undefined;
2425
+ }>;
2426
+ export declare const emailNotificationIdSchema: z.ZodEnum<["booking", "cancelled", "collected", "collection", "complete", "custom_quoted_dashboard", "in_transit", "invoice", "self_ship_label", "payment", "scheduling", "eei"]>;
2427
+ export declare const recipientSchema: z.ZodEnum<["payer", "origin", "destination"]>;
2428
+ export declare const emailRuleSchema: z.ZodObject<{
2429
+ updated_at: z.ZodDate;
2430
+ created_at: z.ZodDate;
2431
+ id: z.ZodNumber;
2432
+ email_notification_id: z.ZodEnum<["booking", "cancelled", "collected", "collection", "complete", "custom_quoted_dashboard", "in_transit", "invoice", "self_ship_label", "payment", "scheduling", "eei"]>;
2433
+ recipients: z.ZodArray<z.ZodEnum<["payer", "origin", "destination"]>, "many">;
2434
+ }, "strip", z.ZodTypeAny, {
2435
+ id: number;
2436
+ updated_at: Date;
2437
+ created_at: Date;
2438
+ email_notification_id: "complete" | "cancelled" | "collection" | "collected" | "in_transit" | "booking" | "custom_quoted_dashboard" | "invoice" | "self_ship_label" | "payment" | "scheduling" | "eei";
2439
+ recipients: ("origin" | "payer" | "destination")[];
2440
+ }, {
2441
+ id: number;
2442
+ updated_at: Date;
2443
+ created_at: Date;
2444
+ email_notification_id: "complete" | "cancelled" | "collection" | "collected" | "in_transit" | "booking" | "custom_quoted_dashboard" | "invoice" | "self_ship_label" | "payment" | "scheduling" | "eei";
2445
+ recipients: ("origin" | "payer" | "destination")[];
2446
+ }>;
2447
+ export declare const emailSubscriptionSchema: z.ZodObject<{
2448
+ updated_at: z.ZodDate;
2449
+ created_at: z.ZodDate;
2450
+ id: z.ZodNumber;
2451
+ email_notification_ids: z.ZodArray<z.ZodEnum<["booking", "cancelled", "collected", "collection", "complete", "custom_quoted_dashboard", "in_transit", "invoice", "self_ship_label", "payment", "scheduling", "eei"]>, "many">;
2452
+ email_address: z.ZodString;
2453
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2454
+ }, "strip", z.ZodTypeAny, {
2455
+ id: number;
2456
+ updated_at: Date;
2457
+ created_at: Date;
2458
+ email_notification_ids: ("complete" | "cancelled" | "collection" | "collected" | "in_transit" | "booking" | "custom_quoted_dashboard" | "invoice" | "self_ship_label" | "payment" | "scheduling" | "eei")[];
2459
+ email_address: string;
2460
+ name?: string | null | undefined;
2461
+ }, {
2462
+ id: number;
2463
+ updated_at: Date;
2464
+ created_at: Date;
2465
+ email_notification_ids: ("complete" | "cancelled" | "collection" | "collected" | "in_transit" | "booking" | "custom_quoted_dashboard" | "invoice" | "self_ship_label" | "payment" | "scheduling" | "eei")[];
2466
+ email_address: string;
2467
+ name?: string | null | undefined;
2468
+ }>;
2469
+ export declare const hostedSessionSchema: z.ZodObject<{
2470
+ updated_at: z.ZodDate;
2471
+ created_at: z.ZodDate;
2472
+ id: z.ZodNumber;
2473
+ additional_services: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["assembly", "debris_disposal", "deinstallation", "destination_additional_labor", "destination_building_coi", "destination_condition_check", "destination_full_condition_report", "destination_unpacking", "double_blind_bols", "installation", "origin_building_coi", "origin_condition_check", "origin_full_condition_report", "placement", "signature_delivery", "tarmac_supervision"]>, "many">>>;
2474
+ cancel_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2475
+ destination: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2476
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
2477
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2478
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2479
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2480
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2481
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2482
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2483
+ country: z.ZodString;
2484
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2485
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2486
+ name: z.ZodString;
2487
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2488
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2489
+ }, "strip", z.ZodTypeAny, {
2490
+ name: string;
2491
+ email_address?: string | null | undefined;
2492
+ phone_number?: string | null | undefined;
2493
+ }, {
2494
+ name: string;
2495
+ email_address?: string | null | undefined;
2496
+ phone_number?: string | null | undefined;
2497
+ }>, "many">>>;
2498
+ estimated_country: z.ZodOptional<z.ZodString>;
2499
+ estimated_region: z.ZodOptional<z.ZodString>;
2500
+ estimated_city: z.ZodOptional<z.ZodString>;
2501
+ }, "strip", z.ZodTypeAny, {
2502
+ country: string;
2503
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2504
+ address_line_1?: string | null | undefined;
2505
+ address_line_2?: string | null | undefined;
2506
+ address_line_3?: string | null | undefined;
2507
+ city?: string | null | undefined;
2508
+ region?: string | null | undefined;
2509
+ postal_code?: string | null | undefined;
2510
+ title?: string | null | undefined;
2511
+ contacts?: {
2512
+ name: string;
2513
+ email_address?: string | null | undefined;
2514
+ phone_number?: string | null | undefined;
2515
+ }[] | null | undefined;
2516
+ estimated_country?: string | undefined;
2517
+ estimated_region?: string | undefined;
2518
+ estimated_city?: string | undefined;
2519
+ }, {
2520
+ country: string;
2521
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2522
+ address_line_1?: string | null | undefined;
2523
+ address_line_2?: string | null | undefined;
2524
+ address_line_3?: string | null | undefined;
2525
+ city?: string | null | undefined;
2526
+ region?: string | null | undefined;
2527
+ postal_code?: string | null | undefined;
2528
+ title?: string | null | undefined;
2529
+ contacts?: {
2530
+ name: string;
2531
+ email_address?: string | null | undefined;
2532
+ phone_number?: string | null | undefined;
2533
+ }[] | null | undefined;
2534
+ estimated_country?: string | undefined;
2535
+ estimated_region?: string | undefined;
2536
+ estimated_city?: string | undefined;
2537
+ }>>>;
2538
+ insurance: z.ZodOptional<z.ZodNullable<z.ZodEnum<["arta_transit_insurance", "no_arta_insurance"]>>>;
2539
+ internal_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2540
+ objects: z.ZodArray<z.ZodObject<{
2541
+ internal_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2542
+ current_packing: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["alcohol_case", "lay_flat_wine_box", "blanket", "wardrobe_box", "cardboard_box", "chandelier_box", "chair_box", "cbin_closed", "cbin_open", "ply_box", "fine_art_econo_crate", "fine_art_international_crate", "econo_crate", "international_econo_crate", "furniture_crate", "international_furniture_crate", "parcel_crate", "museum_crate", "international_museum_crate", "foam_lined_box", "cavity_box", "strongbox", "double_box", "travel_frame", "travel_frame_art", "travel_frame_other", "a_frame", "slat_crate", "tri_wall_crate", "lockbox", "no_packing", "pallet", "international_pallet", "portfolio", "rug_rolled", "shadow_box", "slipcase", "slipcase_glass_tape", "poly_cardboard", "bubble_cardboard", "garment_bag", "poly_only", "dartek_only", "bubble_only", "cling_wrap", "cbin_communal", "sonotube", "stabilizing_box", "shipping_tube_small", "shipping_tube_large"]>, "many">>>;
2543
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2544
+ materials: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["stone_marble", "precious_stones", "fiber_synthetic", "fabric_natural", "taxidermy", "carbon_fiber", "live_animal", "paper", "glass", "presious_metals", "particleboard", "styrofoam", "wood", "photo_film", "sand", "metal", "plexiglass", "aquatic_life", "canvas", "drywall", "hard_plastic", "vinyl", "soft_plastic", "leather", "rubber", "concreate", "paint", "electronics", "fiber_natural", "gas", "fabric_synthetic", "CITES", "liquids", "salts"]>, "many">>>;
2545
+ creation_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2546
+ creator: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2547
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2548
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2549
+ is_fragile: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2550
+ is_cites: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2551
+ }, "strip", z.ZodTypeAny, {
2552
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2553
+ creation_date?: string | null | undefined;
2554
+ creator?: string | null | undefined;
2555
+ notes?: string | null | undefined;
2556
+ title?: string | null | undefined;
2557
+ is_fragile?: boolean | null | undefined;
2558
+ is_cites?: boolean | null | undefined;
2559
+ }, {
2560
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2561
+ creation_date?: string | null | undefined;
2562
+ creator?: string | null | undefined;
2563
+ notes?: string | null | undefined;
2564
+ title?: string | null | undefined;
2565
+ is_fragile?: boolean | null | undefined;
2566
+ is_cites?: boolean | null | undefined;
2567
+ }>>>;
2568
+ height: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2569
+ width: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2570
+ weight: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
2571
+ value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2572
+ depth: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
2573
+ images: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
2574
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2575
+ subtype: z.ZodEnum<["painting_unframed", "painting_framed", "painting_framed_plexi", "painting_framed_glass", "work_on_paper_unframed", "work_on_paper_framed", "work_on_paper_framed_plexi", "work_on_paper_framed_glass", "mixed_media_unframed", "mixed_media_framed", "mixed_media_framed_plexi", "mixed_media_framed_glass", "photograph_unframed", "photograph_framed", "photograph_framed_plexi", "photograph_framed_glass", "new_media", "sculpture", "pedestal", "pedestal_case_glass", "pedestal_case_plexi", "ceramic", "neon", "tapestry", "other_art", "table", "chair", "sofa_loveseat_chaise", "floor_lamp", "floor_lamp_shade", "table_lamp", "table_lamp_shade", "sconce", "ottoman", "bookcase_storage", "nightstand", "armoire_dresser", "carpet_rug", "mirror", "chandelier", "bedframe", "headboard", "desk_vanity", "media_console", "other_furniture", "earrings", "necklace", "bracelet", "ring", "brooch", "watch", "cufflinks", "eyeglasses", "set", "precious_stones", "snuff_box_cigarette_case", "other_jewelry", "vase_vessel", "bowl", "plaque", "object_of_vertu", "candelabra_candlestick", "dinnerware", "flatware", "glassware", "serveware", "porcelain_plate", "porcelain_bowl", "tabletop_accessory", "clock", "other_decorative_arts", "stamp", "book", "coin", "document_manuscript", "toy", "miniature_model", "figurine_doll", "neon_sign", "memorabilia", "camera_electrical", "other_collectibles", "wine_bottle", "spirits_bottle", "beer_bottle", "wine_case", "spirits_case", "beer_case", "wine_barrel", "spirits_barrel", "beer_barrel", "other_alcohols", "car", "motorcycle", "bus", "van", "limousine", "carriage", "trailer", "sidecar", "other_automotive", "clothing", "footwear", "handbag", "accessories", "other_fashion", "musical_instrument", "firearm_weapon", "hunting_fishing", "medical_equipment", "other"]>;
2576
+ unit_of_measurement: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2577
+ weight_unit: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2578
+ value_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
2579
+ }, "strip", z.ZodTypeAny, {
2580
+ height: string | number;
2581
+ width: string | number;
2582
+ value: string | number;
2583
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
2584
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2585
+ internal_reference?: string | null | undefined;
2586
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
2587
+ details?: {
2588
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2589
+ creation_date?: string | null | undefined;
2590
+ creator?: string | null | undefined;
2591
+ notes?: string | null | undefined;
2592
+ title?: string | null | undefined;
2593
+ is_fragile?: boolean | null | undefined;
2594
+ is_cites?: boolean | null | undefined;
2595
+ } | null | undefined;
2596
+ weight?: string | number | null | undefined;
2597
+ depth?: string | number | null | undefined;
2598
+ images?: string[] | null | undefined;
2599
+ public_reference?: string | null | undefined;
2600
+ unit_of_measurement?: string | null | undefined;
2601
+ weight_unit?: string | null | undefined;
2602
+ }, {
2603
+ height: string | number;
2604
+ width: string | number;
2605
+ value: string | number;
2606
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
2607
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2608
+ internal_reference?: string | null | undefined;
2609
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
2610
+ details?: {
2611
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2612
+ creation_date?: string | null | undefined;
2613
+ creator?: string | null | undefined;
2614
+ notes?: string | null | undefined;
2615
+ title?: string | null | undefined;
2616
+ is_fragile?: boolean | null | undefined;
2617
+ is_cites?: boolean | null | undefined;
2618
+ } | null | undefined;
2619
+ weight?: string | number | null | undefined;
2620
+ depth?: string | number | null | undefined;
2621
+ images?: string[] | null | undefined;
2622
+ public_reference?: string | null | undefined;
2623
+ unit_of_measurement?: string | null | undefined;
2624
+ weight_unit?: string | null | undefined;
2625
+ }>, "many">;
2626
+ origin: z.ZodObject<{
2627
+ access_restrictions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["elevator_only", "freight_elevator", "loading_dock", "loading_dock_low", "low_clearance", "non_paved", "stairs_only", "steep_gradient"]>, "many">>>;
2628
+ address_line_1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2629
+ address_line_2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2630
+ address_line_3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2631
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2632
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2633
+ postal_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2634
+ country: z.ZodString;
2635
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2636
+ contacts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2637
+ name: z.ZodString;
2638
+ email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2639
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2640
+ }, "strip", z.ZodTypeAny, {
2641
+ name: string;
2642
+ email_address?: string | null | undefined;
2643
+ phone_number?: string | null | undefined;
2644
+ }, {
2645
+ name: string;
2646
+ email_address?: string | null | undefined;
2647
+ phone_number?: string | null | undefined;
2648
+ }>, "many">>>;
2649
+ estimated_country: z.ZodOptional<z.ZodString>;
2650
+ estimated_region: z.ZodOptional<z.ZodString>;
2651
+ estimated_city: z.ZodOptional<z.ZodString>;
2652
+ }, "strip", z.ZodTypeAny, {
2653
+ country: string;
2654
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2655
+ address_line_1?: string | null | undefined;
2656
+ address_line_2?: string | null | undefined;
2657
+ address_line_3?: string | null | undefined;
2658
+ city?: string | null | undefined;
2659
+ region?: string | null | undefined;
2660
+ postal_code?: string | null | undefined;
2661
+ title?: string | null | undefined;
2662
+ contacts?: {
2663
+ name: string;
2664
+ email_address?: string | null | undefined;
2665
+ phone_number?: string | null | undefined;
2666
+ }[] | null | undefined;
2667
+ estimated_country?: string | undefined;
2668
+ estimated_region?: string | undefined;
2669
+ estimated_city?: string | undefined;
2670
+ }, {
2671
+ country: string;
2672
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2673
+ address_line_1?: string | null | undefined;
2674
+ address_line_2?: string | null | undefined;
2675
+ address_line_3?: string | null | undefined;
2676
+ city?: string | null | undefined;
2677
+ region?: string | null | undefined;
2678
+ postal_code?: string | null | undefined;
2679
+ title?: string | null | undefined;
2680
+ contacts?: {
2681
+ name: string;
2682
+ email_address?: string | null | undefined;
2683
+ phone_number?: string | null | undefined;
2684
+ }[] | null | undefined;
2685
+ estimated_country?: string | undefined;
2686
+ estimated_region?: string | undefined;
2687
+ estimated_city?: string | undefined;
2688
+ }>;
2689
+ preferred_quote_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["parcel", "premium", "select", "self_ship"]>, "many">>>;
2690
+ public_reference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2691
+ shipping_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2692
+ success_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2693
+ payment_process: z.ZodEnum<["checkout", "checkout_direct", "invoicing"]>;
2694
+ private_token: z.ZodString;
2695
+ shortcode: z.ZodString;
2696
+ status: z.ZodEnum<["cancelled", "closed", "disqualified", "expired", "in_progress", "pending", "quoted"]>;
2697
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2698
+ }, "strip", z.ZodTypeAny, {
2699
+ id: number;
2700
+ origin: {
2701
+ country: string;
2702
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2703
+ address_line_1?: string | null | undefined;
2704
+ address_line_2?: string | null | undefined;
2705
+ address_line_3?: string | null | undefined;
2706
+ city?: string | null | undefined;
2707
+ region?: string | null | undefined;
2708
+ postal_code?: string | null | undefined;
2709
+ title?: string | null | undefined;
2710
+ contacts?: {
2711
+ name: string;
2712
+ email_address?: string | null | undefined;
2713
+ phone_number?: string | null | undefined;
2714
+ }[] | null | undefined;
2715
+ estimated_country?: string | undefined;
2716
+ estimated_region?: string | undefined;
2717
+ estimated_city?: string | undefined;
2718
+ };
2719
+ status: "closed" | "pending" | "expired" | "cancelled" | "disqualified" | "in_progress" | "quoted";
2720
+ updated_at: Date;
2721
+ created_at: Date;
2722
+ objects: {
2723
+ height: string | number;
2724
+ width: string | number;
2725
+ value: string | number;
2726
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
2727
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2728
+ internal_reference?: string | null | undefined;
2729
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
2730
+ details?: {
2731
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2732
+ creation_date?: string | null | undefined;
2733
+ creator?: string | null | undefined;
2734
+ notes?: string | null | undefined;
2735
+ title?: string | null | undefined;
2736
+ is_fragile?: boolean | null | undefined;
2737
+ is_cites?: boolean | null | undefined;
2738
+ } | null | undefined;
2739
+ weight?: string | number | null | undefined;
2740
+ depth?: string | number | null | undefined;
2741
+ images?: string[] | null | undefined;
2742
+ public_reference?: string | null | undefined;
2743
+ unit_of_measurement?: string | null | undefined;
2744
+ weight_unit?: string | null | undefined;
2745
+ }[];
2746
+ payment_process: "checkout" | "checkout_direct" | "invoicing";
2747
+ private_token: string;
2748
+ shortcode: string;
2749
+ additional_services?: ("assembly" | "debris_disposal" | "deinstallation" | "destination_additional_labor" | "destination_building_coi" | "destination_condition_check" | "destination_full_condition_report" | "destination_unpacking" | "double_blind_bols" | "installation" | "origin_building_coi" | "origin_condition_check" | "origin_full_condition_report" | "placement" | "signature_delivery" | "tarmac_supervision")[] | null | undefined;
2750
+ cancel_url?: string | null | undefined;
2751
+ destination?: {
2752
+ country: string;
2753
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2754
+ address_line_1?: string | null | undefined;
2755
+ address_line_2?: string | null | undefined;
2756
+ address_line_3?: string | null | undefined;
2757
+ city?: string | null | undefined;
2758
+ region?: string | null | undefined;
2759
+ postal_code?: string | null | undefined;
2760
+ title?: string | null | undefined;
2761
+ contacts?: {
2762
+ name: string;
2763
+ email_address?: string | null | undefined;
2764
+ phone_number?: string | null | undefined;
2765
+ }[] | null | undefined;
2766
+ estimated_country?: string | undefined;
2767
+ estimated_region?: string | undefined;
2768
+ estimated_city?: string | undefined;
2769
+ } | null | undefined;
2770
+ insurance?: "arta_transit_insurance" | "no_arta_insurance" | null | undefined;
2771
+ internal_reference?: string | null | undefined;
2772
+ preferred_quote_types?: ("select" | "parcel" | "premium" | "self_ship")[] | null | undefined;
2773
+ public_reference?: string | null | undefined;
2774
+ shipping_notes?: string | null | undefined;
2775
+ success_url?: string | null | undefined;
2776
+ url?: string | null | undefined;
2777
+ }, {
2778
+ id: number;
2779
+ origin: {
2780
+ country: string;
2781
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2782
+ address_line_1?: string | null | undefined;
2783
+ address_line_2?: string | null | undefined;
2784
+ address_line_3?: string | null | undefined;
2785
+ city?: string | null | undefined;
2786
+ region?: string | null | undefined;
2787
+ postal_code?: string | null | undefined;
2788
+ title?: string | null | undefined;
2789
+ contacts?: {
2790
+ name: string;
2791
+ email_address?: string | null | undefined;
2792
+ phone_number?: string | null | undefined;
2793
+ }[] | null | undefined;
2794
+ estimated_country?: string | undefined;
2795
+ estimated_region?: string | undefined;
2796
+ estimated_city?: string | undefined;
2797
+ };
2798
+ status: "closed" | "pending" | "expired" | "cancelled" | "disqualified" | "in_progress" | "quoted";
2799
+ updated_at: Date;
2800
+ created_at: Date;
2801
+ objects: {
2802
+ height: string | number;
2803
+ width: string | number;
2804
+ value: string | number;
2805
+ subtype: "set" | "table" | "other" | "precious_stones" | "painting_unframed" | "painting_framed" | "painting_framed_plexi" | "painting_framed_glass" | "work_on_paper_unframed" | "work_on_paper_framed" | "work_on_paper_framed_plexi" | "work_on_paper_framed_glass" | "mixed_media_unframed" | "mixed_media_framed" | "mixed_media_framed_plexi" | "mixed_media_framed_glass" | "photograph_unframed" | "photograph_framed" | "photograph_framed_plexi" | "photograph_framed_glass" | "new_media" | "sculpture" | "pedestal" | "pedestal_case_glass" | "pedestal_case_plexi" | "ceramic" | "neon" | "tapestry" | "other_art" | "chair" | "sofa_loveseat_chaise" | "floor_lamp" | "floor_lamp_shade" | "table_lamp" | "table_lamp_shade" | "sconce" | "ottoman" | "bookcase_storage" | "nightstand" | "armoire_dresser" | "carpet_rug" | "mirror" | "chandelier" | "bedframe" | "headboard" | "desk_vanity" | "media_console" | "other_furniture" | "earrings" | "necklace" | "bracelet" | "ring" | "brooch" | "watch" | "cufflinks" | "eyeglasses" | "snuff_box_cigarette_case" | "other_jewelry" | "vase_vessel" | "bowl" | "plaque" | "object_of_vertu" | "candelabra_candlestick" | "dinnerware" | "flatware" | "glassware" | "serveware" | "porcelain_plate" | "porcelain_bowl" | "tabletop_accessory" | "clock" | "other_decorative_arts" | "stamp" | "book" | "coin" | "document_manuscript" | "toy" | "miniature_model" | "figurine_doll" | "neon_sign" | "memorabilia" | "camera_electrical" | "other_collectibles" | "wine_bottle" | "spirits_bottle" | "beer_bottle" | "wine_case" | "spirits_case" | "beer_case" | "wine_barrel" | "spirits_barrel" | "beer_barrel" | "other_alcohols" | "car" | "motorcycle" | "bus" | "van" | "limousine" | "carriage" | "trailer" | "sidecar" | "other_automotive" | "clothing" | "footwear" | "handbag" | "accessories" | "other_fashion" | "musical_instrument" | "firearm_weapon" | "hunting_fishing" | "medical_equipment";
2806
+ value_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2807
+ internal_reference?: string | null | undefined;
2808
+ current_packing?: ("alcohol_case" | "lay_flat_wine_box" | "blanket" | "wardrobe_box" | "cardboard_box" | "chandelier_box" | "chair_box" | "cbin_closed" | "cbin_open" | "ply_box" | "fine_art_econo_crate" | "fine_art_international_crate" | "econo_crate" | "international_econo_crate" | "furniture_crate" | "international_furniture_crate" | "parcel_crate" | "museum_crate" | "international_museum_crate" | "foam_lined_box" | "cavity_box" | "strongbox" | "double_box" | "travel_frame" | "travel_frame_art" | "travel_frame_other" | "a_frame" | "slat_crate" | "tri_wall_crate" | "lockbox" | "no_packing" | "pallet" | "international_pallet" | "portfolio" | "rug_rolled" | "shadow_box" | "slipcase" | "slipcase_glass_tape" | "poly_cardboard" | "bubble_cardboard" | "garment_bag" | "poly_only" | "dartek_only" | "bubble_only" | "cling_wrap" | "cbin_communal" | "sonotube" | "stabilizing_box" | "shipping_tube_small" | "shipping_tube_large")[] | null | undefined;
2809
+ details?: {
2810
+ materials?: ("canvas" | "stone_marble" | "precious_stones" | "fiber_synthetic" | "fabric_natural" | "taxidermy" | "carbon_fiber" | "live_animal" | "paper" | "glass" | "presious_metals" | "particleboard" | "styrofoam" | "wood" | "photo_film" | "sand" | "metal" | "plexiglass" | "aquatic_life" | "drywall" | "hard_plastic" | "vinyl" | "soft_plastic" | "leather" | "rubber" | "concreate" | "paint" | "electronics" | "fiber_natural" | "gas" | "fabric_synthetic" | "CITES" | "liquids" | "salts")[] | null | undefined;
2811
+ creation_date?: string | null | undefined;
2812
+ creator?: string | null | undefined;
2813
+ notes?: string | null | undefined;
2814
+ title?: string | null | undefined;
2815
+ is_fragile?: boolean | null | undefined;
2816
+ is_cites?: boolean | null | undefined;
2817
+ } | null | undefined;
2818
+ weight?: string | number | null | undefined;
2819
+ depth?: string | number | null | undefined;
2820
+ images?: string[] | null | undefined;
2821
+ public_reference?: string | null | undefined;
2822
+ unit_of_measurement?: string | null | undefined;
2823
+ weight_unit?: string | null | undefined;
2824
+ }[];
2825
+ payment_process: "checkout" | "checkout_direct" | "invoicing";
2826
+ private_token: string;
2827
+ shortcode: string;
2828
+ additional_services?: ("assembly" | "debris_disposal" | "deinstallation" | "destination_additional_labor" | "destination_building_coi" | "destination_condition_check" | "destination_full_condition_report" | "destination_unpacking" | "double_blind_bols" | "installation" | "origin_building_coi" | "origin_condition_check" | "origin_full_condition_report" | "placement" | "signature_delivery" | "tarmac_supervision")[] | null | undefined;
2829
+ cancel_url?: string | null | undefined;
2830
+ destination?: {
2831
+ country: string;
2832
+ access_restrictions?: ("elevator_only" | "freight_elevator" | "loading_dock" | "loading_dock_low" | "low_clearance" | "non_paved" | "stairs_only" | "steep_gradient")[] | null | undefined;
2833
+ address_line_1?: string | null | undefined;
2834
+ address_line_2?: string | null | undefined;
2835
+ address_line_3?: string | null | undefined;
2836
+ city?: string | null | undefined;
2837
+ region?: string | null | undefined;
2838
+ postal_code?: string | null | undefined;
2839
+ title?: string | null | undefined;
2840
+ contacts?: {
2841
+ name: string;
2842
+ email_address?: string | null | undefined;
2843
+ phone_number?: string | null | undefined;
2844
+ }[] | null | undefined;
2845
+ estimated_country?: string | undefined;
2846
+ estimated_region?: string | undefined;
2847
+ estimated_city?: string | undefined;
2848
+ } | null | undefined;
2849
+ insurance?: "arta_transit_insurance" | "no_arta_insurance" | null | undefined;
2850
+ internal_reference?: string | null | undefined;
2851
+ preferred_quote_types?: ("select" | "parcel" | "premium" | "self_ship")[] | null | undefined;
2852
+ public_reference?: string | null | undefined;
2853
+ shipping_notes?: string | null | undefined;
2854
+ success_url?: string | null | undefined;
2855
+ url?: string | null | undefined;
2856
+ }>;
2857
+ export declare const invoicePaymentSchema: z.ZodObject<{
2858
+ updated_at: z.ZodDate;
2859
+ created_at: z.ZodDate;
2860
+ id: z.ZodNumber;
2861
+ amount: z.ZodNumber;
2862
+ amount_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
2863
+ credit_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2864
+ invoice_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2865
+ paid_on: z.ZodDate;
2866
+ payment_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2867
+ shipment_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2868
+ }, "strip", z.ZodTypeAny, {
2869
+ id: number;
2870
+ updated_at: Date;
2871
+ created_at: Date;
2872
+ paid_on: Date;
2873
+ amount: number;
2874
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2875
+ credit_id?: string | null | undefined;
2876
+ invoice_id?: string | null | undefined;
2877
+ payment_id?: string | null | undefined;
2878
+ shipment_id?: string | null | undefined;
2879
+ }, {
2880
+ id: number;
2881
+ updated_at: Date;
2882
+ created_at: Date;
2883
+ paid_on: Date;
2884
+ amount: number;
2885
+ amount_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2886
+ credit_id?: string | null | undefined;
2887
+ invoice_id?: string | null | undefined;
2888
+ payment_id?: string | null | undefined;
2889
+ shipment_id?: string | null | undefined;
2890
+ }>;
2891
+ export declare const invoiceSchema: z.ZodObject<{
2892
+ created_at: z.ZodDate;
2893
+ id: z.ZodNumber;
2894
+ amount_owed: z.ZodNumber;
2895
+ amount_owed_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
2896
+ amount_paid: z.ZodNumber;
2897
+ amount_paid_currency: z.ZodEnum<["CAD", "EUR", "GBP", "HKD", "USD"]>;
2898
+ issued_on: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2899
+ shipment_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2900
+ status: z.ZodString;
2901
+ updated_at: z.ZodDate;
2902
+ invoice_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2903
+ }, "strip", z.ZodTypeAny, {
2904
+ id: number;
2905
+ status: string;
2906
+ updated_at: Date;
2907
+ created_at: Date;
2908
+ amount_owed: number;
2909
+ amount_owed_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2910
+ amount_paid: number;
2911
+ amount_paid_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2912
+ issued_on?: Date | null | undefined;
2913
+ shipment_id?: string | null | undefined;
2914
+ invoice_url?: string | null | undefined;
2915
+ }, {
2916
+ id: number;
2917
+ status: string;
2918
+ updated_at: Date;
2919
+ created_at: Date;
2920
+ amount_owed: number;
2921
+ amount_owed_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2922
+ amount_paid: number;
2923
+ amount_paid_currency: "CAD" | "EUR" | "GBP" | "HKD" | "USD";
2924
+ issued_on?: Date | null | undefined;
2925
+ shipment_id?: string | null | undefined;
2926
+ invoice_url?: string | null | undefined;
2927
+ }>;
2928
+ export declare const logSchema: z.ZodObject<{
2929
+ updated_at: z.ZodDate;
2930
+ created_at: z.ZodDate;
2931
+ id: z.ZodNumber;
2932
+ api_key_id: z.ZodNumber;
2933
+ arta_version: z.ZodString;
2934
+ end_at: z.ZodDate;
2935
+ method: z.ZodString;
2936
+ path: z.ZodString;
2937
+ query_params: z.ZodString;
2938
+ request_body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2939
+ request_id: z.ZodString;
2940
+ response_body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2941
+ start_at: z.ZodDate;
2942
+ status: z.ZodNumber;
2943
+ }, "strip", z.ZodTypeAny, {
2944
+ id: number;
2945
+ path: string;
2946
+ method: string;
2947
+ status: number;
2948
+ updated_at: Date;
2949
+ created_at: Date;
2950
+ start_at: Date;
2951
+ end_at: Date;
2952
+ api_key_id: number;
2953
+ arta_version: string;
2954
+ query_params: string;
2955
+ request_id: string;
2956
+ request_body?: string | null | undefined;
2957
+ response_body?: string | null | undefined;
2958
+ }, {
2959
+ id: number;
2960
+ path: string;
2961
+ method: string;
2962
+ status: number;
2963
+ updated_at: Date;
2964
+ created_at: Date;
2965
+ start_at: Date;
2966
+ end_at: Date;
2967
+ api_key_id: number;
2968
+ arta_version: string;
2969
+ query_params: string;
2970
+ request_id: string;
2971
+ request_body?: string | null | undefined;
2972
+ response_body?: string | null | undefined;
2973
+ }>;
2974
+ export declare const organizationSchema: z.ZodObject<{
2975
+ updated_at: z.ZodDate;
2976
+ created_at: z.ZodDate;
2977
+ api_version: z.ZodString;
2978
+ id: z.ZodNumber;
2979
+ name: z.ZodString;
2980
+ billing_terms: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2981
+ company_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2982
+ display_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2983
+ shortcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2984
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2985
+ stripe_customer_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2986
+ }, "strip", z.ZodTypeAny, {
2987
+ id: number;
2988
+ name: string;
2989
+ updated_at: Date;
2990
+ created_at: Date;
2991
+ api_version: string;
2992
+ billing_terms?: string | null | undefined;
2993
+ company_name?: string | null | undefined;
2994
+ display_name?: string | null | undefined;
2995
+ shortcode?: string | null | undefined;
2996
+ status?: string | null | undefined;
2997
+ stripe_customer_id?: string | null | undefined;
2998
+ }, {
2999
+ id: number;
3000
+ name: string;
3001
+ updated_at: Date;
3002
+ created_at: Date;
3003
+ api_version: string;
3004
+ billing_terms?: string | null | undefined;
3005
+ company_name?: string | null | undefined;
3006
+ display_name?: string | null | undefined;
3007
+ shortcode?: string | null | undefined;
3008
+ status?: string | null | undefined;
3009
+ stripe_customer_id?: string | null | undefined;
3010
+ }>;
3011
+ export declare const carrierSchema: z.ZodObject<{
3012
+ code: z.ZodString;
3013
+ name: z.ZodString;
3014
+ phone_number: z.ZodString;
3015
+ url: z.ZodString;
3016
+ }, "strip", z.ZodTypeAny, {
3017
+ code: string;
3018
+ url: string;
3019
+ name: string;
3020
+ phone_number: string;
3021
+ }, {
3022
+ code: string;
3023
+ url: string;
3024
+ name: string;
3025
+ phone_number: string;
3026
+ }>;
3027
+ export declare const trackingEventSchema: z.ZodObject<{
3028
+ date: z.ZodDate;
3029
+ location: z.ZodString;
3030
+ summary: z.ZodString;
3031
+ }, "strip", z.ZodTypeAny, {
3032
+ location: string;
3033
+ summary: string;
3034
+ date: Date;
3035
+ }, {
3036
+ location: string;
3037
+ summary: string;
3038
+ date: Date;
3039
+ }>;
3040
+ export declare const trackingSchema: z.ZodObject<{
3041
+ carrier: z.ZodObject<{
3042
+ code: z.ZodString;
3043
+ name: z.ZodString;
3044
+ phone_number: z.ZodString;
3045
+ url: z.ZodString;
3046
+ }, "strip", z.ZodTypeAny, {
3047
+ code: string;
3048
+ url: string;
3049
+ name: string;
3050
+ phone_number: string;
3051
+ }, {
3052
+ code: string;
3053
+ url: string;
3054
+ name: string;
3055
+ phone_number: string;
3056
+ }>;
3057
+ events: z.ZodArray<z.ZodObject<{
3058
+ date: z.ZodDate;
3059
+ location: z.ZodString;
3060
+ summary: z.ZodString;
3061
+ }, "strip", z.ZodTypeAny, {
3062
+ location: string;
3063
+ summary: string;
3064
+ date: Date;
3065
+ }, {
3066
+ location: string;
3067
+ summary: string;
3068
+ date: Date;
3069
+ }>, "many">;
3070
+ status: z.ZodString;
3071
+ tracking_number: z.ZodString;
3072
+ }, "strip", z.ZodTypeAny, {
3073
+ status: string;
3074
+ events: {
3075
+ location: string;
3076
+ summary: string;
3077
+ date: Date;
3078
+ }[];
3079
+ carrier: {
3080
+ code: string;
3081
+ url: string;
3082
+ name: string;
3083
+ phone_number: string;
3084
+ };
3085
+ tracking_number: string;
3086
+ }, {
3087
+ status: string;
3088
+ events: {
3089
+ location: string;
3090
+ summary: string;
3091
+ date: Date;
3092
+ }[];
3093
+ carrier: {
3094
+ code: string;
3095
+ url: string;
3096
+ name: string;
3097
+ phone_number: string;
3098
+ };
3099
+ tracking_number: string;
3100
+ }>;
3101
+ export declare const documentTypeSchema: z.ZodEnum<["bill_of_lading", "certificate_of_insurance", "certificate_of_insurance_template", "condition_report", "condition_check", "image", "instructions", "airway_bill", "commercial_invoice", "power_of_attorney", "proof_of_export", "proof_of_delivery", "quote", "shipping_label", "other"]>;
3102
+ export declare const mimeTypeSchema: z.ZodEnum<["application/pdf", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "image/jpeg", "image/png", "text/csv", "video/mp4", "video/quicktime", "application/msword"]>;
3103
+ export declare const uploadSchema: z.ZodObject<{
3104
+ updated_at: z.ZodDate;
3105
+ created_at: z.ZodDate;
3106
+ id: z.ZodNumber;
3107
+ document_type: z.ZodEnum<["bill_of_lading", "certificate_of_insurance", "certificate_of_insurance_template", "condition_report", "condition_check", "image", "instructions", "airway_bill", "commercial_invoice", "power_of_attorney", "proof_of_export", "proof_of_delivery", "quote", "shipping_label", "other"]>;
3108
+ document_type_label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3109
+ download_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3110
+ file_name: z.ZodString;
3111
+ mime_type: z.ZodEnum<["application/pdf", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "image/jpeg", "image/png", "text/csv", "video/mp4", "video/quicktime", "application/msword"]>;
3112
+ size: z.ZodNumber;
3113
+ status: z.ZodString;
3114
+ presigned_url: z.ZodString;
3115
+ }, "strip", z.ZodTypeAny, {
3116
+ id: number;
3117
+ size: number;
3118
+ status: string;
3119
+ updated_at: Date;
3120
+ created_at: Date;
3121
+ document_type: "image" | "other" | "bill_of_lading" | "certificate_of_insurance" | "certificate_of_insurance_template" | "condition_report" | "condition_check" | "instructions" | "airway_bill" | "commercial_invoice" | "power_of_attorney" | "proof_of_export" | "proof_of_delivery" | "quote" | "shipping_label";
3122
+ file_name: string;
3123
+ mime_type: "application/pdf" | "application/vnd.ms-excel" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document" | "image/jpeg" | "image/png" | "text/csv" | "video/mp4" | "video/quicktime" | "application/msword";
3124
+ presigned_url: string;
3125
+ document_type_label?: string | null | undefined;
3126
+ download_url?: string | null | undefined;
3127
+ }, {
3128
+ id: number;
3129
+ size: number;
3130
+ status: string;
3131
+ updated_at: Date;
3132
+ created_at: Date;
3133
+ document_type: "image" | "other" | "bill_of_lading" | "certificate_of_insurance" | "certificate_of_insurance_template" | "condition_report" | "condition_check" | "instructions" | "airway_bill" | "commercial_invoice" | "power_of_attorney" | "proof_of_export" | "proof_of_delivery" | "quote" | "shipping_label";
3134
+ file_name: string;
3135
+ mime_type: "application/pdf" | "application/vnd.ms-excel" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document" | "image/jpeg" | "image/png" | "text/csv" | "video/mp4" | "video/quicktime" | "application/msword";
3136
+ presigned_url: string;
3137
+ document_type_label?: string | null | undefined;
3138
+ download_url?: string | null | undefined;
3139
+ }>;
3140
+ export declare const webhookResourceTypeSchema: z.ZodEnum<["ping", "request", "shipment"]>;
3141
+ export declare const webhookDeliveryStatusSchema: z.ZodEnum<["delivered", "failed"]>;
3142
+ export declare const webhookDeliveryTypeSchema: z.ZodEnum<["request.created", "request.status.updated", "shipment.created", "shipment.eei_form_status.updated", "shipment.schedule.updated", "shipment.status.updated", "shipment.tracking.updated", "ping"]>;
3143
+ export declare const webhookDeliverySchema: z.ZodObject<{
3144
+ updated_at: z.ZodDate;
3145
+ created_at: z.ZodDate;
3146
+ id: z.ZodString;
3147
+ resource_id: z.ZodNumber;
3148
+ resource_type: z.ZodEnum<["ping", "request", "shipment"]>;
3149
+ response_status_code: z.ZodNumber;
3150
+ status: z.ZodEnum<["delivered", "failed"]>;
3151
+ type: z.ZodEnum<["request.created", "request.status.updated", "shipment.created", "shipment.eei_form_status.updated", "shipment.schedule.updated", "shipment.status.updated", "shipment.tracking.updated", "ping"]>;
3152
+ webhook_id: z.ZodNumber;
3153
+ webhook_url: z.ZodString;
3154
+ next_retry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3155
+ request_body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3156
+ response_body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3157
+ }, "strip", z.ZodTypeAny, {
3158
+ type: "ping" | "request.created" | "request.status.updated" | "shipment.created" | "shipment.eei_form_status.updated" | "shipment.schedule.updated" | "shipment.status.updated" | "shipment.tracking.updated";
3159
+ id: string;
3160
+ status: "failed" | "delivered";
3161
+ updated_at: Date;
3162
+ created_at: Date;
3163
+ resource_id: number;
3164
+ resource_type: "ping" | "request" | "shipment";
3165
+ response_status_code: number;
3166
+ webhook_id: number;
3167
+ webhook_url: string;
3168
+ next_retry?: string | null | undefined;
3169
+ request_body?: string | null | undefined;
3170
+ response_body?: string | null | undefined;
3171
+ }, {
3172
+ type: "ping" | "request.created" | "request.status.updated" | "shipment.created" | "shipment.eei_form_status.updated" | "shipment.schedule.updated" | "shipment.status.updated" | "shipment.tracking.updated";
3173
+ id: string;
3174
+ status: "failed" | "delivered";
3175
+ updated_at: Date;
3176
+ created_at: Date;
3177
+ resource_id: number;
3178
+ resource_type: "ping" | "request" | "shipment";
3179
+ response_status_code: number;
3180
+ webhook_id: number;
3181
+ webhook_url: string;
3182
+ next_retry?: string | null | undefined;
3183
+ request_body?: string | null | undefined;
3184
+ response_body?: string | null | undefined;
3185
+ }>;
3186
+ export declare const webhookSchema: z.ZodObject<{
3187
+ updated_at: z.ZodDate;
3188
+ created_at: z.ZodDate;
3189
+ id: z.ZodNumber;
3190
+ name: z.ZodString;
3191
+ url: z.ZodString;
3192
+ }, "strip", z.ZodTypeAny, {
3193
+ id: number;
3194
+ url: string;
3195
+ name: string;
3196
+ updated_at: Date;
3197
+ created_at: Date;
3198
+ }, {
3199
+ id: number;
3200
+ url: string;
3201
+ name: string;
3202
+ updated_at: Date;
3203
+ created_at: Date;
3204
+ }>;