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
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
3
|
var components = require('./components-l5748yis.cjs');
|
|
4
|
-
var schemas = require('./schemas-
|
|
4
|
+
var schemas = require('./schemas-gb9msbpl.cjs');
|
|
5
5
|
var types = require('./types.cjs');
|
|
6
6
|
|
|
7
7
|
function formEncoded(data) {
|
package/dist/index.d.ts
CHANGED
|
@@ -378,16 +378,6 @@ type Network = {
|
|
|
378
378
|
*/
|
|
379
379
|
createdAt: number;
|
|
380
380
|
egressIpAddresses?: string[] | undefined;
|
|
381
|
-
/**
|
|
382
|
-
* @description 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.
|
|
383
|
-
* @type array | undefined
|
|
384
|
-
*/
|
|
385
|
-
reservedEgressIpAddresses?: string[] | undefined;
|
|
386
|
-
/**
|
|
387
|
-
* @description 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.
|
|
388
|
-
* @type string | undefined
|
|
389
|
-
*/
|
|
390
|
-
egressCidrBlock?: string | undefined;
|
|
391
381
|
/**
|
|
392
382
|
* @description Metadata about any AWS Route53 Hosted Zones associated with the Network.
|
|
393
383
|
* @type object | undefined
|
|
@@ -43058,8 +43048,6 @@ declare const networkSchema: z.ZodObject<{
|
|
|
43058
43048
|
cidr: z.ZodString;
|
|
43059
43049
|
createdAt: z.ZodNumber;
|
|
43060
43050
|
egressIpAddresses: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
43061
|
-
reservedEgressIpAddresses: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
43062
|
-
egressCidrBlock: z.ZodOptional<z.ZodString>;
|
|
43063
43051
|
hostedZones: z.ZodOptional<z.ZodObject<{
|
|
43064
43052
|
count: z.ZodNumber;
|
|
43065
43053
|
}, z.core.$strip>>;
|