@voiceflow/alexa-types
Version:
Alexa service types
22 lines (21 loc) • 737 B
JavaScript
import { Locale } from '../constants/index.js';
export const defaultPublishing = ({ invocationName = '', hasPurchase = false, forExport = true, hasAds = false, forChildren = false, personal = false, smallIcon = '', largeIcon = '', invocations = [], summary = '', description = '', instructions = '', privacyPolicy = '', termsAndConditions = '', keywords = '', category = '', locales = [Locale.EN_US], updatesDescription, } = {}) => ({
summary,
invocations,
smallIcon,
largeIcon,
hasAds,
personal,
forExport,
invocationName,
hasPurchase,
forChildren,
description,
instructions,
privacyPolicy,
termsAndConditions,
keywords,
category,
locales,
updatesDescription,
});