tremendous 4.4.0 → 4.5.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.4.0"
2
+ ".": "4.5.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.5.0](https://github.com/tremendous-rewards/tremendous-node/compare/tremendous-v4.4.0...tremendous-v4.5.0) (2026-03-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * add `international_bank` to product category enum ([1c2ca3b](https://github.com/tremendous-rewards/tremendous-node/commit/1c2ca3b0b3ef419ba620c1da292414470f95d42f))
9
+ * add `PENDING SETTLEMENT` to order status enum ([1c2ca3b](https://github.com/tremendous-rewards/tremendous-node/commit/1c2ca3b0b3ef419ba620c1da292414470f95d42f))
10
+
3
11
  ## [4.4.0](https://github.com/tremendous-rewards/tremendous-node/compare/tremendous-v4.3.0...tremendous-v4.4.0) (2026-02-27)
4
12
 
5
13
 
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> 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>
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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
958
958
  * @type {string}
959
959
  * @memberof CreateOrder200ResponseOrder
960
960
  */
@@ -991,6 +991,7 @@ export declare const CreateOrder200ResponseOrderStatusEnum: {
991
991
  readonly Failed: "FAILED";
992
992
  readonly PendingApproval: "PENDING APPROVAL";
993
993
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
994
+ readonly PendingSettlement: "PENDING SETTLEMENT";
994
995
  };
995
996
  export type CreateOrder200ResponseOrderStatusEnum = typeof CreateOrder200ResponseOrderStatusEnum[keyof typeof CreateOrder200ResponseOrderStatusEnum];
996
997
  export declare const CreateOrder200ResponseOrderChannelEnum: {
@@ -4731,7 +4732,7 @@ export interface ListOrders200ResponseOrdersInner {
4731
4732
  */
4732
4733
  'created_at': string;
4733
4734
  /**
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
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
4735
4736
  * @type {string}
4736
4737
  * @memberof ListOrders200ResponseOrdersInner
4737
4738
  */
@@ -4768,6 +4769,7 @@ export declare const ListOrders200ResponseOrdersInnerStatusEnum: {
4768
4769
  readonly Failed: "FAILED";
4769
4770
  readonly PendingApproval: "PENDING APPROVAL";
4770
4771
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
4772
+ readonly PendingSettlement: "PENDING SETTLEMENT";
4771
4773
  };
4772
4774
  export type ListOrders200ResponseOrdersInnerStatusEnum = typeof ListOrders200ResponseOrdersInnerStatusEnum[keyof typeof ListOrders200ResponseOrdersInnerStatusEnum];
4773
4775
  export declare const ListOrders200ResponseOrdersInnerChannelEnum: {
@@ -4925,7 +4927,7 @@ export interface ListProductsResponseProductsInner {
4925
4927
  */
4926
4928
  'description': string;
4927
4929
  /**
4928
- * The category of the product <table> <thead> <tr> <th>Category</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>ach</code></td> <td>Bank transfer to the recipient</td> </tr> <tr> <td><code>charity</code></td> <td>Donations to a charity</td> </tr> <tr> <td><code>instant_debit_transfer</code></td> <td>Instant debit transfer to the recipient</td> </tr> <tr> <td><code>merchant_card</code></td> <td>A gift card for a certain merchant (e.g. Amazon)</td> </tr> <tr> <td><code>paypal</code></td> <td>Payout via PayPal</td> </tr> <tr> <td><code>venmo</code></td> <td>Payout via Venmo</td> </tr> <tr> <td><code>visa_card</code></td> <td>Payout in form of a Visa debit card</td> </tr> <tr> <td><code>cash_app</code></td> <td>Payout via Cash App</td> </tr> </tbody> </table>
4930
+ * The category of the product <table> <thead> <tr> <th>Category</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>ach</code></td> <td>Bank transfer to the recipient</td> </tr> <tr> <td><code>charity</code></td> <td>Donations to a charity</td> </tr> <tr> <td><code>instant_debit_transfer</code></td> <td>Instant debit transfer to the recipient</td> </tr> <tr> <td><code>merchant_card</code></td> <td>A gift card for a certain merchant (e.g. Amazon)</td> </tr> <tr> <td><code>paypal</code></td> <td>Payout via PayPal</td> </tr> <tr> <td><code>venmo</code></td> <td>Payout via Venmo</td> </tr> <tr> <td><code>visa_card</code></td> <td>Payout in form of a Visa debit card</td> </tr> <tr> <td><code>cash_app</code></td> <td>Payout via Cash App</td> </tr> <tr> <td><code>international_bank</code></td> <td>Bank transfer to recipients outside of the US</td> </tr> </tbody> </table>
4929
4931
  * @type {string}
4930
4932
  * @memberof ListProductsResponseProductsInner
4931
4933
  */
@@ -4988,6 +4990,7 @@ export declare const ListProductsResponseProductsInnerCategoryEnum: {
4988
4990
  readonly Venmo: "venmo";
4989
4991
  readonly VisaCard: "visa_card";
4990
4992
  readonly CashApp: "cash_app";
4993
+ readonly InternationalBank: "international_bank";
4991
4994
  };
4992
4995
  export type ListProductsResponseProductsInnerCategoryEnum = typeof ListProductsResponseProductsInnerCategoryEnum[keyof typeof ListProductsResponseProductsInnerCategoryEnum];
4993
4996
  export declare const ListProductsResponseProductsInnerSubcategoryEnum: {
@@ -6002,7 +6005,7 @@ export interface Order {
6002
6005
  */
6003
6006
  'created_at': string;
6004
6007
  /**
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>
6008
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
6006
6009
  * @type {string}
6007
6010
  * @memberof Order
6008
6011
  */
@@ -6039,6 +6042,7 @@ export declare const OrderStatusEnum: {
6039
6042
  readonly Failed: "FAILED";
6040
6043
  readonly PendingApproval: "PENDING APPROVAL";
6041
6044
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
6045
+ readonly PendingSettlement: "PENDING SETTLEMENT";
6042
6046
  };
6043
6047
  export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
6044
6048
  export declare const OrderChannelEnum: {
@@ -6083,7 +6087,7 @@ export interface OrderBase {
6083
6087
  */
6084
6088
  'created_at': string;
6085
6089
  /**
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>
6090
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
6087
6091
  * @type {string}
6088
6092
  * @memberof OrderBase
6089
6093
  */
@@ -6114,6 +6118,7 @@ export declare const OrderBaseStatusEnum: {
6114
6118
  readonly Failed: "FAILED";
6115
6119
  readonly PendingApproval: "PENDING APPROVAL";
6116
6120
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
6121
+ readonly PendingSettlement: "PENDING SETTLEMENT";
6117
6122
  };
6118
6123
  export type OrderBaseStatusEnum = typeof OrderBaseStatusEnum[keyof typeof OrderBaseStatusEnum];
6119
6124
  export declare const OrderBaseChannelEnum: {
@@ -6165,7 +6170,7 @@ export interface OrderBasePayment {
6165
6170
  'refund'?: PaymentDetailsRefund;
6166
6171
  }
6167
6172
  /**
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>
6173
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
6169
6174
  * @export
6170
6175
  * @enum {string}
6171
6176
  */
@@ -6176,6 +6181,7 @@ export declare const OrderStatus: {
6176
6181
  readonly Failed: "FAILED";
6177
6182
  readonly PendingApproval: "PENDING APPROVAL";
6178
6183
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
6184
+ readonly PendingSettlement: "PENDING SETTLEMENT";
6179
6185
  };
6180
6186
  export type OrderStatus = typeof OrderStatus[keyof typeof OrderStatus];
6181
6187
  /**
@@ -6209,7 +6215,7 @@ export interface OrderWithLink {
6209
6215
  */
6210
6216
  'created_at': string;
6211
6217
  /**
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>
6218
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
6213
6219
  * @type {string}
6214
6220
  * @memberof OrderWithLink
6215
6221
  */
@@ -6246,6 +6252,7 @@ export declare const OrderWithLinkStatusEnum: {
6246
6252
  readonly Failed: "FAILED";
6247
6253
  readonly PendingApproval: "PENDING APPROVAL";
6248
6254
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
6255
+ readonly PendingSettlement: "PENDING SETTLEMENT";
6249
6256
  };
6250
6257
  export type OrderWithLinkStatusEnum = typeof OrderWithLinkStatusEnum[keyof typeof OrderWithLinkStatusEnum];
6251
6258
  export declare const OrderWithLinkChannelEnum: {
@@ -6363,7 +6370,7 @@ export interface OrderWithoutLink {
6363
6370
  */
6364
6371
  'created_at': string;
6365
6372
  /**
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>
6373
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
6367
6374
  * @type {string}
6368
6375
  * @memberof OrderWithoutLink
6369
6376
  */
@@ -6400,6 +6407,7 @@ export declare const OrderWithoutLinkStatusEnum: {
6400
6407
  readonly Failed: "FAILED";
6401
6408
  readonly PendingApproval: "PENDING APPROVAL";
6402
6409
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
6410
+ readonly PendingSettlement: "PENDING SETTLEMENT";
6403
6411
  };
6404
6412
  export type OrderWithoutLinkStatusEnum = typeof OrderWithoutLinkStatusEnum[keyof typeof OrderWithoutLinkStatusEnum];
6405
6413
  export declare const OrderWithoutLinkChannelEnum: {
@@ -6662,7 +6670,7 @@ export interface Product {
6662
6670
  */
6663
6671
  'description': string;
6664
6672
  /**
6665
- * The category of the product <table> <thead> <tr> <th>Category</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>ach</code></td> <td>Bank transfer to the recipient</td> </tr> <tr> <td><code>charity</code></td> <td>Donations to a charity</td> </tr> <tr> <td><code>instant_debit_transfer</code></td> <td>Instant debit transfer to the recipient</td> </tr> <tr> <td><code>merchant_card</code></td> <td>A gift card for a certain merchant (e.g. Amazon)</td> </tr> <tr> <td><code>paypal</code></td> <td>Payout via PayPal</td> </tr> <tr> <td><code>venmo</code></td> <td>Payout via Venmo</td> </tr> <tr> <td><code>visa_card</code></td> <td>Payout in form of a Visa debit card</td> </tr> <tr> <td><code>cash_app</code></td> <td>Payout via Cash App</td> </tr> </tbody> </table>
6673
+ * The category of the product <table> <thead> <tr> <th>Category</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>ach</code></td> <td>Bank transfer to the recipient</td> </tr> <tr> <td><code>charity</code></td> <td>Donations to a charity</td> </tr> <tr> <td><code>instant_debit_transfer</code></td> <td>Instant debit transfer to the recipient</td> </tr> <tr> <td><code>merchant_card</code></td> <td>A gift card for a certain merchant (e.g. Amazon)</td> </tr> <tr> <td><code>paypal</code></td> <td>Payout via PayPal</td> </tr> <tr> <td><code>venmo</code></td> <td>Payout via Venmo</td> </tr> <tr> <td><code>visa_card</code></td> <td>Payout in form of a Visa debit card</td> </tr> <tr> <td><code>cash_app</code></td> <td>Payout via Cash App</td> </tr> <tr> <td><code>international_bank</code></td> <td>Bank transfer to recipients outside of the US</td> </tr> </tbody> </table>
6666
6674
  * @type {string}
6667
6675
  * @memberof Product
6668
6676
  */
@@ -6725,6 +6733,7 @@ export declare const ProductCategoryEnum: {
6725
6733
  readonly Venmo: "venmo";
6726
6734
  readonly VisaCard: "visa_card";
6727
6735
  readonly CashApp: "cash_app";
6736
+ readonly InternationalBank: "international_bank";
6728
6737
  };
6729
6738
  export type ProductCategoryEnum = typeof ProductCategoryEnum[keyof typeof ProductCategoryEnum];
6730
6739
  export declare const ProductSubcategoryEnum: {
@@ -8047,7 +8056,7 @@ export interface SingleRewardOrderWithLinkOrder {
8047
8056
  */
8048
8057
  'created_at': string;
8049
8058
  /**
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>
8059
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
8051
8060
  * @type {string}
8052
8061
  * @memberof SingleRewardOrderWithLinkOrder
8053
8062
  */
@@ -8084,6 +8093,7 @@ export declare const SingleRewardOrderWithLinkOrderStatusEnum: {
8084
8093
  readonly Failed: "FAILED";
8085
8094
  readonly PendingApproval: "PENDING APPROVAL";
8086
8095
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
8096
+ readonly PendingSettlement: "PENDING SETTLEMENT";
8087
8097
  };
8088
8098
  export type SingleRewardOrderWithLinkOrderStatusEnum = typeof SingleRewardOrderWithLinkOrderStatusEnum[keyof typeof SingleRewardOrderWithLinkOrderStatusEnum];
8089
8099
  export declare const SingleRewardOrderWithLinkOrderChannelEnum: {
@@ -8141,7 +8151,7 @@ export interface SingleRewardOrderWithoutLinkOrder {
8141
8151
  */
8142
8152
  'created_at': string;
8143
8153
  /**
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>
8154
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
8145
8155
  * @type {string}
8146
8156
  * @memberof SingleRewardOrderWithoutLinkOrder
8147
8157
  */
@@ -8178,6 +8188,7 @@ export declare const SingleRewardOrderWithoutLinkOrderStatusEnum: {
8178
8188
  readonly Failed: "FAILED";
8179
8189
  readonly PendingApproval: "PENDING APPROVAL";
8180
8190
  readonly PendingInternalPaymentApproval: "PENDING INTERNAL PAYMENT APPROVAL";
8191
+ readonly PendingSettlement: "PENDING SETTLEMENT";
8181
8192
  };
8182
8193
  export type SingleRewardOrderWithoutLinkOrderStatusEnum = typeof SingleRewardOrderWithoutLinkOrderStatusEnum[keyof typeof SingleRewardOrderWithoutLinkOrderStatusEnum];
8183
8194
  export declare const SingleRewardOrderWithoutLinkOrderChannelEnum: {
package/dist/api.js CHANGED
@@ -91,7 +91,8 @@ exports.CreateOrder200ResponseOrderStatusEnum = {
91
91
  Executed: 'EXECUTED',
92
92
  Failed: 'FAILED',
93
93
  PendingApproval: 'PENDING APPROVAL',
94
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
94
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
95
+ PendingSettlement: 'PENDING SETTLEMENT'
95
96
  };
96
97
  exports.CreateOrder200ResponseOrderChannelEnum = {
97
98
  Ui: 'UI',
@@ -780,7 +781,8 @@ exports.ListOrders200ResponseOrdersInnerStatusEnum = {
780
781
  Executed: 'EXECUTED',
781
782
  Failed: 'FAILED',
782
783
  PendingApproval: 'PENDING APPROVAL',
783
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
784
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
785
+ PendingSettlement: 'PENDING SETTLEMENT'
784
786
  };
785
787
  exports.ListOrders200ResponseOrdersInnerChannelEnum = {
786
788
  Ui: 'UI',
@@ -805,7 +807,8 @@ exports.ListProductsResponseProductsInnerCategoryEnum = {
805
807
  Paypal: 'paypal',
806
808
  Venmo: 'venmo',
807
809
  VisaCard: 'visa_card',
808
- CashApp: 'cash_app'
810
+ CashApp: 'cash_app',
811
+ InternationalBank: 'international_bank'
809
812
  };
810
813
  exports.ListProductsResponseProductsInnerSubcategoryEnum = {
811
814
  BeautyAndHealth: 'beauty_and_health',
@@ -1092,7 +1095,8 @@ exports.OrderStatusEnum = {
1092
1095
  Executed: 'EXECUTED',
1093
1096
  Failed: 'FAILED',
1094
1097
  PendingApproval: 'PENDING APPROVAL',
1095
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
1098
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
1099
+ PendingSettlement: 'PENDING SETTLEMENT'
1096
1100
  };
1097
1101
  exports.OrderChannelEnum = {
1098
1102
  Ui: 'UI',
@@ -1110,7 +1114,8 @@ exports.OrderBaseStatusEnum = {
1110
1114
  Executed: 'EXECUTED',
1111
1115
  Failed: 'FAILED',
1112
1116
  PendingApproval: 'PENDING APPROVAL',
1113
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
1117
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
1118
+ PendingSettlement: 'PENDING SETTLEMENT'
1114
1119
  };
1115
1120
  exports.OrderBaseChannelEnum = {
1116
1121
  Ui: 'UI',
@@ -1123,7 +1128,7 @@ exports.OrderBaseChannelEnum = {
1123
1128
  Yotpo: 'YOTPO'
1124
1129
  };
1125
1130
  /**
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>
1131
+ * 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> <tr> <td> <code> PENDING SETTLEMENT </code> </td> <td> The order has been created but the funds are being held until the settlement window clears. </td> </tr> </tbody> </table>
1127
1132
  * @export
1128
1133
  * @enum {string}
1129
1134
  */
@@ -1133,7 +1138,8 @@ exports.OrderStatus = {
1133
1138
  Executed: 'EXECUTED',
1134
1139
  Failed: 'FAILED',
1135
1140
  PendingApproval: 'PENDING APPROVAL',
1136
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
1141
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
1142
+ PendingSettlement: 'PENDING SETTLEMENT'
1137
1143
  };
1138
1144
  exports.OrderWithLinkStatusEnum = {
1139
1145
  Canceled: 'CANCELED',
@@ -1141,7 +1147,8 @@ exports.OrderWithLinkStatusEnum = {
1141
1147
  Executed: 'EXECUTED',
1142
1148
  Failed: 'FAILED',
1143
1149
  PendingApproval: 'PENDING APPROVAL',
1144
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
1150
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
1151
+ PendingSettlement: 'PENDING SETTLEMENT'
1145
1152
  };
1146
1153
  exports.OrderWithLinkChannelEnum = {
1147
1154
  Ui: 'UI',
@@ -1159,7 +1166,8 @@ exports.OrderWithoutLinkStatusEnum = {
1159
1166
  Executed: 'EXECUTED',
1160
1167
  Failed: 'FAILED',
1161
1168
  PendingApproval: 'PENDING APPROVAL',
1162
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
1169
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
1170
+ PendingSettlement: 'PENDING SETTLEMENT'
1163
1171
  };
1164
1172
  exports.OrderWithoutLinkChannelEnum = {
1165
1173
  Ui: 'UI',
@@ -1192,7 +1200,8 @@ exports.ProductCategoryEnum = {
1192
1200
  Paypal: 'paypal',
1193
1201
  Venmo: 'venmo',
1194
1202
  VisaCard: 'visa_card',
1195
- CashApp: 'cash_app'
1203
+ CashApp: 'cash_app',
1204
+ InternationalBank: 'international_bank'
1196
1205
  };
1197
1206
  exports.ProductSubcategoryEnum = {
1198
1207
  BeautyAndHealth: 'beauty_and_health',
@@ -1501,7 +1510,8 @@ exports.SingleRewardOrderWithLinkOrderStatusEnum = {
1501
1510
  Executed: 'EXECUTED',
1502
1511
  Failed: 'FAILED',
1503
1512
  PendingApproval: 'PENDING APPROVAL',
1504
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
1513
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
1514
+ PendingSettlement: 'PENDING SETTLEMENT'
1505
1515
  };
1506
1516
  exports.SingleRewardOrderWithLinkOrderChannelEnum = {
1507
1517
  Ui: 'UI',
@@ -1519,7 +1529,8 @@ exports.SingleRewardOrderWithoutLinkOrderStatusEnum = {
1519
1529
  Executed: 'EXECUTED',
1520
1530
  Failed: 'FAILED',
1521
1531
  PendingApproval: 'PENDING APPROVAL',
1522
- PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL'
1532
+ PendingInternalPaymentApproval: 'PENDING INTERNAL PAYMENT APPROVAL',
1533
+ PendingSettlement: 'PENDING SETTLEMENT'
1523
1534
  };
1524
1535
  exports.SingleRewardOrderWithoutLinkOrderChannelEnum = {
1525
1536
  Ui: 'UI',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tremendous",
3
- "version": "4.4.0",
3
+ "version": "4.5.0",
4
4
  "description": "A node.js client for the Tremendous API",
5
5
  "keywords": [
6
6
  "tremendous",