Skip to content

PURISTA API


PURISTA API / @purista/core / exportScheduleManifest

Function: exportScheduleManifest()

exportScheduleManifest(options): Promise<{ schedules: JsonRecord[]; title: string | undefined; version: string; }>

Defined in: helper/enterpriseInterop.ts:336

Export provider-neutral schedule metadata from service definitions.

Parameters

options

ExportScheduleManifestOptions

Returns

Promise<{ schedules: JsonRecord[]; title: string | undefined; version: string; }>

Example

ts
const manifest = await exportScheduleManifest({
  title: 'Billing schedules',
  version: '1.0.0',
  services: exportedDefinitions,
})