@vrplatform/log 2.0.84 → 2.0.86

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.
@@ -119,6 +119,7 @@ export type TrackingEventProps = {
119
119
  hyperline_subscription_status_changed: HyperlineSubscriptionStatusChangedProps;
120
120
  hyperline_customer_created: HyperlineCustomerCreatedProps;
121
121
  hyperline_customer_updated: HyperlineCustomerUpdatedProps;
122
+ hyperline_customer_deleted: HyperlineCustomerDeletedProps;
122
123
  hyperline_payment_method_created: HyperlinePaymentMethodCreatedProps;
123
124
  hyperline_payment_method_errored: HyperlinePaymentMethodErroredProps;
124
125
  hyperline_payment_method_deleted: HyperlinePaymentMethodDeletedProps;
@@ -192,7 +193,7 @@ type AccountSignupCompletedProps = MaybePartial<{
192
193
  type OnboardingAccountSettingsSetProps = MaybePartial<{
193
194
  tenantId: string;
194
195
  userId: string;
195
- start: Date;
196
+ start: string;
196
197
  country: string;
197
198
  currency: string;
198
199
  }>;
@@ -301,6 +302,10 @@ type HyperlineCustomerUpdatedProps = MaybePartial<{
301
302
  name: string;
302
303
  vatNumber: string;
303
304
  }>;
305
+ type HyperlineCustomerDeletedProps = MaybePartial<{
306
+ tenantId: string;
307
+ customerId: string;
308
+ }>;
304
309
  type HyperlineInvoiceErroredProps = MaybePartial<{
305
310
  status: 'errored';
306
311
  paymentMethodType: string;
@@ -119,6 +119,7 @@ export type TrackingEventProps = {
119
119
  hyperline_subscription_status_changed: HyperlineSubscriptionStatusChangedProps;
120
120
  hyperline_customer_created: HyperlineCustomerCreatedProps;
121
121
  hyperline_customer_updated: HyperlineCustomerUpdatedProps;
122
+ hyperline_customer_deleted: HyperlineCustomerDeletedProps;
122
123
  hyperline_payment_method_created: HyperlinePaymentMethodCreatedProps;
123
124
  hyperline_payment_method_errored: HyperlinePaymentMethodErroredProps;
124
125
  hyperline_payment_method_deleted: HyperlinePaymentMethodDeletedProps;
@@ -192,7 +193,7 @@ type AccountSignupCompletedProps = MaybePartial<{
192
193
  type OnboardingAccountSettingsSetProps = MaybePartial<{
193
194
  tenantId: string;
194
195
  userId: string;
195
- start: Date;
196
+ start: string;
196
197
  country: string;
197
198
  currency: string;
198
199
  }>;
@@ -301,6 +302,10 @@ type HyperlineCustomerUpdatedProps = MaybePartial<{
301
302
  name: string;
302
303
  vatNumber: string;
303
304
  }>;
305
+ type HyperlineCustomerDeletedProps = MaybePartial<{
306
+ tenantId: string;
307
+ customerId: string;
308
+ }>;
304
309
  type HyperlineInvoiceErroredProps = MaybePartial<{
305
310
  status: 'errored';
306
311
  paymentMethodType: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.84",
3
+ "version": "2.0.86",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -155,6 +155,7 @@ export type TrackingEventProps = {
155
155
  hyperline_subscription_status_changed: HyperlineSubscriptionStatusChangedProps;
156
156
  hyperline_customer_created: HyperlineCustomerCreatedProps;
157
157
  hyperline_customer_updated: HyperlineCustomerUpdatedProps;
158
+ hyperline_customer_deleted: HyperlineCustomerDeletedProps;
158
159
  hyperline_payment_method_created: HyperlinePaymentMethodCreatedProps;
159
160
  hyperline_payment_method_errored: HyperlinePaymentMethodErroredProps;
160
161
  hyperline_payment_method_deleted: HyperlinePaymentMethodDeletedProps;
@@ -273,7 +274,7 @@ type AccountSignupCompletedProps = MaybePartial<{
273
274
  type OnboardingAccountSettingsSetProps = MaybePartial<{
274
275
  tenantId: string;
275
276
  userId: string;
276
- start: Date;
277
+ start: string;
277
278
  country: string;
278
279
  currency: string;
279
280
  }>;
@@ -410,6 +411,11 @@ type HyperlineCustomerUpdatedProps = MaybePartial<{
410
411
  vatNumber: string;
411
412
  }>;
412
413
 
414
+ type HyperlineCustomerDeletedProps = MaybePartial<{
415
+ tenantId: string;
416
+ customerId: string;
417
+ }>;
418
+
413
419
  type HyperlineInvoiceErroredProps = MaybePartial<{
414
420
  status: 'errored';
415
421
  paymentMethodType: string;