@teemill/orders 1.31.2 → 1.32.0

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.
@@ -1 +1 @@
1
- 7.24.0
1
+ 7.25.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/orders@1.31.2
1
+ ## @teemill/orders@1.32.0
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/orders@1.31.2 --save
39
+ npm install @teemill/orders@1.32.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -463,7 +463,7 @@ export interface Order {
463
463
  */
464
464
  'items': Array<OrderItem>;
465
465
  /**
466
- * The total price of the order including tax and after discounts.
466
+ * The total price of the order including tax, additional fees, and after discounts.
467
467
  */
468
468
  'totalPrice'?: Price;
469
469
  /**
@@ -486,6 +486,10 @@ export interface Order {
486
486
  * The total shipping cost for the order.
487
487
  */
488
488
  'shippingPrice'?: Price;
489
+ /**
490
+ * Additional fees on the order, such as handling. This is a single summed value and is included in totalPrice.
491
+ */
492
+ 'additionalFees'?: Price;
489
493
  'origin'?: Origin;
490
494
  /**
491
495
  * A chronological list of status changes for this order.
@@ -1054,7 +1058,7 @@ export type VatRegisteredFilterOption = typeof VatRegisteredFilterOption[keyof t
1054
1058
  export const OrdersApiAxiosParamCreator = function (configuration?: Configuration) {
1055
1059
  return {
1056
1060
  /**
1057
- * Cancels an order if it has not yet started processing.
1061
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1058
1062
  * @summary Cancel order
1059
1063
  * @param {string} project The project identifier to scope the request to.
1060
1064
  * @param {string} orderId Unique identifier of an order
@@ -1759,7 +1763,7 @@ export const OrdersApiFp = function(configuration?: Configuration) {
1759
1763
  const localVarAxiosParamCreator = OrdersApiAxiosParamCreator(configuration)
1760
1764
  return {
1761
1765
  /**
1762
- * Cancels an order if it has not yet started processing.
1766
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1763
1767
  * @summary Cancel order
1764
1768
  * @param {string} project The project identifier to scope the request to.
1765
1769
  * @param {string} orderId Unique identifier of an order
@@ -1956,7 +1960,7 @@ export const OrdersApiFactory = function (configuration?: Configuration, basePat
1956
1960
  const localVarFp = OrdersApiFp(configuration)
1957
1961
  return {
1958
1962
  /**
1959
- * Cancels an order if it has not yet started processing.
1963
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1960
1964
  * @summary Cancel order
1961
1965
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
1962
1966
  * @param {*} [options] Override http request option.
@@ -2363,7 +2367,7 @@ export interface OrdersApiRetryPlatformPaymentRequest {
2363
2367
  */
2364
2368
  export class OrdersApi extends BaseAPI {
2365
2369
  /**
2366
- * Cancels an order if it has not yet started processing.
2370
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
2367
2371
  * @summary Cancel order
2368
2372
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
2369
2373
  * @param {*} [options] Override http request option.
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -154,8 +154,8 @@ export const toPathString = function (url: URL) {
154
154
  * @export
155
155
  */
156
156
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
157
- return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
157
+ return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH): Promise<R> => {
158
158
  const axiosRequestArgs = {...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url};
159
- return axios.request<T, R>(axiosRequestArgs);
159
+ return axios.request<T, R>(axiosRequestArgs) as Promise<R>;
160
160
  };
161
161
  }
package/configuration.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Orders
4
4
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
5
5
  *
