@cloudflare/types
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -6,2 +6,10 @@ # Change Log | ||
<a name="1.0.3"></a> | ||
## [1.0.3](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.2...@cloudflare/types@1.0.3) (2019-01-22) | ||
**Note:** Version bump only for package @cloudflare/types | ||
<a name="1.0.2"></a> | ||
@@ -8,0 +16,0 @@ ## [1.0.2](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.1...@cloudflare/types@1.0.2) (2019-01-09) |
{ | ||
"name": "@cloudflare/types", | ||
"description": "", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"types": "./src", | ||
@@ -6,0 +6,0 @@ "main": "lib/index.js", |
@@ -38,1 +38,12 @@ export interface IAccount { | ||
} | ||
export interface IAccountQuotaValues { | ||
remaining: number; | ||
used: number; | ||
} | ||
export interface IAccountQuota { | ||
bulk_pro?: IAccountQuotaValues; | ||
bulk_biz?: IAccountQuotaValues; | ||
bulk_ent?: IAccountQuotaValues; | ||
} |
@@ -42,2 +42,4 @@ export interface IZone { | ||
export type TPlanId = 'free' | 'pro' | 'business' | 'enterprise'; | ||
export interface IZonePlan { | ||
@@ -51,5 +53,5 @@ id: string; | ||
can_subscribe: boolean; | ||
legacy_id: string; | ||
legacy_id: TPlanId; | ||
legacy_discount: boolean; | ||
externally_managed: boolean; | ||
} |
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
13993
492