@@ -1551,7 +1571,8 @@ const ContentMapper = forwardRef(({handleStepChange}: contentMapperProps, ref: R
isDisabled={OptionValue?.isDisabled || newMigrationData?.project_current_step > 4}
/>
- {(!OptionValue?.isDisabled || OptionValue?.label === 'Dropdown') && (
+ {(!OptionValue?.isDisabled || OptionValue?.label === 'Dropdown'||
+ (data?.backupFieldType !== 'extension' && data?.backupFieldType !== 'app')) && (
ct?.id === selectedContentType?.id ? { ...ct, status: data?.data?.status } : ct
);
diff --git a/ui/src/components/LegacyCms/Actions/LoadUploadFile.tsx b/ui/src/components/LegacyCms/Actions/LoadUploadFile.tsx
index 21e235e7b..030aacfbd 100644
--- a/ui/src/components/LegacyCms/Actions/LoadUploadFile.tsx
+++ b/ui/src/components/LegacyCms/Actions/LoadUploadFile.tsx
@@ -88,6 +88,7 @@ const LoadUploadFile = (props: LoadUploadFileProps) => {
const [processing, setProcessing] = useState('');
//const [isCancelLoading, setIsCancelLoading] = useState(false);
//const [setIsFormatValid] = useState(false);
+ const [affix, setAffix] = useState(newMigrationData?.legacy_cms?.affix);
const { projectId = '' } = useParams();
@@ -409,6 +410,7 @@ const LoadUploadFile = (props: LoadUploadFileProps) => {
useEffect(() => {
newMigrationDataRef.current = newMigrationData;
+ setAffix(newMigrationData?.legacy_cms?.affix);
}, [newMigrationData]);
const sanitizedCmsType = cmsType?.toLowerCase().replace(/[^\w\s-]/g, '');
@@ -477,7 +479,7 @@ const LoadUploadFile = (props: LoadUploadFileProps) => {
isLoading={isLoading}
loadingColor="#6c5ce7"
version="v2"
- disabled={isDisabled}
+ disabled={isDisabled || isEmptyString(affix)}
>
Validate File
diff --git a/ui/src/components/LogScreen/index.tsx b/ui/src/components/LogScreen/index.tsx
index 800fb5277..d595004ec 100644
--- a/ui/src/components/LogScreen/index.tsx
+++ b/ui/src/components/LogScreen/index.tsx
@@ -40,13 +40,14 @@ type LogsType = {
* @param {string} projectId - The project ID for saving state to local storage.
*/
const TestMigrationLogViewer = ({ serverPath, sendDataToParent,projectId }: LogsType) => {
- const [logs, setLogs] = useState([{ message: "Migration logs will appear here once the process begins.", level: ''}]);
+ const [isLogsLoading, setisLogsLoading] = useState(false)
+ const [logs, setLogs] = useState([{ message: !isLogsLoading ? "Migration logs will appear here once the process begins." : '', level: ''}]);
const newMigrationData = useSelector((state: RootState) => state?.migration?.newMigrationData);
const [migratedStack, setmigratedSatck] = useState(
(newMigrationData?.testStacks ?? [])?.find((test) => test?.stackUid === newMigrationData?.test_migration?.stack_api_key));
- const [isLogsLoading, setisLogsLoading] = useState(false)
+
// Redux dispatcher
const dispatch = useDispatch();
@@ -93,7 +94,10 @@ const TestMigrationLogViewer = ({ serverPath, sendDataToParent,projectId }: Logs
console.log("error in parsing logs : ", error);
}
});
- setLogs((prevLogs) => [...prevLogs, ...parsedLogsArray]);
+ setLogs((prevLogs) =>
+ [...prevLogs.filter(log => log.message !== "Migration logs will appear here once the process begins."),
+ ...parsedLogsArray]
+ );
})
return () => {
socket.disconnect(); // Cleanup on component unmount
diff --git a/ui/src/components/TestMigration/index.tsx b/ui/src/components/TestMigration/index.tsx
index 80a1ffcd5..02b62d9d5 100644
--- a/ui/src/components/TestMigration/index.tsx
+++ b/ui/src/components/TestMigration/index.tsx
@@ -161,7 +161,19 @@ const TestMigration = () => {
// Update migration data in Redux
const newMigrationDataObj: INewMigration = {
...newMigrationData,
- test_migration: { ...newMigrationData?.test_migration, stack_link: res?.data?.data?.url, stack_api_key: res?.data?.data?.data?.stack?.api_key, stack_name: res?.data?.data?.data?.stack?.name }
+ test_migration: {
+ ...newMigrationData?.test_migration,
+ stack_link: res?.data?.data?.url,
+ stack_api_key: res?.data?.data?.data?.stack?.api_key,
+ stack_name: res?.data?.data?.data?.stack?.name },
+ testStacks:[
+ ...(newMigrationData.testStacks),
+ {
+ stackUid: res?.data?.data?.data?.stack?.api_key,
+ stackName: res?.data?.data?.data?.stack?.name,
+ isMigrated: false
+ }
+ ]
};
dispatch(updateNewMigrationData((newMigrationDataObj)));
}
diff --git a/ui/src/services/api/upload.service.ts b/ui/src/services/api/upload.service.ts
index 0b5f29254..159aa43c3 100644
--- a/ui/src/services/api/upload.service.ts
+++ b/ui/src/services/api/upload.service.ts
@@ -71,7 +71,7 @@ export const getConfig = async() => {
export const getRestrictedKeywords = async () => {
try {
- return await getCall(`https://dev18-api.csnonprod.com/v3/restricted_uids`);
+ return await getCall(`https://api.contentstack.io/v3/restricted_uids`);
} catch (error) {
if (error instanceof Error) {
throw new Error(`${error.message}`);
diff --git a/upload-api/migration-contentful/libs/contentTypeMapper.js b/upload-api/migration-contentful/libs/contentTypeMapper.js
index 4d250003b..2e0bb7197 100644
--- a/upload-api/migration-contentful/libs/contentTypeMapper.js
+++ b/upload-api/migration-contentful/libs/contentTypeMapper.js
@@ -1,6 +1,7 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const restrictedUid = require('../utils/restrictedKeyWords');
+const appDetails = require('../utils/apps/appDetails.json')
/**
* Corrects the UID by applying a custom affix and sanitizing the string.
@@ -68,13 +69,13 @@ const extractAdvancedFields = (
return {
default_value: defaultText,
validationRegex: regrexValue,
- mandatory: ["title", "url"].includes(item.id)? true : item?.required,
+ mandatory: ["title", "url"].includes(item.id) ? true : item?.required,
multiple: singleRef,
unique: uniqueValue,
nonLocalizable: !(item?.localized === true),
validationErrorMessage: validationErrorMessage,
embedObjects: referenceFields.length ? referenceFields : undefined,
- description:description,
+ description: description,
};
};
@@ -131,7 +132,7 @@ const createDropdownOrRadioFieldObject = (item, fieldType) => {
choices.push({ value: 'value', key: 'key' });
} else {
item.validations.forEach((valid) => {
- valid.in?.forEach((value) => choices.push({ value: ["Symbol","Text","Array" ].includes(item.type) ? `${value}`: value, key: `${value}` }));
+ valid.in?.forEach((value) => choices.push({ value: ["Symbol", "Text", "Array"].includes(item.type) ? `${value}` : value, key: `${value}` }));
});
}
return {
@@ -188,6 +189,10 @@ const contentTypeMapper = (data) => {
case 'radio':
acc.push(createDropdownOrRadioFieldObject(item, item.widgetId));
break;
+ case 'tagEditor':
+ case 'listInput':
+ console.info('tag', item);
+ break;
}
break;
case 'Integer':
@@ -217,12 +222,21 @@ const contentTypeMapper = (data) => {
case 'Array':
case 'Link':
switch (item.widgetId) {
+ case 'assetLinkEditor':
case 'assetLinksEditor':
case 'assetGalleryEditor':
- acc.push(createFieldObject(item, 'file', 'file'));
+ if (item.type === 'Array') {
+ const data = createFieldObject(item, 'file', 'file');
+ data.advanced.multiple = true;
+ acc.push(data);
+ } else {
+ acc.push(createFieldObject(item, 'file', 'file'));
+ }
break;
case 'entryLinksEditor':
+ case 'entryLinkEditor':
+ case 'entryCardEditor':
case 'entryCardsEditor': {
let referenceFields = [];
let commonRef = [];
@@ -248,7 +262,7 @@ const contentTypeMapper = (data) => {
});
} else {
referenceFields =
- item?.contentNames?.length < 25 ? item?.contentNames
+ item?.contentNames?.length < 25 ? item?.contentNames
: item?.contentNames?.slice(0, 9);
}
} else {
@@ -265,7 +279,7 @@ const contentTypeMapper = (data) => {
});
} else {
referenceFields =
- item.contentNames?.length < 25 ? item?.contentNames
+ item.contentNames?.length < 25 ? item?.contentNames
: item?.contentNames?.slice(0, 9);
}
}
@@ -276,16 +290,21 @@ const contentTypeMapper = (data) => {
acc.push(createDropdownOrRadioFieldObject(item, item.widgetId));
break;
case 'tagEditor':
- acc.push(createFieldObject(item, 'json', 'json'));
+ case 'listInput': {
+ acc.push(createFieldObject(item, 'extension', 'extension'))
break;
+ }
}
break;
case 'Boolean':
acc.push(createFieldObject(item, 'boolean', 'boolean'));
break;
- case 'Object':
- acc.push(createFieldObject(item, 'json', 'json'));
+ case 'Object': {
+ const findAppMeta = appDetails?.items?.find((ele) => ele?.sys?.id === item?.widgetId);
+ item.name = `${item?.name} (${findAppMeta?.name}-App)`;
+ acc.push(createFieldObject(item, 'app', 'app'));
break;
+ }
case 'Location': {
acc.push(createFieldObject(item, 'group', 'group'));
acc.push({
diff --git a/upload-api/migration-contentful/libs/createInitialMapper.js b/upload-api/migration-contentful/libs/createInitialMapper.js
index 0056891fe..173b311d7 100644
--- a/upload-api/migration-contentful/libs/createInitialMapper.js
+++ b/upload-api/migration-contentful/libs/createInitialMapper.js
@@ -73,41 +73,41 @@ const createInitialMapper = async () => {
path.resolve(process.cwd(), `${config.data}/${config.contentful.contentful}/${file}`)
);
const title = file.split('.')[0];
-
+
const contentTypeObject = {
status: 1,
isUpdated: false,
updateAt: '',
otherCmsTitle: title,
- otherCmsUid: data[0]?.contentUid,
+ otherCmsUid: data[0]?.contentfulID,
contentstackTitle: title.charAt(0).toUpperCase() + title.slice(1),
contentstackUid: uidCorrector(data[0]?.contentUid),
type: 'content_type',
fieldMapping: []
};
const uidTitle = [
- {
- uid: 'title',
- otherCmsField: 'title',
- otherCmsType: 'text',
- contentstackField: 'title',
- contentstackFieldUid: 'title',
- contentstackFieldType: 'text',
- backupFieldType: 'text',
- advanced:{ mandatory:true}
- },
- {
- uid: 'url',
- otherCmsField: 'url',
- otherCmsType: 'text',
- contentstackField: 'Url',
- contentstackFieldUid: 'url',
- contentstackFieldType: 'url',
- backupFieldType: 'url',
- advanced:{ mandatory:true}
- }
- ];
- const dataArray = data.filter((item) => item.id!=='title' && item.id !== 'url');
+ {
+ uid: 'title',
+ otherCmsField: 'title',
+ otherCmsType: 'text',
+ contentstackField: 'title',
+ contentstackFieldUid: 'title',
+ contentstackFieldType: 'text',
+ backupFieldType: 'text',
+ advanced: { mandatory: true }
+ },
+ {
+ uid: 'url',
+ otherCmsField: 'url',
+ otherCmsType: 'text',
+ contentstackField: 'Url',
+ contentstackFieldUid: 'url',
+ contentstackFieldType: 'url',
+ backupFieldType: 'url',
+ advanced: { mandatory: true }
+ }
+ ];
+ const dataArray = data.filter((item) => item.id !== 'title' && item.id !== 'url');
const contentstackFields = [...uidTitle, ...contentTypeMapper(dataArray)].filter(
Boolean
);
diff --git a/upload-api/migration-contentful/utils/apps/appDetails.json b/upload-api/migration-contentful/utils/apps/appDetails.json
new file mode 100644
index 000000000..2d7619fd0
--- /dev/null
+++ b/upload-api/migration-contentful/utils/apps/appDetails.json
@@ -0,0 +1,11293 @@
+{
+ "sys": {
+ "type": "Array"
+ },
+ "total": 99,
+ "items": [
+ {
+ "sys": {
+ "id": "6tLfWB4Y2ppAmKynXo4STi",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "78VS3MWLI40BF1TzF206cD"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-01-27T10:09:30.721Z",
+ "updatedAt": "2024-03-05T19:20:23.990Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "78UP2gMaShITMmFWzp6ZD1"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "78UP2gMaShITMmFWzp6ZD1"
+ }
+ }
+ },
+ "name": "A-sync Publication Manager (Marketplace)",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6NETxlMNCYcgwwTeCmuqTL"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "7CsrDDzb0WDqWgakHyfJdY",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "3WcMEN2rEin3ZZPsoF8Lz0"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-14T19:49:23.931Z",
+ "updatedAt": "2023-05-02T15:59:57.914Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3W9pkJkQkz56EL4hsjvm2W"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3W9pkJkQkz56EL4hsjvm2W"
+ }
+ }
+ },
+ "name": "Acclaro Translations",
+ "src": "https://ctf-translations.acclaro-apps.com/frontend/index.html",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Acclaro Translations",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "6RGLVmXYrGaIIRIda1HwAC",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-10T00:02:15.750Z",
+ "updatedAt": "2025-01-31T19:54:58.984Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "549ZG41aazTYkABSEvfRyA"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Adapt Essentials Bulk Asset Fields",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3fa8kKWRMBk9K200X0xh8e"
+ }
+ },
+ "locations": [
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Adapt Essentials Bulk Asset Fields",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "home"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "3iszK8Gl7aaxLvxGyCOhgA",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-03-27T20:14:47.291Z",
+ "updatedAt": "2024-11-20T23:45:15.094Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6iUaAfJg2ZoKe4oEYF7kxe"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "AI Content Generator",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "66LlxbQubgBbmO7UjuQXQn"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "3RheWQRagirMFgWrhMOBxL",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-08-01T18:43:48.712Z",
+ "updatedAt": "2024-09-25T16:03:48.103Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FJf3IvgmQotV5As5zpGhc"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "AI Image Generator",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "2oIeB0suYvcMq0vp3iDHfD"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "5bWaMz0w0jPWvYmkgcVCX3",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-02-12T15:27:52.465Z",
+ "updatedAt": "2020-04-27T12:26:41.444Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5FvvIcNbfAn7SPSO97fIMp"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NItczv8FWvPn5UTJpTOMM"
+ }
+ }
+ },
+ "name": "AI Image Tagging",
+ "src": "https://ai-image-tagging.ctfapps.net/frontend/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5iQYfM7S9CWFeywx0lrF6A",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "3HXcJCikRb72JNTFI0kUEI"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-24T10:25:25.169Z",
+ "updatedAt": "2024-09-02T12:47:22.963Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5CawfuQcCBeg31D5FjPxYG"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5CawfuQcCBeg31D5FjPxYG"
+ }
+ }
+ },
+ "name": "Alt Text AI",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "sjvZ8VI5Gl9dNGZxg6Thd"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "AltText.ai: Bulk Update",
+ "path": "/Page"
+ }
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "jTed08LvhkveeUoBpJOim",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-25T16:14:16.679Z",
+ "updatedAt": "2024-10-28T19:41:52.339Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0VYEozm0sWFT6Wee4Zm9Dn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Amazon Bedrock Content Generator",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "5YBzEzuBdpUFXkf4LPCad8"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "5HVpneN2ZR6uYrOs2TOumr",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4J91ewqssC6Q5X8EkneCGX"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-25T00:15:37.655Z",
+ "updatedAt": "2025-01-23T02:27:41.845Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4J52AcomYtlp9LGabXlCrR"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6HJDZrUnh9Nc0a3JErpOqa"
+ }
+ }
+ },
+ "name": "Amplitude",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4UVBDXiCpT3oH85Vh7PoIl"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "4OxLnZ6demuSG0dz7rgcEB",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "6jM5PF1GV3gL8H96Q4b1px"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-06-21T14:15:44.474Z",
+ "updatedAt": "2023-12-26T15:15:44.100Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6jL2ThWHHumVn8ZQIZLDM7"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6jL2ThWHHumVn8ZQIZLDM7"
+ }
+ }
+ },
+ "name": "api.video",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6fcnBg5UfR7ql11szgwbMX"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "RkD9DMLgnqahWzcYyQ0RI",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "1UCeHE7rmDOdfNcgpCN3z2"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-04-12T13:44:32.948Z",
+ "updatedAt": "2023-08-09T19:07:58.814Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0DBVatr5nHZC18z9wRBGd3"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0DBVatr5nHZC18z9wRBGd3"
+ }
+ }
+ },
+ "name": "Aprimo App",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "2f8I1i02IKmVOvMDt3aJPM"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "26OUmTSqwgnCTM5BnkJL83",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4jYjoMK3b0oP9MJWtwACRJ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-07-20T19:58:11.391Z",
+ "updatedAt": "2024-11-13T15:48:26.522Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5jA82i8PO6yYxpusZflUuH"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5jA82i8PO6yYxpusZflUuH"
+ }
+ }
+ },
+ "name": "Arboretum",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "7khrwvd7hneLQJWeU2JCpg"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Arboretum",
+ "path": "/"
+ }
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "home"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "1mVogDvuE0GuW4qp4dk4zQ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-06-15T15:45:53.638Z",
+ "updatedAt": "2024-12-12T04:15:29.920Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FJf3IvgmQotV5As5zpGhc"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "AWS Amplify",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "1m3ZeDMfTiS1BDNB6vmknB"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5KVbHTjQJT7XGrAy7bLIlC",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7ujDWYE18wGkFkP8NeByHh"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-10-04T08:46:53.481Z",
+ "updatedAt": "2022-02-14T08:47:21.274Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "560u6wCl1rlKFX3XwBCshV"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "20n37hdJoDPFuPMRmCt0Q0"
+ }
+ }
+ },
+ "name": "BigCommerce app",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6nUzTxsGKY9uhqUpmsxyNJ"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "4yuhN91ClorVNMXVseJB6r",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5QWhpfISjlF5wNbZ4rkmQk"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-04-24T12:45:14.843Z",
+ "updatedAt": "2023-05-12T10:27:09.812Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "69AXBWNchCjNtMvSvl9h0a"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "69AXBWNchCjNtMvSvl9h0a"
+ }
+ }
+ },
+ "name": "Brand Guardian",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "12HEPsBjXjPqOi4zXp985t"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "bgBVVuNbfvUW5tpFnD20s",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-02-24T15:04:26.697Z",
+ "updatedAt": "2024-12-12T04:10:42.788Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "29B6zorz8plUCN1auThiVH"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Brandfolder",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "7BeVVNCDi4PPoW8RSHjzrN"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "5KySdUzG7OWuCE2V3fgtIa",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T12:42:27.828Z",
+ "updatedAt": "2025-01-31T19:54:58.598Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Bynder",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "55On2kbzFcx1LqZsrUFquX"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "2POIRORfxypO5JsgvufCiZ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-05-29T16:49:41.594Z",
+ "updatedAt": "2025-01-31T19:55:11.338Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FNJe2xmShG6mc5Cqsy6eW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Bynder Content Workflow",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "2GxbNv54GEeSdFE6go7FLX"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Bynder Content Workflow",
+ "path": "/"
+ }
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "3ts0Y8tta9da2qV0qQSoZG",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-05-26T12:51:54.718Z",
+ "updatedAt": "2025-01-31T19:55:10.295Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2RZLldkv24PyQMDfNG56Bb"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Ceros",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4tCJZGeRRpumT4DX6BotMu"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Content Type ID",
+ "description": "The ID of the content type that this app save Ceros Experiences to.",
+ "id": "contentTypeId",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "Title Field ID",
+ "description": "Field ID (on the content model specified in 'contentModelId') for the title of the Ceros Experience.",
+ "id": "titleFieldId",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "URL Field ID",
+ "description": "Field ID (on the content model specified in 'contentModelId') for the URL of the Ceros Experience.",
+ "id": "urlFieldId",
+ "type": "Symbol"
+ },
+ {
+ "name": "Embed Code Field ID",
+ "description": "Field ID (on the content model specified in 'contentModelId') for the embed code of the Ceros Experience.",
+ "id": "embedCodeFieldId",
+ "type": "Symbol",
+ "required": true
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "8dgJSrhUhRsKzRKz4oNbW",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5u1hLJSfU79YOdpNtySNat"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-16T12:41:41.277Z",
+ "updatedAt": "2023-02-20T05:48:06.273Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ }
+ },
+ "name": "Cloudimage by Scaleflex",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "jBhp8AzIZeXrfI0zeJWlJ"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "zjcnWgBknf9zB7IM9HZjE",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T12:40:36.439Z",
+ "updatedAt": "2025-01-31T19:55:10.703Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Cloudinary",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6FhbjuO8cHcYuhDVTlDSCt"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "4Vy3oAINwRgnxakoTz06tG",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-09-19T14:36:12.034Z",
+ "updatedAt": "2024-12-12T04:07:24.722Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2kPIZqSR5zjoujwXVx3dqK"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Color Picker",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "BPUQeVUgmogGJyeQ4zrBo"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Allow custom value",
+ "default": true,
+ "id": "withCustomValue",
+ "type": "Boolean",
+ "labels": {}
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "1ENTlXR17q1veUn74QF9ns",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "41cviVbFZhsyGL7zXM0N1b"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-12-10T08:25:13.578Z",
+ "updatedAt": "2024-11-08T10:22:30.987Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4lnZtuZtUG8pqyhaQattvb"
+ }
+ }
+ },
+ "name": "Commerce Layer",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "KPiXheMx4f3O9e8Nm9N6m"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "default": "skus",
+ "name": "Resource",
+ "options": [
+ {
+ "skus": "Skus"
+ },
+ {
+ "bundles": "Bundles"
+ },
+ {
+ "sku_lists": "SKU lists"
+ },
+ {
+ "markets": "Markets"
+ }
+ ],
+ "description": "Select which resource you want to get from Commerce Layer",
+ "id": "resource",
+ "type": "Enum",
+ "labels": {}
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "3GBoHfsPvqyV74chvKCzNP",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0Ri9IrGVAtHGIMIwTwtXr1"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-12-16T01:38:40.267Z",
+ "updatedAt": "2021-12-17T17:59:31.453Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0R27Cf3qXKc6BpvM7Ci8l9"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0R27Cf3qXKc6BpvM7Ci8l9"
+ }
+ }
+ },
+ "name": "Commerce.js App",
+ "src": "https://contentful-app.chec.io/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "7yUlnpgAofvRDee0n6Ocv2",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-12-04T09:35:42.602Z",
+ "updatedAt": "2024-12-12T03:58:13.108Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Commercetools",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3ugsvOg1UjQN6bznZq0y4u"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "4TVVNA8Ske9pUajCsEXTly",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "6stNN8XMtvIWzLchRHV7GI"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-10-12T11:54:55.656Z",
+ "updatedAt": "2023-12-12T09:45:09.036Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5zswZwDK3vwrhiQKxwc9Db"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5zswZwDK3vwrhiQKxwc9Db"
+ }
+ }
+ },
+ "name": "Conditional Fields",
+ "src": "https://conditional-fields-app-production.netlify.app",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "Date"
+ },
+ {
+ "type": "Boolean"
+ },
+ {
+ "type": "Integer"
+ },
+ {
+ "type": "Number"
+ },
+ {
+ "type": "RichText"
+ },
+ {
+ "type": "Location"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "6ZBUT0ZhkMRAZ7C1KNtbBk",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5BAUF0LQ64OqOEs9hHF7Qz"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-09-03T09:56:48.416Z",
+ "updatedAt": "2023-11-01T13:14:27.120Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5BxXAzpRsCxKLeeFJe9bFd"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5BxXAzpRsCxKLeeFJe9bFd"
+ }
+ }
+ },
+ "name": "Crowdin",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "XU2X5bNtbkkL5NN4IWPqF"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Project ID",
+ "description": "Crowdin Project ID (can be found in Project -> Tools -> API)",
+ "id": "projectId",
+ "type": "Number",
+ "required": true
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "57yilZEN9oBolHz9vD6jwY",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5NC6Cypz4leJZnIweXydYZ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-11-21T19:14:13.271Z",
+ "updatedAt": "2023-01-04T07:50:26.877Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NxhJi8jFFu0Q5TtqyBJI5"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NxhJi8jFFu0Q5TtqyBJI5"
+ }
+ }
+ },
+ "name": "Digizuite DAM",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3Ddhfg3gD4xcWzuD9UROmq"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Digizuite MM URL",
+ "description": "Provide your media manager embedded URL",
+ "default": "https://dmo10-mm.digizuitedam.com/embedded/",
+ "id": "digizuiteMmUrl",
+ "type": "Symbol"
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "4tDyevo7sMwvZhDGKzFHVw",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2025-01-08T18:11:25.804Z",
+ "updatedAt": "2025-01-31T19:55:21.389Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1TxB84jpuvrlDUiXNmjAnk"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Docs to Rich Text",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "1CdS7ioTlUoESJvsHpEHgq"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "RichText"
+ }
+ ]
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "6YdAwxoPHopeTeuwh43UJu",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-11-13T15:12:53.401Z",
+ "updatedAt": "2024-12-12T03:54:39.597Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Dropbox",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4v8nupiM6QKbO8TtSJj1oK"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "6JCQ2X5GbvJ4xRGEJbWIrz",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "1JMZ8tf4t7c5mnKzAELjRD"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-02-22T13:29:05.836Z",
+ "updatedAt": "2024-02-12T13:37:38.510Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1JKGArcrenIZjNrFPEXnxL"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1JKGArcrenIZjNrFPEXnxL"
+ }
+ }
+ },
+ "name": "EasyTranslate",
+ "src": "https://contentful-app.easytranslate.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "EasyTranslate",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "2NHTUlzatPT8jLceaVpkG5",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "06jjPu1EENrkBYwR2X37wJ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-07-05T12:08:08.382Z",
+ "updatedAt": "2024-12-04T09:03:08.087Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "065tcZyXh4M0Lj7LQGal9f"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "065tcZyXh4M0Lj7LQGal9f"
+ }
+ }
+ },
+ "name": "emporix",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "Mmk1l7wy0kjK0QVjwwPjr"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "7EFM8G3tm6fJwrsPRL0VpW",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-10-28T21:47:52.085Z",
+ "updatedAt": "2025-01-31T19:55:22.313Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "24lQRrtm3GTwuPHzmOqcFY"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Eppo",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4ESGEzGXoDovOUwD348Rs5"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {
+ "instance": [],
+ "installation": [
+ {
+ "name": "Eppo API Key",
+ "id": "eppoApiKey",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "Default Entity ID",
+ "type": "Number",
+ "id": "defaultEntityId"
+ },
+ {
+ "name": "Default Assignment Source ID",
+ "type": "Number",
+ "id": "defaultAssignmentSourceId"
+ },
+ {
+ "name": "Eppo API Base URL",
+ "id": "eppoApiBaseUrl",
+ "type": "Symbol",
+ "required": true
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "7GbS2x3SdVh7D2hb1FFsS6",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-27T16:38:03.221Z",
+ "updatedAt": "2025-01-31T19:55:21.908Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "FlexFields",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4bdHOGjNjrUGUzsScRnt4J"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5wHGALSJtz7y2EQOLfGhKH",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-11-13T15:14:21.970Z",
+ "updatedAt": "2024-12-12T03:50:27.317Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Frontify",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6QmWeg6X7mplYaVOORmlau"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "2K5TL6cBI8hXXRvuDvg1K",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4noCerPY9pAzAwYUXcWMEE"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-09-15T13:07:45.069Z",
+ "updatedAt": "2022-02-14T10:11:11.672Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4nnAK8Q6dCVvPtz8VRVArC"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4nnAK8Q6dCVvPtz8VRVArC"
+ }
+ }
+ },
+ "name": "Frosmo Segments",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4w6N8nK38uOMwV1OoT6sgE"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "4kJlo5koeq6SSrirCFQAeJ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7pw414MkO7J58dWK105e0u"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-23T21:54:41.281Z",
+ "updatedAt": "2020-10-23T21:54:41.281Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3SUN5V3fIJSPUEbu8EDepA"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3SUN5V3fIJSPUEbu8EDepA"
+ }
+ }
+ },
+ "name": "GlobalLink Connect",
+ "src": "https://gl-contentful.translations.com/marketplace/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GlobalLink Connect",
+ "path": "/globallink"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "5DlxOS0KvGS1Wk362xgvbN",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-17T22:10:38.871Z",
+ "updatedAt": "2024-12-17T22:46:44.282Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Google Analytics 4",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "VIr4O387Fuw3MsJwWkmCU"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "4fD58pKkn4Tdlm7IW9FbvK",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "6tedZUtnDb5ugxASlwKsmz"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-09-21T19:57:43.796Z",
+ "updatedAt": "2023-10-05T18:37:33.749Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6t4JdmDzUzpppfl8710tKf"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6t4JdmDzUzpppfl8710tKf"
+ }
+ }
+ },
+ "name": "GPI Translation Services Connector",
+ "src": "https://contentful.globalizationpartners.com/",
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GPI Translation Services Connector",
+ "path": "/gpi-tsc"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Auth Token",
+ "description": "Auth Token",
+ "default": "",
+ "id": "authToken",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "secretKey",
+ "id": "secretKey",
+ "type": "Symbol",
+ "required": true
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "6o8NJOeW54fY2UYY8zQUZY",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-08-15T21:07:30.751Z",
+ "updatedAt": "2025-01-21T21:13:45.907Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FNJe2xmShG6mc5Cqsy6eW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "GraphiQL",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "73xzvb2f2hBsNrd6SmQOqh"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GraphiQL",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "66frtrAqmWSowDJzQNDiD",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-18T12:40:08.484Z",
+ "updatedAt": "2025-01-21T21:09:51.178Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6dV4yzcXnTFJpBQNTwolmx"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "GraphQL Playground",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "5PU7QvhB9REZTiOd5VqorB"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GraphQL Playground",
+ "path": "/graphql"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "2m6GPV4H181rNthvN0yxdJ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-12-10T17:33:24.519Z",
+ "updatedAt": "2025-01-31T19:55:32.302Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1TxB84jpuvrlDUiXNmjAnk"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "GrowthBook Experiment",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6TMDCMeZ7auO6EVJyPxxJr"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "342Q2DqCjmsdN5BJCEPkrJ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-10-01T09:21:49.757Z",
+ "updatedAt": "2025-01-21T21:05:59.716Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Image Focal Point",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "H8Fs4Mxz7w5lYyozY2tKK"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "3BGvGx9eF1bYGJw7tmHdXv",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-11-20T20:51:38.909Z",
+ "updatedAt": "2025-01-31T19:55:32.009Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2cesFtOix28UbXshy4iXK8"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Image Hotspot Creator",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "zPnHdZOjqEbeXunoXEzaL"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "7v6c0ylAgt7KSAmgedz4ed",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0XenNsx0QCqtKgZsXtiWJk"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-17T00:35:30.734Z",
+ "updatedAt": "2022-08-11T17:23:28.626Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0XdiloXVewCZvwsuNzTocy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0XdiloXVewCZvwsuNzTocy"
+ }
+ }
+ },
+ "name": "imgix",
+ "src": "https://contentful-psi.vercel.app/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "z0uyReYKxjYGR7Aj7DjFc",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "3jnZ6YgPY4u2MQrtKXZ038"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-20T17:00:06.260Z",
+ "updatedAt": "2021-08-23T12:31:57.540Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3jmJyK2gmnvmAykKLpzAEO"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0OqydBwBE7LCTESG8kkZ0G"
+ }
+ }
+ },
+ "name": "IntelligenceBank",
+ "src": "https://contentfulconnector.intelligencebank.com/",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "IntelligenceBank",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "5q6VO8UT97XSTix4gnRbPE",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-03-01T22:55:41.032Z",
+ "updatedAt": "2025-01-31T19:55:32.928Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Intershop",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3PXmdcgKb7rerJVp7ADJaI"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "3tkiX2zjB7aqEiiKX5hRwc",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-01-17T14:29:02.114Z",
+ "updatedAt": "2020-04-27T12:28:08.688Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2jvc3kU4n7OIABiFMTaGyB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NItczv8FWvPn5UTJpTOMM"
+ }
+ }
+ },
+ "name": "Jira",
+ "src": "https://app.jira.ctfapps.net",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "3fLf4DnjbkN1yUA2V2fMgE",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-07-11T15:16:00.763Z",
+ "updatedAt": "2025-01-21T20:58:29.937Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FJf3IvgmQotV5As5zpGhc"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "JSON Viewer",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3LBCSIpWCbmtuGOazPHMDQ"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "znp3ZloaqTn5g5VankRqD",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "2cARw0ayWLd1vWvA3xX3pZ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-03-02T17:42:08.820Z",
+ "updatedAt": "2023-03-08T10:39:04.851Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2cxxu5IH4VwGITxLRg03NB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2cxxu5IH4VwGITxLRg03NB"
+ }
+ }
+ },
+ "name": "Kameleoon",
+ "src": "https://contentful-app.kameleoon.com",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ },
+ {
+ "type": "Integer"
+ },
+ {
+ "type": "Number"
+ },
+ {
+ "type": "Date"
+ },
+ {
+ "type": "Boolean"
+ },
+ {
+ "type": "Location"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "4F6cpGJEuEzZDPTno9nq1f",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7e3UZK73OoV22a7UaWtGZv"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-11-17T19:33:04.159Z",
+ "updatedAt": "2021-12-28T15:27:21.195Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7dRVfKdqcMHRYJwRaifUJn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7dRVfKdqcMHRYJwRaifUJn"
+ }
+ }
+ },
+ "name": "Kibo Commerce",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6sSvqEM7xGmmKkGT81kTXj"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ },
+ {
+ "type": "Integer"
+ },
+ {
+ "type": "Number"
+ },
+ {
+ "type": "Date"
+ },
+ {
+ "type": "Location"
+ },
+ {
+ "type": "Boolean"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "4uUaxd0lfvVJpY7PsmKBb5",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7uWRGc4lv1K36wcfhbdCJF"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-15T02:26:20.922Z",
+ "updatedAt": "2024-01-16T19:43:43.440Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "31XdODbMrVICB7JEdcInIa"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "31XdODbMrVICB7JEdcInIa"
+ }
+ }
+ },
+ "name": "Lilt",
+ "src": "https://storage.googleapis.com/lilt_contentful/index.html?ignoreCache=1",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "10ec9foxs591x36kLhTYT2",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7pFE7su6qcypDfkpytSWYC"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-03-15T07:21:27.107Z",
+ "updatedAt": "2023-03-15T07:24:58.409Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7miHtW58hNWv7IeeY7iCQE"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7miHtW58hNWv7IeeY7iCQE"
+ }
+ }
+ },
+ "name": "Linguiny",
+ "src": "https://contentful-i18n.vercel.app",
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "7tmjHWJ6M0KGqrOKrhHdhe",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "03vYXC72caQvKlMA5tgu1L"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-03-10T08:53:36.303Z",
+ "updatedAt": "2024-08-05T11:53:02.236Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "26cKXW6ey72xUG0NahqVl0"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0IlkG3SeMEfIDd7qVLiybN"
+ }
+ }
+ },
+ "name": "Lionbridge Connector",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "1rDLwN9sFbPwhECR6lXCJe"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Lionbridge Connector",
+ "path": "/"
+ }
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "3kMGvoFeVdMPIkolBPdPIg",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-11-08T17:57:44.339Z",
+ "updatedAt": "2025-01-31T19:55:43.504Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "668Oko9O5Fb63WY5P2lss6"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Live Story",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "ZCnbGHkTsovHNPKtQeIMb"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {
+ "installation": [
+ {
+ "name": "Content Type ID",
+ "type": "Symbol",
+ "id": "contentTypeId"
+ },
+ {
+ "name": "Title Field Id",
+ "type": "Symbol",
+ "id": "titleFieldId"
+ },
+ {
+ "name": "Content Id Field Id",
+ "type": "Symbol",
+ "id": "contentIdFieldId"
+ },
+ {
+ "name": "Content Type Field Id",
+ "type": "Symbol",
+ "id": "contentTypeFieldId"
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "70ssKop5SL98q1JOJy3AcA",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5mrBsdeobqqOHiCIyhvJbp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-07-04T09:49:39.244Z",
+ "updatedAt": "2024-03-29T21:18:50.344Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5mn4ytNTDxT1pYPuWpZ5QX"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5mn4ytNTDxT1pYPuWpZ5QX"
+ }
+ }
+ },
+ "name": "Lokalise",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3GEdi69xDtJX4nNQgJSTny"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "cQeaauOu1yUCYVhQ00atE",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-05-10T13:12:32.052Z",
+ "updatedAt": "2025-01-29T09:05:31.096Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7du7N9sCpTXRcuH75iBAX2"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7du7N9sCpTXRcuH75iBAX2"
+ }
+ }
+ },
+ "name": "Merge",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "7dgeATZJnWgT3vi8RE60Ow"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Merge",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "7lcE2IF8TiXXKiMj2UGM8k",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-10-24T18:21:06.358Z",
+ "updatedAt": "2025-01-21T20:56:08.386Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Microsoft Teams",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "13NLM92PvmJCXTeSHS2uMT"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "5l4WmuXdhJGcADHfCm1v4k",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-05-20T07:12:51.850Z",
+ "updatedAt": "2025-01-21T20:51:19.536Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2jvc3kU4n7OIABiFMTaGyB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Mux",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "1RwnoLYeRXZvJwc8QGfFAE"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "1VchawWvbIClHuMIyxwR5m",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T09:09:45.574Z",
+ "updatedAt": "2025-01-21T20:46:33.401Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Netlify",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3iEI26pdrWHvrnIREDdV6F"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "4QYnIIKna8TpXegJp3oSBi",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4WuVKeXdeRlqpw8go7Rkal"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-19T15:16:33.569Z",
+ "updatedAt": "2025-01-21T09:22:53.016Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "79M4NDLgejkZSShtdJDuvD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "79M4NDLgejkZSShtdJDuvD"
+ }
+ }
+ },
+ "name": "Ninetailed",
+ "src": "https://contentful.ninetailed.io",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ }
+ ]
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "2KGwCxSgYcS5KKsb8ZyN86",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0qUM6SnNjkKqN2JVBUDk4a"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-10-24T22:13:23.538Z",
+ "updatedAt": "2024-04-03T19:53:55.580Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3AV2DZ5Pn9oQJqQ6SFVBC6"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3AV2DZ5Pn9oQJqQ6SFVBC6"
+ }
+ }
+ },
+ "name": "Octana",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "77RP6IMXl9Mt9q5NQrLi4u"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Octana",
+ "path": "/"
+ }
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "home"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ ]
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "i43PggcHag2PCrGjYTiIX",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T12:38:34.885Z",
+ "updatedAt": "2021-08-03T12:11:21.857Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1lbcJCitOqcNZToAh8Mkxz"
+ }
+ }
+ },
+ "name": "Optimizely",
+ "src": "https://optimizely.ctfapps.net",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "3Xh8uDnRiZ0hpUyWCZtWmn",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0NCstxnb2tyMr22ly7sBI7"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-11-07T16:34:30.956Z",
+ "updatedAt": "2023-03-15T16:56:43.577Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0Nxch2ljQM7Txe1noKMEDx"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5SsU5BsjOoYnI1BVGDrmGt"
+ }
+ }
+ },
+ "name": "PhotoShelter",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "2wKsot67ek0iKNRsFL7gVr"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5O9v59Lbugb5tFCMeyLP8K",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0g2JAivWiSKz1VCe23uUe8"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-05T21:29:37.674Z",
+ "updatedAt": "2020-10-23T08:21:24.446Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0g04BohAJNYkYM0FOLCPKs"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0g04BohAJNYkYM0FOLCPKs"
+ }
+ }
+ },
+ "name": "phrase",
+ "src": "https://pa-contentful.netlify.app",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "1wxoLYYtUviNg9e6m5Ai54",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0dPFwFwaNijMAAcuiJT5TX"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-04-27T08:38:08.011Z",
+ "updatedAt": "2024-11-19T14:30:12.782Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0dOTTmNbAKcqKjfuPCrkXT"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0dOTTmNbAKcqKjfuPCrkXT"
+ }
+ }
+ },
+ "name": "Phrase TMS",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "2BgFHrPZm2dYOGkHKxZP2N"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Phrase TMS",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "5WpRlPR9T0hdBeXGQ5bEiz",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "2BWdsuNrGXGPjplGDwjpuP"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-27T06:46:34.442Z",
+ "updatedAt": "2021-01-28T13:12:36.030Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0TqLKiJJkt2PzzENv41cyv"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0TqLKiJJkt2PzzENv41cyv"
+ }
+ }
+ },
+ "name": "Qencode",
+ "src": "https://contentful.qencode.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "2YQkSSHsqSIwWhqzisdovW",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-08-19T21:44:18.814Z",
+ "updatedAt": "2025-01-31T19:55:43.291Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5wnS4py3wwn4xgtUhYXaA5"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Raster",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6WXuJ4OCGRgsQ0pwJ1ynOK"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "installation": [
+ {
+ "name": "apiKey",
+ "type": "Symbol",
+ "id": "apiKey"
+ },
+ {
+ "name": "orgId",
+ "type": "Symbol",
+ "id": "orgId"
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "7ek22esW2z9i1kdmevLJXd",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-03-11T15:29:55.343Z",
+ "updatedAt": "2021-03-11T15:29:55.343Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2YVRzNgF2sE64ooav1eKSd"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2YVRzNgF2sE64ooav1eKSd"
+ }
+ }
+ },
+ "name": "Repeater",
+ "src": "https://hopeful-ptolemy-922717.netlify.app/",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Custom Value Name",
+ "id": "valueName",
+ "type": "Symbol",
+ "required": false
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "6sLWDUsuXcyIfkPeokdRxJ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-28T08:43:21.403Z",
+ "updatedAt": "2025-01-21T20:30:47.119Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2LSyXwc717JeKfw5DIgg6W"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Saleor",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6O0BY9hY5wG75yJSgUD5HP"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "1O8njPYTGO44VueSJNBrdZ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-06-01T18:58:45.824Z",
+ "updatedAt": "2024-12-12T03:19:05.979Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7J9Yl0eiCbWcz1a6dZz2ou"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Salesforce Commerce Cloud Connector",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "CsrBcNciwbL2ttD739JKv"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "default": "product",
+ "name": "Field Type",
+ "options": [
+ {
+ "product": "Product"
+ },
+ {
+ "category": "Category"
+ }
+ ],
+ "id": "fieldType",
+ "type": "Enum",
+ "required": true,
+ "labels": {}
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "GdOFzqcDrEbmn2teDQE2i",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-03-29T19:19:08.656Z",
+ "updatedAt": "2025-01-21T20:39:53.281Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FNJe2xmShG6mc5Cqsy6eW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "SAP Commerce Cloud",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3DkLV6i7HmiVKF0FzrEOg8"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "7jJoGTAjjjTZqedusaIU7M",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5u1hLJSfU79YOdpNtySNat"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-16T12:35:48.878Z",
+ "updatedAt": "2024-09-19T04:28:44.262Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ }
+ },
+ "name": "Scaleflex DAM",
+ "src": "https://contentful.demo.sfxconnector.com",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "60S8P6KWlzfazXqMjhsJ1v",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-12-16T15:07:42.148Z",
+ "updatedAt": "2025-01-31T19:55:54.596Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Shopify",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "k2g7OVjDMtSFIUKGDkOam"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5E71q6bdze3Haj9F2n9czY",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0SEv9uJudA095dlkpARGvs"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-06-30T08:32:20.862Z",
+ "updatedAt": "2023-07-19T09:19:26.677Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5rhzcuH9Wx3nurftHBCYVZ"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5rhzcuH9Wx3nurftHBCYVZ"
+ }
+ }
+ },
+ "name": "Shopstory",
+ "src": "https://contentful.shopstory.app/",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Mode",
+ "default": "content",
+ "id": "mode",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "Canvas URL",
+ "description": "With this parameter you can override global canvas URL for this specific field. In most cases it should stay empty.",
+ "id": "canvasUrl",
+ "type": "Symbol"
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "2unqOCspPxYbyM295yh51V",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5FxqrACp1SSuw3oSAUCXcw"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-05-12T15:57:51.375Z",
+ "updatedAt": "2023-05-19T14:24:16.626Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7spvExYxsoecxOkXu6JpTN"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7spvExYxsoecxOkXu6JpTN"
+ }
+ }
+ },
+ "name": "SiteSpect",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6jO80YvyLTqsFOa78bFnSz"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "7ir40h24qLGSQWJ6JCS3sk",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-12-02T12:36:53.667Z",
+ "updatedAt": "2022-02-09T10:11:47.526Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1lbcJCitOqcNZToAh8Mkxz"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1lbcJCitOqcNZToAh8Mkxz"
+ }
+ }
+ },
+ "name": "Slack",
+ "src": "https://slack.ctfapps.net/index.html",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "24SX6dqadSbp2kTSBSNw0L",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "2QOGgGnLgLCv0ROiZ3wOBr"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-08-03T18:26:51.989Z",
+ "updatedAt": "2022-08-16T13:50:52.528Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5oh1nnjVvZgRgkijq7lW1t"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5LG9NsobZHM3BS2bNr4wcn"
+ }
+ }
+ },
+ "name": "Slatwall",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "2JkgvZqkwMNMCrWJeeNlAV"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "7fJGa8IE51jJdakiyBwcJ5",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "12AsJraQyXh1tM0uoQ51K5"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-06-27T12:49:30.113Z",
+ "updatedAt": "2024-12-09T16:01:23.574Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "12rWPvzWa14PM2cI0c83Gd"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "12rWPvzWa14PM2cI0c83Gd"
+ }
+ }
+ },
+ "name": "Smartcat",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "52Iw1IbBDsfMNgmasSjpIH"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "6ABxlejtWcEubKLM42fjMD",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-01-31T11:06:22.084Z",
+ "updatedAt": "2020-04-27T12:28:47.438Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NItczv8FWvPn5UTJpTOMM"
+ }
+ }
+ },
+ "name": "Smartling",
+ "src": "https://smartling.ctfapps.net/frontend/index.html",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "4c6SxDAXoHPLcFmoMLvGde",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-27T19:17:22.793Z",
+ "updatedAt": "2025-01-31T19:55:54.291Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Surfer",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "1BuauoUv7GkWuh6Q8U7Jio"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "QMdzLmdwbV0j4ZrVY4WOv",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0uSnG7ikBn0c6T0kS6hhlx"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-03-18T14:58:18.720Z",
+ "updatedAt": "2021-03-18T14:58:18.720Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3IatEc5aJ2AXeP0sgPkLUM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3IatEc5aJ2AXeP0sgPkLUM"
+ }
+ }
+ },
+ "name": "Swell",
+ "src": "https://swell-contentful-picker.vercel.app",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "7CPoljE4C0HpsVZ7a7HrZG",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-07-05T09:39:05.993Z",
+ "updatedAt": "2025-02-04T08:06:39.045Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7JWRGOYWY5AnjuoNVzBwyO"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7JWRGOYWY5AnjuoNVzBwyO"
+ }
+ }
+ },
+ "name": "Tasks",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4x8Wfpo5QSpXPe3z5dNRCS"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "EPRcLyDrBeAQgLtTRfPwu",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "25nCTg3Bl7iHWXk541IXcc"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-05-05T07:11:38.645Z",
+ "updatedAt": "2024-11-13T11:41:18.327Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "25dziZyGrZWrZ6gsQmtQze"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4pwK4DjXHKcAdt4nv6ZSyO"
+ }
+ }
+ },
+ "name": "Trados",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "KwZyWqOAgBnqjCnRi9aW6"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Trados",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "b7SVv0k1EYbQRsusviQDi",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-04T14:49:53.208Z",
+ "updatedAt": "2025-01-31T19:55:54.908Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "549ZG41aazTYkABSEvfRyA"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Transifex",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "4yTnBmPutHfeQkRHdyHizn"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "1SZgLiOT63ijEzPJZQ4QWT",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-03-20T13:46:37.843Z",
+ "updatedAt": "2023-09-28T16:03:15.817Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2jvc3kU4n7OIABiFMTaGyB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ }
+ },
+ "name": "Typeform",
+ "src": "https://typeform.ctfapps.net/frontend/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "home"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "1BeY7xDfJfvD5El9ymsOZF",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "14pf4vP1CA4EGu7AXnr1P5"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-20T23:27:10.487Z",
+ "updatedAt": "2022-04-26T20:01:40.373Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0SJxBnMuapGsHZPLP1q7US"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5uDNLZHF9vPRvtZ88GeNGi"
+ }
+ }
+ },
+ "name": "Uniform",
+ "src": "https://contentful.uniform.app/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "3Ju8DSs6cEG3TnqFa979vc",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-27T19:12:10.394Z",
+ "updatedAt": "2025-01-31T19:56:05.979Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Uploadcare",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "aKexNUjkGdX7VRRIClMCI"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Max number of files",
+ "description": "The max number of files that can be added to a single field. 0 means no limit.",
+ "id": "maxFiles",
+ "type": "Number"
+ },
+ {
+ "name": "Upload sources string",
+ "description": "Comma separated list of possible upload sources. E.g. `local, camera, dropbox`. See docs for details: https://uploadcare.com/docs/upload-sources/",
+ "id": "uploadSourcesString",
+ "type": "Symbol"
+ },
+ {
+ "default": "useGlobalAppSetting",
+ "name": "Allow to upload images only",
+ "options": [
+ {
+ "allowImagesOnly": "Allow images only"
+ },
+ {
+ "allowAnyFiles": "Allow any files"
+ },
+ {
+ "useGlobalAppSetting": "Use global app setting"
+ }
+ ],
+ "description": "If selected `Allow images only` then editors won't be able to upload anything but images.",
+ "id": "imgOnly",
+ "type": "Enum",
+ "labels": {}
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "4QsJrTg4fFjX7UmQDkeayq",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-23T22:37:02.320Z",
+ "updatedAt": "2025-01-24T23:01:55.307Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0VYEozm0sWFT6Wee4Zm9Dn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Vercel",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6M05o3q40mxTfvUOu3ZnOS"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "3HFf3DxTPYMh2L8214oW1s",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-13T18:26:51.771Z",
+ "updatedAt": "2025-01-31T19:56:05.440Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Voucherify",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "6CVqOrdznLgtiDsfW2eiwo"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "7DnamgI4qKntUVMcOfZtQk",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0obnPYhku3jo775GiGSivz"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-06-14T06:34:10.948Z",
+ "updatedAt": "2021-07-27T15:46:09.562Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0i6k6A8gvnzsopMOPMqoqT"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5Pdjlm0t7kKPqgRXTEcoDV"
+ }
+ }
+ },
+ "name": "VWO",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "2nZR4C05uQJr3skPaYUXyL"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "71oYmQJFCIWn9pxizjN8dZ",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2025-01-29T16:54:50.238Z",
+ "updatedAt": "2025-01-31T19:56:06.115Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1TxB84jpuvrlDUiXNmjAnk"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "VWO - Feature Management & Experimentation",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "KH2X9F4QeHzT8SLQKD5CN"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "6StWOM1AZBDHDjynDkm1iz",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-08-16T11:51:02.704Z",
+ "updatedAt": "2024-09-10T18:08:55.958Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0xAU1rz5uyEJ0ItTExcjsa"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ }
+ },
+ "name": "Wistia",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "58RN96o2neL68XlitQnmGX"
+ }
+ },
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "44A0iM4wuqcQBDfg6qrlQx",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-03-01T23:19:13.465Z",
+ "updatedAt": "2025-01-31T19:56:16.427Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Wix",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "1tWK9eLCM0S4xpGsULxO39"
+ }
+ },
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "IzXGEKn1YcF831Z2r6TtN",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-11-15T13:57:44.050Z",
+ "updatedAt": "2025-02-04T08:09:09.786Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0jz6hPHbUidMTiQCdO2KmW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7JWRGOYWY5AnjuoNVzBwyO"
+ }
+ }
+ },
+ "name": "Workflows App",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "3o2ZmDGW4KWe1f40Ws9FCl"
+ }
+ },
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Workflows",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "6C8a6ICmjODMMsNC0Un0Xe",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5RHAZeCcIG0BSCJll8MFMs"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-08-24T14:06:10.167Z",
+ "updatedAt": "2023-09-12T20:57:19.352Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5RACtD6G9a7W26r6lzrO00"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5RACtD6G9a7W26r6lzrO00"
+ }
+ }
+ },
+ "name": "Writer AI Content Detector",
+ "src": "https://contentful-ai-detector.writer.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5wmH6IpRamZ66ofjP9THlz",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "1o92OHmPmIOWNYuX0jJQQE"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-12-08T11:05:03.091Z",
+ "updatedAt": "2022-06-08T17:24:53.207Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1o835krXYQ8Rtv4GEKxaaI"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1o835krXYQ8Rtv4GEKxaaI"
+ }
+ }
+ },
+ "name": "Writer Contentful Extension",
+ "src": "https://contentful-plugin.writer.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Text"
+ },
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "RichText"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "5i8iZ60GpkbZQJzutNXit",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-03-29T16:48:17.872Z",
+ "updatedAt": "2025-01-31T19:56:16.827Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0VYEozm0sWFT6Wee4Zm9Dn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ }
+ },
+ "name": "Xillio Transcreate",
+ "bundle": {
+ "sys": {
+ "type": "Link",
+ "linkType": "AppBundle",
+ "id": "24oi7FCTTLvoXDO0u6dFRH"
+ }
+ },
+ "locations": [
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Xillio Transcreate",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "4u3pN6m2aOOBTr9kGP8LJK",
+ "type": "AppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "28CeCjl0ZH2X0gql3fnuHZ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-29T09:22:15.212Z",
+ "updatedAt": "2021-09-29T12:04:10.546Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4PkXeFfQ9DyvCf9Y0yWP96"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4PkXeFfQ9DyvCf9Y0yWP96"
+ }
+ }
+ },
+ "name": "XTM Connect",
+ "src": "https://contentful-connector.xtm-intl.com/app/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "XTM Connect",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ }
+ ],
+ "includes": {
+ "ResolvedAppDefinition": [
+ {
+ "sys": {
+ "id": "6tLfWB4Y2ppAmKynXo4STi",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "78VS3MWLI40BF1TzF206cD"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-01-27T10:09:30.721Z",
+ "updatedAt": "2024-03-05T19:20:23.990Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "78UP2gMaShITMmFWzp6ZD1"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "78UP2gMaShITMmFWzp6ZD1"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.541Z"
+ },
+ "name": "A-sync Publication Manager (Marketplace)",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {},
+ "src": "https://d4e9e180-fc67-493b-b077-367c8807b8fc.ctfcloud.net/6NETxlMNCYcgwwTeCmuqTL/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kNGU5ZTE4MC1mYzY3LTQ5M2ItYjA3Ny0zNjdjODgwN2I4ZmMuY3RmY2xvdWQubmV0LzZORVR4bE1OQ1ljZ3d3VGVDbXVxVEwvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=ftPNaI1QW-m1cloQSP2qUBQbkmWscp9OrSiwP8G75LuVL7PBZtiWe9sIT0pfMD1W2VlglgHbfxEKQE9OKQEvqPhv21UGjRdpNQwPRPrW7wYLVFvqnPDVvsdUQOaWtffyU89uTpzzLSpCF3qZMg2mBAW2K7P~tldm4y5YsY6cv8Npc7c0TF1Q2G213PgoohDQTtf-RjMRnZx7ntIayqYb6RfUxJMZQC0xMYe2tegBp-bIV9AEd1LgXWTEagRIYecSe6tw77MoJmBbACxkRdy7NP7rahFVzI4vml2iSW~Q4URT4eTm19rc-l2nf9b1ZMzeBRcnYWT7fgRfoCbDiRQcOw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7CsrDDzb0WDqWgakHyfJdY",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "3WcMEN2rEin3ZZPsoF8Lz0"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-14T19:49:23.931Z",
+ "updatedAt": "2023-05-02T15:59:57.914Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3W9pkJkQkz56EL4hsjvm2W"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3W9pkJkQkz56EL4hsjvm2W"
+ }
+ }
+ },
+ "name": "Acclaro Translations",
+ "src": "https://ctf-translations.acclaro-apps.com/frontend/index.html",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Acclaro Translations",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "6RGLVmXYrGaIIRIda1HwAC",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-10T00:02:15.750Z",
+ "updatedAt": "2025-01-31T19:54:58.984Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "549ZG41aazTYkABSEvfRyA"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.543Z"
+ },
+ "name": "Adapt Essentials Bulk Asset Fields",
+ "locations": [
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Adapt Essentials Bulk Asset Fields",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "home"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {},
+ "src": "https://e19813bb-23a9-4502-a311-61ac75874216.ctfcloud.net/3fa8kKWRMBk9K200X0xh8e/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9lMTk4MTNiYi0yM2E5LTQ1MDItYTMxMS02MWFjNzU4NzQyMTYuY3RmY2xvdWQubmV0LzNmYThrS1dSTUJrOUsyMDBYMHhoOGUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Ul0bXKM0grmDNpLJWJAGONcqSaXbRFHGIVUND4mWQuBCBK2XfkwsQJrH-Gjr~~wWcYNkxNOwC2-8JXWNrNcbfnADJfHUdlRX1zfdCnWRwrV3oyj81~OEjPQtil~DnapsJeSzB-obVuTWk3xsxqq5fmzz5NPxPWwWVNZzBWMcrI63eUtQKj2s6cXCNUlXxBlRBZku63dIyJDyR0f4VWAcByV~54fL36-0K1kI-g1MlItoflkNTxRKK8cHqVvOEDouuGtYBhrQcwuPwWyFR4s4tby6s9BFJlTBWICkSAKiS2wTZLKr3003PywnT8VOKgshLDN0fCoI9cGv1ATN0tUyHg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3iszK8Gl7aaxLvxGyCOhgA",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-03-27T20:14:47.291Z",
+ "updatedAt": "2024-11-20T23:45:15.094Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6iUaAfJg2ZoKe4oEYF7kxe"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.545Z"
+ },
+ "name": "AI Content Generator",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "src": "https://6c5a9a19-156a-46c4-a6ea-d4e406a18cd8.ctfcloud.net/66LlxbQubgBbmO7UjuQXQn/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly82YzVhOWExOS0xNTZhLTQ2YzQtYTZlYS1kNGU0MDZhMThjZDguY3RmY2xvdWQubmV0LzY2TGx4YlF1YmdCYm1PN1VqdVFYUW4vaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=nIBSp8Oy9fv-dn9U7AKBv2M008XNNGQ3M0EVnaeRJHfEUjbHGktdRqlLoNvGTIYlHuhaahrovewUYcK4Q66WY1ayozsck91A8F1EQUEb-ccnIA1dohzvlIKP4BghhvAHPzoecxUeuy8K~mmgDpsMNiuv~wzS~vuVIKXY~UB1AZdsj0H9Zk-jNEfyeRoPa9yuJQBCa~yl6xBxHZe5l9vxMdMuEpF9VkBDVfO-ad98eyn4CnkUp4b08qtGWLgGPhS3SPy5CtAVVkYMttNTYA6dOZZUkjnDyfwQkoHjfZDOGhTsN~RtAMLxHlPeu5KHcfoNiQ2L8PlIlHbwRpj0gXyscw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3RheWQRagirMFgWrhMOBxL",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-08-01T18:43:48.712Z",
+ "updatedAt": "2024-09-25T16:03:48.103Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FJf3IvgmQotV5As5zpGhc"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.547Z"
+ },
+ "name": "AI Image Generator",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {},
+ "src": "https://7ece24c6-f6ff-4ad7-8cfd-a5d59bdc1cd1.ctfcloud.net/2oIeB0suYvcMq0vp3iDHfD/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly83ZWNlMjRjNi1mNmZmLTRhZDctOGNmZC1hNWQ1OWJkYzFjZDEuY3RmY2xvdWQubmV0LzJvSWVCMHN1WXZjTXEwdnAzaURIZkQvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=mYq304b1JQkAl4RD9iXZa0ImF9Bi7trCZ7Y24mbtwRIF2G9y8fYi99qB5568xd4rNy9E0DL6gZMtRWieLvz965d-rpNTiP0FKlPvz-z40lF-CLdwn927UlbEuQEp0GB7ceKi4QpvIJ5N1f9RsYkuYtNoEZfIqKKkphjYDOWIsdpyZGTND6r4pWuHufcDfWl6PKo-rCROcqcnsVT5C1W7~zZLIoy8e2ilQWdxIk8l7x1pskqP2VYbi44AYQw7aMINwlUbjYlNCrC6gMuDVCI75RDEdnnVrViOQ7rfWru43vg9g0LjmRohjUS0~sFqZgedY0KG9nG1GjMqaqllIWFQtA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5bWaMz0w0jPWvYmkgcVCX3",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-02-12T15:27:52.465Z",
+ "updatedAt": "2020-04-27T12:26:41.444Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5FvvIcNbfAn7SPSO97fIMp"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NItczv8FWvPn5UTJpTOMM"
+ }
+ }
+ },
+ "name": "AI Image Tagging",
+ "src": "https://ai-image-tagging.ctfapps.net/frontend/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5iQYfM7S9CWFeywx0lrF6A",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "3HXcJCikRb72JNTFI0kUEI"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-24T10:25:25.169Z",
+ "updatedAt": "2024-09-02T12:47:22.963Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5CawfuQcCBeg31D5FjPxYG"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5CawfuQcCBeg31D5FjPxYG"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.549Z"
+ },
+ "name": "Alt Text AI",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "AltText.ai: Bulk Update",
+ "path": "/Page"
+ }
+ }
+ ],
+ "src": "https://ae46b17f-42c6-4df6-bdca-b2647758d4f4.ctfcloud.net/sjvZ8VI5Gl9dNGZxg6Thd/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9hZTQ2YjE3Zi00MmM2LTRkZjYtYmRjYS1iMjY0Nzc1OGQ0ZjQuY3RmY2xvdWQubmV0L3Nqdlo4Vkk1R2w5ZE5HWnhnNlRoZC9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=bGeYbSidg6MMrioVNpLZIEpqaZ90zpOxWhZJ5o~vunGwL-UoCPosi8LlA36j4dEmKI3tJ0qNX4qz9NJ~qrKJ8aY5KQRiaR-JKXEJ7fCri7HmrNJLDptHfl9fXe3LLsKXSosG0OQuEK6b1~DwvIGtqiU7JcNZwdBG9GeRkEQJbod-nbXpvWJuGy3sXx--bVNk6zquOlfLAVW4YcL-QQt8l0tLukNieRwrOpSpSP567eEkq6gJm1ZOONg8gmhrsejnyKvSM6gmOWHpWC6nDS8Q2XF28HWEL1slybLAIEvaCMi72nR6DNm-xVTg2tFjwRyct2NClXUggtcYh6cKx6Ekfg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "jTed08LvhkveeUoBpJOim",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-25T16:14:16.679Z",
+ "updatedAt": "2024-10-28T19:41:52.339Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0VYEozm0sWFT6Wee4Zm9Dn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.550Z"
+ },
+ "name": "Amazon Bedrock Content Generator",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://0a8a864c-2d27-4881-ba3b-3b0627c259c2.ctfcloud.net/5YBzEzuBdpUFXkf4LPCad8/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wYThhODY0Yy0yZDI3LTQ4ODEtYmEzYi0zYjA2MjdjMjU5YzIuY3RmY2xvdWQubmV0LzVZQnpFenVCZHBVRlhrZjRMUENhZDgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Hx7JNbX4hXwIUqasoGT4v4Lih4vDS~xUaaEWtiaw6YHNzIZGWvEG4IB4BzpeVYrr-cZDgkuPt5olh7yluWo4R9a66R~HQgePR7QbSR5weXAmZkYxN~DGvXJZGtb1I6WvGr~vija4~M8LnqV37uOAubI1BkwiSJetTKKH3f6cpYXhtYOZ4VaHszga2w4SSytyMP1RH7swIS82H852DWU5SBaeNIF0NF6qCW1c-gcNW04NGLXMPGteFjJr1X6~-F8iX93XqAlmrICU3aSfYaED0IjFQbeNz8eWc~BaNTNm~-2clb7Zifh4JMYPU7CM345y6vx~Zf73i-HzQXt8GJwZlw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5HVpneN2ZR6uYrOs2TOumr",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4J91ewqssC6Q5X8EkneCGX"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-25T00:15:37.655Z",
+ "updatedAt": "2025-01-23T02:27:41.845Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4J52AcomYtlp9LGabXlCrR"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6HJDZrUnh9Nc0a3JErpOqa"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.551Z"
+ },
+ "name": "Amplitude",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {},
+ "src": "https://bb901422-1114-41dd-a15b-91a7e312b887.ctfcloud.net/4UVBDXiCpT3oH85Vh7PoIl/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9iYjkwMTQyMi0xMTE0LTQxZGQtYTE1Yi05MWE3ZTMxMmI4ODcuY3RmY2xvdWQubmV0LzRVVkJEWGlDcFQzb0g4NVZoN1BvSWwvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=KpVHbXHfLWj9mjQGVjztlq6oXZ6kOTjUxn7wGS~V2BA~771opeCoB-6udfJPqeHOdMPs7zwOVg1GjZA3RMci0XHQ27pW-Kt2wZikAR0KLfu-5F6S2GoLWP8j-S6BhMS4NR94LpDOIoUigmpE2hWWzmeQiPWGaBefaUMZU9crUeOb1ET4I2hrtiALnKdvcwTih7gb5UiIGb0p0dHPv5ftlS6lqcsPh7ha6Jwdvowm6zGl2uVXwtY-pBOQaC456wkrtYgqXHtf7W7sc7HNDfdh96OT~nycNpPKaVhnDVSVRCMiLkP4mq7N9EgY1WvEXwbSc5C7bgGjQ2BM7DA0IEMjRQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4OxLnZ6demuSG0dz7rgcEB",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "6jM5PF1GV3gL8H96Q4b1px"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-06-21T14:15:44.474Z",
+ "updatedAt": "2023-12-26T15:15:44.100Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6jL2ThWHHumVn8ZQIZLDM7"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6jL2ThWHHumVn8ZQIZLDM7"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.553Z"
+ },
+ "name": "api.video",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://9e36a740-73b8-43d6-af8d-3bfc2a3f3895.ctfcloud.net/6fcnBg5UfR7ql11szgwbMX/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly85ZTM2YTc0MC03M2I4LTQzZDYtYWY4ZC0zYmZjMmEzZjM4OTUuY3RmY2xvdWQubmV0LzZmY25CZzVVZlI3cWwxMXN6Z3diTVgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=dUpBZvt7H28otXdxZabC2zMM9oqSYE~-xeRZnmVqn9A6s~aYOrDNXUgY5GXkLMgfnbY9QjqzOPYgT67IlONPO3xK7K~txglDkywRm97KmT-7ul9M25wwOsHjU6ik5flWekBX3IY-5NvYre1anEkROvUuMiEADJRxVaIE5XeOb~V1T3XF8rjnh~ls3ALhfjPEMSEtFHp6kyMVHwuP3rdmWG4YmHFlko-OQScIBQjGK~hch3R-meHBSDDF8ji7-vk7Bljiyugk4NZncZkQCKX6F3~2u1slga9BD1PAeqCHvOyIqoPezlEjrKExTi-QrTcEQ6RKpjQnVOZXCOy0UwDn1A__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "RkD9DMLgnqahWzcYyQ0RI",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "1UCeHE7rmDOdfNcgpCN3z2"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-04-12T13:44:32.948Z",
+ "updatedAt": "2023-08-09T19:07:58.814Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0DBVatr5nHZC18z9wRBGd3"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0DBVatr5nHZC18z9wRBGd3"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.554Z"
+ },
+ "name": "Aprimo App",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "src": "https://1c437f53-b92a-4d1a-9901-8233315ea382.ctfcloud.net/2f8I1i02IKmVOvMDt3aJPM/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8xYzQzN2Y1My1iOTJhLTRkMWEtOTkwMS04MjMzMzE1ZWEzODIuY3RmY2xvdWQubmV0LzJmOEkxaTAySUttVk92TUR0M2FKUE0vaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=RkxWL4R~3B4I~AynSOWK7cvbNlKo-91ODWZsuE417J~bfgPzXb01boh1evohXiXxxqrbmxTvF~F1KU9jHF9pDWj6Pt2WkolC~sYRObEuW2NAt3UFjacgaGX0POlACaPB073~hd2E4mH7E1iJYjFF~72UcWqyL4V9yNL1FrN-iz5PuHBqfkEUhazKn9j81pdXDuxlm0YrYCXsnilTHpaOEP3Q~Wn1FyzHs32qwIx8u~7BHxEUSIhSFMRJ6pI8600FvFkDL730fsKPnWgFzX4ktnEZoHBTPDHinR99kDJcZBUZcP3pCC16CVUt9pMM0xutDaq~NG~aLYuHaCICrEchNQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "26OUmTSqwgnCTM5BnkJL83",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4jYjoMK3b0oP9MJWtwACRJ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-07-20T19:58:11.391Z",
+ "updatedAt": "2024-11-13T15:48:26.522Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5jA82i8PO6yYxpusZflUuH"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5jA82i8PO6yYxpusZflUuH"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.555Z"
+ },
+ "name": "Arboretum",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Arboretum",
+ "path": "/"
+ }
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "home"
+ }
+ ],
+ "parameters": {},
+ "src": "https://45541c4b-f1c2-4de6-912b-e1656654bc67.ctfcloud.net/7khrwvd7hneLQJWeU2JCpg/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly80NTU0MWM0Yi1mMWMyLTRkZTYtOTEyYi1lMTY1NjY1NGJjNjcuY3RmY2xvdWQubmV0LzdraHJ3dmQ3aG5lTFFKV2VVMkpDcGcvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Mc5oVe77gwrAqZsdkXnM7EZ4ahePlsyZUez8PjUbjh0KH2SEyCiHMOI3DXo~7N-8Ft1V-kT1G7IOxDhRF1c0FBYjZqPR0SV2yempUT7R34nq5zSGU4uqBQKKhgI65-CdyZitfmKvuT88yFw9kpRrntkeCLXxQaGdnHZB2J518x-s49KV6ui-AFm7ZwV495xlKa2LxChgd3Un1nZr8fxm2B-meYMqWLW7TzR2s0qBaWlY6nDa~C64bCuQg0GMA6vIXioV5B~Bno1du4vRepnFm9oZvPref17IcBuhIvg1czFZZZAYyAAcNQAmVWjH9EUF6cbJpFpv-5GyCKpBfgyQfQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "1mVogDvuE0GuW4qp4dk4zQ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-06-15T15:45:53.638Z",
+ "updatedAt": "2024-12-12T04:15:29.920Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FJf3IvgmQotV5As5zpGhc"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.556Z"
+ },
+ "name": "AWS Amplify",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "src": "https://2d019caf-8897-4528-af41-0460a31949ae.ctfcloud.net/1m3ZeDMfTiS1BDNB6vmknB/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8yZDAxOWNhZi04ODk3LTQ1MjgtYWY0MS0wNDYwYTMxOTQ5YWUuY3RmY2xvdWQubmV0LzFtM1plRE1mVGlTMUJETkI2dm1rbkIvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=OtrtiZTIRIuhO5v9jTTRA0XrvHF2m-3jwLcJJj5YtnsoNOd8dqwwS~RaAUC4BUqigzYgCqdX1gN~XPMzJnK3u7XtDgXkIDCA7EZBJ0gpAZ1plE1SlzhTIp~uh2~bOFtAiRzsoSwsc4yqchVyeosedAvFO48knf8u-E51NCOKpJMLsRCydeffDYFHyAnEFMttLcdcMEgKeop~BHP6dINJ2USGA7pKwQiozf-6bYFiu-WYDbF1ECFzkN-i-K-KGbnHhcaoisLx8Qt5dPDmS2ozOZDLPpc-RZNx3xlB5ZC2zcyn1K0QBKRibqqV0WOkzRO-4p6HfWDX7LUsDFZBNntrrQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5KVbHTjQJT7XGrAy7bLIlC",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7ujDWYE18wGkFkP8NeByHh"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-10-04T08:46:53.481Z",
+ "updatedAt": "2022-02-14T08:47:21.274Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "560u6wCl1rlKFX3XwBCshV"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "20n37hdJoDPFuPMRmCt0Q0"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.558Z"
+ },
+ "name": "BigCommerce app",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://bd2698eb-c97e-4d54-9f91-a9a3df56dac4.ctfcloud.net/6nUzTxsGKY9uhqUpmsxyNJ/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9iZDI2OThlYi1jOTdlLTRkNTQtOWY5MS1hOWEzZGY1NmRhYzQuY3RmY2xvdWQubmV0LzZuVXpUeHNHS1k5dWhxVXBtc3h5TkovaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=kDilQ6NrltYMkuyP4scpw632mjCky3arTFDkiVttE-YF~BHfDDivEEeUi8XW2yPQUPinl5QuAvtCa4RNxe0O9w8CgNRvbJPBPwqdyVDuYy~pPnnyBTz9MODFMyHuI5-hTcOyS-RdG06g7BuKqI9Jax3UoMf4WitKhp9B4bxSYfiLqkAIFlctyNiRzlBunBDziylysrQMlTbDrVo28dRa2mHoxUpf8QVn75-53h4gHo8IlUVyGclrm602VjALZnEzkwyRtpwf2Jlq9jHpsg-9V4u9zIWUI~Z6YuiI4a7kH2iL9JB-BUVSvUi0eC118sA1n0iPy5VjY2orR7A3-sz0VQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4yuhN91ClorVNMXVseJB6r",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5QWhpfISjlF5wNbZ4rkmQk"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-04-24T12:45:14.843Z",
+ "updatedAt": "2023-05-12T10:27:09.812Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "69AXBWNchCjNtMvSvl9h0a"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "69AXBWNchCjNtMvSvl9h0a"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.559Z"
+ },
+ "name": "Brand Guardian",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "src": "https://95b45f3e-b683-4b0a-9950-862639799adb.ctfcloud.net/12HEPsBjXjPqOi4zXp985t/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly85NWI0NWYzZS1iNjgzLTRiMGEtOTk1MC04NjI2Mzk3OTlhZGIuY3RmY2xvdWQubmV0LzEySEVQc0JqWGpQcU9pNHpYcDk4NXQvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=UmYZqFRpiiwIrBidNN080gGAGv1kUDJp4eqJnGu2s5yai0xJJCQlQZ3MGFIClvDqC4cO1JTU3h5uwVn9y~lG3JBXpUCnQwZ1UTZNB-00nyV9AUR3vcsrt~9exYWTe506Ip0IsvPkUUwZYirIBlkllBbfb8vVCB4CpXhPcFAhDP06ThA-VPs8Fn7cg4tp5d0lzT-DMRWXc1~ZpiBCvbHjDOBXKDIdmY5CURGDfLgw3Mca8XJuAc8-8PashVqlawZdg878f6KMtXyVEJhMjS34ikDwrt680sBrrhbCuyFKxr0DYXXzoBFEz9BP374awuLtluK3gMTe9Ep5n5MyT1X24w__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "bgBVVuNbfvUW5tpFnD20s",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-02-24T15:04:26.697Z",
+ "updatedAt": "2024-12-12T04:10:42.788Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "29B6zorz8plUCN1auThiVH"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.560Z"
+ },
+ "name": "Brandfolder",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://05f8afd5-8130-4e33-866a-ad5dc278aafc.ctfcloud.net/7BeVVNCDi4PPoW8RSHjzrN/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wNWY4YWZkNS04MTMwLTRlMzMtODY2YS1hZDVkYzI3OGFhZmMuY3RmY2xvdWQubmV0LzdCZVZWTkNEaTRQUG9XOFJTSGp6ck4vaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=QwMeulf7BGlsT8uyxuJEY3a95pe7zpVhJNAirVAT2x9IGpScdUaNVN6zdjC66hR222--Uz5aLAB0uUY2wkAY6LAlp69chAVoKaKsrwRVbw3NqEQhfs6ipAfaiIyjsrdzR2lfoLkWmahzLNb6xDbBKdvaT49YrJTG0XNH8l02w7NkQmdUnTymLcTh1YhtmQUdwWhG0jZ2JGYQ4XFXwaqSBRPWNArfyVvDEvukmMi9WP8DlUQHmtf0qYUlw4ZO3jrF3NWzvujKDI6HsHTsU0Yk0GyO9Uh0zUv9COFXHfqHg1p7X0QRxogbh854vDF7m4KhJmh0Ij9iKg~7LwpPARKUYg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5KySdUzG7OWuCE2V3fgtIa",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T12:42:27.828Z",
+ "updatedAt": "2025-01-31T19:54:58.598Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.561Z"
+ },
+ "name": "Bynder",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {},
+ "src": "https://bcf5c511-c1d8-4bdd-aa3f-35c25a3db376.ctfcloud.net/55On2kbzFcx1LqZsrUFquX/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9iY2Y1YzUxMS1jMWQ4LTRiZGQtYWEzZi0zNWMyNWEzZGIzNzYuY3RmY2xvdWQubmV0LzU1T24ya2J6RmN4MUxxWnNyVUZxdVgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=WKkjRE7qoFICMJFPYTqOS971yGR8H6ni6onUvnOOR0avRfp0vsJaGDTzvyrYY7kAD0gKldJ51iV9tBM~eK9alyr-DjGod2U2qBPDzauZamQFBqAfCZlRHOp7OZ45cOjY2WdbQ6f2dV9wksFnh0yY~hj7WrlqGnljVi3d3cnr-y8unzDku7or9CLxD9OKSSLGSodsZO0-ytI0vj26W7WUzyIo0gqLBczJkB-i97eWh7uuopxaCB87c-I5EUQcu7FbeMFF3oZrFOIMP7H6K4Db5QeNhL-W13W76Km9u1J~Q-HJfwYa40EOUO7184tXwHDPlbQmdYsX6KOvEGCn8nFA7Q__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "2POIRORfxypO5JsgvufCiZ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-05-29T16:49:41.594Z",
+ "updatedAt": "2025-01-31T19:55:11.338Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FNJe2xmShG6mc5Cqsy6eW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.563Z"
+ },
+ "name": "Bynder Content Workflow",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Bynder Content Workflow",
+ "path": "/"
+ }
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://5d2cb86a-895c-4049-836a-0e26e8381eb9.ctfcloud.net/2GxbNv54GEeSdFE6go7FLX/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly81ZDJjYjg2YS04OTVjLTQwNDktODM2YS0wZTI2ZTgzODFlYjkuY3RmY2xvdWQubmV0LzJHeGJOdjU0R0VlU2RGRTZnbzdGTFgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=YhNgnIN0Q82fGxMky5AOY35u5La5iXmfSGxQBUDn1VbtterQtUQEfD21mEqRP~9OzS97Err76-JiCzx5ExlrIhH-cr7PWEOqAWS4qkJ6-Lj2b~JJOxu-OJy4PR9TwO-yxQctdoJvsnA3wXGM7g2gNgbCGW9RnFdtQ5Kqkltx46IWC3iX~u-7-Wjfx3JuozyDCKDaI8Njgqw9alamKHWKhbZ1DCgQgiJAGMhqTaweyHXYQCpNdOCRLEdc9jjok-awcBN2Ff4s5noxgQeCjM8Ic7pVVf8ghooBsoqE4m0r2JcWVxl3uTZqkrDPG10KFfZjV0vCcNnk01G4nqwYPqvf4w__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3ts0Y8tta9da2qV0qQSoZG",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-05-26T12:51:54.718Z",
+ "updatedAt": "2025-01-31T19:55:10.295Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2RZLldkv24PyQMDfNG56Bb"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.564Z"
+ },
+ "name": "Ceros",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Content Type ID",
+ "description": "The ID of the content type that this app save Ceros Experiences to.",
+ "id": "contentTypeId",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "Title Field ID",
+ "description": "Field ID (on the content model specified in 'contentModelId') for the title of the Ceros Experience.",
+ "id": "titleFieldId",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "URL Field ID",
+ "description": "Field ID (on the content model specified in 'contentModelId') for the URL of the Ceros Experience.",
+ "id": "urlFieldId",
+ "type": "Symbol"
+ },
+ {
+ "name": "Embed Code Field ID",
+ "description": "Field ID (on the content model specified in 'contentModelId') for the embed code of the Ceros Experience.",
+ "id": "embedCodeFieldId",
+ "type": "Symbol",
+ "required": true
+ }
+ ]
+ },
+ "src": "https://722db63a-f061-4241-a4a2-cd4286407920.ctfcloud.net/4tCJZGeRRpumT4DX6BotMu/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly83MjJkYjYzYS1mMDYxLTQyNDEtYTRhMi1jZDQyODY0MDc5MjAuY3RmY2xvdWQubmV0LzR0Q0paR2VSUnB1bVQ0RFg2Qm90TXUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=SdQ06per0J2kfjmt6aagZypB-x9FJ4X0v~2euF~YavMK0fAlJ1Va3agCXo5eXINr3HNRnDRARSdbp4uR~piSEpSt09PQYegYZgpwrtcko511CU10m9r3XFD9oMRl43UptJcq8fY89FPjhqd0-mXdP2HNYrZax0xy8fGQjMa9~MbFc-z2e1Nv3BG~deGD8da8vepoOCiVsm5NwOONspjKHfmHYNWEVbJMp6O0oG4JjiXaNSSiJ8yoTVedpKJiFQfNFj1xs6dTTjSz4GHCdRyP2D4hV3xPQeiZw208zjVDDPXpbXNCDmvxbhfVNf49HlNmeKcYdnYu95J6psog4ZENmA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "8dgJSrhUhRsKzRKz4oNbW",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5u1hLJSfU79YOdpNtySNat"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-16T12:41:41.277Z",
+ "updatedAt": "2023-02-20T05:48:06.273Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.565Z"
+ },
+ "name": "Cloudimage by Scaleflex",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "src": "https://045a5f8d-6fb7-4549-8c80-099cb55d21c8.ctfcloud.net/jBhp8AzIZeXrfI0zeJWlJ/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wNDVhNWY4ZC02ZmI3LTQ1NDktOGM4MC0wOTljYjU1ZDIxYzguY3RmY2xvdWQubmV0L2pCaHA4QXpJWmVYcmZJMHplSldsSi9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=EVBK25gEJh1EODk1KDwwmW-1KaeRzYCMilrzxGQ8kf2qXoalcGGyYyP3iAstlHKKEU0EPL3hNuU2I5WAaXyGPtWozKpuVb1Yxy1hBAZ4A8rs1bk-8xuyNi7KVMqdiIxiodlEic9jhYliGi3o8OO~BrzgbOhhmk8z82nmCnPugLeRkDMNoToOxQBaECx82sHoLU9St~li1emGwEpge~vyUGds492JrIPY7I4jJlkF~oFyREmu1lp-Ex6I2HeHPb7UwHoknEFW68xPxXMvmsFElTJTB87na8u9InhjX8FmbrETpoqp1IJrls-ZZ9vB2bobgHfCq7L0AQPcf09YmHlUnA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "zjcnWgBknf9zB7IM9HZjE",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T12:40:36.439Z",
+ "updatedAt": "2025-01-31T19:55:10.703Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.567Z"
+ },
+ "name": "Cloudinary",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "src": "https://12b65bad-4767-4bf3-b575-081a11b73d6e.ctfcloud.net/6FhbjuO8cHcYuhDVTlDSCt/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8xMmI2NWJhZC00NzY3LTRiZjMtYjU3NS0wODFhMTFiNzNkNmUuY3RmY2xvdWQubmV0LzZGaGJqdU84Y0hjWXVoRFZUbERTQ3QvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=VWgVg86Y11r3EcZlCSQiUbnC3FKMbulbEQxE2PoCUccXh76aJ5yRrA8dCxHgo1dtpbrDtDHV~AFDqHEa9k7lj0Jz0n80EbyD1XccTXU~okMeFsY8tv8njrM9NFkZ1HWPEs1IJxbH~1yRZGoK3Xy0FlZHgvFOEDrHQVJzkiWGtrC23fJA1pTrrCE1t6md~6dnjaeS3stnTLdSlDUOl2RyuC-HPbPL-fQ8tnho6Vw1tVe354-~dwvNw-r691vxcRqnyqGEpOX~8BbGFelTVBXWhtHjaWNKwZvo2borL2~7C4gXdP8vUeIEAu8654ImBxRwd-fAHevM1E9j3WciT~MKVw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4Vy3oAINwRgnxakoTz06tG",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-09-19T14:36:12.034Z",
+ "updatedAt": "2024-12-12T04:07:24.722Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2kPIZqSR5zjoujwXVx3dqK"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.568Z"
+ },
+ "name": "Color Picker",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Allow custom value",
+ "default": true,
+ "id": "withCustomValue",
+ "type": "Boolean",
+ "labels": {}
+ }
+ ]
+ },
+ "src": "https://a1ecf543-f4d1-4aa1-817e-6d409f83c098.ctfcloud.net/BPUQeVUgmogGJyeQ4zrBo/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9hMWVjZjU0My1mNGQxLTRhYTEtODE3ZS02ZDQwOWY4M2MwOTguY3RmY2xvdWQubmV0L0JQVVFlVlVnbW9nR0p5ZVE0enJCby9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=Q274MMz7AwBeHhWKu0cYYSuGylJpiQ4HhqPTwCj5Wxogx3uuwnBuJIfddlMQRkXdbxpta~PuHDBbyPFP9Ma6K7gtuM74~CqS1l9lvWQYqwQE~jGE2XtQJd93yB~p2D1qtkKTRQJgQgJMl7GQ8~-8BQCD3pu0AEtzYQb70D2aEzkq4iv31ZNkqzs5S9A8KvOqQGgOEpexKqhT711QXXahxwzilcwNn~j5NeeA~SumErparb5hs9Sqcnu9mogtwdmJMK4bc2XZpczG99lHY3VTc1xNRJN6rWdjiCFzv91XXvZdtbbw8bMtGXFvRKxsmI56VIVODPQPH72YxPi7KnNyzw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "1ENTlXR17q1veUn74QF9ns",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "41cviVbFZhsyGL7zXM0N1b"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-12-10T08:25:13.578Z",
+ "updatedAt": "2024-11-08T10:22:30.987Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4lnZtuZtUG8pqyhaQattvb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.569Z"
+ },
+ "name": "Commerce Layer",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "default": "skus",
+ "name": "Resource",
+ "options": [
+ {
+ "skus": "Skus"
+ },
+ {
+ "bundles": "Bundles"
+ },
+ {
+ "sku_lists": "SKU lists"
+ },
+ {
+ "markets": "Markets"
+ }
+ ],
+ "description": "Select which resource you want to get from Commerce Layer",
+ "id": "resource",
+ "type": "Enum",
+ "labels": {}
+ }
+ ]
+ },
+ "src": "https://367b35c6-55c3-4128-8195-974177c99f8a.ctfcloud.net/KPiXheMx4f3O9e8Nm9N6m/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8zNjdiMzVjNi01NWMzLTQxMjgtODE5NS05NzQxNzdjOTlmOGEuY3RmY2xvdWQubmV0L0tQaVhoZU14NGYzTzllOE5tOU42bS9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=Yc2QSu2IDk706Mp10vkrJkGZECA2i8rf0np4fnYqNMlqLeACrhbxubrkwngE2Irbf1JZpfHd4vBp~Odo3v9CZe2X0AdZBbhclqSzRimqcHdpx5DFA5xoGiz0PW4bZpDhBY0MulHO6FNJxUTE01sPKe20bgwKM4VqKqOYlDt1IzUN6adjz0LPii-COmmfPV9sw6nJxWIW4dOl5-HR6qdrsJlovricLaYVByix-b~MFo92VUHNGfaiHTawLie~KzHzQa1zBt4JvMf7N7S1OOcA2nzcwAs1BncuS5OpMRoS7JHI~H2yZ5uLWXDEph2Nfun4Zi9i-bihhqKUxZWD8kbtUg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3GBoHfsPvqyV74chvKCzNP",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0Ri9IrGVAtHGIMIwTwtXr1"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-12-16T01:38:40.267Z",
+ "updatedAt": "2021-12-17T17:59:31.453Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0R27Cf3qXKc6BpvM7Ci8l9"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0R27Cf3qXKc6BpvM7Ci8l9"
+ }
+ }
+ },
+ "name": "Commerce.js App",
+ "src": "https://contentful-app.chec.io/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "7yUlnpgAofvRDee0n6Ocv2",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-12-04T09:35:42.602Z",
+ "updatedAt": "2024-12-12T03:58:13.108Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.639Z"
+ },
+ "name": "Commercetools",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://f87f74d2-2653-42c3-8603-d69b15a38ea4.ctfcloud.net/3ugsvOg1UjQN6bznZq0y4u/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9mODdmNzRkMi0yNjUzLTQyYzMtODYwMy1kNjliMTVhMzhlYTQuY3RmY2xvdWQubmV0LzN1Z3N2T2cxVWpRTjZiem5acTB5NHUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=DEMeC5a6oS1cJWMrUGYyU4RaSAXM-XynZs2RAyg9NEDn5ATxeZFc3eGyjI-ooNKey-5I~X2Utrf9hekeMyOvV9nE4Tl7mmxoe0fMJqk0Grse-ppqzVc4qKSTwNlBqouMYlni3mxc3HUOkH49uKb5ek7KxIQxXv35R-S1skxDsLwI7EFl5N97baEe2O2TpTpGoTaE4g8jAcF~OqPTqzijpXG-WJiH5jE1aOYrNC75J2dnK1gYJK~F4ttXm5YNWvuHMHKlXj4Hv~a3u5HfkbER9gRjTIbWJZ22-Z45qg4ffWL6oRiHJFRiyl5a3OrrVwotg0aC7~cgx6qC0GzNi7UeBA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4TVVNA8Ske9pUajCsEXTly",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "6stNN8XMtvIWzLchRHV7GI"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-10-12T11:54:55.656Z",
+ "updatedAt": "2023-12-12T09:45:09.036Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5zswZwDK3vwrhiQKxwc9Db"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5zswZwDK3vwrhiQKxwc9Db"
+ }
+ }
+ },
+ "name": "Conditional Fields",
+ "src": "https://conditional-fields-app-production.netlify.app",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "Date"
+ },
+ {
+ "type": "Boolean"
+ },
+ {
+ "type": "Integer"
+ },
+ {
+ "type": "Number"
+ },
+ {
+ "type": "RichText"
+ },
+ {
+ "type": "Location"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "6ZBUT0ZhkMRAZ7C1KNtbBk",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5BAUF0LQ64OqOEs9hHF7Qz"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-09-03T09:56:48.416Z",
+ "updatedAt": "2023-11-01T13:14:27.120Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5BxXAzpRsCxKLeeFJe9bFd"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5BxXAzpRsCxKLeeFJe9bFd"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.640Z"
+ },
+ "name": "Crowdin",
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Project ID",
+ "description": "Crowdin Project ID (can be found in Project -> Tools -> API)",
+ "id": "projectId",
+ "type": "Number",
+ "required": true
+ }
+ ]
+ },
+ "src": "https://e5cac9e2-f38a-4896-9780-e3162a0703de.ctfcloud.net/XU2X5bNtbkkL5NN4IWPqF/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9lNWNhYzllMi1mMzhhLTQ4OTYtOTc4MC1lMzE2MmEwNzAzZGUuY3RmY2xvdWQubmV0L1hVMlg1Yk50YmtrTDVOTjRJV1BxRi9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=emM5YXmMa2tA057arTUtrWHPSuuNPy-ty2KEHYjJZRWeCyrnvOkFP~vmvBzEJcjJstN9rryPyrpUQv0vdBlJH2h1l5vz9GAhCanvNaVPyBVkQX21cOdiOQXHbCG16aK3HwdUkFg-1s4EtB99eQKJn1YbxUDgKqDEDVo00neDHh7JboJmaVdnKrXyQFR7hEQau3kd6dQlnSlzV~aV1xafmhEsIaQLfqOupE2jtMX6nyr03EsrY6hSedQ3Mo6qIyBqMOUP6xeBC95~axw4byaiAHgx7aCCc9dfEozX467uoC3tR1UINpW~A9LPEf3vrjadVB6~nbRFonZ8w3MTxqF6Rw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "57yilZEN9oBolHz9vD6jwY",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5NC6Cypz4leJZnIweXydYZ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-11-21T19:14:13.271Z",
+ "updatedAt": "2023-01-04T07:50:26.877Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NxhJi8jFFu0Q5TtqyBJI5"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NxhJi8jFFu0Q5TtqyBJI5"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.646Z"
+ },
+ "name": "Digizuite DAM",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Digizuite MM URL",
+ "description": "Provide your media manager embedded URL",
+ "default": "https://dmo10-mm.digizuitedam.com/embedded/",
+ "id": "digizuiteMmUrl",
+ "type": "Symbol"
+ }
+ ]
+ },
+ "src": "https://a8497d7d-1386-421d-b7b4-5519e5385368.ctfcloud.net/3Ddhfg3gD4xcWzuD9UROmq/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9hODQ5N2Q3ZC0xMzg2LTQyMWQtYjdiNC01NTE5ZTUzODUzNjguY3RmY2xvdWQubmV0LzNEZGhmZzNnRDR4Y1d6dUQ5VVJPbXEvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=VfSfBuHZ9vGE8iFYMU25i4zuXLa9GHSw~2lPLFtLCYhi8nOSWErRrHI-~DP7MvC3KMZQc1D3V3209IB5DarvXZsFuUt~ag-wFFFLhEdf-zISB0g4L4D5cruD2NQJftHKzvjGFa6ObguHx3dBlwVjRvl5-oQzN6zciCuGAC4j4hJDlfH3wSn6uJ39Sxl5QFjfop9LSMJToITvpHwOC1E~0L6RsqJcPI1tFQ2msArmlNUJonEVm5xIfrXYWHdMUz8dT6YAXIGsqDIxqfbBAA9pkNpj~KIjnFtq8o~b4k8XBOVNprAfROJhCQnbN-UOvPJKCdp49bMOOk~NUjQPj9pquA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4tDyevo7sMwvZhDGKzFHVw",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2025-01-08T18:11:25.804Z",
+ "updatedAt": "2025-01-31T19:55:21.389Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1TxB84jpuvrlDUiXNmjAnk"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.647Z"
+ },
+ "name": "Docs to Rich Text",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "RichText"
+ }
+ ]
+ }
+ ],
+ "parameters": {},
+ "src": "https://93224f92-a680-497c-87c1-27bccd9663c2.ctfcloud.net/1CdS7ioTlUoESJvsHpEHgq/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly85MzIyNGY5Mi1hNjgwLTQ5N2MtODdjMS0yN2JjY2Q5NjYzYzIuY3RmY2xvdWQubmV0LzFDZFM3aW9UbFVvRVNKdnNIcEVIZ3EvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=dHiSmXtuqMJfGgES5FC7eqlN3~5TfM-cDrLZBnxgfFDTobs1ghgi95uXb-7aZuMv-beIukeSsOYsc-NLYW0b-mvGtgR94zIiGnAZgn1GiwwEVGUUE0HBFwkh4AmtDC6ye72JQPwRjM5KT4VRDwCqB18~ZsLFd8hSu3z2Qqh59QljQoZe0bQArrdS6i2bPjg3jWGjy~3RIAujWNMc3Ced93wAhsFaqPL2ded1BOoJ09kYxihSY31ovSHIuL~w6RFBo3w-~Ld9bxaAIM9V8ojdk0TjyvHWLwltmu7q3K0NJHSDiEF64D-zinoctYoDpcSyeLl3aEGBZvClAcxyqF55yQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "6YdAwxoPHopeTeuwh43UJu",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-11-13T15:12:53.401Z",
+ "updatedAt": "2024-12-12T03:54:39.597Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.649Z"
+ },
+ "name": "Dropbox",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "src": "https://e50de2fd-6464-4b67-8c00-dd928f0737ec.ctfcloud.net/4v8nupiM6QKbO8TtSJj1oK/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9lNTBkZTJmZC02NDY0LTRiNjctOGMwMC1kZDkyOGYwNzM3ZWMuY3RmY2xvdWQubmV0LzR2OG51cGlNNlFLYk84VHRTSmoxb0svaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=PUF8yaiTj1r~ffVxS74PChw677LMxLQwKaL0lrX92147BT5Vgm44zPw-2sTk9iZAy~Ji8Sx2~Zy9WNcENPCw1eOAGZYw4A94GDoQAaFKWWrBRyUJovqQoHmze0eX~jtQ5d071HvlrbzQ9bMYRYQVMsQBJzlc455cO-kpgbLRzC~1r7aE8QAibBWMNg7i4mis69tmzs2Gsf0wZiCKpONa00790WBeRW8~U8ek2Ll67CPrLNjSHa3jecwq~LSsU4WdjT2z62LYrCpYUieAoQVx-oj09S9R~Q06OV986~hcdbeap3dJP43IGrrWmo0V~ULdYOHrUhjVULlK7B7uGTGOoA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "6JCQ2X5GbvJ4xRGEJbWIrz",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "1JMZ8tf4t7c5mnKzAELjRD"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-02-22T13:29:05.836Z",
+ "updatedAt": "2024-02-12T13:37:38.510Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1JKGArcrenIZjNrFPEXnxL"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1JKGArcrenIZjNrFPEXnxL"
+ }
+ }
+ },
+ "name": "EasyTranslate",
+ "src": "https://contentful-app.easytranslate.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "EasyTranslate",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "2NHTUlzatPT8jLceaVpkG5",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "06jjPu1EENrkBYwR2X37wJ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-07-05T12:08:08.382Z",
+ "updatedAt": "2024-12-04T09:03:08.087Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "065tcZyXh4M0Lj7LQGal9f"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "065tcZyXh4M0Lj7LQGal9f"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.650Z"
+ },
+ "name": "emporix",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://5c0e7571-6b5a-4e0d-bb56-8d23af300189.ctfcloud.net/Mmk1l7wy0kjK0QVjwwPjr/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly81YzBlNzU3MS02YjVhLTRlMGQtYmI1Ni04ZDIzYWYzMDAxODkuY3RmY2xvdWQubmV0L01tazFsN3d5MGtqSzBRVmp3d1Bqci9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=LuccL9U~~9Ut6NDwty3GGPVf1D6o0ge6FdJVGkllCHwUmJ0VBskCshMokSLHKI8CHZYS6AIPuDiq7fx2Uv6klmU9seN6IkqdqrA31blVpyxW~-rtPI7xuRckDadgnHE07qO9dWGv~9~IlXUHKaxyE6rUJKWnaRYXFy5pHuVONqZmItSb8chkxGEiMovkYJhLqVQwCQCcRzYlCF-tZy1QO5M1tTVTActERmUOzZpKIzIM0So-AmFS4d0P-Ea7RnfZkGdpxa~5ZFrgTshBrGJbfIOBt~DeBC21kR3eEj8rqVY7R-ghaqY8~xk85yuBNvPeg3lIeNtL33ysSkndybYwcg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7EFM8G3tm6fJwrsPRL0VpW",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-10-28T21:47:52.085Z",
+ "updatedAt": "2025-01-31T19:55:22.313Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "24lQRrtm3GTwuPHzmOqcFY"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.652Z"
+ },
+ "name": "Eppo",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {
+ "instance": [],
+ "installation": [
+ {
+ "name": "Eppo API Key",
+ "id": "eppoApiKey",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "Default Entity ID",
+ "type": "Number",
+ "id": "defaultEntityId"
+ },
+ {
+ "name": "Default Assignment Source ID",
+ "type": "Number",
+ "id": "defaultAssignmentSourceId"
+ },
+ {
+ "name": "Eppo API Base URL",
+ "id": "eppoApiBaseUrl",
+ "type": "Symbol",
+ "required": true
+ }
+ ]
+ },
+ "src": "https://fb8d948e-7b23-4dff-a2b0-834c18d9ac3c.ctfcloud.net/4ESGEzGXoDovOUwD348Rs5/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9mYjhkOTQ4ZS03YjIzLTRkZmYtYTJiMC04MzRjMThkOWFjM2MuY3RmY2xvdWQubmV0LzRFU0dFekdYb0Rvdk9Vd0QzNDhSczUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=XwXzHKXkuh-KtLjbMlcTlY9qHW0ug-w3exKEUNu6SF8xDu0B6LrgivICEx53iBioGuM9fvZmTjNk3rO~c7r-1BxPy0QT46EE56pinb~JpuUp3dJ6bZvdIrd4N77TxItN7XVInjXLVQDlTeSuqrPCh7X7LLlJ25bRVivukQ~OgBNjP2Fw13EJsaB4f1~J3DME9yzj75YXQvSeiLCyTsLTiEvqjqxRIrPicE5BBa1ta2IBe9B4HvI8XotKnJranfRoI~xNdkhRpnDHSNxo~ch8KMnYbbQyCgynkA7rJEImdYn5ZC3Im36udbYZyCJOL-mdjI8V-XZfPhi3mfDtCn-XHg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7GbS2x3SdVh7D2hb1FFsS6",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-27T16:38:03.221Z",
+ "updatedAt": "2025-01-31T19:55:21.908Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.653Z"
+ },
+ "name": "FlexFields",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "src": "https://fc5b7a2d-eb90-4d14-9323-ab3c41126bf2.ctfcloud.net/4bdHOGjNjrUGUzsScRnt4J/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9mYzViN2EyZC1lYjkwLTRkMTQtOTMyMy1hYjNjNDExMjZiZjIuY3RmY2xvdWQubmV0LzRiZEhPR2pOanJVR1V6c1NjUm50NEovaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=PoAu57KDAj0OTOYJ5W3YG4OSmNVroZFQnnZVp9Xl1R9PZl8PMB0vNmfLa4EQmYo9eIFgJwadVjuUsiMAeEARjH4WrmYMnRom3Se48~5QzjMGsv~Ir4h-zmSiZEaH0sQadwkwITJ9GPdkGpq~NueHYeQpSOnOMMeIx1A0qniuTFFwJZPA09luyAkAek9kZWN9lp06qB~YIDmP3AnJqh0Tnqn4jHcTvMGDSc9nZsMDB7rMPXaTDqPNXu0a7JL1xeryvCMFswFaGTqZtdDGATLcmBdb8ZrI0rtl2rE7gj2k-gYF5XCoqT62RlxAmVAO4nEsbxcWk-J0ir-WEU1kjkHaVg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5wHGALSJtz7y2EQOLfGhKH",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-11-13T15:14:21.970Z",
+ "updatedAt": "2024-12-12T03:50:27.317Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.655Z"
+ },
+ "name": "Frontify",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {},
+ "src": "https://b59db6f3-efe4-4a4f-bf0d-91b9048d8cd3.ctfcloud.net/6QmWeg6X7mplYaVOORmlau/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9iNTlkYjZmMy1lZmU0LTRhNGYtYmYwZC05MWI5MDQ4ZDhjZDMuY3RmY2xvdWQubmV0LzZRbVdlZzZYN21wbFlhVk9PUm1sYXUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Mbv9nIZjuo5bEOnhLLj1iV5kIXzp-1JDt~oAdJOt0xtfzGQpgULeHBZKRwv-HwMIy5qLtZarCkhY1DEfDEera7Wr8O~SFBR1plzx6OWyS6s6axUgINYbw~tyhMsByQdJvEBh4N6twFXrk468tDNypPNH961WI7wz3tOKrI7308IP~uusqgYldPJPK--~JHCOAEOaKkS81BzmUGw4GDH2YDSODJlydeaz-3rN846l4p2QeBYUpv4QSP5JgtdNlu25aFKtyye0OlNtX68NPsQ7gTB0p5gHjnJleqSDfvNfeGMPFf7VRenjrWGA3Qrz5KUWOkkdgY4v~z6J5RH99i4yww__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "2K5TL6cBI8hXXRvuDvg1K",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4noCerPY9pAzAwYUXcWMEE"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-09-15T13:07:45.069Z",
+ "updatedAt": "2022-02-14T10:11:11.672Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4nnAK8Q6dCVvPtz8VRVArC"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4nnAK8Q6dCVvPtz8VRVArC"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.656Z"
+ },
+ "name": "Frosmo Segments",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://017432cb-49c3-40d0-86b4-1d636efb41a4.ctfcloud.net/4w6N8nK38uOMwV1OoT6sgE/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wMTc0MzJjYi00OWMzLTQwZDAtODZiNC0xZDYzNmVmYjQxYTQuY3RmY2xvdWQubmV0LzR3Nk44bkszOHVPTXdWMU9vVDZzZ0UvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=SL3T7T1r0hjJcDRaiO2fcnhlhjCgk91wKdMCwdKE6vS5kHClUV4MVReMyF1YU~5-stihULWk-3qUZW4sQuLyntYx41n3L3YLEvrmdtGdBt2wzYOvdhwfYb78BckauIG7GDPbK7rhhm8XQmGVIQ-WTq76jbwdp3QVUq6gVp9yNlMY71jm0grzHO7dv2rVhP768Gpih88HuQfMhB6Mq97gIPO82CgdFXF0raYGVkRWBqHVbzpNfD5zd00SqQ6Ah4jLrltSmyhrnOW64SvA1Ea8m3Il~zmMMpbF6g2Ot1XU2Mj~~N~O9ab40mI62Gpib~~XHhUKFiIFRNDfEqrfapPF~Q__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4kJlo5koeq6SSrirCFQAeJ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7pw414MkO7J58dWK105e0u"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-23T21:54:41.281Z",
+ "updatedAt": "2020-10-23T21:54:41.281Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3SUN5V3fIJSPUEbu8EDepA"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3SUN5V3fIJSPUEbu8EDepA"
+ }
+ }
+ },
+ "name": "GlobalLink Connect",
+ "src": "https://gl-contentful.translations.com/marketplace/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GlobalLink Connect",
+ "path": "/globallink"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "5DlxOS0KvGS1Wk362xgvbN",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-17T22:10:38.871Z",
+ "updatedAt": "2024-12-17T22:46:44.282Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.657Z"
+ },
+ "name": "Google Analytics 4",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "src": "https://b922ef2b-607e-4411-9386-597b9fac89a7.ctfcloud.net/VIr4O387Fuw3MsJwWkmCU/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9iOTIyZWYyYi02MDdlLTQ0MTEtOTM4Ni01OTdiOWZhYzg5YTcuY3RmY2xvdWQubmV0L1ZJcjRPMzg3RnV3M01zSndXa21DVS9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=aSJjHnmiizZmf0UUYnToUGzfS23LZXoVBMgpTVlKZFtqqnTus~ZIhgnUM9xIM44iH1dwR2rdm~SYYax9Xc2h6zKrQ71sU~Dts4yVycCaqs70qtDmu7rEFfoYppfl9z6k0yOcmG2i9j9KmfKp72PmaLax4SOSveEiXVPlPYGvxqUW0Fnz93-wb0kqOMXLyRYxqbDLCQsby9qS4hU1YHcO1t0Dsq~y00Rce5hh6gc985MMWH8rZni-hdeX11FQ4d4uVK7APNMWELEckihFJrI-cgS4PPjjuD3yPvUtOPI522NVzesUMUdXo1YF1biK-A-20P1miQ9Wfe-g58BHqjF00Q__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4fD58pKkn4Tdlm7IW9FbvK",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "6tedZUtnDb5ugxASlwKsmz"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-09-21T19:57:43.796Z",
+ "updatedAt": "2023-10-05T18:37:33.749Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6t4JdmDzUzpppfl8710tKf"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6t4JdmDzUzpppfl8710tKf"
+ }
+ }
+ },
+ "name": "GPI Translation Services Connector",
+ "src": "https://contentful.globalizationpartners.com/",
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GPI Translation Services Connector",
+ "path": "/gpi-tsc"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Auth Token",
+ "description": "Auth Token",
+ "default": "",
+ "id": "authToken",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "secretKey",
+ "id": "secretKey",
+ "type": "Symbol",
+ "required": true
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "6o8NJOeW54fY2UYY8zQUZY",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-08-15T21:07:30.751Z",
+ "updatedAt": "2025-01-21T21:13:45.907Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FNJe2xmShG6mc5Cqsy6eW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.659Z"
+ },
+ "name": "GraphiQL",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GraphiQL",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {},
+ "src": "https://d1ef6648-d9c8-4616-9eb6-e28af914b872.ctfcloud.net/73xzvb2f2hBsNrd6SmQOqh/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kMWVmNjY0OC1kOWM4LTQ2MTYtOWViNi1lMjhhZjkxNGI4NzIuY3RmY2xvdWQubmV0LzczeHp2YjJmMmhCc05yZDZTbVFPcWgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=OTJBUdjS2cxzhuwWhxlR6Ez0SJ0zf~ch8iel59eHwXDrxp-crEgOB~IUEU5R5jyNiQQWfkWLDe6L0RRbH5j2G09mLQhB2vJVRNe7GxkUMuXGe~PyMqwoFbFe0iCVMHLJGA5OeH6lAKZV-xpEFFrVtCNsXpjK9YgwmI9AL5LodwnljGOqQ8qP23~sTTR5mOuQiRpkIVQUFZchKpYY~kPG2zZig564iUbgqJZG9G4tSgfkAe8eZp2vCoCqC7XDFkjvHPwS5IGnHVPPUgsvQhgJDzoeXCw~4PXvfUcMb1vQoWD7KJeK0Y~MmvN9vqIJrwjRCsbXwRWKwuugQNsUfLLBUw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "66frtrAqmWSowDJzQNDiD",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-18T12:40:08.484Z",
+ "updatedAt": "2025-01-21T21:09:51.178Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "6dV4yzcXnTFJpBQNTwolmx"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.660Z"
+ },
+ "name": "GraphQL Playground",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "GraphQL Playground",
+ "path": "/graphql"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://033bad1b-c8e2-4ee5-b8f8-f4c19c33ca37.ctfcloud.net/5PU7QvhB9REZTiOd5VqorB/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wMzNiYWQxYi1jOGUyLTRlZTUtYjhmOC1mNGMxOWMzM2NhMzcuY3RmY2xvdWQubmV0LzVQVTdRdmhCOVJFWlRpT2Q1VnFvckIvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=K0R8mmpJq9hDtBxO5zNbe68mbUcB2XyvAwSZjjVGpq3DpDKOA~112NOFHTz26cogWeiE87Tan4h8yj1vwv-zD2lKq1lubqMsjYIOczGngLXRcKZ9EZdAkA208PsvoYExQPmhvOSNwr6a3Y353J0CKJXdZCt0P2AqzjtChlTdZOGqhGITZftC8B3VbZzLvtt4A0xdNF6OlfF551B5rZdhShT0uRK9Y7fHM~qDTL3HVdHs4FAf2Vz4StQklkuSFVz4zi9mxMqK-T~LHeDS~GhtZZmBn8JiBZWQOIiRJWXk3G20G2GuSu291DwW37Nk0RP5sbmGj1ybH4wkJnbZ20mrZg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "2m6GPV4H181rNthvN0yxdJ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-12-10T17:33:24.519Z",
+ "updatedAt": "2025-01-31T19:55:32.302Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1TxB84jpuvrlDUiXNmjAnk"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.662Z"
+ },
+ "name": "GrowthBook Experiment",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://4d6e0680-9bd4-4db3-8163-1fe8138283e7.ctfcloud.net/6TMDCMeZ7auO6EVJyPxxJr/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly80ZDZlMDY4MC05YmQ0LTRkYjMtODE2My0xZmU4MTM4MjgzZTcuY3RmY2xvdWQubmV0LzZUTURDTWVaN2F1TzZFVkp5UHh4SnIvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=FGzagQsQyoKafyj1jNWeNz2OecJ5kpWPksTNuAfWvpsEeepqxFwRYQ0zRqiPrdeeBJQs8WqkEc1haZJXfCz0lGJJKL0dhx~ElzO~9f~gddKWUMiVXBVe3yshzQJpIts00sZe4o3f3b41IqwYnLUh9pwv5yutg1urmYlguUTNieI5Xvh3K6NGz2Ei2wYPkIKE--PcBG4OHGahcmqZYbi9kWLL1zzbYQtIaS~OxC0fSO1k35aYwd7CX3~0vxVz47iyDQMlgVyvr~aHpctw7JWLLxxoomFPfTH5K0vp6M41u5stfnvK4aCjZk2kYBJzebxEpDZEYl3LYZugUgmrZZh7Qw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "342Q2DqCjmsdN5BJCEPkrJ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-10-01T09:21:49.757Z",
+ "updatedAt": "2025-01-21T21:05:59.716Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.663Z"
+ },
+ "name": "Image Focal Point",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://64b6f241-4926-436c-bd20-edc8a218cfef.ctfcloud.net/H8Fs4Mxz7w5lYyozY2tKK/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly82NGI2ZjI0MS00OTI2LTQzNmMtYmQyMC1lZGM4YTIxOGNmZWYuY3RmY2xvdWQubmV0L0g4RnM0TXh6N3c1bFl5b3pZMnRLSy9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=KOYY764IkbMHGIBJx~Ucel7YDRoPPZyNgz2jc3nxjlUpK-tbgr4VfP~GmpNOPr20hBhB9WYzhrGYaO8DqhZfl5y6XOT1wt7aBuB~n7gLQOjD9E-5Kq7Q--66xFCy-Cvhi3okHNmuQNL0Uy4J-EUoqhnE8RU1N1nB5ckczYgSJXfYWVGALA~KuG0GljLahTtY6aO7VkFaYdj1UnC7JiGQMxzZ2OYIlN9Db-qw2LKqrNmqXX5O1tas81KTbwV5NoAd0Wx2~G7UfAKgx3GLzAE~y5VhulfFHUIW-mFp3fbxD4zn~9zg7R0tmrhbktaOXQiWL2~XCveJNFvEC7f2DPNKDw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3BGvGx9eF1bYGJw7tmHdXv",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-11-20T20:51:38.909Z",
+ "updatedAt": "2025-01-31T19:55:32.009Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2cesFtOix28UbXshy4iXK8"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.664Z"
+ },
+ "name": "Image Hotspot Creator",
+ "locations": [
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {},
+ "src": "https://768ac43b-36a2-4e75-ad0f-0beff2c245c5.ctfcloud.net/zPnHdZOjqEbeXunoXEzaL/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly83NjhhYzQzYi0zNmEyLTRlNzUtYWQwZi0wYmVmZjJjMjQ1YzUuY3RmY2xvdWQubmV0L3pQbkhkWk9qcUViZVh1bm9YRXphTC9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=Z8QIL6UvjubYDVY4uiEVL2JF~bcgaKGPC8XrLOXgED1qytn3dkzCs1O5N-h9nMu5by5DxevGA7KQnmHJ2oVYaCTIc6znejmtzFEphhUwd3K25RRW76jWbk9lizqvZIBCOa7--EJyVyb2FMTGLymCjthPgJkknfGXOgyrFEk8lfZaNF85-MJbuXExBmJWcN-2XU~rcb-gqvkzDZshrqiU9CSwjjsn2yoq8FFT3-2evS8jkUrVP9sMoUOSMlqD~R3yJjPC0Tu-dpko2oMvsl6oOo72vgE2HzT69FyP1hRdd3GRZZGdKukr3ugT8nim~6NrdxNw8bFK9ODmhc7nICyxLw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7v6c0ylAgt7KSAmgedz4ed",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0XenNsx0QCqtKgZsXtiWJk"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-17T00:35:30.734Z",
+ "updatedAt": "2022-08-11T17:23:28.626Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0XdiloXVewCZvwsuNzTocy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0XdiloXVewCZvwsuNzTocy"
+ }
+ }
+ },
+ "name": "imgix",
+ "src": "https://contentful-psi.vercel.app/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "z0uyReYKxjYGR7Aj7DjFc",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "3jnZ6YgPY4u2MQrtKXZ038"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-20T17:00:06.260Z",
+ "updatedAt": "2021-08-23T12:31:57.540Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3jmJyK2gmnvmAykKLpzAEO"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0OqydBwBE7LCTESG8kkZ0G"
+ }
+ }
+ },
+ "name": "IntelligenceBank",
+ "src": "https://contentfulconnector.intelligencebank.com/",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "IntelligenceBank",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "5q6VO8UT97XSTix4gnRbPE",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-03-01T22:55:41.032Z",
+ "updatedAt": "2025-01-31T19:55:32.928Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.666Z"
+ },
+ "name": "Intershop",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {},
+ "src": "https://b21f4978-6506-4fa6-8c86-5995705c8af6.ctfcloud.net/3PXmdcgKb7rerJVp7ADJaI/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9iMjFmNDk3OC02NTA2LTRmYTYtOGM4Ni01OTk1NzA1YzhhZjYuY3RmY2xvdWQubmV0LzNQWG1kY2dLYjdyZXJKVnA3QURKYUkvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Ul8~HZJX86qnlefKwetKrN6PDIQu~S26jHqOY8CeW-N3mreSskilOq-0mm7pVwRF6TQBfr7dgK8vqK8x~wbcfwKEDvqeYoRUnT5AQdOk1vFibWEAwTL6B63N70V0rdeD~HeK2WV0fJuybSbQYL~jwUMaVnesMKQCOM3nbAMcdMEc87R02vZCSNjMe3Zcw-Uc7HkURE-K8FpznadriHTG48Mw08-n6KvkunE06Vi71sajIDELZNPi6cac~Q84E3p79xkprlqMyT2i9rzNKU6jlKqhj7hXVfrxmPE68RCNP7sLGD0hx7n9SGS7bZ4m1LPm64yUdlhpS0NrKesTAa~M2A__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3tkiX2zjB7aqEiiKX5hRwc",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-01-17T14:29:02.114Z",
+ "updatedAt": "2020-04-27T12:28:08.688Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2jvc3kU4n7OIABiFMTaGyB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NItczv8FWvPn5UTJpTOMM"
+ }
+ }
+ },
+ "name": "Jira",
+ "src": "https://app.jira.ctfapps.net",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "3fLf4DnjbkN1yUA2V2fMgE",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-07-11T15:16:00.763Z",
+ "updatedAt": "2025-01-21T20:58:29.937Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FJf3IvgmQotV5As5zpGhc"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.667Z"
+ },
+ "name": "JSON Viewer",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "src": "https://6aec7260-34d8-407f-8e73-6e14bf2a1cd0.ctfcloud.net/3LBCSIpWCbmtuGOazPHMDQ/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly82YWVjNzI2MC0zNGQ4LTQwN2YtOGU3My02ZTE0YmYyYTFjZDAuY3RmY2xvdWQubmV0LzNMQkNTSXBXQ2JtdHVHT2F6UEhNRFEvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=YNJAkn7~idzxQFs-EvO~ExlJw7gReLNyyd9bMZ6wE2a7240Y1mBnl8zxvCzzh2H035~~sJfbvnv16r~WgKeWY5aAG60bh~WQKuLl1RSs~xmWRuOTPX1dVb~mlj6MYuOOJ0fP89GNewaoN9OF-MHna5cM06NKl5f348Fo-HKeaOrBwTlQWvk1t3IJBAm3qj1YX6~am4pG-YDFPfPuPD72V4m22QWO0cKqIdzlmujTR-f0enulkIz4rdqgJmM-7EVu96RF2GEmRXWxWWys4H-bLdtBqVmdCDPTFPYRQ7-0i6yiSlMehTnMbCjUMF23Ico5meD24BuBXMpIPrqyFOWJQA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "znp3ZloaqTn5g5VankRqD",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "2cARw0ayWLd1vWvA3xX3pZ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-03-02T17:42:08.820Z",
+ "updatedAt": "2023-03-08T10:39:04.851Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2cxxu5IH4VwGITxLRg03NB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2cxxu5IH4VwGITxLRg03NB"
+ }
+ }
+ },
+ "name": "Kameleoon",
+ "src": "https://contentful-app.kameleoon.com",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ },
+ {
+ "type": "Integer"
+ },
+ {
+ "type": "Number"
+ },
+ {
+ "type": "Date"
+ },
+ {
+ "type": "Boolean"
+ },
+ {
+ "type": "Location"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "4F6cpGJEuEzZDPTno9nq1f",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7e3UZK73OoV22a7UaWtGZv"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-11-17T19:33:04.159Z",
+ "updatedAt": "2021-12-28T15:27:21.195Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7dRVfKdqcMHRYJwRaifUJn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7dRVfKdqcMHRYJwRaifUJn"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.668Z"
+ },
+ "name": "Kibo Commerce",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ },
+ {
+ "type": "Integer"
+ },
+ {
+ "type": "Number"
+ },
+ {
+ "type": "Date"
+ },
+ {
+ "type": "Location"
+ },
+ {
+ "type": "Boolean"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Asset"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Asset"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://993555c8-30b6-4571-8388-c64f3e09abcd.ctfcloud.net/6sSvqEM7xGmmKkGT81kTXj/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly85OTM1NTVjOC0zMGI2LTQ1NzEtODM4OC1jNjRmM2UwOWFiY2QuY3RmY2xvdWQubmV0LzZzU3ZxRU03eEdtbUtrR1Q4MWtUWGovaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Nb8cdYnVEvQSGbdw2CJHGnG35vfvurVW3VO4MjmsO4zU8N5IHq9XUiuv4NGZW9s~SNPaQAac27ubwBtJ1bxI8nNlu06f9DoqGMDB~7byN59k541FFD-g-GsG9MOiWnO2WSdTrCuwiW2qy1B5YKx3ljhFzBsMysw2xnJwQESJCwbkXtjFogVzibcUOGMS88~XZgIXIoOK6sCg3zdwY-rjdoyAFicHcIk4dTSJ5AvBEcc04VgLMAzwxwdRwvPi0c2DojI5WhOD8JrT1QitP1SzMoZcsNA3B80M-B1EQ8c100P7sjrTrSV9BWI30LJeNpdrr6Wiwq4LltrhYj4Qiws7Iw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4uUaxd0lfvVJpY7PsmKBb5",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7uWRGc4lv1K36wcfhbdCJF"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-15T02:26:20.922Z",
+ "updatedAt": "2024-01-16T19:43:43.440Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "31XdODbMrVICB7JEdcInIa"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "31XdODbMrVICB7JEdcInIa"
+ }
+ }
+ },
+ "name": "Lilt",
+ "src": "https://storage.googleapis.com/lilt_contentful/index.html?ignoreCache=1",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "10ec9foxs591x36kLhTYT2",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "7pFE7su6qcypDfkpytSWYC"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-03-15T07:21:27.107Z",
+ "updatedAt": "2023-03-15T07:24:58.409Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7miHtW58hNWv7IeeY7iCQE"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7miHtW58hNWv7IeeY7iCQE"
+ }
+ }
+ },
+ "name": "Linguiny",
+ "src": "https://contentful-i18n.vercel.app",
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "7tmjHWJ6M0KGqrOKrhHdhe",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "03vYXC72caQvKlMA5tgu1L"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-03-10T08:53:36.303Z",
+ "updatedAt": "2024-08-05T11:53:02.236Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "26cKXW6ey72xUG0NahqVl0"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0IlkG3SeMEfIDd7qVLiybN"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.669Z"
+ },
+ "name": "Lionbridge Connector",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Lionbridge Connector",
+ "path": "/"
+ }
+ }
+ ],
+ "src": "https://f58eaa10-50bc-4b29-b440-0b7784180a38.ctfcloud.net/1rDLwN9sFbPwhECR6lXCJe/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9mNThlYWExMC01MGJjLTRiMjktYjQ0MC0wYjc3ODQxODBhMzguY3RmY2xvdWQubmV0LzFyREx3TjlzRmJQd2hFQ1I2bFhDSmUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=FVTObH2Frbk12YJcC~Appcxk-fl2BR1HpLshh4dRRoSKd5wq7onH4jIQvNqUhmBTbAfzOsTlQm7uPDQEKPJ3TwQVOkjHC6n~C9sEpY3njDqBZiUxJxb1KWdusCSbzs~8uvEeBXAkTmaOmxDuD~CrFKkWVnGBR1bUfwruydBuNDv7F3TOwhgj8q2RNRg3WHbwY~kCfqOMvrOVKHT9vwPHRYdVtgexAE1iC6mwlSSmBhbeJn~f1g7qcGVsOnRoXt4ohn~qArYX9Celkk6Ms8LKjijD-e8SMKC62tDrE0p9bQWYqdc3yTxs8hsBjh~---vJfrCWkDs2eG1DasJQGEpt3g__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3kMGvoFeVdMPIkolBPdPIg",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-11-08T17:57:44.339Z",
+ "updatedAt": "2025-01-31T19:55:43.504Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "668Oko9O5Fb63WY5P2lss6"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.671Z"
+ },
+ "name": "Live Story",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ }
+ ],
+ "parameters": {
+ "installation": [
+ {
+ "name": "Content Type ID",
+ "type": "Symbol",
+ "id": "contentTypeId"
+ },
+ {
+ "name": "Title Field Id",
+ "type": "Symbol",
+ "id": "titleFieldId"
+ },
+ {
+ "name": "Content Id Field Id",
+ "type": "Symbol",
+ "id": "contentIdFieldId"
+ },
+ {
+ "name": "Content Type Field Id",
+ "type": "Symbol",
+ "id": "contentTypeFieldId"
+ }
+ ]
+ },
+ "src": "https://6d95f02d-6e4e-4289-acfa-e4acb61e5aec.ctfcloud.net/ZCnbGHkTsovHNPKtQeIMb/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly82ZDk1ZjAyZC02ZTRlLTQyODktYWNmYS1lNGFjYjYxZTVhZWMuY3RmY2xvdWQubmV0L1pDbmJHSGtUc292SE5QS3RRZUlNYi9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=fdR2lnmMleQy~l0-h1T2PaS9d5HXcNWwTqQv5VSUJskIJwVxrBupe8lXWVrgf1aUOQfIgTDJ6qqGF6awtOL~2vLFoY3awmYjqVktiGiBr1f2U57CeYa7~9W8PcUR~rBXQ87C9CagrP~75SghUwVu2JZL7Lymxm7ty9V8aqWNB2gqnRC39wYSi9OsuhUQx6ORqnNKljmW~e-qX7po14yQrZ4NnmQOO28JItozCf-HUa7opw0pTWyg18Fwacbmbz~3kjThty-LxLpMO8oSFiLVIl58QZdCzmeb7B9uM9QDUgpAq8RoXpU71zxjU9cGMjPV-5QH~SlwHj3fiXqRELB7pw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "70ssKop5SL98q1JOJy3AcA",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5mrBsdeobqqOHiCIyhvJbp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-07-04T09:49:39.244Z",
+ "updatedAt": "2024-03-29T21:18:50.344Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5mn4ytNTDxT1pYPuWpZ5QX"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5mn4ytNTDxT1pYPuWpZ5QX"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.672Z"
+ },
+ "name": "Lokalise",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://e63dc4d7-e723-4618-9bed-12694008d404.ctfcloud.net/3GEdi69xDtJX4nNQgJSTny/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9lNjNkYzRkNy1lNzIzLTQ2MTgtOWJlZC0xMjY5NDAwOGQ0MDQuY3RmY2xvdWQubmV0LzNHRWRpNjl4RHRKWDRuTlFnSlNUbnkvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=bpETqI4oiUJ83NziRYgstLKZZytZSgSB~dYUOYyk-q1HTWYH25~G6ZlmNqbP7KnYAjrbIU7ujmO4asoZogWcsQgopIlSOsKmFi8hWWWaTqVo-zrHNUpL1q~CyPEZpLownXqEWr-fbhi0wlMRTwXp~Svox~X7KvzInC-72PtQhXC4JCVX9j15FaF9wQ8QnEnUpaPIAa2wOVke-nGokNiCnycs78W8rHMHkK-CiXQr7KiWk1J~MuKq-GvsUMcfA1tuYfp~~uo-C79XdMfI-na0L5n6xIyB4jbJzcDQjsRuBv9V6uK9ewi-BqxtT74FCFKvN-6Fp3qQxIK0deKA9QUvqA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "cQeaauOu1yUCYVhQ00atE",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-05-10T13:12:32.052Z",
+ "updatedAt": "2025-01-29T09:05:31.096Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7du7N9sCpTXRcuH75iBAX2"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7du7N9sCpTXRcuH75iBAX2"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.673Z"
+ },
+ "name": "Merge",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Merge",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://06ce4a11-ec2b-4004-b40a-eae3f7ba5e96.ctfcloud.net/7dgeATZJnWgT3vi8RE60Ow/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wNmNlNGExMS1lYzJiLTQwMDQtYjQwYS1lYWUzZjdiYTVlOTYuY3RmY2xvdWQubmV0LzdkZ2VBVFpKbldnVDN2aThSRTYwT3cvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Mumh1lRxbk62viT2xIfp1tfzjsXz14zTyTzSPE3VdmHiVUeDt6DU1143JVevFCPRRIoeLPO8mw6d90qmuLRbBSv7gT9PgTd-rVPF9LLl~DK3ctQjxtbueVDJ8N7f6ASEQz-XCejpU~ID5Km9gUT8b2xZJ0V9n95E9IyRupXec-uAZB3~zGS0YFh7BtrNaBKW4MXREDJGYddVLJ~WNNVt16Nw7hnQ6xFYaMCV7FulhyUbKXtKRVi67V5Lx2Bymgn~0cVQHLqwq3jLUzP6GQSz3lOHeuZU2pVhTbvXYQi9pvEAZRBFgylIuWeQjac55M6Jy9MibPUfZN-f5bnDY91jBA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7lcE2IF8TiXXKiMj2UGM8k",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-10-24T18:21:06.358Z",
+ "updatedAt": "2025-01-21T20:56:08.386Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.674Z"
+ },
+ "name": "Microsoft Teams",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {},
+ "src": "https://f13c2a01-b0c6-49f8-b75a-01dc8ec46174.ctfcloud.net/13NLM92PvmJCXTeSHS2uMT/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9mMTNjMmEwMS1iMGM2LTQ5ZjgtYjc1YS0wMWRjOGVjNDYxNzQuY3RmY2xvdWQubmV0LzEzTkxNOTJQdm1KQ1hUZVNIUzJ1TVQvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=AMH~KMiZY7pdor07BcTLspnv4E-Of0KuZzvWQcBhK-Y1Ei1v0yfpJ4yeAMbOR6m0LCoz65~VSP5vwnqyafYdp988aL0K7pLj7AppBMDEyNtmI~PuC0jk7uA9ngPgm4l-6wxktWIY9JrKuo7uBwBREIhkoqdQ9UzZlpGcCfOBVxsnmwzq82lv8eE7mHdm2hd6mPVToLcVnW36PoyMJbtuDLwoIwxPdbPKMeORc7RFYv32MnbafEP7DHb~pqqIxUm4CH6UX2NkYb75XGckouBYQUcXGZyqCI7hGX3T8D0mglRxYLg9cK3EuHyq9IeTtKzpCv00s08Hb60a30KQZsdjYg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5l4WmuXdhJGcADHfCm1v4k",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-05-20T07:12:51.850Z",
+ "updatedAt": "2025-01-21T20:51:19.536Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2jvc3kU4n7OIABiFMTaGyB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.675Z"
+ },
+ "name": "Mux",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://af749859-2493-46d0-993b-3eec3084d760.ctfcloud.net/1RwnoLYeRXZvJwc8QGfFAE/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9hZjc0OTg1OS0yNDkzLTQ2ZDAtOTkzYi0zZWVjMzA4NGQ3NjAuY3RmY2xvdWQubmV0LzFSd25vTFllUlhadkp3YzhRR2ZGQUUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=WmCGymoiVyBe~I3ewFHYeOvp6KlKkDCwri1~LjpNp7pI2u820hjwz~haZdH9sBOJ7gCEMLxeCO0ao94RHWLF1f2HuGT~Qzj-KLsYG~9kORBSEFpuGdOTbXzYTx5qB1yMOTcYBXXX0HvE2Q250vn-KkfdII6iIDPA5ByUGr69pIR3UKaFRGp9nr8yfA4xunP8jk4IJT47RyXO0IsT0FlW9J1PQ1j-6Z9MapRVLPCvpfgduNPKgRxdJkQH7kEedkchArMnQ02aXylSXgFOVv7X2gZskqGgAlYinqz1jLnpl16WiQzw2M7RMFo2KQRjg65lDJ0JXhB7TTmz8W3YWYhS6w__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "1VchawWvbIClHuMIyxwR5m",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T09:09:45.574Z",
+ "updatedAt": "2025-01-21T20:46:33.401Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.677Z"
+ },
+ "name": "Netlify",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "src": "https://3f2b3d36-f809-44ab-bd81-f412a4a418f0.ctfcloud.net/3iEI26pdrWHvrnIREDdV6F/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8zZjJiM2QzNi1mODA5LTQ0YWItYmQ4MS1mNDEyYTRhNDE4ZjAuY3RmY2xvdWQubmV0LzNpRUkyNnBkcldIdnJuSVJFRGRWNkYvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=J0qg1W7DOgrYm-GsJ77Uf7xyxhQrvdSu9B8CdX9Y3txST1XeQB9YZteEbtY3mly6CgR2fqMB9XbYJVl5CTLfHHHU5MTEryFN1OQ1OMyeVbX8Gi70goxK~wGm-1t0QzsNFsk2mA2b5jyz-7vdPejhqABs1o~7wj1q4AYUm~~j-U4TTRx50BhFMXnNabI9o8BUP-a-ICuTsXQD83FWEI-Ol4dUOXMfBhHnsVkeTpHw1Ay~qZsji3tEM-Gk0XCb2g0jjgcIW~XiVSEoGYn9DJvzT6z~HDvP1DF5CPXYJDru1ESRh4uysmzonOsshJv3EnYbKwVnG3d22ZYhu8UFXfUkpw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4QYnIIKna8TpXegJp3oSBi",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "4WuVKeXdeRlqpw8go7Rkal"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-19T15:16:33.569Z",
+ "updatedAt": "2025-01-21T09:22:53.016Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "79M4NDLgejkZSShtdJDuvD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "79M4NDLgejkZSShtdJDuvD"
+ }
+ }
+ },
+ "name": "Ninetailed",
+ "src": "https://contentful.ninetailed.io",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ },
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ }
+ ]
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "2KGwCxSgYcS5KKsb8ZyN86",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0qUM6SnNjkKqN2JVBUDk4a"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-10-24T22:13:23.538Z",
+ "updatedAt": "2024-04-03T19:53:55.580Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3AV2DZ5Pn9oQJqQ6SFVBC6"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3AV2DZ5Pn9oQJqQ6SFVBC6"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.678Z"
+ },
+ "name": "Octana",
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Octana",
+ "path": "/"
+ }
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "home"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ ]
+ }
+ ],
+ "parameters": {},
+ "src": "https://5a747299-a334-4837-84dc-4bff3dffdc3a.ctfcloud.net/77RP6IMXl9Mt9q5NQrLi4u/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly81YTc0NzI5OS1hMzM0LTQ4MzctODRkYy00YmZmM2RmZmRjM2EuY3RmY2xvdWQubmV0Lzc3UlA2SU1YbDlNdDlxNU5RckxpNHUvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=c3UNzdWHgPutvjhiG0COqeC6yOUe3n67i8WGsIdgt1umRxzeKEVwNL-mFu0ebhifB0HyxwB8KrSKuo5hdiydGL4CbVrfM29ZttYHb2xy3K9hdGf0sygTELXUQ484vkIlIoWGh5hMNMGXIUq1JV3Hb~q7FylbBNznIVxAx1l5dpIxgP7vvugW5DVBqBtiGShKnhWgeKUrG4k94k9P3OgVDbN2GVJ~xrCsT-zUGIFiX5fMZkPQiOEUsOkNDPMSpY2tmGFTXp1K73ldDy8kQkLS42Z5asPqrLOl1vvQ9y8dSOx7Bc4VMy-2yL~g7jxZd2z3nEfR37C8~QaIvRvhBQX9Ug__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "i43PggcHag2PCrGjYTiIX",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-07-24T12:38:34.885Z",
+ "updatedAt": "2021-08-03T12:11:21.857Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1lbcJCitOqcNZToAh8Mkxz"
+ }
+ }
+ },
+ "name": "Optimizely",
+ "src": "https://optimizely.ctfapps.net",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "3Xh8uDnRiZ0hpUyWCZtWmn",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0NCstxnb2tyMr22ly7sBI7"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-11-07T16:34:30.956Z",
+ "updatedAt": "2023-03-15T16:56:43.577Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0Nxch2ljQM7Txe1noKMEDx"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5SsU5BsjOoYnI1BVGDrmGt"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.679Z"
+ },
+ "name": "PhotoShelter",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "src": "https://81fbeafe-26d6-4422-9adb-3d55d88348fb.ctfcloud.net/2wKsot67ek0iKNRsFL7gVr/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly84MWZiZWFmZS0yNmQ2LTQ0MjItOWFkYi0zZDU1ZDg4MzQ4ZmIuY3RmY2xvdWQubmV0LzJ3S3NvdDY3ZWswaUtOUnNGTDdnVnIvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=N6uvGB3B6rz-FTiPYVVHdOALhygZRrz86zIXgeRqUWgP8BJUsrc-DiUQbM8UQ3AVS7wdhfh33XizT8G9-NOrVDqVmkBnOSEZQ0db~oEM6YqEH5w38j2gYUV3cxqvnvYP4bqry0BTQOjDEfb1Ych8vq7hh0tGIdmewiZuAEindBmltNLaq1Z~nVHW5KhrwtS0JjKx0Xoaz7ClnirLZ-cwqyqEiXQRPE4Su447I-wv-haZ3JBH-o64ssy-l19LhzS-nK8Qn-~H1dEmeRUDOhQ5J4J5HoOmhx~ZlG1jLqodBOaro8ydoFdnklUI4jnWwA3mwblDEFb24ruwVQG55iR0VQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5O9v59Lbugb5tFCMeyLP8K",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0g2JAivWiSKz1VCe23uUe8"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-05T21:29:37.674Z",
+ "updatedAt": "2020-10-23T08:21:24.446Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0g04BohAJNYkYM0FOLCPKs"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0g04BohAJNYkYM0FOLCPKs"
+ }
+ }
+ },
+ "name": "phrase",
+ "src": "https://pa-contentful.netlify.app",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "1wxoLYYtUviNg9e6m5Ai54",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0dPFwFwaNijMAAcuiJT5TX"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-04-27T08:38:08.011Z",
+ "updatedAt": "2024-11-19T14:30:12.782Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0dOTTmNbAKcqKjfuPCrkXT"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0dOTTmNbAKcqKjfuPCrkXT"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.680Z"
+ },
+ "name": "Phrase TMS",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Phrase TMS",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {},
+ "src": "https://3219c8a7-33fa-4b75-99c3-31c816004f72.ctfcloud.net/2BgFHrPZm2dYOGkHKxZP2N/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8zMjE5YzhhNy0zM2ZhLTRiNzUtOTljMy0zMWM4MTYwMDRmNzIuY3RmY2xvdWQubmV0LzJCZ0ZIclBabTJkWU9Ha0hLeFpQMk4vaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=hT~4FDjf6QSYF80yu1uuk3iW4obncyhEGQPsU2zXvKm9KwlOkmkkRujlUllLWn0KlW4sokt8ObrkQ5tDPtiOenOFzYbMakePHqH~wl5tDddFynaLa0NoD86gN2gHJTojp8pynCLfQW69uDARsoMmp-jP4MjIR-nXq-KI5moy4i3g6K5rh8xjE7YcBGW9THR4Y7YWbXEDdcj5gmU09E6B8ON1wPFzt6p3-K4m8kJ8MwYs3uaHI6~rR7B5w95MdlD2PmhmE24n7YGgmEg2-hRyvct~fFeYF97fffNsCeAnp5oFw6ZT0JcQZAPsFlAc93f4cB~vNNRki4UyI8Tn5wCYKg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5WpRlPR9T0hdBeXGQ5bEiz",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "2BWdsuNrGXGPjplGDwjpuP"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-01-27T06:46:34.442Z",
+ "updatedAt": "2021-01-28T13:12:36.030Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0TqLKiJJkt2PzzENv41cyv"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0TqLKiJJkt2PzzENv41cyv"
+ }
+ }
+ },
+ "name": "Qencode",
+ "src": "https://contentful.qencode.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "2YQkSSHsqSIwWhqzisdovW",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-08-19T21:44:18.814Z",
+ "updatedAt": "2025-01-31T19:55:43.291Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5wnS4py3wwn4xgtUhYXaA5"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.682Z"
+ },
+ "name": "Raster",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "installation": [
+ {
+ "name": "apiKey",
+ "type": "Symbol",
+ "id": "apiKey"
+ },
+ {
+ "name": "orgId",
+ "type": "Symbol",
+ "id": "orgId"
+ }
+ ]
+ },
+ "src": "https://61f540e2-289b-49e3-bbd9-ab1727a6e6f4.ctfcloud.net/6WXuJ4OCGRgsQ0pwJ1ynOK/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly82MWY1NDBlMi0yODliLTQ5ZTMtYmJkOS1hYjE3MjdhNmU2ZjQuY3RmY2xvdWQubmV0LzZXWHVKNE9DR1Jnc1EwcHdKMXluT0svaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=IwPL9cEpFCW-YCkDoAi3rS2HmuTfz4Z2UYkefazhAjCs0rSW7Dku8yypO6sAFtR5H~UgA38F8zybXab38~8uKRZPWzqnv2EB9-pfjsxYwHnOdv9PvbOtx9Jp7PUGhqC3oYhSWTz4thf3n1e2bPrajhmG6aBGCztQh41IgZ6UG-qB19r-1ES0sXMRi8sYJgsQHjl4p2LHyobQzN~WDLcVHzE41jL4kaRKBEmaHhLbu0lMrKxvfMa-7v7trl7xISIdFFKqntnKBsNJ7wvAyMysIWf50xdXFGlIvdAB58qsmQSiqYlPY-mLNFSDxFMK7U7u66KflfW6YJsc3f5CapInZA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7ek22esW2z9i1kdmevLJXd",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-03-11T15:29:55.343Z",
+ "updatedAt": "2021-03-11T15:29:55.343Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2YVRzNgF2sE64ooav1eKSd"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2YVRzNgF2sE64ooav1eKSd"
+ }
+ }
+ },
+ "name": "Repeater",
+ "src": "https://hopeful-ptolemy-922717.netlify.app/",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Custom Value Name",
+ "id": "valueName",
+ "type": "Symbol",
+ "required": false
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "6sLWDUsuXcyIfkPeokdRxJ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-28T08:43:21.403Z",
+ "updatedAt": "2025-01-21T20:30:47.119Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2LSyXwc717JeKfw5DIgg6W"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.683Z"
+ },
+ "name": "Saleor",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://d463b888-1d06-4f10-b416-9b1566b178d7.ctfcloud.net/6O0BY9hY5wG75yJSgUD5HP/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kNDYzYjg4OC0xZDA2LTRmMTAtYjQxNi05YjE1NjZiMTc4ZDcuY3RmY2xvdWQubmV0LzZPMEJZOWhZNXdHNzV5SlNnVUQ1SFAvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=eSDqh3kpp3pZak8OiF0L52wgZBC6PiVcJcXh7a9a69c4sWr7Wn9hGws0-GcWwnGgzgjJs8OUYLmNXOPrufnf~5wxaBjfHAC5tn5bkfRBY46idN7D5H47zdcBPkPibe1tz2ud~us8RqSLp6fq~ZUqy-ZFb1VrzpriGD-E1oaW9fJ4z4i5e9A4d0VIJJU4M3H-4wzCL6X~WM0HHEA4pKLK744jzBlaHifLRgeBvCOJkuwt8WEGpmISVrGjrRQ8Zvjfyi5-zR6d9hv95xy6~hehRjvvokUDaq~MaCSQSDLEd35VaOyTvyvVDwWX6ZUoQMdnpuFcRgGINQYq3Lj6je2JSA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "1O8njPYTGO44VueSJNBrdZ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-06-01T18:58:45.824Z",
+ "updatedAt": "2024-12-12T03:19:05.979Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7J9Yl0eiCbWcz1a6dZz2ou"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.684Z"
+ },
+ "name": "Salesforce Commerce Cloud Connector",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "default": "product",
+ "name": "Field Type",
+ "options": [
+ {
+ "product": "Product"
+ },
+ {
+ "category": "Category"
+ }
+ ],
+ "id": "fieldType",
+ "type": "Enum",
+ "required": true,
+ "labels": {}
+ }
+ ]
+ },
+ "src": "https://3b6d08cb-0ba0-4fec-a881-3fc521652297.ctfcloud.net/CsrBcNciwbL2ttD739JKv/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8zYjZkMDhjYi0wYmEwLTRmZWMtYTg4MS0zZmM1MjE2NTIyOTcuY3RmY2xvdWQubmV0L0NzckJjTmNpd2JMMnR0RDczOUpLdi9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=MFE67sU1ZdkxRH0DGZMxvB71gMEspih75khTl8kgsZftYpTsEK66LYMNuWk5YhM4h6fovDLtrZoQs-SZGKc6otfeMFVo4AWwr9Io1o83x7Klqcw5h0rJVbY5j3SwBnfFrg7z59BzXY5wVExYH6f4MfjAl6Rs~SAFk9LuF6ziE4XK5w9p~fBhIl5l8C--BrN7hbZRtrosPD7vEUDcHjTDs3EbwcER1Mk9qrPmNUjGjjwrBIBjeoZZQGfv9W0XKAbiptonDG11zs5HIwdWeLIUXugMzVn4A9S7oLGTy4R9bBGBY2l2fzBrDiJtz2i3rTIyx0W5nmFy9F0L7cVG7i5enQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "GdOFzqcDrEbmn2teDQE2i",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-03-29T19:19:08.656Z",
+ "updatedAt": "2025-01-21T20:39:53.281Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7FNJe2xmShG6mc5Cqsy6eW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.685Z"
+ },
+ "name": "SAP Commerce Cloud",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ],
+ "src": "https://16603fd4-eabd-4d70-b938-60532dd0717e.ctfcloud.net/3DkLV6i7HmiVKF0FzrEOg8/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8xNjYwM2ZkNC1lYWJkLTRkNzAtYjkzOC02MDUzMmRkMDcxN2UuY3RmY2xvdWQubmV0LzNEa0xWNmk3SG1pVktGMEZ6ckVPZzgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=BCCEHswZERo4GsK6tioIdc1~37H74GH5i-wvZl7FUOTkThfTiiT23Y7ulZbJBZocAzBAVqom-xd~UMfANVlibq5FtHx0lllDc3mREueuxaiXiebscX7b4gmOaK7WwCLb-H2Y8v-P~qvNORHnGTdDYRxxOUsiqxKQaVnXrMBZRmvlJr2L-BSuzIK5UV9U2IIwZ2xl9Y85W1jjWPex~7XYac33ht~bWb1BvHb0FMKQIUrYtp9jaB~mIQ0-u20Edb~NrQ5icqru4rCexokQfQfhW0IiTxFo0KMsx9ESUFa6Xdc2s9DfJ3lMVW6s1uqNZO5srJmXWNIAXUPhOypyuQW9EA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7jJoGTAjjjTZqedusaIU7M",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5u1hLJSfU79YOdpNtySNat"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-02-16T12:35:48.878Z",
+ "updatedAt": "2024-09-19T04:28:44.262Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5tiYEmkRQTmzxm19lqi0Md"
+ }
+ }
+ },
+ "name": "Scaleflex DAM",
+ "src": "https://contentful.demo.sfxconnector.com",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {}
+ },
+ {
+ "sys": {
+ "id": "60S8P6KWlzfazXqMjhsJ1v",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2019-12-16T15:07:42.148Z",
+ "updatedAt": "2025-01-31T19:55:54.596Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2MzbkIYbpZL19Dtc16UoJy"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.739Z"
+ },
+ "name": "Shopify",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "src": "https://c59a9a72-be13-4a13-80d7-b016b22bbde1.ctfcloud.net/k2g7OVjDMtSFIUKGDkOam/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9jNTlhOWE3Mi1iZTEzLTRhMTMtODBkNy1iMDE2YjIyYmJkZTEuY3RmY2xvdWQubmV0L2syZzdPVmpETXRTRklVS0dEa09hbS9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=j9F3ufuBHT7rrU6igR50CFypGneKjhdmXcFHYqmlwOSiv-sh3JY6hEg-bW1K73FVLwp8VGEY6vb9~AlPj6ADWihMobOg5CMNbTGUdGfo3jcdgX6ndbs6OnVf9Z~rkhokvFOOx1fWTb1fw033lmuNy9ne-5SzhiH-VAO~nn~g2epgsnhyA~kzJIrOmtMRWVMQi6aeaDvw-2RxGCb5aANAHlcF90DMcFZk9D9cZs4UOZhCzrfe3oVpZDEF77L4bneRXhLIW-BQORHy-ToQ79Ajr8uVY4n3szcygrqUj8QDkNOcrvDNEfb~GR7~gWgbLBll9hShAWL4v15JC8baZ83JNg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "5E71q6bdze3Haj9F2n9czY",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0SEv9uJudA095dlkpARGvs"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-06-30T08:32:20.862Z",
+ "updatedAt": "2023-07-19T09:19:26.677Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5rhzcuH9Wx3nurftHBCYVZ"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5rhzcuH9Wx3nurftHBCYVZ"
+ }
+ }
+ },
+ "name": "Shopstory",
+ "src": "https://contentful.shopstory.app/",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Mode",
+ "default": "content",
+ "id": "mode",
+ "type": "Symbol",
+ "required": true
+ },
+ {
+ "name": "Canvas URL",
+ "description": "With this parameter you can override global canvas URL for this specific field. In most cases it should stay empty.",
+ "id": "canvasUrl",
+ "type": "Symbol"
+ }
+ ]
+ }
+ },
+ {
+ "sys": {
+ "id": "2unqOCspPxYbyM295yh51V",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5FxqrACp1SSuw3oSAUCXcw"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-05-12T15:57:51.375Z",
+ "updatedAt": "2023-05-19T14:24:16.626Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7spvExYxsoecxOkXu6JpTN"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7spvExYxsoecxOkXu6JpTN"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.740Z"
+ },
+ "name": "SiteSpect",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "src": "https://51cffec0-7ac9-402d-9ba6-8ef67bab4cc3.ctfcloud.net/6jO80YvyLTqsFOa78bFnSz/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly81MWNmZmVjMC03YWM5LTQwMmQtOWJhNi04ZWY2N2JhYjRjYzMuY3RmY2xvdWQubmV0LzZqTzgwWXZ5TFRxc0ZPYTc4YkZuU3ovaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=bowf74djgocqeb1xUWCb6pKlS7hKBCZz6mSHF3YnJ4ngxqDsIIulbklm~BVC4wFIPCF3ug4XdZIibUrtLOmkgcmUizP2RTAJTU9lIS3FCJ-~ifO7SvjJE6kVpZSNiOdSFCeIxSzJvsrI2Ut8FI6gvWYLvnX3ctQ3VtJLL0Z~q6yzNN2otMQS6Oh~7cQtMB9uNm~k97XjnrrL5rmuouMPxRTq-zfosv1~siKYFSiu2Lm7IKToX4-k4GKe2lZHC-DLagBPIhv1iUZsRLSu4wXxzWIuhSK1qirH-GpZr6MlKb707f4vJouF3avy5TnojRvdhNtBQd6KXuVA8MWuvGAbXg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7ir40h24qLGSQWJ6JCS3sk",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-12-02T12:36:53.667Z",
+ "updatedAt": "2022-02-09T10:11:47.526Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1lbcJCitOqcNZToAh8Mkxz"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1lbcJCitOqcNZToAh8Mkxz"
+ }
+ }
+ },
+ "name": "Slack",
+ "src": "https://slack.ctfapps.net/index.html",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "24SX6dqadSbp2kTSBSNw0L",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "2QOGgGnLgLCv0ROiZ3wOBr"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-08-03T18:26:51.989Z",
+ "updatedAt": "2022-08-16T13:50:52.528Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5oh1nnjVvZgRgkijq7lW1t"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5LG9NsobZHM3BS2bNr4wcn"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.742Z"
+ },
+ "name": "Slatwall",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://444da026-d75e-480f-b9bb-a58dff8402e7.ctfcloud.net/2JkgvZqkwMNMCrWJeeNlAV/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly80NDRkYTAyNi1kNzVlLTQ4MGYtYjliYi1hNThkZmY4NDAyZTcuY3RmY2xvdWQubmV0LzJKa2d2WnFrd01OTUNyV0plZU5sQVYvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=ROVevEA6nnKAHctmw-3WYnrdJY7D2KjtVbN4jOQNNAUC5AYsFY7HGhHMfTl5iPTxPZAezyysmFLEl~MtClCf4Fkx8GIk8S8X00MeLB5DVhlbiPvi923B2iFURN5B9OfVNQrxzfRLukcap42dFj3hcA0f4KxGRybOizn2uGXn9w6vwNlVaanTV8gTTAG~LxTRT2N-9fi8bGpjwJPuKDjqqyWX6hOcROSoV0sKX9c1KXgRzjOJ59FI3OzifC5tIHvmZBKWTY1tDGcZvNwYe1eNHF1ly4caw69w~~7IJbt7110KuLyVBicfYjnK3DboQXRM5n8--EwqK4NkrkDoQd1iiA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7fJGa8IE51jJdakiyBwcJ5",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "12AsJraQyXh1tM0uoQ51K5"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-06-27T12:49:30.113Z",
+ "updatedAt": "2024-12-09T16:01:23.574Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "12rWPvzWa14PM2cI0c83Gd"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "12rWPvzWa14PM2cI0c83Gd"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.743Z"
+ },
+ "name": "Smartcat",
+ "locations": [
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://ee567258-62f2-4830-bce5-e892540632ab.ctfcloud.net/52Iw1IbBDsfMNgmasSjpIH/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9lZTU2NzI1OC02MmYyLTQ4MzAtYmNlNS1lODkyNTQwNjMyYWIuY3RmY2xvdWQubmV0LzUySXcxSWJCRHNmTU5nbWFzU2pwSUgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=Y6xwuLrrzRRrFg6BpGMCSstp3-EDa2GksSssALdoWDz5O2i3wARb61yLvrBztwE28BVj9o~800sfQNrK728Zy8~Mqr96f0J~ppKV0Th0k3vJh8CHJ7vhe1VE5cYg~5rTf8ltBMiD9kkg7U0s5v5WNoZb62YBdT5JNXmlpJPwD-yK6JaENzzc9MQjZAHp2zwCHQq4tugfsbSP8lXJQDRINhW0Ozg7v1wC~4TEpDNRrrjeg5T4KWOx~KrE26PFWyIZLV4kFtI3nycPPmiq9RUSy5ADmSsCyfChzq3RfLXSWlwCFE4D-5mlNxiied1kgKuR0k1IuWxsnO~JytitRSVXjg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "6ABxlejtWcEubKLM42fjMD",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-01-31T11:06:22.084Z",
+ "updatedAt": "2020-04-27T12:28:47.438Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "46JHc8ru6cDDm0CtthS0Kw"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5NItczv8FWvPn5UTJpTOMM"
+ }
+ }
+ },
+ "name": "Smartling",
+ "src": "https://smartling.ctfapps.net/frontend/index.html",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "4c6SxDAXoHPLcFmoMLvGde",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-27T19:17:22.793Z",
+ "updatedAt": "2025-01-31T19:55:54.291Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.744Z"
+ },
+ "name": "Surfer",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "src": "https://89d87a7a-bf41-4aa8-8890-796c16c5bad4.ctfcloud.net/1BuauoUv7GkWuh6Q8U7Jio/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly84OWQ4N2E3YS1iZjQxLTRhYTgtODg5MC03OTZjMTZjNWJhZDQuY3RmY2xvdWQubmV0LzFCdWF1b1V2N0drV3VoNlE4VTdKaW8vaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=nMWO2SVEaQ5PbreaWWXOAexksAk9YDm7n7zWga1RImNQGd6kfXFxCPP67dELmmPmqVHn8nOQgFKySzA6-WvzQ6l4i6nw6gNH4FLf6fQbPzLm~o5RLQt3eq8Q73Xr0qX2uFPCLedCkKlD2O~pVAWubIO7t46~wCBenin~8Q1895ctQ1FKP8RMtQhTtwWJ~OjCxDauplHZ~~ETe3x1zr8ruwPIjcm3HjXvrG8vqat8qYjC-u-khqWXerzuzRMCRnhbEMNKRiQgKr70sjoELqIAOQPK4AWNIaLO0LvAIFptn46gP6SAPLI3UsQPvtraaYy~TBk9lMeDiJaoNjMiWDHQ9Q__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "QMdzLmdwbV0j4ZrVY4WOv",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0uSnG7ikBn0c6T0kS6hhlx"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-03-18T14:58:18.720Z",
+ "updatedAt": "2021-03-18T14:58:18.720Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3IatEc5aJ2AXeP0sgPkLUM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "3IatEc5aJ2AXeP0sgPkLUM"
+ }
+ }
+ },
+ "name": "Swell",
+ "src": "https://swell-contentful-picker.vercel.app",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Symbol"
+ }
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "7CPoljE4C0HpsVZ7a7HrZG",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-07-05T09:39:05.993Z",
+ "updatedAt": "2025-02-04T08:06:39.045Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7JWRGOYWY5AnjuoNVzBwyO"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7JWRGOYWY5AnjuoNVzBwyO"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.745Z"
+ },
+ "name": "Tasks",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://fa9349c7-7c39-42e4-849d-b577e6e9a374.ctfcloud.net/4x8Wfpo5QSpXPe3z5dNRCS/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9mYTkzNDljNy03YzM5LTQyZTQtODQ5ZC1iNTc3ZTZlOWEzNzQuY3RmY2xvdWQubmV0LzR4OFdmcG81UVNwWFBlM3o1ZE5SQ1MvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=IzdrRVv2kfK1evdhjWb46UeCR8AqumVtwQ3PLtqRA37F8MFEggB2ACK6ffIACqhC1Xzn5tF88Cz03f96DZe4H7zYLoZy5k69yXLgO4Nggp3jljZXpLg7j5gtQsjxG46TGCAC5oztHj8s01p5WbCt-tvvTPbh3dZKG-UceNoNCBLVEfH3QSgCnLUQgQgFkIS2jdgyxwfYedvVY42EY8Gn~6jFIE2HZNW-Q1bK6A4uZ1i8Upg2mRdsquP5cA1dVvI2gonDrDf3YZMM63bCtUA068EHY1iB-YPEfeA4ALRHKOPURdSRDkXmJwHVBntgfSyy7QkW48UYGVFLdsBL6u0frA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "EPRcLyDrBeAQgLtTRfPwu",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "25nCTg3Bl7iHWXk541IXcc"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-05-05T07:11:38.645Z",
+ "updatedAt": "2024-11-13T11:41:18.327Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "25dziZyGrZWrZ6gsQmtQze"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4pwK4DjXHKcAdt4nv6ZSyO"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.747Z"
+ },
+ "name": "Trados",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Trados",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {},
+ "src": "https://15a427d1-bb86-4b42-84fd-d2a4f6ee3a62.ctfcloud.net/KwZyWqOAgBnqjCnRi9aW6/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8xNWE0MjdkMS1iYjg2LTRiNDItODRmZC1kMmE0ZjZlZTNhNjIuY3RmY2xvdWQubmV0L0t3WnlXcU9BZ0JucWpDblJpOWFXNi9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=CknYAVR-87Xa5QC5wOVrZsXSPcVH8F4Lrw6JDwF3RGvagr1C8NE5IWvsn3O3-OUcv2K6hq8lGa9RdE7saN1QX2i1nwCVa0z9jfP87pNsrfFPSKTX-XNr6mQmfCaAwvptB3QB3~MbLv~1IhAHqoO0KJd1DzMGJCY4W0kqK-RkV898lwjeVCOWJycX19jCXvG1LpAYQLTXej4LhbuGPzXysWFz4JEiEoloBVzSVjfb6zM4H~rIlt~S3AM~5BhkoE1mAe1Qsd6omSENgbZBdgqwIdGtW2na5WCLt84iqXLbe1D95Q7NtNv5~EBuBP1yYwtPbDBKbworVL2WXbAxGgCeGQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "b7SVv0k1EYbQRsusviQDi",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-04T14:49:53.208Z",
+ "updatedAt": "2025-01-31T19:55:54.908Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "549ZG41aazTYkABSEvfRyA"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.748Z"
+ },
+ "name": "Transifex",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://05e597ce-691d-48da-8adc-eedca26c54b4.ctfcloud.net/4yTnBmPutHfeQkRHdyHizn/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wNWU1OTdjZS02OTFkLTQ4ZGEtOGFkYy1lZWRjYTI2YzU0YjQuY3RmY2xvdWQubmV0LzR5VG5CbVB1dEhmZVFrUkhkeUhpem4vaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=l4IUqFtr-yydo0l5-IZW9rWhadLA4rM1pWjoUos3EDO8zX6UndXR4PxHWvemHch4ME77BAO1Lv8N5SbdUzj3KhTmVk9djuhifxs7mkN5h0LdV4cjvi5-KixWEH59AXsm4tgDWvvUZc4r1pPPX9knweFuT9oB7N7omxIixgNdqIy1pJ7BW8XF4mlw-tGCEfoexg-sbNoke6HZrhS-WLN7wAaunoi-vIkIYW4WB-zVifgR6bbcnoyAndPPOWq5r7DRrIQS9HzcvSYnmeBESNkw7kZugBXeenR7XHYRfFXw5pdkasuuylC0YniIEpp-PY1quuhWDZXie3LfFleL~WG8sA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "1SZgLiOT63ijEzPJZQ4QWT",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-03-20T13:46:37.843Z",
+ "updatedAt": "2023-09-28T16:03:15.817Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2jvc3kU4n7OIABiFMTaGyB"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ }
+ },
+ "name": "Typeform",
+ "src": "https://typeform.ctfapps.net/frontend/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "home"
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "1BeY7xDfJfvD5El9ymsOZF",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "14pf4vP1CA4EGu7AXnr1P5"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-08-20T23:27:10.487Z",
+ "updatedAt": "2022-04-26T20:01:40.373Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0SJxBnMuapGsHZPLP1q7US"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5uDNLZHF9vPRvtZ88GeNGi"
+ }
+ }
+ },
+ "name": "Uniform",
+ "src": "https://contentful.uniform.app/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ },
+ {
+ "type": "Array",
+ "items": {
+ "type": "Link",
+ "linkType": "Entry"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "3Ju8DSs6cEG3TnqFa979vc",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-27T19:12:10.394Z",
+ "updatedAt": "2025-01-31T19:56:05.979Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "2D8ljY8aA7f32Wxhcf8lxD"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.749Z"
+ },
+ "name": "Uploadcare",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "parameters": {
+ "instance": [
+ {
+ "name": "Max number of files",
+ "description": "The max number of files that can be added to a single field. 0 means no limit.",
+ "id": "maxFiles",
+ "type": "Number"
+ },
+ {
+ "name": "Upload sources string",
+ "description": "Comma separated list of possible upload sources. E.g. `local, camera, dropbox`. See docs for details: https://uploadcare.com/docs/upload-sources/",
+ "id": "uploadSourcesString",
+ "type": "Symbol"
+ },
+ {
+ "default": "useGlobalAppSetting",
+ "name": "Allow to upload images only",
+ "options": [
+ {
+ "allowImagesOnly": "Allow images only"
+ },
+ {
+ "allowAnyFiles": "Allow any files"
+ },
+ {
+ "useGlobalAppSetting": "Use global app setting"
+ }
+ ],
+ "description": "If selected `Allow images only` then editors won't be able to upload anything but images.",
+ "id": "imgOnly",
+ "type": "Enum",
+ "labels": {}
+ }
+ ]
+ },
+ "src": "https://7aad0801-b0a2-4382-9455-624148cb550a.ctfcloud.net/aKexNUjkGdX7VRRIClMCI/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly83YWFkMDgwMS1iMGEyLTQzODItOTQ1NS02MjQxNDhjYjU1MGEuY3RmY2xvdWQubmV0L2FLZXhOVWprR2RYN1ZSUklDbE1DSS9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=YcCav-D3LbV5mzRB~4vx6AUgB9GteZDEMEetxo3ROF6EbYgiY42ICTVs6NK5-aLWSB0jvBXoDNSVn7AnfwhiUjRBJnTbrwvjWgNYBERiVEsGo787-24nGZxupTuxv16F1qWgncI6KFh~z9mbpNn-29pt6c70SZI8tAVaV3XpYkpgEd01--csRuxA1pvzhlq06O~gC-0jmp8WC8-5OrVOFWOAm-0h3AS5ou9aXPkWmpzSS2DNWhp0efUpl1M5NuXU66L~m8TurFBrDeIyT72OYrGr7ysZQ0qL~tXr5urY-oJIo67wkCcv3wQcR7~G~Sm7~LAGdlV-80wOxeP1mA5MAA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4QsJrTg4fFjX7UmQDkeayq",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-01-23T22:37:02.320Z",
+ "updatedAt": "2025-01-24T23:01:55.307Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0VYEozm0sWFT6Wee4Zm9Dn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.750Z"
+ },
+ "name": "Vercel",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://9f3afa65-6214-4de1-bd24-408fe715c06e.ctfcloud.net/6M05o3q40mxTfvUOu3ZnOS/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly85ZjNhZmE2NS02MjE0LTRkZTEtYmQyNC00MDhmZTcxNWMwNmUuY3RmY2xvdWQubmV0LzZNMDVvM3E0MG14VGZ2VU91M1puT1MvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=J32Z1RejHhcoKzXhfsGiCJc7hRORUdtkF~9gWOzMIcSWrZLNoOvS6L0-REZ2Vbnl9yE~SD1myeyvf6w6CZM8Y3dO4TYklnQcYgIKZOwJ~Nc207Ae2txQAwrSm2G6CzYXuz~YnUtq7kGxsg6NBYxAOICvZ3A7C8aJEgPnEfbaB9tcqSm-YrwThp-OQp0fwwyHS~NEeWdimlYHpiw0kkU-MEO41Dt6imcAK9im5~BUjO6~vzKK0teT3VWDrcMIRntRClbggWdPIF-JGoetTNHXW4zob1A8TlGO7MZcopZ8dCZlFL6WoMp8xLd5Ns5txGK3jw1dvYGfR12KlOi9aJzHeg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "3HFf3DxTPYMh2L8214oW1s",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-09-13T18:26:51.771Z",
+ "updatedAt": "2025-01-31T19:56:05.440Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.752Z"
+ },
+ "name": "Voucherify",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ }
+ ],
+ "src": "https://79b5fe5d-d537-470a-924e-236b97b7ce22.ctfcloud.net/6CVqOrdznLgtiDsfW2eiwo/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly83OWI1ZmU1ZC1kNTM3LTQ3MGEtOTI0ZS0yMzZiOTdiN2NlMjIuY3RmY2xvdWQubmV0LzZDVnFPcmR6bkxndGlEc2ZXMmVpd28vaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=TslVcLqYpx5E3ykY0FJk~n8ow8q-9tg~kDT-Pobl234D3I9ZTRT1uw0rpgGvsy8Z~QUhw36dylCbKO8d7QQImaTFO6LbZdSVS~sY5KuE32nbyNKFnFLImf4TQwZzYgZ3Bd~A1vf8F3lnBThmJJQEscnrSNF8svfIklRsL6KydaTdbKZ~9UwdgSqqkV4MovJM1TfZZ-UN85k7xjAhMPQQHZoWENtqMySOixp9lH6FS3q~gOg9yyvFX19yMaOMmBthorVAfKbXk8E2eAdsBt~0aCrVFSpiJlrLwn6rF~v6p5EvfWvWSJpHvXPgX8O6AWYbO~ZjdmIuVl8P3lMwYl~OLQ__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "7DnamgI4qKntUVMcOfZtQk",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "0obnPYhku3jo775GiGSivz"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-06-14T06:34:10.948Z",
+ "updatedAt": "2021-07-27T15:46:09.562Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0i6k6A8gvnzsopMOPMqoqT"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5Pdjlm0t7kKPqgRXTEcoDV"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.753Z"
+ },
+ "name": "VWO",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "page"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://fadd3153-6e93-4991-b002-21f3001d4fe8.ctfcloud.net/2nZR4C05uQJr3skPaYUXyL/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9mYWRkMzE1My02ZTkzLTQ5OTEtYjAwMi0yMWYzMDAxZDRmZTguY3RmY2xvdWQubmV0LzJuWlI0QzA1dVFKcjNza1BhWVVYeUwvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=VKdpSa-Y~yQCxKH2UxmOI1uwwEmxhVpJ69A7skBRVnZyg79sDzj9ffgh-MkvTmhAQBl2KukiLtfhdO1mkETTpjpC~NMSmaXFw5O8FBtM065nTfZ-a5szlrLatjva4lQcF3yj8Ghi94AKLbPgjhhrfsWbT-e6byBTjau69Z35bn7A1IzZAzd9PWhga21EyNjQwUY7dpKLQDDxwrh5DMk41aSHKw0fVOrqziUirVQVUhFmEBPKOGwwOZexVtxH4~PP~FGSsTTT-yc3~34D9VfnBJRCmZ8QTqLUeuIlNJbIUaJOrsLqzX9q0Cd20cYzxPUT~zAX-zZrbCjalOxzfwpZkA__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "71oYmQJFCIWn9pxizjN8dZ",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2025-01-29T16:54:50.238Z",
+ "updatedAt": "2025-01-31T19:56:06.115Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1TxB84jpuvrlDUiXNmjAnk"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.754Z"
+ },
+ "name": "VWO - Feature Management & Experimentation",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-editor"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://e6bdcc98-c07e-4c14-a5db-82277287e4cb.ctfcloud.net/KH2X9F4QeHzT8SLQKD5CN/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9lNmJkY2M5OC1jMDdlLTRjMTQtYTVkYi04MjI3NzI4N2U0Y2IuY3RmY2xvdWQubmV0L0tIMlg5RjRRZUh6VDhTTFFLRDVDTi9pbmRleC5odG1sIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM4Nzg1OTUxfX19XX0_&Signature=aOD3jLKKuxWNVSxZ8oWmYk9iPJ-AJlrnD3ypcMAYV2tCEm~RFWoh8ApCjUXauFsHdTLX~6JKrYzOICKFAu6BE3pQRtnyvrGkEg2LO48BgSO3IUd2JpdCmu0Wym0utoSovSkf8CqI4XCEvWeX1aWccVpPs4siTz7w3k0IL-lEATwMscWMoI3q6GMR7izxn7QXiRic7PPXyIfbYqFvqwrLKGEbz01T-xzNM90UA5~mD4bQs~h5b3P8gFZuiYDW5dp5N01OWt8DdpBmGfFmRpYzY0CgfJBDPV-laL-pUZ9mOU2TpTfbZEFQegMuROci8oUeqjgQSQe56XUv-bRiyeBY0w__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "6StWOM1AZBDHDjynDkm1iz",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2022-08-16T11:51:02.704Z",
+ "updatedAt": "2024-09-10T18:08:55.958Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0xAU1rz5uyEJ0ItTExcjsa"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "30LuuQybViGYPup1O4CPyU"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.755Z"
+ },
+ "name": "Wistia",
+ "locations": [
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Object"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ }
+ ],
+ "src": "https://e203aea8-0a3f-4b7f-96ec-eeb349422af3.ctfcloud.net/58RN96o2neL68XlitQnmGX/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9lMjAzYWVhOC0wYTNmLTRiN2YtOTZlYy1lZWIzNDk0MjJhZjMuY3RmY2xvdWQubmV0LzU4Uk45Nm8ybmVMNjhYbGl0UW5tR1gvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=UbQU89WyTJA4y3M052mGTH1-LHuIajsHaQypphZhV~gO4Z7fyj6QlwX~IzADp6PVeNNjnnOWDsbXc~5a4NUdq~S4lkaUrbyUqmMrgI90k-ie1ZeOWFMnchL~Uagnl3taTRbkVRUBw6hXsintPA9HJoQdqLyr-rzj2vd3CTb5kTxeIgVygaShI1muJCPylDJU4~LlPRujGMnUEajOKWfjcioDGlqGKCzx3CLWP-hTRZcnsNC1F8X2UVNp8nSnRxPbBaaQ~KOfPmOE1qI5lqgabxmfF82vApJMD1ta3b9giZ~0tYryBXjce9qleuQIQz0ztuqUKsU7dbk3linL51ABRg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "44A0iM4wuqcQBDfg6qrlQx",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-03-01T23:19:13.465Z",
+ "updatedAt": "2025-01-31T19:56:16.427Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "03fzTwuuEEPDj1HaDHyeDM"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.757Z"
+ },
+ "name": "Wix",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {},
+ "src": "https://85dadf93-16f5-446b-a2a9-2a0d1b1e1a95.ctfcloud.net/1tWK9eLCM0S4xpGsULxO39/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly84NWRhZGY5My0xNmY1LTQ0NmItYTJhOS0yYTBkMWIxZTFhOTUuY3RmY2xvdWQubmV0LzF0V0s5ZUxDTTBTNHhwR3NVTHhPMzkvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=dOS7mSBBBMOhbm7pZtxTiVWaM~A9dsJG8IdwN3TBvVoIBoet~yImIOvk-GxqjHxFYi-VAXJju36~c030-NGCAukY3b1PuRKtFX4ydh-RRI3EIVMb-nTGCS2dAWIZeyq049gxTNxczgkyGMTIL5R5Y~TG1SkWBRUJARzfFEhGq33vcJqAAMVy5Du0qc5LHnmQY4h58vXefoinzrqEs21Q8-V3By4QjrJtSNT2Vq7gL7U9OOTCdvzhZufV8npZONEeAmbqXMuEfC3JqNIA87C6yRrSXMI2-1Zj5MifBpomUeW-ROINWgiqS1K6Swd6RxdEafpGYRE1CWtWvrYMxGCDUg__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "IzXGEKn1YcF831Z2r6TtN",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-11-15T13:57:44.050Z",
+ "updatedAt": "2025-02-04T08:09:09.786Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0jz6hPHbUidMTiQCdO2KmW"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "7JWRGOYWY5AnjuoNVzBwyO"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.758Z"
+ },
+ "name": "Workflows App",
+ "locations": [
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Workflows",
+ "path": "/"
+ }
+ }
+ ],
+ "parameters": {
+ "instance": []
+ },
+ "src": "https://17a00aa2-860a-4c54-849b-d831f0198a13.ctfcloud.net/3o2ZmDGW4KWe1f40Ws9FCl/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8xN2EwMGFhMi04NjBhLTRjNTQtODQ5Yi1kODMxZjAxOThhMTMuY3RmY2xvdWQubmV0LzNvMlptREdXNEtXZTFmNDBXczlGQ2wvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=gAEGSHcrCIroudwkSbNNYmNIAlv~r8OYrXV3l~7os~-ufRsuuAu9iDprKYztVMbR8Mcgv7bJvQ3nQ33gtLvsIZmsZ0gIJMTt17hlMQwBEbmJ01yu2EV0D29e78917Vnm0XHpxblqlNuGZxSbuP4SmgKD5HHSxQLpKFHV~tgBjDv7B3sLVJGRrW-XdmJp14bNEKx1ksm2-IyfA9CdhmbWKOKlGjnZEe677yamLQ4SXrXO7qHPh3XYQSnD5SSiPvbD--DA~E2CZb2SOod6arJ~LwJP~55W~UABufGftnWryRbpfD54mAM7v4PFbK4tN6WQQxymQdIuKapldvYpBQNE7Q__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "6C8a6ICmjODMMsNC0Un0Xe",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5RHAZeCcIG0BSCJll8MFMs"
+ }
+ },
+ "shared": true,
+ "createdAt": "2023-08-24T14:06:10.167Z",
+ "updatedAt": "2023-09-12T20:57:19.352Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5RACtD6G9a7W26r6lzrO00"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "5RACtD6G9a7W26r6lzrO00"
+ }
+ }
+ },
+ "name": "Writer AI Content Detector",
+ "src": "https://contentful-ai-detector.writer.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "Text"
+ },
+ {
+ "type": "RichText"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "sys": {
+ "id": "5wmH6IpRamZ66ofjP9THlz",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "1o92OHmPmIOWNYuX0jJQQE"
+ }
+ },
+ "shared": true,
+ "createdAt": "2021-12-08T11:05:03.091Z",
+ "updatedAt": "2022-06-08T17:24:53.207Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1o835krXYQ8Rtv4GEKxaaI"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1o835krXYQ8Rtv4GEKxaaI"
+ }
+ }
+ },
+ "name": "Writer Contentful Extension",
+ "src": "https://contentful-plugin.writer.com/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-field",
+ "fieldTypes": [
+ {
+ "type": "Text"
+ },
+ {
+ "type": "Symbol"
+ },
+ {
+ "type": "RichText"
+ }
+ ]
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ },
+ {
+ "sys": {
+ "id": "5i8iZ60GpkbZQJzutNXit",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "5EJGHo8tYJcjnEhYWDxivp"
+ }
+ },
+ "shared": true,
+ "createdAt": "2024-03-29T16:48:17.872Z",
+ "updatedAt": "2025-01-31T19:56:16.827Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "0VYEozm0sWFT6Wee4Zm9Dn"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "1U1bynIFyhDMdYlSFujyDb"
+ }
+ },
+ "expiresAt": "2025-02-05T20:05:50.759Z"
+ },
+ "name": "Xillio Transcreate",
+ "locations": [
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "Xillio Transcreate",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ },
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ }
+ ],
+ "parameters": {},
+ "src": "https://02ce03f3-9853-4db8-a4c3-d933d4b0822d.ctfcloud.net/24oi7FCTTLvoXDO0u6dFRH/index.html?Expires=1738785951&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8wMmNlMDNmMy05ODUzLTRkYjgtYTRjMy1kOTMzZDRiMDgyMmQuY3RmY2xvdWQubmV0LzI0b2k3RkNUVEx2b1hETzB1NmRGUkgvaW5kZXguaHRtbCIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTczODc4NTk1MX19fV19&Signature=IDT4~ggM220eDseM~DzpJ2HPNhaYSm0sd63m4~MvBrbNNL2GqEmVwLNBCwZ3pnaRAcpWPkqogejsT7Hux8m8OiryG54B2LWbZIF0dn70A4efjeaSF1DPS6zWLthUcXx-oqQNDLtZ9LDVOwoTMZd1IxJsVyhT-hhk3u4YohyTY9YKjrzZC9m0dcYxoAaQysstQIuBUQdg6nVBNzRtAekLu1YpnbPhlEhNIzoqdJh65vO3AAloqq686oJCLV2a4FtH7zU4YuEUjWEqZbu7F~~pSwzbzqwRfrREgGEiT8OS1FmRxAbKKxJPdFAuwTSUInb61E5VITfKmuIiO1cczad8pw__&Key-Pair-Id=K1FL5TKJLAFZQZ"
+ },
+ {
+ "sys": {
+ "id": "4u3pN6m2aOOBTr9kGP8LJK",
+ "type": "ResolvedAppDefinition",
+ "organization": {
+ "sys": {
+ "type": "Link",
+ "linkType": "Organization",
+ "id": "28CeCjl0ZH2X0gql3fnuHZ"
+ }
+ },
+ "shared": true,
+ "createdAt": "2020-10-29T09:22:15.212Z",
+ "updatedAt": "2021-09-29T12:04:10.546Z",
+ "createdBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4PkXeFfQ9DyvCf9Y0yWP96"
+ }
+ },
+ "updatedBy": {
+ "sys": {
+ "type": "Link",
+ "linkType": "User",
+ "id": "4PkXeFfQ9DyvCf9Y0yWP96"
+ }
+ }
+ },
+ "name": "XTM Connect",
+ "src": "https://contentful-connector.xtm-intl.com/app/",
+ "locations": [
+ {
+ "location": "app-config"
+ },
+ {
+ "location": "entry-sidebar"
+ },
+ {
+ "location": "page",
+ "navigationItem": {
+ "name": "XTM Connect",
+ "path": "/"
+ }
+ },
+ {
+ "location": "dialog"
+ }
+ ],
+ "parameters": {
+ "instance": []
+ }
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/upload-api/migration-wordpress/libs/contenttypemapper.js b/upload-api/migration-wordpress/libs/contenttypemapper.js
index 544be2637..5b8342940 100644
--- a/upload-api/migration-wordpress/libs/contenttypemapper.js
+++ b/upload-api/migration-wordpress/libs/contenttypemapper.js
@@ -68,7 +68,8 @@ const ContentTypeSchema = ({
contentstackField: name.toLowerCase(),
contentstackFieldUid: uid,
contentstackFieldType: 'text',
- backupFieldType: 'text'
+ backupFieldType: 'text',
+ backupFieldUid: uid
};
}
if (sitecoreKey === 'url') {
@@ -80,7 +81,8 @@ const ContentTypeSchema = ({
contentstackField: name.toLowerCase(),
contentstackFieldUid: uid,
contentstackFieldType: 'url',
- backupFieldType: 'url'
+ backupFieldType: 'url',
+ backupFieldUid: uid
};
}
switch (type) {
@@ -94,7 +96,8 @@ const ContentTypeSchema = ({
contentstackFieldUid: uid,
contentstackFieldType: 'single_line_text',
backupFieldType: 'single_line_text',
- advanced: { default_value: default_value !== '' ? default_value : null }
+ advanced: { default_value: default_value !== '' ? default_value : null },
+ backupFieldUid: uid
};
}
@@ -109,7 +112,8 @@ const ContentTypeSchema = ({
contentstackFieldUid: uid,
contentstackFieldType: 'json',
backupFieldType: 'json',
- advanced: { default_value: default_value !== '' ? default_value : null }
+ advanced: { default_value: default_value !== '' ? default_value : null },
+ backupFieldUid: uid
};
}
@@ -124,7 +128,8 @@ const ContentTypeSchema = ({
contentstackFieldUid: uid,
contentstackFieldType: 'file',
backupFieldType: 'file',
- advanced: { default_value: default_value !== '' ? default_value : null }
+ advanced: { default_value: default_value !== '' ? default_value : null },
+ backupFieldUid: uid
};
}
@@ -138,7 +143,8 @@ const ContentTypeSchema = ({
contentstackFieldUid: uid,
contentstackFieldType: 'multi_line_text',
backupFieldType: 'multi_line_text',
- advanced: { default_value: default_value !== '' ? default_value : null }
+ advanced: { default_value: default_value !== '' ? default_value : null },
+ backupFieldUid: uid
};
}
@@ -153,7 +159,8 @@ const ContentTypeSchema = ({
contentstackFieldUid: uid,
contentstackFieldType: 'number',
backupFieldType: 'number',
- advanced: { default_value: default_value !== '' ? default_value : null }
+ advanced: { default_value: default_value !== '' ? default_value : null },
+ backupFieldUid: uid
};
}
@@ -169,7 +176,8 @@ const ContentTypeSchema = ({
contentstackFieldUid: uid,
contentstackFieldType: 'isodate',
backupFieldType: 'isodate',
- advanced: { default_value: default_value !== '' ? default_value : null }
+ advanced: { default_value: default_value !== '' ? default_value : null },
+ backupFieldUid: uid
};
}
@@ -183,7 +191,8 @@ const ContentTypeSchema = ({
contentstackFieldUid: uid,
contentstackFieldType: 'reference',
backupFieldType: 'reference',
- refrenceTo: reference_to
+ refrenceTo: reference_to,
+ backupFieldUid: uid
};
}
}