@rentbase/common 1.0.21 → 1.0.23

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.
@@ -78,6 +78,7 @@ export interface LandlordApplicationCreatedEvent {
78
78
  landlordDetails: LandlordDetails;
79
79
  kycDocuments: {
80
80
  idDocument?: string;
81
+ idDocumentBack?: string;
81
82
  selfie?: string;
82
83
  proofOfAddress?: string;
83
84
  };
@@ -154,6 +155,7 @@ export interface LandlordApplicationUpdatedEvent {
154
155
  landlordDetails: LandlordDetails;
155
156
  kycDocuments: {
156
157
  idDocument?: string;
158
+ idDocumentBack?: string;
157
159
  selfie?: string;
158
160
  proofOfAddress?: string;
159
161
  };
@@ -6,7 +6,7 @@ export declare type UserRole = "tenant" | "landlord" | "property_agent" | "suppo
6
6
  export declare type UserStatus = "active" | "suspended" | "banned" | "deleted";
7
7
  export declare type KycStatus = "unverified" | "pending" | "verified" | "needs_info" | "rejected";
8
8
  export declare type VerificationLevel = "none" | "basic" | "verified" | "super_verified";
9
- export declare type UserActiveMode = "tenant" | "landlord";
9
+ export declare type UserActiveMode = "tenant" | "landlord" | "admin";
10
10
  export interface UserCreatedEvent {
11
11
  id: string;
12
12
  accountNumber: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rentbase/common",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "common library for rentbase",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",