@bcc-code/payment-client 1.1.5 → 1.1.7

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/dist/index.d.mts CHANGED
@@ -23,6 +23,7 @@ interface CreatePaymentRequest {
23
23
  invoiceRecipient?: InvoiceRecipientRequest;
24
24
  tripletexProjectId?: number;
25
25
  tripletexProductId?: number;
26
+ tripletexInvoiceComment?: string;
26
27
  }
27
28
  interface PersonInfoRequest {
28
29
  payerUid: string;
@@ -67,6 +68,7 @@ interface PaymentResponse {
67
68
  tripletexInvoiceId?: string | null;
68
69
  tripletexProjectId?: number | null;
69
70
  tripletexProductId?: number | null;
71
+ tripletexInvoiceComment?: string | null;
70
72
  }
71
73
  interface LineItemResponse {
72
74
  id: string;
@@ -110,6 +112,7 @@ interface PaymentReceiptResponse {
110
112
  tripletexInvoiceId?: string | null;
111
113
  tripletexProjectId?: number | null;
112
114
  tripletexProductId?: number | null;
115
+ tripletexInvoiceComment?: string | null;
113
116
  }
114
117
  interface PaymentSucceededNotification {
115
118
  paymentId: string;
package/dist/index.d.ts CHANGED
@@ -23,6 +23,7 @@ interface CreatePaymentRequest {
23
23
  invoiceRecipient?: InvoiceRecipientRequest;
24
24
  tripletexProjectId?: number;
25
25
  tripletexProductId?: number;
26
+ tripletexInvoiceComment?: string;
26
27
  }
27
28
  interface PersonInfoRequest {
28
29
  payerUid: string;
@@ -67,6 +68,7 @@ interface PaymentResponse {
67
68
  tripletexInvoiceId?: string | null;
68
69
  tripletexProjectId?: number | null;
69
70
  tripletexProductId?: number | null;
71
+ tripletexInvoiceComment?: string | null;
70
72
  }
71
73
  interface LineItemResponse {
72
74
  id: string;
@@ -110,6 +112,7 @@ interface PaymentReceiptResponse {
110
112
  tripletexInvoiceId?: string | null;
111
113
  tripletexProjectId?: number | null;
112
114
  tripletexProductId?: number | null;
115
+ tripletexInvoiceComment?: string | null;
113
116
  }
114
117
  interface PaymentSucceededNotification {
115
118
  paymentId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcc-code/payment-client",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "Client SDK for BCC Payment Orchestrator API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",