@clerk/types 4.66.0 → 4.66.1
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 +5 -2
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2917,6 +2917,9 @@ interface OrganizationResource extends ClerkResource, CommercePaymentSourceMetho
|
|
|
2917
2917
|
getRoles: (params?: GetRolesParams) => Promise<ClerkPaginatedResponse<RoleResource>>;
|
|
2918
2918
|
getDomains: (params?: GetDomainsParams) => Promise<ClerkPaginatedResponse<OrganizationDomainResource>>;
|
|
2919
2919
|
getMembershipRequests: (params?: GetMembershipRequestParams) => Promise<ClerkPaginatedResponse<OrganizationMembershipRequestResource>>;
|
|
2920
|
+
/**
|
|
2921
|
+
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change.
|
|
2922
|
+
*/
|
|
2920
2923
|
getSubscriptions: (params?: GetSubscriptionsParams) => Promise<ClerkPaginatedResponse<CommerceSubscriptionResource>>;
|
|
2921
2924
|
addMember: (params: AddMemberParams) => Promise<OrganizationMembershipResource>;
|
|
2922
2925
|
inviteMember: (params: InviteMemberParams) => Promise<OrganizationInvitationResource>;
|
|
@@ -7658,9 +7661,9 @@ interface Clerk {
|
|
|
7658
7661
|
* Navigates to the next task or redirects to completion URL.
|
|
7659
7662
|
* If the current session has pending tasks, it navigates to the next task.
|
|
7660
7663
|
* If all tasks are complete, it navigates to the provided completion URL or defaults to the origin redirect URL (either from sign-in or sign-up).
|
|
7661
|
-
* @
|
|
7664
|
+
* @internal
|
|
7662
7665
|
*/
|
|
7663
|
-
|
|
7666
|
+
__internal_navigateToTaskIfAvailable: (params?: NextTaskParams) => Promise<void>;
|
|
7664
7667
|
/**
|
|
7665
7668
|
* This is an optional function.
|
|
7666
7669
|
* This function is used to load cached Client and Environment resources if Clerk fails to load them from the Frontend API.
|
package/dist/index.d.ts
CHANGED
|
@@ -2917,6 +2917,9 @@ interface OrganizationResource extends ClerkResource, CommercePaymentSourceMetho
|
|
|
2917
2917
|
getRoles: (params?: GetRolesParams) => Promise<ClerkPaginatedResponse<RoleResource>>;
|
|
2918
2918
|
getDomains: (params?: GetDomainsParams) => Promise<ClerkPaginatedResponse<OrganizationDomainResource>>;
|
|
2919
2919
|
getMembershipRequests: (params?: GetMembershipRequestParams) => Promise<ClerkPaginatedResponse<OrganizationMembershipRequestResource>>;
|
|
2920
|
+
/**
|
|
2921
|
+
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change.
|
|
2922
|
+
*/
|
|
2920
2923
|
getSubscriptions: (params?: GetSubscriptionsParams) => Promise<ClerkPaginatedResponse<CommerceSubscriptionResource>>;
|
|
2921
2924
|
addMember: (params: AddMemberParams) => Promise<OrganizationMembershipResource>;
|
|
2922
2925
|
inviteMember: (params: InviteMemberParams) => Promise<OrganizationInvitationResource>;
|
|
@@ -7658,9 +7661,9 @@ interface Clerk {
|
|
|
7658
7661
|
* Navigates to the next task or redirects to completion URL.
|
|
7659
7662
|
* If the current session has pending tasks, it navigates to the next task.
|
|
7660
7663
|
* If all tasks are complete, it navigates to the provided completion URL or defaults to the origin redirect URL (either from sign-in or sign-up).
|
|
7661
|
-
* @
|
|
7664
|
+
* @internal
|
|
7662
7665
|
*/
|
|
7663
|
-
|
|
7666
|
+
__internal_navigateToTaskIfAvailable: (params?: NextTaskParams) => Promise<void>;
|
|
7664
7667
|
/**
|
|
7665
7668
|
* This is an optional function.
|
|
7666
7669
|
* This function is used to load cached Client and Environment resources if Clerk fails to load them from the Frontend API.
|