From 36f8896884abe6328924a719f124586bb1386790 Mon Sep 17 00:00:00 2001 From: GaurishN Date: Mon, 28 Oct 2024 10:51:19 +0530 Subject: [PATCH 1/5] migration refactor constants and pascal cases --- .gitignore | 1 + api/.gitignore | 1 + api/src/constants/index.ts | 45 + api/src/models/FieldMapper.ts | 20 +- api/src/services/contentMapper.service.ts | 16 +- api/src/services/runCli.service.ts | 9 +- api/src/services/sitecore.service.ts | 38 +- api/src/utils/content-type-creator.utils.ts | 34 +- api/src/utils/entries-field-creator.utils.ts | 14 +- api/src/utils/test-folder-creator.utils.ts | 34 +- .../advanceProperties.interface.ts | 24 +- ui/src/components/AdvancePropertise/index.tsx | 124 +- .../ContentMapper/contentMapper.interface.ts | 24 +- ui/src/components/ContentMapper/dummy.json | 2 +- ui/src/components/ContentMapper/index.tsx | 68 +- .../Migrations/NewMigration/DummyJSON.json | 1024 ++++++++--------- ui/src/components/SchemaModal/index.tsx | 34 +- upload-api/migration-sitecore/.gitignore | 1 + .../migration-sitecore/constants/index.js | 47 + .../migration-sitecore/libs/configuration.js | 19 +- .../migration-sitecore/libs/contenttypes.js | 71 +- upload-api/migration-sitecore/libs/convert.js | 5 +- .../migration-sitecore/libs/reference.js | 53 +- upload-api/src/constants/index.ts | 45 + upload-api/src/controllers/sitecore/index.ts | 12 +- 25 files changed, 983 insertions(+), 782 deletions(-) create mode 100644 upload-api/migration-sitecore/constants/index.js diff --git a/.gitignore b/.gitignore index 99eb22556..7b72b8c1e 100644 --- a/.gitignore +++ b/.gitignore @@ -356,4 +356,5 @@ upload-api/build package-lock.json ui/.env upload-api/sitecoreMigrationData +upload-api/cmsMigrationData upload-api/extracted_files diff --git a/api/.gitignore b/api/.gitignore index e3a5464ee..9d9d22915 100644 --- a/api/.gitignore +++ b/api/.gitignore @@ -362,4 +362,5 @@ package-lock.json database/ /sitecoreMigrationData +/cmsMigrationData /migration-data \ No newline at end of file diff --git a/api/src/constants/index.ts b/api/src/constants/index.ts index fe978ac3e..1a31e346b 100644 --- a/api/src/constants/index.ts +++ b/api/src/constants/index.ts @@ -162,3 +162,48 @@ export const LOCALE_MAPPER: any = { }, 'fr': 'fr-fr' } + +export const MIGRATION_DATA_CONFIG = { + DATA :"cmsMigrationData", + + BACKUP_DATA: "migration-data", + BACKUP_LOG_DIR: "logs", + BACKUP_FOLDER_NAME: "import", + BACKUP_FILE_NAME: "success.log", + + LOCALE_DIR_NAME : "locale", + LOCALE_FILE_NAME : "locales.json", + LOCALE_MASTER_LOCALE : "master-locale.json", + LOCALE_CF_LANGUAGE : "language.json", + + WEBHOOKS_DIR_NAME : "webhooks", + WEBHOOKS_FILE_NAME : "webhooks.json", + + ENVIRONMENTS_DIR_NAME : "environments", + ENVIRONMENTS_FILE_NAME : "environments.json", + + CONTENT_TYPES_DIR_NAME : "content_types", + CONTENT_TYPES_FILE_NAME : "contenttype.json", + CONTENT_TYPES_MASTER_FILE : "contenttypes.json", + CONTENT_TYPES_SCHEMA_FILE : "schema.json", + + REFERENCES_DIR_NAME : "reference", + REFERENCES_FILE_NAME : "reference.json", + + RTE_REFERENCES_DIR_NAME : "rteReference", + RTE_REFERENCES_FILE_NAME : "rteReference.json", + + ASSETS_DIR_NAME : "assets", + ASSETS_FILE_NAME : "assets.json", + ASSETS_SCHEMA_FILE : "index.json", + ASSETS_FAILED_FILE : "cs_failed.json", + ASSETS_METADATA_FILE :"metadata.json", + + ENTRIES_DIR_NAME : "entries", + ENTRIES_MASTER_FILE : "index.json", + + GLOBAL_FIELDS_DIR_NAME : "global_fields", + GLOBAL_FIELDS_FILE_NAME : "globalfields.json", + + EXPORT_INFO_FILE: "export-info.json" +} \ No newline at end of file diff --git a/api/src/models/FieldMapper.ts b/api/src/models/FieldMapper.ts index 4f93770a4..5abd1ae11 100644 --- a/api/src/models/FieldMapper.ts +++ b/api/src/models/FieldMapper.ts @@ -7,15 +7,15 @@ import path from "path"; */ interface Advanced { validationRegex: string; - Mandatory: boolean; - Multiple: boolean; - Unique: boolean; - NonLocalizable: boolean; - EmbedObject: boolean; - EmbedObjects: any; - MinChars: string; - MaxChars: number; - Default_value: string; + mandatory: boolean; + multiple: boolean; + unique: boolean; + nonLocalizable: boolean; + embedObject: boolean; + embedObjects: any; + minChars: string; + maxChars: number; + default_value: string; options: any[]; } @@ -31,7 +31,7 @@ interface FieldMapper { otherCmsType: string; contentstackField: string; contentstackFieldUid: string; - ContentstackFieldType: string; + contentstackFieldType: string; isDeleted: boolean; backupFieldType: string; refrenceTo: { uid: string; title: string }; diff --git a/api/src/services/contentMapper.service.ts b/api/src/services/contentMapper.service.ts index 7d6ea6c45..f94653462 100644 --- a/api/src/services/contentMapper.service.ts +++ b/api/src/services/contentMapper.service.ts @@ -402,9 +402,9 @@ const updateContentType = async (req: Request) => { if (fieldMapping) { for (const field of fieldMapping) { if ( - !field.ContentstackFieldType || - field.ContentstackFieldType === "" || - field.ContentstackFieldType === "No matches found" || + !field.contentstackFieldType || + field.contentstackFieldType === "" || + field.contentstackFieldType === "No matches found" || field.contentstackFieldUid === "" ) { logger.error( @@ -412,7 +412,7 @@ const updateContentType = async (req: Request) => { srcFun, `${VALIDATION_ERRORS.STRING_REQUIRED.replace( "$", - "ContentstackFieldType or contentstackFieldUid" + "contentstackFieldType or contentstackFieldUid" )}` ) ); @@ -424,7 +424,7 @@ const updateContentType = async (req: Request) => { status: 400, message: `${VALIDATION_ERRORS.STRING_REQUIRED.replace( "$", - "ContentstackFieldType or contentstackFieldUid" + "contentstackFieldType or contentstackFieldUid" )}`, }; } @@ -471,7 +471,7 @@ const updateContentType = async (req: Request) => { const fieldIndex = FieldMapperModel.data.field_mapper.findIndex( (f: any) => f?.id === field?.id ); - if (fieldIndex > -1 && field?.ContentstackFieldType !== "") { + if (fieldIndex > -1 && field?.contentstackFieldType !== "") { FieldMapperModel.update((data: any) => { data.field_mapper[fieldIndex] = field; //data.field_mapper[fieldIndex].isDeleted = false; @@ -594,7 +594,7 @@ const resetToInitialMapping = async (req: Request) => { ...field, contentstackField: "", contentstackFieldUid: "", - ContentstackFieldType: field.backupFieldType, + contentstackFieldType: field.backupFieldType, }; }); } @@ -692,7 +692,7 @@ const resetAllContentTypesMapping = async (projectId: string) => { ...fieldData, contentstackField: "", contentstackFieldUid: "", - ContentstackFieldType: fieldData.backupFieldType, + contentstackFieldType: fieldData.backupFieldType, }; }); } diff --git a/api/src/services/runCli.service.ts b/api/src/services/runCli.service.ts index 61cd82220..f47c14066 100644 --- a/api/src/services/runCli.service.ts +++ b/api/src/services/runCli.service.ts @@ -3,7 +3,7 @@ import fs from 'fs'; import shell from 'shelljs' import { v4 } from "uuid"; import { copyDirectory, createDirectoryAndFile } from '../utils/index.js' -import { CS_REGIONS } from "../constants/index.js"; +import { CS_REGIONS, MIGRATION_DATA_CONFIG } from "../constants/index.js"; import ProjectModelLowdb from "../models/project-lowdb.js"; import AuthenticationModel from "../models/authentication.js"; import watchLogs from "../utils/watch.utils.js"; @@ -33,10 +33,11 @@ export const runCli = async (rg: string, user_id: string, stack_uid: any, projec .find({ region: regionPresent, user_id }) .value(); if (userData?.authtoken && stack_uid) { - const sourcePath = path.join(process.cwd(), 'sitecoreMigrationData', stack_uid); - const backupPath = path.join(process.cwd(), 'migration-data', `${stack_uid}_${v4().slice(0, 4)}`); + const { BACKUP_DATA, BACKUP_LOG_DIR, BACKUP_FOLDER_NAME, BACKUP_FILE_NAME} = MIGRATION_DATA_CONFIG; + const sourcePath = path.join(process.cwd(), MIGRATION_DATA_CONFIG.DATA, stack_uid); + const backupPath = path.join(process.cwd(), BACKUP_DATA, `${stack_uid}_${v4().slice(0, 4)}`); await copyDirectory(sourcePath, backupPath); - const loggerPath = path.join(backupPath, 'logs', 'import', 'success.log'); + const loggerPath = path.join(backupPath, BACKUP_LOG_DIR, BACKUP_FOLDER_NAME, BACKUP_FILE_NAME); await createDirectoryAndFile(loggerPath, transformePath); await setLogFilePath(loggerPath); await watchLogs(loggerPath, transformePath); diff --git a/api/src/services/sitecore.service.ts b/api/src/services/sitecore.service.ts index f4de0dea5..b15474b7d 100644 --- a/api/src/services/sitecore.service.ts +++ b/api/src/services/sitecore.service.ts @@ -3,7 +3,7 @@ import path from 'path'; import read from 'fs-readdir-recursive'; import { v4 as uuidv4 } from "uuid"; import _ from 'lodash'; -import { LOCALE_MAPPER } from '../constants/index.js'; +import { LOCALE_MAPPER, MIGRATION_DATA_CONFIG } from '../constants/index.js'; import { entriesFieldCreator, unflatten } from '../utils/entries-field-creator.utils.js'; import { orgService } from './org.service.js'; import { getLogMessage } from '../utils/index.js'; @@ -12,6 +12,18 @@ import customLogger from '../utils/custom-logger.utils.js'; const append = "a"; +const baseDirName = MIGRATION_DATA_CONFIG.DATA +const { + ENTRIES_DIR_NAME, + LOCALE_DIR_NAME, + LOCALE_MASTER_LOCALE, + LOCALE_FILE_NAME, + EXPORT_INFO_FILE, + ASSETS_DIR_NAME, + ASSETS_FILE_NAME, + ASSETS_SCHEMA_FILE +} = MIGRATION_DATA_CONFIG; + const idCorrector = ({ id }: any) => { const newId = id?.replace(/[-{}]/g, (match: any) => match === '-' ? '' : '') if (newId) { @@ -82,7 +94,7 @@ const uidCorrector = ({ uid }: any) => { const cretaeAssets = async ({ packagePath, baseDir, destinationStackId, projectId }: any) => { const srcFunc = 'cretaeAssets'; - const assetsSave = path.join(baseDir, 'assets'); + const assetsSave = path.join(baseDir, ASSETS_DIR_NAME); const allAssetJSON: any = {}; const folderName: any = path.join(packagePath, 'items', 'master', 'sitecore', 'media library'); const entryPath = read?.(folderName); @@ -169,7 +181,7 @@ const cretaeAssets = async ({ packagePath, baseDir, destinationStackId, projectI path.join( process.cwd(), assetsSave, - 'assets.json' + ASSETS_FILE_NAME ), JSON.stringify(fileMeta) ); @@ -177,7 +189,7 @@ const cretaeAssets = async ({ packagePath, baseDir, destinationStackId, projectI path.join( process.cwd(), assetsSave, - 'index.json' + ASSETS_SCHEMA_FILE ), JSON.stringify(allAssetJSON) ); @@ -187,8 +199,8 @@ const cretaeAssets = async ({ packagePath, baseDir, destinationStackId, projectI const createEntry = async ({ packagePath, contentTypes, master_locale = 'en-us', destinationStackId, projectId }: { packagePath: any; contentTypes: any; master_locale?: string, destinationStackId: string, projectId: string }) => { try { const srcFunc = 'createEntry'; - const baseDir = path.join('sitecoreMigrationData', destinationStackId); - const entrySave = path.join(baseDir, 'entries'); + const baseDir = path.join(baseDirName, destinationStackId); + const entrySave = path.join(baseDir, ENTRIES_DIR_NAME); const allAssetJSON: any = await cretaeAssets({ packagePath, baseDir, destinationStackId, projectId }); const folderName: any = path.join(packagePath, 'items', 'master', 'sitecore', 'content'); const entriesData: any = []; @@ -234,7 +246,7 @@ const createEntry = async ({ packagePath, contentTypes, master_locale = 'en-us', entryObj.uid = uid; for await (const field of entry?.fields?.field ?? []) { for await (const fsc of ctType?.fieldMapping ?? []) { - if (fsc?.ContentstackFieldType !== 'group' && !field?.$?.key?.includes('__')) { + if (fsc?.contentstackFieldType !== 'group' && !field?.$?.key?.includes('__')) { if (fsc?.contentstackFieldUid === 'title') { entryObj[fsc?.contentstackFieldUid] = entry?.meta?.name; } @@ -287,8 +299,8 @@ const createEntry = async ({ packagePath, contentTypes, master_locale = 'en-us', const createLocale = async (req: any, destinationStackId: string, projectId: string) => { const srcFunc = 'createLocale'; try { - const baseDir = path.join('sitecoreMigrationData', destinationStackId); - const localeSave = path.join(baseDir, 'locale'); + const baseDir = path.join(baseDirName, destinationStackId); + const localeSave = path.join(baseDir, LOCALE_DIR_NAME); const allLocalesResp = await orgService.getLocales(req) const masterLocale = Object?.keys?.(LOCALE_MAPPER?.masterLocale)?.[0]; const msLocale: any = {}; @@ -323,8 +335,8 @@ const createLocale = async (req: any, destinationStackId: string, projectId: str await customLogger(projectId, destinationStackId, 'info', message); } } - const masterPath = path.join(localeSave, 'master-locale.json'); - const allLocalePath = path.join(localeSave, 'locales.json'); + const masterPath = path.join(localeSave, LOCALE_MASTER_LOCALE); + const allLocalePath = path.join(localeSave, LOCALE_FILE_NAME); fs.access(localeSave, async (err) => { if (err) { fs.mkdir(localeSave, { recursive: true }, async (err) => { @@ -350,8 +362,8 @@ const createLocale = async (req: any, destinationStackId: string, projectId: str } const createVersionFile = async (destinationStackId: string) => { - const baseDir = path.join('sitecoreMigrationData', destinationStackId); - fs.writeFile(path?.join?.(baseDir, 'export-info.json'), JSON.stringify({ + const baseDir = path.join(baseDirName, destinationStackId); + fs.writeFile(path?.join?.(baseDir, EXPORT_INFO_FILE), JSON.stringify({ "contentVersion": 2, "logsPath": "" }), (err) => { diff --git a/api/src/utils/content-type-creator.utils.ts b/api/src/utils/content-type-creator.utils.ts index 12c9a7093..e7c6c0cef 100644 --- a/api/src/utils/content-type-creator.utils.ts +++ b/api/src/utils/content-type-creator.utils.ts @@ -3,6 +3,14 @@ import path from 'path'; import logger from './logger.js'; import { getLogMessage } from './index.js'; import customLogger from './custom-logger.utils.js'; +import { MIGRATION_DATA_CONFIG } from '../constants/index.js'; + +const { + GLOBAL_FIELDS_FILE_NAME, + GLOBAL_FIELDS_DIR_NAME, + CONTENT_TYPES_DIR_NAME, + CONTENT_TYPES_SCHEMA_FILE +} = MIGRATION_DATA_CONFIG; interface Group { data_type: string; @@ -33,7 +41,7 @@ function extractValue(input: string, prefix: string, anoter: string): any { const arrangGroups = ({ schema }: any) => { const dtSchema: any = []; schema?.forEach((item: any) => { - if (item?.ContentstackFieldType === 'group') { + if (item?.contentstackFieldType === 'group') { const groupSchema: any = { ...item, schema: [] } schema?.forEach((et: any) => { if (et?.contentstackFieldUid?.includes(`${item?.contentstackFieldUid}.`)) { @@ -52,7 +60,7 @@ const arrangGroups = ({ schema }: any) => { const convertToSchemaFormate = ({ field, advanced = true }: any) => { - switch (field?.ContentstackFieldType) { + switch (field?.contentstackFieldType) { case 'single_line_text': { return { "data_type": "text", @@ -60,7 +68,7 @@ const convertToSchemaFormate = ({ field, advanced = true }: any) => { uid: field?.uid, "field_metadata": { description: "", - default_value: field?.advanced?.Default_value ?? '' + default_value: field?.advanced?.default_value ?? '' }, "format": "", "error_messages": { @@ -79,7 +87,7 @@ const convertToSchemaFormate = ({ field, advanced = true }: any) => { uid: field?.uid, "field_metadata": { description: "", - default_value: field?.advanced?.Default_value ?? false, + default_value: field?.advanced?.default_value ?? false, }, "multiple": false, "mandatory": false, @@ -150,7 +158,7 @@ const convertToSchemaFormate = ({ field, advanced = true }: any) => { "mandatory": false, "unique": false }; - data.field_metadata.default_value = field?.advanced?.Default_value ?? null; + data.field_metadata.default_value = field?.advanced?.default_value ?? null; return data; } @@ -195,7 +203,7 @@ const convertToSchemaFormate = ({ field, advanced = true }: any) => { uid: field?.uid, "field_metadata": { description: "", - default_value: field?.advanced?.Default_value ?? '', + default_value: field?.advanced?.default_value ?? '', "multiline": true }, "format": "", @@ -230,7 +238,7 @@ const convertToSchemaFormate = ({ field, advanced = true }: any) => { uid: field?.uid, "field_metadata": { description: "", - default_value: field?.advanced?.Default_value ?? '' + default_value: field?.advanced?.default_value ?? '' }, "multiple": false, "mandatory": false, @@ -326,7 +334,7 @@ const convertToSchemaFormate = ({ field, advanced = true }: any) => { } default: { - if (field?.ContentstackFieldType) { + if (field?.contentstackFieldType) { return { "display_name": field?.title, "uid": field?.uid, @@ -356,7 +364,7 @@ const saveContent = async (ct: any, contentSave: string) => { const filePath = path.join(process.cwd(), contentSave, `${ct?.uid}.json`); await fs.promises.writeFile(filePath, JSON.stringify(ct)); // Append the content to schema.json - const schemaFilePath = path.join(process.cwd(), contentSave, 'schema.json'); + const schemaFilePath = path.join(process.cwd(), contentSave, CONTENT_TYPES_SCHEMA_FILE); let schemaData = []; try { // Read existing schema.json file if it exists @@ -380,7 +388,7 @@ const saveContent = async (ct: any, contentSave: string) => { const writeGlobalField = async (schema: any, globalSave: string) => { - const filePath = path.join(process.cwd(), globalSave, 'globalfields.json'); + const filePath = path.join(process.cwd(), globalSave, GLOBAL_FIELDS_FILE_NAME); try { await fs.promises.access(globalSave); } catch (err) { @@ -418,7 +426,7 @@ export const contenTypeMaker = async ({ contentType, destinationStackId, project } const ctData: any = arrangGroups({ schema: contentType?.fieldMapping }) ctData?.forEach((item: any) => { - if (item?.ContentstackFieldType === 'group') { + if (item?.contentstackFieldType === 'group') { const group: Group = { "data_type": "group", "display_name": item?.contentstackField, @@ -455,12 +463,12 @@ export const contenTypeMaker = async ({ contentType, destinationStackId, project }) if (ct?.uid) { if (contentType?.type === 'global_field') { - const globalSave = path.join('sitecoreMigrationData', destinationStackId, 'global_fields'); + const globalSave = path.join(MIGRATION_DATA_CONFIG.DATA, destinationStackId, GLOBAL_FIELDS_DIR_NAME); const message = getLogMessage(srcFunc, `Global Field ${ct?.uid} has been successfully Transformed.`, {}); await customLogger(projectId, destinationStackId, 'info', message); await writeGlobalField(ct, globalSave); } else { - const contentSave = path.join('sitecoreMigrationData', destinationStackId, 'content_types'); + const contentSave = path.join(MIGRATION_DATA_CONFIG.DATA, destinationStackId, CONTENT_TYPES_DIR_NAME); const message = getLogMessage(srcFunc, `ContentType ${ct?.uid} has been successfully Transformed.`, {}); await customLogger(projectId, destinationStackId, 'info', message); await saveContent(ct, contentSave); diff --git a/api/src/utils/entries-field-creator.utils.ts b/api/src/utils/entries-field-creator.utils.ts index 68098ebb1..6e938582b 100644 --- a/api/src/utils/entries-field-creator.utils.ts +++ b/api/src/utils/entries-field-creator.utils.ts @@ -176,7 +176,7 @@ const findAssestInJsoRte = (jsonValue: any, allAssetJSON: any, idCorrector: any) export const entriesFieldCreator = async ({ field, content, idCorrector, allAssetJSON, contentTypes, entriesData, locale }: any) => { - switch (field?.ContentstackFieldType) { + switch (field?.contentstackFieldType) { case 'multi_line_text': case 'single_line_text': { return content; @@ -198,8 +198,8 @@ export const entriesFieldCreator = async ({ field, content, idCorrector, allAsse } return isOptionPresent?.value ?? null; } else { - if (field?.advanced?.Default_value) { - const isOptionDefaultValue = field?.advanced?.options?.find((ops: any) => ops?.key === field?.advanced?.Default_value || ops?.value === field?.advanced?.Default_value); + if (field?.advanced?.default_value) { + const isOptionDefaultValue = field?.advanced?.options?.find((ops: any) => ops?.key === field?.advanced?.default_value || ops?.value === field?.advanced?.default_value); if (field?.advanced?.Multiple) { if (!isOptionDefaultValue?.key) { return isOptionDefaultValue @@ -208,7 +208,7 @@ export const entriesFieldCreator = async ({ field, content, idCorrector, allAsse } return isOptionDefaultValue?.value ?? null; } else { - return field?.advanced?.Default_value; + return field?.advanced?.default_value; } } } @@ -288,7 +288,7 @@ export const entriesFieldCreator = async ({ field, content, idCorrector, allAsse const mainSchema = []; const group: any = {}; globalFieldsSchema?.fieldMapping?.forEach((item: any) => { - if (item?.ContentstackFieldType === 'group') { + if (item?.contentstackFieldType === 'group') { group[item?.contentstackFieldUid] = { ...item, fieldMapping: [] }; } else { const groupSchema = group[item?.contentstackFieldUid?.split('.')?.[0]]; @@ -306,7 +306,7 @@ export const entriesFieldCreator = async ({ field, content, idCorrector, allAsse obj[field?.contentstackFieldUid] = await entriesFieldCreator({ field, content }); } else { Object?.values(field)?.forEach((item: any) => { - if (item?.ContentstackFieldType === 'group') { + if (item?.contentstackFieldType === 'group') { item?.fieldMapping?.forEach(async (ele: any) => { obj[ele?.contentstackFieldUid] = await entriesFieldCreator({ field: ele, content }); }) @@ -324,7 +324,7 @@ export const entriesFieldCreator = async ({ field, content, idCorrector, allAsse } default: { - console.info(field?.ContentstackFieldType, 'field missing'); + console.info(field?.contentstackFieldType, 'field missing'); return content; } } diff --git a/api/src/utils/test-folder-creator.utils.ts b/api/src/utils/test-folder-creator.utils.ts index 98cff8647..8d81be16d 100644 --- a/api/src/utils/test-folder-creator.utils.ts +++ b/api/src/utils/test-folder-creator.utils.ts @@ -1,6 +1,16 @@ import path from 'path'; import fs from 'fs'; import read from 'fs-readdir-recursive'; +import { MIGRATION_DATA_CONFIG } from '../constants/index.js'; + +const { + ENTRIES_DIR_NAME, + ASSETS_DIR_NAME, + ASSETS_SCHEMA_FILE, + CONTENT_TYPES_DIR_NAME, + CONTENT_TYPES_SCHEMA_FILE, + ENTRIES_MASTER_FILE +} = MIGRATION_DATA_CONFIG; async function writeOneFile(indexPath: string, fileMeta: any) { @@ -13,7 +23,7 @@ async function writeOneFile(indexPath: string, fileMeta: any) { async function writeFiles(entryPath: string, fileMeta: any, entryLocale: any, locale: string) { try { - const indexPath = path.join(entryPath, 'index.json'); + const indexPath = path.join(entryPath, ENTRIES_MASTER_FILE); const localePath = path.join(entryPath, `${locale}.json`); fs.access(entryPath, async (err) => { if (err) { @@ -46,7 +56,7 @@ const saveContent = async (ct: any, contentSave: string) => { const filePath = path.join(process.cwd(), contentSave, `${ct?.uid}.json`); await fs.promises.writeFile(filePath, JSON.stringify(ct)); // Append the content to schema.json - const schemaFilePath = path.join(process.cwd(), contentSave, 'schema.json'); + const schemaFilePath = path.join(process.cwd(), contentSave, CONTENT_TYPES_SCHEMA_FILE); let schemaData = []; try { // Read existing schema.json file if it exists @@ -107,22 +117,22 @@ async function deleteFolderAsync(folderPath: string): Promise { const sortAssets = async (baseDir: string) => { - const assetsPath = path.join(process.cwd(), baseDir, 'assets'); + const assetsPath = path.join(process.cwd(), baseDir, ASSETS_DIR_NAME); const assetsFilesPath = path.join(assetsPath, 'files'); - const assetsJson = JSON.parse(await fs.promises.readFile(path.join(assetsPath, 'index.json'), 'utf8')); + const assetsJson = JSON.parse(await fs.promises.readFile(path.join(assetsPath, ASSETS_SCHEMA_FILE), 'utf8')); const sortAsset = Object?.values?.(assetsJson)?.slice(0, 10); const assetsMeta: any = {}; sortAsset?.forEach((item: any) => { assetsMeta[item?.uid] = item; }) await cleanDirectory(assetsFilesPath, sortAsset); - await fs.promises.writeFile(path.join(assetsPath, 'index.json'), JSON?.stringify?.(assetsMeta)); + await fs.promises.writeFile(path.join(assetsPath, ASSETS_SCHEMA_FILE), JSON?.stringify?.(assetsMeta)); } const sortContentType = async (baseDir: string, finalData: any) => { - const contentTypePath: string = path.join(process.cwd(), baseDir, 'content_types'); - const contentSave = path.join(baseDir, 'content_types'); - const ctData = await JSON.parse(await fs.promises.readFile(path.join(contentTypePath, 'schema.json'), 'utf8')); + const contentTypePath: string = path.join(process.cwd(), baseDir, CONTENT_TYPES_DIR_NAME); + const contentSave = path.join(baseDir, CONTENT_TYPES_DIR_NAME); + const ctData = await JSON.parse(await fs.promises.readFile(path.join(contentTypePath, CONTENT_TYPES_SCHEMA_FILE), 'utf8')); const contentTypes: any = []; finalData?.forEach((ct: any) => { const findCtData = ctData?.find((ele: any) => ele?.uid === ct?.contentType) @@ -135,10 +145,10 @@ const sortContentType = async (baseDir: string, finalData: any) => { } export const testFolderCreator = async ({ destinationStackId }: any) => { - const baseDir = path.join('sitecoreMigrationData', destinationStackId); - const entryDelete = path.join(process.cwd(), baseDir, 'entries'); - const entrySave = path.join(baseDir, 'entries'); - const entriesPath = path.join(process.cwd(), baseDir, 'entries'); + const baseDir = path.join(MIGRATION_DATA_CONFIG.DATA, destinationStackId); + const entryDelete = path.join(process.cwd(), baseDir, ENTRIES_DIR_NAME); + const entrySave = path.join(baseDir, ENTRIES_DIR_NAME); + const entriesPath = path.join(process.cwd(), baseDir, ENTRIES_DIR_NAME); const allData = []; for await (const filePath of read(entriesPath)) { if (!filePath?.endsWith('index.json')) { diff --git a/ui/src/components/AdvancePropertise/advanceProperties.interface.ts b/ui/src/components/AdvancePropertise/advanceProperties.interface.ts index 5dd24e3c1..4c32d4a25 100644 --- a/ui/src/components/AdvancePropertise/advanceProperties.interface.ts +++ b/ui/src/components/AdvancePropertise/advanceProperties.interface.ts @@ -55,22 +55,22 @@ export interface UpdatedSettings { /** * The minimum number of characters allowed. */ - MinChars?: string; + minChars?: string; /** * The maximum number of characters allowed. */ - MaxChars?: number; + maxChars?: number; /** * The minimum range allowed. */ - MinRange?: number; + minRange?: number; /** * The maximum range allowed. */ - MaxRange?: number; + maxRange?: number; /** * The minimum size allowed. @@ -85,12 +85,12 @@ export interface UpdatedSettings { /** * The default value for the component. */ - DefaultValue?: string; + defaultValue?: string; /** * The regular expression used for validation. */ - ValidationRegex?: string; + validationRegex?: string; /** * The title of the component. @@ -105,23 +105,23 @@ export interface UpdatedSettings { /** * Indicates whether the component is mandatory. */ - Mandatory?: boolean; + mandatory?: boolean; /** * Indicates whether only images are allowed. */ - AllowImagesOnly?: boolean; + allowImagesOnly?: boolean; /** * Indicates whether the component is non-localizable. */ - NonLocalizable?: boolean; + nonLocalizable?: boolean; - Multiple?: boolean; + multiple?: boolean; - EmbedObjects?: any; + embedObjects?: any; - Default_value?: string; + default_value?: string; options?: any[] } diff --git a/ui/src/components/AdvancePropertise/index.tsx b/ui/src/components/AdvancePropertise/index.tsx index 5c387c6ac..314601c4f 100644 --- a/ui/src/components/AdvancePropertise/index.tsx +++ b/ui/src/components/AdvancePropertise/index.tsx @@ -37,35 +37,35 @@ interface ContentTypeOption { const AdvancePropertise = (props: SchemaProps) => { // State for toggle states const [toggleStates, setToggleStates] = useState({ - minChars: props?.value?.MinChars, - maxChars: props?.value?.MaxChars, - minRange: props?.value?.MinRange, - maxRange: props?.value?.MaxRange, + minChars: props?.value?.minChars, + maxChars: props?.value?.maxChars, + minRange: props?.value?.minRange, + maxRange: props?.value?.maxRange, minSize: props?.value?.minSize, maxSize: props?.value?.maxSize, - defaultValue: props?.value?.DefaultValue, - validationRegex: props?.value?.ValidationRegex, + defaultValue: props?.value?.defaultValue, + validationRegex: props?.value?.validationRegex, title: props?.value?.title, url: props?.value?.url, - mandatory: props?.value?.Mandatory, - allowImagesOnly: props?.value?.AllowImagesOnly, - nonLocalizable: props?.value?.NonLocalizable, + mandatory: props?.value?.mandatory, + allowImagesOnly: props?.value?.allowImagesOnly, + nonLocalizable: props?.value?.nonLocalizable, embedObject: true, embedAssests: true, - multiple: props?.value?.Multiple, - embedObjects: props?.value?.EmbedObjects, - Default_value: props?.value?.Default_value, + multiple: props?.value?.multiple, + embedObjects: props?.value?.embedObjects, + default_value: props?.value?.default_value, option: props?.value?.options }); - const embedObjects = props?.value?.EmbedObjects?.map((item: string) => ({ + const embedObjects = props?.value?.embedObjects?.map((item: string) => ({ label: item, value: item, })); // State for content types const [contentTypes, setContentTypes] = useState([]); const [ctValue, setCTValue] = useState(embedObjects); - const [embedObjectslabels, setEmbedObjectsLabels] = useState(props?.value?.EmbedObjects); + const [embedObjectslabels, setEmbedObjectsLabels] = useState(props?.value?.embedObjects); const [showOptions, setShowOptions] = useState>({}); const [showIcon, setShowIcon] = useState(); const filterRef = useRef(null); @@ -74,7 +74,7 @@ const AdvancePropertise = (props: SchemaProps) => { useEffect(()=>{ const defaultIndex = toggleStates?.option?.findIndex( - (item: optionsType) => toggleStates?.Default_value === item?.key + (item: optionsType) => toggleStates?.default_value === item?.key ); if (defaultIndex !== -1) { @@ -124,16 +124,16 @@ const AdvancePropertise = (props: SchemaProps) => { ...props?.value, [field?.charAt(0)?.toUpperCase() + field?.slice(1)]: (event.target as HTMLInputElement)?.value, validationRegex: '', - MinChars: currentToggleStates?.minChars, - MaxChars:currentToggleStates?.maxChars, - Mandatory: currentToggleStates?.mandatory, - Multiple: currentToggleStates?.multiple, - Unique: false, - NonLocalizable: currentToggleStates?.nonLocalizable, - EmbedObject: currentToggleStates?.embedObject, - EmbedObjects: embedObjectslabels, - MinRange: currentToggleStates?.minRange, - MaxRange: currentToggleStates?.maxRange, + minChars: currentToggleStates?.minChars, + maxChars:currentToggleStates?.maxChars, + mandatory: currentToggleStates?.mandatory, + multiple: currentToggleStates?.multiple, + unique: false, + nonLocalizable: currentToggleStates?.nonLocalizable, + embedObject: currentToggleStates?.embedObject, + embedObjects: embedObjectslabels, + minRange: currentToggleStates?.minRange, + maxRange: currentToggleStates?.maxRange, }, checkBoxChanged ); @@ -160,12 +160,12 @@ const AdvancePropertise = (props: SchemaProps) => { { [field?.charAt(0)?.toUpperCase() + field?.slice(1)]: value, validationRegex: '', - Mandatory: currentToggleStates?.mandatory, - Multiple: currentToggleStates?.multiple, - Unique: false, - NonLocalizable: currentToggleStates?.nonLocalizable, - EmbedObject: currentToggleStates?.embedObject, - EmbedObjects : embedObjectslabels + mandatory: currentToggleStates?.mandatory, + multiple: currentToggleStates?.multiple, + unique: false, + nonLocalizable: currentToggleStates?.nonLocalizable, + embedObject: currentToggleStates?.embedObject, + embedObjects : embedObjectslabels }, checkBoxChanged ); @@ -187,12 +187,12 @@ const AdvancePropertise = (props: SchemaProps) => { { [field?.charAt(0)?.toUpperCase() + field?.slice(1)]: value, validationRegex: '', - Mandatory: currentToggleStates?.mandatory, - Multiple: currentToggleStates?.multiple, - Unique: false, - NonLocalizable: currentToggleStates?.nonLocalizable, - EmbedObject: currentToggleStates?.embedObject, - EmbedObjects : embedObjectslabels + mandatory: currentToggleStates?.mandatory, + multiple: currentToggleStates?.multiple, + unique: false, + nonLocalizable: currentToggleStates?.nonLocalizable, + embedObject: currentToggleStates?.embedObject, + embedObjects : embedObjectslabels }, true ); @@ -227,23 +227,23 @@ const AdvancePropertise = (props: SchemaProps) => { })); setToggleStates((prevStates) => ({ ...prevStates, - ['Default_value']: option?.key + ['default_value']: option?.key })); const currentToggleStates = { ...toggleStates, - ['Default_value']: option?.key + ['default_value']: option?.key }; props?.updateFieldSettings( props?.rowId, { - ['Default_value']: option?.key, + ['default_value']: option?.key, validationRegex: '', - Mandatory: currentToggleStates?.mandatory, - Multiple: currentToggleStates?.multiple, - Unique: false, - NonLocalizable: currentToggleStates?.nonLocalizable, - EmbedObject: currentToggleStates?.embedObject, - EmbedObjects : embedObjectslabels, + mandatory: currentToggleStates?.mandatory, + multiple: currentToggleStates?.multiple, + unique: false, + nonLocalizable: currentToggleStates?.nonLocalizable, + embedObject: currentToggleStates?.embedObject, + embedObjects : embedObjectslabels, options:options }, true @@ -258,23 +258,23 @@ const AdvancePropertise = (props: SchemaProps) => { })); setToggleStates((prevStates) => ({ ...prevStates, - ['Default_value']: '' + ['default_value']: '' })); const currentToggleStates = { ...toggleStates, - ['Default_value']: '' + ['default_value']: '' }; props?.updateFieldSettings( props?.rowId, { - ['Default_value']: '', + ['default_value']: '', validationRegex: '', - Mandatory: currentToggleStates?.mandatory, - Multiple: currentToggleStates?.multiple, - Unique: false, - NonLocalizable: currentToggleStates?.nonLocalizable, - EmbedObject: currentToggleStates?.embedObject, - EmbedObjects : embedObjectslabels, + mandatory: currentToggleStates?.mandatory, + multiple: currentToggleStates?.multiple, + unique: false, + nonLocalizable: currentToggleStates?.nonLocalizable, + embedObject: currentToggleStates?.embedObject, + embedObjects : embedObjectslabels, options: options }, true @@ -441,10 +441,10 @@ const AdvancePropertise = (props: SchemaProps) => { ) => handleOnChange('Default_value', e, true))} + onChange={handleOnChange && ((e: React.ChangeEvent) => handleOnChange('default_value', e, true))} /> @@ -581,13 +581,13 @@ const AdvancePropertise = (props: SchemaProps) => {
handleRadioChange('Default_value',true)}> + checked={stringToBoolean(toggleStates?.default_value || '') === true} + onChange={() => handleRadioChange('default_value',true)}> handleRadioChange('Default_value',false)}> + checked={stringToBoolean(toggleStates?.default_value || '') === false} + onChange={() => handleRadioChange('default_value',false)}>
@@ -624,7 +624,7 @@ const AdvancePropertise = (props: SchemaProps) => { props?.rowId, { validationRegex : toggleStates?.validationRegex || '', - EmbedObjects: embedObject + embedObjects: embedObject }, true, ); diff --git a/ui/src/components/ContentMapper/contentMapper.interface.ts b/ui/src/components/ContentMapper/contentMapper.interface.ts index 41271898e..2e2352714 100644 --- a/ui/src/components/ContentMapper/contentMapper.interface.ts +++ b/ui/src/components/ContentMapper/contentMapper.interface.ts @@ -51,7 +51,7 @@ export interface ContentType { } export interface FieldMapType { - ContentstackFieldType: string; + contentstackFieldType: string; child?: FieldMapType[] | undefined; backupFieldType: string; contentstackField: string; @@ -68,17 +68,17 @@ export interface FieldMapType { export interface Advanced { validationRegex: string; - Mandatory?: boolean; - Multiple?: boolean; - Unique?: boolean; - NonLocalizable?: boolean; - EmbedObject?: boolean; - EmbedObjects?:any; - MinChars?: string; - MaxChars?: number; - MinRange?: number, - MaxRange?: number, - Default_value?:string, + mandatory?: boolean; + multiple?: boolean; + unique?: boolean; + nonLocalizable?: boolean; + embedObject?: boolean; + embedObjects?:any; + minChars?: string; + maxChars?: number; + minRange?: number, + maxRange?: number, + default_value?:string, options?: any[] } diff --git a/ui/src/components/ContentMapper/dummy.json b/ui/src/components/ContentMapper/dummy.json index 61e531075..32f616693 100644 --- a/ui/src/components/ContentMapper/dummy.json +++ b/ui/src/components/ContentMapper/dummy.json @@ -12,5 +12,5 @@ "reference": "Reference", "dropdown": "Select", "radio": "Select", - "CheckBox": "Select" + "checkBox": "Select" } diff --git a/ui/src/components/ContentMapper/index.tsx b/ui/src/components/ContentMapper/index.tsx index 53ea6cac6..d2215ec1c 100644 --- a/ui/src/components/ContentMapper/index.tsx +++ b/ui/src/components/ContentMapper/index.tsx @@ -153,7 +153,7 @@ const Fields: MappingFields = { 'Select':'select' } }, - 'CheckBox': { + 'checkBox': { label:'Select', options: {'Select':'checkbox'} }, @@ -217,10 +217,10 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R const [advancePropertise, setAdvancePropertise] = useState({ validationRegex: '', - Mandatory: false, - Multiple: false, - Unique: false, - NonLocalizable: false + mandatory: false, + multiple: false, + unique: false, + nonLocalizable: false }); const [active, setActive] = useState(0); @@ -788,7 +788,7 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R setFieldValue(value); const updatedRows: FieldMapType[] = tableData?.map((row) => { if (row?.uid === rowIndex) { - return { ...row, ContentstackFieldType: value?.value }; + return { ...row, contentstackFieldType: value?.value }; } return row; }); @@ -834,8 +834,8 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R //const OptionsForRow = Fields[data?.backupFieldType as keyof Mapping]; const OptionsForRow = Fields?.[data?.backupFieldType]?.options ; const initialOption = { - label: Fields?.[data?.ContentstackFieldType]?.label, - value: Fields?.[data?.ContentstackFieldType]?.label, + label: Fields?.[data?.contentstackFieldType]?.label, + value: Fields?.[data?.contentstackFieldType]?.label, }; let option: FieldTypes[]; if (Array.isArray(OptionsForRow)) { @@ -857,8 +857,8 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R option = [{ label: OptionsForRow, value: OptionsForRow }] } - const fieldLabel = data?.ContentstackFieldType === 'url' || data?.ContentstackFieldType === 'group' - ? data?.ContentstackFieldType : initialOption?.label + const fieldLabel = data?.contentstackFieldType === 'url' || data?.contentstackFieldType === 'group' + ? data?.contentstackFieldType : initialOption?.label return (
@@ -941,10 +941,10 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R setAdvancePropertise({ validationRegex: selectedValue?.value?.format, - Mandatory: selectedValue?.value?.mandatory, - Multiple: selectedValue?.value?.multiple, - Unique: selectedValue?.value?.unique, - NonLocalizable: selectedValue?.value?.non_localizable + mandatory: selectedValue?.value?.mandatory, + multiple: selectedValue?.value?.multiple, + unique: selectedValue?.value?.unique, + nonLocalizable: selectedValue?.value?.non_localizable }); setDisabledOptions((prevDisabledOptions) => { @@ -974,12 +974,12 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R contentstackFieldUid: selectedValue?.value?.uid, advanced: { validationRegex: selectedValue?.value?.format, - Mandatory: selectedValue?.value?.mandatory, - Multiple: selectedValue?.value?.multiple, - Unique: selectedValue?.value?.unique, - NonLocalizable: selectedValue?.value?.non_localizable, - MinChars: selectedValue?.value?.max, - MaxChars: selectedValue?.value?.min + mandatory: selectedValue?.value?.mandatory, + multiple: selectedValue?.value?.multiple, + unique: selectedValue?.value?.unique, + nonLocalizable: selectedValue?.value?.non_localizable, + minChars: selectedValue?.value?.max, + maxChars: selectedValue?.value?.min } }; } @@ -1007,7 +1007,7 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R let groupId = ''; const data: FieldMapType[] = []; schema?.forEach((field: FieldMapType) => { - if (field?.ContentstackFieldType === 'group') { + if (field?.contentstackFieldType === 'group') { groupId = field?.uid; data?.push({ ...field, child: [] }); } else if (field?.uid?.startsWith(groupId + '.')) { @@ -1161,8 +1161,8 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R const OptionsForEachRow = Fields?.[data?.backupFieldType]?.options; const initialOption = { - label: Fields?.[data?.ContentstackFieldType]?.label, - value: Fields?.[data?.ContentstackFieldType]?.label, + label: Fields?.[data?.contentstackFieldType]?.label, + value: Fields?.[data?.contentstackFieldType]?.label, }; const fieldsOfContentstack: Mapping = { @@ -1246,10 +1246,10 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R contentstackFieldUid: OptionsForRow[0]?.value?.uid ?? '', advanced: { validationRegex: OptionsForRow[0]?.value?.format ?? '', - Mandatory: OptionsForRow[0]?.value?.mandatory, - Multiple: OptionsForRow[0]?.value?.multiple, - Unique: OptionsForRow[0]?.value?.unique, - NonLocalizable: OptionsForRow[0]?.value?.non_localizable, + mandatory: OptionsForRow[0]?.value?.mandatory, + multiple: OptionsForRow[0]?.value?.multiple, + unique: OptionsForRow[0]?.value?.unique, + nonLocalizable: OptionsForRow[0]?.value?.non_localizable, }, }; } @@ -1315,11 +1315,11 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R : (OptionsForRow.length === 0 || (OptionsForRow.length > 0 && OptionsForRow.every((item)=>item.isDisabled) && (!existingField[data?.uid] || ! updatedExstingField[data?.uid] ) )) ? { - label: Fields[data?.ContentstackFieldType]?.label, - value: Fields[data?.ContentstackFieldType]?.label, - isDisabled: data?.ContentstackFieldType === 'text' || - data?.ContentstackFieldType === 'group' || - data?.ContentstackFieldType === 'url' || + label: Fields[data?.contentstackFieldType]?.label, + value: Fields[data?.contentstackFieldType]?.label, + isDisabled: data?.contentstackFieldType === 'text' || + data?.contentstackFieldType === 'group' || + data?.contentstackFieldType === 'url' || data?.otherCmsType === "reference" } : { @@ -1329,7 +1329,7 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R }; const adjustedOptions = (OptionsForRow.length === 0 && !contentTypeSchema) ? option : - (OptionsForRow.length > 0 && OptionsForRow.every((item)=>item.isDisabled) && OptionValue.label === Fields[data?.ContentstackFieldType]?.label) ? [] + (OptionsForRow.length > 0 && OptionsForRow.every((item)=>item.isDisabled) && OptionValue.label === Fields[data?.contentstackFieldType]?.label) ? [] : OptionsForRow.map((option: OptionsType) => ({ ...option, isDisabled: selectedOptions.includes(option?.label ?? '') @@ -1507,7 +1507,7 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R setIsDropDownChanged(false); const updatedRows: FieldMapType[] = tableData.map((row) => { - return { ...row, ContentstackFieldType: row.backupFieldType }; + return { ...row, contentstackFieldType: row.backupFieldType }; }); setTableData(updatedRows); diff --git a/ui/src/components/Migrations/NewMigration/DummyJSON.json b/ui/src/components/Migrations/NewMigration/DummyJSON.json index b9bf5f872..a62220357 100644 --- a/ui/src/components/Migrations/NewMigration/DummyJSON.json +++ b/ui/src/components/Migrations/NewMigration/DummyJSON.json @@ -15,7 +15,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -23,7 +23,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -31,7 +31,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -39,7 +39,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -47,7 +47,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -55,7 +55,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -63,7 +63,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -71,7 +71,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -79,7 +79,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -87,7 +87,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -95,7 +95,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -103,7 +103,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -111,7 +111,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -119,7 +119,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -127,7 +127,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -135,7 +135,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -143,7 +143,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -151,7 +151,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -159,7 +159,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -167,7 +167,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -175,7 +175,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -183,7 +183,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -191,7 +191,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -199,7 +199,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -207,7 +207,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -215,7 +215,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -223,7 +223,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -231,7 +231,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -239,7 +239,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -247,7 +247,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -255,7 +255,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -263,7 +263,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -271,7 +271,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -279,7 +279,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -287,7 +287,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -295,7 +295,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -303,7 +303,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -311,7 +311,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -319,7 +319,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -327,7 +327,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -335,7 +335,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -343,7 +343,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -351,7 +351,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -359,7 +359,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -367,7 +367,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -375,7 +375,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -383,7 +383,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -391,7 +391,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -399,7 +399,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -407,7 +407,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -415,7 +415,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -423,7 +423,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -431,7 +431,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -439,7 +439,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -447,7 +447,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -455,7 +455,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -463,7 +463,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -471,7 +471,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -479,7 +479,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -487,7 +487,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -495,7 +495,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -503,7 +503,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -511,7 +511,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -519,7 +519,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title", @@ -527,7 +527,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -535,7 +535,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -543,7 +543,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -551,7 +551,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -559,7 +559,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -567,7 +567,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -575,7 +575,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -583,7 +583,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -591,7 +591,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -599,7 +599,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -607,7 +607,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -615,7 +615,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -623,7 +623,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -631,7 +631,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -639,7 +639,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -647,7 +647,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -655,7 +655,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -663,7 +663,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -671,7 +671,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -679,7 +679,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -687,7 +687,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -695,7 +695,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -703,7 +703,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -711,7 +711,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -719,7 +719,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -727,7 +727,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -735,7 +735,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -743,7 +743,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -751,7 +751,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -759,7 +759,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -767,7 +767,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -775,7 +775,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -783,7 +783,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -791,7 +791,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -799,7 +799,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -807,7 +807,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -815,7 +815,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -823,7 +823,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -831,7 +831,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -839,7 +839,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -847,7 +847,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -855,7 +855,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -863,7 +863,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -871,7 +871,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -879,7 +879,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -887,7 +887,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -895,7 +895,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -903,7 +903,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -911,7 +911,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -919,7 +919,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -927,7 +927,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -935,7 +935,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -943,7 +943,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -951,7 +951,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -959,7 +959,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -967,7 +967,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -975,7 +975,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -983,7 +983,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -991,7 +991,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -999,7 +999,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -1007,7 +1007,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -1015,7 +1015,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -1023,7 +1023,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -1031,7 +1031,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" } ] }, @@ -1049,7 +1049,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -1057,7 +1057,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -1065,7 +1065,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -1073,7 +1073,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -1081,7 +1081,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -1089,7 +1089,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -1097,7 +1097,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -1105,7 +1105,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -1113,7 +1113,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -1121,7 +1121,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -1129,7 +1129,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -1137,7 +1137,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -1145,7 +1145,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -1153,7 +1153,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -1161,7 +1161,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -1169,7 +1169,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -1177,7 +1177,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -1185,7 +1185,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -1193,7 +1193,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -1201,7 +1201,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -1209,7 +1209,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -1217,7 +1217,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -1225,7 +1225,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -1233,7 +1233,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -1241,7 +1241,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -1249,7 +1249,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -1257,7 +1257,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -1265,7 +1265,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -1273,7 +1273,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -1281,7 +1281,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -1289,7 +1289,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -1297,7 +1297,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -1305,7 +1305,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -1313,7 +1313,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -1321,7 +1321,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -1329,7 +1329,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -1337,7 +1337,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -1345,7 +1345,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -1353,7 +1353,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -1361,7 +1361,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -1369,7 +1369,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -1377,7 +1377,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -1385,7 +1385,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -1393,7 +1393,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -1401,7 +1401,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -1409,7 +1409,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -1417,7 +1417,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -1425,7 +1425,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -1433,7 +1433,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -1441,7 +1441,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -1449,7 +1449,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -1457,7 +1457,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -1465,7 +1465,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -1473,7 +1473,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -1481,7 +1481,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -1489,7 +1489,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -1497,7 +1497,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -1505,7 +1505,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -1513,7 +1513,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -1521,7 +1521,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -1529,7 +1529,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -1537,7 +1537,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -1545,7 +1545,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -1553,7 +1553,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title", @@ -1561,7 +1561,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -1569,7 +1569,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -1577,7 +1577,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -1585,7 +1585,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -1593,7 +1593,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -1601,7 +1601,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -1609,7 +1609,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -1617,7 +1617,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -1625,7 +1625,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -1633,7 +1633,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -1641,7 +1641,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -1649,7 +1649,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -1657,7 +1657,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -1665,7 +1665,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -1673,7 +1673,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -1681,7 +1681,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -1689,7 +1689,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -1697,7 +1697,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -1705,7 +1705,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -1713,7 +1713,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -1721,7 +1721,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -1729,7 +1729,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -1737,7 +1737,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -1745,7 +1745,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -1753,7 +1753,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -1761,7 +1761,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -1769,7 +1769,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -1777,7 +1777,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -1785,7 +1785,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -1793,7 +1793,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -1801,7 +1801,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -1809,7 +1809,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -1817,7 +1817,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -1825,7 +1825,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -1833,7 +1833,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -1841,7 +1841,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -1849,7 +1849,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -1857,7 +1857,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -1865,7 +1865,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -1873,7 +1873,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -1881,7 +1881,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -1889,7 +1889,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -1897,7 +1897,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -1905,7 +1905,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -1913,7 +1913,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -1921,7 +1921,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -1929,7 +1929,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -1937,7 +1937,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -1945,7 +1945,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -1953,7 +1953,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -1961,7 +1961,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -1969,7 +1969,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -1977,7 +1977,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -1985,7 +1985,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -1993,7 +1993,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -2001,7 +2001,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -2009,7 +2009,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -2017,7 +2017,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -2025,7 +2025,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -2033,7 +2033,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -2041,7 +2041,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -2049,7 +2049,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -2057,7 +2057,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -2065,7 +2065,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" } ] }, @@ -2083,7 +2083,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -2091,7 +2091,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -2099,7 +2099,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -2107,7 +2107,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -2115,7 +2115,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -2123,7 +2123,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -2131,7 +2131,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -2139,7 +2139,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -2147,7 +2147,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -2155,7 +2155,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -2163,7 +2163,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -2171,7 +2171,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -2179,7 +2179,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -2187,7 +2187,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -2195,7 +2195,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -2203,7 +2203,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -2211,7 +2211,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -2219,7 +2219,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -2227,7 +2227,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -2235,7 +2235,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -2243,7 +2243,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -2251,7 +2251,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -2259,7 +2259,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -2267,7 +2267,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -2275,7 +2275,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -2283,7 +2283,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -2291,7 +2291,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -2299,7 +2299,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -2307,7 +2307,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -2315,7 +2315,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -2323,7 +2323,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -2331,7 +2331,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -2339,7 +2339,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -2347,7 +2347,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -2355,7 +2355,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -2363,7 +2363,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -2371,7 +2371,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -2379,7 +2379,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -2387,7 +2387,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -2395,7 +2395,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -2403,7 +2403,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -2411,7 +2411,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -2419,7 +2419,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -2427,7 +2427,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -2435,7 +2435,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -2443,7 +2443,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -2451,7 +2451,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -2459,7 +2459,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -2467,7 +2467,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -2475,7 +2475,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -2483,7 +2483,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -2491,7 +2491,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -2499,7 +2499,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -2507,7 +2507,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -2515,7 +2515,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -2523,7 +2523,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -2531,7 +2531,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -2539,7 +2539,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -2547,7 +2547,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -2555,7 +2555,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -2563,7 +2563,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -2571,7 +2571,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -2579,7 +2579,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -2587,7 +2587,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title", @@ -2595,7 +2595,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -2603,7 +2603,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -2611,7 +2611,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -2619,7 +2619,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -2627,7 +2627,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -2635,7 +2635,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -2643,7 +2643,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -2651,7 +2651,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -2659,7 +2659,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -2667,7 +2667,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -2675,7 +2675,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -2683,7 +2683,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -2691,7 +2691,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -2699,7 +2699,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -2707,7 +2707,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -2715,7 +2715,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -2723,7 +2723,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -2731,7 +2731,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -2739,7 +2739,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -2747,7 +2747,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -2755,7 +2755,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -2763,7 +2763,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -2771,7 +2771,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -2779,7 +2779,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -2787,7 +2787,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -2795,7 +2795,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -2803,7 +2803,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -2811,7 +2811,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -2819,7 +2819,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -2827,7 +2827,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -2835,7 +2835,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -2843,7 +2843,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -2851,7 +2851,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -2859,7 +2859,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -2867,7 +2867,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -2875,7 +2875,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -2883,7 +2883,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -2891,7 +2891,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -2899,7 +2899,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -2907,7 +2907,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -2915,7 +2915,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -2923,7 +2923,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -2931,7 +2931,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -2939,7 +2939,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -2947,7 +2947,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -2955,7 +2955,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -2963,7 +2963,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -2971,7 +2971,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -2979,7 +2979,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -2987,7 +2987,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -2995,7 +2995,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -3003,7 +3003,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -3011,7 +3011,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -3019,7 +3019,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -3027,7 +3027,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -3035,7 +3035,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -3043,7 +3043,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -3051,7 +3051,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -3059,7 +3059,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -3067,7 +3067,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -3075,7 +3075,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -3083,7 +3083,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -3091,7 +3091,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -3099,7 +3099,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" } ] }, @@ -3117,7 +3117,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -3125,7 +3125,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -3133,7 +3133,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -3141,7 +3141,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -3149,7 +3149,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -3157,7 +3157,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -3165,7 +3165,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -3173,7 +3173,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -3181,7 +3181,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -3189,7 +3189,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -3197,7 +3197,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -3205,7 +3205,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -3213,7 +3213,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -3221,7 +3221,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -3229,7 +3229,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -3237,7 +3237,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -3245,7 +3245,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -3253,7 +3253,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -3261,7 +3261,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -3269,7 +3269,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -3277,7 +3277,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -3285,7 +3285,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -3293,7 +3293,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -3301,7 +3301,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -3309,7 +3309,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -3317,7 +3317,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -3325,7 +3325,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -3333,7 +3333,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -3341,7 +3341,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -3349,7 +3349,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -3357,7 +3357,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -3365,7 +3365,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -3373,7 +3373,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -3381,7 +3381,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -3389,7 +3389,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -3397,7 +3397,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -3405,7 +3405,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -3413,7 +3413,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -3421,7 +3421,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -3429,7 +3429,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -3437,7 +3437,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -3445,7 +3445,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -3453,7 +3453,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -3461,7 +3461,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -3469,7 +3469,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -3477,7 +3477,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -3485,7 +3485,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -3493,7 +3493,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -3501,7 +3501,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -3509,7 +3509,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -3517,7 +3517,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -3525,7 +3525,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -3533,7 +3533,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -3541,7 +3541,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -3549,7 +3549,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -3557,7 +3557,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -3565,7 +3565,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -3573,7 +3573,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -3581,7 +3581,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -3589,7 +3589,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -3597,7 +3597,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -3605,7 +3605,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -3613,7 +3613,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -3621,7 +3621,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title", @@ -3629,7 +3629,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url", @@ -3637,7 +3637,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner", @@ -3645,7 +3645,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest", @@ -3653,7 +3653,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown", @@ -3661,7 +3661,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating", @@ -3669,7 +3669,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio", @@ -3677,7 +3677,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo", @@ -3685,7 +3685,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown", @@ -3693,7 +3693,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date", @@ -3701,7 +3701,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour", @@ -3709,7 +3709,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly", @@ -3717,7 +3717,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone", @@ -3725,7 +3725,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour", @@ -3733,7 +3733,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio", @@ -3741,7 +3741,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating", @@ -3749,7 +3749,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-2", @@ -3757,7 +3757,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-2", @@ -3765,7 +3765,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-2", @@ -3773,7 +3773,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-2", @@ -3781,7 +3781,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-2", @@ -3789,7 +3789,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-2", @@ -3797,7 +3797,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio_2", @@ -3805,7 +3805,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_2", @@ -3813,7 +3813,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-2", @@ -3821,7 +3821,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-2", @@ -3829,7 +3829,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-2", @@ -3837,7 +3837,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-2", @@ -3845,7 +3845,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-2", @@ -3853,7 +3853,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-2", @@ -3861,7 +3861,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-2", @@ -3869,7 +3869,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-2", @@ -3877,7 +3877,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-3", @@ -3885,7 +3885,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-3", @@ -3893,7 +3893,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-3", @@ -3901,7 +3901,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest-3", @@ -3909,7 +3909,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-3", @@ -3917,7 +3917,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-3", @@ -3925,7 +3925,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio-3", @@ -3933,7 +3933,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo-3", @@ -3941,7 +3941,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-3", @@ -3949,7 +3949,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-3", @@ -3957,7 +3957,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-3", @@ -3965,7 +3965,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-3", @@ -3973,7 +3973,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-3", @@ -3981,7 +3981,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-3", @@ -3989,7 +3989,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-3", @@ -3997,7 +3997,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-3", @@ -4005,7 +4005,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "title-4", @@ -4013,7 +4013,7 @@ "otherCmsType": "singleLine", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Single Line Textbox" + "contentstackFieldType": "Single Line Textbox" }, { "uid": "url-4", @@ -4021,7 +4021,7 @@ "otherCmsType": "urlEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "URL" + "contentstackFieldType": "URL" }, { "uid": "banner-5", @@ -4029,7 +4029,7 @@ "otherCmsType": "assetLinkEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "file" + "contentstackFieldType": "file" }, { "uid": "integerTest5", @@ -4037,7 +4037,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "integerDropDown-5", @@ -4045,7 +4045,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRating-5", @@ -4053,7 +4053,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "integerRadio5", @@ -4061,7 +4061,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalNo_5", @@ -4069,7 +4069,7 @@ "otherCmsType": "numberEditor", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "number" + "contentstackFieldType": "number" }, { "uid": "decimalDropdown-5", @@ -4077,7 +4077,7 @@ "otherCmsType": "dropdown", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "date-5", @@ -4085,7 +4085,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "date12hour-5", @@ -4093,7 +4093,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "dateonly-5", @@ -4101,7 +4101,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone-5", @@ -4109,7 +4109,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "datewithouttimezone12hour-5", @@ -4117,7 +4117,7 @@ "otherCmsType": "datePicker", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "Date" + "contentstackFieldType": "Date" }, { "uid": "decimalRadio-5", @@ -4125,7 +4125,7 @@ "otherCmsType": "radio", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" }, { "uid": "decimalRating-5", @@ -4133,7 +4133,7 @@ "otherCmsType": "rating", "contentstackField": "", "contentstackFieldUid": "", - "ContentstackFieldType": "dropdown" + "contentstackFieldType": "dropdown" } ] } diff --git a/ui/src/components/SchemaModal/index.tsx b/ui/src/components/SchemaModal/index.tsx index d55236a96..fe06078d9 100644 --- a/ui/src/components/SchemaModal/index.tsx +++ b/ui/src/components/SchemaModal/index.tsx @@ -34,58 +34,58 @@ const getTopLevelIcons = (field: FieldMapType) => { experience_container: 'PersonalizationLogoGreySmall' }; - if (field?.ContentstackFieldType === 'Single Line Textbox' || field?.ContentstackFieldType === 'single_line_text') { + if (field?.contentstackFieldType === 'Single Line Textbox' || field?.contentstackFieldType === 'single_line_text') { return icons['title']; } - if (field?.ContentstackFieldType === 'URL' || field?.ContentstackFieldType === 'url') { + if (field?.contentstackFieldType === 'URL' || field?.contentstackFieldType === 'url') { return icons['text']; } - if (field?.ContentstackFieldType === 'tags') { + if (field?.contentstackFieldType === 'tags') { return icons['tag']; } - if (field?.ContentstackFieldType === 'Select' || field?.ContentstackFieldType === 'dropdown') { + if (field?.contentstackFieldType === 'Select' || field?.contentstackFieldType === 'dropdown') { return icons['select']; } - if (field?.ContentstackFieldType === 'Date') { + if (field?.contentstackFieldType === 'Date') { return icons['isodate']; } - if (field?.ContentstackFieldType === 'Multi Line Textbox' || field?.ContentstackFieldType === 'multi_line_text') { + if (field?.contentstackFieldType === 'Multi Line Textbox' || field?.contentstackFieldType === 'multi_line_text') { return icons['multitext']; } - if (field?.ContentstackFieldType === 'HTML Rich text Editor' || field?.ContentstackFieldType === 'html') { + if (field?.contentstackFieldType === 'HTML Rich text Editor' || field?.contentstackFieldType === 'html') { return icons['rte']; } if ( - field?.ContentstackFieldType === 'JSON Rich Text Editor' || - field?.ContentstackFieldType === 'json' + field?.contentstackFieldType === 'JSON Rich Text Editor' || + field?.contentstackFieldType === 'json' ) { return icons['jsonRte']; } - if (field?.ContentstackFieldType === 'Link') { + if (field?.contentstackFieldType === 'Link') { return icons['link']; } - if (field?.ContentstackFieldType === 'Boolean') { + if (field?.contentstackFieldType === 'Boolean') { return icons['boolean']; } - if (field?.ContentstackFieldType === 'Reference' || field?.ContentstackFieldType === 'refernce') { + if (field?.contentstackFieldType === 'Reference' || field?.contentstackFieldType === 'refernce') { return icons['reference']; } - if (!field?.ContentstackFieldType) { + if (!field?.contentstackFieldType) { return icons['blocks']; } - return icons[field?.ContentstackFieldType as keyof Icons]; + return icons[field?.contentstackFieldType as keyof Icons]; }; const TreeView = ({ schema = [] }: schemaType) => { @@ -95,7 +95,7 @@ const TreeView = ({ schema = [] }: schemaType) => { let groupId = ''; const data: FieldMapType[] = []; schema?.forEach((field) => { - if (field?.ContentstackFieldType === 'group') { + if (field?.contentstackFieldType === 'group') { groupId = field?.uid; data?.push({ ...field, child: [] }); } else if (field?.uid?.startsWith(groupId + '.')) { @@ -152,7 +152,7 @@ const TreeView = ({ schema = [] }: schemaType) => { fieldname = field?.uid?.replace(/\.+/g, '_'); } return ( -
  • +
  • - diff --git a/ui/src/components/DestinationStack/DestinationStack.scss b/ui/src/components/DestinationStack/DestinationStack.scss index 27a29f24a..cfe630cec 100644 --- a/ui/src/components/DestinationStack/DestinationStack.scss +++ b/ui/src/components/DestinationStack/DestinationStack.scss @@ -34,6 +34,9 @@ max-height: 130px; padding-bottom: 0; } + .Select__v2 .Select__menu { + max-width: 100%!important; + } } .stackselect { min-width: 600px !important; diff --git a/ui/src/pages/Migration/index.tsx b/ui/src/pages/Migration/index.tsx index ab6b1478b..627b25bf4 100644 --- a/ui/src/pages/Migration/index.tsx +++ b/ui/src/pages/Migration/index.tsx @@ -45,14 +45,6 @@ type LegacyCmsRef = { }; const Migration = () => { - const [projectData, setProjectData] = useState(); - const [isLoading, setIsLoading] = useState(false); - const [curreentStepIndex, setCurrentStepIndex] = useState(0); - const [isCompleted, setIsCompleted] = useState(false); - const [isProjectMapper, setIsProjectMapper] = useState(false); - - const [migrationStarted, setMigrationStarted] = useState(false); - const params: Params = useParams(); const { projectId = '' } = useParams(); const navigate = useNavigate(); @@ -63,6 +55,11 @@ const Migration = () => { const selectedOrganisation = useSelector((state: RootState)=>state?.authentication?.selectedOrganisation); const newMigrationData = useSelector((state:RootState)=> state?.migration?.newMigrationData); const organisationsList = useSelector((state:RootState)=>state?.authentication?.organisationsList); + const [projectData, setProjectData] = useState(); + const [isLoading, setIsLoading] = useState(false); + const [curreentStepIndex, setCurrentStepIndex] = useState(0); + const [isCompleted, setIsCompleted] = useState(false); + const [isProjectMapper, setIsProjectMapper] = useState(false); const saveRef = useRef(null); @@ -73,7 +70,7 @@ const Migration = () => { useEffect(()=> { dispatch(updateNewMigrationData({ ...newMigrationData, - isprojectMapped : isProjectMapper + isprojectMapped: isProjectMapper })); @@ -86,12 +83,10 @@ const Migration = () => { if (status === 201) { return data?.contentTypes; } - } catch (error) { - return error; - + // return error; + console.log(error); } - }; // Function to get exisiting global fields list @@ -102,12 +97,11 @@ const Migration = () => { if (status === 201) { return data?.globalFields; } - } catch (error) { - return error; - + // return error; + console.log(error); + } - } const fetchData = async () => { @@ -182,7 +176,6 @@ const Migration = () => { isNewStack: false }; - selectedStackData = { label: projectData?.stackDetails?.label, value: projectData?.stackDetails?.value, @@ -240,7 +233,7 @@ const Migration = () => { isMigrationComplete: false }, migration_execution: { - migrationStarted: migrationStarted + migrationStarted: projectData?.isMigrationStarted }, stackDetails: projectData?.stackDetails, testStacks: projectData?.test_stacks, @@ -251,7 +244,6 @@ const Migration = () => { setIsProjectMapper(false); }; - const createStepper = (projectData: MigrationResponse,handleStepChange: (currentStep: number) => void) => { const steps = [ { @@ -414,6 +406,7 @@ const Migration = () => { } }; + // handle on proceed to Test Migration const handleOnClickContentMapper = async (event: MouseEvent) => { // setIsModalOpen(true); @@ -453,6 +446,7 @@ const Migration = () => { } + // handle on proceed to Final Migration const handleOnClickTestMigration = async () => { setIsLoading(false); @@ -463,17 +457,15 @@ const Migration = () => { handleStepChange(4); } + // handle to start Final Migration process const handleOnClickMigrationExecution = async () => { setIsLoading(true); try { const migrationRes = await startMigration(newMigrationData?.destination_stack?.selectedOrg?.value, projectId); - console.log("migrationRes", migrationRes); - if (migrationRes?.status === 200) { setIsLoading(false); - setMigrationStarted(true) Notification({ notificationContent: { text: 'Migration Execution process started' }, notificationProps: { @@ -482,16 +474,18 @@ const Migration = () => { }, type: 'message' }); + + const newMigrationDataObj: INewMigration = { + ...newMigrationData, + migration_execution: { ...newMigrationData?.migration_execution, migrationStarted: true } + }; + + dispatch(updateNewMigrationData((newMigrationDataObj))); } } catch (error) { - return error; + // return error; + console.log(error); } - - const newMigrationDataObj: INewMigration = { - ...newMigrationData, - migration_execution: {migrationStarted: true} - }; - dispatch(updateNewMigrationData((newMigrationDataObj))); } const changeDropdownState = () =>{ @@ -514,7 +508,7 @@ const Migration = () => { return (
    {projectData && - + }
    From 472bcc6094d0576e33b090886c3a3ade2cfe38e3 Mon Sep 17 00:00:00 2001 From: Sayali Joshi Date: Tue, 5 Nov 2024 19:26:29 +0530 Subject: [PATCH 3/5] Added top margin for Settings icon --- ui/src/components/SideBar/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/SideBar/index.tsx b/ui/src/components/SideBar/index.tsx index 149ca958a..fab599645 100644 --- a/ui/src/components/SideBar/index.tsx +++ b/ui/src/components/SideBar/index.tsx @@ -20,7 +20,7 @@ const SideBar = ({projectId}: SettingIconProp) => {
    {location.pathname.includes('/projects/') && - + From c40a4ff15f4e66a5864b26e48a263ec36ae6835e Mon Sep 17 00:00:00 2001 From: Sayali Joshi Date: Wed, 6 Nov 2024 13:16:02 +0530 Subject: [PATCH 4/5] [CMG-348] - Test migration | Test stack created, its name should be given stack name + test something like this, now its showing 'test-1' --- api/src/services/migration.service.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/api/src/services/migration.service.ts b/api/src/services/migration.service.ts index b3def8e4c..c7cd93c7d 100644 --- a/api/src/services/migration.service.ts +++ b/api/src/services/migration.service.ts @@ -31,10 +31,9 @@ const createTestStack = async (req: Request): Promise => { const srcFun = "createTestStack"; const orgId = req?.params?.orgId; const projectId = req?.params?.projectId; - const { token_payload } = req.body; + const { name, token_payload } = req.body; const description = 'This is a system-generated test stack.' - const name = 'Test'; - + const testStackName = `${name}-Test`; try { const authtoken = await getAuthtoken( @@ -46,7 +45,7 @@ const createTestStack = async (req: Request): Promise => { const projectData: any = ProjectModelLowdb.chain.get("projects").find({ id: projectId }).value(); const master_locale = projectData?.stackDetails?.master_locale ?? Object?.keys?.(LOCALE_MAPPER?.masterLocale)?.[0]; const testStackCount = projectData?.test_stacks?.length + 1; - const newName = name + "-" + testStackCount; + const newName = testStackName + "-" + testStackCount; const [err, res] = await safePromise( https({ From 3449a9f4ec0149c99109b398de3ea19162d213f7 Mon Sep 17 00:00:00 2001 From: Sayali Joshi Date: Wed, 6 Nov 2024 17:37:35 +0530 Subject: [PATCH 5/5] [CMG-349] - Test Migration | While test migration is In Progress, when click on Content mapping module step, it navigates to that module which is incorrect. --- .../Stepper/HorizontalStepper/HorizontalStepper.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/src/components/Stepper/HorizontalStepper/HorizontalStepper.tsx b/ui/src/components/Stepper/HorizontalStepper/HorizontalStepper.tsx index 33ed4955b..adc74fc38 100644 --- a/ui/src/components/Stepper/HorizontalStepper/HorizontalStepper.tsx +++ b/ui/src/components/Stepper/HorizontalStepper/HorizontalStepper.tsx @@ -192,8 +192,10 @@ const HorizontalStepper = forwardRef( : ''; const disableStep = newMigrationData?.isprojectMapped && stepsCompleted.includes(idx) && idx !== showStep ? 'disableEvents' : ''; + + const currentTestStack = newMigrationData?.testStacks?.find((stack) => stack?.stackUid === newMigrationData?.test_migration?.stack_api_key); - const completeDisable = stepsCompleted?.includes(idx) && idx < stepIndex - 1 && newMigrationData?.test_migration?.isMigrationStarted ? 'disableEvents' : ''; + const completeDisable = stepsCompleted?.includes(idx) && currentTestStack?.isMigrated === true ? 'disableEvents' : ''; const disableMapper = stepsCompleted?.includes(idx) && idx === 2 && newMigrationData?.test_migration?.isMigrationStarted && !newMigrationData?.test_migration?.isMigrationComplete ? 'disableEvents' : '';