@clerk/types 4.93.0-snapshot.v20251010205949 → 4.93.0-snapshot.v20251013141708
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 +6 -1
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
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;
|
@@ -4099,7 +4102,7 @@ interface BillingPaymentMethodJSON extends ClerkResourceJSON {
|
|
4099
4102
|
* @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.
|
4100
4103
|
*/
|
4101
4104
|
interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
|
4102
|
-
object: '
|
4105
|
+
object: 'commerce_payment_method_initialize';
|
4103
4106
|
external_client_secret: string;
|
4104
4107
|
external_gateway_id: string;
|
4105
4108
|
payment_method_order: string[];
|
@@ -4348,6 +4351,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4348
4351
|
active: boolean;
|
4349
4352
|
emailAddress: string;
|
4350
4353
|
enterpriseConnection: EnterpriseAccountConnectionResource | null;
|
4354
|
+
enterpriseConnectionId: string | null;
|
4351
4355
|
firstName: string | null;
|
4352
4356
|
lastName: string | null;
|
4353
4357
|
protocol: EnterpriseProtocol;
|
@@ -4355,6 +4359,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4355
4359
|
providerUserId: string | null;
|
4356
4360
|
publicMetadata: Record<string, unknown> | null;
|
4357
4361
|
verification: VerificationResource | null;
|
4362
|
+
lastAuthenticatedAt: Date | null;
|
4358
4363
|
__internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
|
4359
4364
|
}
|
4360
4365
|
interface EnterpriseAccountConnectionResource extends ClerkResource {
|
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;
|
@@ -4099,7 +4102,7 @@ interface BillingPaymentMethodJSON extends ClerkResourceJSON {
|
|
4099
4102
|
* @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.
|
4100
4103
|
*/
|
4101
4104
|
interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
|
4102
|
-
object: '
|
4105
|
+
object: 'commerce_payment_method_initialize';
|
4103
4106
|
external_client_secret: string;
|
4104
4107
|
external_gateway_id: string;
|
4105
4108
|
payment_method_order: string[];
|
@@ -4348,6 +4351,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4348
4351
|
active: boolean;
|
4349
4352
|
emailAddress: string;
|
4350
4353
|
enterpriseConnection: EnterpriseAccountConnectionResource | null;
|
4354
|
+
enterpriseConnectionId: string | null;
|
4351
4355
|
firstName: string | null;
|
4352
4356
|
lastName: string | null;
|
4353
4357
|
protocol: EnterpriseProtocol;
|
@@ -4355,6 +4359,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4355
4359
|
providerUserId: string | null;
|
4356
4360
|
publicMetadata: Record<string, unknown> | null;
|
4357
4361
|
verification: VerificationResource | null;
|
4362
|
+
lastAuthenticatedAt: Date | null;
|
4358
4363
|
__internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
|
4359
4364
|
}
|
4360
4365
|
interface EnterpriseAccountConnectionResource extends ClerkResource {
|