Skip to content

Commit

Permalink
feat: implement marketplace interface
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyentoanit committed May 17, 2020
1 parent 50585d9 commit ee6ab36
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ export * from './operations/reports/index'
export * from './operations/snapshots/types'
export * from './operations/stores/types'
export * from './amazon-advertising'
export * from './maketplace'
25 changes: 25 additions & 0 deletions src/maketplace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
export interface Marketplace {
/**
* Amazon Marketplace Name.
*/
name: string

advertising: {
region: {
/**
* Authorization URI.
*/
authorizationUri: string

/**
* Access Token URI
*/
accessTokenUri: string

/**
* Access endpoint URI.
*/
endpoint: string
}
}
}

0 comments on commit ee6ab36

Please sign in to comment.