re-uploading work
This commit is contained in:
50
web/src/api/models/CreatePackRequest.ts
Normal file
50
web/src/api/models/CreatePackRequest.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Request DTO for creating a new pack
|
||||
*/
|
||||
export type CreatePackRequest = {
|
||||
/**
|
||||
* Configuration schema (JSON Schema)
|
||||
*/
|
||||
conf_schema?: Record<string, any>;
|
||||
/**
|
||||
* Pack configuration values
|
||||
*/
|
||||
config?: Record<string, any>;
|
||||
/**
|
||||
* Pack description
|
||||
*/
|
||||
description?: string | null;
|
||||
/**
|
||||
* Whether this is a standard/built-in pack
|
||||
*/
|
||||
is_standard?: boolean;
|
||||
/**
|
||||
* Human-readable label
|
||||
*/
|
||||
label: string;
|
||||
/**
|
||||
* Pack metadata
|
||||
*/
|
||||
meta?: Record<string, any>;
|
||||
/**
|
||||
* Unique reference identifier (e.g., "core", "aws", "slack")
|
||||
*/
|
||||
ref: string;
|
||||
/**
|
||||
* Runtime dependencies (refs of required packs)
|
||||
*/
|
||||
runtime_deps?: Array<string>;
|
||||
/**
|
||||
* Tags for categorization
|
||||
*/
|
||||
tags?: Array<string>;
|
||||
/**
|
||||
* Pack version (semver format recommended)
|
||||
*/
|
||||
version: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user