1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/frontend/src/interfaces/personalAPIToken.ts
Nuno Góis dc2f611257
fix: PAT secret no longer returned (except new), use id instead (#2162)
* fix: PAT secret no longer returned (except new), use id instead

* fix types
2022-10-10 12:51:12 +01:00

11 lines
215 B
TypeScript

export interface IPersonalAPIToken {
id: string;
description: string;
expiresAt: string;
createdAt: string;
}
export interface INewPersonalAPIToken extends IPersonalAPIToken {
secret: string;
}