Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds core kit key in response #320

Merged
merged 1 commit into from
Jun 25, 2024
Merged
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
1 change: 1 addition & 0 deletions packages/openlogin-utils/src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,19 +335,19 @@
/**
* Language specific link for terms and conditions on torus-website. See (examples/vue-app) to configure
* e.g.
* tncLink: {

Check warning on line 338 in packages/openlogin-utils/src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-malformed-inline-tag: Expecting a TSDoc tag starting with "{@"
* en: "http://example.com/tnc/en",
* ja: "http://example.com/tnc/ja",
* }

Check warning on line 341 in packages/openlogin-utils/src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-escape-right-brace: The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
*/
tncLink?: Partial<Record<LANGUAGE_TYPE, string>>;
/**
* Language specific link for privacy policy on torus-website. See (examples/vue-app) to configure
* e.g.
* privacyPolicy: {

Check warning on line 347 in packages/openlogin-utils/src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-malformed-inline-tag: Expecting a TSDoc tag starting with "{@"
* en: "http://example.com/tnc/en",
* ja: "http://example.com/tnc/ja",
* }

Check warning on line 350 in packages/openlogin-utils/src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

tsdoc-escape-right-brace: The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
*/
privacyPolicy?: Partial<Record<LANGUAGE_TYPE, string>>;
};
Expand Down Expand Up @@ -535,6 +535,7 @@
tssShare?: string;
tssNonce?: number;
nodeIndexes?: number[];
useCoreKitKey?: boolean;
}

export const MFA_FACTOR = {
Expand Down