-
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.
feat: Write glue code to link generated code (GHORG-15) (#9)
* feat: implement all api clients
- Loading branch information
1 parent
9083f3f
commit 994d0ea
Showing
36 changed files
with
718 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,19 @@ | ||
import { AplusContentApi } from '../api-models/aplus-content-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class AplusContentApiClient extends AplusContentApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { AuthorizationApi } from '../api-models/authorization-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class AuthorizationApiClient extends AuthorizationApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { CatalogApi } from '../api-models/catalog-items-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class CatalogApiClient extends CatalogApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { DefaultApi } from '../api-models/finances-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class DefaultApiClient extends DefaultApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { FbaInboundApi } from '../api-models/fba-inbound-eligibility-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class FbaInboundApiClient extends FbaInboundApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { FbaInventoryApi } from '../api-models/fba-inventory-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class FbaInventoryApiClient extends FbaInventoryApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { FeedsApi } from '../api-models/feeds-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class FeedsApiClient extends FeedsApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { FeesApi } from '../api-models/product-fees-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class FeesApiClient extends FeesApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { FbaInboundApi } from '../api-models/fulfillment-inbound-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
// TODO: duplicated API model with fba inbound | ||
export class FulfillmentFbaInboundApiClient extends FbaInboundApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { FbaOutboundApi } from '../api-models/fulfillment-outbound-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
// TODO: duplicated API model with fba outbound | ||
export class FulfillmentFbaOutboundApiClient extends FbaOutboundApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export * from './aplus-content-api-client' | ||
export * from './authorization-api-client' | ||
export * from './catalog-api-client' | ||
export * from './fba-inbound-api-client' | ||
export * from './fba-inventory-api-client' | ||
export * from './small-and-light-api-client' | ||
export * from './feeds-api-client' | ||
export * from './default-api-client' | ||
export * from './fulfillment-fba-inbound-api-client' | ||
export * from './fulfillment-fba-outbound-api-client' | ||
export * from './merchant-fulfillment-api-client' | ||
export * from './messaging-api-client' | ||
export * from './notifications-api-client' | ||
export * from './orders-api-client' | ||
export * from './fees-api-client' | ||
export * from './product-pricing-api-client' | ||
export * from './reports-api-client' | ||
export * from './sales-api-client' | ||
export * from './sellers-api-client' | ||
export * from './service-api-client' | ||
export * from './shipping-api-client' | ||
export * from './solicitations-api-client' | ||
export * from './uploads-api-client' |
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,19 @@ | ||
import { MerchantFulfillmentApi } from '../api-models/merchant-fulfillment-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class MerchantFulfillmentApiClient extends MerchantFulfillmentApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { MessagingApi } from '../api-models/messaging-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class MessagingApiClient extends MessagingApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { NotificationsApi } from '../api-models/notifications-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class NotificationsApiClient extends NotificationsApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { OrdersV0Api } from '../api-models/orders-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
// TODO: remove V0 in client name when generate automatically | ||
export class OrdersApiClient extends OrdersV0Api { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { ProductPricingApi } from '../api-models/product-pricing-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class ProductPricingApiClient extends ProductPricingApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { ReportsApi } from '../api-models/reports-api-model' | ||
import { ApiClientHelpers } from '../helpers' | ||
import { APIConfigurationParameters } from '../types/api-configuration-parameters' | ||
|
||
export class ReportsApiClient extends ReportsApi { | ||
constructor(parameters?: APIConfigurationParameters) { | ||
const axios = ApiClientHelpers.assertAxiosInstance(parameters) | ||
const basePath = ApiClientHelpers.getDefaultBasePath() | ||
|
||
super( | ||
{ | ||
isJsonMime: ApiClientHelpers.isJsonMime, | ||
...parameters, | ||
}, | ||
basePath, | ||
axios, | ||
) | ||
} | ||
} |
Oops, something went wrong.