@sudajs/cli 0.18.5 → 0.18.7

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.ts CHANGED
@@ -762,15 +762,12 @@ declare const updateContactFormOutputSchema: z.ZodDiscriminatedUnion<"status", [
762
762
  urlMasked: string | null;
763
763
  }>, "many">;
764
764
  limits: z.ZodObject<{
765
- maxFields: z.ZodNumber;
766
765
  maxNotificationChannels: z.ZodNumber;
767
766
  maxWebhooks: z.ZodNumber;
768
767
  }, "strip", z.ZodTypeAny, {
769
- maxFields: number;
770
768
  maxNotificationChannels: number;
771
769
  maxWebhooks: number;
772
770
  }, {
773
- maxFields: number;
774
771
  maxNotificationChannels: number;
775
772
  maxWebhooks: number;
776
773
  }>;
@@ -825,7 +822,6 @@ declare const updateContactFormOutputSchema: z.ZodDiscriminatedUnion<"status", [
825
822
  urlMasked: string | null;
826
823
  }[];
827
824
  limits: {
828
- maxFields: number;
829
825
  maxNotificationChannels: number;
830
826
  maxWebhooks: number;
831
827
  };
@@ -874,7 +870,6 @@ declare const updateContactFormOutputSchema: z.ZodDiscriminatedUnion<"status", [
874
870
  urlMasked: string | null;
875
871
  }[];
876
872
  limits: {
877
- maxFields: number;
878
873
  maxNotificationChannels: number;
879
874
  maxWebhooks: number;
880
875
  };
@@ -927,7 +922,6 @@ declare const updateContactFormOutputSchema: z.ZodDiscriminatedUnion<"status", [
927
922
  urlMasked: string | null;
928
923
  }[];
929
924
  limits: {
930
- maxFields: number;
931
925
  maxNotificationChannels: number;
932
926
  maxWebhooks: number;
933
927
  };
@@ -980,7 +974,6 @@ declare const updateContactFormOutputSchema: z.ZodDiscriminatedUnion<"status", [
980
974
  urlMasked: string | null;
981
975
  }[];
982
976
  limits: {
983
- maxFields: number;
984
977
  maxNotificationChannels: number;
985
978
  maxWebhooks: number;
986
979
  };
package/dist/index.js CHANGED
@@ -654,7 +654,6 @@ var contactFormViewSchema = z.object({
654
654
  })
655
655
  ),
656
656
  limits: z.object({
657
- maxFields: z.number(),
658
657
  maxNotificationChannels: z.number(),
659
658
  maxWebhooks: z.number()
660
659
  }),