@logto/api 1.34.0 → 1.35.0

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.
@@ -12211,6 +12211,7 @@ export interface operations {
12211
12211
  "application/json": {
12212
12212
  id: string;
12213
12213
  createdAt: string;
12214
+ lastUsedAt?: string;
12214
12215
  /** @enum {string} */
12215
12216
  type: "Totp" | "WebAuthn" | "BackupCode" | "EmailVerificationCode" | "PhoneVerificationCode";
12216
12217
  agent?: string;
@@ -21554,6 +21555,9 @@ export interface operations {
21554
21555
  siteKey: string;
21555
21556
  secretKey: string;
21556
21557
  projectId: string;
21558
+ domain?: string;
21559
+ /** @enum {string} */
21560
+ mode?: "invisible" | "checkbox";
21557
21561
  };
21558
21562
  createdAt: number;
21559
21563
  updatedAt: number;
@@ -21605,6 +21609,9 @@ export interface operations {
21605
21609
  siteKey: string;
21606
21610
  secretKey: string;
21607
21611
  projectId: string;
21612
+ domain?: string;
21613
+ /** @enum {string} */
21614
+ mode?: "invisible" | "checkbox";
21608
21615
  };
21609
21616
  };
21610
21617
  };
@@ -21630,6 +21637,9 @@ export interface operations {
21630
21637
  siteKey: string;
21631
21638
  secretKey: string;
21632
21639
  projectId: string;
21640
+ domain?: string;
21641
+ /** @enum {string} */
21642
+ mode?: "invisible" | "checkbox";
21633
21643
  };
21634
21644
  createdAt: number;
21635
21645
  updatedAt: number;
@@ -23004,6 +23014,9 @@ export interface operations {
23004
23014
  /** @enum {string} */
23005
23015
  type: "RecaptchaEnterprise" | "Turnstile";
23006
23016
  siteKey: string;
23017
+ domain?: string;
23018
+ /** @enum {string} */
23019
+ mode?: "invisible" | "checkbox";
23007
23020
  };
23008
23021
  customProfileFields: {
23009
23022
  tenantId: string;
@@ -23264,6 +23277,9 @@ export interface operations {
23264
23277
  /** @enum {string} */
23265
23278
  type: "RecaptchaEnterprise" | "Turnstile";
23266
23279
  siteKey: string;
23280
+ domain?: string;
23281
+ /** @enum {string} */
23282
+ mode?: "invisible" | "checkbox";
23267
23283
  };
23268
23284
  customProfileFields: {
23269
23285
  tenantId: string;
@@ -23561,7 +23577,7 @@ export interface operations {
23561
23577
  /** @description The signature algorithm. */
23562
23578
  SigAlg?: string;
23563
23579
  /** @description The relay state parameter. */
23564
- RelayState?: string;
23580
+ RelayState?: string | null;
23565
23581
  };
23566
23582
  header?: never;
23567
23583
  path: {
@@ -23618,7 +23634,7 @@ export interface operations {
23618
23634
  content: {
23619
23635
  "application/json": {
23620
23636
  SAMLRequest: string;
23621
- RelayState?: string;
23637
+ RelayState?: string | null;
23622
23638
  };
23623
23639
  "application/x-www-form-urlencoded": {
23624
23640
  /** @description Base64-encoded SAML request message. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logto/api",
3
- "version": "1.34.0",
3
+ "version": "1.35.0",
4
4
  "description": "Logto API types and clients.",
5
5
  "author": "Silverhand Inc. <contact@silverhand.io>",
6
6
  "homepage": "https://github.com/logto-io/logto#readme",