1549664416
* feat: created new Developers Page in Settings * update styled according to the updated design * update styled according to the updated design * remove unused color import from TableCell component * update pl based on comments * update pl based on comments * update pl based on comments * update pl based on comments * update pl based on comments * update pl based on comments * update pl based on comments
37 lines
615 B
TypeScript
37 lines
615 B
TypeScript
import { v4 } from 'uuid';
|
|
|
|
import { ApisFiedlItem } from '../types/ApisFieldItem';
|
|
|
|
export const activeApiKeyItems: ApisFiedlItem[] = [
|
|
{
|
|
id: v4(),
|
|
name: 'Zapier key',
|
|
type: 'internal',
|
|
expiration: 'In 80 days',
|
|
},
|
|
{
|
|
id: v4(),
|
|
name: 'Notion',
|
|
type: 'internal',
|
|
expiration: 'Expired',
|
|
},
|
|
{
|
|
id: v4(),
|
|
name: 'Trello',
|
|
type: 'internal',
|
|
expiration: 'In 1 year',
|
|
},
|
|
{
|
|
id: v4(),
|
|
name: 'Cargo',
|
|
type: 'published',
|
|
expiration: 'Never',
|
|
},
|
|
{
|
|
id: v4(),
|
|
name: 'Backoffice',
|
|
type: 'published',
|
|
expiration: 'In 32 days',
|
|
},
|
|
];
|