@finverse/sdk-typescript 0.0.209 → 0.0.211

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.
Files changed (2) hide show
  1. package/dist/api.d.ts +34 -3
  2. package/package.json +2 -2
package/dist/api.d.ts CHANGED
@@ -1684,6 +1684,31 @@ export interface ErrorResponse {
1684
1684
  */
1685
1685
  request_id?: string;
1686
1686
  }
1687
+ /**
1688
+ *
1689
+ * @export
1690
+ * @interface FVCard
1691
+ */
1692
+ export interface FVCard {
1693
+ /**
1694
+ * Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
1695
+ * @type {string}
1696
+ * @memberof FVCard
1697
+ */
1698
+ created_at?: string;
1699
+ /**
1700
+ * Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
1701
+ * @type {string}
1702
+ * @memberof FVCard
1703
+ */
1704
+ updated_at?: string;
1705
+ /**
1706
+ * Finverse Card ID (ULID)
1707
+ * @type {string}
1708
+ * @memberof FVCard
1709
+ */
1710
+ card_id?: string;
1711
+ }
1687
1712
  /**
1688
1713
  *
1689
1714
  * @export
@@ -4739,13 +4764,13 @@ export interface PaymentLinkDetails {
4739
4764
  * @type {string}
4740
4765
  * @memberof PaymentLinkDetails
4741
4766
  */
4742
- description?: string;
4767
+ description: string;
4743
4768
  /**
4744
- * For external invoice reference
4769
+ * For external invoice/transaction reference
4745
4770
  * @type {string}
4746
4771
  * @memberof PaymentLinkDetails
4747
4772
  */
4748
- external_invoice_number?: string;
4773
+ external_transaction_reference: string;
4749
4774
  }
4750
4775
  /**
4751
4776
  *
@@ -5014,6 +5039,12 @@ export interface PaymentMethodResponse {
5014
5039
  * @memberof PaymentMethodResponse
5015
5040
  */
5016
5041
  mandate?: GetMandateResponse;
5042
+ /**
5043
+ *
5044
+ * @type {FVCard}
5045
+ * @memberof PaymentMethodResponse
5046
+ */
5047
+ card?: FVCard;
5017
5048
  }
5018
5049
  /**
5019
5050
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.209",
3
+ "version": "0.0.211",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -25,7 +25,7 @@
25
25
  "@types/mocha": "^10.0.6",
26
26
  "@types/node": "^12.11.5",
27
27
  "axios-mock-adapter": "^1.21.2",
28
- "chai": "^4.3.10",
28
+ "chai": "^5.0.0",
29
29
  "mocha": "^10.2.0",
30
30
  "ts-node": "^10.9.2",
31
31
  "typescript": "^3.6.4"