@clerk/types 4.93.0-canary.v20251013141938 → 4.93.0-canary.v20251013161151

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/dist/index.d.mts CHANGED
@@ -1809,6 +1809,8 @@ interface SamlAccountResource extends ClerkResource {
1809
1809
  lastName: string;
1810
1810
  verification: VerificationResource | null;
1811
1811
  samlConnection: SamlAccountConnectionResource | null;
1812
+ lastAuthenticatedAt: Date | null;
1813
+ enterpriseConnectionId: string | null;
1812
1814
  __internal_toSnapshot: () => SamlAccountJSONSnapshot;
1813
1815
  }
1814
1816
 
@@ -3694,6 +3696,7 @@ interface EnterpriseAccountJSON extends ClerkResourceJSON {
3694
3696
  public_metadata: Record<string, unknown>;
3695
3697
  verification: VerificationJSON | null;
3696
3698
  last_authenticated_at: number | null;
3699
+ enterprise_connection_id: string | null;
3697
3700
  }
3698
3701
  interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3699
3702
  active: boolean;
@@ -3708,6 +3711,7 @@ interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3708
3711
  sync_user_attributes: boolean;
3709
3712
  created_at: number;
3710
3713
  updated_at: number;
3714
+ enterprise_connection_id: string | null;
3711
3715
  }
3712
3716
  interface SamlAccountJSON extends ClerkResourceJSON {
3713
3717
  object: 'saml_account';
@@ -3720,6 +3724,7 @@ interface SamlAccountJSON extends ClerkResourceJSON {
3720
3724
  verification?: VerificationJSON;
3721
3725
  saml_connection?: SamlAccountConnectionJSON;
3722
3726
  last_authenticated_at: number | null;
3727
+ enterprise_connection_id: string | null;
3723
3728
  }
3724
3729
  interface UserJSON extends ClerkResourceJSON {
3725
3730
  object: 'user';
@@ -4346,6 +4351,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4346
4351
  active: boolean;
4347
4352
  emailAddress: string;
4348
4353
  enterpriseConnection: EnterpriseAccountConnectionResource | null;
4354
+ enterpriseConnectionId: string | null;
4349
4355
  firstName: string | null;
4350
4356
  lastName: string | null;
4351
4357
  protocol: EnterpriseProtocol;
@@ -4353,6 +4359,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4353
4359
  providerUserId: string | null;
4354
4360
  publicMetadata: Record<string, unknown> | null;
4355
4361
  verification: VerificationResource | null;
4362
+ lastAuthenticatedAt: Date | null;
4356
4363
  __internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
4357
4364
  }
4358
4365
  interface EnterpriseAccountConnectionResource extends ClerkResource {
@@ -4366,6 +4373,7 @@ interface EnterpriseAccountConnectionResource extends ClerkResource {
4366
4373
  protocol: EnterpriseProtocol;
4367
4374
  provider: EnterpriseProvider;
4368
4375
  syncUserAttributes: boolean;
4376
+ enterpriseConnectionId: string | null;
4369
4377
  __internal_toSnapshot: () => EnterpriseAccountConnectionJSONSnapshot;
4370
4378
  }
4371
4379
 
package/dist/index.d.ts CHANGED
@@ -1809,6 +1809,8 @@ interface SamlAccountResource extends ClerkResource {
1809
1809
  lastName: string;
1810
1810
  verification: VerificationResource | null;
1811
1811
  samlConnection: SamlAccountConnectionResource | null;
1812
+ lastAuthenticatedAt: Date | null;
1813
+ enterpriseConnectionId: string | null;
1812
1814
  __internal_toSnapshot: () => SamlAccountJSONSnapshot;
1813
1815
  }
1814
1816
 
@@ -3694,6 +3696,7 @@ interface EnterpriseAccountJSON extends ClerkResourceJSON {
3694
3696
  public_metadata: Record<string, unknown>;
3695
3697
  verification: VerificationJSON | null;
3696
3698
  last_authenticated_at: number | null;
3699
+ enterprise_connection_id: string | null;
3697
3700
  }
3698
3701
  interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3699
3702
  active: boolean;
@@ -3708,6 +3711,7 @@ interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3708
3711
  sync_user_attributes: boolean;
3709
3712
  created_at: number;
3710
3713
  updated_at: number;
3714
+ enterprise_connection_id: string | null;
3711
3715
  }
3712
3716
  interface SamlAccountJSON extends ClerkResourceJSON {
3713
3717
  object: 'saml_account';
@@ -3720,6 +3724,7 @@ interface SamlAccountJSON extends ClerkResourceJSON {
3720
3724
  verification?: VerificationJSON;
3721
3725
  saml_connection?: SamlAccountConnectionJSON;
3722
3726
  last_authenticated_at: number | null;
3727
+ enterprise_connection_id: string | null;
3723
3728
  }
3724
3729
  interface UserJSON extends ClerkResourceJSON {
3725
3730
  object: 'user';
@@ -4346,6 +4351,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4346
4351
  active: boolean;
4347
4352
  emailAddress: string;
4348
4353
  enterpriseConnection: EnterpriseAccountConnectionResource | null;
4354
+ enterpriseConnectionId: string | null;
4349
4355
  firstName: string | null;
4350
4356
  lastName: string | null;
4351
4357
  protocol: EnterpriseProtocol;
@@ -4353,6 +4359,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4353
4359
  providerUserId: string | null;
4354
4360
  publicMetadata: Record<string, unknown> | null;
4355
4361
  verification: VerificationResource | null;
4362
+ lastAuthenticatedAt: Date | null;
4356
4363
  __internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
4357
4364
  }
4358
4365
  interface EnterpriseAccountConnectionResource extends ClerkResource {
@@ -4366,6 +4373,7 @@ interface EnterpriseAccountConnectionResource extends ClerkResource {
4366
4373
  protocol: EnterpriseProtocol;
4367
4374
  provider: EnterpriseProvider;
4368
4375
  syncUserAttributes: boolean;
4376
+ enterpriseConnectionId: string | null;
4369
4377
  __internal_toSnapshot: () => EnterpriseAccountConnectionJSONSnapshot;
4370
4378
  }
4371
4379
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clerk/types",
3
- "version": "4.93.0-canary.v20251013141938",
3
+ "version": "4.93.0-canary.v20251013161151",
4
4
  "description": "Typings for Clerk libraries.",
5
5
  "keywords": [
6
6
  "clerk",