UNPKG

@becomes/cms-cloud-client

Version:

SDK for accessing BCMS Cloud API

16 lines (15 loc) 545 B
import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types'; import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface InstanceDomainSSL { key: string; crt: string; } export declare const InstanceDomainSSLSchema: ObjectSchema; export interface InstanceDomain extends FSDBEntity { instanceId: string; name: string; ssl?: InstanceDomainSSL; proxyConfig?: string; } export type InstanceDomainProtected = Omit<InstanceDomain, 'ssl'>; export declare const InstanceDomainSchema: ObjectSchema;