diff --git a/src/index.ts b/src/index.ts index c253abbe5..e9932649e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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' diff --git a/src/maketplace.ts b/src/maketplace.ts new file mode 100644 index 000000000..6fe942f80 --- /dev/null +++ b/src/maketplace.ts @@ -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 + } + } +}