This commit is contained in:
2026-04-06 21:11:57 +03:30
parent b3fb4f4baf
commit 8990edf064
37 changed files with 140 additions and 59 deletions
@@ -1,2 +1,3 @@
export * from './accounts_io';
export * from './io';
export * from './licenses_io';
@@ -0,0 +1,12 @@
export interface IPartnerLicenseRawResponse {
id: string;
starts_at: string;
expires_at: string;
status: TLicenseStatus;
consumer: {
first_name: string;
last_name: string;
mobile_number: string;
};
}
export interface IPartnerLicenseResponse extends IPartnerLicenseRawResponse {}