Simple Managment webapp [LLM]

This commit is contained in:
2025-12-03 19:07:23 +01:00
parent 8306992533
commit 01df2b49f6
6 changed files with 86 additions and 52 deletions

View File

@@ -31,5 +31,6 @@ export interface ConfirmSubscriptionRequest {
export interface SubscriptionListResponse {
subscriptions: Subscription[];
next_page_token?: string;
page_size?: number;
page_size: number;
total_count: number;
}