6
- * The version of the OpenAPI document: 1.31.2
6
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -443,7 +443,7 @@ export interface Order {
443
443
  */
444
444
  'items': Array<OrderItem>;
445
445
  /**
446
- * The total price of the order including tax and after discounts.
446
+ * The total price of the order including tax, additional fees, and after discounts.
447
447
  */
448
448
  'totalPrice'?: Price;
449
449
  /**
@@ -466,6 +466,10 @@ export interface Order {
466
466
  * The total shipping cost for the order.
467
467
  */
468
468
  'shippingPrice'?: Price;
469
+ /**
470
+ * Additional fees on the order, such as handling. This is a single summed value and is included in totalPrice.
471
+ */
472
+ 'additionalFees'?: Price;
469
473
  'origin'?: Origin;
470
474
  /**
471
475
  * A chronological list of status changes for this order.
@@ -994,7 +998,7 @@ export type VatRegisteredFilterOption = typeof VatRegisteredFilterOption[keyof t
994
998
  */
995
999
  export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
996
1000
  /**
997
- * Cancels an order if it has not yet started processing.
1001
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
998
1002
  * @summary Cancel order
999
1003
  * @param {string} project The project identifier to scope the request to.
1000
1004
  * @param {string} orderId Unique identifier of an order
@@ -1127,7 +1131,7 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
1127
1131
  */
1128
1132
  export declare const OrdersApiFp: (configuration?: Configuration) => {
1129
1133
  /**
1130
- * Cancels an order if it has not yet started processing.
1134
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1131
1135
  * @summary Cancel order
1132
1136
  * @param {string} project The project identifier to scope the request to.
1133
1137
  * @param {string} orderId Unique identifier of an order
@@ -1260,7 +1264,7 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
1260
1264
  */
1261
1265
  export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1262
1266
  /**
1263
- * Cancels an order if it has not yet started processing.
1267
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1264
1268
  * @summary Cancel order
1265
1269
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
1266
1270
  * @param {*} [options] Override http request option.
@@ -1597,7 +1601,7 @@ export interface OrdersApiRetryPlatformPaymentRequest {
1597
1601
  */
1598
1602
  export declare class OrdersApi extends BaseAPI {
1599
1603
  /**
1600
- * Cancels an order if it has not yet started processing.
1604
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1601
1605
  * @summary Cancel order
1602
1606
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
1603
1607
  * @param {*} [options] Override http request option.
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Orders
6
6
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
7
7
  *
8
- * The version of the OpenAPI document: 1.31.2
8
+ * The version of the OpenAPI document: 1.32.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -130,7 +130,7 @@ exports.VatRegisteredFilterOption = {
130
130
  const OrdersApiAxiosParamCreator = function (configuration) {
131
131
  return {
132
132
  /**
133
- * Cancels an order if it has not yet started processing.
133
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
134
134
  * @summary Cancel order
135
135
  * @param {string} project The project identifier to scope the request to.
136
136
  * @param {string} orderId Unique identifier of an order
@@ -728,7 +728,7 @@ const OrdersApiFp = function (configuration) {
728
728
  const localVarAxiosParamCreator = (0, exports.OrdersApiAxiosParamCreator)(configuration);
729
729
  return {
730
730
  /**
731
- * Cancels an order if it has not yet started processing.
731
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
732
732
  * @summary Cancel order
733
733
  * @param {string} project The project identifier to scope the request to.
734
734
  * @param {string} orderId Unique identifier of an order
@@ -961,7 +961,7 @@ const OrdersApiFactory = function (configuration, basePath, axios) {
961
961
  const localVarFp = (0, exports.OrdersApiFp)(configuration);
962
962
  return {
963
963
  /**
964
- * Cancels an order if it has not yet started processing.
964
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
965
965
  * @summary Cancel order
966
966
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
967
967
  * @param {*} [options] Override http request option.
@@ -1088,7 +1088,7 @@ exports.OrdersApiFactory = OrdersApiFactory;
1088
1088
  */
1089
1089
  class OrdersApi extends base_1.BaseAPI {
1090
1090
  /**
1091
- * Cancels an order if it has not yet started processing.
1091
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1092
1092
  * @summary Cancel order
1093
1093
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
1094
1094
  * @param {*} [options] Override http request option.
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
6
6
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
7
7
  *
8
- * The version of the OpenAPI document: 1.31.2
8
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
6
6
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
7
7
  *
8
- * The version of the OpenAPI document: 1.31.2
8
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -443,7 +443,7 @@ export interface Order {
443
443
  */
444
444
  'items': Array<OrderItem>;
445
445
  /**
446
- * The total price of the order including tax and after discounts.
446
+ * The total price of the order including tax, additional fees, and after discounts.
447
447
  */
448
448
  'totalPrice'?: Price;
449
449
  /**
@@ -466,6 +466,10 @@ export interface Order {
466
466
  * The total shipping cost for the order.
467
467
  */
468
468
  'shippingPrice'?: Price;
469
+ /**
470
+ * Additional fees on the order, such as handling. This is a single summed value and is included in totalPrice.
471
+ */
472
+ 'additionalFees'?: Price;
469
473
  'origin'?: Origin;
470
474
  /**
471
475
  * A chronological list of status changes for this order.
@@ -994,7 +998,7 @@ export type VatRegisteredFilterOption = typeof VatRegisteredFilterOption[keyof t
994
998
  */
995
999
  export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
996
1000
  /**
997
- * Cancels an order if it has not yet started processing.
1001
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
998
1002
  * @summary Cancel order
999
1003
  * @param {string} project The project identifier to scope the request to.
1000
1004
  * @param {string} orderId Unique identifier of an order
@@ -1127,7 +1131,7 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
1127
1131
  */
1128
1132
  export declare const OrdersApiFp: (configuration?: Configuration) => {
1129
1133
  /**
1130
- * Cancels an order if it has not yet started processing.
1134
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1131
1135
  * @summary Cancel order
1132
1136
  * @param {string} project The project identifier to scope the request to.
1133
1137
  * @param {string} orderId Unique identifier of an order
@@ -1260,7 +1264,7 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
1260
1264
  */
1261
1265
  export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1262
1266
  /**
1263
- * Cancels an order if it has not yet started processing.
1267
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1264
1268
  * @summary Cancel order
1265
1269
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
1266
1270
  * @param {*} [options] Override http request option.
@@ -1597,7 +1601,7 @@ export interface OrdersApiRetryPlatformPaymentRequest {
1597
1601
  */
1598
1602
  export declare class OrdersApi extends BaseAPI {
1599
1603
  /**
1600
- * Cancels an order if it has not yet started processing.
1604
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1601
1605
  * @summary Cancel order
1602
1606
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
1603
1607
  * @param {*} [options] Override http request option.
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -127,7 +127,7 @@ export const VatRegisteredFilterOption = {
127
127
  export const OrdersApiAxiosParamCreator = function (configuration) {
128
128
  return {
129
129
  /**
130
- * Cancels an order if it has not yet started processing.
130
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
131
131
  * @summary Cancel order
132
132
  * @param {string} project The project identifier to scope the request to.
133
133
  * @param {string} orderId Unique identifier of an order
@@ -724,7 +724,7 @@ export const OrdersApiFp = function (configuration) {
724
724
  const localVarAxiosParamCreator = OrdersApiAxiosParamCreator(configuration);
725
725
  return {
726
726
  /**
727
- * Cancels an order if it has not yet started processing.
727
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
728
728
  * @summary Cancel order
729
729
  * @param {string} project The project identifier to scope the request to.
730
730
  * @param {string} orderId Unique identifier of an order
@@ -956,7 +956,7 @@ export const OrdersApiFactory = function (configuration, basePath, axios) {
956
956
  const localVarFp = OrdersApiFp(configuration);
957
957
  return {
958
958
  /**
959
- * Cancels an order if it has not yet started processing.
959
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
960
960
  * @summary Cancel order
961
961
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
962
962
  * @param {*} [options] Override http request option.
@@ -1082,7 +1082,7 @@ export const OrdersApiFactory = function (configuration, basePath, axios) {
1082
1082
  */
1083
1083
  export class OrdersApi extends BaseAPI {
1084
1084
  /**
1085
- * Cancels an order if it has not yet started processing.
1085
+ * Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
1086
1086
  * @summary Cancel order
1087
1087
  * @param {OrdersApiCancelOrderRequest} requestParameters Request parameters.
1088
1088
  * @param {*} [options] Override http request option.
@@ -2,7 +2,7 @@
2
2
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
4
4
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
5
5
  *
6
- * The version of the OpenAPI document: 1.31.2
6
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
3
3
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
4
4
  *
5
- * The version of the OpenAPI document: 1.31.2
5
+ * The version of the OpenAPI document: 1.32.0
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
  * Orders
6
6
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
7
7
  *
8
- * The version of the OpenAPI document: 1.31.2
8
+ * The version of the OpenAPI document: 1.32.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/docs/Order.md CHANGED
@@ -20,12 +20,13 @@ Name | Type | Description | Notes
20
20
  **merchantReference** | **string** | Your own reference for this order, such as an order number from your storefront. | [optional] [default to undefined]
21
21
  **fulfillments** | [**Array&lt;Fulfillment&gt;**](Fulfillment.md) | The fulfillment groups for this order. Each fulfillment represents a package that will be shipped separately. | [optional] [readonly] [default to undefined]
22
22
  **items** | [**Array&lt;OrderItem&gt;**](OrderItem.md) | The line items included in this order. | [default to undefined]
23
- **totalPrice** | [**Price**](Price.md) | The total price of the order including tax and after discounts. | [optional] [default to undefined]
23
+ **totalPrice** | [**Price**](Price.md) | The total price of the order including tax, additional fees, and after discounts. | [optional] [default to undefined]
24
24
  **taxPrice** | [**Price**](Price.md) | The total tax amount for the order. | [optional] [default to undefined]
25
25
  **subtotalPrice** | [**Price**](Price.md) | The net items price excluding tax and before discounts. | [optional] [default to undefined]
26
26
  **discountPrice** | [**Price**](Price.md) | The total discount amount applied to the order. | [optional] [default to undefined]
27
27
  **coupon** | [**Coupon**](Coupon.md) | The coupon applied to the order, if any. | [optional] [default to undefined]
28
28
  **shippingPrice** | [**Price**](Price.md) | The total shipping cost for the order. | [optional] [default to undefined]
29
+ **additionalFees** | [**Price**](Price.md) | Additional fees on the order, such as handling. This is a single summed value and is included in totalPrice. | [optional] [default to undefined]
29
30
  **origin** | [**Origin**](Origin.md) | | [optional] [default to undefined]
30
31
  **statusHistory** | [**Array&lt;StatusHistoryItem&gt;**](StatusHistoryItem.md) | A chronological list of status changes for this order. | [optional] [default to undefined]
31
32
  **paymentAttempts** | [**Array&lt;PaymentAttempt&gt;**](PaymentAttempt.md) | A list of payment attempts made for this order. | [optional] [default to undefined]
@@ -56,6 +57,7 @@ const instance: Order = {
56
57
  discountPrice,
57
58
  coupon,
58
59
  shippingPrice,
60
+ additionalFees,
59
61
  origin,
60
62
  statusHistory,
61
63
  paymentAttempts,
package/docs/OrdersApi.md CHANGED
@@ -20,7 +20,7 @@ All URIs are relative to *https://api.localhost:8080*
20
20
  # **cancelOrder**
21
21
  > cancelOrder()
22
22
 
23
- Cancels an order if it has not yet started processing.
23
+ Cancels a confirmed, paid order and issues a refund. Only orders in `paid` status can be cancelled — both the order and all of its fulfillments must be `paid` and must not yet have started processing. Unconfirmed orders (`new`, `quote`) do not need to be cancelled. If an order has not been confirmed, you can simply leave it; it will not be processed.
24
24
 
25
25
  ### Example
26
26
 
package/git_push.sh CHANGED
@@ -8,24 +8,24 @@ git_repo_id=$2
8
8
  release_note=$3
9
9
  git_host=$4
10
10
 
11
- if [ "$git_host" = "" ]; then
11
+ if [ -z "${git_host}" ]; then
12
12
  git_host="github.com"
13
- echo "[INFO] No command line input provided. Set \$git_host to $git_host"
13
+ echo "[INFO] No command line input provided. Set \${git_host} to ${git_host}"
14
14
  fi
15
15
 
16
- if [ "$git_user_id" = "" ]; then
16
+ if [ -z "${git_user_id}" ]; then
17
17
  git_user_id="Teemill"
18
- echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
18
+ echo "[INFO] No command line input provided. Set \${git_user_id} to ${git_user_id}"
19
19
  fi
20
20
 
21
- if [ "$git_repo_id" = "" ]; then
21
+ if [ -z "${git_repo_id}" ]; then
22
22
  git_repo_id="public-api"
23
- echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
23
+ echo "[INFO] No command line input provided. Set \${git_repo_id} to ${git_repo_id}"
24
24
  fi
25
25
 
26
- if [ "$release_note" = "" ]; then
26
+ if [ -z "${release_note}" ]; then
27
27
  release_note="Minor update"
28
- echo "[INFO] No command line input provided. Set \$release_note to $release_note"
28
+ echo "[INFO] No command line input provided. Set \${release_note} to ${release_note}"
29
29
  fi
30
30
 
31
31
  # Initialize the local directory as a Git repository
@@ -35,19 +35,16 @@ git init
35
35
  git add .
36
36
 
37
37
  # Commits the tracked changes and prepares them to be pushed to a remote repository.
38
- git commit -m "$release_note"
38
+ git commit -m "${release_note}"
39
39
 
40
40
  # Sets the new remote
41
- git_remote=$(git remote)
42
- if [ "$git_remote" = "" ]; then # git remote not defined
43
-
44
- if [ "$GIT_TOKEN" = "" ]; then
45
- echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
46
- git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
41
+ if [ -z "$(git remote)" ]; then # git remote not defined
42
+ if [ -z "${GIT_TOKEN:-}" ]; then
43
+ echo "[INFO] \${GIT_TOKEN} (environment variable) is not set. Using the git credential in your environment."
44
+ git remote add origin "https://${git_host}/${git_user_id}/${git_repo_id}.git"
47
45
  else
48
- git remote add origin https://${git_user_id}:"${GIT_TOKEN}"@${git_host}/${git_user_id}/${git_repo_id}.git
46
+ git remote add origin "https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git"
49
47
  fi
50
-
51
48
  fi
52
49
 
53
50
  git pull origin master
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Orders
5
5
  * Use this API to create and retrieve updates for print-on-demand orders. Use it to request fulfillment for variants of products attached to the given project. You can fetch details and references to these products and variants from the Product Catalog API.
6
6
  *
7
- * The version of the OpenAPI document: 1.31.2
7
+ * The version of the OpenAPI document: 1.32.0
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/orders",
3
- "version": "1.31.2",
3
+ "version": "1.32.0",
4
4
  "description": "OpenAPI client for @teemill/orders",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "prepare": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "^1.18.1"
27
+ "axios": "1.18.1"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "12.11.5 - 12.20.42",