mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
export api types to ts (#2583)
This commit is contained in:
9
core/startos/bindings/ActionParams.ts
Normal file
9
core/startos/bindings/ActionParams.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { ActionId } from "./ActionId";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type ActionParams = {
|
||||
id: PackageId;
|
||||
actionId: ActionId;
|
||||
input: { [key: string]: any } | null;
|
||||
};
|
||||
4
core/startos/bindings/AddImageParams.ts
Normal file
4
core/startos/bindings/AddImageParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { ImageId } from "./ImageId";
|
||||
|
||||
export type AddImageParams = { id: ImageId; image: string };
|
||||
4
core/startos/bindings/AddParams.ts
Normal file
4
core/startos/bindings/AddParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { SshPubKey } from "./SshPubKey";
|
||||
|
||||
export type AddParams = { key: SshPubKey };
|
||||
3
core/startos/bindings/ApplyParams.ts
Normal file
3
core/startos/bindings/ApplyParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ApplyParams = { expr: string; path: string | null };
|
||||
7
core/startos/bindings/AttachParams.ts
Normal file
7
core/startos/bindings/AttachParams.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { EncryptedWire } from "./EncryptedWire";
|
||||
|
||||
export type AttachParams = {
|
||||
startOsPassword: EncryptedWire | null;
|
||||
guid: string;
|
||||
};
|
||||
11
core/startos/bindings/BackupParams.ts
Normal file
11
core/startos/bindings/BackupParams.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BackupTargetId } from "./BackupTargetId";
|
||||
import type { PackageId } from "./PackageId";
|
||||
import type { PasswordType } from "./PasswordType";
|
||||
|
||||
export type BackupParams = {
|
||||
targetId: BackupTargetId;
|
||||
oldPassword: PasswordType | null;
|
||||
packageIds: Array<PackageId> | null;
|
||||
password: PasswordType;
|
||||
};
|
||||
7
core/startos/bindings/BackupTargetFS.ts
Normal file
7
core/startos/bindings/BackupTargetFS.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BlockDev } from "./BlockDev";
|
||||
import type { Cifs } from "./Cifs";
|
||||
|
||||
export type BackupTargetFS =
|
||||
| ({ type: "disk" } & BlockDev)
|
||||
| ({ type: "cifs" } & Cifs);
|
||||
3
core/startos/bindings/BackupTargetId.ts
Normal file
3
core/startos/bindings/BackupTargetId.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type BackupTargetId = string;
|
||||
3
core/startos/bindings/BlockDev.ts
Normal file
3
core/startos/bindings/BlockDev.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type BlockDev = { logicalname: string };
|
||||
8
core/startos/bindings/Cifs.ts
Normal file
8
core/startos/bindings/Cifs.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Cifs = {
|
||||
hostname: string;
|
||||
path: string;
|
||||
username: string;
|
||||
password: string | null;
|
||||
};
|
||||
4
core/startos/bindings/ConfigParams.ts
Normal file
4
core/startos/bindings/ConfigParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type ConfigParams = { id: PackageId };
|
||||
7
core/startos/bindings/ConfigureParams.ts
Normal file
7
core/startos/bindings/ConfigureParams.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type ConfigureParams = {
|
||||
dependentId: PackageId;
|
||||
dependencyId: PackageId;
|
||||
};
|
||||
4
core/startos/bindings/ConnectParams.ts
Normal file
4
core/startos/bindings/ConnectParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type ConnectParams = { id: PackageId };
|
||||
4
core/startos/bindings/ControlParams.ts
Normal file
4
core/startos/bindings/ControlParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type ControlParams = { id: PackageId };
|
||||
10
core/startos/bindings/CreateParams.ts
Normal file
10
core/startos/bindings/CreateParams.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { NotificationLevel } from "./NotificationLevel";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type CreateParams = {
|
||||
package: PackageId | null;
|
||||
level: NotificationLevel;
|
||||
title: string;
|
||||
message: string;
|
||||
};
|
||||
3
core/startos/bindings/DeleteBeforeParams.ts
Normal file
3
core/startos/bindings/DeleteBeforeParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type DeleteBeforeParams = { before: number };
|
||||
3
core/startos/bindings/DeleteParams.ts
Normal file
3
core/startos/bindings/DeleteParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type DeleteParams = { fingerprint: string };
|
||||
3
core/startos/bindings/DumpParams.ts
Normal file
3
core/startos/bindings/DumpParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type DumpParams = {};
|
||||
3
core/startos/bindings/EchoParams.ts
Normal file
3
core/startos/bindings/EchoParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type EchoParams = { message: string };
|
||||
3
core/startos/bindings/EditManifestParams.ts
Normal file
3
core/startos/bindings/EditManifestParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type EditManifestParams = { expression: string };
|
||||
3
core/startos/bindings/EncryptedWire.ts
Normal file
3
core/startos/bindings/EncryptedWire.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type EncryptedWire = { encrypted: any };
|
||||
10
core/startos/bindings/ExecuteParams.ts
Normal file
10
core/startos/bindings/ExecuteParams.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { EncryptedWire } from "./EncryptedWire";
|
||||
import type { RecoverySource } from "./RecoverySource";
|
||||
|
||||
export type ExecuteParams = {
|
||||
startOsLogicalname: string;
|
||||
startOsPassword: EncryptedWire;
|
||||
recoverySource: RecoverySource | null;
|
||||
recoveryPassword: EncryptedWire | null;
|
||||
};
|
||||
3
core/startos/bindings/GetParams.ts
Normal file
3
core/startos/bindings/GetParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type GetParams = { url: string };
|
||||
4
core/startos/bindings/GovernorParams.ts
Normal file
4
core/startos/bindings/GovernorParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Governor } from "./Governor";
|
||||
|
||||
export type GovernorParams = { set: Governor | null };
|
||||
4
core/startos/bindings/InfoParams.ts
Normal file
4
core/startos/bindings/InfoParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BackupTargetId } from "./BackupTargetId";
|
||||
|
||||
export type InfoParams = { targetId: BackupTargetId; password: string };
|
||||
10
core/startos/bindings/InstallParams.ts
Normal file
10
core/startos/bindings/InstallParams.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { MinMax } from "./MinMax";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type InstallParams = {
|
||||
id: PackageId;
|
||||
marketplaceUrl: string | null;
|
||||
versionSpec: string | null;
|
||||
versionPriority: MinMax | null;
|
||||
};
|
||||
8
core/startos/bindings/KernelLogsParams.ts
Normal file
8
core/startos/bindings/KernelLogsParams.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type KernelLogsParams = {
|
||||
limit: number | null;
|
||||
cursor: string | null;
|
||||
before: boolean;
|
||||
follow: boolean;
|
||||
};
|
||||
3
core/startos/bindings/KillParams.ts
Normal file
3
core/startos/bindings/KillParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type KillParams = { ids: Array<string> };
|
||||
3
core/startos/bindings/ListParams.ts
Normal file
3
core/startos/bindings/ListParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ListParams = { before: number | null; limit: number | null };
|
||||
8
core/startos/bindings/LoginParams.ts
Normal file
8
core/startos/bindings/LoginParams.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PasswordType } from "./PasswordType";
|
||||
|
||||
export type LoginParams = {
|
||||
password: PasswordType | null;
|
||||
userAgent: string | null;
|
||||
metadata: any;
|
||||
};
|
||||
3
core/startos/bindings/LogoutParams.ts
Normal file
3
core/startos/bindings/LogoutParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type LogoutParams = { session: string };
|
||||
8
core/startos/bindings/LogsParams.ts
Normal file
8
core/startos/bindings/LogsParams.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type LogsParams = {
|
||||
limit: number | null;
|
||||
cursor: string | null;
|
||||
before: boolean;
|
||||
follow: boolean;
|
||||
};
|
||||
3
core/startos/bindings/MinMax.ts
Normal file
3
core/startos/bindings/MinMax.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type MinMax = "min" | "max";
|
||||
3
core/startos/bindings/NotificationLevel.ts
Normal file
3
core/startos/bindings/NotificationLevel.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type NotificationLevel = "success" | "info" | "warning" | "error";
|
||||
4
core/startos/bindings/PasswordType.ts
Normal file
4
core/startos/bindings/PasswordType.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { EncryptedWire } from "./EncryptedWire";
|
||||
|
||||
export type PasswordType = EncryptedWire | string;
|
||||
6
core/startos/bindings/RecoverySource.ts
Normal file
6
core/startos/bindings/RecoverySource.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BackupTargetFS } from "./BackupTargetFS";
|
||||
|
||||
export type RecoverySource =
|
||||
| { type: "migrate"; guid: string }
|
||||
| { type: "backup"; target: BackupTargetFS };
|
||||
3
core/startos/bindings/RemoveParams.ts
Normal file
3
core/startos/bindings/RemoveParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type RemoveParams = { guid: string };
|
||||
3
core/startos/bindings/ResetParams.ts
Normal file
3
core/startos/bindings/ResetParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ResetParams = { wipeState: boolean; reason: string };
|
||||
7
core/startos/bindings/ResetPasswordParams.ts
Normal file
7
core/startos/bindings/ResetPasswordParams.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PasswordType } from "./PasswordType";
|
||||
|
||||
export type ResetPasswordParams = {
|
||||
oldPassword: PasswordType | null;
|
||||
newPassword: PasswordType | null;
|
||||
};
|
||||
9
core/startos/bindings/RestorePackageParams.ts
Normal file
9
core/startos/bindings/RestorePackageParams.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BackupTargetId } from "./BackupTargetId";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type RestorePackageParams = {
|
||||
ids: Array<PackageId>;
|
||||
targetId: BackupTargetId;
|
||||
password: string;
|
||||
};
|
||||
3
core/startos/bindings/Session.ts
Normal file
3
core/startos/bindings/Session.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Session = { loggedIn: string; lastActive: string; metadata: any };
|
||||
4
core/startos/bindings/SessionList.ts
Normal file
4
core/startos/bindings/SessionList.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Sessions } from "./Sessions";
|
||||
|
||||
export type SessionList = { current: string; sessions: Sessions };
|
||||
5
core/startos/bindings/Sessions.ts
Normal file
5
core/startos/bindings/Sessions.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Sessions = {
|
||||
[key: string]: { loggedIn: string; lastActive: string; metadata: any };
|
||||
};
|
||||
3
core/startos/bindings/SetCountryParams.ts
Normal file
3
core/startos/bindings/SetCountryParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type SetCountryParams = { country: string };
|
||||
7
core/startos/bindings/SetParams.ts
Normal file
7
core/startos/bindings/SetParams.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Duration } from "./Duration";
|
||||
|
||||
export type SetParams = {
|
||||
timeout: Duration | null;
|
||||
config: { [key: string]: any } | null;
|
||||
};
|
||||
3
core/startos/bindings/SshPubKey.ts
Normal file
3
core/startos/bindings/SshPubKey.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type SshPubKey = string;
|
||||
3
core/startos/bindings/SsidParams.ts
Normal file
3
core/startos/bindings/SsidParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type SsidParams = { ssid: string };
|
||||
3
core/startos/bindings/UiParams.ts
Normal file
3
core/startos/bindings/UiParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type UiParams = { pointer: string; value: any };
|
||||
4
core/startos/bindings/UmountParams.ts
Normal file
4
core/startos/bindings/UmountParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BackupTargetId } from "./BackupTargetId";
|
||||
|
||||
export type UmountParams = { targetId: BackupTargetId | null };
|
||||
4
core/startos/bindings/UninstallParams.ts
Normal file
4
core/startos/bindings/UninstallParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type UninstallParams = { id: PackageId };
|
||||
3
core/startos/bindings/UpdateParams.ts
Normal file
3
core/startos/bindings/UpdateParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type UpdateParams = { interface: string };
|
||||
3
core/startos/bindings/UpdateSystemParams.ts
Normal file
3
core/startos/bindings/UpdateSystemParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type UpdateSystemParams = { marketplaceUrl: string };
|
||||
9
core/startos/bindings/VerifyCifsParams.ts
Normal file
9
core/startos/bindings/VerifyCifsParams.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { EncryptedWire } from "./EncryptedWire";
|
||||
|
||||
export type VerifyCifsParams = {
|
||||
hostname: string;
|
||||
path: string;
|
||||
username: string;
|
||||
password: EncryptedWire | null;
|
||||
};
|
||||
3
core/startos/bindings/VerifyParams.ts
Normal file
3
core/startos/bindings/VerifyParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type VerifyParams = { path: string };
|
||||
3
core/startos/bindings/ZramParams.ts
Normal file
3
core/startos/bindings/ZramParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ZramParams = { enable: boolean };
|
||||
@@ -1,97 +1,152 @@
|
||||
export { ActionId } from "./ActionId.ts";
|
||||
export { ActionMetadata } from "./ActionMetadata.ts";
|
||||
export { AddressInfo } from "./AddressInfo.ts";
|
||||
export { AddSslOptions } from "./AddSslOptions.ts";
|
||||
export { Alerts } from "./Alerts.ts";
|
||||
export { Algorithm } from "./Algorithm.ts";
|
||||
export { AllowedStatuses } from "./AllowedStatuses.ts";
|
||||
export { AllPackageData } from "./AllPackageData.ts";
|
||||
export { AlpnInfo } from "./AlpnInfo.ts";
|
||||
export { BackupProgress } from "./BackupProgress.ts";
|
||||
export { BindInfo } from "./BindInfo.ts";
|
||||
export { BindOptions } from "./BindOptions.ts";
|
||||
export { BindParams } from "./BindParams.ts";
|
||||
export { Callback } from "./Callback.ts";
|
||||
export { ChrootParams } from "./ChrootParams.ts";
|
||||
export { CreateOverlayedImageParams } from "./CreateOverlayedImageParams.ts";
|
||||
export { CurrentDependencies } from "./CurrentDependencies.ts";
|
||||
export { CurrentDependencyInfo } from "./CurrentDependencyInfo.ts";
|
||||
export { DataUrl } from "./DataUrl.ts";
|
||||
export { Dependencies } from "./Dependencies.ts";
|
||||
export { DependencyConfigErrors } from "./DependencyConfigErrors.ts";
|
||||
export { DependencyKind } from "./DependencyKind.ts";
|
||||
export { DependencyRequirement } from "./DependencyRequirement.ts";
|
||||
export { DepInfo } from "./DepInfo.ts";
|
||||
export { Description } from "./Description.ts";
|
||||
export { DestroyOverlayedImageParams } from "./DestroyOverlayedImageParams.ts";
|
||||
export { Duration } from "./Duration.ts";
|
||||
export { ExecuteAction } from "./ExecuteAction.ts";
|
||||
export { ExportActionParams } from "./ExportActionParams.ts";
|
||||
export { ExportedHostInfo } from "./ExportedHostInfo.ts";
|
||||
export { ExportedHostnameInfo } from "./ExportedHostnameInfo.ts";
|
||||
export { ExportedIpHostname } from "./ExportedIpHostname.ts";
|
||||
export { ExportedOnionHostname } from "./ExportedOnionHostname.ts";
|
||||
export { ExportServiceInterfaceParams } from "./ExportServiceInterfaceParams.ts";
|
||||
export { ExposeForDependentsParams } from "./ExposeForDependentsParams.ts";
|
||||
export { FullProgress } from "./FullProgress.ts";
|
||||
export { GetHostInfoParamsKind } from "./GetHostInfoParamsKind.ts";
|
||||
export { GetHostInfoParams } from "./GetHostInfoParams.ts";
|
||||
export { GetPrimaryUrlParams } from "./GetPrimaryUrlParams.ts";
|
||||
export { GetServiceInterfaceParams } from "./GetServiceInterfaceParams.ts";
|
||||
export { GetServicePortForwardParams } from "./GetServicePortForwardParams.ts";
|
||||
export { GetSslCertificateParams } from "./GetSslCertificateParams.ts";
|
||||
export { GetSslKeyParams } from "./GetSslKeyParams.ts";
|
||||
export { GetStoreParams } from "./GetStoreParams.ts";
|
||||
export { GetSystemSmtpParams } from "./GetSystemSmtpParams.ts";
|
||||
export { Governor } from "./Governor.ts";
|
||||
export { HardwareRequirements } from "./HardwareRequirements.ts";
|
||||
export { HealthCheckId } from "./HealthCheckId.ts";
|
||||
export { HealthCheckResult } from "./HealthCheckResult.ts";
|
||||
export { HostAddress } from "./HostAddress.ts";
|
||||
export { HostId } from "./HostId.ts";
|
||||
export { HostInfo } from "./HostInfo.ts";
|
||||
export { HostKind } from "./HostKind.ts";
|
||||
export { Host } from "./Host.ts";
|
||||
export { ImageId } from "./ImageId.ts";
|
||||
export { InstalledState } from "./InstalledState.ts";
|
||||
export { InstallingInfo } from "./InstallingInfo.ts";
|
||||
export { InstallingState } from "./InstallingState.ts";
|
||||
export { IpInfo } from "./IpInfo.ts";
|
||||
export { ListServiceInterfacesParams } from "./ListServiceInterfacesParams.ts";
|
||||
export { MainStatus } from "./MainStatus.ts";
|
||||
export { Manifest } from "./Manifest.ts";
|
||||
export { MaybeUtf8String } from "./MaybeUtf8String.ts";
|
||||
export { MountParams } from "./MountParams.ts";
|
||||
export { MountTarget } from "./MountTarget.ts";
|
||||
export { NamedProgress } from "./NamedProgress.ts";
|
||||
export { PackageDataEntry } from "./PackageDataEntry.ts";
|
||||
export { PackageId } from "./PackageId.ts";
|
||||
export { PackageState } from "./PackageState.ts";
|
||||
export { ParamsMaybePackageId } from "./ParamsMaybePackageId.ts";
|
||||
export { ParamsPackageId } from "./ParamsPackageId.ts";
|
||||
export { Progress } from "./Progress.ts";
|
||||
export { Public } from "./Public.ts";
|
||||
export { RemoveActionParams } from "./RemoveActionParams.ts";
|
||||
export { RemoveAddressParams } from "./RemoveAddressParams.ts";
|
||||
export { ReverseProxyBind } from "./ReverseProxyBind.ts";
|
||||
export { ReverseProxyDestination } from "./ReverseProxyDestination.ts";
|
||||
export { ReverseProxyHttp } from "./ReverseProxyHttp.ts";
|
||||
export { ReverseProxyParams } from "./ReverseProxyParams.ts";
|
||||
export { Security } from "./Security.ts";
|
||||
export { ServerInfo } from "./ServerInfo.ts";
|
||||
export { ServerSpecs } from "./ServerSpecs.ts";
|
||||
export { ServerStatus } from "./ServerStatus.ts";
|
||||
export { ServiceInterfaceId } from "./ServiceInterfaceId.ts";
|
||||
export { ServiceInterface } from "./ServiceInterface.ts";
|
||||
export { ServiceInterfaceType } from "./ServiceInterfaceType.ts";
|
||||
export { ServiceInterfaceWithHostInfo } from "./ServiceInterfaceWithHostInfo.ts";
|
||||
export { SetConfigured } from "./SetConfigured.ts";
|
||||
export { SetDependenciesParams } from "./SetDependenciesParams.ts";
|
||||
export { SetHealth } from "./SetHealth.ts";
|
||||
export { SetMainStatus } from "./SetMainStatus.ts";
|
||||
export { SetStoreParams } from "./SetStoreParams.ts";
|
||||
export { Status } from "./Status.ts";
|
||||
export { UpdateProgress } from "./UpdateProgress.ts";
|
||||
export { UpdatingState } from "./UpdatingState.ts";
|
||||
export { VolumeId } from "./VolumeId.ts";
|
||||
export { WifiInfo } from "./WifiInfo.ts";
|
||||
export { ActionId } from "./ActionId";
|
||||
export { ActionMetadata } from "./ActionMetadata";
|
||||
export { ActionParams } from "./ActionParams";
|
||||
export { AddImageParams } from "./AddImageParams";
|
||||
export { AddParams } from "./AddParams";
|
||||
export { AddressInfo } from "./AddressInfo";
|
||||
export { AddSslOptions } from "./AddSslOptions";
|
||||
export { Alerts } from "./Alerts";
|
||||
export { Algorithm } from "./Algorithm";
|
||||
export { AllowedStatuses } from "./AllowedStatuses";
|
||||
export { AllPackageData } from "./AllPackageData";
|
||||
export { AlpnInfo } from "./AlpnInfo";
|
||||
export { ApplyParams } from "./ApplyParams";
|
||||
export { AttachParams } from "./AttachParams";
|
||||
export { BackupParams } from "./BackupParams";
|
||||
export { BackupProgress } from "./BackupProgress";
|
||||
export { BackupTargetFS } from "./BackupTargetFS";
|
||||
export { BackupTargetId } from "./BackupTargetId";
|
||||
export { BindInfo } from "./BindInfo";
|
||||
export { BindOptions } from "./BindOptions";
|
||||
export { BindParams } from "./BindParams";
|
||||
export { BlockDev } from "./BlockDev";
|
||||
export { Callback } from "./Callback";
|
||||
export { ChrootParams } from "./ChrootParams";
|
||||
export { Cifs } from "./Cifs";
|
||||
export { ConfigParams } from "./ConfigParams";
|
||||
export { ConfigureParams } from "./ConfigureParams";
|
||||
export { ConnectParams } from "./ConnectParams";
|
||||
export { ControlParams } from "./ControlParams";
|
||||
export { CreateOverlayedImageParams } from "./CreateOverlayedImageParams";
|
||||
export { CreateParams } from "./CreateParams";
|
||||
export { CurrentDependencies } from "./CurrentDependencies";
|
||||
export { CurrentDependencyInfo } from "./CurrentDependencyInfo";
|
||||
export { DataUrl } from "./DataUrl";
|
||||
export { DeleteBeforeParams } from "./DeleteBeforeParams";
|
||||
export { DeleteParams } from "./DeleteParams";
|
||||
export { Dependencies } from "./Dependencies";
|
||||
export { DependencyConfigErrors } from "./DependencyConfigErrors";
|
||||
export { DependencyKind } from "./DependencyKind";
|
||||
export { DependencyRequirement } from "./DependencyRequirement";
|
||||
export { DepInfo } from "./DepInfo";
|
||||
export { Description } from "./Description";
|
||||
export { DestroyOverlayedImageParams } from "./DestroyOverlayedImageParams";
|
||||
export { DumpParams } from "./DumpParams";
|
||||
export { Duration } from "./Duration";
|
||||
export { EchoParams } from "./EchoParams";
|
||||
export { EditManifestParams } from "./EditManifestParams";
|
||||
export { EncryptedWire } from "./EncryptedWire";
|
||||
export { ExecuteAction } from "./ExecuteAction";
|
||||
export { ExecuteParams } from "./ExecuteParams";
|
||||
export { ExportActionParams } from "./ExportActionParams";
|
||||
export { ExportedHostInfo } from "./ExportedHostInfo";
|
||||
export { ExportedHostnameInfo } from "./ExportedHostnameInfo";
|
||||
export { ExportedIpHostname } from "./ExportedIpHostname";
|
||||
export { ExportedOnionHostname } from "./ExportedOnionHostname";
|
||||
export { ExportServiceInterfaceParams } from "./ExportServiceInterfaceParams";
|
||||
export { ExposeForDependentsParams } from "./ExposeForDependentsParams";
|
||||
export { FullProgress } from "./FullProgress";
|
||||
export { GetHostInfoParamsKind } from "./GetHostInfoParamsKind";
|
||||
export { GetHostInfoParams } from "./GetHostInfoParams";
|
||||
export { GetParams } from "./GetParams";
|
||||
export { GetPrimaryUrlParams } from "./GetPrimaryUrlParams";
|
||||
export { GetServiceInterfaceParams } from "./GetServiceInterfaceParams";
|
||||
export { GetServicePortForwardParams } from "./GetServicePortForwardParams";
|
||||
export { GetSslCertificateParams } from "./GetSslCertificateParams";
|
||||
export { GetSslKeyParams } from "./GetSslKeyParams";
|
||||
export { GetStoreParams } from "./GetStoreParams";
|
||||
export { GetSystemSmtpParams } from "./GetSystemSmtpParams";
|
||||
export { GovernorParams } from "./GovernorParams";
|
||||
export { Governor } from "./Governor";
|
||||
export { HardwareRequirements } from "./HardwareRequirements";
|
||||
export { HealthCheckId } from "./HealthCheckId";
|
||||
export { HealthCheckResult } from "./HealthCheckResult";
|
||||
export { HostAddress } from "./HostAddress";
|
||||
export { HostId } from "./HostId";
|
||||
export { HostInfo } from "./HostInfo";
|
||||
export { HostKind } from "./HostKind";
|
||||
export { Host } from "./Host";
|
||||
export { ImageId } from "./ImageId";
|
||||
export { InfoParams } from "./InfoParams";
|
||||
export { InstalledState } from "./InstalledState";
|
||||
export { InstallingInfo } from "./InstallingInfo";
|
||||
export { InstallingState } from "./InstallingState";
|
||||
export { InstallParams } from "./InstallParams";
|
||||
export { IpInfo } from "./IpInfo";
|
||||
export { KernelLogsParams } from "./KernelLogsParams";
|
||||
export { KillParams } from "./KillParams";
|
||||
export { ListParams } from "./ListParams";
|
||||
export { ListServiceInterfacesParams } from "./ListServiceInterfacesParams";
|
||||
export { LoginParams } from "./LoginParams";
|
||||
export { LogoutParams } from "./LogoutParams";
|
||||
export { LogsParams } from "./LogsParams";
|
||||
export { MainStatus } from "./MainStatus";
|
||||
export { Manifest } from "./Manifest";
|
||||
export { MaybeUtf8String } from "./MaybeUtf8String";
|
||||
export { MinMax } from "./MinMax";
|
||||
export { MountParams } from "./MountParams";
|
||||
export { MountTarget } from "./MountTarget";
|
||||
export { NamedProgress } from "./NamedProgress";
|
||||
export { NotificationLevel } from "./NotificationLevel";
|
||||
export { PackageDataEntry } from "./PackageDataEntry";
|
||||
export { PackageId } from "./PackageId";
|
||||
export { PackageState } from "./PackageState";
|
||||
export { ParamsMaybePackageId } from "./ParamsMaybePackageId";
|
||||
export { ParamsPackageId } from "./ParamsPackageId";
|
||||
export { PasswordType } from "./PasswordType";
|
||||
export { Progress } from "./Progress";
|
||||
export { Public } from "./Public";
|
||||
export { RecoverySource } from "./RecoverySource";
|
||||
export { RemoveActionParams } from "./RemoveActionParams";
|
||||
export { RemoveAddressParams } from "./RemoveAddressParams";
|
||||
export { RemoveParams } from "./RemoveParams";
|
||||
export { ResetParams } from "./ResetParams";
|
||||
export { ResetPasswordParams } from "./ResetPasswordParams";
|
||||
export { RestorePackageParams } from "./RestorePackageParams";
|
||||
export { ReverseProxyBind } from "./ReverseProxyBind";
|
||||
export { ReverseProxyDestination } from "./ReverseProxyDestination";
|
||||
export { ReverseProxyHttp } from "./ReverseProxyHttp";
|
||||
export { ReverseProxyParams } from "./ReverseProxyParams";
|
||||
export { Security } from "./Security";
|
||||
export { ServerInfo } from "./ServerInfo";
|
||||
export { ServerSpecs } from "./ServerSpecs";
|
||||
export { ServerStatus } from "./ServerStatus";
|
||||
export { ServiceInterfaceId } from "./ServiceInterfaceId";
|
||||
export { ServiceInterface } from "./ServiceInterface";
|
||||
export { ServiceInterfaceType } from "./ServiceInterfaceType";
|
||||
export { ServiceInterfaceWithHostInfo } from "./ServiceInterfaceWithHostInfo";
|
||||
export { SessionList } from "./SessionList";
|
||||
export { Sessions } from "./Sessions";
|
||||
export { Session } from "./Session";
|
||||
export { SetConfigured } from "./SetConfigured";
|
||||
export { SetCountryParams } from "./SetCountryParams";
|
||||
export { SetDependenciesParams } from "./SetDependenciesParams";
|
||||
export { SetHealth } from "./SetHealth";
|
||||
export { SetMainStatus } from "./SetMainStatus";
|
||||
export { SetParams } from "./SetParams";
|
||||
export { SetStoreParams } from "./SetStoreParams";
|
||||
export { SshPubKey } from "./SshPubKey";
|
||||
export { SsidParams } from "./SsidParams";
|
||||
export { Status } from "./Status";
|
||||
export { UiParams } from "./UiParams";
|
||||
export { UmountParams } from "./UmountParams";
|
||||
export { UninstallParams } from "./UninstallParams";
|
||||
export { UpdateParams } from "./UpdateParams";
|
||||
export { UpdateProgress } from "./UpdateProgress";
|
||||
export { UpdateSystemParams } from "./UpdateSystemParams";
|
||||
export { UpdatingState } from "./UpdatingState";
|
||||
export { VerifyCifsParams } from "./VerifyCifsParams";
|
||||
export { VerifyParams } from "./VerifyParams";
|
||||
export { VolumeId } from "./VolumeId";
|
||||
export { WifiInfo } from "./WifiInfo";
|
||||
export { ZramParams } from "./ZramParams";
|
||||
|
||||
Reference in New Issue
Block a user