@okta/okta-auth-js 6.5.0 → 6.5.1

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.
@@ -2,6 +2,7 @@ import { Authenticator, Credentials } from './Authenticator';
2
2
  export interface WebauthnEnrollValues {
3
3
  clientData?: string;
4
4
  attestation?: string;
5
+ credentials?: Credentials;
5
6
  }
6
7
  export declare class WebauthnEnrollment extends Authenticator<WebauthnEnrollValues> {
7
8
  canVerify(values: WebauthnEnrollValues): boolean;
@@ -3,6 +3,7 @@ export interface WebauthnVerificationValues {
3
3
  clientData?: string;
4
4
  authenticatorData?: string;
5
5
  signatureData?: string;
6
+ credentials?: Credentials;
6
7
  }
7
8
  export declare class WebauthnVerification extends Authenticator<WebauthnVerificationValues> {
8
9
  canVerify(values: WebauthnVerificationValues): boolean;
@@ -32,6 +32,9 @@ export declare type Input = {
32
32
  secret?: boolean;
33
33
  required?: boolean;
34
34
  options?: IdxOption[];
35
+ relatesTo?: IdxAuthenticator;
36
+ mutable?: boolean;
37
+ visible?: boolean;
35
38
  };
36
39
  export interface IdxPollOptions {
37
40
  required?: boolean;
@@ -76,6 +79,7 @@ export interface IdxTransaction {
76
79
  enabledFeatures?: IdxFeature[];
77
80
  availableSteps?: NextStep[];
78
81
  requestDidSucceed?: boolean;
82
+ stepUp?: boolean;
79
83
  proceed: (remediationName: string, params: unknown) => Promise<IdxResponse>;
80
84
  neededToProceed: IdxRemediation[];
81
85
  rawIdxState: RawIdxResponse;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "@okta/okta-auth-js",
4
4
  "description": "The Okta Auth SDK",
5
- "version": "6.5.0",
5
+ "version": "6.5.1",
6
6
  "homepage": "https://github.com/okta/okta-auth-js",
7
7
  "license": "Apache-2.0",
8
8
  "main": "cjs/index.js",
@@ -188,8 +188,7 @@
188
188
  }
189
189
  },
190
190
  "okta": {
191
- "commitSha": "73bc0e00190f7525f32c7e64eb757d18ef9f4ee1",
192
- "fullVersion": "6.5.0-g73bc0e0",
193
- "testedSha": "14720370492104c146b3b02dcee6bbdf463f9435"
191
+ "commitSha": "003673db2d33b88fae1dce7ea7b9092bc6a0b4e1",
192
+ "fullVersion": "6.5.1-g003673d"
194
193
  }
195
194
  }