shipstation-client
Version:
ShipStation V2 SDK
204 lines (184 loc) • 8.68 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* ShipStation API v2
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { Configuration } from '../configuration';
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
import globalAxios from 'axios';
// Some imports not used depending on template conditions
// @ts-ignore
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
// @ts-ignore
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
// @ts-ignore
import type { CreateTagResponseBody } from '../models';
// @ts-ignore
import type { ErrorResponseBody } from '../models';
// @ts-ignore
import type { ListTagsResponseBody } from '../models';
/**
* TagsApi - axios parameter creator
* @export
*/
export const TagsApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
* Create a new Tag for customizing how you track your shipments
* @summary Create a new tag
* @param {string} tagName
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
createTag: async (tagName: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'tagName' is not null or undefined
assertParamExists('createTag', 'tagName', tagName)
const localVarPath = `/v2/tags/{tag_name}`
.replace(`{${"tag_name"}}`, encodeURIComponent(String(tagName)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication api_keys required
await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
/**
* Get a list of all tags associated with an account.
* @summary Get tags
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listTags: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/v2/tags`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication api_keys required
await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
}
};
/**
* TagsApi - functional programming interface
* @export
*/
export const TagsApiFp = function(configuration?: Configuration) {
const localVarAxiosParamCreator = TagsApiAxiosParamCreator(configuration)
return {
/**
* Create a new Tag for customizing how you track your shipments
* @summary Create a new tag
* @param {string} tagName
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async createTag(tagName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTagResponseBody>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.createTag(tagName, options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['TagsApi.createTag']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
/**
* Get a list of all tags associated with an account.
* @summary Get tags
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async listTags(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTagsResponseBody>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.listTags(options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['TagsApi.listTags']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
}
};
/**
* TagsApi - factory interface
* @export
*/
export const TagsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
const localVarFp = TagsApiFp(configuration)
return {
/**
* Create a new Tag for customizing how you track your shipments
* @summary Create a new tag
* @param {string} tagName
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
createTag(tagName: string, options?: RawAxiosRequestConfig): AxiosPromise<CreateTagResponseBody> {
return localVarFp.createTag(tagName, options).then((request) => request(axios, basePath));
},
/**
* Get a list of all tags associated with an account.
* @summary Get tags
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
listTags(options?: RawAxiosRequestConfig): AxiosPromise<ListTagsResponseBody> {
return localVarFp.listTags(options).then((request) => request(axios, basePath));
},
};
};
/**
* TagsApi - object-oriented interface
* @export
* @class TagsApi
* @extends {BaseAPI}
*/
export class TagsApi extends BaseAPI {
/**
* Create a new Tag for customizing how you track your shipments
* @summary Create a new tag
* @param {string} tagName
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TagsApi
*/
public createTag(tagName: string, options?: RawAxiosRequestConfig) {
return TagsApiFp(this.configuration).createTag(tagName, options).then((request) => request(this.axios, this.basePath));
}
/**
* Get a list of all tags associated with an account.
* @summary Get tags
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TagsApi
*/
public listTags(options?: RawAxiosRequestConfig) {
return TagsApiFp(this.configuration).listTags(options).then((request) => request(this.axios, this.basePath));
}
}