@scaleleap/amazon-marketplaces
Advanced tools
Comparing version 3.0.0 to 3.1.0
@@ -6,2 +6,9 @@ # Changelog | ||
# [3.1.0](https://github.com/ScaleLeap/amazon-marketplaces/compare/v3.0.0...v3.1.0) (2020-03-09) | ||
### Features | ||
* adds Amazon Advertising region enum ([5465d6e](https://github.com/ScaleLeap/amazon-marketplaces/commit/5465d6e5c7e7993939f9892d736a0a9b7299b771)) | ||
# [3.0.0](https://github.com/ScaleLeap/amazon-marketplaces/compare/v2.0.0...v3.0.0) (2020-03-09) | ||
@@ -8,0 +15,0 @@ |
@@ -69,2 +69,10 @@ /** | ||
} | ||
/** | ||
* Amazon Advertising API Regions | ||
*/ | ||
export declare enum AmazonMarketplaceAdvertisingRegion { | ||
NORTH_AMERICA = "NA", | ||
EUROPE = "EU", | ||
FAR_EAST = "FE" | ||
} | ||
export interface AmazonMarketplaceAdvertising { | ||
@@ -95,2 +103,6 @@ /** | ||
/** | ||
* Amazon Advertising API Regions | ||
*/ | ||
readonly region: AmazonMarketplaceAdvertisingRegion; | ||
/** | ||
* Minimum and maximum bids for each advertising type. | ||
@@ -97,0 +109,0 @@ */ |
@@ -75,2 +75,11 @@ "use strict"; | ||
})(AmazonMarketplaceAdvertisingTimeZone = exports.AmazonMarketplaceAdvertisingTimeZone || (exports.AmazonMarketplaceAdvertisingTimeZone = {})); | ||
/** | ||
* Amazon Advertising API Regions | ||
*/ | ||
var AmazonMarketplaceAdvertisingRegion; | ||
(function (AmazonMarketplaceAdvertisingRegion) { | ||
AmazonMarketplaceAdvertisingRegion["NORTH_AMERICA"] = "NA"; | ||
AmazonMarketplaceAdvertisingRegion["EUROPE"] = "EU"; | ||
AmazonMarketplaceAdvertisingRegion["FAR_EAST"] = "FE"; | ||
})(AmazonMarketplaceAdvertisingRegion = exports.AmazonMarketplaceAdvertisingRegion || (exports.AmazonMarketplaceAdvertisingRegion = {})); | ||
class AmazonMarketplace { | ||
@@ -77,0 +86,0 @@ constructor(amazonMarketplace) { |
@@ -8,2 +8,3 @@ "use strict"; | ||
countryCode, | ||
region: amazon_marketplace_1.AmazonMarketplaceAdvertisingRegion.EUROPE, | ||
bids: { | ||
@@ -10,0 +11,0 @@ sponsoredBrands: { |
@@ -14,2 +14,3 @@ "use strict"; | ||
countryCode: amazon_marketplace_1.AmazonMarketplaceAdvertisingCountryCode.AE, | ||
region: amazon_marketplace_1.AmazonMarketplaceAdvertisingRegion.EUROPE, | ||
bids: { | ||
@@ -16,0 +17,0 @@ sponsoredBrands: { |
@@ -14,2 +14,3 @@ "use strict"; | ||
countryCode: amazon_marketplace_1.AmazonMarketplaceAdvertisingCountryCode.AU, | ||
region: amazon_marketplace_1.AmazonMarketplaceAdvertisingRegion.FAR_EAST, | ||
bids: { | ||
@@ -16,0 +17,0 @@ sponsoredBrands: { |
@@ -18,2 +18,3 @@ "use strict"; | ||
countryCode: amazon_marketplace_1.AmazonMarketplaceAdvertisingCountryCode.UK, | ||
region: amazon_marketplace_1.AmazonMarketplaceAdvertisingRegion.EUROPE, | ||
bids: { | ||
@@ -20,0 +21,0 @@ sponsoredBrands: { |
@@ -14,2 +14,3 @@ "use strict"; | ||
countryCode: amazon_marketplace_1.AmazonMarketplaceAdvertisingCountryCode.JP, | ||
region: amazon_marketplace_1.AmazonMarketplaceAdvertisingRegion.FAR_EAST, | ||
bids: { | ||
@@ -16,0 +17,0 @@ sponsoredBrands: { |
@@ -14,2 +14,3 @@ "use strict"; | ||
countryCode: amazon_marketplace_1.AmazonMarketplaceAdvertisingCountryCode.US, | ||
region: amazon_marketplace_1.AmazonMarketplaceAdvertisingRegion.NORTH_AMERICA, | ||
bids: { | ||
@@ -16,0 +17,0 @@ sponsoredBrands: { |
{ | ||
"name": "@scaleleap/amazon-marketplaces", | ||
"version": "3.0.0", | ||
"version": "3.1.0", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
@@ -85,2 +85,3 @@ ![Amazon Marketplace Logo](https://raw.githubusercontent.com/ScaleLeap/amazon-marketplaces/master/amazon-marketplace.png) | ||
"countryCode": "CA", | ||
"region": "NA", | ||
"bids": { | ||
@@ -87,0 +88,0 @@ "sponsoredBrands": { |
@@ -73,2 +73,11 @@ /** | ||
/** | ||
* Amazon Advertising API Regions | ||
*/ | ||
export enum AmazonMarketplaceAdvertisingRegion { | ||
NORTH_AMERICA = 'NA', | ||
EUROPE = 'EU', | ||
FAR_EAST = 'FE', | ||
} | ||
export interface AmazonMarketplaceAdvertising { | ||
@@ -102,2 +111,7 @@ /** | ||
/** | ||
* Amazon Advertising API Regions | ||
*/ | ||
readonly region: AmazonMarketplaceAdvertisingRegion | ||
/** | ||
* Minimum and maximum bids for each advertising type. | ||
@@ -104,0 +118,0 @@ */ |
@@ -5,2 +5,3 @@ import { | ||
AmazonMarketplaceAdvertising, | ||
AmazonMarketplaceAdvertisingRegion, | ||
} from './amazon-marketplace' | ||
@@ -14,2 +15,3 @@ | ||
countryCode, | ||
region: AmazonMarketplaceAdvertisingRegion.EUROPE, | ||
bids: { | ||
@@ -16,0 +18,0 @@ sponsoredBrands: { |
@@ -7,2 +7,3 @@ import { | ||
AmazonMarketplaceAdvertisingCountryCode, | ||
AmazonMarketplaceAdvertisingRegion, | ||
} from '../amazon-marketplace' | ||
@@ -20,2 +21,3 @@ | ||
countryCode: AmazonMarketplaceAdvertisingCountryCode.AE, | ||
region: AmazonMarketplaceAdvertisingRegion.EUROPE, | ||
bids: { | ||
@@ -22,0 +24,0 @@ sponsoredBrands: { |
@@ -7,2 +7,3 @@ import { | ||
AmazonMarketplaceAdvertisingCountryCode, | ||
AmazonMarketplaceAdvertisingRegion, | ||
} from '../amazon-marketplace' | ||
@@ -20,2 +21,3 @@ | ||
countryCode: AmazonMarketplaceAdvertisingCountryCode.AU, | ||
region: AmazonMarketplaceAdvertisingRegion.FAR_EAST, | ||
bids: { | ||
@@ -22,0 +24,0 @@ sponsoredBrands: { |
@@ -7,2 +7,3 @@ import { | ||
AmazonMarketplaceAdvertisingCountryCode, | ||
AmazonMarketplaceAdvertisingRegion, | ||
} from '../amazon-marketplace' | ||
@@ -25,2 +26,3 @@ import { DE } from './DE' | ||
countryCode: AmazonMarketplaceAdvertisingCountryCode.UK, | ||
region: AmazonMarketplaceAdvertisingRegion.EUROPE, | ||
bids: { | ||
@@ -27,0 +29,0 @@ sponsoredBrands: { |
@@ -7,2 +7,3 @@ import { | ||
AmazonMarketplaceAdvertisingCountryCode, | ||
AmazonMarketplaceAdvertisingRegion, | ||
} from '../amazon-marketplace' | ||
@@ -20,2 +21,3 @@ | ||
countryCode: AmazonMarketplaceAdvertisingCountryCode.JP, | ||
region: AmazonMarketplaceAdvertisingRegion.FAR_EAST, | ||
bids: { | ||
@@ -22,0 +24,0 @@ sponsoredBrands: { |
@@ -7,2 +7,3 @@ import { | ||
AmazonMarketplaceAdvertisingCountryCode, | ||
AmazonMarketplaceAdvertisingRegion, | ||
} from '../amazon-marketplace' | ||
@@ -20,2 +21,3 @@ | ||
countryCode: AmazonMarketplaceAdvertisingCountryCode.US, | ||
region: AmazonMarketplaceAdvertisingRegion.NORTH_AMERICA, | ||
bids: { | ||
@@ -22,0 +24,0 @@ sponsoredBrands: { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
90686
1677
139
1789