-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Features:** - Support Amazon warehousing and distribution **Updates:** - catalog items api model v20220401: Support `classifications` data sets - fba inventory api model: Support sandbox-only operations Co-authored-by: nguyentoanit <[email protected]> Co-authored-by: Toan Nguyen <[email protected]> Co-authored-by: Roman <[email protected]>
- Loading branch information
1 parent
cee09c2
commit f029e04
Showing
41 changed files
with
6,041 additions
and
1,354 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/api-clients/amazon-warehousing-and-distribution-client.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.