@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: string;
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: string;
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: string;
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: string;
279
+ taxAmount: number;
280
280
  settledAt: string;
281
281
  }>;
282
282
  type HyperlinePaymentMethodCreatedProps = Partial<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.0-alpha.52",
3
+ "version": "2.0.0-alpha.53",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -318,7 +318,7 @@ type HyperlineInvoiceReadyProps = Partial<{
318
318
  amountOrigin: number;
319
319
  currency: string;
320
320
  customerId: string;
321
- taxAmount: string;
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: string;
333
+ taxAmount: number;
334
334
  settledAt: string;
335
335
  }>;
336
336