@tillhub/javascript-sdk 4.107.0 → 4.108.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [4.108.0](https://github.com/tillhub/tillhub-sdk-javascript/compare/v4.107.0...v4.108.0) (2023-11-22)
2
+
3
+
4
+ ### Features
5
+
6
+ * **transactions:** taking out the ordering outside of the filtering ([634cc20](https://github.com/tillhub/tillhub-sdk-javascript/commit/634cc201ffe8793295ed21c66ad3c7e51a5b713c))
7
+
1
8
  # [4.107.0](https://github.com/tillhub/tillhub-sdk-javascript/compare/v4.106.0...v4.107.0) (2023-11-15)
2
9
 
3
10
 
@@ -31,11 +31,11 @@ export interface TransactionsQueryHandler {
31
31
  limit?: number;
32
32
  uri?: string;
33
33
  query?: TransactionsQuery;
34
+ orderFields?: string[] | string;
34
35
  }
35
36
  export interface TransactionsQuery extends TransactionEntity {
36
37
  deleted?: boolean;
37
38
  active?: boolean;
38
- orderFields?: string[] | string;
39
39
  }
40
40
  declare type CommerceTypes = 'eCommerce' | 'moto' | 'pos' | 'undefined' | 'unknown';
41
41
  declare type PaymentMethodCodeTypes = 'undefined' | 'alipay' | 'applepay' | 'bancontact' | 'bank_transfer' | 'billpay_installment' | 'billpay_invoice' | 'credit_card' | 'debit_card' | 'easycredit_installment' | 'eps' | 'fleetcard' | 'girocard' | 'giropay' | 'googlepay' | 'ideal' | 'installment' | 'invoice' | 'klarna' | 'klarna_installment' | 'klarna_invoice' | 'loyalty' | 'monthly_invoice' | 'paypal' | 'paypal_express' | 'paysafecard' | 'paysafecash' | 'post_finance_card' | 'post_finance_efinance' | 'prepayment' | 'przelewy24' | 'santander_installment' | 'santander_purchase_on_account' | 'sepa_direct_debit' | 'sofort' | 'wechatpay' | 'unknown';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tillhub/javascript-sdk",
3
- "version": "4.107.0",
3
+ "version": "4.108.0",
4
4
  "description": "The JavaScript (Browser) SDK for the Tillhub API.",
5
5
  "keywords": [],
6
6
  "main": "dist/tillhub-js.js",