1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/createApiTokenSchemaOneOfTwo.ts
Thomas Heartman e5c3cc0c8d
chore: regenerate orval with new changes (#7283)
This PR generates new orval schemas with:
- new create tag schema
- updates from toggle to flag
- deprecation and obsolescence info
2024-06-05 09:14:50 +02:00

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;
};