@clerk/types 4.93.0-snapshot.v20251010205949 → 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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
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;
|
@@ -4348,6 +4349,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4348
4349
|
active: boolean;
|
4349
4350
|
emailAddress: string;
|
4350
4351
|
enterpriseConnection: EnterpriseAccountConnectionResource | null;
|
4352
|
+
enterpriseConnectionId: string | null;
|
4351
4353
|
firstName: string | null;
|
4352
4354
|
lastName: string | null;
|
4353
4355
|
protocol: EnterpriseProtocol;
|
@@ -4355,6 +4357,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4355
4357
|
providerUserId: string | null;
|
4356
4358
|
publicMetadata: Record<string, unknown> | null;
|
4357
4359
|
verification: VerificationResource | null;
|
4360
|
+
lastAuthenticatedAt: Date | null;
|
4358
4361
|
__internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
|
4359
4362
|
}
|
4360
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;
|
@@ -4348,6 +4349,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4348
4349
|
active: boolean;
|
4349
4350
|
emailAddress: string;
|
4350
4351
|
enterpriseConnection: EnterpriseAccountConnectionResource | null;
|
4352
|
+
enterpriseConnectionId: string | null;
|
4351
4353
|
firstName: string | null;
|
4352
4354
|
lastName: string | null;
|
4353
4355
|
protocol: EnterpriseProtocol;
|
@@ -4355,6 +4357,7 @@ interface EnterpriseAccountResource extends ClerkResource {
|
|
4355
4357
|
providerUserId: string | null;
|
4356
4358
|
publicMetadata: Record<string, unknown> | null;
|
4357
4359
|
verification: VerificationResource | null;
|
4360
|
+
lastAuthenticatedAt: Date | null;
|
4358
4361
|
__internal_toSnapshot: () => EnterpriseAccountJSONSnapshot;
|
4359
4362
|
}
|
4360
4363
|
interface EnterpriseAccountConnectionResource extends ClerkResource {
|