-
Notifications
You must be signed in to change notification settings - Fork 0
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
github-actions
committed
Aug 26, 2024
1 parent
dc8e3a5
commit e893387
Showing
4 changed files
with
65 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Passage Management API | ||
* Passage\'s management API to manage your Passage apps and users. | ||
* | ||
* The version of the OpenAPI document: 1 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
/** | ||
* | ||
* @export | ||
*/ | ||
export const ThemeType = { | ||
Auto: 'auto', | ||
Light: 'light', | ||
Dark: 'dark' | ||
} as const; | ||
export type ThemeType = typeof ThemeType[keyof typeof ThemeType]; | ||
|
||
|
||
export function ThemeTypeFromJSON(json: any): ThemeType { | ||
return ThemeTypeFromJSONTyped(json, false); | ||
} | ||
|
||
export function ThemeTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ThemeType { | ||
return json as ThemeType; | ||
} | ||
|
||
export function ThemeTypeToJSON(value?: ThemeType | null): any { | ||
return value as any; | ||
} | ||
|
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