@vrplatform/log 2.0.0-alpha.52 → 2.0.0-alpha.54

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.
@@ -251,12 +251,13 @@ type HyperlineCustomerCreatedProps = Partial<{
251
251
  userId: string;
252
252
  tenantId: string;
253
253
  customerId: string;
254
+ billingEmail: string;
255
+ billingAddress: string;
256
+ externalId: string;
257
+ name: string;
258
+ vatNumber: string;
254
259
  }>;
255
- type HyperlineCustomerUpdatedProps = Partial<{
256
- userId: string;
257
- tenantId: string;
258
- customerId: string;
259
- }>;
260
+ type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
260
261
  type HyperlineInvoiceReadyProps = Partial<{
261
262
  status: 'ready';
262
263
  paymentMethodType: string;
@@ -265,7 +266,7 @@ type HyperlineInvoiceReadyProps = Partial<{
265
266
  amountOrigin: number;
266
267
  currency: string;
267
268
  customerId: string;
268
- taxAmount: string;
269
+ taxAmount: number;
269
270
  readyAt: string;
270
271
  }>;
271
272
  type HyperlineInvoiceSettledProps = Partial<{
@@ -276,7 +277,7 @@ type HyperlineInvoiceSettledProps = Partial<{
276
277
  amountOrigin: number;
277
278
  currency: string;
278
279
  customerId: string;
279
- taxAmount: string;
280
+ taxAmount: number;
280
281
  settledAt: string;
281
282
  }>;
282
283
  type HyperlinePaymentMethodCreatedProps = Partial<{
@@ -251,12 +251,13 @@ type HyperlineCustomerCreatedProps = Partial<{
251
251
  userId: string;
252
252
  tenantId: string;
253
253
  customerId: string;
254
+ billingEmail: string;
255
+ billingAddress: string;
256
+ externalId: string;
257
+ name: string;
258
+ vatNumber: string;
254
259
  }>;
255
- type HyperlineCustomerUpdatedProps = Partial<{
256
- userId: string;
257
- tenantId: string;
258
- customerId: string;
259
- }>;
260
+ type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
260
261
  type HyperlineInvoiceReadyProps = Partial<{
261
262
  status: 'ready';
262
263
  paymentMethodType: string;
@@ -265,7 +266,7 @@ type HyperlineInvoiceReadyProps = Partial<{
265
266
  amountOrigin: number;
266
267
  currency: string;
267
268
  customerId: string;
268
- taxAmount: string;
269
+ taxAmount: number;
269
270
  readyAt: string;
270
271
  }>;
271
272
  type HyperlineInvoiceSettledProps = Partial<{
@@ -276,7 +277,7 @@ type HyperlineInvoiceSettledProps = Partial<{
276
277
  amountOrigin: number;
277
278
  currency: string;
278
279
  customerId: string;
279
- taxAmount: string;
280
+ taxAmount: number;
280
281
  settledAt: string;
281
282
  }>;
282
283
  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.54",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -302,13 +302,14 @@ type HyperlineCustomerCreatedProps = Partial<{
302
302
  userId: string;
303
303
  tenantId: string;
304
304
  customerId: string;
305
+ billingEmail: string;
306
+ billingAddress: string;
307
+ externalId: string;
308
+ name: string;
309
+ vatNumber: string;
305
310
  }>;
306
311
 
307
- type HyperlineCustomerUpdatedProps = Partial<{
308
- userId: string;
309
- tenantId: string;
310
- customerId: string;
311
- }>;
312
+ type HyperlineCustomerUpdatedProps = HyperlineCustomerCreatedProps;
312
313
 
313
314
  type HyperlineInvoiceReadyProps = Partial<{
314
315
  status: 'ready';
@@ -318,7 +319,7 @@ type HyperlineInvoiceReadyProps = Partial<{
318
319
  amountOrigin: number;
319
320
  currency: string;
320
321
  customerId: string;
321
- taxAmount: string;
322
+ taxAmount: number;
322
323
  readyAt: string;
323
324
  }>;
324
325
 
@@ -330,7 +331,7 @@ type HyperlineInvoiceSettledProps = Partial<{
330
331
  amountOrigin: number;
331
332
  currency: string;
332
333
  customerId: string;
333
- taxAmount: string;
334
+ taxAmount: number;
334
335
  settledAt: string;
335
336
  }>;
336
337