mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
e5c3cc0c8d
This PR generates new orval schemas with: - new create tag schema - updates from toggle to flag - deprecation and obsolescence info
21 lines
512 B
TypeScript
21 lines
512 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type CreateApiTokenSchemaOneOfTwo = {
|
|
/** The time when this token should expire. */
|
|
expiresAt?: string;
|
|
/**
|
|
* An admin token. Must be the string "admin" (not case sensitive).
|
|
* @pattern ^[Aa][Dd][Mm][Ii][Nn]$
|
|
*/
|
|
type: string;
|
|
/**
|
|
* The name of the token. This property was deprecated in v5. Use `tokenName` instead.
|
|
* @deprecated
|
|
*/
|
|
username: string;
|
|
};
|