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.
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +0 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{schemas-ev1tjsfi.cjs → schemas-gb9msbpl.cjs} +0 -2
- package/dist/{schemas-jkpfjygi.js → schemas-m4ld9x7a.js} +0 -2
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +0 -2
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.d.mts +0 -10
- package/dist/types.d.mts.map +1 -1
- package/package.json +3 -3
|
@@ -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
package/dist/schemas.d.mts
CHANGED
|
@@ -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>>;
|