23 lines
430 B
TypeScript
23 lines
430 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
/**
|
|
* Serialized skill pack record.
|
|
*/
|
|
export interface SkillPackRead {
|
|
created_at: string;
|
|
description?: string | null;
|
|
id: string;
|
|
branch: string;
|
|
name: string;
|
|
organization_id: string;
|
|
metadata: Record<string, object>;
|
|
skill_count?: number;
|
|
source_url: string;
|
|
updated_at: string;
|
|
}
|