OBJECT

ProjectEditorConfig

link GraphQL Schema definition

1type ProjectEditorConfig {
2
3# Allowed extensions for entity types
4allowedExtensions: AllowedExtensions!
5
6# Allowed MIME types for source files
7allowedSourceFileMimeTypes: [String!]
8
9# Maximum Project Canvas width measured in pixels
10canvasMaxWidth: Int!
11
12# Padding around project canvas measured in pixels
13canvasPadding: Int!
14
15# Endpoint to transform embed code
16embedTransformsEndpoint: String!
17
18# Font configuration
19fontConfig: FontConfig!
20
21# Flag indicating if CCV is disabled
22hasCCV: Boolean!
23
24# Flag indicating if lightroom is disabled
25hasLightroom: Boolean!
26
27# Lightroom endpoint
28lightroomEndpoint: String!
29
30# Allowed size limits for entity types
31sizeLimits: SizeLimits!
32
33# Source File upload limit
34sourceFileSizeLimit: Int!
35
36# Substance upload endpoint
37substanceUploadEndpoint: String!
38
39# Localized translations for threeD asset types
40threeDAssetTypes: ThreeDAssetTypes!
41
42# Mapping for threeD file extensions and threeD asset types
43threeDFileExtensionToAssetTypeMap: ThreeDFileExtensionToAssetTypeMap!
44
45}

link Required by