Skip to content
Open
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
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "41c28e1", "specHash": "1617aaf", "version": "4.3.0" }
{ "engineHash": "3e2e6ba", "specHash": "eb9bc73", "version": "4.3.0" }
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import { sdIsString } from '../serialization/json';
import { sdIsList } from '../serialization/json';
import { sdIsMap } from '../serialization/json';
export type SignRequestSignerInputNumberWithCommaValidationValidationTypeField =
| 'number_with_comma'
| string;
'number_with_comma' | string;
export interface SignRequestSignerInputNumberWithCommaValidation {
/**
* Validates that the text input uses a number format with a comma as the decimal separator (for example, 1,23). */
Expand Down
8 changes: 4 additions & 4 deletions src/sessions/persistent-session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ type TokenRequestOptions = Record<string, any> /* FIXME */;
function isObjectValidTokenInfo(obj: Record<string, any>) {
return Boolean(
obj &&
obj.accessToken &&
obj.refreshToken &&
obj.accessTokenTTLMS &&
obj.acquiredAtMS
obj.accessToken &&
obj.refreshToken &&
obj.accessTokenTTLMS &&
obj.acquiredAtMS
);
}

Expand Down
Loading