mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 04:01:58 +00:00
chore: Add some of the fixes to make the build work !!!
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
// 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 interface CreateOverlayedImageParams { imageId: ImageId, }
|
||||
export interface CreateOverlayedImageParams { imageId: string, }
|
||||
@@ -1,4 +1,3 @@
|
||||
// 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 interface DestroyOverlayedImageParams { imageId: ImageId, guid: string, }
|
||||
export interface DestroyOverlayedImageParams { imageId: string , guid: string, }
|
||||
@@ -1,5 +1,3 @@
|
||||
// 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 interface ExecuteAction { serviceId: PackageId | null, actionId: ActionId, input: any, }
|
||||
export interface ExecuteAction { serviceId: string | null, actionId: string, input: any, }
|
||||
3
core/startos/bindings/ExposedUI.ts
Normal file
3
core/startos/bindings/ExposedUI.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 interface ExposedUI { path: string, title: string, description: string | null, masked: boolean | null, copyable: boolean | null, qr: boolean | null, }
|
||||
@@ -1,5 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Callback } from "./Callback";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export interface GetServiceInterfaceParams { packageId: PackageId | null, serviceInterfaceId: string, callback: Callback, }
|
||||
export interface GetServiceInterfaceParams { packageId: string | null, serviceInterfaceId: string, callback: Callback, }
|
||||
@@ -1,4 +1,3 @@
|
||||
// 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 interface GetStoreParams { packageId: PackageId | null, path: string, }
|
||||
export interface GetStoreParams { packageId: string | null, path: string, }
|
||||
3
core/startos/bindings/HealthCheckString.ts
Normal file
3
core/startos/bindings/HealthCheckString.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 HealthCheckString = "passing" | "disabled" | "starting" | "warning" | "failure";
|
||||
@@ -1,4 +1,3 @@
|
||||
// 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 interface ParamsMaybePackageId { packageId: PackageId | null, }
|
||||
export interface ParamsMaybePackageId { packageId: string | null, }
|
||||
@@ -1,4 +1,3 @@
|
||||
// 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 interface ParamsPackageId { packageId: PackageId, }
|
||||
export interface ParamsPackageId { packageId: string, }
|
||||
@@ -1,5 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { HealthCheckId } from "./HealthCheckId";
|
||||
import type { HealthCheckString } from "./HealthCheckString";
|
||||
|
||||
export interface SetHealth { name: HealthCheckId, status: HealthCheckString, message: string | null, }
|
||||
export interface SetHealth { name: string, status: HealthCheckString, message: string | null, }
|
||||
Reference in New Issue
Block a user