/* tslint:disable */ /** * This file was automatically generated by json schema to dts. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run the script to regenerate this file. */ /** * Initializes an empty workspace and adds the necessary dependencies required by an Elastic Path Commerce Cloud Storefront. */ export interface ElasticPathCommerceCloudStorefrontWorkspaceOptionsSchema { /** * The name of the workspace. */ name: string; /** * The client id value for an Elastic Path Commerce Cloud store. */ epccClientId: string; /** * The client secret value for an Elastic Path Commerce Cloud store. */ epccClientSecret: string; /** * The geographical endpoint url for an Elastic Path Commerce Cloud store. */ epccEndpointUrl: string; /** * The prefix used for the cookie name of the implicit token */ cookiePrefixKey?: string; /** * Create a workspace with testing framework. */ tests?: boolean; }