feat: implement billing, usage tracking, and administrative geocoding features in API with infrastructure updates
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
export declare enum SubscriptionStatus {
|
||||
ACTIVE = "ACTIVE",
|
||||
PAST_DUE = "PAST_DUE",
|
||||
CANCELED = "CANCELED",
|
||||
TRIALING = "TRIALING"
|
||||
}
|
||||
export declare class Subscription {
|
||||
id: string;
|
||||
tenantId: string;
|
||||
plan: string;
|
||||
status: SubscriptionStatus;
|
||||
monthlyRequestLimit: number;
|
||||
currentPeriodStart: Date;
|
||||
currentPeriodEnd: Date;
|
||||
canceledAt: Date;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
Reference in New Issue
Block a user