@frontegg/rest-api 2.10.81 → 2.10.82

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.10.82](https://github.com/frontegg/typescript-rest-api/compare/v2.10.81...v2.10.82) (2022-06-29)
6
+
5
7
  ### [2.10.81](https://github.com/frontegg/typescript-rest-api/compare/v2.10.80...v2.10.81) (2022-06-29)
6
8
 
7
9
  ### [2.10.80](https://github.com/frontegg/typescript-rest-api/compare/v2.10.79...v2.10.80) (2022-06-28)
@@ -377,7 +377,7 @@ export interface ICreateNewDeviceSessionResponse {
377
377
  }>;
378
378
  excludeCredentials?: AllowCredentials[];
379
379
  timeout?: number;
380
- authenticationSelection?: AuthenticatorSelectionCriteria;
380
+ authenticatorSelection?: AuthenticatorSelectionCriteria;
381
381
  }
382
382
  interface IWebAuthnRegisterResponse {
383
383
  clientDataJSON: string;
@@ -377,7 +377,7 @@ export interface ICreateNewDeviceSessionResponse {
377
377
  }>;
378
378
  excludeCredentials?: AllowCredentials[];
379
379
  timeout?: number;
380
- authenticationSelection?: AuthenticatorSelectionCriteria;
380
+ authenticatorSelection?: AuthenticatorSelectionCriteria;
381
381
  }
382
382
  interface IWebAuthnRegisterResponse {
383
383
  clientDataJSON: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@frontegg/rest-api",
3
3
  "libName": "FronteggRestApi",
4
- "version": "2.10.81",
4
+ "version": "2.10.82",
5
5
  "author": "Frontegg LTD",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -423,7 +423,7 @@ export interface ICreateNewDeviceSessionResponse {
423
423
  pubKeyCredParams: Array<{ type: 'public-key'; alg: number }>;
424
424
  excludeCredentials?: AllowCredentials[];
425
425
  timeout?: number;
426
- authenticationSelection?: AuthenticatorSelectionCriteria;
426
+ authenticatorSelection?: AuthenticatorSelectionCriteria;
427
427
  }
428
428
 
429
429
  interface IWebAuthnRegisterResponse {