@supernova-studio/model 1.41.0 → 1.41.1

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/index.d.mts CHANGED
@@ -188628,10 +188628,13 @@ type NpmProxyTokenPayload = z.infer<typeof NpmProxyTokenPayload>;
188628
188628
 
188629
188629
  declare const PageScreenshotOutput: z.ZodDiscriminatedUnion<"success", [z.ZodObject<{
188630
188630
  success: z.ZodLiteral<true>;
188631
+ fileSize: z.ZodNumber;
188631
188632
  }, "strip", z.ZodTypeAny, {
188632
188633
  success: true;
188634
+ fileSize: number;
188633
188635
  }, {
188634
188636
  success: true;
188637
+ fileSize: number;
188635
188638
  }>, z.ZodObject<{
188636
188639
  success: z.ZodLiteral<false>;
188637
188640
  error: z.ZodString;
package/dist/index.d.ts CHANGED
@@ -188628,10 +188628,13 @@ type NpmProxyTokenPayload = z.infer<typeof NpmProxyTokenPayload>;
188628
188628
 
188629
188629
  declare const PageScreenshotOutput: z.ZodDiscriminatedUnion<"success", [z.ZodObject<{
188630
188630
  success: z.ZodLiteral<true>;
188631
+ fileSize: z.ZodNumber;
188631
188632
  }, "strip", z.ZodTypeAny, {
188632
188633
  success: true;
188634
+ fileSize: number;
188633
188635
  }, {
188634
188636
  success: true;
188637
+ fileSize: number;
188635
188638
  }>, z.ZodObject<{
188636
188639
  success: z.ZodLiteral<false>;
188637
188640
  error: z.ZodString;
package/dist/index.js CHANGED
@@ -6669,7 +6669,8 @@ var PageScreenshotInput = _zod.z.object({
6669
6669
  });
6670
6670
  var PageScreenshotOutput = _zod.z.discriminatedUnion("success", [
6671
6671
  _zod.z.object({
6672
- success: _zod.z.literal(true)
6672
+ success: _zod.z.literal(true),
6673
+ fileSize: _zod.z.number()
6673
6674
  }),
6674
6675
  _zod.z.object({
6675
6676
  success: _zod.z.literal(false),