@meterapp/car-image-sdk 1.3.0 → 1.5.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.
@@ -10,10 +10,11 @@
10
10
  * entry point of the SDK has no runtime dependencies.
11
11
  */
12
12
  import * as z from "zod";
13
+ import { type Format, type RequestFormat } from "../types.js";
13
14
  export declare const MCP_SERVER_INFO: {
14
15
  readonly name: "car-image-api";
15
16
  readonly title: "Car Image API";
16
- readonly version: "1.3.0";
17
+ readonly version: "1.5.0";
17
18
  readonly websiteUrl: "https://carimage.dev";
18
19
  };
19
20
  /**
@@ -24,8 +25,8 @@ export declare const MCP_SERVER_INFO: {
24
25
  * context and make the right one easier to pick.
25
26
  */
26
27
  export declare const MCP_TOOLSETS: {
27
- readonly core: readonly ["get_car_image", "create_car_image_urls", "search_vehicles", "resolve_vehicle", "list_image_options", "get_account", "rate_image", "describe_api"];
28
- readonly all: readonly ["get_car_image", "create_car_image_urls", "search_vehicles", "resolve_vehicle", "list_image_options", "get_account", "rate_image", "describe_api", "list_requests", "request_vehicle", "request_feature", "get_request", "upvote_request", "comment_on_request", "share_building", "share_referral"];
28
+ readonly core: readonly ["get_car_image", "create_car_image_urls", "search_vehicles", "resolve_vehicle", "decode_vin", "list_image_options", "get_account", "rate_image", "create_3d_model", "get_3d_model", "describe_api"];
29
+ readonly all: readonly ["get_car_image", "create_car_image_urls", "search_vehicles", "resolve_vehicle", "decode_vin", "list_image_options", "get_account", "rate_image", "create_3d_model", "get_3d_model", "describe_api", "list_requests", "request_vehicle", "request_feature", "get_request", "upvote_request", "comment_on_request", "share_building", "share_referral"];
29
30
  };
30
31
  export type McpToolset = keyof typeof MCP_TOOLSETS;
31
32
  export declare const DEFAULT_MCP_TOOLSET: McpToolset;
@@ -35,10 +36,11 @@ export declare function isMcpToolset(value: unknown): value is McpToolset;
35
36
  export declare function mcpInstructions(toolset?: McpToolset): string;
36
37
  /** Instructions for the full toolset; kept for callers that predate toolsets. */
37
38
  export declare const MCP_INSTRUCTIONS: string;
