@vrplatform/log 2.0.85 → 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;
|
|
@@ -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;
|
|
@@ -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
package/src/tracking/types.ts
CHANGED
|
@@ -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;
|
|
@@ -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;
|