@voiceflow/google-types
Version:
Google service types
15 lines (14 loc) • 508 B
JavaScript
import { defaultSharedBasePublishing } from './publishing.js';
export * from '../prototype.js';
export * from './publishing.js';
export var Stage;
(function (Stage) {
Stage["DEV"] = "DEV";
Stage["LIVE"] = "LIVE";
Stage["REVIEW"] = "REVIEW";
})(Stage || (Stage = {}));
export const defaultSharedBasePlatformData = ({ status: { stage = Stage.DEV } = { stage: Stage.DEV }, publishing, }) => ({
status: { stage },
publishing: defaultSharedBasePublishing(publishing),
modelVersion: 1,
});