mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
dc2f611257
* fix: PAT secret no longer returned (except new), use id instead * fix types
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
export interface IPersonalAPIToken {
|
|
id: string;
|
|
description: string;
|
|
expiresAt: string;
|
|
createdAt: string;
|
|
}
|
|
|
|
export interface INewPersonalAPIToken extends IPersonalAPIToken {
|
|
secret: string;
|
|
}
|