@clerk/types 4.93.0-canary.v20251013115124 → 4.93.0-snapshot.v20251013140857

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
@@ -3694,6 +3694,7 @@ interface EnterpriseAccountJSON extends ClerkResourceJSON {
3694
3694
  public_metadata: Record<string, unknown>;
3695
3695
  verification: VerificationJSON | null;
3696
3696
  last_authenticated_at: number | null;
3697
+ enterprise_connection_id: string | null;
3697
3698
  }
3698
3699
  interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3699
3700
  active: boolean;
@@ -3708,6 +3709,7 @@ interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3708
3709
  sync_user_attributes: boolean;
3709
3710
  created_at: number;
3710
3711
  updated_at: number;
3712
+ enterprise_connection_id: string | null;
3711
3713
  }
3712
3714
  interface SamlAccountJSON extends ClerkResourceJSON {
3713
3715
  object: 'saml_account';
@@ -3720,6 +3722,7 @@ interface SamlAccountJSON extends ClerkResourceJSON {
3720
3722
  verification?: VerificationJSON;
3721
3723
  saml_connection?: SamlAccountConnectionJSON;
3722
3724
  last_authenticated_at: number | null;
3725
+ enterprise_connection_id: string | null;
3723
3726
  }
3724
3727
  interface UserJSON extends ClerkResourceJSON {
3725
3728
  object: 'user';
@@ -4097,7 +4100,7 @@ interface BillingPaymentMethodJSON extends ClerkResourceJSON {
4097
4100
  * @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
4098
4101
  */
4099
4102
  interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
4100
- object: 'commerce_payment_method_initialize';
4103
+ object: 'commerce_payment_source_initialize';
4101
4104
  external_client_secret: string;
4102
4105
  external_gateway_id: string;
4103
4106
  payment_method_order: string[];
@@ -4346,6 +4349,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4346
4349
  active: boolean;
4347
4350
  emailAddress: string;
4348
4351
  enterpriseConnection: EnterpriseAccountConnectionResource | null;
4352
+ enterpriseConnectionId: string | null;
4349
4353
  firstName: string | null;
4350
4354
  lastName: string | null;
4351
4355
  protocol: EnterpriseProtocol;
@@ -4353,6 +4357,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4353
4357
  providerUserId: string | null;
4354
4358
  publicMetadata: Record<string, unknown> | null;
4355
4359
  verification: VerificationResource | null;
4360
+ lastAuthenticatedAt: Date | null;
4356
4361
  __internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
4357
4362
  }
4358
4363
  interface EnterpriseAccountConnectionResource extends ClerkResource {
package/dist/index.d.ts CHANGED
@@ -3694,6 +3694,7 @@ interface EnterpriseAccountJSON extends ClerkResourceJSON {
3694
3694
  public_metadata: Record<string, unknown>;
3695
3695
  verification: VerificationJSON | null;
3696
3696
  last_authenticated_at: number | null;
3697
+ enterprise_connection_id: string | null;
3697
3698
  }
3698
3699
  interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3699
3700
  active: boolean;
@@ -3708,6 +3709,7 @@ interface EnterpriseAccountConnectionJSON extends ClerkResourceJSON {
3708
3709
  sync_user_attributes: boolean;
3709
3710
  created_at: number;
3710
3711
  updated_at: number;
3712
+ enterprise_connection_id: string | null;
3711
3713
  }
3712
3714
  interface SamlAccountJSON extends ClerkResourceJSON {
3713
3715
  object: 'saml_account';
@@ -3720,6 +3722,7 @@ interface SamlAccountJSON extends ClerkResourceJSON {
3720
3722
  verification?: VerificationJSON;
3721
3723
  saml_connection?: SamlAccountConnectionJSON;
3722
3724
  last_authenticated_at: number | null;
3725
+ enterprise_connection_id: string | null;
3723
3726
  }
3724
3727
  interface UserJSON extends ClerkResourceJSON {
3725
3728
  object: 'user';
@@ -4097,7 +4100,7 @@ interface BillingPaymentMethodJSON extends ClerkResourceJSON {
4097
4100
  * @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
4098
4101
  */
4099
4102
  interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
4100
- object: 'commerce_payment_method_initialize';
4103
+ object: 'commerce_payment_source_initialize';
4101
4104
  external_client_secret: string;
4102
4105
  external_gateway_id: string;
4103
4106
  payment_method_order: string[];
@@ -4346,6 +4349,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4346
4349
  active: boolean;
4347
4350
  emailAddress: string;
4348
4351
  enterpriseConnection: EnterpriseAccountConnectionResource | null;
4352
+ enterpriseConnectionId: string | null;
4349
4353
  firstName: string | null;
4350
4354
  lastName: string | null;
4351
4355
  protocol: EnterpriseProtocol;
@@ -4353,6 +4357,7 @@ interface EnterpriseAccountResource extends ClerkResource {
4353
4357
  providerUserId: string | null;
4354
4358
  publicMetadata: Record<string, unknown> | null;
4355
4359
  verification: VerificationResource | null;
4360
+ lastAuthenticatedAt: Date | null;
4356
4361
  __internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
4357
4362
  }
4358
4363
  interface EnterpriseAccountConnectionResource extends ClerkResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clerk/types",
3
- "version": "4.93.0-canary.v20251013115124",
3
+ "version": "4.93.0-snapshot.v20251013140857",
4
4
  "description": "Typings for Clerk libraries.",
5
5
  "keywords": [
6
6
  "clerk",