tremendous 4.3.0 → 4.4.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,3 +1,3 @@
1
1
  {
2
- ".": "4.3.0"
2
+ ".": "4.4.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.4.0](https://github.com/tremendous-rewards/tremendous-node/compare/tremendous-v4.3.0...tremendous-v4.4.0) (2026-02-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * rename order `status` enum `CART` to `OPEN` ([6ef954e](https://github.com/tremendous-rewards/tremendous-node/commit/6ef954e7da4dd4b45a97cf6284f337d0b31239b9))
9
+
3
10
  ## [4.3.0](https://github.com/tremendous-rewards/tremendous-node/compare/tremendous-v4.2.0...tremendous-v4.3.0) (2026-02-25)
4
11
 
5
12
 
package/dist/api.d.ts CHANGED
@@ -954,7 +954,7 @@ export interface CreateOrder200ResponseOrder {
954
954
  */
955
955
  'created_at': string;
956
956
  /**
957
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
957
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
958
958
  * @type {string}
959
959
  * @memberof CreateOrder200ResponseOrder
960
960
  */
@@ -986,7 +986,7 @@ export interface CreateOrder200ResponseOrder {
986
986
  }
987
987
  export declare const CreateOrder200ResponseOrderStatusEnum: {
988
988
  readonly Canceled: "CANCELED";
989
- readonly Cart: "CART";
989
+ readonly Open: "OPEN";
990
990
  readonly Executed: "EXECUTED";
991
991
  readonly Failed: "FAILED";
992
992
  readonly PendingApproval: "PENDING APPROVAL";
@@ -4731,7 +4731,7 @@ export interface ListOrders200ResponseOrdersInner {
4731
4731
  */
4732
4732
  'created_at': string;
4733
4733
  /**
4734
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
4734
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
4735
4735
  * @type {string}
4736
4736
  * @memberof ListOrders200ResponseOrdersInner
4737
4737
  */
@@ -4763,7 +4763,7 @@ export interface ListOrders200ResponseOrdersInner {
4763
4763
  }
4764
4764
  export declare const ListOrders200ResponseOrdersInnerStatusEnum: {
4765
4765
  readonly Canceled: "CANCELED";
4766
- readonly Cart: "CART";
4766
+ readonly Open: "OPEN";
4767
4767
  readonly Executed: "EXECUTED";
4768
4768
  readonly Failed: "FAILED";
4769
4769
  readonly PendingApproval: "PENDING APPROVAL";
@@ -6002,7 +6002,7 @@ export interface Order {
6002
6002
  */
6003
6003
  'created_at': string;
6004
6004
  /**
6005
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6005
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6006
6006
  * @type {string}
6007
6007
  * @memberof Order
6008
6008
  */
@@ -6034,7 +6034,7 @@ export interface Order {
6034
6034
  }
6035
6035
  export declare const OrderStatusEnum: {
6036
6036
  readonly Canceled: "CANCELED";
6037
- readonly Cart: "CART";
6037
+ readonly Open: "OPEN";
6038
6038
  readonly Executed: "EXECUTED";
6039
6039
  readonly Failed: "FAILED";
6040
6040
  readonly PendingApproval: "PENDING APPROVAL";
@@ -6083,7 +6083,7 @@ export interface OrderBase {
6083
6083
  */
6084
6084
  'created_at': string;
6085
6085
  /**
6086
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6086
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6087
6087
  * @type {string}
6088
6088
  * @memberof OrderBase
6089
6089
  */
@@ -6109,7 +6109,7 @@ export interface OrderBase {
6109
6109
  }
6110
6110
  export declare const OrderBaseStatusEnum: {
6111
6111
  readonly Canceled: "CANCELED";
6112
- readonly Cart: "CART";
6112
+ readonly Open: "OPEN";
6113
6113
  readonly Executed: "EXECUTED";
6114
6114
  readonly Failed: "FAILED";
6115
6115
  readonly PendingApproval: "PENDING APPROVAL";
@@ -6165,13 +6165,13 @@ export interface OrderBasePayment {
6165
6165
  'refund'?: PaymentDetailsRefund;
6166
6166
  }
6167
6167
  /**
6168
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6168
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6169
6169
  * @export
6170
6170
  * @enum {string}
6171
6171
  */
6172
6172
  export declare const OrderStatus: {
6173
6173
  readonly Canceled: "CANCELED";
6174
- readonly Cart: "CART";
6174
+ readonly Open: "OPEN";
6175
6175
  readonly Executed: "EXECUTED";
6176
6176
  readonly Failed: "FAILED";
6177
6177
  readonly PendingApproval: "PENDING APPROVAL";
@@ -6209,7 +6209,7 @@ export interface OrderWithLink {
6209
6209
  */
6210
6210
  'created_at': string;
6211
6211
  /**
6212
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6212
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6213
6213
  * @type {string}
6214
6214
  * @memberof OrderWithLink
6215
6215
  */
@@ -6241,7 +6241,7 @@ export interface OrderWithLink {
6241
6241
  }
6242
6242
  export declare const OrderWithLinkStatusEnum: {
6243
6243
  readonly Canceled: "CANCELED";
6244
- readonly Cart: "CART";
6244
+ readonly Open: "OPEN";
6245
6245
  readonly Executed: "EXECUTED";
6246
6246
  readonly Failed: "FAILED";
6247
6247
  readonly PendingApproval: "PENDING APPROVAL";
@@ -6363,7 +6363,7 @@ export interface OrderWithoutLink {
6363
6363
  */
6364
6364
  'created_at': string;
6365
6365
  /**
6366
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6366
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
6367
6367
  * @type {string}
6368
6368
  * @memberof OrderWithoutLink
6369
6369
  */
@@ -6395,7 +6395,7 @@ export interface OrderWithoutLink {
6395
6395
  }
6396
6396
  export declare const OrderWithoutLinkStatusEnum: {
6397
6397
  readonly Canceled: "CANCELED";
6398
- readonly Cart: "CART";
6398
+ readonly Open: "OPEN";
6399
6399
  readonly Executed: "EXECUTED";
6400
6400
  readonly Failed: "FAILED";
6401
6401
  readonly PendingApproval: "PENDING APPROVAL";
@@ -8047,7 +8047,7 @@ export interface SingleRewardOrderWithLinkOrder {
8047
8047
  */
8048
8048
  'created_at': string;
8049
8049
  /**
8050
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
8050
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
8051
8051
  * @type {string}
8052
8052
  * @memberof SingleRewardOrderWithLinkOrder
8053
8053
  */
@@ -8079,7 +8079,7 @@ export interface SingleRewardOrderWithLinkOrder {
8079
8079
  }
8080
8080
  export declare const SingleRewardOrderWithLinkOrderStatusEnum: {
8081
8081
  readonly Canceled: "CANCELED";
8082
- readonly Cart: "CART";
8082
+ readonly Open: "OPEN";
8083
8083
  readonly Executed: "EXECUTED";
8084
8084
  readonly Failed: "FAILED";
8085
8085
  readonly PendingApproval: "PENDING APPROVAL";
@@ -8141,7 +8141,7 @@ export interface SingleRewardOrderWithoutLinkOrder {
8141
8141
  */
8142
8142
  'created_at': string;
8143
8143
  /**
8144
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
8144
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
8145
8145
  * @type {string}
8146
8146
  * @memberof SingleRewardOrderWithoutLinkOrder
8147
8147
  */
@@ -8173,7 +8173,7 @@ export interface SingleRewardOrderWithoutLinkOrder {
8173
8173
  }
8174
8174
  export declare const SingleRewardOrderWithoutLinkOrderStatusEnum: {
8175
8175
  readonly Canceled: "CANCELED";
8176
- readonly Cart: "CART";
8176
+ readonly Open: "OPEN";
8177
8177
  readonly Executed: "EXECUTED";
8178
8178
  readonly Failed: "FAILED";
8179
8179
  readonly PendingApproval: "PENDING APPROVAL";
package/dist/api.js CHANGED
@@ -87,7 +87,7 @@ exports.CreateInvoiceRequestCurrencyEnum = {
87
87
  };
88
88
  exports.CreateOrder200ResponseOrderStatusEnum = {
89
89
  Canceled: 'CANCELED',
90
- Cart: 'CART',
90
+ Open: 'OPEN',
91
91
  Executed: 'EXECUTED',
92
92
  Failed: 'FAILED',
93
93
  PendingApproval: 'PENDING APPROVAL',
@@ -776,7 +776,7 @@ exports.ListMembers200ResponseMembersInnerStatusEnum = {
776
776
  };
777
777
  exports.ListOrders200ResponseOrdersInnerStatusEnum = {
778
778
  Canceled: 'CANCELED',
779
- Cart: 'CART',
779
+ Open: 'OPEN',
780
780
  Executed: 'EXECUTED',
781
781
  Failed: 'FAILED',
782
782
  PendingApproval: 'PENDING APPROVAL',
@@ -1088,7 +1088,7 @@ exports.MemberWithoutEventsStatusEnum = {
1088
1088
  };
1089
1089
  exports.OrderStatusEnum = {
1090
1090
  Canceled: 'CANCELED',
1091
- Cart: 'CART',
1091
+ Open: 'OPEN',
1092
1092
  Executed: 'EXECUTED',
1093
1093
  Failed: 'FAILED',
1094
1094
  PendingApproval: 'PENDING APPROVAL',
@@ -1106,7 +1106,7 @@ exports.OrderChannelEnum = {
1106
1106
  };
1107
1107
  exports.OrderBaseStatusEnum = {
1108
1108
  Canceled: 'CANCELED',
1109
- Cart: 'CART',
1109
+ Open: 'OPEN',
1110
1110
  Executed: 'EXECUTED',
1111
1111
  Failed: 'FAILED',
1112
1112
  PendingApproval: 'PENDING APPROVAL',
@@ -1123,13 +1123,13 @@ exports.OrderBaseChannelEnum = {
1123
1123
  Yotpo: 'YOTPO'
1124
1124
  };
1125
1125
  /**
1126
- * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> CART </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
1126
+ * Execution status of a given order <table> <thead> <tr> <th> Status </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code> CANCELED </code> </td> <td> The order and all of its rewards were canceled. </td> </tr> <tr> <td> <code> OPEN </code> </td> <td> The order has been created, but hasn\'t yet been processed. </td> </tr> <tr> <td> <code> EXECUTED </code> </td> <td> The order has been executed. Payment has been handled and rewards are being delivered (if applicable). </td> </tr> <tr> <td> <code> FAILED </code> </td> <td> The order could not be processed due to an error. E.g. due to insufficient funds in the account. </td> </tr> <tr> <td> <code> PENDING APPROVAL </code> </td> <td> The order has been created but needs approval to be executed. </td> </tr> <tr> <td> <code> PENDING INTERNAL PAYMENT APPROVAL </code> </td> <td> The order has been created but it is under review and requires approval from our team. </td> </tr> </tbody> </table>
1127
1127
  * @export
1128
1128
  * @enum {string}
1129
1129
  */
1130
1130
  exports.OrderStatus = {
1131
1131
  Canceled: 'CANCELED',
1132
- Cart: 'CART',
1132
+ Open: 'OPEN',
1133
1133
  Executed: 'EXECUTED',
1134
1134
  Failed: 'FAILED',
1135
1135
  PendingApproval: 'PENDING APPROVAL',
@@ -1137,7 +1137,7 @@ exports.OrderStatus = {
1137
1137
  };
1138
1138
  exports.OrderWithLinkStatusEnum = {
1139
1139
  Canceled: 'CANCELED',
1140
- Cart: 'CART',
1140
+ Open: 'OPEN',
1141
1141
  Executed: 'EXECUTED',
1142
1142
  Failed: 'FAILED',
1143
1143
  PendingApproval: 'PENDING APPROVAL',
@@ -1155,7 +1155,7 @@ exports.OrderWithLinkChannelEnum = {
1155
1155
  };
1156
1156
  exports.OrderWithoutLinkStatusEnum = {
1157
1157
  Canceled: 'CANCELED',
1158
- Cart: 'CART',
1158
+ Open: 'OPEN',
1159
1159
  Executed: 'EXECUTED',
1160
1160
  Failed: 'FAILED',
1161
1161
  PendingApproval: 'PENDING APPROVAL',
@@ -1497,7 +1497,7 @@ exports.SingleRewardOrderRewardDeliveryMethodEnum = {
1497
1497
  };
1498
1498
  exports.SingleRewardOrderWithLinkOrderStatusEnum = {
1499
1499
  Canceled: 'CANCELED',
1500
- Cart: 'CART',
1500
+ Open: 'OPEN',
1501
1501
  Executed: 'EXECUTED',
1502
1502
  Failed: 'FAILED',
1503
1503
  PendingApproval: 'PENDING APPROVAL',
@@ -1515,7 +1515,7 @@ exports.SingleRewardOrderWithLinkOrderChannelEnum = {
1515
1515
  };
1516
1516
  exports.SingleRewardOrderWithoutLinkOrderStatusEnum = {
1517
1517
  Canceled: 'CANCELED',
1518
- Cart: 'CART',
1518
+ Open: 'OPEN',
1519
1519
  Executed: 'EXECUTED',
1520
1520
  Failed: 'FAILED',
1521
1521
  PendingApproval: 'PENDING APPROVAL',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tremendous",
3
- "version": "4.3.0",
3
+ "version": "4.4.0",
4
4
  "description": "A node.js client for the Tremendous API",
5
5
  "keywords": [
6
6
  "tremendous",