vercel-api-js 1.14.1 → 1.14.2

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.
@@ -156,8 +156,6 @@ const networkSchema = z__namespace.object({
156
156
  cidr: z__namespace.string().describe("The CIDR range of the Network."),
157
157
  createdAt: z__namespace.number().describe("The date at which the Network was created, represented as a UNIX timestamp since EPOCH."),
158
158
  egressIpAddresses: z__namespace.array(z__namespace.string()).optional(),
159
- reservedEgressIpAddresses: z__namespace.array(z__namespace.string()).optional().describe("The BYOIP egress (NAT gateway) IP addresses pre-allocated for this network from the region's egress IPAM pool. Present in regions that have an egress pool. Customers can allowlist these addresses before egress is switched over to them, since they are reserved ahead of the switch."),
160
- egressCidrBlock: z__namespace.string().optional().describe("The single contiguous CIDR block from which all egress (NAT gateway) IP addresses are allocated. Present only for networks created with the egress CIDR block feature enabled. Customers can allowlist this range instead of individual egress IPs so it keeps working when AZs are added."),
161
159
  hostedZones: z__namespace.object({
162
160
  count: z__namespace.number().describe("The number of AWS Route53 Hosted Zones associated with the Network.")
163
161
  }).optional().describe("Metadata about any AWS Route53 Hosted Zones associated with the Network."),
@@ -136,8 +136,6 @@ const networkSchema = z.object({
136
136
  cidr: z.string().describe("The CIDR range of the Network."),
137
137
  createdAt: z.number().describe("The date at which the Network was created, represented as a UNIX timestamp since EPOCH."),
138
138
  egressIpAddresses: z.array(z.string()).optional(),
139
- reservedEgressIpAddresses: z.array(z.string()).optional().describe("The BYOIP egress (NAT gateway) IP addresses pre-allocated for this network from the region's egress IPAM pool. Present in regions that have an egress pool. Customers can allowlist these addresses before egress is switched over to them, since they are reserved ahead of the switch."),
140
- egressCidrBlock: z.string().optional().describe("The single contiguous CIDR block from which all egress (NAT gateway) IP addresses are allocated. Present only for networks created with the egress CIDR block feature enabled. Customers can allowlist this range instead of individual egress IPs so it keeps working when AZs are added."),
141
139
  hostedZones: z.object({
142
140
  count: z.number().describe("The number of AWS Route53 Hosted Zones associated with the Network.")
143
141
  }).optional().describe("Metadata about any AWS Route53 Hosted Zones associated with the Network."),
package/dist/schemas.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
- var schemas = require('./schemas-ev1tjsfi.cjs');
3
+ var schemas = require('./schemas-gb9msbpl.cjs');
4
4
 
5
5
 
6
6
 
@@ -114,8 +114,6 @@ declare const networkSchema: z.ZodObject<{
114
114
  cidr: z.ZodString;
115
115
  createdAt: z.ZodNumber;
116
116
  egressIpAddresses: z.ZodOptional<z.ZodArray<z.ZodString>>;
117
- reservedEgressIpAddresses: z.ZodOptional<z.ZodArray<z.ZodString>>;
118
- egressCidrBlock: z.ZodOptional<z.ZodString>;
119
117
  hostedZones: z.ZodOptional<z.ZodObject<{
120
118
  count: z.ZodNumber;
121
119
  }, z.core.$strip>>;