@teemill/platform 0.61.0 → 0.61.1

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
- ## @teemill/platform@0.61.0
1
+ ## @teemill/platform@0.61.1
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 @teemill/platform@0.61.0 --save
39
+ npm install @teemill/platform@0.61.1 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -54,9 +54,6 @@ export interface Address {
54
54
  */
55
55
  'state'?: string;
56
56
  }
57
- /**
58
- * At least one of amendments or forceShippingRefund must be provided.
59
- */
60
57
  export interface AmendOrderRequest {
61
58
  'amendments'?: Array<AmendOrderRequestAmendmentsInner>;
62
59
  /**
@@ -3558,11 +3555,11 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
3558
3555
  * @param {string} project Project unique identifier
3559
3556
  * @param {string} platformId The platform identifier
3560
3557
  * @param {string} orderId The order identifier
3561
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
3558
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
3562
3559
  * @param {*} [options] Override http request option.
3563
3560
  * @throws {RequiredError}
3564
3561
  */
3565
- amendOrder: async (project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
3562
+ amendOrder: async (project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
3566
3563
  // verify required parameter 'project' is not null or undefined
3567
3564
  assertParamExists('amendOrder', 'project', project)
3568
3565
  // verify required parameter 'platformId' is not null or undefined
@@ -4499,11 +4496,11 @@ export const OrdersApiFp = function(configuration?: Configuration) {
4499
4496
  * @param {string} project Project unique identifier
4500
4497
  * @param {string} platformId The platform identifier
4501
4498
  * @param {string} orderId The order identifier
4502
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
4499
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
4503
4500
  * @param {*} [options] Override http request option.
4504
4501
  * @throws {RequiredError}
4505
4502
  */
4506
- async amendOrder(project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>> {
4503
+ async amendOrder(project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>> {
4507
4504
  const localVarAxiosArgs = await localVarAxiosParamCreator.amendOrder(project, platformId, orderId, amendOrderRequest, options);
4508
4505
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4509
4506
  const localVarOperationServerBasePath = operationServerMap['OrdersApi.amendOrder']?.[localVarOperationServerIndex]?.url;
@@ -4945,7 +4942,7 @@ export interface OrdersApiAmendOrderRequest {
4945
4942
  /**
4946
4943
  * AmendOrder schema
4947
4944
  */
4948
- readonly amendOrderRequest: AmendOrderRequest
4945
+ readonly amendOrderRequest: AmendOrderRequest | null
4949
4946
  }
4950
4947
 
4951
4948
  /**
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Platform API
4
4
  * Manage Your podOS platform
5
5
  *
6
- * The version of the OpenAPI document: 0.61.0
6
+ * The version of the OpenAPI document: 0.61.1
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,9 +44,6 @@ export interface Address {
44
44
  */
45
45
  'state'?: string;
46
46
  }
47
- /**
48
- * At least one of amendments or forceShippingRefund must be provided.
49
- */
50
47
  export interface AmendOrderRequest {
51
48
  'amendments'?: Array<AmendOrderRequestAmendmentsInner>;
52
49
  /**
@@ -2359,11 +2356,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
2359
2356
  * @param {string} project Project unique identifier
2360
2357
  * @param {string} platformId The platform identifier
2361
2358
  * @param {string} orderId The order identifier
2362
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
2359
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
2363
2360
  * @param {*} [options] Override http request option.
2364
2361
  * @throws {RequiredError}
2365
2362
  */
2366
- amendOrder: (project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2363
+ amendOrder: (project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2367
2364
  /**
2368
2365
  *
2369
2366
  * @summary Confirm order
@@ -2542,11 +2539,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
2542
2539
  * @param {string} project Project unique identifier
2543
2540
  * @param {string} platformId The platform identifier
2544
2541
  * @param {string} orderId The order identifier
2545
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
2542
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
2546
2543
  * @param {*} [options] Override http request option.
2547
2544
  * @throws {RequiredError}
2548
2545
  */
2549
- amendOrder(project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>>;
2546
+ amendOrder(project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>>;
2550
2547
  /**
2551
2548
  *
2552
2549
  * @summary Confirm order
@@ -2867,7 +2864,7 @@ export interface OrdersApiAmendOrderRequest {
2867
2864
  /**
2868
2865
  * AmendOrder schema
2869
2866
  */
2870
- readonly amendOrderRequest: AmendOrderRequest;
2867
+ readonly amendOrderRequest: AmendOrderRequest | null;
2871
2868
  }
2872
2869
  /**
2873
2870
  * Request parameters for confirmOrder operation in OrdersApi.
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.61.0
8
+ * The version of the OpenAPI document: 0.61.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1798,7 +1798,7 @@ const OrdersApiAxiosParamCreator = function (configuration) {
1798
1798
  * @param {string} project Project unique identifier
1799
1799
  * @param {string} platformId The platform identifier
1800
1800
  * @param {string} orderId The order identifier
1801
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
1801
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
1802
1802
  * @param {*} [options] Override http request option.
1803
1803
  * @throws {RequiredError}
1804
1804
  */
@@ -2614,7 +2614,7 @@ const OrdersApiFp = function (configuration) {
2614
2614
  * @param {string} project Project unique identifier
2615
2615
  * @param {string} platformId The platform identifier
2616
2616
  * @param {string} orderId The order identifier
2617
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
2617
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
2618
2618
  * @param {*} [options] Override http request option.
2619
2619
  * @throws {RequiredError}
2620
2620
  */
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.61.0
8
+ * The version of the OpenAPI document: 0.61.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.61.0
8
+ * The version of the OpenAPI document: 0.61.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -44,9 +44,6 @@ export interface Address {
44
44
  */
45
45
  'state'?: string;
46
46
  }
47
- /**
48
- * At least one of amendments or forceShippingRefund must be provided.
49
- */
50
47
  export interface AmendOrderRequest {
51
48
  'amendments'?: Array<AmendOrderRequestAmendmentsInner>;
52
49
  /**
@@ -2359,11 +2356,11 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
2359
2356
  * @param {string} project Project unique identifier
2360
2357
  * @param {string} platformId The platform identifier
2361
2358
  * @param {string} orderId The order identifier
2362
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
2359
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
2363
2360
  * @param {*} [options] Override http request option.
2364
2361
  * @throws {RequiredError}
2365
2362
  */
2366
- amendOrder: (project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2363
+ amendOrder: (project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2367
2364
  /**
2368
2365
  *
2369
2366
  * @summary Confirm order
@@ -2542,11 +2539,11 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
2542
2539
  * @param {string} project Project unique identifier
2543
2540
  * @param {string} platformId The platform identifier
2544
2541
  * @param {string} orderId The order identifier
2545
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
2542
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
2546
2543
  * @param {*} [options] Override http request option.
2547
2544
  * @throws {RequiredError}
2548
2545
  */
2549
- amendOrder(project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>>;
2546
+ amendOrder(project: string, platformId: string, orderId: string, amendOrderRequest: AmendOrderRequest | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>>;
2550
2547
  /**
2551
2548
  *
2552
2549
  * @summary Confirm order
@@ -2867,7 +2864,7 @@ export interface OrdersApiAmendOrderRequest {
2867
2864
  /**
2868
2865
  * AmendOrder schema
2869
2866
  */
2870
- readonly amendOrderRequest: AmendOrderRequest;
2867
+ readonly amendOrderRequest: AmendOrderRequest | null;
2871
2868
  }
2872
2869
  /**
2873
2870
  * Request parameters for confirmOrder operation in OrdersApi.
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1778,7 +1778,7 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
1778
1778
  * @param {string} project Project unique identifier
1779
1779
  * @param {string} platformId The platform identifier
1780
1780
  * @param {string} orderId The order identifier
1781
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
1781
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
1782
1782
  * @param {*} [options] Override http request option.
1783
1783
  * @throws {RequiredError}
1784
1784
  */
@@ -2593,7 +2593,7 @@ export const OrdersApiFp = function (configuration) {
2593
2593
  * @param {string} project Project unique identifier
2594
2594
  * @param {string} platformId The platform identifier
2595
2595
  * @param {string} orderId The order identifier
2596
- * @param {AmendOrderRequest} amendOrderRequest AmendOrder schema
2596
+ * @param {AmendOrderRequest | null} amendOrderRequest AmendOrder schema
2597
2597
  * @param {*} [options] Override http request option.
2598
2598
  * @throws {RequiredError}
2599
2599
  */
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,7 +3,7 @@
3
3
  * Platform API
4
4
  * Manage Your podOS platform
5
5
  *
6
- * The version of the OpenAPI document: 0.61.0
6
+ * The version of the OpenAPI document: 0.61.1
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.61.0
5
+ * The version of the OpenAPI document: 0.61.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.61.0
8
+ * The version of the OpenAPI document: 0.61.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,6 +1,5 @@
1
1
  # AmendOrderRequest
2
2
 
3
- At least one of amendments or forceShippingRefund must be provided.
4
3
 
5
4
  ## Properties
6
5
 
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.61.0
7
+ * The version of the OpenAPI document: 0.61.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/platform",
3
- "version": "0.61.0",
3
+ "version": "0.61.1",
4
4
  "description": "OpenAPI client for @teemill/platform",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {