flexinet-api 0.0.1731 → 0.0.1734-prerelease0-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## flexinet-api@0.0.1731
1
+ ## flexinet-api@0.0.1734-prerelease0-dev
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install flexinet-api@0.0.1731 --save
39
+ npm install flexinet-api@0.0.1734-prerelease0-dev --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -1882,7 +1882,7 @@ export interface ProductCreationRequest {
1882
1882
  * @type {ProductStatus}
1883
1883
  * @memberof ProductCreationRequest
1884
1884
  */
1885
- 'status'?: ProductStatus;
1885
+ 'status': ProductStatus;
1886
1886
  /**
1887
1887
  *
1888
1888
  * @type {Array<ProductUsage>}
@@ -1926,6 +1926,8 @@ export interface ProductCreationRequest {
1926
1926
  */
1927
1927
  'kind': ProductKind;
1928
1928
  }
1929
+
1930
+
1929
1931
  /**
1930
1932
  *
1931
1933
  * @export
@@ -8453,11 +8455,11 @@ export const ProductApiAxiosParamCreator = function (configuration?: Configurati
8453
8455
  /**
8454
8456
  * Create a new product
8455
8457
  * @summary Create a new product
8456
- * @param {ProductCreationRequest | null} [productCreationRequest]
8458
+ * @param {ProductCreationRequest} [productCreationRequest]
8457
8459
  * @param {*} [options] Override http request option.
8458
8460
  * @throws {RequiredError}
8459
8461
  */
