@clerk/backend
Version:
Clerk Backend SDK - REST Client for Backend API & JWT verification utilities
16 lines • 782 B
TypeScript
import type { ClerkPaginationRequest } from '@clerk/types';
import type { CommercePlan } from '../resources/CommercePlan';
import type { PaginatedResourceResponse } from '../resources/Deserializer';
import { AbstractAPI } from './AbstractApi';
type GetOrganizationListParams = ClerkPaginationRequest<{
payerType: 'org' | 'user';
}>;
export declare class BillingAPI extends AbstractAPI {
/**
* @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 the SDK version to avoid breaking changes.
*/
getPlanList(params?: GetOrganizationListParams): Promise<PaginatedResourceResponse<CommercePlan[]>>;
}
export {};
//# sourceMappingURL=BillingApi.d.ts.map