@datenkraft/bb-fulfillment-api-ts-client
Version:
The fulfillment API TS Client enables you to work with the fulfillment API
166 lines (165 loc) • 9.61 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* Fulfillment API
* - alpha: Currently developed API version. Subject to major changes. - beta: A semi-stable early access version. New features can be added. Breaking changes are possible. - stable: The API is recommended for use in production. [Changelog](https://fulfillment-api.steve.niceshops.com/v2/docs/changelog.html) All data is transferred in UTF-8 encoding.\\ The API uses stateless HTTP. No cookies have to be kept.\\ Authentication via OAuth2 client credentials flow. [Privacy Policy](https://www.niceshops.com/en/dienstleistungen/data-privacy-policy) [Fulfillment API PHP client @Packagist](https://packagist.org/packages/datenkraft/bb-fulfillment-api-php-client)
*
* The version of the OpenAPI document: v2.beta
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.DiscoShopApi = exports.DiscoShopApiFactory = exports.DiscoShopApiFp = exports.DiscoShopApiAxiosParamCreator = void 0;
const axios_1 = __importDefault(require("axios"));
// URLSearchParams not necessarily used
// @ts-ignore
const url_1 = require("url");
// Some imports not used depending on template conditions
// @ts-ignore
const common_1 = require("../common");
// @ts-ignore
const base_1 = require("../base");
/**
* DiscoShopApi - axios parameter creator
* @export
*/
const DiscoShopApiAxiosParamCreator = function (configuration) {
return {
/**
* Get a list of shops from the DISCO.
* @summary Get a list of shops from the DISCO.
* @param {number} [page] The page to read. Default is the first page.
* @param {number} [pageSize] The maximum size per page is 100. Default is 100.
* @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
* @param {boolean} [filterOnlyNotAssigned] If true, only disco shops that are not linked to a Shop are returned.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiscoShopCollection: (page, pageSize, paginationMode, filterOnlyNotAssigned, options = {}) => __awaiter(this, void 0, void 0, function* () {
const localVarPath = `/disco-shop`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
const localVarHeaderParameter = {};
const localVarQueryParameter = {};
// authentication oAuthAuthorization required
// oauth required
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oAuthAuthorization", [], configuration);
// authentication bearerAuth required
// http bearer authentication required
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
if (page !== undefined) {
localVarQueryParameter['page'] = page;
}
if (pageSize !== undefined) {
localVarQueryParameter['pageSize'] = pageSize;
}
if (paginationMode !== undefined) {
localVarQueryParameter['paginationMode'] = paginationMode;
}
if (filterOnlyNotAssigned !== undefined) {
localVarQueryParameter['filter[onlyNotAssigned]'] = filterOnlyNotAssigned;
}
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
return {
url: (0, common_1.toPathString)(localVarUrlObj),
options: localVarRequestOptions,
};
}),
};
};
exports.DiscoShopApiAxiosParamCreator = DiscoShopApiAxiosParamCreator;
/**
* DiscoShopApi - functional programming interface
* @export
*/
const DiscoShopApiFp = function (configuration) {
const localVarAxiosParamCreator = (0, exports.DiscoShopApiAxiosParamCreator)(configuration);
return {
/**
* Get a list of shops from the DISCO.
* @summary Get a list of shops from the DISCO.
* @param {number} [page] The page to read. Default is the first page.
* @param {number} [pageSize] The maximum size per page is 100. Default is 100.
* @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
* @param {boolean} [filterOnlyNotAssigned] If true, only disco shops that are not linked to a Shop are returned.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiscoShopCollection(page, pageSize, paginationMode, filterOnlyNotAssigned, options) {
return __awaiter(this, void 0, void 0, function* () {
const localVarAxiosArgs = yield localVarAxiosParamCreator.getDiscoShopCollection(page, pageSize, paginationMode, filterOnlyNotAssigned, options);
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
});
},
};
};
exports.DiscoShopApiFp = DiscoShopApiFp;
/**
* DiscoShopApi - factory interface
* @export
*/
const DiscoShopApiFactory = function (configuration, basePath, axios) {
const localVarFp = (0, exports.DiscoShopApiFp)(configuration);
return {
/**
* Get a list of shops from the DISCO.
* @summary Get a list of shops from the DISCO.
* @param {number} [page] The page to read. Default is the first page.
* @param {number} [pageSize] The maximum size per page is 100. Default is 100.
* @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
* @param {boolean} [filterOnlyNotAssigned] If true, only disco shops that are not linked to a Shop are returned.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiscoShopCollection(page, pageSize, paginationMode, filterOnlyNotAssigned, options) {
return localVarFp.getDiscoShopCollection(page, pageSize, paginationMode, filterOnlyNotAssigned, options).then((request) => request(axios, basePath));
},
};
};
exports.DiscoShopApiFactory = DiscoShopApiFactory;
/**
* DiscoShopApi - object-oriented interface
* @export
* @class DiscoShopApi
* @extends {BaseAPI}
*/
class DiscoShopApi extends base_1.BaseAPI {
/**
* Get a list of shops from the DISCO.
* @summary Get a list of shops from the DISCO.
* @param {number} [page] The page to read. Default is the first page.
* @param {number} [pageSize] The maximum size per page is 100. Default is 100.
* @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
* @param {boolean} [filterOnlyNotAssigned] If true, only disco shops that are not linked to a Shop are returned.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof DiscoShopApi
*/
getDiscoShopCollection(page, pageSize, paginationMode, filterOnlyNotAssigned, options) {
return (0, exports.DiscoShopApiFp)(this.configuration).getDiscoShopCollection(page, pageSize, paginationMode, filterOnlyNotAssigned, options).then((request) => request(this.axios, this.basePath));
}
}
exports.DiscoShopApi = DiscoShopApi;