@vercel/sdk 1.8.4 → 1.8.5

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 (54) hide show
  1. package/bin/mcp-server.js +1009 -313
  2. package/bin/mcp-server.js.map +13 -13
  3. package/esm/__tests__/projects.test.js +15 -13
  4. package/esm/__tests__/projects.test.js.map +1 -1
  5. package/esm/lib/config.d.ts +3 -3
  6. package/esm/lib/config.js +3 -3
  7. package/esm/mcp-server/mcp-server.js +1 -1
  8. package/esm/mcp-server/server.js +1 -1
  9. package/esm/models/canceldeploymentop.d.ts +408 -8
  10. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  11. package/esm/models/canceldeploymentop.js +446 -8
  12. package/esm/models/canceldeploymentop.js.map +1 -1
  13. package/esm/models/createdeploymentop.d.ts +408 -8
  14. package/esm/models/createdeploymentop.d.ts.map +1 -1
  15. package/esm/models/createdeploymentop.js +448 -8
  16. package/esm/models/createdeploymentop.js.map +1 -1
  17. package/esm/models/createprojectenvop.d.ts +6 -6
  18. package/esm/models/createprojectenvop.js +2 -2
  19. package/esm/models/createprojectenvop.js.map +1 -1
  20. package/esm/models/createprojectop.d.ts +137 -137
  21. package/esm/models/createprojectop.d.ts.map +1 -1
  22. package/esm/models/createprojectop.js +135 -135
  23. package/esm/models/createprojectop.js.map +1 -1
  24. package/esm/models/editprojectenvop.d.ts +3 -3
  25. package/esm/models/editprojectenvop.js +1 -1
  26. package/esm/models/editprojectenvop.js.map +1 -1
  27. package/esm/models/getdeploymentop.d.ts +408 -8
  28. package/esm/models/getdeploymentop.d.ts.map +1 -1
  29. package/esm/models/getdeploymentop.js +441 -8
  30. package/esm/models/getdeploymentop.js.map +1 -1
  31. package/esm/models/removeprojectenvop.d.ts +9 -9
  32. package/esm/models/removeprojectenvop.js +3 -3
  33. package/esm/models/removeprojectenvop.js.map +1 -1
  34. package/esm/models/updateprojectop.d.ts +137 -137
  35. package/esm/models/updateprojectop.d.ts.map +1 -1
  36. package/esm/models/updateprojectop.js +135 -135
  37. package/esm/models/updateprojectop.js.map +1 -1
  38. package/esm/types/constdatetime.js +1 -1
  39. package/jsr.json +1 -1
  40. package/package.json +1 -1
  41. package/src/__tests__/projects.test.ts +15 -13
  42. package/src/lib/config.ts +3 -3
  43. package/src/mcp-server/mcp-server.ts +1 -1
  44. package/src/mcp-server/server.ts +1 -1
  45. package/src/models/canceldeploymentop.ts +1039 -16
  46. package/src/models/createdeploymentop.ts +957 -16
  47. package/src/models/createprojectenvop.ts +2 -2
  48. package/src/models/createprojectop.ts +263 -263
  49. package/src/models/editprojectenvop.ts +1 -1
  50. package/src/models/getdeploymentop.ts +1007 -16
  51. package/src/models/removeprojectenvop.ts +3 -3
  52. package/src/models/updateprojectop.ts +263 -263
  53. package/src/types/constdatetime.ts +1 -1
  54. package/vercel-spec.json +1328 -623
@@ -618,18 +618,48 @@ export declare const CancelDeploymentHasDeploymentsType: {
618
618
  readonly Query: "query";
619
619
  };
620
620
  export type CancelDeploymentHasDeploymentsType = ClosedEnum<typeof CancelDeploymentHasDeploymentsType>;
621
+ export type CancelDeploymentValueDeploymentsEq = string | number;
622
+ export type CancelDeploymentValueDeployments2 = {
623
+ eq?: string | number | undefined;
624
+ neq?: string | undefined;
625
+ inc?: Array<string> | undefined;
626
+ ninc?: Array<string> | undefined;
627
+ pre?: string | undefined;
628
+ suf?: string | undefined;
629
+ re?: string | undefined;
630
+ gt?: number | undefined;
631
+ gte?: number | undefined;
632
+ lt?: number | undefined;
633
+ lte?: number | undefined;
634
+ };
635
+ export type CancelDeploymentHasDeploymentsValue = CancelDeploymentValueDeployments2 | string;
621
636
  export type CancelDeploymentHas2 = {
622
637
  type: CancelDeploymentHasDeploymentsType;
623
638
  key: string;
624
- value?: string | undefined;
639
+ value?: CancelDeploymentValueDeployments2 | string | undefined;
625
640
  };
626
641
  export declare const CancelDeploymentHasType: {
627
642
  readonly Host: "host";
628
643
  };
629
644
  export type CancelDeploymentHasType = ClosedEnum<typeof CancelDeploymentHasType>;
645
+ export type CancelDeploymentValueEq = string | number;
646
+ export type CancelDeploymentValue2 = {
647
+ eq?: string | number | undefined;
648
+ neq?: string | undefined;
649
+ inc?: Array<string> | undefined;
650
+ ninc?: Array<string> | undefined;
651
+ pre?: string | undefined;
652
+ suf?: string | undefined;
653
+ re?: string | undefined;
654
+ gt?: number | undefined;
655
+ gte?: number | undefined;
656
+ lt?: number | undefined;
657
+ lte?: number | undefined;
658
+ };
659
+ export type CancelDeploymentHasValue = CancelDeploymentValue2 | string;
630
660
  export type CancelDeploymentHas1 = {
631
661
  type: CancelDeploymentHasType;
632
- value: string;
662
+ value: CancelDeploymentValue2 | string;
633
663
  };
634
664
  export type CancelDeploymentRoutesHas = CancelDeploymentHas1 | CancelDeploymentHas2;
635
665
  export declare const CancelDeploymentMissingDeploymentsType: {
@@ -638,20 +668,58 @@ export declare const CancelDeploymentMissingDeploymentsType: {
638
668
  readonly Query: "query";
639
669
  };
640
670
  export type CancelDeploymentMissingDeploymentsType = ClosedEnum<typeof CancelDeploymentMissingDeploymentsType>;
671
+ export type CancelDeploymentValueDeploymentsResponse200Eq = string | number;
672
+ export type CancelDeploymentValueDeploymentsResponse2002 = {
673
+ eq?: string | number | undefined;
674
+ neq?: string | undefined;
675
+ inc?: Array<string> | undefined;
676
+ ninc?: Array<string> | undefined;
677
+ pre?: string | undefined;
678
+ suf?: string | undefined;
679
+ re?: string | undefined;
680
+ gt?: number | undefined;
681
+ gte?: number | undefined;
682
+ lt?: number | undefined;
683
+ lte?: number | undefined;
684
+ };
685
+ export type CancelDeploymentMissingDeploymentsValue = CancelDeploymentValueDeploymentsResponse2002 | string;
641
686
  export type CancelDeploymentMissing2 = {
642
687
  type: CancelDeploymentMissingDeploymentsType;
643
688
  key: string;
644
- value?: string | undefined;
689
+ value?: CancelDeploymentValueDeploymentsResponse2002 | string | undefined;
645
690
  };
646
691
  export declare const CancelDeploymentMissingType: {
647
692
  readonly Host: "host";
648
693
  };
649
694
  export type CancelDeploymentMissingType = ClosedEnum<typeof CancelDeploymentMissingType>;
695
+ export type CancelDeploymentValueDeploymentsResponseEq = string | number;
696
+ export type CancelDeploymentValueDeploymentsResponse2 = {
697
+ eq?: string | number | undefined;
698
+ neq?: string | undefined;
699
+ inc?: Array<string> | undefined;
700
+ ninc?: Array<string> | undefined;
701
+ pre?: string | undefined;
702
+ suf?: string | undefined;
703
+ re?: string | undefined;
704
+ gt?: number | undefined;
705
+ gte?: number | undefined;
706
+ lt?: number | undefined;
707
+ lte?: number | undefined;
708
+ };
709
+ export type CancelDeploymentMissingValue = CancelDeploymentValueDeploymentsResponse2 | string;
650
710
  export type CancelDeploymentMissing1 = {
651
711
  type: CancelDeploymentMissingType;
652
- value: string;
712
+ value: CancelDeploymentValueDeploymentsResponse2 | string;
653
713
  };
654
714
  export type CancelDeploymentRoutesMissing = CancelDeploymentMissing1 | CancelDeploymentMissing2;
715
+ export declare const CancelDeploymentRoutesAction: {
716
+ readonly Challenge: "challenge";
717
+ readonly Deny: "deny";
718
+ };
719
+ export type CancelDeploymentRoutesAction = ClosedEnum<typeof CancelDeploymentRoutesAction>;
720
+ export type CancelDeploymentRoutesMitigate = {
721
+ action: CancelDeploymentRoutesAction;
722
+ };
655
723
  export type RoutesLocale = {
656
724
  redirect?: {
657
725
  [k: string]: string;
@@ -673,6 +741,7 @@ export type CancelDeploymentRoutes1 = {
673
741
  status?: number | undefined;
674
742
  has?: Array<CancelDeploymentHas1 | CancelDeploymentHas2> | undefined;
675
743
  missing?: Array<CancelDeploymentMissing1 | CancelDeploymentMissing2> | undefined;
744
+ mitigate?: CancelDeploymentRoutesMitigate | undefined;
676
745
  locale?: RoutesLocale | undefined;
677
746
  /**
678
747
  * A middleware key within the `output` key under the build result. Overrides a `middleware` definition.
@@ -2898,12 +2967,84 @@ export declare namespace CancelDeploymentHasDeploymentsType$ {
2898
2967
  }>;
2899
2968
  }
2900
2969
  /** @internal */
2970
+ export declare const CancelDeploymentValueDeploymentsEq$inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsEq, z.ZodTypeDef, unknown>;
2971
+ /** @internal */
2972
+ export type CancelDeploymentValueDeploymentsEq$Outbound = string | number;
2973
+ /** @internal */
2974
+ export declare const CancelDeploymentValueDeploymentsEq$outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsEq$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsEq>;
2975
+ /**
2976
+ * @internal
2977
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2978
+ */
2979
+ export declare namespace CancelDeploymentValueDeploymentsEq$ {
2980
+ /** @deprecated use `CancelDeploymentValueDeploymentsEq$inboundSchema` instead. */
2981
+ const inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsEq, z.ZodTypeDef, unknown>;
2982
+ /** @deprecated use `CancelDeploymentValueDeploymentsEq$outboundSchema` instead. */
2983
+ const outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsEq$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsEq>;
2984
+ /** @deprecated use `CancelDeploymentValueDeploymentsEq$Outbound` instead. */
2985
+ type Outbound = CancelDeploymentValueDeploymentsEq$Outbound;
2986
+ }
2987
+ export declare function cancelDeploymentValueDeploymentsEqToJSON(cancelDeploymentValueDeploymentsEq: CancelDeploymentValueDeploymentsEq): string;
2988
+ export declare function cancelDeploymentValueDeploymentsEqFromJSON(jsonString: string): SafeParseResult<CancelDeploymentValueDeploymentsEq, SDKValidationError>;
2989
+ /** @internal */
2990
+ export declare const CancelDeploymentValueDeployments2$inboundSchema: z.ZodType<CancelDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
2991
+ /** @internal */
2992
+ export type CancelDeploymentValueDeployments2$Outbound = {
2993
+ eq?: string | number | undefined;
2994
+ neq?: string | undefined;
2995
+ inc?: Array<string> | undefined;
2996
+ ninc?: Array<string> | undefined;
2997
+ pre?: string | undefined;
2998
+ suf?: string | undefined;
2999
+ re?: string | undefined;
3000
+ gt?: number | undefined;
3001
+ gte?: number | undefined;
3002
+ lt?: number | undefined;
3003
+ lte?: number | undefined;
3004
+ };
3005
+ /** @internal */
3006
+ export declare const CancelDeploymentValueDeployments2$outboundSchema: z.ZodType<CancelDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CancelDeploymentValueDeployments2>;
3007
+ /**
3008
+ * @internal
3009
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3010
+ */
3011
+ export declare namespace CancelDeploymentValueDeployments2$ {
3012
+ /** @deprecated use `CancelDeploymentValueDeployments2$inboundSchema` instead. */
3013
+ const inboundSchema: z.ZodType<CancelDeploymentValueDeployments2, z.ZodTypeDef, unknown>;
3014
+ /** @deprecated use `CancelDeploymentValueDeployments2$outboundSchema` instead. */
3015
+ const outboundSchema: z.ZodType<CancelDeploymentValueDeployments2$Outbound, z.ZodTypeDef, CancelDeploymentValueDeployments2>;
3016
+ /** @deprecated use `CancelDeploymentValueDeployments2$Outbound` instead. */
3017
+ type Outbound = CancelDeploymentValueDeployments2$Outbound;
3018
+ }
3019
+ export declare function cancelDeploymentValueDeployments2ToJSON(cancelDeploymentValueDeployments2: CancelDeploymentValueDeployments2): string;
3020
+ export declare function cancelDeploymentValueDeployments2FromJSON(jsonString: string): SafeParseResult<CancelDeploymentValueDeployments2, SDKValidationError>;
3021
+ /** @internal */
3022
+ export declare const CancelDeploymentHasDeploymentsValue$inboundSchema: z.ZodType<CancelDeploymentHasDeploymentsValue, z.ZodTypeDef, unknown>;
3023
+ /** @internal */
3024
+ export type CancelDeploymentHasDeploymentsValue$Outbound = CancelDeploymentValueDeployments2$Outbound | string;
3025
+ /** @internal */
3026
+ export declare const CancelDeploymentHasDeploymentsValue$outboundSchema: z.ZodType<CancelDeploymentHasDeploymentsValue$Outbound, z.ZodTypeDef, CancelDeploymentHasDeploymentsValue>;
3027
+ /**
3028
+ * @internal
3029
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3030
+ */
3031
+ export declare namespace CancelDeploymentHasDeploymentsValue$ {
3032
+ /** @deprecated use `CancelDeploymentHasDeploymentsValue$inboundSchema` instead. */
3033
+ const inboundSchema: z.ZodType<CancelDeploymentHasDeploymentsValue, z.ZodTypeDef, unknown>;
3034
+ /** @deprecated use `CancelDeploymentHasDeploymentsValue$outboundSchema` instead. */
3035
+ const outboundSchema: z.ZodType<CancelDeploymentHasDeploymentsValue$Outbound, z.ZodTypeDef, CancelDeploymentHasDeploymentsValue>;
3036
+ /** @deprecated use `CancelDeploymentHasDeploymentsValue$Outbound` instead. */
3037
+ type Outbound = CancelDeploymentHasDeploymentsValue$Outbound;
3038
+ }
3039
+ export declare function cancelDeploymentHasDeploymentsValueToJSON(cancelDeploymentHasDeploymentsValue: CancelDeploymentHasDeploymentsValue): string;
3040
+ export declare function cancelDeploymentHasDeploymentsValueFromJSON(jsonString: string): SafeParseResult<CancelDeploymentHasDeploymentsValue, SDKValidationError>;
3041
+ /** @internal */
2901
3042
  export declare const CancelDeploymentHas2$inboundSchema: z.ZodType<CancelDeploymentHas2, z.ZodTypeDef, unknown>;
2902
3043
  /** @internal */
2903
3044
  export type CancelDeploymentHas2$Outbound = {
2904
3045
  type: string;
2905
3046
  key: string;
2906
- value?: string | undefined;
3047
+ value?: CancelDeploymentValueDeployments2$Outbound | string | undefined;
2907
3048
  };
2908
3049
  /** @internal */
2909
3050
  export declare const CancelDeploymentHas2$outboundSchema: z.ZodType<CancelDeploymentHas2$Outbound, z.ZodTypeDef, CancelDeploymentHas2>;
@@ -2940,11 +3081,83 @@ export declare namespace CancelDeploymentHasType$ {
2940
3081
  }>;
2941
3082
  }
2942
3083
  /** @internal */
3084
+ export declare const CancelDeploymentValueEq$inboundSchema: z.ZodType<CancelDeploymentValueEq, z.ZodTypeDef, unknown>;
3085
+ /** @internal */
3086
+ export type CancelDeploymentValueEq$Outbound = string | number;
3087
+ /** @internal */
3088
+ export declare const CancelDeploymentValueEq$outboundSchema: z.ZodType<CancelDeploymentValueEq$Outbound, z.ZodTypeDef, CancelDeploymentValueEq>;
3089
+ /**
3090
+ * @internal
3091
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3092
+ */
3093
+ export declare namespace CancelDeploymentValueEq$ {
3094
+ /** @deprecated use `CancelDeploymentValueEq$inboundSchema` instead. */
3095
+ const inboundSchema: z.ZodType<CancelDeploymentValueEq, z.ZodTypeDef, unknown>;
3096
+ /** @deprecated use `CancelDeploymentValueEq$outboundSchema` instead. */
3097
+ const outboundSchema: z.ZodType<CancelDeploymentValueEq$Outbound, z.ZodTypeDef, CancelDeploymentValueEq>;
3098
+ /** @deprecated use `CancelDeploymentValueEq$Outbound` instead. */
3099
+ type Outbound = CancelDeploymentValueEq$Outbound;
3100
+ }
3101
+ export declare function cancelDeploymentValueEqToJSON(cancelDeploymentValueEq: CancelDeploymentValueEq): string;
3102
+ export declare function cancelDeploymentValueEqFromJSON(jsonString: string): SafeParseResult<CancelDeploymentValueEq, SDKValidationError>;
3103
+ /** @internal */
3104
+ export declare const CancelDeploymentValue2$inboundSchema: z.ZodType<CancelDeploymentValue2, z.ZodTypeDef, unknown>;
3105
+ /** @internal */
3106
+ export type CancelDeploymentValue2$Outbound = {
3107
+ eq?: string | number | undefined;
3108
+ neq?: string | undefined;
3109
+ inc?: Array<string> | undefined;
3110
+ ninc?: Array<string> | undefined;
3111
+ pre?: string | undefined;
3112
+ suf?: string | undefined;
3113
+ re?: string | undefined;
3114
+ gt?: number | undefined;
3115
+ gte?: number | undefined;
3116
+ lt?: number | undefined;
3117
+ lte?: number | undefined;
3118
+ };
3119
+ /** @internal */
3120
+ export declare const CancelDeploymentValue2$outboundSchema: z.ZodType<CancelDeploymentValue2$Outbound, z.ZodTypeDef, CancelDeploymentValue2>;
3121
+ /**
3122
+ * @internal
3123
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3124
+ */
3125
+ export declare namespace CancelDeploymentValue2$ {
3126
+ /** @deprecated use `CancelDeploymentValue2$inboundSchema` instead. */
3127
+ const inboundSchema: z.ZodType<CancelDeploymentValue2, z.ZodTypeDef, unknown>;
3128
+ /** @deprecated use `CancelDeploymentValue2$outboundSchema` instead. */
3129
+ const outboundSchema: z.ZodType<CancelDeploymentValue2$Outbound, z.ZodTypeDef, CancelDeploymentValue2>;
3130
+ /** @deprecated use `CancelDeploymentValue2$Outbound` instead. */
3131
+ type Outbound = CancelDeploymentValue2$Outbound;
3132
+ }
3133
+ export declare function cancelDeploymentValue2ToJSON(cancelDeploymentValue2: CancelDeploymentValue2): string;
3134
+ export declare function cancelDeploymentValue2FromJSON(jsonString: string): SafeParseResult<CancelDeploymentValue2, SDKValidationError>;
3135
+ /** @internal */
3136
+ export declare const CancelDeploymentHasValue$inboundSchema: z.ZodType<CancelDeploymentHasValue, z.ZodTypeDef, unknown>;
3137
+ /** @internal */
3138
+ export type CancelDeploymentHasValue$Outbound = CancelDeploymentValue2$Outbound | string;
3139
+ /** @internal */
3140
+ export declare const CancelDeploymentHasValue$outboundSchema: z.ZodType<CancelDeploymentHasValue$Outbound, z.ZodTypeDef, CancelDeploymentHasValue>;
3141
+ /**
3142
+ * @internal
3143
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3144
+ */
3145
+ export declare namespace CancelDeploymentHasValue$ {
3146
+ /** @deprecated use `CancelDeploymentHasValue$inboundSchema` instead. */
3147
+ const inboundSchema: z.ZodType<CancelDeploymentHasValue, z.ZodTypeDef, unknown>;
3148
+ /** @deprecated use `CancelDeploymentHasValue$outboundSchema` instead. */
3149
+ const outboundSchema: z.ZodType<CancelDeploymentHasValue$Outbound, z.ZodTypeDef, CancelDeploymentHasValue>;
3150
+ /** @deprecated use `CancelDeploymentHasValue$Outbound` instead. */
3151
+ type Outbound = CancelDeploymentHasValue$Outbound;
3152
+ }
3153
+ export declare function cancelDeploymentHasValueToJSON(cancelDeploymentHasValue: CancelDeploymentHasValue): string;
3154
+ export declare function cancelDeploymentHasValueFromJSON(jsonString: string): SafeParseResult<CancelDeploymentHasValue, SDKValidationError>;
3155
+ /** @internal */
2943
3156
  export declare const CancelDeploymentHas1$inboundSchema: z.ZodType<CancelDeploymentHas1, z.ZodTypeDef, unknown>;
2944
3157
  /** @internal */
2945
3158
  export type CancelDeploymentHas1$Outbound = {
2946
3159
  type: string;
2947
- value: string;
3160
+ value: CancelDeploymentValue2$Outbound | string;
2948
3161
  };
2949
3162
  /** @internal */
2950
3163
  export declare const CancelDeploymentHas1$outboundSchema: z.ZodType<CancelDeploymentHas1$Outbound, z.ZodTypeDef, CancelDeploymentHas1>;
@@ -3005,12 +3218,84 @@ export declare namespace CancelDeploymentMissingDeploymentsType$ {
3005
3218
  }>;
3006
3219
  }
3007
3220
  /** @internal */
3221
+ export declare const CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse200Eq, z.ZodTypeDef, unknown>;
3222
+ /** @internal */
3223
+ export type CancelDeploymentValueDeploymentsResponse200Eq$Outbound = string | number;
3224
+ /** @internal */
3225
+ export declare const CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse200Eq$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponse200Eq>;
3226
+ /**
3227
+ * @internal
3228
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3229
+ */
3230
+ export declare namespace CancelDeploymentValueDeploymentsResponse200Eq$ {
3231
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema` instead. */
3232
+ const inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse200Eq, z.ZodTypeDef, unknown>;
3233
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema` instead. */
3234
+ const outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse200Eq$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponse200Eq>;
3235
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse200Eq$Outbound` instead. */
3236
+ type Outbound = CancelDeploymentValueDeploymentsResponse200Eq$Outbound;
3237
+ }
3238
+ export declare function cancelDeploymentValueDeploymentsResponse200EqToJSON(cancelDeploymentValueDeploymentsResponse200Eq: CancelDeploymentValueDeploymentsResponse200Eq): string;
3239
+ export declare function cancelDeploymentValueDeploymentsResponse200EqFromJSON(jsonString: string): SafeParseResult<CancelDeploymentValueDeploymentsResponse200Eq, SDKValidationError>;
3240
+ /** @internal */
3241
+ export declare const CancelDeploymentValueDeploymentsResponse2002$inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
3242
+ /** @internal */
3243
+ export type CancelDeploymentValueDeploymentsResponse2002$Outbound = {
3244
+ eq?: string | number | undefined;
3245
+ neq?: string | undefined;
3246
+ inc?: Array<string> | undefined;
3247
+ ninc?: Array<string> | undefined;
3248
+ pre?: string | undefined;
3249
+ suf?: string | undefined;
3250
+ re?: string | undefined;
3251
+ gt?: number | undefined;
3252
+ gte?: number | undefined;
3253
+ lt?: number | undefined;
3254
+ lte?: number | undefined;
3255
+ };
3256
+ /** @internal */
3257
+ export declare const CancelDeploymentValueDeploymentsResponse2002$outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponse2002>;
3258
+ /**
3259
+ * @internal
3260
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3261
+ */
3262
+ export declare namespace CancelDeploymentValueDeploymentsResponse2002$ {
3263
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse2002$inboundSchema` instead. */
3264
+ const inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2002, z.ZodTypeDef, unknown>;
3265
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse2002$outboundSchema` instead. */
3266
+ const outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2002$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponse2002>;
3267
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse2002$Outbound` instead. */
3268
+ type Outbound = CancelDeploymentValueDeploymentsResponse2002$Outbound;
3269
+ }
3270
+ export declare function cancelDeploymentValueDeploymentsResponse2002ToJSON(cancelDeploymentValueDeploymentsResponse2002: CancelDeploymentValueDeploymentsResponse2002): string;
3271
+ export declare function cancelDeploymentValueDeploymentsResponse2002FromJSON(jsonString: string): SafeParseResult<CancelDeploymentValueDeploymentsResponse2002, SDKValidationError>;
3272
+ /** @internal */
3273
+ export declare const CancelDeploymentMissingDeploymentsValue$inboundSchema: z.ZodType<CancelDeploymentMissingDeploymentsValue, z.ZodTypeDef, unknown>;
3274
+ /** @internal */
3275
+ export type CancelDeploymentMissingDeploymentsValue$Outbound = CancelDeploymentValueDeploymentsResponse2002$Outbound | string;
3276
+ /** @internal */
3277
+ export declare const CancelDeploymentMissingDeploymentsValue$outboundSchema: z.ZodType<CancelDeploymentMissingDeploymentsValue$Outbound, z.ZodTypeDef, CancelDeploymentMissingDeploymentsValue>;
3278
+ /**
3279
+ * @internal
3280
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3281
+ */
3282
+ export declare namespace CancelDeploymentMissingDeploymentsValue$ {
3283
+ /** @deprecated use `CancelDeploymentMissingDeploymentsValue$inboundSchema` instead. */
3284
+ const inboundSchema: z.ZodType<CancelDeploymentMissingDeploymentsValue, z.ZodTypeDef, unknown>;
3285
+ /** @deprecated use `CancelDeploymentMissingDeploymentsValue$outboundSchema` instead. */
3286
+ const outboundSchema: z.ZodType<CancelDeploymentMissingDeploymentsValue$Outbound, z.ZodTypeDef, CancelDeploymentMissingDeploymentsValue>;
3287
+ /** @deprecated use `CancelDeploymentMissingDeploymentsValue$Outbound` instead. */
3288
+ type Outbound = CancelDeploymentMissingDeploymentsValue$Outbound;
3289
+ }
3290
+ export declare function cancelDeploymentMissingDeploymentsValueToJSON(cancelDeploymentMissingDeploymentsValue: CancelDeploymentMissingDeploymentsValue): string;
3291
+ export declare function cancelDeploymentMissingDeploymentsValueFromJSON(jsonString: string): SafeParseResult<CancelDeploymentMissingDeploymentsValue, SDKValidationError>;
3292
+ /** @internal */
3008
3293
  export declare const CancelDeploymentMissing2$inboundSchema: z.ZodType<CancelDeploymentMissing2, z.ZodTypeDef, unknown>;
3009
3294
  /** @internal */
3010
3295
  export type CancelDeploymentMissing2$Outbound = {
3011
3296
  type: string;
3012
3297
  key: string;
3013
- value?: string | undefined;
3298
+ value?: CancelDeploymentValueDeploymentsResponse2002$Outbound | string | undefined;
3014
3299
  };
3015
3300
  /** @internal */
3016
3301
  export declare const CancelDeploymentMissing2$outboundSchema: z.ZodType<CancelDeploymentMissing2$Outbound, z.ZodTypeDef, CancelDeploymentMissing2>;
@@ -3047,11 +3332,83 @@ export declare namespace CancelDeploymentMissingType$ {
3047
3332
  }>;
3048
3333
  }
3049
3334
  /** @internal */
3335
+ export declare const CancelDeploymentValueDeploymentsResponseEq$inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponseEq, z.ZodTypeDef, unknown>;
3336
+ /** @internal */
3337
+ export type CancelDeploymentValueDeploymentsResponseEq$Outbound = string | number;
3338
+ /** @internal */
3339
+ export declare const CancelDeploymentValueDeploymentsResponseEq$outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponseEq$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponseEq>;
3340
+ /**
3341
+ * @internal
3342
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3343
+ */
3344
+ export declare namespace CancelDeploymentValueDeploymentsResponseEq$ {
3345
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponseEq$inboundSchema` instead. */
3346
+ const inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponseEq, z.ZodTypeDef, unknown>;
3347
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponseEq$outboundSchema` instead. */
3348
+ const outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponseEq$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponseEq>;
3349
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponseEq$Outbound` instead. */
3350
+ type Outbound = CancelDeploymentValueDeploymentsResponseEq$Outbound;
3351
+ }
3352
+ export declare function cancelDeploymentValueDeploymentsResponseEqToJSON(cancelDeploymentValueDeploymentsResponseEq: CancelDeploymentValueDeploymentsResponseEq): string;
3353
+ export declare function cancelDeploymentValueDeploymentsResponseEqFromJSON(jsonString: string): SafeParseResult<CancelDeploymentValueDeploymentsResponseEq, SDKValidationError>;
3354
+ /** @internal */
3355
+ export declare const CancelDeploymentValueDeploymentsResponse2$inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
3356
+ /** @internal */
3357
+ export type CancelDeploymentValueDeploymentsResponse2$Outbound = {
3358
+ eq?: string | number | undefined;
3359
+ neq?: string | undefined;
3360
+ inc?: Array<string> | undefined;
3361
+ ninc?: Array<string> | undefined;
3362
+ pre?: string | undefined;
3363
+ suf?: string | undefined;
3364
+ re?: string | undefined;
3365
+ gt?: number | undefined;
3366
+ gte?: number | undefined;
3367
+ lt?: number | undefined;
3368
+ lte?: number | undefined;
3369
+ };
3370
+ /** @internal */
3371
+ export declare const CancelDeploymentValueDeploymentsResponse2$outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponse2>;
3372
+ /**
3373
+ * @internal
3374
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3375
+ */
3376
+ export declare namespace CancelDeploymentValueDeploymentsResponse2$ {
3377
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse2$inboundSchema` instead. */
3378
+ const inboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2, z.ZodTypeDef, unknown>;
3379
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse2$outboundSchema` instead. */
3380
+ const outboundSchema: z.ZodType<CancelDeploymentValueDeploymentsResponse2$Outbound, z.ZodTypeDef, CancelDeploymentValueDeploymentsResponse2>;
3381
+ /** @deprecated use `CancelDeploymentValueDeploymentsResponse2$Outbound` instead. */
3382
+ type Outbound = CancelDeploymentValueDeploymentsResponse2$Outbound;
3383
+ }
3384
+ export declare function cancelDeploymentValueDeploymentsResponse2ToJSON(cancelDeploymentValueDeploymentsResponse2: CancelDeploymentValueDeploymentsResponse2): string;
3385
+ export declare function cancelDeploymentValueDeploymentsResponse2FromJSON(jsonString: string): SafeParseResult<CancelDeploymentValueDeploymentsResponse2, SDKValidationError>;
3386
+ /** @internal */
3387
+ export declare const CancelDeploymentMissingValue$inboundSchema: z.ZodType<CancelDeploymentMissingValue, z.ZodTypeDef, unknown>;
3388
+ /** @internal */
3389
+ export type CancelDeploymentMissingValue$Outbound = CancelDeploymentValueDeploymentsResponse2$Outbound | string;
3390
+ /** @internal */
3391
+ export declare const CancelDeploymentMissingValue$outboundSchema: z.ZodType<CancelDeploymentMissingValue$Outbound, z.ZodTypeDef, CancelDeploymentMissingValue>;
3392
+ /**
3393
+ * @internal
3394
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3395
+ */
3396
+ export declare namespace CancelDeploymentMissingValue$ {
3397
+ /** @deprecated use `CancelDeploymentMissingValue$inboundSchema` instead. */
3398
+ const inboundSchema: z.ZodType<CancelDeploymentMissingValue, z.ZodTypeDef, unknown>;
3399
+ /** @deprecated use `CancelDeploymentMissingValue$outboundSchema` instead. */
3400
+ const outboundSchema: z.ZodType<CancelDeploymentMissingValue$Outbound, z.ZodTypeDef, CancelDeploymentMissingValue>;
3401
+ /** @deprecated use `CancelDeploymentMissingValue$Outbound` instead. */
3402
+ type Outbound = CancelDeploymentMissingValue$Outbound;
3403
+ }
3404
+ export declare function cancelDeploymentMissingValueToJSON(cancelDeploymentMissingValue: CancelDeploymentMissingValue): string;
3405
+ export declare function cancelDeploymentMissingValueFromJSON(jsonString: string): SafeParseResult<CancelDeploymentMissingValue, SDKValidationError>;
3406
+ /** @internal */
3050
3407
  export declare const CancelDeploymentMissing1$inboundSchema: z.ZodType<CancelDeploymentMissing1, z.ZodTypeDef, unknown>;
3051
3408
  /** @internal */
3052
3409
  export type CancelDeploymentMissing1$Outbound = {
3053
3410
  type: string;
3054
- value: string;
3411
+ value: CancelDeploymentValueDeploymentsResponse2$Outbound | string;
3055
3412
  };
3056
3413
  /** @internal */
3057
3414
  export declare const CancelDeploymentMissing1$outboundSchema: z.ZodType<CancelDeploymentMissing1$Outbound, z.ZodTypeDef, CancelDeploymentMissing1>;
@@ -3090,6 +3447,48 @@ export declare namespace CancelDeploymentRoutesMissing$ {
3090
3447
  export declare function cancelDeploymentRoutesMissingToJSON(cancelDeploymentRoutesMissing: CancelDeploymentRoutesMissing): string;
3091
3448
  export declare function cancelDeploymentRoutesMissingFromJSON(jsonString: string): SafeParseResult<CancelDeploymentRoutesMissing, SDKValidationError>;
3092
3449
  /** @internal */
3450
+ export declare const CancelDeploymentRoutesAction$inboundSchema: z.ZodNativeEnum<typeof CancelDeploymentRoutesAction>;
3451
+ /** @internal */
3452
+ export declare const CancelDeploymentRoutesAction$outboundSchema: z.ZodNativeEnum<typeof CancelDeploymentRoutesAction>;
3453
+ /**
3454
+ * @internal
3455
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3456
+ */
3457
+ export declare namespace CancelDeploymentRoutesAction$ {
3458
+ /** @deprecated use `CancelDeploymentRoutesAction$inboundSchema` instead. */
3459
+ const inboundSchema: z.ZodNativeEnum<{
3460
+ readonly Challenge: "challenge";
3461
+ readonly Deny: "deny";
3462
+ }>;
3463
+ /** @deprecated use `CancelDeploymentRoutesAction$outboundSchema` instead. */
3464
+ const outboundSchema: z.ZodNativeEnum<{
3465
+ readonly Challenge: "challenge";
3466
+ readonly Deny: "deny";
3467
+ }>;
3468
+ }
3469
+ /** @internal */
3470
+ export declare const CancelDeploymentRoutesMitigate$inboundSchema: z.ZodType<CancelDeploymentRoutesMitigate, z.ZodTypeDef, unknown>;
3471
+ /** @internal */
3472
+ export type CancelDeploymentRoutesMitigate$Outbound = {
3473
+ action: string;
3474
+ };
3475
+ /** @internal */
3476
+ export declare const CancelDeploymentRoutesMitigate$outboundSchema: z.ZodType<CancelDeploymentRoutesMitigate$Outbound, z.ZodTypeDef, CancelDeploymentRoutesMitigate>;
3477
+ /**
3478
+ * @internal
3479
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3480
+ */
3481
+ export declare namespace CancelDeploymentRoutesMitigate$ {
3482
+ /** @deprecated use `CancelDeploymentRoutesMitigate$inboundSchema` instead. */
3483
+ const inboundSchema: z.ZodType<CancelDeploymentRoutesMitigate, z.ZodTypeDef, unknown>;
3484
+ /** @deprecated use `CancelDeploymentRoutesMitigate$outboundSchema` instead. */
3485
+ const outboundSchema: z.ZodType<CancelDeploymentRoutesMitigate$Outbound, z.ZodTypeDef, CancelDeploymentRoutesMitigate>;
3486
+ /** @deprecated use `CancelDeploymentRoutesMitigate$Outbound` instead. */
3487
+ type Outbound = CancelDeploymentRoutesMitigate$Outbound;
3488
+ }
3489
+ export declare function cancelDeploymentRoutesMitigateToJSON(cancelDeploymentRoutesMitigate: CancelDeploymentRoutesMitigate): string;
3490
+ export declare function cancelDeploymentRoutesMitigateFromJSON(jsonString: string): SafeParseResult<CancelDeploymentRoutesMitigate, SDKValidationError>;
3491
+ /** @internal */
3093
3492
  export declare const RoutesLocale$inboundSchema: z.ZodType<RoutesLocale, z.ZodTypeDef, unknown>;
3094
3493
  /** @internal */
3095
3494
  export type RoutesLocale$Outbound = {
@@ -3132,6 +3531,7 @@ export type CancelDeploymentRoutes1$Outbound = {
3132
3531
  status?: number | undefined;
3133
3532
  has?: Array<CancelDeploymentHas1$Outbound | CancelDeploymentHas2$Outbound> | undefined;
3134
3533
  missing?: Array<CancelDeploymentMissing1$Outbound | CancelDeploymentMissing2$Outbound> | undefined;
3534
+ mitigate?: CancelDeploymentRoutesMitigate$Outbound | undefined;
3135
3535
  locale?: RoutesLocale$Outbound | undefined;
3136
3536
  middlewarePath?: string | undefined;
3137
3537
  middlewareRawSrc?: Array<string> | undefined;