39
+ /** A paint color: a preset name, or a hex such as `#1a2b3c` (`1a2b3c` and `#rgb` are accepted too). */
40
+ export declare const colorSchema: z.ZodString & z.ZodType<import("../types.js").Color, string, z.core.$ZodTypeInternals<import("../types.js").Color, string>>;
41
+ /** A stable catalog vehicle id, as every catalog tool returns it. */
42
+ export declare const vehicleIdSchema: z.ZodString;
38
43
  export declare const imageInputSchema: z.ZodObject<{
39
- make: z.ZodString;
40
- model: z.ZodString;
41
- year: z.ZodCoercedNumber<unknown>;
42
44
  view: z.ZodDefault<z.ZodEnum<{
43
45
  front: "front";
44
46
  "front-3-4": "front-3-4";
@@ -47,23 +49,7 @@ export declare const imageInputSchema: z.ZodObject<{
47
49
  rear: "rear";
48
50
  "rear-3-4": "rear-3-4";
49
51
  }>>;
50
- color: z.ZodDefault<z.ZodEnum<{
51
- white: "white";
52
- black: "black";
53
- gray: "gray";
54
- silver: "silver";
55
- blue: "blue";
56
- red: "red";
57
- green: "green";
58
- brown: "brown";
59
- beige: "beige";
60
- tan: "tan";
61
- orange: "orange";
62
- yellow: "yellow";
63
- gold: "gold";
64
- burgundy: "burgundy";
65
- purple: "purple";
66
- }>>;
52
+ color: z.ZodDefault<z.ZodString & z.ZodType<import("../types.js").Color, string, z.core.$ZodTypeInternals<import("../types.js").Color, string>>>;
67
53
  size: z.ZodOptional<z.ZodEnum<{
68
54
  thumb: "thumb";
69
55
  small: "small";
@@ -84,14 +70,24 @@ export declare const imageInputSchema: z.ZodObject<{
84
70
  png: "png";
85
71
  webp: "webp";
86
72
  jpg: "jpg";
73
+ auto: "auto";
87
74
  }>>;
75
+ vehicle: z.ZodOptional<z.ZodString>;
76
+ make: z.ZodOptional<z.ZodString>;
77
+ model: z.ZodOptional<z.ZodString>;
78
+ year: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
88
79
  }, z.core.$strip>;
89
80
  export type ImageInput = z.infer<typeof imageInputSchema>;
81
+ /**
82
+ * The encoding an inline image (`get_car_image`) is delivered in. `auto` is
83
+ * negotiated from an HTTP `Accept` header, which a tool call does not carry,
84
+ * so both servers deliver png for it: every MCP host decodes png, and the
85
+ * same input yields the same bytes over stdio and over HTTP. Signed URLs keep
86
+ * `auto` and negotiate per load.
87
+ */
88
+ export declare function inlineImageFormat(format: RequestFormat): Format;
90
89
  export declare const MCP_TOOL_SCHEMAS: {
91
90
  readonly get_car_image: z.ZodObject<{
92
- make: z.ZodString;
93
- model: z.ZodString;
94
- year: z.ZodCoercedNumber<unknown>;
95
91
  view: z.ZodDefault<z.ZodEnum<{
96
92
  front: "front";
97
93
  "front-3-4": "front-3-4";
@@ -100,23 +96,7 @@ export declare const MCP_TOOL_SCHEMAS: {
100
96
  rear: "rear";
101
97
  "rear-3-4": "rear-3-4";
102
98
  }>>;
103
- color: z.ZodDefault<z.ZodEnum<{
104
- white: "white";
105
- black: "black";
106
- gray: "gray";
107
- silver: "silver";
108
- blue: "blue";
109
- red: "red";
110
- green: "green";
111
- brown: "brown";
112
- beige: "beige";
113
- tan: "tan";
114
- orange: "orange";
115
- yellow: "yellow";
116
- gold: "gold";
117
- burgundy: "burgundy";
118
- purple: "purple";
119
- }>>;
99
+ color: z.ZodDefault<z.ZodString & z.ZodType<import("../types.js").Color, string, z.core.$ZodTypeInternals<import("../types.js").Color, string>>>;
120
100
  size: z.ZodOptional<z.ZodEnum<{
121
101
  thumb: "thumb";
122
102
  small: "small";
@@ -137,13 +117,15 @@ export declare const MCP_TOOL_SCHEMAS: {
137
117
  png: "png";
138
118
  webp: "webp";
139
119
  jpg: "jpg";
120
+ auto: "auto";
140
121
  }>>;
122
+ vehicle: z.ZodOptional<z.ZodString>;
123
+ make: z.ZodOptional<z.ZodString>;
124
+ model: z.ZodOptional<z.ZodString>;
125
+ year: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
141
126
  }, z.core.$strip>;
142
127
  readonly create_car_image_urls: z.ZodObject<{
143
128
  images: z.ZodArray<z.ZodObject<{
144
- make: z.ZodString;
145
- model: z.ZodString;
146
- year: z.ZodCoercedNumber<unknown>;
147
129
  view: z.ZodDefault<z.ZodEnum<{
148
130
  front: "front";
149
131
  "front-3-4": "front-3-4";
@@ -152,23 +134,7 @@ export declare const MCP_TOOL_SCHEMAS: {
152
134
  rear: "rear";
153
135
  "rear-3-4": "rear-3-4";
154
136
  }>>;
155
- color: z.ZodDefault<z.ZodEnum<{
156
- white: "white";
157
- black: "black";
158
- gray: "gray";
159
- silver: "silver";
160
- blue: "blue";
161
- red: "red";
162
- green: "green";
163
- brown: "brown";
164
- beige: "beige";
165
- tan: "tan";
166
- orange: "orange";
167
- yellow: "yellow";
168
- gold: "gold";
169
- burgundy: "burgundy";
170
- purple: "purple";
171
- }>>;
137
+ color: z.ZodDefault<z.ZodString & z.ZodType<import("../types.js").Color, string, z.core.$ZodTypeInternals<import("../types.js").Color, string>>>;
172
138
  size: z.ZodOptional<z.ZodEnum<{
173
139
  thumb: "thumb";
174
140
  small: "small";
@@ -189,12 +155,18 @@ export declare const MCP_TOOL_SCHEMAS: {
189
155
  png: "png";
190
156
  webp: "webp";
191
157
  jpg: "jpg";
158
+ auto: "auto";
192
159
  }>>;
160
+ vehicle: z.ZodOptional<z.ZodString>;
161
+ make: z.ZodOptional<z.ZodString>;
162
+ model: z.ZodOptional<z.ZodString>;
163
+ year: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
193
164
  }, z.core.$strip>>;
194
165
  ttl_seconds: z.ZodOptional<z.ZodNumber>;
195
166
  max_uses: z.ZodOptional<z.ZodNumber>;
196
167
  renew: z.ZodOptional<z.ZodBoolean>;
197
168
  renew_days: z.ZodOptional<z.ZodNumber>;
169
+ idempotency_key: z.ZodOptional<z.ZodString>;
198
170
  }, z.core.$strip>;
199
171
  readonly search_vehicles: z.ZodObject<{
200
172
  query: z.ZodString;
@@ -208,6 +180,7 @@ export declare const MCP_TOOL_SCHEMAS: {
208
180
  readonly get_account: z.ZodObject<{}, z.core.$strip>;
209
181
  readonly rate_image: z.ZodObject<{
210
182
  request_id: z.ZodOptional<z.ZodString>;
183
+ vehicle: z.ZodOptional<z.ZodString>;
211
184
  make: z.ZodOptional<z.ZodString>;
212
185
  model: z.ZodOptional<z.ZodString>;
213
186
  year: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -219,23 +192,7 @@ export declare const MCP_TOOL_SCHEMAS: {
219
192
  rear: "rear";
220
193
  "rear-3-4": "rear-3-4";
221
194
  }>>;
222
- color: z.ZodOptional<z.ZodEnum<{
223
- white: "white";
224
- black: "black";
225
- gray: "gray";
226
- silver: "silver";
227
- blue: "blue";
228
- red: "red";
229
- green: "green";
230
- brown: "brown";
231
- beige: "beige";
232
- tan: "tan";
233
- orange: "orange";
234
- yellow: "yellow";
235
- gold: "gold";
236
- burgundy: "burgundy";
237
- purple: "purple";
238
- }>>;
195
+ color: z.ZodOptional<z.ZodString & z.ZodType<import("../types.js").Color, string, z.core.$ZodTypeInternals<import("../types.js").Color, string>>>;
239
196
  rating: z.ZodOptional<z.ZodNumber>;
240
197
  verdict: z.ZodOptional<z.ZodEnum<{
241
198
  good: "good";
@@ -246,6 +203,23 @@ export declare const MCP_TOOL_SCHEMAS: {
246
203
  readonly describe_api: z.ZodObject<{
247
204
  endpoint: z.ZodOptional<z.ZodString>;
248
205
  }, z.core.$strip>;
206
+ readonly decode_vin: z.ZodObject<{
207
+ vin: z.ZodString;
208
+ year: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
209
+ }, z.core.$strip>;
210
+ readonly create_3d_model: z.ZodObject<{
211
+ color: z.ZodDefault<z.ZodString & z.ZodType<import("../types.js").Color, string, z.core.$ZodTypeInternals<import("../types.js").Color, string>>>;
212
+ webhook_url: z.ZodOptional<z.ZodString>;
213
+ webhook_secret: z.ZodOptional<z.ZodString>;
214
+ idempotency_key: z.ZodOptional<z.ZodString>;
215
+ vehicle: z.ZodOptional<z.ZodString>;
216
+ make: z.ZodOptional<z.ZodString>;
217
+ model: z.ZodOptional<z.ZodString>;
218
+ year: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
219
+ }, z.core.$strip>;
220
+ readonly get_3d_model: z.ZodObject<{
221
+ id: z.ZodString;
222
+ }, z.core.$strip>;
249
223
  readonly list_requests: z.ZodObject<{
250
224
  kind: z.ZodOptional<z.ZodEnum<{
251
225
  vehicle: "vehicle";
@@ -322,6 +296,7 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
322
296
  etag: z.ZodNullable<z.ZodString>;
323
297
  request_id: z.ZodNullable<z.ZodString>;
324
298
  vehicle: z.ZodObject<{
299
+ vehicle_id: z.ZodNullable<z.ZodString>;
325
300
  make: z.ZodString;
326
301
  model: z.ZodString;
327
302
  year: z.ZodNumber;
@@ -333,23 +308,7 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
333
308
  rear: "rear";
334
309
  "rear-3-4": "rear-3-4";
335
310
  }>;
336
- color: z.ZodEnum<{
337
- white: "white";
338
- black: "black";
339
- gray: "gray";
340
- silver: "silver";
341
- blue: "blue";
342
- red: "red";
343
- green: "green";
344
- brown: "brown";
345
- beige: "beige";
346
- tan: "tan";
347
- orange: "orange";
348
- yellow: "yellow";
349
- gold: "gold";
350
- burgundy: "burgundy";
351
- purple: "purple";
352
- }>;
311
+ color: z.ZodString;
353
312
  width: z.ZodOptional<z.ZodNumber>;
354
313
  height: z.ZodOptional<z.ZodNumber>;
355
314
  fit: z.ZodOptional<z.ZodEnum<{
@@ -376,6 +335,7 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
376
335
  max_uses: z.ZodNumber;
377
336
  renews_until: z.ZodOptional<z.ZodNullable<z.ZodString>>;
378
337
  vehicle: z.ZodObject<{
338
+ vehicle_id: z.ZodNullable<z.ZodString>;
379
339
  make: z.ZodString;
380
340
  model: z.ZodString;
381
341
  year: z.ZodNumber;
@@ -387,23 +347,7 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
387
347
  rear: "rear";
388
348
  "rear-3-4": "rear-3-4";
389
349
  }>;
390
- color: z.ZodEnum<{
391
- white: "white";
392
- black: "black";
393
- gray: "gray";
394
- silver: "silver";
395
- blue: "blue";
396
- red: "red";
397
- green: "green";
398
- brown: "brown";
399
- beige: "beige";
400
- tan: "tan";
401
- orange: "orange";
402
- yellow: "yellow";
403
- gold: "gold";
404
- burgundy: "burgundy";
405
- purple: "purple";
406
- }>;
350
+ color: z.ZodString;
407
351
  width: z.ZodOptional<z.ZodNumber>;
408
352
  height: z.ZodOptional<z.ZodNumber>;
409
353
  fit: z.ZodOptional<z.ZodEnum<{
@@ -433,6 +377,7 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
433
377
  }, z.core.$loose>>>;
434
378
  }, z.core.$loose>;
435
379
  request_id: z.ZodString;
380
+ idempotent_replayed: z.ZodOptional<z.ZodBoolean>;
436
381
  }, z.core.$loose>;
437
382
  readonly search_vehicles: z.ZodObject<{
438
383
  data: z.ZodObject<{
@@ -455,6 +400,7 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
455
400
  readonly resolve_vehicle: z.ZodObject<{
456
401
  data: z.ZodObject<{
457
402
  params: z.ZodObject<{
403
+ vehicle_id: z.ZodNullable<z.ZodString>;
458
404
  make: z.ZodString;
459
405
  model: z.ZodString;
460
406
  year: z.ZodNumber;
@@ -466,23 +412,7 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
466
412
  rear: "rear";
467
413
  "rear-3-4": "rear-3-4";
468
414
  }>;
469
- color: z.ZodEnum<{
470
- white: "white";
471
- black: "black";
472
- gray: "gray";
473
- silver: "silver";
474
- blue: "blue";
475
- red: "red";
476
- green: "green";
477
- brown: "brown";
478
- beige: "beige";
479
- tan: "tan";
480
- orange: "orange";
481
- yellow: "yellow";
482
- gold: "gold";
483
- burgundy: "burgundy";
484
- purple: "purple";
485
- }>;
415
+ color: z.ZodString;
486
416
  }, z.core.$loose>;
487
417
  display: z.ZodOptional<z.ZodObject<{
488
418
  make_name: z.ZodString;
@@ -605,6 +535,184 @@ export declare const MCP_TOOL_OUTPUT_SCHEMAS: {
605
535
  }, z.core.$loose>;
606
536
  request_id: z.ZodString;
607
537
  }, z.core.$loose>;
538
+ readonly decode_vin: z.ZodObject<{
539
+ data: z.ZodObject<{
540
+ vin: z.ZodString;
541
+ valid: z.ZodBoolean;
542
+ errors: z.ZodArray<z.ZodObject<{
543
+ code: z.ZodNumber;
544
+ text: z.ZodString;
545
+ }, z.core.$loose>>;
546
+ suggested_vin: z.ZodNullable<z.ZodString>;
547
+ year: z.ZodNullable<z.ZodNumber>;
548
+ make: z.ZodNullable<z.ZodString>;
549
+ model: z.ZodNullable<z.ZodString>;
550
+ trim: z.ZodNullable<z.ZodString>;
551
+ series: z.ZodNullable<z.ZodString>;
552
+ body_class: z.ZodNullable<z.ZodString>;
553
+ vehicle_type: z.ZodNullable<z.ZodString>;
554
+ doors: z.ZodNullable<z.ZodNumber>;
555
+ drive_type: z.ZodNullable<z.ZodString>;
556
+ fuel_type: z.ZodNullable<z.ZodString>;
557
+ engine: z.ZodObject<{
558
+ cylinders: z.ZodNullable<z.ZodNumber>;
559
+ displacement_l: z.ZodNullable<z.ZodNumber>;
560
+ hp: z.ZodNullable<z.ZodNumber>;
561
+ model: z.ZodNullable<z.ZodString>;
562
+ }, z.core.$loose>;
563
+ transmission: z.ZodObject<{
564
+ style: z.ZodNullable<z.ZodString>;
565
+ speeds: z.ZodNullable<z.ZodNumber>;
566
+ }, z.core.$loose>;
567
+ manufacturer: z.ZodNullable<z.ZodString>;
568
+ plant: z.ZodObject<{
569
+ city: z.ZodNullable<z.ZodString>;
570
+ state: z.ZodNullable<z.ZodString>;
571
+ country: z.ZodNullable<z.ZodString>;
572
+ }, z.core.$loose>;
573
+ gvwr: z.ZodNullable<z.ZodString>;
574
+ attributes: z.ZodRecord<z.ZodString, z.ZodString>;
575
+ vehicle: z.ZodNullable<z.ZodObject<{
576
+ id: z.ZodString;
577
+ make: z.ZodString;
578
+ model: z.ZodString;
579
+ year: z.ZodNumber;
580
+ image_path: z.ZodString;
581
+ }, z.core.$loose>>;
582
+ source: z.ZodEnum<{
583
+ "vpic-db": "vpic-db";
584
+ "vpic-api": "vpic-api";
585
+ }>;
586
+ }, z.core.$loose>;
587
+ request_id: z.ZodString;
588
+ }, z.core.$loose>;
589
+ readonly create_3d_model: z.ZodObject<{
590
+ data: z.ZodObject<{
591
+ id: z.ZodString;
592
+ object: z.ZodLiteral<"3d_model">;
593
+ status: z.ZodEnum<{
594
+ queued: "queued";
595
+ processing: "processing";
596
+ ready: "ready";
597
+ failed: "failed";
598
+ }>;
599
+ progress: z.ZodNumber;
600
+ stage: z.ZodNullable<z.ZodString>;
601
+ vehicle: z.ZodObject<{
602
+ id: z.ZodNullable<z.ZodString>;
603
+ make: z.ZodString;
604
+ model: z.ZodString;
605
+ year: z.ZodNumber;
606
+ }, z.core.$loose>;
607
+ color: z.ZodString;
608
+ generator: z.ZodString;
609
+ files: z.ZodNullable<z.ZodObject<{
610
+ glb: z.ZodOptional<z.ZodObject<{
611
+ url: z.ZodString;
612
+ bytes: z.ZodNumber;
613
+ content_type: z.ZodString;
614
+ }, z.core.$loose>>;
615
+ usdz: z.ZodOptional<z.ZodObject<{
616
+ url: z.ZodString;
617
+ bytes: z.ZodNumber;
618
+ content_type: z.ZodString;
619
+ }, z.core.$loose>>;
620
+ fbx: z.ZodOptional<z.ZodObject<{
621
+ url: z.ZodString;
622
+ bytes: z.ZodNumber;
623
+ content_type: z.ZodString;
624
+ }, z.core.$loose>>;
625
+ thumbnail: z.ZodOptional<z.ZodObject<{
626
+ url: z.ZodString;
627
+ bytes: z.ZodNumber;
628
+ content_type: z.ZodString;
629
+ }, z.core.$loose>>;
630
+ }, z.core.$loose>>;
631
+ polycount: z.ZodNullable<z.ZodNumber>;
632
+ error: z.ZodNullable<z.ZodObject<{
633
+ code: z.ZodString;
634
+ message: z.ZodString;
635
+ }, z.core.$loose>>;
636
+ estimated_seconds_remaining: z.ZodNullable<z.ZodNumber>;
637
+ webhook: z.ZodNullable<z.ZodObject<{
638
+ url: z.ZodString;
639
+ status: z.ZodNullable<z.ZodString>;
640
+ attempts: z.ZodNumber;
641
+ last_status: z.ZodNullable<z.ZodNumber>;
642
+ delivered_at: z.ZodNullable<z.ZodString>;
643
+ }, z.core.$loose>>;
644
+ created_at: z.ZodString;
645
+ updated_at: z.ZodString;
646
+ ready_at: z.ZodNullable<z.ZodString>;
647
+ }, z.core.$loose>;
648
+ billing: z.ZodObject<{
649
+ charged_on: z.ZodLiteral<"creation">;
650
+ credits_charged: z.ZodNumber;
651
+ credits_remaining: z.ZodNumber;
652
+ }, z.core.$loose>;
653
+ request_id: z.ZodString;
654
+ }, z.core.$loose>;
655
+ readonly get_3d_model: z.ZodObject<{
656
+ data: z.ZodObject<{
657
+ id: z.ZodString;
658
+ object: z.ZodLiteral<"3d_model">;
659
+ status: z.ZodEnum<{
660
+ queued: "queued";
661
+ processing: "processing";
662
+ ready: "ready";
663
+ failed: "failed";
664
+ }>;
665
+ progress: z.ZodNumber;
666
+ stage: z.ZodNullable<z.ZodString>;
667
+ vehicle: z.ZodObject<{
668
+ id: z.ZodNullable<z.ZodString>;
669
+ make: z.ZodString;
670
+ model: z.ZodString;
671
+ year: z.ZodNumber;
672
+ }, z.core.$loose>;
673
+ color: z.ZodString;
674
+ generator: z.ZodString;
675
+ files: z.ZodNullable<z.ZodObject<{
676
+ glb: z.ZodOptional<z.ZodObject<{
677
+ url: z.ZodString;
678
+ bytes: z.ZodNumber;
679
+ content_type: z.ZodString;
680
+ }, z.core.$loose>>;
681
+ usdz: z.ZodOptional<z.ZodObject<{
682
+ url: z.ZodString;
683
+ bytes: z.ZodNumber;
684
+ content_type: z.ZodString;
685
+ }, z.core.$loose>>;
686
+ fbx: z.ZodOptional<z.ZodObject<{
687
+ url: z.ZodString;
688
+ bytes: z.ZodNumber;
689
+ content_type: z.ZodString;
690
+ }, z.core.$loose>>;
691
+ thumbnail: z.ZodOptional<z.ZodObject<{
692
+ url: z.ZodString;
693
+ bytes: z.ZodNumber;
694
+ content_type: z.ZodString;
695
+ }, z.core.$loose>>;
696
+ }, z.core.$loose>>;
697
+ polycount: z.ZodNullable<z.ZodNumber>;
698
+ error: z.ZodNullable<z.ZodObject<{
699
+ code: z.ZodString;
700
+ message: z.ZodString;
701
+ }, z.core.$loose>>;
702
+ estimated_seconds_remaining: z.ZodNullable<z.ZodNumber>;
703
+ webhook: z.ZodNullable<z.ZodObject<{
704
+ url: z.ZodString;
705
+ status: z.ZodNullable<z.ZodString>;
706
+ attempts: z.ZodNumber;
707
+ last_status: z.ZodNullable<z.ZodNumber>;
708
+ delivered_at: z.ZodNullable<z.ZodString>;
709
+ }, z.core.$loose>>;
710
+ created_at: z.ZodString;
711
+ updated_at: z.ZodString;
712
+ ready_at: z.ZodNullable<z.ZodString>;
713
+ }, z.core.$loose>;
714
+ request_id: z.ZodString;
715
+ }, z.core.$loose>;
608
716
  readonly list_requests: z.ZodObject<{
609
717
  data: z.ZodArray<z.ZodObject<{
610
718
  comments: z.ZodNumber;
@@ -856,6 +964,50 @@ export declare function toVehicleMatch(source: VehicleMatchSource): McpToolOutpu
856
964
  * Anything else in the payload (`limits`, `sizes.source`) rides along untouched.
857
965
  */
858
966
  export declare function toImageOptions(data: unknown): McpToolOutput<"list_image_options">["data"];
967
+ /** What {@link vinSummary} reads: the part of a decoded VIN both servers hold in the same shape. */
968
+ export interface VinSummaryInput {
969
+ vin: string;
970
+ year: number | null;
971
+ make: string | null;
972
+ model: string | null;
973
+ trim: string | null;
974
+ errors: ReadonlyArray<{
975
+ text: string;
976
+ }>;
977
+ vehicle: {
978
+ id: string;
979
+ make: string;
980
+ model: string;
981
+ year: number;
982
+ } | null;
983
+ }
984
+ /** The one-line summary both servers put above a decoded VIN. */
985
+ export declare function vinSummary(result: VinSummaryInput): string;
986
+ /** What {@link model3dSummary} reads: the part of a 3D model both servers hold in the same shape. */
987
+ export interface Model3dSummaryInput {
988
+ id: string;
989
+ status: "queued" | "processing" | "ready" | "failed";
990
+ progress: number;
991
+ stage: string | null;
992
+ vehicle: {
993
+ make: string;
994
+ model: string;
995
+ year: number;
996
+ };
997
+ color: string;
998
+ files: Readonly<Partial<Record<string, {
999
+ bytes: number;
1000
+ }>>> | null;
1001
+ error: {
1002
+ message: string;
1003
+ } | null;
1004
+ estimated_seconds_remaining: number | null;
1005
+ }
1006
+ /** The one-line summary both servers put above a 3D model, with the charge when it was just created. */
1007
+ export declare function model3dSummary(model: Model3dSummaryInput, billing?: {
1008
+ credits_charged: number;
1009
+ credits_remaining: number;
1010
+ }): string;
859
1011
  export interface McpToolAnnotations {
860
1012
  title?: string;
861
1013
  readOnlyHint?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":"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"}