-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
219 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* Generated by orval 🍺 | ||
* Do not edit manually. | ||
* Flathub API | ||
* OpenAPI spec version: 0.1.0 | ||
*/ | ||
|
||
export type TokenModelState = | ||
(typeof TokenModelState)[keyof typeof TokenModelState] | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-redeclare | ||
export const TokenModelState = { | ||
unredeemed: "unredeemed", | ||
redeemed: "redeemed", | ||
cancelled: "cancelled", | ||
} as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Generated by orval 🍺 | ||
* Do not edit manually. | ||
* Flathub API | ||
* OpenAPI spec version: 0.1.0 | ||
*/ | ||
|
||
export type VendingConfigStatus = | ||
(typeof VendingConfigStatus)[keyof typeof VendingConfigStatus] | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-redeclare | ||
export const VendingConfigStatus = { | ||
ok: "ok", | ||
} as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* Generated by orval 🍺 | ||
* Do not edit manually. | ||
* Flathub API | ||
* OpenAPI spec version: 0.1.0 | ||
*/ | ||
|
||
/** | ||
* Configuration for a vended application | ||
*/ | ||
export interface VendingSetupRequest { | ||
appshare: number | ||
currency: string | ||
minimum_payment: number | ||
recommended_donation: number | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* Generated by orval 🍺 | ||
* Do not edit manually. | ||
* Flathub API | ||
* OpenAPI spec version: 0.1.0 | ||
*/ | ||
|
||
export type VendingSetupStatus = | ||
(typeof VendingSetupStatus)[keyof typeof VendingSetupStatus] | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-redeclare | ||
export const VendingSetupStatus = { | ||
ok: "ok", | ||
"no-config": "no-config", | ||
} as const |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.