@vrplatform/log 2.0.95 → 2.0.97
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { recurringFeeType_enum } from '@finalytic/graphql';
|
|
1
|
+
import type { billing_payment_method_type_enum, recurringFeeType_enum } from '@finalytic/graphql';
|
|
2
2
|
import type { Maybe } from '@finalytic/utils';
|
|
3
3
|
export type TrackProps<T extends TrackingEvent> = OptionalUser<{
|
|
4
4
|
groupId: string;
|
|
@@ -153,7 +153,7 @@ export type TenantStatus = 'active' | 'inactive';
|
|
|
153
153
|
export type SubscriptionStatus = 'active' | 'cancelled' | 'draft' | 'errored' | 'paused' | 'pending' | 'voided';
|
|
154
154
|
export type OwnerStatementStatus = 'preview' | 'draft' | 'inReview' | 'void' | 'published' | 'posted';
|
|
155
155
|
export type TaxStatementStatus = 'draft' | 'ignored' | 'inReview' | 'ready' | 'submitted' | 'error';
|
|
156
|
-
export type PaymentMethodType =
|
|
156
|
+
export type PaymentMethodType = billing_payment_method_type_enum;
|
|
157
157
|
type AccountInvitationAcceptedProps = MaybePartial<{
|
|
158
158
|
userId: string;
|
|
159
159
|
userEmail: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { recurringFeeType_enum } from '@finalytic/graphql';
|
|
1
|
+
import type { billing_payment_method_type_enum, recurringFeeType_enum } from '@finalytic/graphql';
|
|
2
2
|
import type { Maybe } from '@finalytic/utils';
|
|
3
3
|
export type TrackProps<T extends TrackingEvent> = OptionalUser<{
|
|
4
4
|
groupId: string;
|
|
@@ -153,7 +153,7 @@ export type TenantStatus = 'active' | 'inactive';
|
|
|
153
153
|
export type SubscriptionStatus = 'active' | 'cancelled' | 'draft' | 'errored' | 'paused' | 'pending' | 'voided';
|
|
154
154
|
export type OwnerStatementStatus = 'preview' | 'draft' | 'inReview' | 'void' | 'published' | 'posted';
|
|
155
155
|
export type TaxStatementStatus = 'draft' | 'ignored' | 'inReview' | 'ready' | 'submitted' | 'error';
|
|
156
|
-
export type PaymentMethodType =
|
|
156
|
+
export type PaymentMethodType = billing_payment_method_type_enum;
|
|
157
157
|
type AccountInvitationAcceptedProps = MaybePartial<{
|
|
158
158
|
userId: string;
|
|
159
159
|
userEmail: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vrplatform/log",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.97",
|
|
4
4
|
"main": "build/main/index.js",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@axiomhq/js": "1.3.0",
|
|
21
|
-
"@finalytic/graphql": "2.0.
|
|
21
|
+
"@finalytic/graphql": "2.0.162",
|
|
22
22
|
"intercom-client": "6.0.0-beta.3",
|
|
23
23
|
"serialize-error": "11.0.3"
|
|
24
24
|
},
|
package/src/tracking/types.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type {
|
|
2
|
+
billing_payment_method_type_enum,
|
|
3
|
+
recurringFeeType_enum,
|
|
4
|
+
} from '@finalytic/graphql';
|
|
2
5
|
import type { Maybe } from '@finalytic/utils';
|
|
3
6
|
|
|
4
7
|
export type TrackProps<T extends TrackingEvent> = OptionalUser<{
|
|
@@ -219,14 +222,7 @@ export type TaxStatementStatus =
|
|
|
219
222
|
| 'ready'
|
|
220
223
|
| 'submitted'
|
|
221
224
|
| 'error';
|
|
222
|
-
export type PaymentMethodType =
|
|
223
|
-
| 'card'
|
|
224
|
-
| 'direct_debit'
|
|
225
|
-
| 'direct_debit_ach'
|
|
226
|
-
| 'direct_debit_bacs'
|
|
227
|
-
| 'transfer'
|
|
228
|
-
| 'transfer_automated'
|
|
229
|
-
| 'external';
|
|
225
|
+
export type PaymentMethodType = billing_payment_method_type_enum;
|
|
230
226
|
|
|
231
227
|
// Signup/Onboarding Funnel
|
|
232
228
|
|