@vrplatform/log 3.0.11 → 3.0.14
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.
|
@@ -128,6 +128,7 @@ export type TrackingEventProps = {
|
|
|
128
128
|
hyperline_customer_deleted: HyperlineCustomerDeletedProps;
|
|
129
129
|
hyperline_payment_method_created: HyperlinePaymentMethodCreatedProps;
|
|
130
130
|
hyperline_payment_method_errored: HyperlinePaymentMethodErroredProps;
|
|
131
|
+
hyperline_payment_method_expired: HyperlinePaymentMethodExpiredProps;
|
|
131
132
|
hyperline_payment_method_deleted: HyperlinePaymentMethodDeletedProps;
|
|
132
133
|
listing_activated: ListingActivatedProps;
|
|
133
134
|
listing_deactivated: ListingDeactivatedProps;
|
|
@@ -388,6 +389,14 @@ type HyperlinePaymentMethodDeletedProps = MaybePartial<{
|
|
|
388
389
|
subscriptionId: string;
|
|
389
390
|
customerId: string;
|
|
390
391
|
}>;
|
|
392
|
+
type HyperlinePaymentMethodExpiredProps = MaybePartial<{
|
|
393
|
+
tenantId: string;
|
|
394
|
+
subscriptionStartDate: string;
|
|
395
|
+
paymentMethodType: PaymentMethodType;
|
|
396
|
+
subscriptionStatus: SubscriptionStatus;
|
|
397
|
+
subscriptionId: string;
|
|
398
|
+
customerId: string;
|
|
399
|
+
}>;
|
|
391
400
|
type HyperlinePaymentMethodErroredProps = MaybePartial<{
|
|
392
401
|
tenantId: string;
|
|
393
402
|
subscriptionStartDate: string;
|
|
@@ -128,6 +128,7 @@ export type TrackingEventProps = {
|
|
|
128
128
|
hyperline_customer_deleted: HyperlineCustomerDeletedProps;
|
|
129
129
|
hyperline_payment_method_created: HyperlinePaymentMethodCreatedProps;
|
|
130
130
|
hyperline_payment_method_errored: HyperlinePaymentMethodErroredProps;
|
|
131
|
+
hyperline_payment_method_expired: HyperlinePaymentMethodExpiredProps;
|
|
131
132
|
hyperline_payment_method_deleted: HyperlinePaymentMethodDeletedProps;
|
|
132
133
|
listing_activated: ListingActivatedProps;
|
|
133
134
|
listing_deactivated: ListingDeactivatedProps;
|
|
@@ -388,6 +389,14 @@ type HyperlinePaymentMethodDeletedProps = MaybePartial<{
|
|
|
388
389
|
subscriptionId: string;
|
|
389
390
|
customerId: string;
|
|
390
391
|
}>;
|
|
392
|
+
type HyperlinePaymentMethodExpiredProps = MaybePartial<{
|
|
393
|
+
tenantId: string;
|
|
394
|
+
subscriptionStartDate: string;
|
|
395
|
+
paymentMethodType: PaymentMethodType;
|
|
396
|
+
subscriptionStatus: SubscriptionStatus;
|
|
397
|
+
subscriptionId: string;
|
|
398
|
+
customerId: string;
|
|
399
|
+
}>;
|
|
391
400
|
type HyperlinePaymentMethodErroredProps = MaybePartial<{
|
|
392
401
|
tenantId: string;
|
|
393
402
|
subscriptionStartDate: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vrplatform/log",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.14",
|
|
4
4
|
"main": "src/index.ts",
|
|
5
5
|
"packageManager": "bun@1.3.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@axiomhq/js": "1.3.1",
|
|
46
|
-
"@vrplatform/graphql": "1.1.
|
|
47
|
-
"intercom-client": "
|
|
46
|
+
"@vrplatform/graphql": "1.1.42",
|
|
47
|
+
"intercom-client": "7.0.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@biomejs/biome": "2.3.8",
|
|
51
51
|
"@types/bun": "1.3.4",
|
|
52
|
-
"knip": "5.
|
|
52
|
+
"knip": "5.82.1",
|
|
53
53
|
"typescript": "5.9.3"
|
|
54
54
|
},
|
|
55
55
|
"trustedDependencies": [
|
package/src/tracking/types.ts
CHANGED
|
@@ -171,6 +171,7 @@ export type TrackingEventProps = {
|
|
|
171
171
|
hyperline_customer_deleted: HyperlineCustomerDeletedProps;
|
|
172
172
|
hyperline_payment_method_created: HyperlinePaymentMethodCreatedProps;
|
|
173
173
|
hyperline_payment_method_errored: HyperlinePaymentMethodErroredProps;
|
|
174
|
+
hyperline_payment_method_expired: HyperlinePaymentMethodExpiredProps;
|
|
174
175
|
hyperline_payment_method_deleted: HyperlinePaymentMethodDeletedProps;
|
|
175
176
|
listing_activated: ListingActivatedProps;
|
|
176
177
|
listing_deactivated: ListingDeactivatedProps;
|
|
@@ -509,6 +510,15 @@ type HyperlinePaymentMethodDeletedProps = MaybePartial<{
|
|
|
509
510
|
customerId: string;
|
|
510
511
|
}>;
|
|
511
512
|
|
|
513
|
+
type HyperlinePaymentMethodExpiredProps = MaybePartial<{
|
|
514
|
+
tenantId: string;
|
|
515
|
+
subscriptionStartDate: string;
|
|
516
|
+
paymentMethodType: PaymentMethodType;
|
|
517
|
+
subscriptionStatus: SubscriptionStatus;
|
|
518
|
+
subscriptionId: string;
|
|
519
|
+
customerId: string;
|
|
520
|
+
}>;
|
|
521
|
+
|
|
512
522
|
type HyperlinePaymentMethodErroredProps = MaybePartial<{
|
|
513
523
|
tenantId: string;
|
|
514
524
|
subscriptionStartDate: string;
|