mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-17 21:27:05 +02:00
169 lines
4.5 KiB
TypeScript
Generated
169 lines
4.5 KiB
TypeScript
Generated
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
export type DnsOverride = {
|
|
hostname: string;
|
|
ipv4: Array<string>;
|
|
ipv6: Array<string>;
|
|
enabled?: boolean;
|
|
};
|
|
|
|
export type Environment = {
|
|
model: "environment";
|
|
id: string;
|
|
workspaceId: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
name: string;
|
|
public: boolean;
|
|
parentModel: string;
|
|
parentId: string | null;
|
|
/**
|
|
* Variables defined in this environment scope.
|
|
* Child environments override parent variables by name.
|
|
*/
|
|
variables: Array<EnvironmentVariable>;
|
|
color: string | null;
|
|
sortPriority: number;
|
|
};
|
|
|
|
export type EnvironmentVariable = { enabled?: boolean; name: string; value: string; id?: string };
|
|
|
|
export type Folder = {
|
|
model: "folder";
|
|
id: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
workspaceId: string;
|
|
folderId: string | null;
|
|
authentication: Record<string, any>;
|
|
authenticationType: string | null;
|
|
description: string;
|
|
headers: Array<HttpRequestHeader>;
|
|
name: string;
|
|
sortPriority: number;
|
|
settingSendCookies: InheritedBoolSetting;
|
|
settingStoreCookies: InheritedBoolSetting;
|
|
settingValidateCertificates: InheritedBoolSetting;
|
|
settingFollowRedirects: InheritedBoolSetting;
|
|
settingRequestTimeout: InheritedIntSetting;
|
|
};
|
|
|
|
export type GrpcRequest = {
|
|
model: "grpc_request";
|
|
id: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
workspaceId: string;
|
|
folderId: string | null;
|
|
authenticationType: string | null;
|
|
authentication: Record<string, any>;
|
|
description: string;
|
|
message: string;
|
|
metadata: Array<HttpRequestHeader>;
|
|
method: string | null;
|
|
name: string;
|
|
service: string | null;
|
|
sortPriority: number;
|
|
/**
|
|
* Server URL (http for plaintext or https for secure)
|
|
*/
|
|
url: string;
|
|
settingSendCookies: InheritedBoolSetting;
|
|
settingStoreCookies: InheritedBoolSetting;
|
|
};
|
|
|
|
export type HttpRequest = {
|
|
model: "http_request";
|
|
id: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
workspaceId: string;
|
|
folderId: string | null;
|
|
authentication: Record<string, any>;
|
|
authenticationType: string | null;
|
|
body: Record<string, any>;
|
|
bodyType: string | null;
|
|
description: string;
|
|
headers: Array<HttpRequestHeader>;
|
|
method: string;
|
|
name: string;
|
|
sortPriority: number;
|
|
url: string;
|
|
/**
|
|
* URL parameters used for both path placeholders (`:id`) and query string entries.
|
|
*/
|
|
urlParameters: Array<HttpUrlParameter>;
|
|
settingSendCookies: InheritedBoolSetting;
|
|
settingStoreCookies: InheritedBoolSetting;
|
|
settingValidateCertificates: InheritedBoolSetting;
|
|
settingFollowRedirects: InheritedBoolSetting;
|
|
settingRequestTimeout: InheritedIntSetting;
|
|
};
|
|
|
|
export type HttpRequestHeader = { enabled?: boolean; name: string; value: string; id?: string };
|
|
|
|
export type HttpUrlParameter = {
|
|
enabled?: boolean;
|
|
/**
|
|
* Colon-prefixed parameters are treated as path parameters if they match, like `/users/:id`
|
|
* Other entries are appended as query parameters
|
|
*/
|
|
name: string;
|
|
value: string;
|
|
id?: string;
|
|
};
|
|
|
|
export type InheritedBoolSetting = { enabled?: boolean; value: boolean };
|
|
|
|
export type InheritedIntSetting = { enabled?: boolean; value: number };
|
|
|
|
export type SyncModel =
|
|
| ({ type: "workspace" } & Workspace)
|
|
| ({ type: "environment" } & Environment)
|
|
| ({ type: "folder" } & Folder)
|
|
| ({ type: "http_request" } & HttpRequest)
|
|
| ({ type: "grpc_request" } & GrpcRequest)
|
|
| ({ type: "websocket_request" } & WebsocketRequest);
|
|
|
|
export type WebsocketRequest = {
|
|
model: "websocket_request";
|
|
id: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
workspaceId: string;
|
|
folderId: string | null;
|
|
authentication: Record<string, any>;
|
|
authenticationType: string | null;
|
|
description: string;
|
|
headers: Array<HttpRequestHeader>;
|
|
message: string;
|
|
name: string;
|
|
sortPriority: number;
|
|
url: string;
|
|
/**
|
|
* URL parameters used for both path placeholders (`:id`) and query string entries.
|
|
*/
|
|
urlParameters: Array<HttpUrlParameter>;
|
|
settingSendCookies: InheritedBoolSetting;
|
|
settingStoreCookies: InheritedBoolSetting;
|
|
};
|
|
|
|
export type Workspace = {
|
|
model: "workspace";
|
|
id: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
authentication: Record<string, any>;
|
|
authenticationType: string | null;
|
|
description: string;
|
|
headers: Array<HttpRequestHeader>;
|
|
name: string;
|
|
encryptionKeyChallenge: string | null;
|
|
settingValidateCertificates: boolean;
|
|
settingFollowRedirects: boolean;
|
|
settingRequestTimeout: number;
|
|
settingDnsOverrides: Array<DnsOverride>;
|
|
settingSendCookies: boolean;
|
|
settingStoreCookies: boolean;
|
|
};
|