@clerk/types 4.93.0-snapshot.v20251013140857 → 4.93.0-snapshot.v20251013142406
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 -1
- package/dist/index.d.ts +3 -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
|
|
@@ -4100,7 +4102,7 @@ interface BillingPaymentMethodJSON extends ClerkResourceJSON {
|
|
4100
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.
|
4101
4103
|
*/
|
4102
4104
|
interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
|
4103
|
-
object: '
|
4105
|
+
object: 'commerce_payment_method_initialize';
|
4104
4106
|
external_client_secret: string;
|
4105
4107
|
external_gateway_id: string;
|
4106
4108
|
payment_method_order: string[];
|
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
|
|
@@ -4100,7 +4102,7 @@ interface BillingPaymentMethodJSON extends ClerkResourceJSON {
|
|
4100
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.
|
4101
4103
|
*/
|
4102
4104
|
interface BillingInitializedPaymentMethodJSON extends ClerkResourceJSON {
|
4103
|
-
object: '
|
4105
|
+
object: 'commerce_payment_method_initialize';
|
4104
4106
|
external_client_secret: string;
|
4105
4107
|
external_gateway_id: string;
|
4106
4108
|
payment_method_order: string[];
|