import { ManifestVersion, SDKManifest } from "./manifest/ManifestTypes" import { RequiredDefault, Value } from "./config/builder/value" import { Config, ExtractConfigType, LazyBuild } from "./config/builder/config" import { DefaultString, ListValueSpecText, Pattern, RandomString, UniqueBy, ValueSpecDatetime, ValueSpecText, } from "./config/configTypes" import { Variants } from "./config/builder/variants" import { CreatedAction, createAction } from "./actions/createAction" import { ActionMetadata, Effects, ActionResult, BackupOptions, DeepPartial, MaybePromise, } from "./types" import * as patterns from "./util/patterns" import { Utils } from "./util/utils" import { DependencyConfig } from "./dependencyConfig/DependencyConfig" import { BackupSet, Backups } from "./backup/Backups" import { smtpConfig } from "./config/configConstants" import { Daemons } from "./mainFn/Daemons" import { healthCheck } from "./health/HealthCheck" import { checkPortListening } from "./health/checkFns/checkPortListening" import { checkWebUrl, runHealthScript } from "./health/checkFns" import { List } from "./config/builder/list" import { Migration } from "./inits/migrations/Migration" import { Install, InstallFn } from "./inits/setupInstall" import { setupActions } from "./actions/setupActions" import { setupDependencyConfig } from "./dependencyConfig/setupDependencyConfig" import { SetupBackupsParams, setupBackups } from "./backup/setupBackups" import { setupInit } from "./inits/setupInit" import { EnsureUniqueId, Migrations, setupMigrations, } from "./inits/migrations/setupMigrations" import { Uninstall, UninstallFn, setupUninstall } from "./inits/setupUninstall" import { setupMain } from "./mainFn" import { defaultTrigger } from "./trigger/defaultTrigger" import { changeOnFirstSuccess, cooldownTrigger } from "./trigger" import setupConfig, { Read, Save } from "./config/setupConfig" import { setupDependencyMounts } from "./dependency/setupDependencyMounts" import { InterfacesReceipt, SetInterfaces, setupInterfaces, } from "./interfaces/setupInterfaces" import { successFailure } from "./trigger/successFailure" import { SetupExports } from "./inits/setupExports" // prettier-ignore type AnyNeverCond = T extends [] ? Else : T extends [never, ...Array] ? Then : T extends [any, ...infer U] ? AnyNeverCond : never export class StartSdk { private constructor(readonly manifest: Manifest) {} static of() { return new StartSdk(null as never) } withManifest(manifest: Manifest) { return new StartSdk(manifest) } withStore>() { return new StartSdk(this.manifest) } build(isReady: AnyNeverCond<[Manifest, Store], "Build not ready", true>) { return { configConstants: { smtpConfig }, createAction: < ConfigType extends | Record | Config | Config, Type extends Record = ExtractConfigType, >( metaData: Omit & { input: Config | Config }, fn: (options: { effects: Effects utils: Utils input: Type }) => Promise, ) => { const { input, ...rest } = metaData return createAction(rest, fn, input) }, createDynamicAction: < ConfigType extends | Record | Config | Config, Type extends Record = ExtractConfigType, >( metaData: (options: { effects: Effects utils: Utils }) => MaybePromise>, fn: (options: { effects: Effects utils: Utils input: Type }) => Promise, input: Config | Config, ) => { return createAction(metaData, fn, input) }, HealthCheck: { of: healthCheck, }, healthCheck: { checkPortListening, checkWebUrl, runHealthScript, }, patterns, setupActions: (...createdActions: CreatedAction[]) => setupActions(...createdActions), setupBackups: (...args: SetupBackupsParams) => setupBackups(...args), setupConfig: < ConfigType extends Config | Config, Type extends Record = ExtractConfigType, >( spec: ConfigType, write: Save, read: Read, ) => setupConfig(spec, write, read), setupConfigRead: < ConfigSpec extends | Config, any> | Config, never>, >( _configSpec: ConfigSpec, fn: Read, ) => fn, setupConfigSave: < ConfigSpec extends | Config, any> | Config, never>, >( _configSpec: ConfigSpec, fn: Save, ) => fn, setupDependencyConfig: >( config: Config | Config, autoConfigs: { [K in keyof Manifest["dependencies"]]: DependencyConfig< Store, Input, any > }, ) => setupDependencyConfig(config, autoConfigs), setupExports: (fn: SetupExports) => fn, setupDependencyMounts, setupInit: ( migrations: Migrations, install: Install, uninstall: Uninstall, setInterfaces: SetInterfaces, setupExports: SetupExports, ) => setupInit( migrations, install, uninstall, setInterfaces, setupExports, ), setupInstall: (fn: InstallFn) => Install.of(fn), setupInterfaces: < ConfigInput extends Record, Output extends InterfacesReceipt, >( config: Config, fn: SetInterfaces, ) => setupInterfaces(config, fn), setupMain: ( fn: (o: { effects: Effects started(onTerm: () => void): null utils: Utils }) => Promise>, ) => setupMain(fn), setupMigrations: >>( ...migrations: EnsureUniqueId ) => setupMigrations(this.manifest, ...migrations), setupUninstall: (fn: UninstallFn) => setupUninstall(fn), trigger: { defaultTrigger, cooldownTrigger, changeOnFirstSuccess, successFailure, }, Backups: { volumes: (...volumeNames: Array) => Backups.volumes(...volumeNames), addSets: ( ...options: BackupSet[] ) => Backups.addSets(...options), withOptions: (options?: Partial) => Backups.with_options(options), }, Config: { of: < Spec extends Record | Value>, >( spec: Spec, ) => Config.of(spec), }, Daemons: { of: Daemons.of }, DependencyConfig: { of< LocalConfig extends Record, RemoteConfig extends Record, >({ localConfig, remoteConfig, dependencyConfig, }: { localConfig: Config | Config remoteConfig: Config | Config dependencyConfig: (options: { effects: Effects localConfig: LocalConfig remoteConfig: RemoteConfig utils: Utils }) => Promise> }) { return new DependencyConfig( dependencyConfig, ) }, }, List: { text: List.text, number: List.number, obj: >( a: { name: string description?: string | null warning?: string | null /** Default [] */ default?: [] minLength?: number | null maxLength?: number | null }, aSpec: { spec: Config displayAs?: null | string uniqueBy?: null | UniqueBy }, ) => List.obj(a, aSpec), dynamicText: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null /** Default = [] */ default?: string[] minLength?: number | null maxLength?: number | null disabled?: false | string generate?: null | RandomString spec: { /** Default = false */ masked?: boolean placeholder?: string | null minLength?: number | null maxLength?: number | null patterns: Pattern[] /** Default = "text" */ inputmode?: ListValueSpecText["inputmode"] } } >, ) => List.dynamicText(getA), dynamicNumber: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null /** Default = [] */ default?: string[] minLength?: number | null maxLength?: number | null disabled?: false | string spec: { integer: boolean min?: number | null max?: number | null step?: number | null units?: string | null placeholder?: string | null } } >, ) => List.dynamicNumber(getA), }, Migration: { of: (options: { version: Version up: (opts: { effects: Effects; utils: Utils }) => Promise down: (opts: { effects: Effects utils: Utils }) => Promise }) => Migration.of(options), }, Value: { toggle: Value.toggle, text: Value.text, textarea: Value.textarea, number: Value.number, color: Value.color, datetime: Value.datetime, select: Value.select, multiselect: Value.multiselect, object: Value.object, union: Value.union, list: Value.list, dynamicToggle: ( a: LazyBuild< Store, { name: string description?: string | null warning?: string | null default: boolean disabled?: false | string } >, ) => Value.dynamicToggle(a), dynamicText: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null required: RequiredDefault /** Default = false */ masked?: boolean placeholder?: string | null minLength?: number | null maxLength?: number | null patterns?: Pattern[] /** Default = 'text' */ inputmode?: ValueSpecText["inputmode"] generate?: null | RandomString } >, ) => Value.dynamicText(getA), dynamicTextarea: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null required: boolean minLength?: number | null maxLength?: number | null placeholder?: string | null disabled?: false | string generate?: null | RandomString } >, ) => Value.dynamicTextarea(getA), dynamicNumber: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null required: RequiredDefault min?: number | null max?: number | null /** Default = '1' */ step?: number | null integer: boolean units?: string | null placeholder?: string | null disabled?: false | string } >, ) => Value.dynamicNumber(getA), dynamicColor: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null required: RequiredDefault disabled?: false | string } >, ) => Value.dynamicColor(getA), dynamicDatetime: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null required: RequiredDefault /** Default = 'datetime-local' */ inputmode?: ValueSpecDatetime["inputmode"] min?: string | null max?: string | null disabled?: false | string } >, ) => Value.dynamicDatetime(getA), dynamicSelect: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null required: RequiredDefault values: Record disabled?: false | string } >, ) => Value.dynamicSelect(getA), dynamicMultiselect: ( getA: LazyBuild< Store, { name: string description?: string | null warning?: string | null default: string[] values: Record minLength?: number | null maxLength?: number | null disabled?: false | string } >, ) => Value.dynamicMultiselect(getA), filteredUnion: < Required extends RequiredDefault, Type extends Record, >( getDisabledFn: LazyBuild, a: { name: string description?: string | null warning?: string | null required: Required }, aVariants: Variants | Variants, ) => Value.filteredUnion( getDisabledFn, a, aVariants, ), dynamicUnion: < Required extends RequiredDefault, Type extends Record, >( getA: LazyBuild< Store, { disabled: string[] | false | string name: string description?: string | null warning?: string | null required: Required } >, aVariants: Variants | Variants, ) => Value.dynamicUnion(getA, aVariants), }, Variants: { of: < VariantValues extends { [K in string]: { name: string spec: Config } }, >( a: VariantValues, ) => Variants.of(a), }, } } }