@vrplatform/log 2.0.26 → 2.0.27

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.
@@ -137,7 +137,7 @@ export type UserRole = 'super-admin' | 'vrp-admin' | 'partner-admin' | 'team-adm
137
137
  export type TenantType = 'admin' | 'partner' | 'propertyManager';
138
138
  export type TenantStatus = 'active' | 'inactive';
139
139
  export type SubscriptionStatus = 'active' | 'cancelled' | 'draft' | 'errored' | 'paused' | 'pending' | 'voided';
140
- export type PaymentMethodType = 'card' | 'direct_debit_sepa' | 'direct_debit_ach' | 'direct_debit_bacs';
140
+ export type PaymentMethodType = 'card' | 'direct_debit' | 'direct_debit_ach' | 'direct_debit_bacs' | 'transfer' | 'transfer_automated' | 'external';
141
141
  type AccountInvitationAcceptedProps = Partial<{
142
142
  userId: string;
143
143
  userEmail: string;
@@ -137,7 +137,7 @@ export type UserRole = 'super-admin' | 'vrp-admin' | 'partner-admin' | 'team-adm
137
137
  export type TenantType = 'admin' | 'partner' | 'propertyManager';
138
138
  export type TenantStatus = 'active' | 'inactive';
139
139
  export type SubscriptionStatus = 'active' | 'cancelled' | 'draft' | 'errored' | 'paused' | 'pending' | 'voided';
140
- export type PaymentMethodType = 'card' | 'direct_debit_sepa' | 'direct_debit_ach' | 'direct_debit_bacs';
140
+ export type PaymentMethodType = 'card' | 'direct_debit' | 'direct_debit_ach' | 'direct_debit_bacs' | 'transfer' | 'transfer_automated' | 'external';
141
141
  type AccountInvitationAcceptedProps = Partial<{
142
142
  userId: string;
143
143
  userEmail: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.26",
3
+ "version": "2.0.27",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -170,9 +170,12 @@ export type SubscriptionStatus =
170
170
  | 'voided';
171
171
  export type PaymentMethodType =
172
172
  | 'card'
173
- | 'direct_debit_sepa'
173
+ | 'direct_debit'
174
174
  | 'direct_debit_ach'
175
- | 'direct_debit_bacs';
175
+ | 'direct_debit_bacs'
176
+ | 'transfer'
177
+ | 'transfer_automated'
178
+ | 'external';
176
179
 
177
180
  type AccountInvitationAcceptedProps = Partial<{
178
181
  userId: string;