@vrplatform/log 2.0.0-alpha.52 → 2.0.0-alpha.53
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.
|
@@ -265,7 +265,7 @@ type HyperlineInvoiceReadyProps = Partial<{
|
|
|
265
265
|
amountOrigin: number;
|
|
266
266
|
currency: string;
|
|
267
267
|
customerId: string;
|
|
268
|
-
taxAmount:
|
|
268
|
+
taxAmount: number;
|
|
269
269
|
readyAt: string;
|
|
270
270
|
}>;
|
|
271
271
|
type HyperlineInvoiceSettledProps = Partial<{
|
|
@@ -276,7 +276,7 @@ type HyperlineInvoiceSettledProps = Partial<{
|
|
|
276
276
|
amountOrigin: number;
|
|
277
277
|
currency: string;
|
|
278
278
|
customerId: string;
|
|
279
|
-
taxAmount:
|
|
279
|
+
taxAmount: number;
|
|
280
280
|
settledAt: string;
|
|
281
281
|
}>;
|
|
282
282
|
type HyperlinePaymentMethodCreatedProps = Partial<{
|
|
@@ -265,7 +265,7 @@ type HyperlineInvoiceReadyProps = Partial<{
|
|
|
265
265
|
amountOrigin: number;
|
|
266
266
|
currency: string;
|
|
267
267
|
customerId: string;
|
|
268
|
-
taxAmount:
|
|
268
|
+
taxAmount: number;
|
|
269
269
|
readyAt: string;
|
|
270
270
|
}>;
|
|
271
271
|
type HyperlineInvoiceSettledProps = Partial<{
|
|
@@ -276,7 +276,7 @@ type HyperlineInvoiceSettledProps = Partial<{
|
|
|
276
276
|
amountOrigin: number;
|
|
277
277
|
currency: string;
|
|
278
278
|
customerId: string;
|
|
279
|
-
taxAmount:
|
|
279
|
+
taxAmount: number;
|
|
280
280
|
settledAt: string;
|
|
281
281
|
}>;
|
|
282
282
|
type HyperlinePaymentMethodCreatedProps = Partial<{
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -318,7 +318,7 @@ type HyperlineInvoiceReadyProps = Partial<{
|
|
|
318
318
|
amountOrigin: number;
|
|
319
319
|
currency: string;
|
|
320
320
|
customerId: string;
|
|
321
|
-
taxAmount:
|
|
321
|
+
taxAmount: number;
|
|
322
322
|
readyAt: string;
|
|
323
323
|
}>;
|
|
324
324
|
|
|
@@ -330,7 +330,7 @@ type HyperlineInvoiceSettledProps = Partial<{
|
|
|
330
330
|
amountOrigin: number;
|
|
331
331
|
currency: string;
|
|
332
332
|
customerId: string;
|
|
333
|
-
taxAmount:
|
|
333
|
+
taxAmount: number;
|
|
334
334
|
settledAt: string;
|
|
335
335
|
}>;
|
|
336
336
|
|