@appsemble/node-utils
Version:
NodeJS utilities used by Appsemble internally.
9 lines (8 loc) • 388 B
TypeScript
import { type SubscriptionPlanType } from '@appsemble/types';
/**
* Updates the organization's subscription to the given plan
*
* @param organizationId ID of the organization to assign the subscription to
* @param subscriptionPlan Type of subscription plan
*/
export declare function updateSubscription(organizationId: string, subscriptionPlan: SubscriptionPlanType): Promise<void>;