Skip to content

Commit

Permalink
chore: update api models
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyentoanit authored and Scale Bot committed Jun 24, 2024
1 parent 72b80ca commit a01f860
Show file tree
Hide file tree
Showing 24 changed files with 5,508 additions and 867 deletions.
14 changes: 14 additions & 0 deletions src/api-clients/amazon-warehousing-and-distribution-client.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { AwdApi, Configuration } from '../api-models/amazon-warehousing-and-distribution-model'
import { ApiClientHelpers } from '../helpers'
import { DEFAULT_API_BASE_PATH } from '../types'
import { APIConfigurationParameters } from '../types/api-clients/api-configuration-parameters'

export class AmazonWarehousingAndDistributionClient extends AwdApi {
constructor(parameters: APIConfigurationParameters) {
const axios = ApiClientHelpers.getAxiosInstance(parameters)

const configuration = new Configuration(parameters)

super(configuration, DEFAULT_API_BASE_PATH, axios)
}
}
1 change: 1 addition & 0 deletions src/api-clients/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './amazon-warehousing-and-distribution-client'
export * from './aplus-content-api-client'
export * from './application-management-api-client'
export * from './catalog-items-api-client'
Expand Down
Loading

0 comments on commit a01f860

Please sign in to comment.