@cloudflare/types
Advanced tools
Comparing version 1.0.7 to 1.0.8
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.0.8](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.7...@cloudflare/types@1.0.8) (2019-02-23) | ||
**Note:** Version bump only for package @cloudflare/types | ||
## [1.0.7](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.6...@cloudflare/types@1.0.7) (2019-02-20) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@cloudflare/types", | ||
"description": "", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"types": "./src", | ||
@@ -20,3 +20,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "916c2bb2b75d79bcc1d28bb43ad053c3222dc984" | ||
"gitHead": "87a03891ba96b8c8f08ca8225cf8ae3d3a8cbf35" | ||
} |
export interface IZone { | ||
id: string; | ||
name: string; | ||
status: string; | ||
status: 'active' | 'pending' | 'moved' | 'deactivated' | 'paused'; | ||
paused: boolean; | ||
@@ -20,2 +20,10 @@ type: string; | ||
plan: IZonePlan; | ||
vanity_name_servers?: string[]; | ||
vanity_name_servers_ips?: { | ||
[Key: string]: { | ||
ipv4: string; | ||
ipv6: string; | ||
}; | ||
}; | ||
verification_key: string; | ||
} | ||
@@ -22,0 +30,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17333
587