@uniformdev/uniform-mcp 20.49.3 → 20.49.4-alpha.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/server.d.mts CHANGED
@@ -2262,18 +2262,42 @@ declare const toolDefinitions: {
2262
2262
  imageUrl: zod.ZodString;
2263
2263
  contentType: zod.ZodOptional<zod.ZodString>;
2264
2264
  fileName: zod.ZodOptional<zod.ZodString>;
2265
+ assetGuidance: zod.ZodOptional<zod.ZodObject<{
2266
+ title: zod.ZodOptional<zod.ZodString>;
2267
+ description: zod.ZodOptional<zod.ZodString>;
2268
+ labels: zod.ZodOptional<zod.ZodString>;
2269
+ }, "strip", zod.ZodTypeAny, {
2270
+ title?: string | undefined;
2271
+ description?: string | undefined;
2272
+ labels?: string | undefined;
2273
+ }, {
2274
+ title?: string | undefined;
2275
+ description?: string | undefined;
2276
+ labels?: string | undefined;
2277
+ }>>;
2265
2278
  }, "strip", zod.ZodTypeAny, {
2266
2279
  imageUrl: string;
2267
2280
  contentType?: string | undefined;
2268
2281
  fileName?: string | undefined;
2282
+ assetGuidance?: {
2283
+ title?: string | undefined;
2284
+ description?: string | undefined;
2285
+ labels?: string | undefined;
2286
+ } | undefined;
2269
2287
  }, {
2270
2288
  imageUrl: string;
2271
2289
  contentType?: string | undefined;
2272
2290
  fileName?: string | undefined;
2291
+ assetGuidance?: {
2292
+ title?: string | undefined;
2293
+ description?: string | undefined;
2294
+ labels?: string | undefined;
2295
+ } | undefined;
2273
2296
  }>;
2274
2297
  outputSchema: zod.ZodObject<{
2275
2298
  title: zod.ZodString;
2276
2299
  description: zod.ZodString;
2300
+ labels: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2277
2301
  focalPoint: zod.ZodOptional<zod.ZodObject<{
2278
2302
  x: zod.ZodNumber;
2279
2303
  y: zod.ZodNumber;
@@ -2289,6 +2313,7 @@ declare const toolDefinitions: {
2289
2313
  title: string;
2290
2314
  description: string;
2291
2315
  error: string;
2316
+ labels?: string[] | undefined;
2292
2317
  focalPoint?: {
2293
2318
  x: number;
2294
2319
  y: number;
@@ -2297,6 +2322,7 @@ declare const toolDefinitions: {
2297
2322
  title: string;
2298
2323
  description: string;
2299
2324
  error: string;
2325
+ labels?: string[] | undefined;
2300
2326
  focalPoint?: {
2301
2327
  x: number;
2302
2328
  y: number;