Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
216 changes: 216 additions & 0 deletions api/derived-types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25252,6 +25252,222 @@ export interface paths {
};
trace?: never;
};
"/api/marti/missions/{:name}/layer/{:uid}/cot": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
/** Helper API to file existing Mission CoTs under a mission layer, moving them from any layer they are currently filed under */
put: {
parameters: {
query?: never;
header?: never;
path: {
/** @description No Description */
":name": string;
/** @description No Description */
":uid": string;
};
cookie?: never;
};
requestBody: {
content: {
"application/json": {
uids: string[];
};
};
};
responses: {
/** @description Successful Response */
200: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
400: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
401: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
403: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
404: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
500: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
};
};
post?: never;
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/marti/missions/{:name}/layer/{:uid}/cot/{:cotuid}": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
post?: never;
/** Helper API to move a Mission CoT out of a mission layer and back to the mission root - the CoT remains part of the Mission */
delete: {
parameters: {
query?: never;
header?: never;
path: {
/** @description No Description */
":name": string;
/** @description No Description */
":uid": string;
/** @description No Description */
":cotuid": string;
};
cookie?: never;
};
requestBody?: never;
responses: {
/** @description Successful Response */
200: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
400: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
401: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
403: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
404: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
/** @description Error Response */
500: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": {
status: number;
message: string;
};
};
};
};
};
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/marti/missions/{:name}/log": {
parameters: {
query?: never;
Expand Down
Loading
Loading