8460
- createProduct: async (productCreationRequest?: ProductCreationRequest | null, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
8462
+ createProduct: async (productCreationRequest?: ProductCreationRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
8461
8463
  const localVarPath = `/admins/products`;
8462
8464
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8463
8465
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -8904,11 +8906,11 @@ export const ProductApiAxiosParamCreator = function (configuration?: Configurati
8904
8906
  * Update a product by id
8905
8907
  * @summary Update a product by id
8906
8908
  * @param {string} id The product id
8907
- * @param {ProductCreationRequest | null} [productCreationRequest]
8909
+ * @param {ProductCreationRequest} [productCreationRequest]
8908
8910
  * @param {*} [options] Override http request option.
8909
8911
  * @throws {RequiredError}
8910
8912
  */
8911
- updateProduct: async (id: string, productCreationRequest?: ProductCreationRequest | null, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
8913
+ updateProduct: async (id: string, productCreationRequest?: ProductCreationRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
8912
8914
  // verify required parameter 'id' is not null or undefined
8913
8915
  assertParamExists('updateProduct', 'id', id)
8914
8916
  const localVarPath = `/admins/products/{id}`
@@ -8967,11 +8969,11 @@ export const ProductApiFp = function(configuration?: Configuration) {
8967
8969
  /**
8968
8970
  * Create a new product
8969
8971
  * @summary Create a new product
8970
- * @param {ProductCreationRequest | null} [productCreationRequest]
8972
+ * @param {ProductCreationRequest} [productCreationRequest]
8971
8973
  * @param {*} [options] Override http request option.
8972
8974
  * @throws {RequiredError}
8973
8975
  */
8974
- async createProduct(productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>> {
8976
+ async createProduct(productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>> {
8975
8977
  const localVarAxiosArgs = await localVarAxiosParamCreator.createProduct(productCreationRequest, options);
8976
8978
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
8977
8979
  },
@@ -9091,11 +9093,11 @@ export const ProductApiFp = function(configuration?: Configuration) {
9091
9093
  * Update a product by id
9092
9094
  * @summary Update a product by id
9093
9095
  * @param {string} id The product id
9094
- * @param {ProductCreationRequest | null} [productCreationRequest]
9096
+ * @param {ProductCreationRequest} [productCreationRequest]
9095
9097
  * @param {*} [options] Override http request option.
9096
9098
  * @throws {RequiredError}
9097
9099
  */
9098
- async updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>> {
9100
+ async updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>> {
9099
9101
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateProduct(id, productCreationRequest, options);
9100
9102
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
9101
9103
  },
@@ -9123,11 +9125,11 @@ export const ProductApiFactory = function (configuration?: Configuration, basePa
9123
9125
  /**
9124
9126
  * Create a new product
9125
9127
  * @summary Create a new product
9126
- * @param {ProductCreationRequest | null} [productCreationRequest]
9128
+ * @param {ProductCreationRequest} [productCreationRequest]
9127
9129
  * @param {*} [options] Override http request option.
9128
9130
  * @throws {RequiredError}
9129
9131
  */
9130
- createProduct(productCreationRequest?: ProductCreationRequest | null, options?: any): AxiosPromise<Product> {
9132
+ createProduct(productCreationRequest?: ProductCreationRequest, options?: any): AxiosPromise<Product> {
9131
9133
  return localVarFp.createProduct(productCreationRequest, options).then((request) => request(axios, basePath));
9132
9134
  },
9133
9135
  /**
@@ -9237,11 +9239,11 @@ export const ProductApiFactory = function (configuration?: Configuration, basePa
9237
9239
  * Update a product by id
9238
9240
  * @summary Update a product by id
9239
9241
  * @param {string} id The product id
9240
- * @param {ProductCreationRequest | null} [productCreationRequest]
9242
+ * @param {ProductCreationRequest} [productCreationRequest]
9241
9243
  * @param {*} [options] Override http request option.
9242
9244
  * @throws {RequiredError}
9243
9245
  */
9244
- updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: any): AxiosPromise<Product> {
9246
+ updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: any): AxiosPromise<Product> {
9245
9247
  return localVarFp.updateProduct(id, productCreationRequest, options).then((request) => request(axios, basePath));
9246
9248
  },
9247
9249
  };
@@ -9270,12 +9272,12 @@ export class ProductApi extends BaseAPI {
9270
9272
  /**
9271
9273
  * Create a new product
9272
9274
  * @summary Create a new product
9273
- * @param {ProductCreationRequest | null} [productCreationRequest]
9275
+ * @param {ProductCreationRequest} [productCreationRequest]
9274
9276
  * @param {*} [options] Override http request option.
9275
9277
  * @throws {RequiredError}
9276
9278
  * @memberof ProductApi
9277
9279
  */
9278
- public createProduct(productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig) {
9280
+ public createProduct(productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig) {
9279
9281
  return ProductApiFp(this.configuration).createProduct(productCreationRequest, options).then((request) => request(this.axios, this.basePath));
9280
9282
  }
9281
9283
 
@@ -9404,12 +9406,12 @@ export class ProductApi extends BaseAPI {
9404
9406
  * Update a product by id
9405
9407
  * @summary Update a product by id
9406
9408
  * @param {string} id The product id
9407
- * @param {ProductCreationRequest | null} [productCreationRequest]
9409
+ * @param {ProductCreationRequest} [productCreationRequest]
9408
9410
  * @param {*} [options] Override http request option.
9409
9411
  * @throws {RequiredError}
9410
9412
  * @memberof ProductApi
9411
9413
  */
9412
- public updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig) {
9414
+ public updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig) {
9413
9415
  return ProductApiFp(this.configuration).updateProduct(id, productCreationRequest, options).then((request) => request(this.axios, this.basePath));
9414
9416
  }
9415
9417
  }
package/dist/api.d.ts CHANGED
@@ -1778,7 +1778,7 @@ export interface ProductCreationRequest {
1778
1778
  * @type {ProductStatus}
1779
1779
  * @memberof ProductCreationRequest
1780
1780
  */
1781
- 'status'?: ProductStatus;
1781
+ 'status': ProductStatus;
1782
1782
  /**
1783
1783
  *
1784
1784
  * @type {Array<ProductUsage>}
@@ -6231,11 +6231,11 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
6231
6231
  /**
6232
6232
  * Create a new product
6233
6233
  * @summary Create a new product
6234
- * @param {ProductCreationRequest | null} [productCreationRequest]
6234
+ * @param {ProductCreationRequest} [productCreationRequest]
6235
6235
  * @param {*} [options] Override http request option.
6236
6236
  * @throws {RequiredError}
6237
6237
  */
6238
- createProduct: (productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6238
+ createProduct: (productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6239
6239
  /**
6240
6240
  * Create a new product request
6241
6241
  * @summary Create a new product request
@@ -6325,11 +6325,11 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
6325
6325
  * Update a product by id
6326
6326
  * @summary Update a product by id
6327
6327
  * @param {string} id The product id
6328
- * @param {ProductCreationRequest | null} [productCreationRequest]
6328
+ * @param {ProductCreationRequest} [productCreationRequest]
6329
6329
  * @param {*} [options] Override http request option.
6330
6330
  * @throws {RequiredError}
6331
6331
  */
6332
- updateProduct: (id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6332
+ updateProduct: (id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6333
6333
  };
6334
6334
  /**
6335
6335
  * ProductApi - functional programming interface
@@ -6348,11 +6348,11 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
6348
6348
  /**
6349
6349
  * Create a new product
6350
6350
  * @summary Create a new product
6351
- * @param {ProductCreationRequest | null} [productCreationRequest]
6351
+ * @param {ProductCreationRequest} [productCreationRequest]
6352
6352
  * @param {*} [options] Override http request option.
6353
6353
  * @throws {RequiredError}
6354
6354
  */
6355
- createProduct(productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6355
+ createProduct(productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6356
6356
  /**
6357
6357
  * Create a new product request
6358
6358
  * @summary Create a new product request
@@ -6442,11 +6442,11 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
6442
6442
  * Update a product by id
6443
6443
  * @summary Update a product by id
6444
6444
  * @param {string} id The product id
6445
- * @param {ProductCreationRequest | null} [productCreationRequest]
6445
+ * @param {ProductCreationRequest} [productCreationRequest]
6446
6446
  * @param {*} [options] Override http request option.
6447
6447
  * @throws {RequiredError}
6448
6448
  */
6449
- updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6449
+ updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6450
6450
  };
6451
6451
  /**
6452
6452
  * ProductApi - factory interface
@@ -6465,11 +6465,11 @@ export declare const ProductApiFactory: (configuration?: Configuration, basePath
6465
6465
  /**
6466
6466
  * Create a new product
6467
6467
  * @summary Create a new product
6468
- * @param {ProductCreationRequest | null} [productCreationRequest]
6468
+ * @param {ProductCreationRequest} [productCreationRequest]
6469
6469
  * @param {*} [options] Override http request option.
6470
6470
  * @throws {RequiredError}
6471
6471
  */
6472
- createProduct(productCreationRequest?: ProductCreationRequest | null, options?: any): AxiosPromise<Product>;
6472
+ createProduct(productCreationRequest?: ProductCreationRequest, options?: any): AxiosPromise<Product>;
6473
6473
  /**
6474
6474
  * Create a new product request
6475
6475
  * @summary Create a new product request
@@ -6559,11 +6559,11 @@ export declare const ProductApiFactory: (configuration?: Configuration, basePath
6559
6559
  * Update a product by id
6560
6560
  * @summary Update a product by id
6561
6561
  * @param {string} id The product id
6562
- * @param {ProductCreationRequest | null} [productCreationRequest]
6562
+ * @param {ProductCreationRequest} [productCreationRequest]
6563
6563
  * @param {*} [options] Override http request option.
6564
6564
  * @throws {RequiredError}
6565
6565
  */
6566
- updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: any): AxiosPromise<Product>;
6566
+ updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: any): AxiosPromise<Product>;
6567
6567
  };
6568
6568
  /**
6569
6569
  * ProductApi - object-oriented interface
@@ -6585,12 +6585,12 @@ export declare class ProductApi extends BaseAPI {
6585
6585
  /**
6586
6586
  * Create a new product
6587
6587
  * @summary Create a new product
6588
- * @param {ProductCreationRequest | null} [productCreationRequest]
6588
+ * @param {ProductCreationRequest} [productCreationRequest]
6589
6589
  * @param {*} [options] Override http request option.
6590
6590
  * @throws {RequiredError}
6591
6591
  * @memberof ProductApi
6592
6592
  */
6593
- createProduct(productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6593
+ createProduct(productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6594
6594
  /**
6595
6595
  * Create a new product request
6596
6596
  * @summary Create a new product request
@@ -6689,12 +6689,12 @@ export declare class ProductApi extends BaseAPI {
6689
6689
  * Update a product by id
6690
6690
  * @summary Update a product by id
6691
6691
  * @param {string} id The product id
6692
- * @param {ProductCreationRequest | null} [productCreationRequest]
6692
+ * @param {ProductCreationRequest} [productCreationRequest]
6693
6693
  * @param {*} [options] Override http request option.
6694
6694
  * @throws {RequiredError}
6695
6695
  * @memberof ProductApi
6696
6696
  */
6697
- updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6697
+ updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6698
6698
  }
6699
6699
  /**
6700
6700
  * ProgressApi - axios parameter creator
package/dist/api.js CHANGED
@@ -3974,7 +3974,7 @@ const ProductApiAxiosParamCreator = function (configuration) {
3974
3974
  /**
3975
3975
  * Create a new product
3976
3976
  * @summary Create a new product
3977
- * @param {ProductCreationRequest | null} [productCreationRequest]
3977
+ * @param {ProductCreationRequest} [productCreationRequest]
3978
3978
  * @param {*} [options] Override http request option.
3979
3979
  * @throws {RequiredError}
3980
3980
  */
@@ -4345,7 +4345,7 @@ const ProductApiAxiosParamCreator = function (configuration) {
4345
4345
  * Update a product by id
4346
4346
  * @summary Update a product by id
4347
4347
  * @param {string} id The product id
4348
- * @param {ProductCreationRequest | null} [productCreationRequest]
4348
+ * @param {ProductCreationRequest} [productCreationRequest]
4349
4349
  * @param {*} [options] Override http request option.
4350
4350
  * @throws {RequiredError}
4351
4351
  */
@@ -4403,7 +4403,7 @@ const ProductApiFp = function (configuration) {
4403
4403
  /**
4404
4404
  * Create a new product
4405
4405
  * @summary Create a new product
4406
- * @param {ProductCreationRequest | null} [productCreationRequest]
4406
+ * @param {ProductCreationRequest} [productCreationRequest]
4407
4407
  * @param {*} [options] Override http request option.
4408
4408
  * @throws {RequiredError}
4409
4409
  */
@@ -4547,7 +4547,7 @@ const ProductApiFp = function (configuration) {
4547
4547
  * Update a product by id
4548
4548
  * @summary Update a product by id
4549
4549
  * @param {string} id The product id
4550
- * @param {ProductCreationRequest | null} [productCreationRequest]
4550
+ * @param {ProductCreationRequest} [productCreationRequest]
4551
4551
  * @param {*} [options] Override http request option.
4552
4552
  * @throws {RequiredError}
4553
4553
  */
@@ -4581,7 +4581,7 @@ const ProductApiFactory = function (configuration, basePath, axios) {
4581
4581
  /**
4582
4582
  * Create a new product
4583
4583
  * @summary Create a new product
4584
- * @param {ProductCreationRequest | null} [productCreationRequest]
4584
+ * @param {ProductCreationRequest} [productCreationRequest]
4585
4585
  * @param {*} [options] Override http request option.
4586
4586
  * @throws {RequiredError}
4587
4587
  */
@@ -4695,7 +4695,7 @@ const ProductApiFactory = function (configuration, basePath, axios) {
4695
4695
  * Update a product by id
4696
4696
  * @summary Update a product by id
4697
4697
  * @param {string} id The product id
4698
- * @param {ProductCreationRequest | null} [productCreationRequest]
4698
+ * @param {ProductCreationRequest} [productCreationRequest]
4699
4699
  * @param {*} [options] Override http request option.
4700
4700
  * @throws {RequiredError}
4701
4701
  */
@@ -4727,7 +4727,7 @@ class ProductApi extends base_1.BaseAPI {
4727
4727
  /**
4728
4728
  * Create a new product
4729
4729
  * @summary Create a new product
4730
- * @param {ProductCreationRequest | null} [productCreationRequest]
4730
+ * @param {ProductCreationRequest} [productCreationRequest]
4731
4731
  * @param {*} [options] Override http request option.
4732
4732
  * @throws {RequiredError}
4733
4733
  * @memberof ProductApi
@@ -4851,7 +4851,7 @@ class ProductApi extends base_1.BaseAPI {
4851
4851
  * Update a product by id
4852
4852
  * @summary Update a product by id
4853
4853
  * @param {string} id The product id
4854
- * @param {ProductCreationRequest | null} [productCreationRequest]
4854
+ * @param {ProductCreationRequest} [productCreationRequest]
4855
4855
  * @param {*} [options] Override http request option.
4856
4856
  * @throws {RequiredError}
4857
4857
  * @memberof ProductApi
package/dist/esm/api.d.ts CHANGED
@@ -1778,7 +1778,7 @@ export interface ProductCreationRequest {
1778
1778
  * @type {ProductStatus}
1779
1779
  * @memberof ProductCreationRequest
1780
1780
  */
1781
- 'status'?: ProductStatus;
1781
+ 'status': ProductStatus;
1782
1782
  /**
1783
1783
  *
1784
1784
  * @type {Array<ProductUsage>}
@@ -6231,11 +6231,11 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
6231
6231
  /**
6232
6232
  * Create a new product
6233
6233
  * @summary Create a new product
6234
- * @param {ProductCreationRequest | null} [productCreationRequest]
6234
+ * @param {ProductCreationRequest} [productCreationRequest]
6235
6235
  * @param {*} [options] Override http request option.
6236
6236
  * @throws {RequiredError}
6237
6237
  */
6238
- createProduct: (productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6238
+ createProduct: (productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6239
6239
  /**
6240
6240
  * Create a new product request
6241
6241
  * @summary Create a new product request
@@ -6325,11 +6325,11 @@ export declare const ProductApiAxiosParamCreator: (configuration?: Configuration
6325
6325
  * Update a product by id
6326
6326
  * @summary Update a product by id
6327
6327
  * @param {string} id The product id
6328
- * @param {ProductCreationRequest | null} [productCreationRequest]
6328
+ * @param {ProductCreationRequest} [productCreationRequest]
6329
6329
  * @param {*} [options] Override http request option.
6330
6330
  * @throws {RequiredError}
6331
6331
  */
6332
- updateProduct: (id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6332
+ updateProduct: (id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6333
6333
  };
6334
6334
  /**
6335
6335
  * ProductApi - functional programming interface
@@ -6348,11 +6348,11 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
6348
6348
  /**
6349
6349
  * Create a new product
6350
6350
  * @summary Create a new product
6351
- * @param {ProductCreationRequest | null} [productCreationRequest]
6351
+ * @param {ProductCreationRequest} [productCreationRequest]
6352
6352
  * @param {*} [options] Override http request option.
6353
6353
  * @throws {RequiredError}
6354
6354
  */
6355
- createProduct(productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6355
+ createProduct(productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6356
6356
  /**
6357
6357
  * Create a new product request
6358
6358
  * @summary Create a new product request
@@ -6442,11 +6442,11 @@ export declare const ProductApiFp: (configuration?: Configuration) => {
6442
6442
  * Update a product by id
6443
6443
  * @summary Update a product by id
6444
6444
  * @param {string} id The product id
6445
- * @param {ProductCreationRequest | null} [productCreationRequest]
6445
+ * @param {ProductCreationRequest} [productCreationRequest]
6446
6446
  * @param {*} [options] Override http request option.
6447
6447
  * @throws {RequiredError}
6448
6448
  */
6449
- updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6449
+ updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Product>>;
6450
6450
  };
6451
6451
  /**
6452
6452
  * ProductApi - factory interface
@@ -6465,11 +6465,11 @@ export declare const ProductApiFactory: (configuration?: Configuration, basePath
6465
6465
  /**
6466
6466
  * Create a new product
6467
6467
  * @summary Create a new product
6468
- * @param {ProductCreationRequest | null} [productCreationRequest]
6468
+ * @param {ProductCreationRequest} [productCreationRequest]
6469
6469
  * @param {*} [options] Override http request option.
6470
6470
  * @throws {RequiredError}
6471
6471
  */
6472
- createProduct(productCreationRequest?: ProductCreationRequest | null, options?: any): AxiosPromise<Product>;
6472
+ createProduct(productCreationRequest?: ProductCreationRequest, options?: any): AxiosPromise<Product>;
6473
6473
  /**
6474
6474
  * Create a new product request
6475
6475
  * @summary Create a new product request
@@ -6559,11 +6559,11 @@ export declare const ProductApiFactory: (configuration?: Configuration, basePath
6559
6559
  * Update a product by id
6560
6560
  * @summary Update a product by id
6561
6561
  * @param {string} id The product id
6562
- * @param {ProductCreationRequest | null} [productCreationRequest]
6562
+ * @param {ProductCreationRequest} [productCreationRequest]
6563
6563
  * @param {*} [options] Override http request option.
6564
6564
  * @throws {RequiredError}
6565
6565
  */
6566
- updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: any): AxiosPromise<Product>;
6566
+ updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: any): AxiosPromise<Product>;
6567
6567
  };
6568
6568
  /**
6569
6569
  * ProductApi - object-oriented interface
@@ -6585,12 +6585,12 @@ export declare class ProductApi extends BaseAPI {
6585
6585
  /**
6586
6586
  * Create a new product
6587
6587
  * @summary Create a new product
6588
- * @param {ProductCreationRequest | null} [productCreationRequest]
6588
+ * @param {ProductCreationRequest} [productCreationRequest]
6589
6589
  * @param {*} [options] Override http request option.
6590
6590
  * @throws {RequiredError}
6591
6591
  * @memberof ProductApi
6592
6592
  */
6593
- createProduct(productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6593
+ createProduct(productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6594
6594
  /**
6595
6595
  * Create a new product request
6596
6596
  * @summary Create a new product request
@@ -6689,12 +6689,12 @@ export declare class ProductApi extends BaseAPI {
6689
6689
  * Update a product by id
6690
6690
  * @summary Update a product by id
6691
6691
  * @param {string} id The product id
6692
- * @param {ProductCreationRequest | null} [productCreationRequest]
6692
+ * @param {ProductCreationRequest} [productCreationRequest]
6693
6693
  * @param {*} [options] Override http request option.
6694
6694
  * @throws {RequiredError}
6695
6695
  * @memberof ProductApi
6696
6696
  */
6697
- updateProduct(id: string, productCreationRequest?: ProductCreationRequest | null, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6697
+ updateProduct(id: string, productCreationRequest?: ProductCreationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Product, any>>;
6698
6698
  }
6699
6699
  /**
6700
6700
  * ProgressApi - axios parameter creator
package/dist/esm/api.js CHANGED
@@ -3925,7 +3925,7 @@ export const ProductApiAxiosParamCreator = function (configuration) {
3925
3925
  /**
3926
3926
  * Create a new product
3927
3927
  * @summary Create a new product
3928
- * @param {ProductCreationRequest | null} [productCreationRequest]
3928
+ * @param {ProductCreationRequest} [productCreationRequest]
3929
3929
  * @param {*} [options] Override http request option.
3930
3930
  * @throws {RequiredError}
3931
3931
  */
@@ -4296,7 +4296,7 @@ export const ProductApiAxiosParamCreator = function (configuration) {
4296
4296
  * Update a product by id
4297
4297
  * @summary Update a product by id
4298
4298
  * @param {string} id The product id
4299
- * @param {ProductCreationRequest | null} [productCreationRequest]
4299
+ * @param {ProductCreationRequest} [productCreationRequest]
4300
4300
  * @param {*} [options] Override http request option.
4301
4301
  * @throws {RequiredError}
4302
4302
  */
@@ -4353,7 +4353,7 @@ export const ProductApiFp = function (configuration) {
4353
4353
  /**
4354
4354
  * Create a new product
4355
4355
  * @summary Create a new product
4356
- * @param {ProductCreationRequest | null} [productCreationRequest]
4356
+ * @param {ProductCreationRequest} [productCreationRequest]
4357
4357
  * @param {*} [options] Override http request option.
4358
4358
  * @throws {RequiredError}
4359
4359
  */
@@ -4497,7 +4497,7 @@ export const ProductApiFp = function (configuration) {
4497
4497
  * Update a product by id
4498
4498
  * @summary Update a product by id
4499
4499
  * @param {string} id The product id
4500
- * @param {ProductCreationRequest | null} [productCreationRequest]
4500
+ * @param {ProductCreationRequest} [productCreationRequest]
4501
4501
  * @param {*} [options] Override http request option.
4502
4502
  * @throws {RequiredError}
4503
4503
  */
@@ -4530,7 +4530,7 @@ export const ProductApiFactory = function (configuration, basePath, axios) {
4530
4530
  /**
4531
4531
  * Create a new product
4532
4532
  * @summary Create a new product
4533
- * @param {ProductCreationRequest | null} [productCreationRequest]
4533
+ * @param {ProductCreationRequest} [productCreationRequest]
4534
4534
  * @param {*} [options] Override http request option.
4535
4535
  * @throws {RequiredError}
4536
4536
  */
@@ -4644,7 +4644,7 @@ export const ProductApiFactory = function (configuration, basePath, axios) {
4644
4644
  * Update a product by id
4645
4645
  * @summary Update a product by id
4646
4646
  * @param {string} id The product id
4647
- * @param {ProductCreationRequest | null} [productCreationRequest]
4647
+ * @param {ProductCreationRequest} [productCreationRequest]
4648
4648
  * @param {*} [options] Override http request option.
4649
4649
  * @throws {RequiredError}
4650
4650
  */
@@ -4675,7 +4675,7 @@ export class ProductApi extends BaseAPI {
4675
4675
  /**
4676
4676
  * Create a new product
4677
4677
  * @summary Create a new product
4678
- * @param {ProductCreationRequest | null} [productCreationRequest]
4678
+ * @param {ProductCreationRequest} [productCreationRequest]
4679
4679
  * @param {*} [options] Override http request option.
4680
4680
  * @throws {RequiredError}
4681
4681
  * @memberof ProductApi
@@ -4799,7 +4799,7 @@ export class ProductApi extends BaseAPI {
4799
4799
  * Update a product by id
4800
4800
  * @summary Update a product by id
4801
4801
  * @param {string} id The product id
4802
- * @param {ProductCreationRequest | null} [productCreationRequest]
4802
+ * @param {ProductCreationRequest} [productCreationRequest]
4803
4803
  * @param {*} [options] Override http request option.
4804
4804
  * @throws {RequiredError}
4805
4805
  * @memberof ProductApi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flexinet-api",
3
- "version": "0.0.1731",
3
+ "version": "0.0.1734-prerelease0-dev",
4
4
  "description": "OpenAPI client for flexinet-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {