plane/web/services/license.service.ts

34 lines
995 B
TypeScript
Raw Normal View History

2023-10-25 06:28:40 +00:00
// services
import { APIService } from "services/api.service";
2023-10-25 15:31:23 +00:00
import { IUser, IWorkspace } from "types";
2023-10-25 06:28:40 +00:00
export class LicenseService extends APIService {
constructor() {
super("http://localhost:8080");
}
async getProducts(): Promise<any[]> {
return this.get(`/api/products/`)
.then((response) => response?.data)
.catch((error) => {
throw error?.response?.data;
});
}
2023-10-25 15:31:23 +00:00
async createSubscription(user: IUser, priceId: string): Promise<any> {
return this.post(`/api/subscriptions/`, { user, priceId })
.then((response) => response?.data)
.catch((error) => {
throw error?.response?.data;
});
}
async createCheckoutSession(priceId: string, seats: number, workspace: IWorkspace, user: IUser): Promise<any> {
return this.post(`/api/checkout/create-session/`, { priceId, seats, workspace, user })
.then((response) => response?.data)
.catch((error) => {
throw error?.response?.data;
});
}
2023-10-25 06:28:40 +00:00
}