mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-29 21:51:59 +02:00
14 lines
716 B
TypeScript
14 lines
716 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
export type APIErrorResponsePayload = { error: string, message: string, };
|
|
|
|
export type ActivateLicenseRequestPayload = { licenseKey: string, appVersion: string, appPlatform: string, };
|
|
|
|
export type ActivateLicenseResponsePayload = { activationId: string, };
|
|
|
|
export type CheckActivationResponsePayload = { active: boolean, };
|
|
|
|
export type DeactivateLicenseRequestPayload = { appVersion: string, appPlatform: string, };
|
|
|
|
export type LicenseCheckStatus = { "type": "personal_use", trial_ended: string, } | { "type": "commercial_use" } | { "type": "invalid_license" } | { "type": "trialing", end: string, };
|