@cloudflare/types
Advanced tools
Comparing version 1.0.33 to 1.0.34
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.0.34](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.33...@cloudflare/types@1.0.34) (2019-06-12) | ||
**Note:** Version bump only for package @cloudflare/types | ||
## [1.0.33](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.32...@cloudflare/types@1.0.33) (2019-05-29) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@cloudflare/types", | ||
"description": "", | ||
"version": "1.0.33", | ||
"version": "1.0.34", | ||
"types": "./src", | ||
@@ -23,3 +23,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "39db950442130ae3572708aa2f0373fb49514bb9" | ||
"gitHead": "fcc36da711c533387b462b8697d5fbb9cb3cc5ee" | ||
} |
@@ -9,21 +9,20 @@ import { TPlanId } from './zone'; | ||
company?: string; | ||
address: string; | ||
address?: string; | ||
address2?: string; | ||
city: string; | ||
billing_email?: string; | ||
city?: string; | ||
state?: string; | ||
zipcode: string; | ||
country: string; | ||
telephone?: string; | ||
card_expiry_month?: number; | ||
card_expiry_year?: number; | ||
card_number?: string; | ||
created_on?: string; | ||
edited_on?: string; | ||
vat?: string; | ||
payment_email?: string; | ||
payment_first_name?: string; | ||
payment_last_name?: string; | ||
payment_first_name: string; | ||
payment_last_name: string; | ||
payment_address?: string; | ||
payment_country?: string; | ||
payment_zipcode?: string; | ||
payment_address2?: string; | ||
payment_country: string; | ||
payment_zipcode: string; | ||
payment_state?: string; | ||
@@ -34,4 +33,24 @@ payment_city?: string; | ||
use_legacy?: boolean; | ||
profile_type?: 'payment_method' | 'billing' | 'invoice'; | ||
validation_code?: string; | ||
payment_nonce: IBFResponse['nonce']; | ||
device_data: IBFResponse['deviceDetails']; | ||
} | ||
export type TDeviceDetails = { | ||
device_session_id: string; | ||
fraud_merchant_id: string; | ||
correlation_id: string; | ||
}; | ||
export interface IBFResponse { | ||
nonce: string; | ||
deviceDetails: TDeviceDetails; | ||
details: { | ||
firstName: string; | ||
lastName: string; | ||
email: string; | ||
}; | ||
} | ||
export interface IBillingTransaction { | ||
@@ -95,1 +114,17 @@ id: string; | ||
| 'CF_PRO_FREE'; | ||
export interface IBillingAddress | ||
extends Pick< | ||
IBillingProfile, | ||
| 'address' | ||
| 'address2' | ||
| 'city' | ||
| 'state' | ||
| 'zipcode' | ||
| 'country' | ||
| 'validation_code' | ||
> {} | ||
export interface IAddressValidation { | ||
validated_addresses: Array<IBillingAddress>; | ||
} |
@@ -19,6 +19,25 @@ import { IZone } from './zone'; | ||
proxied?: boolean; | ||
ttl: number; | ||
type: string; | ||
ttl: 1 | 120 | 300 | 600 | 900 | 1800 | 3600 | 7200 | 18000 | 43200 | 86400; | ||
type: | ||
| 'A' | ||
| 'AAAA' | ||
| 'CNAME' | ||
| 'CAA' | ||
| 'CERT' | ||
| 'DNSKEY' | ||
| 'DS' | ||
| 'LOC' | ||
| 'MX' | ||
| 'NAPTR' | ||
| 'NS' | ||
| 'PTR' | ||
| 'SRV' | ||
| 'SPF' | ||
| 'TXT' | ||
| 'SMIMEA' | ||
| 'SSHFP' | ||
| 'TLSA' | ||
| 'URI'; | ||
zone_id?: IZone['id']; | ||
zone_name?: IZone['name']; | ||
} |
@@ -43,3 +43,2 @@ export interface ISettings { | ||
| 'server_side_exclude' | ||
| 'sha1_support' | ||
| 'sort_query_string_for_cache' | ||
@@ -46,0 +45,0 @@ | 'ssl' |
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
34532
1105