@protontech/pass-rust-core
Advanced tools
Comparing version 0.7.5 to 0.7.6
{ | ||
"name": "@protontech/pass-rust-core", | ||
"version": "0.7.5", | ||
"version": "0.7.6", | ||
"files": [ | ||
@@ -5,0 +5,0 @@ "proton_pass_web_bg.wasm", |
@@ -534,6 +534,2 @@ let wasm; | ||
export function __wbindgen_object_drop_ref(arg0) { | ||
takeObject(arg0); | ||
}; | ||
export function __wbindgen_object_clone_ref(arg0) { | ||
@@ -544,2 +540,6 @@ const ret = getObject(arg0); | ||
export function __wbindgen_object_drop_ref(arg0) { | ||
takeObject(arg0); | ||
}; | ||
export function __wbindgen_is_undefined(arg0) { | ||
@@ -546,0 +546,0 @@ const ret = getObject(arg0) === undefined; |
@@ -93,2 +93,40 @@ /* tslint:disable */ | ||
export function parse_create_passkey_data(request: string): WasmCreatePasskeyData; | ||
export type WasmCreditCardType = "Visa" | "Mastercard" | "AmericanExpress" | "DinersClub" | "Discover" | "JCB" | "UnionPay" | "Maestro" | "Elo" | "Mir" | "Hiper" | "Hipercard" | "Unknown"; | ||
export type WasmStringList = string[]; | ||
export interface WasmLogin { | ||
title: string; | ||
username: string; | ||
password: string; | ||
totp: string | undefined; | ||
urls: string[]; | ||
} | ||
export interface WasmRandomPasswordConfig { | ||
length: number; | ||
numbers: boolean; | ||
uppercase_letters: boolean; | ||
symbols: boolean; | ||
} | ||
export type WasmWordSeparator = "Hyphens" | "Spaces" | "Periods" | "Commas" | "Underscores" | "Numbers" | "NumbersAndSymbols"; | ||
export interface WasmPassphraseConfig { | ||
separator: WasmWordSeparator; | ||
capitalise: boolean; | ||
include_numbers: boolean; | ||
count: number; | ||
} | ||
export type WasmPasswordScore = "Vulnerable" | "Weak" | "Strong"; | ||
export type WasmPasswordPenalty = "NoLowercase" | "NoUppercase" | "NoNumbers" | "NoSymbols" | "Short" | "Consecutive" | "Progressive" | "ContainsCommonPassword" | "ShortWordList"; | ||
export interface WasmPasswordScoreResult { | ||
numeric_score: number; | ||
password_score: WasmPasswordScore; | ||
penalties: WasmPasswordPenalty[]; | ||
} | ||
export type WasmAuthenticatorAttachment = "platform" | "cross-platform"; | ||
@@ -99,8 +137,7 @@ | ||
export interface WasmAuthenticatorExtensionsClientOutputs { | ||
cred_props: WasmCredentialPropertiesOutput | undefined; | ||
credProps: WasmCredentialPropertiesOutput | undefined; | ||
} | ||
export interface WasmCredentialPropertiesOutput { | ||
discoverable: boolean | undefined; | ||
authenticator_display_name: string | undefined; | ||
rk?: boolean; | ||
} | ||
@@ -172,39 +209,1 @@ | ||
export type WasmStringList = string[]; | ||
export interface WasmLogin { | ||
title: string; | ||
username: string; | ||
password: string; | ||
totp: string | undefined; | ||
urls: string[]; | ||
} | ||
export interface WasmRandomPasswordConfig { | ||
length: number; | ||
numbers: boolean; | ||
uppercase_letters: boolean; | ||
symbols: boolean; | ||
} | ||
export type WasmWordSeparator = "Hyphens" | "Spaces" | "Periods" | "Commas" | "Underscores" | "Numbers" | "NumbersAndSymbols"; | ||
export interface WasmPassphraseConfig { | ||
separator: WasmWordSeparator; | ||
capitalise: boolean; | ||
include_numbers: boolean; | ||
count: number; | ||
} | ||
export type WasmPasswordScore = "Vulnerable" | "Weak" | "Strong"; | ||
export type WasmPasswordPenalty = "NoLowercase" | "NoUppercase" | "NoNumbers" | "NoSymbols" | "Short" | "Consecutive" | "Progressive" | "ContainsCommonPassword" | "ShortWordList"; | ||
export interface WasmPasswordScoreResult { | ||
numeric_score: number; | ||
password_score: WasmPasswordScore; | ||
penalties: WasmPasswordPenalty[]; | ||
} | ||
export type WasmCreditCardType = "Visa" | "Mastercard" | "AmericanExpress" | "DinersClub" | "Discover" | "JCB" | "UnionPay" | "Maestro" | "Elo" | "Mir" | "Hiper" | "Hipercard" | "Unknown"; | ||
Sorry, the diff of this file is not supported yet
2569730
944