17 lines
346 B
TypeScript
17 lines
346 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
|
|
/**
|
|
* Payload used to register a skill URL in the organization marketplace.
|
|
*/
|
|
export interface MarketplaceSkillCreate {
|
|
/** @minLength 1 */
|
|
source_url: string;
|
|
name?: string | null;
|
|
description?: string | null;
|
|
}
|