Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 16 additions & 10 deletions dist/core/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,8 @@ export interface CitizenshipResult {
};
}
export interface BackupData {
version: string;
encrypted_data: string;
metadata: {
created_at: number;
identity_id: string;
backup_type: string;
};
backup_data: string;
created_at: number;
}
export interface BackupVerification {
valid: boolean;
Expand All @@ -265,17 +260,28 @@ export interface BackupVerification {
errors: string[];
warnings: string[];
}
export interface ImportBackupResponse {
status: string;
identity: {
identity_id: string;
did: string;
};
session_token: string;
}
export interface SeedVerification {
valid: boolean;
wallet_id?: string;
wallet_type?: string;
verified: boolean;
}
export interface SeedPhrases {
primary?: string[];
ubi?: string[];
savings?: string[];
master?: string[];
}
export interface BackupStatus {
has_recovery_phrase: boolean;
backup_date: number | null;
verified: boolean;
}
export interface Guardian {
guardian_id: string;
guardian_name?: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/core/types.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading