import { AccessControlEntry } from './accesscontrolentry.entity'; import { ContentCollection } from './contentcollection.entity'; import { HorselessUri } from './horselessuri.entity'; import { Principal } from './principal.entity'; import { Taxon } from './taxon.entity'; import { Tenant } from './tenant.entity'; export interface Publication { Id: string; DisplayName?: string; ObjectId?: string; IsSoftDeleted?: boolean; CreatedAt?: Date; PublishAt?: Date; UnPublishAt?: Date; IsPublished?: boolean; PublishedURL?: string; PreviewURL?: string; LiquidTemplate?: string; LiquidEditTemplate?: string; Timestamp: ArrayBuffer; UpdatedAt?: Date; DictionaryKey?: string; AreaName?: string; ControllerName?: string; ControllerAction?: string; UrlPathRoot?: string; DisplayTemplateName?: string; EditTemplateName?: string; PostgresRowVersion: number; ODataEntitySetName?: string; ODataPrefix?: string; IngressAPIHttpRoute?: string; IngressParentHorselessUri?: string; EntityUriId?: string; Description?: string; DeploymentPackageRootNamespace?: string; DeploymentPackageVersion?: string; AccessControlEntries?: AccessControlEntry[]; Owners?: Principal[]; ContentCollections?: ContentCollection[]; Taxons?: Taxon[]; Tenants?: Tenant[]; EntityUri?: HorselessUri; }