mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class ApiKeyResponseDto {
|
|
@ApiProperty({ example: 1, description: 'API key ID' })
|
|
id: number;
|
|
|
|
@ApiProperty({
|
|
example: 'bc_1234567890abcdef',
|
|
description: 'The API key string',
|
|
})
|
|
key: string;
|
|
}
|
|
|
|
export class ApiKeyRevokeResponseDto {
|
|
@ApiProperty({ example: 1, description: 'API key ID' })
|
|
id: number;
|
|
|
|
@ApiProperty({
|
|
example: true,
|
|
description: 'Whether the API key was revoked',
|
|
})
|
|
revoked: boolean;
|
|
}
|
|
|
|
export class ApiKeyListItemDto {
|
|
@ApiProperty({ example: 1, description: 'API key ID' })
|
|
id: number;
|
|
|
|
@ApiProperty({ example: 'My API Key', description: 'API key name' })
|
|
name?: string;
|
|
|
|
@ApiProperty({
|
|
example: 'bc_1234...',
|
|
description: 'First 8 characters of the API key token',
|
|
})
|
|
token: string;
|
|
|
|
@ApiProperty({
|
|
example: '2024-01-01T00:00:00.000Z',
|
|
description: 'Creation date',
|
|
})
|
|
createdAt: Date;
|
|
|
|
@ApiProperty({
|
|
example: '2024-12-31T23:59:59.000Z',
|
|
required: false,
|
|
description: 'Expiration date',
|
|
})
|
|
expiresAt?: Date;
|
|
|
|
@ApiProperty({ example: false, description: 'Whether the key is revoked' })
|
|
revoked: boolean;
|
|
}
|
|
|
|
export class ApiKeyListResponseDto {
|
|
@ApiProperty({ type: [ApiKeyListItemDto] })
|
|
data: ApiKeyListItemDto[];
|
|
}
|