|
|
@@ -0,0 +1,514 @@ |
|
|
|
|
|
/** |
|
|
|
|
|
* Matsen API Platform |
|
|
|
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) |
|
|
|
|
|
* |
|
|
|
|
|
* The version of the OpenAPI document: 1.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. |
|
|
|
|
|
*/ |
|
|
|
|
|
/* tslint:disable:no-unused-variable member-ordering */ |
|
|
|
|
|
|
|
|
|
|
|
import { Inject, Injectable, Optional } from '@angular/core'; |
|
|
|
|
|
import { HttpClient, HttpHeaders, HttpParams, |
|
|
|
|
|
HttpResponse, HttpEvent, HttpParameterCodec, HttpContext |
|
|
|
|
|
} from '@angular/common/http'; |
|
|
|
|
|
import { CustomHttpParameterCodec } from '../encoder'; |
|
|
|
|
|
import { Observable } from 'rxjs'; |
|
|
|
|
|
|
|
|
|
|
|
// @ts-ignore |
|
|
|
|
|
import { ApiProductsGetCollection200Response } from '../model/apiProductsGetCollection200Response'; |
|
|
|
|
|
// @ts-ignore |
|
|
|
|
|
import { ApiProductsGetCollection200Response1 } from '../model/apiProductsGetCollection200Response1'; |
|
|
|
|
|
// @ts-ignore |
|
|
|
|
|
import { Product } from '../model/product'; |
|
|
|
|
|
// @ts-ignore |
|
|
|
|
|
import { ProductJsonhal } from '../model/productJsonhal'; |
|
|
|
|
|
// @ts-ignore |
|
|
|
|
|
import { ProductJsonld } from '../model/productJsonld'; |
|
|
|
|
|
|
|
|
|
|
|
// @ts-ignore |
|
|
|
|
|
import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; |
|
|
|
|
|
import { Configuration } from '../configuration'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Injectable({ |
|
|
|
|
|
providedIn: 'root' |
|
|
|
|
|
}) |
|
|
|
|
|
export class ProductService { |
|
|
|
|
|
|
|
|
|
|
|
protected basePath = 'http://localhost'; |
|
|
|
|
|
public defaultHeaders = new HttpHeaders(); |
|
|
|
|
|
public configuration = new Configuration(); |
|
|
|
|
|
public encoder: HttpParameterCodec; |
|
|
|
|
|
|
|
|
|
|
|
constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string|string[], @Optional() configuration: Configuration) { |
|
|
|
|
|
if (configuration) { |
|
|
|
|
|
this.configuration = configuration; |
|
|
|
|
|
} |
|
|
|
|
|
if (typeof this.configuration.basePath !== 'string') { |
|
|
|
|
|
if (Array.isArray(basePath) && basePath.length > 0) { |
|
|
|
|
|
basePath = basePath[0]; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (typeof basePath !== 'string') { |
|
|
|
|
|
basePath = this.basePath; |
|
|
|
|
|
} |
|
|
|
|
|
this.configuration.basePath = basePath; |
|
|
|
|
|
} |
|
|
|
|
|
this.encoder = this.configuration.encoder || new CustomHttpParameterCodec(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @ts-ignore |
|
|
|
|
|
private addToHttpParams(httpParams: HttpParams, value: any, key?: string): HttpParams { |
|
|
|
|
|
if (typeof value === "object" && value instanceof Date === false) { |
|
|
|
|
|
httpParams = this.addToHttpParamsRecursive(httpParams, value); |
|
|
|
|
|
} else { |
|
|
|
|
|
httpParams = this.addToHttpParamsRecursive(httpParams, value, key); |
|
|
|
|
|
} |
|
|
|
|
|
return httpParams; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string): HttpParams { |
|
|
|
|
|
if (value == null) { |
|
|
|
|
|
return httpParams; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (typeof value === "object") { |
|
|
|
|
|
if (Array.isArray(value)) { |
|
|
|
|
|
(value as any[]).forEach( elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)); |
|
|
|
|
|
} else if (value instanceof Date) { |
|
|
|
|
|
if (key != null) { |
|
|
|
|
|
httpParams = httpParams.append(key, (value as Date).toISOString().substring(0, 10)); |
|
|
|
|
|
} else { |
|
|
|
|
|
throw Error("key may not be null if value is Date"); |
|
|
|
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
Object.keys(value).forEach( k => httpParams = this.addToHttpParamsRecursive( |
|
|
|
|
|
httpParams, value[k], key != null ? `${key}.${k}` : k)); |
|
|
|
|
|
} |
|
|
|
|
|
} else if (key != null) { |
|
|
|
|
|
httpParams = httpParams.append(key, value); |
|
|
|
|
|
} else { |
|
|
|
|
|
throw Error("key may not be null if value is not object or array"); |
|
|
|
|
|
} |
|
|
|
|
|
return httpParams; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Retrieves the collection of Product resources. |
|
|
|
|
|
* Retrieves the collection of Product resources. |
|
|
|
|
|
* @param page The collection page number |
|
|
|
|
|
* @param itemsPerPage The number of items per page |
|
|
|
|
|
* @param orderName |
|
|
|
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. |
|
|
|
|
|
* @param reportProgress flag to report request and response progress. |
|
|
|
|
|
*/ |
|
|
|
|
|
public productsGetCollection(page?: number, itemsPerPage?: number, orderName?: 'asc' | 'desc', observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<ApiProductsGetCollection200Response>; |
|
|
|
|
|
public productsGetCollection(page?: number, itemsPerPage?: number, orderName?: 'asc' | 'desc', observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ApiProductsGetCollection200Response>>; |
|
|
|
|
|
public productsGetCollection(page?: number, itemsPerPage?: number, orderName?: 'asc' | 'desc', observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ApiProductsGetCollection200Response>>; |
|
|
|
|
|
public productsGetCollection(page?: number, itemsPerPage?: number, orderName?: 'asc' | 'desc', observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<any> { |
|
|
|
|
|
|
|
|
|
|
|
let localVarQueryParameters = new HttpParams({encoder: this.encoder}); |
|
|
|
|
|
if (page !== undefined && page !== null) { |
|
|
|
|
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, |
|
|
|
|
|
<any>page, 'page'); |
|
|
|
|
|
} |
|
|
|
|
|
if (itemsPerPage !== undefined && itemsPerPage !== null) { |
|
|
|
|
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, |
|
|
|
|
|
<any>itemsPerPage, 'itemsPerPage'); |
|
|
|
|
|
} |
|
|
|
|
|
if (orderName !== undefined && orderName !== null) { |
|
|
|
|
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, |
|
|
|
|
|
<any>orderName, 'order[name]'); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHeaders = this.defaultHeaders; |
|
|
|
|
|
|
|
|
|
|
|
let localVarCredential: string | undefined; |
|
|
|
|
|
// authentication (JWT) required |
|
|
|
|
|
localVarCredential = this.configuration.lookupCredential('JWT'); |
|
|
|
|
|
if (localVarCredential) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected === undefined) { |
|
|
|
|
|
// to determine the Accept header |
|
|
|
|
|
const httpHeaderAccepts: string[] = [ |
|
|
|
|
|
'application/ld+json', |
|
|
|
|
|
'application/json', |
|
|
|
|
|
'text/html', |
|
|
|
|
|
'application/hal+json' |
|
|
|
|
|
]; |
|
|
|
|
|
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts); |
|
|
|
|
|
} |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpContext: HttpContext | undefined = options && options.context; |
|
|
|
|
|
if (localVarHttpContext === undefined) { |
|
|
|
|
|
localVarHttpContext = new HttpContext(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarTransferCache: boolean | undefined = options && options.transferCache; |
|
|
|
|
|
if (localVarTransferCache === undefined) { |
|
|
|
|
|
localVarTransferCache = true; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json'; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected) { |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) { |
|
|
|
|
|
responseType_ = 'text'; |
|
|
|
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) { |
|
|
|
|
|
responseType_ = 'json'; |
|
|
|
|
|
} else { |
|
|
|
|
|
responseType_ = 'blob'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarPath = `/api/products`; |
|
|
|
|
|
return this.httpClient.request<ApiProductsGetCollection200Response>('get', `${this.configuration.basePath}${localVarPath}`, |
|
|
|
|
|
{ |
|
|
|
|
|
context: localVarHttpContext, |
|
|
|
|
|
params: localVarQueryParameters, |
|
|
|
|
|
responseType: <any>responseType_, |
|
|
|
|
|
withCredentials: this.configuration.withCredentials, |
|
|
|
|
|
headers: localVarHeaders, |
|
|
|
|
|
observe: observe, |
|
|
|
|
|
transferCache: localVarTransferCache, |
|
|
|
|
|
reportProgress: reportProgress |
|
|
|
|
|
} |
|
|
|
|
|
); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Removes the Product resource. |
|
|
|
|
|
* Removes the Product resource. |
|
|
|
|
|
* @param id ProductApi identifier |
|
|
|
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. |
|
|
|
|
|
* @param reportProgress flag to report request and response progress. |
|
|
|
|
|
*/ |
|
|
|
|
|
public productsIdDelete(id: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>; |
|
|
|
|
|
public productsIdDelete(id: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>; |
|
|
|
|
|
public productsIdDelete(id: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>; |
|
|
|
|
|
public productsIdDelete(id: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> { |
|
|
|
|
|
if (id === null || id === undefined) { |
|
|
|
|
|
throw new Error('Required parameter id was null or undefined when calling productsIdDelete.'); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHeaders = this.defaultHeaders; |
|
|
|
|
|
|
|
|
|
|
|
let localVarCredential: string | undefined; |
|
|
|
|
|
// authentication (JWT) required |
|
|
|
|
|
localVarCredential = this.configuration.lookupCredential('JWT'); |
|
|
|
|
|
if (localVarCredential) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected === undefined) { |
|
|
|
|
|
// to determine the Accept header |
|
|
|
|
|
const httpHeaderAccepts: string[] = [ |
|
|
|
|
|
]; |
|
|
|
|
|
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts); |
|
|
|
|
|
} |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpContext: HttpContext | undefined = options && options.context; |
|
|
|
|
|
if (localVarHttpContext === undefined) { |
|
|
|
|
|
localVarHttpContext = new HttpContext(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarTransferCache: boolean | undefined = options && options.transferCache; |
|
|
|
|
|
if (localVarTransferCache === undefined) { |
|
|
|
|
|
localVarTransferCache = true; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json'; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected) { |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) { |
|
|
|
|
|
responseType_ = 'text'; |
|
|
|
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) { |
|
|
|
|
|
responseType_ = 'json'; |
|
|
|
|
|
} else { |
|
|
|
|
|
responseType_ = 'blob'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarPath = `/api/products/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined})}`; |
|
|
|
|
|
return this.httpClient.request<any>('delete', `${this.configuration.basePath}${localVarPath}`, |
|
|
|
|
|
{ |
|
|
|
|
|
context: localVarHttpContext, |
|
|
|
|
|
responseType: <any>responseType_, |
|
|
|
|
|
withCredentials: this.configuration.withCredentials, |
|
|
|
|
|
headers: localVarHeaders, |
|
|
|
|
|
observe: observe, |
|
|
|
|
|
transferCache: localVarTransferCache, |
|
|
|
|
|
reportProgress: reportProgress |
|
|
|
|
|
} |
|
|
|
|
|
); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Retrieves a Product resource. |
|
|
|
|
|
* Retrieves a Product resource. |
|
|
|
|
|
* @param id ProductApi identifier |
|
|
|
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. |
|
|
|
|
|
* @param reportProgress flag to report request and response progress. |
|
|
|
|
|
*/ |
|
|
|
|
|
public productsIdGet(id: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<ProductJsonld>; |
|
|
|
|
|
public productsIdGet(id: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ProductJsonld>>; |
|
|
|
|
|
public productsIdGet(id: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ProductJsonld>>; |
|
|
|
|
|
public productsIdGet(id: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<any> { |
|
|
|
|
|
if (id === null || id === undefined) { |
|
|
|
|
|
throw new Error('Required parameter id was null or undefined when calling productsIdGet.'); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHeaders = this.defaultHeaders; |
|
|
|
|
|
|
|
|
|
|
|
let localVarCredential: string | undefined; |
|
|
|
|
|
// authentication (JWT) required |
|
|
|
|
|
localVarCredential = this.configuration.lookupCredential('JWT'); |
|
|
|
|
|
if (localVarCredential) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected === undefined) { |
|
|
|
|
|
// to determine the Accept header |
|
|
|
|
|
const httpHeaderAccepts: string[] = [ |
|
|
|
|
|
'application/ld+json', |
|
|
|
|
|
'application/json', |
|
|
|
|
|
'text/html', |
|
|
|
|
|
'application/hal+json' |
|
|
|
|
|
]; |
|
|
|
|
|
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts); |
|
|
|
|
|
} |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpContext: HttpContext | undefined = options && options.context; |
|
|
|
|
|
if (localVarHttpContext === undefined) { |
|
|
|
|
|
localVarHttpContext = new HttpContext(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarTransferCache: boolean | undefined = options && options.transferCache; |
|
|
|
|
|
if (localVarTransferCache === undefined) { |
|
|
|
|
|
localVarTransferCache = true; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json'; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected) { |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) { |
|
|
|
|
|
responseType_ = 'text'; |
|
|
|
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) { |
|
|
|
|
|
responseType_ = 'json'; |
|
|
|
|
|
} else { |
|
|
|
|
|
responseType_ = 'blob'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarPath = `/api/products/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined})}`; |
|
|
|
|
|
return this.httpClient.request<ProductJsonld>('get', `${this.configuration.basePath}${localVarPath}`, |
|
|
|
|
|
{ |
|
|
|
|
|
context: localVarHttpContext, |
|
|
|
|
|
responseType: <any>responseType_, |
|
|
|
|
|
withCredentials: this.configuration.withCredentials, |
|
|
|
|
|
headers: localVarHeaders, |
|
|
|
|
|
observe: observe, |
|
|
|
|
|
transferCache: localVarTransferCache, |
|
|
|
|
|
reportProgress: reportProgress |
|
|
|
|
|
} |
|
|
|
|
|
); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Updates the Product resource. |
|
|
|
|
|
* Updates the Product resource. |
|
|
|
|
|
* @param id ProductApi identifier |
|
|
|
|
|
* @param product The updated Product resource |
|
|
|
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. |
|
|
|
|
|
* @param reportProgress flag to report request and response progress. |
|
|
|
|
|
*/ |
|
|
|
|
|
public productsIdPatch(id: string, product: Product, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<ProductJsonld>; |
|
|
|
|
|
public productsIdPatch(id: string, product: Product, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ProductJsonld>>; |
|
|
|
|
|
public productsIdPatch(id: string, product: Product, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ProductJsonld>>; |
|
|
|
|
|
public productsIdPatch(id: string, product: Product, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<any> { |
|
|
|
|
|
if (id === null || id === undefined) { |
|
|
|
|
|
throw new Error('Required parameter id was null or undefined when calling productsIdPatch.'); |
|
|
|
|
|
} |
|
|
|
|
|
if (product === null || product === undefined) { |
|
|
|
|
|
throw new Error('Required parameter product was null or undefined when calling productsIdPatch.'); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHeaders = this.defaultHeaders; |
|
|
|
|
|
|
|
|
|
|
|
let localVarCredential: string | undefined; |
|
|
|
|
|
// authentication (JWT) required |
|
|
|
|
|
localVarCredential = this.configuration.lookupCredential('JWT'); |
|
|
|
|
|
if (localVarCredential) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected === undefined) { |
|
|
|
|
|
// to determine the Accept header |
|
|
|
|
|
const httpHeaderAccepts: string[] = [ |
|
|
|
|
|
'application/ld+json', |
|
|
|
|
|
'application/json', |
|
|
|
|
|
'text/html', |
|
|
|
|
|
'application/hal+json' |
|
|
|
|
|
]; |
|
|
|
|
|
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts); |
|
|
|
|
|
} |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpContext: HttpContext | undefined = options && options.context; |
|
|
|
|
|
if (localVarHttpContext === undefined) { |
|
|
|
|
|
localVarHttpContext = new HttpContext(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarTransferCache: boolean | undefined = options && options.transferCache; |
|
|
|
|
|
if (localVarTransferCache === undefined) { |
|
|
|
|
|
localVarTransferCache = true; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// to determine the Content-Type header |
|
|
|
|
|
const consumes: string[] = [ |
|
|
|
|
|
'application/merge-patch+json' |
|
|
|
|
|
]; |
|
|
|
|
|
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes); |
|
|
|
|
|
if (httpContentTypeSelected !== undefined) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json'; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected) { |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) { |
|
|
|
|
|
responseType_ = 'text'; |
|
|
|
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) { |
|
|
|
|
|
responseType_ = 'json'; |
|
|
|
|
|
} else { |
|
|
|
|
|
responseType_ = 'blob'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarPath = `/api/products/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined})}`; |
|
|
|
|
|
return this.httpClient.request<ProductJsonld>('patch', `${this.configuration.basePath}${localVarPath}`, |
|
|
|
|
|
{ |
|
|
|
|
|
context: localVarHttpContext, |
|
|
|
|
|
body: product, |
|
|
|
|
|
responseType: <any>responseType_, |
|
|
|
|
|
withCredentials: this.configuration.withCredentials, |
|
|
|
|
|
headers: localVarHeaders, |
|
|
|
|
|
observe: observe, |
|
|
|
|
|
transferCache: localVarTransferCache, |
|
|
|
|
|
reportProgress: reportProgress |
|
|
|
|
|
} |
|
|
|
|
|
); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Creates a Product resource. |
|
|
|
|
|
* Creates a Product resource. |
|
|
|
|
|
* @param productJsonld The new Product resource |
|
|
|
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. |
|
|
|
|
|
* @param reportProgress flag to report request and response progress. |
|
|
|
|
|
*/ |
|
|
|
|
|
public productsPost(productJsonld: ProductJsonld, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<ProductJsonld>; |
|
|
|
|
|
public productsPost(productJsonld: ProductJsonld, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ProductJsonld>>; |
|
|
|
|
|
public productsPost(productJsonld: ProductJsonld, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ProductJsonld>>; |
|
|
|
|
|
public productsPost(productJsonld: ProductJsonld, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/ld+json' | 'application/json' | 'text/html' | 'application/hal+json', context?: HttpContext, transferCache?: boolean}): Observable<any> { |
|
|
|
|
|
if (productJsonld === null || productJsonld === undefined) { |
|
|
|
|
|
throw new Error('Required parameter productJsonld was null or undefined when calling productsPost.'); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHeaders = this.defaultHeaders; |
|
|
|
|
|
|
|
|
|
|
|
let localVarCredential: string | undefined; |
|
|
|
|
|
// authentication (JWT) required |
|
|
|
|
|
localVarCredential = this.configuration.lookupCredential('JWT'); |
|
|
|
|
|
if (localVarCredential) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Authorization', 'Bearer ' + localVarCredential); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected === undefined) { |
|
|
|
|
|
// to determine the Accept header |
|
|
|
|
|
const httpHeaderAccepts: string[] = [ |
|
|
|
|
|
'application/ld+json', |
|
|
|
|
|
'application/json', |
|
|
|
|
|
'text/html', |
|
|
|
|
|
'application/hal+json' |
|
|
|
|
|
]; |
|
|
|
|
|
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts); |
|
|
|
|
|
} |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarHttpContext: HttpContext | undefined = options && options.context; |
|
|
|
|
|
if (localVarHttpContext === undefined) { |
|
|
|
|
|
localVarHttpContext = new HttpContext(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarTransferCache: boolean | undefined = options && options.transferCache; |
|
|
|
|
|
if (localVarTransferCache === undefined) { |
|
|
|
|
|
localVarTransferCache = true; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// to determine the Content-Type header |
|
|
|
|
|
const consumes: string[] = [ |
|
|
|
|
|
'application/ld+json', |
|
|
|
|
|
'application/json', |
|
|
|
|
|
'text/html', |
|
|
|
|
|
'application/hal+json' |
|
|
|
|
|
]; |
|
|
|
|
|
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes); |
|
|
|
|
|
if (httpContentTypeSelected !== undefined) { |
|
|
|
|
|
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json'; |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected) { |
|
|
|
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) { |
|
|
|
|
|
responseType_ = 'text'; |
|
|
|
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) { |
|
|
|
|
|
responseType_ = 'json'; |
|
|
|
|
|
} else { |
|
|
|
|
|
responseType_ = 'blob'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let localVarPath = `/api/products`; |
|
|
|
|
|
return this.httpClient.request<ProductJsonld>('post', `${this.configuration.basePath}${localVarPath}`, |
|
|
|
|
|
{ |
|
|
|
|
|
context: localVarHttpContext, |
|
|
|
|
|
body: productJsonld, |
|
|
|
|
|
responseType: <any>responseType_, |
|
|
|
|
|
withCredentials: this.configuration.withCredentials, |
|
|
|
|
|
headers: localVarHeaders, |
|
|
|
|
|
observe: observe, |
|
|
|
|
|
transferCache: localVarTransferCache, |
|
|
|
|
|
reportProgress: reportProgress |
|
|
|
|
|
} |
|
|
|
|
|
); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |