diff --git a/src/index.ts b/src/index.ts index 8bd0769a1..a0b661b5b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -40,3 +40,4 @@ export * from './operations/recommendations/types' export * from './operations/reports/index' export * from './operations/snapshots/types' export * from './operations/stores/types' +export * from './amazon-advertising' diff --git a/test/index.test.ts b/test/index.test.ts index 86fa8ca33..beed47d01 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -1,4 +1,5 @@ import * as index from '../src/index' +import * as entrypointClass from '../src/amazon-advertising' import * as adGroupTypes from '../src/operations/ad-groups/types' import { CampaignBiddingAdjustmentsPredicate } from '../src/operations/bidding/campaign-bidding-adjustments-predicate' import { CampaignBiddingStrategy } from '../src/operations/bidding/campaign-bidding-strategy' @@ -15,6 +16,12 @@ import * as reportTypes from '../src/operations/reports/index' import * as snapshotTypes from '../src/operations/snapshots/types' describe('index', () => { + describe('amazon advertising', () => { + it('should export main entry class', () => { + expect(index.AmazonAdvertising).toEqual(entrypointClass.AmazonAdvertising) + }) + }) + describe('ad group', () => { it('should export all enums', () => { expect(index.AdGroupState).toEqual(adGroupTypes.AdGroupState)