├── .env.template ├── .eslintrc.json ├── .github ├── images │ ├── CEC-Sorting_Option.png │ └── CEC-Suggestion_Block.png ├── issue_template │ ├── feature_request.md │ └── issue_report.md ├── pull_request_template.md └── workflows │ ├── check-devportal-links.yml │ ├── check-downloads-links.yml │ ├── mlc-devportal.config.json │ ├── mlc-downloads.config.json │ └── stale.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.ts ├── manager.ts ├── preview.tsx └── storybook-theme.ts ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE.MD ├── README.md ├── __mocks__ ├── changelog │ ├── changelogEntry.mock.ts │ └── products.mock.ts ├── fs.cjs └── navigation │ └── sidebarNavigationItems.ts ├── __tests__ ├── e2e │ ├── changelog-api.spec.ts │ ├── changelog.spec.ts │ ├── home.spec.ts │ └── search.spec.ts └── unit │ └── lib │ ├── assets.test.ts │ ├── changelog │ └── changelog.test.ts │ ├── downloads.test.ts │ └── utils │ ├── dateUtil.test.ts │ ├── fsUtil.test.ts │ ├── sortUtil.test.ts │ ├── stringUtil.test.ts │ └── urlUtil.test.ts ├── changes.diff ├── data ├── data-community-list.ts ├── data-downloads.ts ├── data-navigation.ts ├── data-platform.ts ├── data-product-solutions.ts ├── data-updates.ts ├── gql │ ├── codegen.ts │ ├── custom │ │ ├── getCustomEntryByTitleAndDateQuery.ts │ │ ├── getCustomEntryByTitleProductAndChangeTypeQuery.ts │ │ └── getCustomEntryByTitleQuery.ts │ ├── generated │ │ ├── gql.ts │ │ ├── graphql.ts │ │ └── index.ts │ ├── query │ │ ├── fragments │ │ │ ├── changeType.graphql │ │ │ ├── changelogEntry.graphql │ │ │ ├── changelogEntrySummary.graphql │ │ │ ├── media.graphql │ │ │ ├── product.graphql │ │ │ └── status.graphql │ │ ├── getAllChangetypes.graphql │ │ ├── getAllProducts.graphql │ │ ├── getAllStatus.graphql │ │ ├── getLatestEntries.graphql │ │ ├── getNumberOfEntriesByProduct.graphql │ │ ├── getStatusByIdentifier.graphql │ │ ├── searchByDate.graphql │ │ ├── searchByProduct.graphql │ │ ├── searchByProductsAndChangeTypes.graphql │ │ ├── searchByProductsAndChangeTypesAndBreakingChange.graphql │ │ └── searchByTitle.graphql │ └── schema │ │ ├── instrospectionSchema.json │ │ └── schema.graphql ├── markdown │ └── pages │ │ ├── _newsletter.md │ │ ├── _opensource.md │ │ ├── _roadmap.md │ │ ├── _search.md │ │ ├── articles │ │ └── 2024 │ │ │ └── 09 │ │ │ └── xmcloud-sites-release-september.md │ │ ├── community.md │ │ ├── contribute │ │ ├── community.md │ │ ├── components.md │ │ ├── configuration.md │ │ ├── content.md │ │ ├── index.md │ │ ├── manifest.json │ │ └── page-structure.md │ │ ├── docs.md │ │ ├── downloads │ │ ├── Active_Directory │ │ │ ├── 14 │ │ │ │ └── Active_Directory_14 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_Guide.md │ │ │ │ │ └── index.md │ │ │ ├── 1_0 │ │ │ │ └── Active_Directory_1_2 │ │ │ │ │ ├── Known_Issues.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_Guide.md │ │ │ │ │ └── index.md │ │ │ ├── 1_3 │ │ │ │ └── Active_Directory_1_3 │ │ │ │ │ ├── Known_Issues.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_Guide.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Avtor │ │ │ └── index.md │ │ ├── Campaign_Creator_module │ │ │ ├── 10 │ │ │ │ └── Sitecore_Campaign_Creator_module │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Data_Exchange_Framework │ │ │ ├── 1x │ │ │ │ ├── Data_Exchange_Framework_10 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Data_Exchange_Framework_11 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Data_Exchange_Framework_1_2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Data_Exchange_Framework_1_3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Data_Exchange_Framework_1_4 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Data_Exchange_Framework_1_4_1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 2x │ │ │ │ ├── Data_Exchange_Framework_20 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Data_Exchange_Framework_201 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Data_Exchange_Framework_210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ ├── Data_Exchange_Framework_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Data_Exchange_Framework_301 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Data_Exchange_Framework_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── Data_Exchange_Framework_500 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ └── Data_Exchange_Framework_600 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 7x │ │ │ │ └── Data_Exchange_Framework_700 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 8x │ │ │ │ └── Data_Exchange_Framework_800 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 9x │ │ │ │ └── Data_Exchange_Framework_900 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Dynamics_CRM_Campaign_Integration_module │ │ │ ├── 2x │ │ │ │ ├── Dynamics_CRM_Campaign_Integration_21 │ │ │ │ │ └── index.md │ │ │ │ └── Dynamics_CRM_Campaign_Integration_22 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Dynamics_CRM_Connect │ │ │ ├── 2x │ │ │ │ ├── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_20 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 7x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 8x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 9x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── Dynamics_CRM_Connect_1 │ │ │ │ ├── Dynamics_CRM_Connect_10 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Connect_11 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Connect_1_2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Connect_1_3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Connect_1_4 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Dynamics_CRM_Connect_1_4_1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Dynamics_CRM_Security_Provider │ │ │ ├── 2_1 │ │ │ │ ├── Dynamics_CRM_Security_Provider_2_1_0 │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Security_Provider_2_1_1 │ │ │ │ │ └── index.md │ │ │ │ └── Dynamics_CRM_Security_Provider_2_1_2 │ │ │ │ │ ├── Installation_Guide.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 2_2 │ │ │ │ ├── Dynamics_CRM_Security_Provider_2_2_0 │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Security_Provider_2_2_1 │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Security_Provider_2_2_2 │ │ │ │ │ └── index.md │ │ │ │ └── Dynamics_CRM_Security_Provider_2_2_3 │ │ │ │ │ └── index.md │ │ │ ├── 2_3 │ │ │ │ ├── Dynamics_CRM_Security_Provider_2_3_0 │ │ │ │ │ └── index.md │ │ │ │ ├── Dynamics_CRM_Security_Provider_2_3_1 │ │ │ │ │ └── index.md │ │ │ │ └── Dynamics_CRM_Security_Provider_2_3_2 │ │ │ │ │ ├── Installation_Guide.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── EXM_Dedicated_Dispatch_Server │ │ │ ├── 1x │ │ │ │ └── EXM_Dedicated_Dispatch_Server_103 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Email_Experience_Manager │ │ │ ├── 35 │ │ │ │ ├── Email_Experience_Manager_35_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Email_Experience_Manager_35_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Email_Experience_Manager_35_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 90 │ │ │ │ ├── Email_Experience_Manager_in_Sitecore_90_Update1 │ │ │ │ │ └── index.md │ │ │ │ └── Email_Experience_Manager_in_Sitecore_90_Update2 │ │ │ │ │ └── index.md │ │ │ ├── Email_Experience_Manager_30 │ │ │ │ ├── Email_Experience_Manager_30_Initial_release │ │ │ │ │ ├── Version_Resources │ │ │ │ │ │ └── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Email_Experience_Manager_30_Update1 │ │ │ │ │ └── index.md │ │ │ │ ├── Email_Experience_Manager_30_Update2 │ │ │ │ │ └── index.md │ │ │ │ ├── Email_Experience_Manager_30_Update3 │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── Email_Experience_Manager_31 │ │ │ │ ├── Email_Experience_Manager_31_Initial_Release │ │ │ │ │ ├── Version_Resources │ │ │ │ │ │ └── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Email_Experience_Manager_31_Update1 │ │ │ │ │ ├── Version_Resources │ │ │ │ │ │ └── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Email_Experience_Manager_31_Update_2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── Email_Experience_Manager_32 │ │ │ │ ├── Email_Experience_Manager_32_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Email_Experience_Manager_32_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── Email_Experience_Manager_33 │ │ │ │ └── Email_Experience_Manager_33_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── Email_Experience_Manager_34 │ │ │ │ ├── Email_Experience_Manager_34_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Email_Experience_Manager_34_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Email_Experience_Manager_34_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── in_Sitecore_91 │ │ │ │ └── Email_Experience_Manager_in_Sitecore_91 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Engagement_Automation_Live_Session_Agent │ │ │ ├── 10 │ │ │ │ └── Sitecore_Engagement_Automation_Live_Session_Agent_10 │ │ │ │ │ └── index.md │ │ │ ├── 20 │ │ │ │ └── Sitecore_Engagement_Automation_Live_Session_Agent_20 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Express_Migration_Tool │ │ │ ├── 10 │ │ │ │ └── Express_Migration_Tool_10_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 20 │ │ │ │ └── Express_Migration_Tool_20_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 30 │ │ │ │ └── Express_Migration_Tool_30_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 31 │ │ │ │ └── Express_Migration_Tool_31 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Feydra │ │ │ └── index.md │ │ ├── Komfo_Connector │ │ │ ├── 10 │ │ │ │ └── Komfo_Connector_10 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Package_Management_Service │ │ │ ├── 3x │ │ │ │ └── Package_Management_Service_300 │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── Package_Management_Service_500 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Razl │ │ │ ├── 2x │ │ │ │ ├── Razl_20 │ │ │ │ │ └── index.md │ │ │ │ └── Razl_25 │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── Razl_30 │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Razl_40 │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── Razl_50 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Resource_files_for_Modules │ │ │ ├── 1x │ │ │ │ └── Resource_files_for_Modules_100 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Salesforce_Connect │ │ │ ├── 2x │ │ │ │ ├── Sitecore_Connect_for_Salesforce_CRM_20 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_for_Salesforce_CRM_201 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_500 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_600 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 7x │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_700 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 8x │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_800 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 9x │ │ │ │ └── Sitecore_Connect_for_Salesforce_CRM_900 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── Salesforce_Connect_1 │ │ │ │ └── Salesforce_Connect_1_4_1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Scripts_for_Sitecore_Security_database │ │ │ ├── 0x │ │ │ │ ├── Scripts_for_Sitecore_Security_database_02 │ │ │ │ │ └── index.md │ │ │ │ ├── Scripts_for_Sitecore_Security_database_031 │ │ │ │ │ └── index.md │ │ │ │ ├── Scripts_for_Sitecore_Security_database_04 │ │ │ │ │ └── index.md │ │ │ │ ├── Scripts_for_Sitecore_Security_database_05 │ │ │ │ │ └── index.md │ │ │ │ └── Scripts_for_Sitecore_Security_database_06 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── SharePoint_Connect │ │ │ ├── 2_0 │ │ │ │ ├── SharePoint_Connect_23 │ │ │ │ │ ├── Installation_Guide.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_Guide.md │ │ │ │ │ └── index.md │ │ │ │ ├── SharePoint_Connect_2_1 │ │ │ │ │ ├── Installation_Guide.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_Guide.md │ │ │ │ │ └── index.md │ │ │ │ └── SharePoint_Connect_2_2 │ │ │ │ │ ├── Installation_Guide.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_Guide.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_AI_Automated_Personalization_Standard │ │ │ ├── 10x │ │ │ │ └── Sitecore_AI_Automated_Personalization_Standard_101 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 2x │ │ │ │ └── Sitecore_AI_Automated_Personalization_Standard_200 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ ├── Sitecore_AI_Automated_Personalization_Standard_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Sitecore_AI_Automated_Personalization_Standard_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Azure │ │ │ ├── 80 │ │ │ │ ├── Sitecore_Azure_80 │ │ │ │ │ ├── Release_notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_80_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Azure_80_Update2 │ │ │ │ │ ├── Release_notes_test.md │ │ │ │ │ └── index.md │ │ │ ├── Sitecore_Azure_81 │ │ │ │ ├── Sitecore_Azure_81 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_81_Update2 │ │ │ │ │ ├── Release_notes_test.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Azure_81_rev_151119_Hotfix_1076431 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Azure_Blob_Storage │ │ │ ├── 1x │ │ │ │ ├── Sitecore_Azure_Blob_Storage_200 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Blob_Storage_300 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Blob_Storage_301 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Blob_Storage_410 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Blob_Storage_411 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Blob_Storage_501 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Blob_Storage_600 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Azure_Blob_Storage_Az_Migration_Script │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Azure_Toolkit │ │ │ ├── 1x │ │ │ │ ├── Sitecore_Azure_Toolkit_100 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_103 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_110 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Azure_Toolkit_111 │ │ │ │ │ ├── Release_notes.md │ │ │ │ │ └── index.md │ │ │ ├── 2x │ │ │ │ ├── Sitecore_Azure_Toolkit_200 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_201 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_202 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_203 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_204 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_220 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_230 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_240 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_250 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_251 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_252 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_253 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_260 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_261 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_262 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_263 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_270 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_271 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Azure_Toolkit_280 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Azure_Toolkit_281 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── Sitecore_Azure_Toolkit_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_CLI │ │ │ ├── 2x │ │ │ │ └── Sitecore_CLI_200 │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── Sitecore_CLI_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ ├── Sitecore_CLI_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_CLI_401 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_CLI_410 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_CLI_411 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_CLI_420 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_CLI_421 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ ├── Sitecore_CLI_5125 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_CLI_52109 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_CLI_52113 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ ├── Sitecore_CLI_600 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_CLI_6023 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Codeless_Schema_Extensions │ │ │ ├── 1.0.0 │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Commerce │ │ │ ├── 80 │ │ │ │ ├── Commerce_Server_112_Initial_Release │ │ │ │ │ └── index.md │ │ │ │ ├── Commerce_Server_112_Update1 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_80_Connect │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_80_powered_by_Commerce_Server_Initial_Release │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_80_powered_by_Commerce_Server_Update1 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Initial_Release │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Update1 │ │ │ │ │ └── index.md │ │ │ ├── 81 │ │ │ │ ├── Sitecore_Commerce_81_Connect │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_81_powered_by_CS │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_81_powered_by_Microsoft_Dynamics_Initial_Release │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Commerce_Server_113 │ │ │ │ │ └── index.md │ │ │ ├── 82 │ │ │ │ ├── Commerce_Server_114 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_82_Connect │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_82_powered_by_Commerce_Server │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Commerce_82_powered_by_Microsoft_Dynamics │ │ │ │ │ └── index.md │ │ │ ├── 90 │ │ │ │ ├── Sitecore_Experience_Commerce_90_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Commerce_90_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Commerce_90_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Commerce_90_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 91 │ │ │ │ └── Sitecore_Experience_Commerce_91_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 92 │ │ │ │ └── Sitecore_Experience_Commerce_92_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 93 │ │ │ │ └── Sitecore_Experience_Commerce_93_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 100 │ │ │ │ └── Sitecore_Experience_Commerce_100 │ │ │ │ │ └── index.md │ │ │ ├── 101 │ │ │ │ └── Sitecore_Experience_Commerce_101 │ │ │ │ │ └── index.md │ │ │ ├── 102 │ │ │ │ └── Sitecore_Experience_Commerce_102 │ │ │ │ │ └── index.md │ │ │ ├── 103 │ │ │ │ └── Sitecore_Experience_Commerce_103 │ │ │ │ │ └── index.md │ │ │ ├── 821 │ │ │ │ ├── Sitecore_Commerce_821 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_821_Update1 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Commerce_821_Update2 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Commerce_821_Update3 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Connect_for_Content_Hub │ │ │ ├── 3x │ │ │ │ └── Sitecore_Connect_for_Content_Hub_310 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Sitecore_Connect_for_Content_Hub_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ ├── Sitecore_Connect_for_Content_Hub_500 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_for_Content_Hub_510 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Connect_for_Content_Hub_520 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce │ │ │ ├── 1x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 2x │ │ │ │ └── Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Connect_for_Sitecore_CMP │ │ │ ├── 10 │ │ │ │ └── Sitecore_Connect_for_Sitecore_CMP_100 │ │ │ │ │ └── index.md │ │ │ ├── 20 │ │ │ │ └── Sitecore_Connect_for_Sitecore_CMP_200 │ │ │ │ │ └── index.md │ │ │ ├── 30 │ │ │ │ └── Sitecore_Connect_for_Sitecore_CMP_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud │ │ │ ├── 1x │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10 │ │ │ │ │ ├── Release_Notes__BDE.md │ │ │ │ │ ├── Release_Notes__CE.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20 │ │ │ │ │ ├── Release_Notes__BDE.md │ │ │ │ │ ├── Release_Notes__CE.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30 │ │ │ │ │ ├── Release_Notes_BDE.md │ │ │ │ │ ├── Release_Notes_CE.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40 │ │ │ │ │ ├── Release_Notes_BDE.md │ │ │ │ │ ├── Release_Notes_CE.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50 │ │ │ │ │ ├── Release_Notes_BDE.md │ │ │ │ │ ├── Release_Notes_CE.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60 │ │ │ │ │ ├── Release_Notes__BDE.md │ │ │ │ │ ├── Release_Notes__CE.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70 │ │ │ │ │ ├── Release_Notes__BDE.md │ │ │ │ │ ├── Release_Notes__CE.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80 │ │ │ │ │ ├── Release_Notes__BDE.md │ │ │ │ │ ├── Release_Notes__CE.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90 │ │ │ │ │ ├── Release_Notes__BDE.md │ │ │ │ │ ├── Release_Notes__CE.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Embeddable_Forms │ │ │ ├── 1x │ │ │ │ └── Sitecore_Embeddable_Forms_100 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Experience_Accelerator │ │ │ ├── 10 │ │ │ │ └── Sitecore_Experience_Accelerator_10_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 11 │ │ │ │ └── Sitecore_Experience_Accelerator_11_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 12 │ │ │ │ └── Sitecore_Experience_Accelerator_12_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 13 │ │ │ │ ├── Sitecore_Experience_Accelerator_13_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Accelerator_13_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 14 │ │ │ │ └── Sitecore_Experience_Accelerator_14_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 15 │ │ │ │ └── Sitecore_Experience_Accelerator_15_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 16 │ │ │ │ └── Sitecore_Experience_Accelerator_16_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 17 │ │ │ │ ├── Sitecore_Experience_Accelerator_17_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Accelerator_17_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 18 │ │ │ │ ├── Sitecore_Experience_Accelerator_180 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Accelerator_181 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 19 │ │ │ │ └── Sitecore_Experience_Accelerator_190 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 10x │ │ │ │ ├── Sitecore_Experience_Accelerator_1000 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Accelerator_1010 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Accelerator_1020 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Accelerator_1030 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Accelerator_1040 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 9x │ │ │ │ └── Sitecore_Experience_Accelerator_930 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Experience_Platform │ │ │ ├── 82 │ │ │ │ ├── Sitecore_Experience_Platform_82_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_82_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_82_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_82_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_82_Update4 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_82_Update5 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_82_Update6 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_82_Update7 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── 90 │ │ │ │ ├── Sitecore_Experience_Platform_90_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_90_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_90_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── 91 │ │ │ │ ├── Sitecore_Experience_Platform_91_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Platform_91_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 92 │ │ │ │ └── Sitecore_Experience_Platform_92_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 93 │ │ │ │ └── Sitecore_Experience_Platform_93_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 100 │ │ │ │ ├── Sitecore_Experience_Platform_100 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_100_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_100_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Platform_100_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 101 │ │ │ │ ├── Sitecore_Experience_Platform_101 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_101_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_101_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Platform_101_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 102 │ │ │ │ ├── Sitecore_Experience_Platform_102 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_102_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Platform_102_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 103 │ │ │ │ ├── Sitecore_Experience_Platform_103 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_103_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Experience_Platform_103_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 104 │ │ │ │ └── Sitecore_Experience_Platform_104 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 7_0 │ │ │ │ └── Sitecore_Experience_Platform_7_and_below │ │ │ │ │ └── index.md │ │ │ ├── 8_0 │ │ │ │ ├── Sitecore_Experience_Platform_80_Update3 │ │ │ │ │ ├── Release_notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_80_Update4 │ │ │ │ │ ├── Release_notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_80_Update5 │ │ │ │ │ ├── Release_notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_80_Update6 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_80_Update7 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_8_0 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_8_update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_8_update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── Client_Translations_Manual.md │ │ │ ├── Sitecore_81 │ │ │ │ ├── Sitecore_Experience_Platform_81_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_81_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_81_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Experience_Platform_81_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── Sitecore_Device_Detection_Services_Usage_Policy.md │ │ │ ├── Sitecore_IP_Geolocation_Usage_Policy.md │ │ │ ├── Sitecore_xDB_Cloud_Usage_Policy.md │ │ │ └── index.md │ │ ├── Sitecore_Headless_Rendering │ │ │ ├── 140 │ │ │ │ └── Sitecore_Headless_Rendering_1400 │ │ │ │ │ └── index.md │ │ │ ├── 150 │ │ │ │ ├── Sitecore_Headless_Rendering_1500 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Headless_Rendering_1501 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 16x │ │ │ │ └── Sitecore_Headless_Rendering_1600 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 18x │ │ │ │ └── Sitecore_Headless_Rendering_1800 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 19x │ │ │ │ ├── Sitecore_Headless_Rendering_1900 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Headless_Rendering_1901 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 20x │ │ │ │ ├── Sitecore_Headless_Rendering_2000 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Headless_Rendering_2002 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 21x │ │ │ │ ├── Sitecore_Headless_Rendering_2100 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Headless_Rendering_2101 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 22x │ │ │ │ └── Sitecore_Headless_Rendering_2200 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Horizon │ │ │ ├── 93 │ │ │ │ └── Sitecore_Horizon_93_Initial_version │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 100 │ │ │ │ ├── Sitecore_Horizon_1000 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Horizon_1001 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Horizon_1010 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Horizon_1011 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Horizon_1020 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_IP_Geolocation_Service_Client │ │ │ ├── 12 │ │ │ │ └── Sitecore_IP_Geolocation_Service_Client_12_for_Sitecore_XP_80 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Identity │ │ │ ├── 2x │ │ │ │ ├── Sitecore_Identity_200 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Identity_201 │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── Sitecore_Identity_300 │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Sitecore_Identity_400 │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ ├── Sitecore_Identity_500 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Identity_501 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Identity_510 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Identity_511 │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ └── Sitecore_Identity_600 │ │ │ │ │ └── index.md │ │ │ ├── 7x │ │ │ │ ├── Sitecore_Identity_70325 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Identity_70326 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Identity_70327 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Identity_70328 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Identity_70330 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Identity_70331 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Identity_7111 │ │ │ │ │ └── index.md │ │ │ ├── 8x │ │ │ │ └── Sitecore_Identity_Server_8016 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Installation_Framework │ │ │ ├── 1x │ │ │ │ ├── Sitecore_Installation_Framework_10 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Installation_Framework_11 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Installation_Framework_12 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 2x │ │ │ │ ├── Sitecore_Installation_Framework_200 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Installation_Framework_210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Installation_Framework_220 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Installation_Framework_230 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Installation_Framework_240 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_JavaScript_Services │ │ │ ├── 110 │ │ │ │ ├── Sitecore_JavaScript_Services_1100 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_JavaScript_Services_1101 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_JavaScript_Services_1110 │ │ │ │ │ └── index.md │ │ │ ├── 120 │ │ │ │ └── Sitecore_JavaScript_Services_1200 │ │ │ │ │ └── index.md │ │ │ ├── 130 │ │ │ │ └── Sitecore_JavaScript_Services_1300 │ │ │ │ │ └── index.md │ │ │ ├── 140 │ │ │ │ └── Sitecore_JavaScript_Services_1400 │ │ │ │ │ └── index.md │ │ │ ├── 150 │ │ │ │ ├── Sitecore_JavaScript_Services_1500 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_JavaScript_Services_1501 │ │ │ │ │ └── index.md │ │ │ ├── 90_Tech_Preview │ │ │ │ ├── Sitecore_JavaScript_Services_90_Tech_Preview │ │ │ │ │ ├── Known_Issues.md │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_JavaScript_Services_90_Tech_Preview_2 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_JavaScript_Services_90_Tech_Preview_3 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_JavaScript_Services_90_Tech_Preview_4 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_JavaScript_Services_90_Update_1_Tech_Preview │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Managed_Cloud_Resources │ │ │ ├── 10 │ │ │ │ └── Sitecore_Managed_Cloud_Resources_10 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Media_Framework │ │ │ ├── 21 │ │ │ │ └── Sitecore_Media_Framework_21 │ │ │ │ │ └── index.md │ │ │ ├── 2x │ │ │ │ └── Sitecore_Media_Framework_22 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Mobile_SDK_SSC__for_Xamarin │ │ │ ├── 10 │ │ │ │ └── Sitecore_Mobile_SDK_SSC_10_for_Xamarin │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Mobile_SDK_for_Xamarin │ │ │ ├── 1_0 │ │ │ │ └── Sitecore_Mobile_SDK_10_for_Xamarin │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Plugin_for_Stylelabs_DAM │ │ │ ├── 10 │ │ │ │ └── Sitecore_Plugin_10_for_Stylelabs_DAM │ │ │ │ │ └── index.md │ │ │ ├── 20 │ │ │ │ └── Sitecore_Connect_for_Sitecore_DAM_200 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Print_Experience_Manager │ │ │ ├── 82 │ │ │ │ └── Sitecore_Print_Experience_Manager_82 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_information.md │ │ │ │ │ └── index.md │ │ │ ├── 90 │ │ │ │ └── Sitecore_Print_Experience_Manager_90 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ ├── Upgrade_Information.md │ │ │ │ │ └── index.md │ │ │ ├── 91 │ │ │ │ └── Sitecore_Print_Experience_Manager_910 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 92 │ │ │ │ └── Sitecore_Print_Experience_Manager_920 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 8_0 │ │ │ │ ├── PXM_80_U1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── PXM_80_U2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Print_Experience_Manager_for_8_0 │ │ │ │ │ ├── Release_Notes_IW.md │ │ │ │ │ ├── Release_Notes_ODG.md │ │ │ │ │ ├── Release_Notes_RB.md │ │ │ │ │ ├── Upgrade_Information_IW.md │ │ │ │ │ ├── Upgrade_Information_ODG.md │ │ │ │ │ ├── Upgrade_Information_RB.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Publishing_Service │ │ │ ├── 11 │ │ │ │ └── Sitecore_Publishing_Service_11_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 20 │ │ │ │ ├── Sitecore_Publishing_Service_20_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Publishing_Service_20_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 21 │ │ │ │ └── Sitecore_Publishing_Service_21_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 22 │ │ │ │ ├── Sitecore_Publishing_Service_22_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Publishing_Service_22_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 30 │ │ │ │ └── Sitecore_Publishing_Service_30_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 31 │ │ │ │ ├── Sitecore_Publishing_Service_31_Initial_Release │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_31_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_31_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_31_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Publishing_Service_31_Update4 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 40 │ │ │ │ └── Sitecore_Publishing_Service_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 41 │ │ │ │ └── Sitecore_Publishing_Service_410 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 42 │ │ │ │ └── Sitecore_Publishing_Service_420 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 43 │ │ │ │ └── Sitecore_Publishing_Service_430 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── Sitecore_Publishing_Service_500 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ └── Sitecore_Publishing_Service_600 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 7x │ │ │ │ └── Sitecore_Publishing_Service_7020 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Publishing_Service_Module │ │ │ ├── 10x │ │ │ │ ├── Sitecore_Publishing_Service_Module_1000 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_Module_1010 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_Module_1020 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_Module_1030 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Publishing_Service_Module_1040 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 9x │ │ │ │ ├── Sitecore_Publishing_Service_Module_910 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_Module_911 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_Publishing_Service_Module_920 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_Publishing_Service_Module_930 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_SPEAK │ │ │ ├── 3 │ │ │ │ └── Sitecore_SPEAK_3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_Stream_for_Platform_DXP │ │ │ ├── Release_Notes.md │ │ │ └── index.md │ │ ├── Sitecore_Universal_Tracker │ │ │ ├── 1x │ │ │ │ └── Sitecore_Universal_Tracker_100 │ │ │ │ │ └── index.md │ │ │ ├── 2x │ │ │ │ └── Sitecore_Universal_Tracker_200 │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── Sitecore_Universal_Tracker_300 │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── Sitecore_Universal_Tracker_400 │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── Sitecore_Universal_Tracker_500 │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ └── Sitecore_Universal_Tracker_600 │ │ │ │ │ └── index.md │ │ │ ├── 7x │ │ │ │ └── Sitecore_Universal_Tracker_700 │ │ │ │ │ └── index.md │ │ │ ├── 8x │ │ │ │ └── Sitecore_Universal_Tracker_800 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_UpdateApp_Tool │ │ │ ├── 1x │ │ │ │ ├── Sitecore_UpdateApp_Tool_110 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_UpdateApp_Tool_120 │ │ │ │ │ └── index.md │ │ │ │ ├── Sitecore_UpdateApp_Tool_131 │ │ │ │ │ └── index.md │ │ │ │ └── Sitecore_UpdateApp_Tool_141 │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_for_Visual_Studio │ │ │ ├── 1x │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ ├── Sitecore_for_Visual_Studio_52113 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_xDB_Cloud_client │ │ │ ├── 80 │ │ │ │ └── Sitecore_xDB_Cloud_client_80_rev_160210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 81 │ │ │ │ └── Sitecore_xDB_Cloud_client_81_rev_160210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_xDB_Cloud_client_for_xDB_Cloud_20 │ │ │ ├── 80 │ │ │ │ └── Sitecore_xDB_Cloud_client_80_rev_160721_for_xDB_Cloud_20 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 81 │ │ │ │ └── Sitecore_xDB_Cloud_client_81_rev_160721_for_xDB_Cloud_20 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 82 │ │ │ │ └── Sitecore_xDB_Cloud_client_821_rev_170223_for_xDB_Cloud_20 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_xDB_Cloud_services │ │ │ ├── current │ │ │ │ └── Sitecore_xDB_Cloud_services │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Sitecore_xDB_Data_Migration_Tool │ │ │ ├── 2x │ │ │ │ ├── xDB_Data_Migration_Tool_20 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── xDB_Data_Migration_Tool_201 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── xDB_Data_Migration_Tool_202 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── xDB_Data_Migration_Tool_210 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 3x │ │ │ │ └── xDB_Data_Migration_Tool_300 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 4x │ │ │ │ └── xDB_Data_Migration_Tool_400 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ └── xDB_Data_Migration_Tool_500 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Team_Development_for_Sitecore │ │ │ ├── 4x │ │ │ │ └── Team_Development_for_Sitecore_40 │ │ │ │ │ └── index.md │ │ │ ├── 5x │ │ │ │ ├── Team_Development_for_Sitecore_50 │ │ │ │ │ └── index.md │ │ │ │ ├── Team_Development_for_Sitecore_51 │ │ │ │ │ └── index.md │ │ │ │ ├── Team_Development_for_Sitecore_55 │ │ │ │ │ └── index.md │ │ │ │ ├── Team_Development_for_Sitecore_56 │ │ │ │ │ └── index.md │ │ │ │ ├── Team_Development_for_Sitecore_57 │ │ │ │ │ └── index.md │ │ │ │ └── Team_Development_for_Sitecore_58 │ │ │ │ │ └── index.md │ │ │ ├── 6x │ │ │ │ ├── Team_Development_for_Sitecore_602 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Team_Development_for_Sitecore_603 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Team_Development_for_Sitecore_604 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── Web_Forms_For_Marketers │ │ │ ├── 82 │ │ │ │ ├── Web_Forms_For_Marketers_82_Initial_Version │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_82_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_82_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_82_Update4 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_82_Update5 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_82_Update6 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_82_Update7 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── 90 │ │ │ │ ├── Web_Forms_For_Marketers_90_Initial_Version │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_90_Update1 │ │ │ │ │ └── index.md │ │ │ │ └── Web_Forms_For_Marketers_90_Update2 │ │ │ │ │ └── index.md │ │ │ ├── Web_Forms_For_Marketers_81 │ │ │ │ ├── Web_Forms_For_Marketers_81_Initial_Version │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_81_Update2 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_For_Marketers_81_Update3 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── Web_forms_for_marketers_81_Update1 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ ├── Web_Forms_for_Marketers_80 │ │ │ │ ├── Release_Notes.md │ │ │ │ ├── Web_Forms_for_Marketers_80_Update1 │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_for_Marketers_80_Update2 │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_for_Marketers_80_Update3 │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_for_Marketers_80_Update4 │ │ │ │ │ └── index.md │ │ │ │ ├── Web_Forms_for_Marketers_80_Update_6 │ │ │ │ │ ├── Release_Notes.md │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── index.md │ │ ├── manifest.json │ │ ├── xDB_to_CDP_Migration │ │ │ └── index.md │ │ └── xm-cloud │ │ │ └── index.md │ │ ├── help.md │ │ ├── home.md │ │ ├── learn.md │ │ ├── learn │ │ ├── accelerate │ │ │ ├── cdp-personalize │ │ │ │ ├── final-steps │ │ │ │ │ ├── data-validation.md │ │ │ │ │ └── go-live-checklist.md │ │ │ │ ├── implementation │ │ │ │ │ ├── abandoned-cart-email.md │ │ │ │ │ ├── before-you-fly.md │ │ │ │ │ ├── home-page-personalization.md │ │ │ │ │ ├── integrations │ │ │ │ │ │ ├── cdp-integration.md │ │ │ │ │ │ └── personalize-integrations.md │ │ │ │ │ ├── last-search-experience.md │ │ │ │ │ └── self-service-nudge.md │ │ │ │ ├── index.md │ │ │ │ ├── manifest.json │ │ │ │ └── pre-development │ │ │ │ │ ├── discovery.md │ │ │ │ │ ├── experimentation.md │ │ │ │ │ ├── identity-strategy.md │ │ │ │ │ ├── omnichannel-preparation.md │ │ │ │ │ ├── segmentation.md │ │ │ │ │ ├── use-case-scoping.md │ │ │ │ │ └── web-vs-interactive.md │ │ │ ├── content-hub │ │ │ │ ├── final-steps │ │ │ │ │ ├── go-live-checklist.md │ │ │ │ │ ├── hypercare-strategy.md │ │ │ │ │ ├── migration-guide.md │ │ │ │ │ └── testing-and-qa │ │ │ │ │ │ ├── implementation-testing.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── quality-assurance.md │ │ │ │ ├── implementation │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── distribution-of-assets.md │ │ │ │ │ │ ├── distribution-of-content.md │ │ │ │ │ │ ├── environment-specific-settings.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── paths-across-entity-definitions.md │ │ │ │ │ ├── custom-logic │ │ │ │ │ │ ├── catching-rendition-generation.md │ │ │ │ │ │ ├── conditionally-generate-renditions.md │ │ │ │ │ │ ├── developing-external-components.md │ │ │ │ │ │ ├── external-integrations.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── meta-data-on-pre-commit.md │ │ │ │ │ │ ├── scripting-guidance-and-scenarios.md │ │ │ │ │ │ └── webclient-sdk-scenarios.md │ │ │ │ │ ├── digital-rights-management.md │ │ │ │ │ ├── functional-security │ │ │ │ │ │ ├── debugging-user-security.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── sso-on-content-hub.md │ │ │ │ │ │ └── user-groups-setup.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── integrations │ │ │ │ │ │ ├── 3rd-party-editing-tools.md │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── schema-management │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── taxonomy-vs-option-list.md │ │ │ │ │ ├── search │ │ │ │ │ │ ├── considering-search.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── setup-search.md │ │ │ │ │ └── state-flow-and-approval.md │ │ │ │ ├── index.md │ │ │ │ ├── manifest.json │ │ │ │ ├── optimization │ │ │ │ │ ├── home-page-customizations.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── reporting │ │ │ │ │ │ └── most-searched-assets.md │ │ │ │ └── pre-development │ │ │ │ │ ├── discovery │ │ │ │ │ ├── discovery-phase.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── project-planning.md │ │ │ │ │ └── requirements-gathering.md │ │ │ │ │ └── sprint-zero │ │ │ │ │ ├── index.md │ │ │ │ │ └── multi-environments-deployment.md │ │ │ ├── index.md │ │ │ └── xm-cloud │ │ │ │ ├── appendix-i │ │ │ │ └── xm-cloud-glossary.md │ │ │ │ ├── appendix-ii │ │ │ │ └── example-code │ │ │ │ │ ├── asp-net-core-examples.md │ │ │ │ │ ├── exported-components-example.md │ │ │ │ │ ├── template-module-json.md │ │ │ │ │ └── xmcloud-build-json.md │ │ │ │ ├── final-steps │ │ │ │ ├── content-migration.md │ │ │ │ ├── go-live-checklist.md │ │ │ │ └── testing-strategy.md │ │ │ │ ├── implementation │ │ │ │ ├── developer-experience │ │ │ │ │ ├── cms-error-monitoring.md │ │ │ │ │ ├── creating-a-component-gallery.md │ │ │ │ │ ├── creating-branch-templates.md │ │ │ │ │ ├── creating-new-components.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── troubleshooting-docker.md │ │ │ │ │ ├── using-placeholders.md │ │ │ │ │ └── web-application-error-handling.md │ │ │ │ ├── external-data-integration │ │ │ │ │ ├── custom-editing-ux-3rd-party-integrations.md │ │ │ │ │ ├── getting-component-specific-data.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── retrieving-data-from-3rd-party-integrations.md │ │ │ │ ├── index.md │ │ │ │ ├── information-architecture │ │ │ │ │ ├── index.md │ │ │ │ │ ├── localization.md │ │ │ │ │ ├── preview-website.md │ │ │ │ │ ├── redirect.md │ │ │ │ │ ├── sitemap.md │ │ │ │ │ ├── wildcard-pages.md │ │ │ │ │ └── workflow.md │ │ │ │ ├── middleware-invocations.md │ │ │ │ └── sitecore-search │ │ │ │ │ ├── document-search.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── integrating-sitecore-search.md │ │ │ │ │ └── search-incremental-updates.md │ │ │ │ ├── index.md │ │ │ │ ├── manifest.json │ │ │ │ ├── optimization │ │ │ │ ├── data-fetching-optimization.md │ │ │ │ ├── index.md │ │ │ │ ├── performance-optimization.md │ │ │ │ ├── publishing-optimization.md │ │ │ │ └── seo-web-optimization.md │ │ │ │ ├── pre-development │ │ │ │ ├── developer-considerations │ │ │ │ │ ├── branching-strategy.md │ │ │ │ │ ├── component-design-best-practices.md │ │ │ │ │ ├── dev-workflow-codespaces.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── nextjs-app-router-preparation.md │ │ │ │ │ └── web-developer-experience.md │ │ │ │ ├── discovery │ │ │ │ │ ├── index.md │ │ │ │ │ ├── moving-to-saas.md │ │ │ │ │ ├── requirements-gathering.md │ │ │ │ │ ├── scope-governance-framework.md │ │ │ │ │ └── xm-xp-to-xmc.md │ │ │ │ ├── hosting-applications │ │ │ │ │ ├── hosting-aspnet-core.md │ │ │ │ │ ├── hosting-web-application.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── nextjs-azure-app-services.md │ │ │ │ ├── information-architecture │ │ │ │ │ ├── content-audit.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── publishing-to-edge.md │ │ │ │ ├── project-architecture │ │ │ │ │ ├── index.md │ │ │ │ │ ├── layout-routing.md │ │ │ │ │ ├── multisite.md │ │ │ │ │ ├── rate-limits-and-caching.md │ │ │ │ │ └── site-management.md │ │ │ │ ├── project-planning │ │ │ │ │ ├── index.md │ │ │ │ │ ├── preparing-for-an-xm-cloud-project.md │ │ │ │ │ └── project-estimation.md │ │ │ │ ├── security │ │ │ │ │ ├── head-application-security.md │ │ │ │ │ └── index.md │ │ │ │ └── sprint-zero │ │ │ │ │ ├── creating-a-site.md │ │ │ │ │ ├── devops.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── project-solution-setup.md │ │ │ │ │ └── setup-content-serialization.md │ │ │ │ └── xmc-quick-reference.md │ │ ├── faq │ │ │ ├── accelerate │ │ │ │ └── references.md │ │ │ ├── cloud-portal │ │ │ │ ├── development.md │ │ │ │ ├── features.md │ │ │ │ ├── index.md │ │ │ │ └── manifest.json │ │ │ ├── sitecore-connect │ │ │ │ ├── features.md │ │ │ │ ├── general.md │ │ │ │ ├── index.md │ │ │ │ ├── licensing.md │ │ │ │ ├── manifest.json │ │ │ │ ├── partners-developers.md │ │ │ │ └── support.md │ │ │ ├── xm-cloud-embedded-personalization │ │ │ │ ├── architecture-data-retention.md │ │ │ │ ├── developer-experience.md │ │ │ │ ├── feature-matrix.md │ │ │ │ ├── general.md │ │ │ │ ├── index.md │ │ │ │ ├── manifest.json │ │ │ │ └── migrations-and-upgrades.md │ │ │ ├── xm-cloud-recommended-practices │ │ │ │ ├── deployment.md │ │ │ │ ├── development.md │ │ │ │ ├── getting-started.md │ │ │ │ ├── index.md │ │ │ │ ├── manifest.json │ │ │ │ ├── preparing-for-project.md │ │ │ │ └── project-structure.md │ │ │ ├── xm-cloud │ │ │ │ ├── customization.md │ │ │ │ ├── development.md │ │ │ │ ├── experience-edge.md │ │ │ │ ├── features.md │ │ │ │ ├── index.md │ │ │ │ ├── integration.md │ │ │ │ ├── manifest.json │ │ │ │ ├── migration.md │ │ │ │ ├── pages-components.md │ │ │ │ ├── personalization-analytics.md │ │ │ │ ├── pricing.md │ │ │ │ ├── rendering.md │ │ │ │ ├── scaling-availability.md │ │ │ │ ├── sxa.md │ │ │ │ └── upgrades.md │ │ │ └── xm-personalize │ │ │ │ ├── customization.md │ │ │ │ ├── development.md │ │ │ │ ├── edge-serverless.md │ │ │ │ ├── features.md │ │ │ │ ├── index.md │ │ │ │ ├── managed-cloud.md │ │ │ │ ├── manifest.json │ │ │ │ ├── migration.md │ │ │ │ ├── personalize-cdp.md │ │ │ │ ├── scaling.md │ │ │ │ └── upgrades.md │ │ ├── getting-started │ │ │ ├── discover-introduction │ │ │ │ └── index.md │ │ │ ├── introduction-to-composable-dxp │ │ │ │ └── index.md │ │ │ ├── introduction-to-contenthub-one │ │ │ │ └── index.md │ │ │ ├── managed-cloud-with-containers │ │ │ │ └── index.md │ │ │ ├── migrating-to-the-sitecore-composable-dxp │ │ │ │ └── index.md │ │ │ ├── next-js │ │ │ │ └── index.md │ │ │ ├── sitecore-xm-item-types │ │ │ │ └── index.md │ │ │ ├── xm-cloud-introduction │ │ │ │ └── index.md │ │ │ └── xm-cloud │ │ │ │ ├── index.md │ │ │ │ └── tutorials │ │ │ │ ├── configure-available-components-data-sources.md │ │ │ │ ├── create-a-component.md │ │ │ │ ├── create-a-site.md │ │ │ │ ├── create-data-template.md │ │ │ │ ├── datasources.md │ │ │ │ ├── index.md │ │ │ │ ├── manifest.json │ │ │ │ └── setup-xm-cloud.md │ │ └── integrations │ │ │ ├── oc-cdp.md │ │ │ ├── send-ch.md │ │ │ ├── send-oc.md │ │ │ ├── send-xm.md │ │ │ └── xm-smarthub-cdp.md │ │ ├── newsletter │ │ ├── 2022 │ │ │ ├── 01.md │ │ │ ├── 02.md │ │ │ ├── 03.md │ │ │ ├── 04.md │ │ │ ├── 05.md │ │ │ ├── 06.md │ │ │ ├── 07.md │ │ │ ├── 08.md │ │ │ ├── 10.md │ │ │ ├── 11.md │ │ │ ├── 12.md │ │ │ └── index.md │ │ ├── 2023 │ │ │ ├── 01.md │ │ │ ├── 02.md │ │ │ ├── 03.md │ │ │ ├── 05.md │ │ │ ├── 06.md │ │ │ ├── 07.md │ │ │ ├── 08.md │ │ │ ├── 09.md │ │ │ ├── 10.md │ │ │ ├── 12.md │ │ │ └── index.md │ │ ├── 2024 │ │ │ ├── 01.md │ │ │ ├── 02.md │ │ │ ├── 03.md │ │ │ └── index.md │ │ ├── index.md │ │ └── manifest.json │ │ ├── products │ │ ├── connect │ │ │ └── index.md │ │ ├── content-hub-one │ │ │ └── index.md │ │ ├── content-hub │ │ │ └── index.md │ │ ├── customer-data-platform │ │ │ └── index.md │ │ ├── devops-and-tools │ │ │ ├── arm-templates.md │ │ │ ├── containers.md │ │ │ ├── developer-collection.md │ │ │ ├── index.md │ │ │ └── sitecore-install-framework.md │ │ ├── discover │ │ │ └── index.md │ │ ├── experience-commerce │ │ │ └── index.md │ │ ├── experience-platform │ │ │ ├── edge.md │ │ │ ├── headless.md │ │ │ ├── index.md │ │ │ ├── sxa.md │ │ │ └── xm.md │ │ ├── index.md │ │ ├── managed-cloud │ │ │ └── index.md │ │ ├── manifest.json │ │ ├── ordercloud │ │ │ └── index.md │ │ ├── personalize │ │ │ └── index.md │ │ ├── search │ │ │ └── index.md │ │ ├── send │ │ │ └── index.md │ │ └── xm-cloud │ │ │ └── index.md │ │ └── trials │ │ ├── index.md │ │ └── jss-connected-demo │ │ ├── exploring-code │ │ ├── graphql.md │ │ ├── index.md │ │ └── updating-component.md │ │ ├── exploring-sitecore │ │ ├── experience-editor.md │ │ ├── launch-xprofile.md │ │ ├── personalization-in-experience-editor.md │ │ └── xprofile.md │ │ ├── getting-started │ │ ├── connecting.md │ │ ├── prerequisites.md │ │ └── repository.md │ │ ├── index.md │ │ └── manifest.json ├── products.ts └── promos │ ├── contact-us.ts │ ├── get-help.ts │ ├── learning-at-sitecore.ts │ ├── learning-essentials.ts │ ├── mvp.ts │ ├── newpromo.ts │ ├── newsletter.ts │ ├── nextjsconf.ts │ ├── opensource.ts │ ├── sitecore-support.ts │ ├── videos │ └── composable-dxp.ts │ └── xmc-practices.ts ├── next-env.d.ts ├── next-sitemap.config.js ├── next.config.js ├── package-lock.json ├── package.json ├── playwright.config.ts ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── images │ ├── 3d-neutral.jpg │ ├── LoggerPXM.png │ ├── accelerate.png │ ├── changelog-home.png │ ├── downloads.png │ ├── file-excel-chdam-planning.webp │ ├── file-excel-ordercloud.webp │ ├── file-excel.webp │ ├── file-word-chdam.webp │ ├── getting-started │ │ └── tutorials │ │ │ └── xm-cloud │ │ │ ├── configure-available-datasources-01.jpg │ │ │ ├── configure-available-datasources-02.jpg │ │ │ ├── configure-available-datasources-03.jpg │ │ │ ├── configure-available-datasources-04.jpg │ │ │ ├── create-a-component-01.png │ │ │ ├── create-a-component-02.jpg │ │ │ ├── create-a-component-03.jpg │ │ │ ├── create-a-component-04.jpg │ │ │ ├── create-a-component-05.jpg │ │ │ ├── create-a-component-06.jpg │ │ │ ├── create-a-component-07.jpg │ │ │ ├── create-a-component-08.jpg │ │ │ ├── create-a-component-09.jpg │ │ │ ├── create-a-component-10.jpg │ │ │ ├── create-a-component-11.jpg │ │ │ ├── create-a-component-12.jpg │ │ │ ├── create-a-component-13.jpg │ │ │ ├── create-a-component-14.jpg │ │ │ ├── create-a-component-15.jpg │ │ │ ├── create-a-component-16.jpg │ │ │ ├── create-a-component-17.jpg │ │ │ ├── create-a-component-18.jpg │ │ │ ├── create-a-component-19.jpg │ │ │ ├── create-a-site-01.png │ │ │ ├── create-a-site-02.png │ │ │ ├── create-a-site-03.png │ │ │ ├── create-a-site-04.png │ │ │ ├── create-a-site-05.png │ │ │ ├── create-a-site-06.png │ │ │ ├── create-a-site-07.png │ │ │ ├── create-a-site-08.png │ │ │ ├── create-a-site-09.png │ │ │ ├── create-a-site-10.png │ │ │ ├── create-a-site-11.png │ │ │ ├── create-a-site-12.png │ │ │ ├── create-a-site-13.png │ │ │ ├── create-a-site-14.png │ │ │ ├── create-a-site-15.png │ │ │ ├── create-a-site-16.png │ │ │ ├── create-a-site-17.png │ │ │ ├── create-a-site-18.png │ │ │ ├── create-a-site-19.png │ │ │ ├── create-component-data-template-01.jpg │ │ │ ├── create-component-data-template-02.jpg │ │ │ ├── create-component-data-template-03.jpg │ │ │ ├── create-component-data-template-04.jpg │ │ │ ├── create-component-data-template-05.jpg │ │ │ ├── create-component-data-template-06.jpg │ │ │ ├── create-component-data-template-07.jpg │ │ │ ├── create-component-data-template-08.jpg │ │ │ ├── create-component-data-template-09.jpg │ │ │ ├── create-component-data-template-10.jpg │ │ │ ├── create-component-data-template-11.jpg │ │ │ ├── create-component-data-template-12.jpg │ │ │ ├── create-component-data-template-13.jpg │ │ │ ├── create-component-data-template-14.jpg │ │ │ ├── create-component-data-template-15.jpg │ │ │ ├── create-component-data-template-16.jpg │ │ │ ├── create-component-data-template-17.jpg │ │ │ ├── create-component-data-template-18.jpg │ │ │ ├── create-component-data-template-19.jpg │ │ │ ├── map-component-datasources-01.jpg │ │ │ ├── map-component-datasources-02.jpg │ │ │ ├── map-component-datasources-03.jpg │ │ │ ├── map-component-datasources-04.jpg │ │ │ ├── map-component-datasources-05.jpg │ │ │ ├── map-component-datasources-06.jpg │ │ │ ├── map-component-datasources-07.jpg │ │ │ ├── map-component-datasources-08.jpg │ │ │ ├── map-component-datasources-09.jpg │ │ │ ├── map-component-datasources-10.jpg │ │ │ ├── map-component-datasources-11.jpg │ │ │ ├── map-component-datasources-12.jpg │ │ │ ├── map-component-datasources-13.jpg │ │ │ ├── map-component-datasources-14.jpg │ │ │ ├── map-component-datasources-15.jpg │ │ │ ├── map-component-datasources-16.jpg │ │ │ ├── map-component-datasources-17.jpg │ │ │ ├── setup-xm-cloud-01.png │ │ │ ├── setup-xm-cloud-02.png │ │ │ ├── setup-xm-cloud-03.png │ │ │ ├── setup-xm-cloud-04.png │ │ │ ├── setup-xm-cloud-05.png │ │ │ ├── setup-xm-cloud-06.png │ │ │ ├── setup-xm-cloud-07.png │ │ │ ├── setup-xm-cloud-08.png │ │ │ ├── setup-xm-cloud-09.png │ │ │ ├── setup-xm-cloud-10.png │ │ │ └── setup-xm-cloud-11.png │ ├── heros │ │ ├── hero-plus-pattern.png │ │ ├── hero-wide-dark.png │ │ ├── hero-wide-dark.webp │ │ ├── hero-wide-light.png │ │ └── hero-wide-light.webp │ ├── hex-item-round-corners.svg │ ├── learn │ │ ├── accelerate │ │ │ ├── cdp-personalize │ │ │ │ ├── abandon-cart │ │ │ │ │ ├── image-20250124-071335.png │ │ │ │ │ ├── image-20250221-074609.png │ │ │ │ │ ├── image-20250404-115813.png │ │ │ │ │ └── image-20250428-055529.png │ │ │ │ ├── before-you-fly │ │ │ │ │ ├── image-20250123-172749.png │ │ │ │ │ ├── image-20250123-173248.png │ │ │ │ │ ├── image-20250123-173429.png │ │ │ │ │ ├── image-20250204-102032.png │ │ │ │ │ ├── image-20250213-111644.png │ │ │ │ │ ├── image-20250213-112151.png │ │ │ │ │ └── image-20250320-175246.png │ │ │ │ ├── home-page │ │ │ │ │ ├── Screenshot 2025-02-13 at 16.38.00.png │ │ │ │ │ ├── Screenshot 2025-02-21 at 16.07.09.png │ │ │ │ │ ├── Screenshot 2025-03-24 at 13.37.54.png │ │ │ │ │ └── decision-table.png │ │ │ │ ├── image-20250124-123424.png │ │ │ │ ├── image-20250219-212837.png │ │ │ │ ├── image-20250224-171408.png │ │ │ │ ├── image-20250401-151546.png │ │ │ │ ├── image-20250403-145607.png │ │ │ │ ├── image-20250403-154853.png │ │ │ │ ├── image-20250414-151110.png │ │ │ │ ├── image-20250513-112712.png │ │ │ │ └── testing │ │ │ │ │ ├── bid cloudsdk.png │ │ │ │ │ ├── bid.png │ │ │ │ │ ├── calculate audience.png │ │ │ │ │ ├── data browser.png │ │ │ │ │ ├── debug table.png │ │ │ │ │ ├── event viewer.png │ │ │ │ │ ├── events id.png │ │ │ │ │ ├── guests 2.png │ │ │ │ │ ├── guests 3.png │ │ │ │ │ ├── image-20250502-051340.png │ │ │ │ │ ├── manage features.png │ │ │ │ │ ├── segment builder.png │ │ │ │ │ └── segments.png │ │ │ ├── content-hub │ │ │ │ ├── 1-AgencyFrance.png │ │ │ │ ├── 2-AgencyFrance.png │ │ │ │ ├── 3-AgencyFrance.png │ │ │ │ ├── API-call-on-Asset-entity.png │ │ │ │ ├── CIHub-AddConnection.png │ │ │ │ ├── CIHub-AddSitecore.png │ │ │ │ ├── CIHub-Browse.png │ │ │ │ ├── CIHub-Collection.png │ │ │ │ ├── CIHub-Editting.png │ │ │ │ ├── CIHub-GrantConnection.png │ │ │ │ ├── CIHub-GrantConnection2.png │ │ │ │ ├── Custom-Form-Control-external-component..png │ │ │ │ ├── Entity-Details-page-components.png │ │ │ │ ├── New-Action.png │ │ │ │ ├── Path-enable-definition.png │ │ │ │ ├── Path-information-in-search-component.png │ │ │ │ ├── Product-Family-on-Asset-Details-page.png │ │ │ │ ├── Product-Hierarchy-on-the-assets.png │ │ │ │ ├── Product-Hierarchy.PNG │ │ │ │ ├── Social-Media-Processing-Matrix-Action.png │ │ │ │ ├── SuperFacets.webp │ │ │ │ ├── UserGroups-OrganizationalStructure-Example.png │ │ │ │ ├── add-new-sign-in-script.png │ │ │ │ ├── advanced-search.png │ │ │ │ ├── asset-type.png │ │ │ │ ├── condition-trigger.png │ │ │ │ ├── configuration-of-Entity-Details-Language.png │ │ │ │ ├── configure-facets-filtering.png │ │ │ │ ├── custom-homepage.png │ │ │ │ ├── data-migration-sample-file.png │ │ │ │ ├── drm-request-download.jpg │ │ │ │ ├── drm-request-in-mrm.jpg │ │ │ │ ├── drm-schema.png │ │ │ │ ├── filter-on-asset-type-relation.png │ │ │ │ ├── flavorful-external-component.png │ │ │ │ ├── homepage-theming.png │ │ │ │ ├── hypercare │ │ │ │ │ ├── image-20250207-210925.png │ │ │ │ │ ├── image-20250207-211033.png │ │ │ │ │ ├── image-20250207-211121.png │ │ │ │ │ ├── image-20250207-211138.png │ │ │ │ │ ├── image-20250207-211205.png │ │ │ │ │ └── image-20250207-211221.png │ │ │ │ ├── image-20250321-193856.png │ │ │ │ ├── mail-workflow.png │ │ │ │ ├── media-matrix.png │ │ │ │ ├── metadata-to-export.png │ │ │ │ ├── most-searched-assets │ │ │ │ │ ├── 045.png │ │ │ │ │ ├── Screenshot 2025-03-12 at 11.05.06.png │ │ │ │ │ ├── att_15_for_3800498189.png │ │ │ │ │ ├── att_16_for_3800498189.png │ │ │ │ │ ├── att_20_for_3800498189.png │ │ │ │ │ ├── att_21_for_3800498189.png │ │ │ │ │ ├── att_22_for_3800498189.png │ │ │ │ │ ├── att_24_for_3800498189.png │ │ │ │ │ ├── att_25_for_3800498189.png │ │ │ │ │ ├── att_37_for_3800498189.png │ │ │ │ │ ├── att_39_for_3800498189.png │ │ │ │ │ ├── att_40_for_3800498189.png │ │ │ │ │ ├── att_41_for_3800498189.png │ │ │ │ │ ├── att_42_for_3800498189.png │ │ │ │ │ ├── att_44_for_3800498189.png │ │ │ │ │ ├── att_45_for_3800498189.png │ │ │ │ │ ├── att_60_for_3800498189.png │ │ │ │ │ ├── att_61_for_3800498189.png │ │ │ │ │ ├── att_62_for_3800498189.png │ │ │ │ │ ├── att_63_for_3800498189.png │ │ │ │ │ ├── att_66_for_3800498189.png │ │ │ │ │ ├── att_67_for_3800498189.png │ │ │ │ │ ├── att_68_for_3800498189.png │ │ │ │ │ ├── att_69_for_3800498189.png │ │ │ │ │ └── att_70_for_3800498189.png │ │ │ │ ├── mrm-workflow.png │ │ │ │ ├── path-relation.png │ │ │ │ ├── post-action-media-matrix.png │ │ │ │ ├── pre-commit │ │ │ │ │ ├── image-20241213-124946.png │ │ │ │ │ ├── image-20241213-125634.png │ │ │ │ │ ├── image-20241213-125658.png │ │ │ │ │ ├── image-20241213-125725.png │ │ │ │ │ └── video_1280.mp4 │ │ │ │ ├── product-path-on-asset.png │ │ │ │ ├── push-configuration-action.png │ │ │ │ ├── renditions-attributes.png │ │ │ │ ├── renditions-json-object.png │ │ │ │ ├── schema-configuration-product-hierarchy.PNG │ │ │ │ ├── script-logs.png │ │ │ │ ├── search-calendar-view.png │ │ │ │ ├── search-grid-view.png │ │ │ │ ├── search-list-view.png │ │ │ │ ├── search-pivot-view.webp │ │ │ │ ├── search-sorting.png │ │ │ │ ├── search-wildcard-mode.png │ │ │ │ ├── social-new-set.png │ │ │ │ ├── trigger-execution-log.png │ │ │ │ └── trigger-save-media-matrix.png │ │ │ └── xm-cloud │ │ │ │ ├── 3rdParty1.png │ │ │ │ ├── 3rdParty10.png │ │ │ │ ├── 3rdParty11.png │ │ │ │ ├── 3rdParty12.png │ │ │ │ ├── 3rdParty13.png │ │ │ │ ├── 3rdParty14.png │ │ │ │ ├── 3rdParty15.png │ │ │ │ ├── 3rdParty16.png │ │ │ │ ├── 3rdParty2.png │ │ │ │ ├── 3rdParty2_updated.png │ │ │ │ ├── 3rdParty3.png │ │ │ │ ├── 3rdParty4.png │ │ │ │ ├── 3rdParty5.png │ │ │ │ ├── 3rdParty6.png │ │ │ │ ├── 3rdParty7.png │ │ │ │ ├── 3rdParty8.png │ │ │ │ ├── 3rdParty9.png │ │ │ │ ├── API-error-handling.png │ │ │ │ ├── ComponentDatasourceWorkflow.jpg │ │ │ │ ├── Docker-Status.png │ │ │ │ ├── Docker-logs.png │ │ │ │ ├── Docker-network.png │ │ │ │ ├── StandardValuesPageWorkflow.jpg │ │ │ │ ├── add-components-to-header.png │ │ │ │ ├── asp-net-core-change-values.png │ │ │ │ ├── asp-net-core-update-ps1.png │ │ │ │ ├── asp.netcore-starter-kit.png │ │ │ │ ├── codespaces-1.png │ │ │ │ ├── codespaces-2.png │ │ │ │ ├── codespaces-3.png │ │ │ │ ├── codespaces-4.png │ │ │ │ ├── codespaces-5.png │ │ │ │ ├── codespaces-6.png │ │ │ │ ├── component-error-handling.png │ │ │ │ ├── create-a-site-1.png │ │ │ │ ├── create-a-site-2.png │ │ │ │ ├── creating-branch-templates1.png │ │ │ │ ├── creating-branch-templates10.png │ │ │ │ ├── creating-branch-templates11.png │ │ │ │ ├── creating-branch-templates12.png │ │ │ │ ├── creating-branch-templates13.png │ │ │ │ ├── creating-branch-templates14.png │ │ │ │ ├── creating-branch-templates2.png │ │ │ │ ├── creating-branch-templates3.png │ │ │ │ ├── creating-branch-templates4.png │ │ │ │ ├── creating-branch-templates5.png │ │ │ │ ├── creating-branch-templates6.png │ │ │ │ ├── creating-branch-templates7.png │ │ │ │ ├── creating-branch-templates8.png │ │ │ │ ├── creating-branch-templates9.png │ │ │ │ ├── creating-new-components1.png │ │ │ │ ├── creating-new-components2.png │ │ │ │ ├── creating-new-components3.png │ │ │ │ ├── creating-new-components4.png │ │ │ │ ├── creating-new-components5.png │ │ │ │ ├── custom-error-pages.png │ │ │ │ ├── customizing-404-error-01.png │ │ │ │ ├── customizing-404-error-02.png │ │ │ │ ├── docker-desktop.png │ │ │ │ ├── error-boundary-implementation-1.png │ │ │ │ ├── error-boundary-implementation-2.png │ │ │ │ ├── example-multisite-content-tree.png │ │ │ │ ├── full-publish-event.png │ │ │ │ ├── image-20250131-122723.png │ │ │ │ ├── image-20250321-091939.png │ │ │ │ ├── image-20250321-092144.png │ │ │ │ ├── implementation-architecture.png │ │ │ │ ├── incremental-updates.png │ │ │ │ ├── language-settings.png │ │ │ │ ├── layout-folder.png │ │ │ │ ├── layoutroutes-1.png │ │ │ │ ├── layoutroutes-2.png │ │ │ │ ├── middleware-plugins.png │ │ │ │ ├── moving-to-saas1.png │ │ │ │ ├── multisite-1.png │ │ │ │ ├── one-app-vs-multi.png │ │ │ │ ├── project-solution-setup-2.jpeg │ │ │ │ ├── project-solution-setup-solution.jpeg │ │ │ │ ├── publish-edge-1.png │ │ │ │ ├── publish-edge-2.png │ │ │ │ ├── publish-edge-3.png │ │ │ │ ├── publishing │ │ │ │ ├── step1-publishing.jpg │ │ │ │ ├── step2-publishing.jpg │ │ │ │ ├── step3-publishing.jpg │ │ │ │ ├── step4-publishing.jpg │ │ │ │ ├── step5-publishing.jpg │ │ │ │ └── step6-publishing.jpg │ │ │ │ ├── re-index-explorer.png │ │ │ │ ├── re-index-property.png │ │ │ │ ├── search │ │ │ │ └── throttle-limits.png │ │ │ │ ├── single-item-publish-event.png │ │ │ │ ├── site-management-1.png │ │ │ │ ├── site-management-2.png │ │ │ │ ├── site-management-3.png │ │ │ │ ├── site-management-4.png │ │ │ │ ├── site-management-5.png │ │ │ │ ├── site-management-6.png │ │ │ │ ├── site-management-7.png │ │ │ │ ├── site-templates-1.png │ │ │ │ ├── tailwind-considerations.png │ │ │ │ ├── using-placeholders1.png │ │ │ │ ├── using-placeholders2.png │ │ │ │ ├── using-placeholders3.png │ │ │ │ ├── using-placeholders4.png │ │ │ │ ├── using-placeholders5.png │ │ │ │ ├── wildcard-pages1.png │ │ │ │ ├── wildcard-pages2.png │ │ │ │ ├── wildcard-pages3.png │ │ │ │ ├── workflows1.jpg │ │ │ │ ├── workflows1.png │ │ │ │ ├── workflows10.png │ │ │ │ ├── workflows11.png │ │ │ │ ├── workflows12.png │ │ │ │ ├── workflows2.jpg │ │ │ │ ├── workflows2.png │ │ │ │ ├── workflows3.png │ │ │ │ ├── workflows4.png │ │ │ │ ├── workflows5.png │ │ │ │ ├── workflows6.png │ │ │ │ ├── workflows7.png │ │ │ │ ├── workflows8.png │ │ │ │ ├── workflows9.png │ │ │ │ ├── xm-xp-to-xmc1.png │ │ │ │ ├── xmc-glossary-1.jpeg │ │ │ │ ├── xmc-glossary-2.jpeg │ │ │ │ ├── xmcloud-enable-debug.png │ │ │ │ ├── xmcloud-portal-logs.png │ │ │ │ └── xmcloud-search-high-level.png │ │ ├── migration-advisor.jpg │ │ └── project-workflow.jpeg │ ├── modal-close.svg │ ├── newsletter │ │ └── sample-newsletter-image.png │ ├── platform │ │ ├── experience-manager.svg │ │ ├── experience-platform.svg │ │ └── managed-cloud.svg │ ├── products │ │ ├── cdp │ │ │ └── customer-data-collection.svg │ │ ├── chone │ │ │ ├── effortless-content-authoring.svg │ │ │ └── flexible-content-modelling.svg │ │ ├── connect │ │ │ └── connect-capability.svg │ │ ├── content-ops │ │ │ └── strategy-made-simple.svg │ │ ├── dam │ │ │ └── complete-content-command.svg │ │ ├── discover │ │ │ └── discover-datadriven-commerce.svg │ │ ├── ordercloud │ │ │ └── scalable-commerce.svg │ │ ├── personalize │ │ │ └── full-stack-AB-testing-optimization.svg │ │ ├── search │ │ │ └── Fast-predictive-search.svg │ │ └── send │ │ │ └── pixel-perfect-emails-faster.svg │ ├── sc_power-gradient-desktop.svg │ ├── sc_power-gradient-mobile.svg │ ├── search-page.png │ ├── sitecore-commerce-cloud-color.svg │ ├── sitecore-content-cloud-color.svg │ ├── sitecore-engagement-cloud-color.svg │ ├── social │ │ └── social-card-default.jpeg │ └── xm-cloud-agility-for-developers.png ├── llms.txt ├── mockServiceWorker.js ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── safari-pinned-tab.svg └── site.webmanifest ├── scripts └── generateLLM.js ├── src ├── components │ ├── authentication │ │ ├── HideForUsers.tsx │ │ └── RestrictedContent.tsx │ ├── cards │ │ ├── Article.stories.tsx │ │ ├── Article.tsx │ │ ├── CTACard.tsx │ │ ├── Download.stories.tsx │ │ ├── Download.tsx │ │ ├── Group.stories.tsx │ │ ├── Group.tsx │ │ ├── LinkItem.stories.tsx │ │ ├── LinkItem.tsx │ │ ├── PromoCard.stories.tsx │ │ ├── PromoCard.tsx │ │ ├── PromoList.tsx │ │ ├── Repository.stories.tsx │ │ ├── Repository.tsx │ │ ├── VideoPromo.stories.tsx │ │ ├── index.ts │ │ └── videoPromo.tsx │ ├── changelog │ │ ├── ChangeLogItem.tsx │ │ ├── ChangelogByMonth.tsx │ │ ├── ChangelogEntries.stories.tsx │ │ ├── ChangelogEntries.tsx │ │ ├── ChangelogFeeds.tsx │ │ ├── ChangelogFilter.tsx │ │ ├── ChangelogItem.stories.tsx │ │ ├── ChangelogItemMeta.stories.tsx │ │ ├── ChangelogItemMeta.tsx │ │ ├── ChangelogList.stories.tsx │ │ ├── ChangelogList.tsx │ │ ├── ChangelogResultsList.tsx │ │ ├── Hint.stories.tsx │ │ ├── Hint.tsx │ │ ├── LatestChangelogEntries.tsx │ │ ├── ProductIcon.stories.tsx │ │ └── ProductIcon.tsx │ ├── index.ts │ ├── integrations │ │ ├── ai │ │ │ └── useWithAI.tsx │ │ ├── engage │ │ │ ├── EngageKeys.ts │ │ │ ├── EngageTracker.tsx │ │ │ └── TrackPageView.tsx │ │ ├── github │ │ │ └── Repositories.tsx │ │ ├── index.ts │ │ ├── sitecore-search │ │ │ ├── Loader.tsx │ │ │ ├── PreviewSearchInput.tsx │ │ │ ├── QuerySummary.tsx │ │ │ ├── Search.styles.css │ │ │ ├── SearchFacets.tsx │ │ │ ├── SearchInput.tsx │ │ │ ├── SearchInputSwitcher.tsx │ │ │ ├── SearchPagination.tsx │ │ │ ├── SearchResults.tsx │ │ │ ├── SearchSort.tsx │ │ │ └── index.ts │ │ ├── sitecoreCommunity │ │ │ ├── README.md │ │ │ ├── SitecoreCommunity.api.ts │ │ │ ├── SitecoreCommunityBlogOrQuestion.tsx │ │ │ ├── SitecoreCommunityNewsOrEventItem.tsx │ │ │ ├── blog │ │ │ │ └── SitecoreCommunityBlog.tsx │ │ │ ├── events │ │ │ │ └── SitecoreCommunityEvents.tsx │ │ │ ├── index.ts │ │ │ ├── news │ │ │ │ └── SitecoreCommunityNews.tsx │ │ │ ├── questions │ │ │ │ └── SitecoreCommunityQuestions.tsx │ │ │ ├── sitecore-community.constants.ts │ │ │ └── types.ts │ │ ├── stackexchange │ │ │ ├── StackExchange.api.ts │ │ │ ├── StackExchangeFeed.tsx │ │ │ └── stackExchange.ts │ │ └── youtube │ │ │ ├── YouTube.api.ts │ │ │ ├── YouTubeFeed.tsx │ │ │ └── youTube.ts │ ├── links │ │ ├── GuidedDemo.stories.tsx │ │ ├── GuidedDemo.tsx │ │ ├── LinkButton.stories.tsx │ │ ├── LinkButton.tsx │ │ ├── LinkedHeading.tsx │ │ ├── SocialButton.tsx │ │ ├── SocialFeeds.tsx │ │ ├── TextLink.tsx │ │ └── index.ts │ ├── lists │ │ ├── accelerate │ │ │ ├── AccelerateUpdates.tsx │ │ │ └── MetaData.tsx │ │ ├── categoryTileList │ │ │ ├── CategoryTileList.tsx │ │ │ └── types.ts │ │ ├── genericList │ │ │ ├── GenericList.tsx │ │ │ └── types.ts │ │ ├── index.ts │ │ └── products │ │ │ └── productList.tsx │ ├── markdown │ │ ├── Feedback.tsx │ │ ├── MarkdownContent.module.css │ │ ├── MarkdownContent.tsx │ │ ├── MarkdownIntro.tsx │ │ └── contribute.tsx │ ├── navigation │ │ ├── ArticlePaging.stories.tsx │ │ ├── ArticlePaging.tsx │ │ ├── ArticlePagingNext.stories.tsx │ │ ├── ArticlePagingNext.tsx │ │ ├── BreadcrumbNav.tsx │ │ ├── DarkModeSwitch.tsx │ │ ├── DropDownNavigation.tsx │ │ ├── Footer.stories.tsx │ │ ├── Footer.tsx │ │ ├── InPageNav.stories.tsx │ │ ├── InPageNav.tsx │ │ ├── InPageNavSmall.stories.tsx │ │ ├── InPageNavSmall.tsx │ │ ├── NavBar.tsx │ │ ├── NavBarSearch.tsx │ │ ├── PreviewModeSwitch.tsx │ │ ├── QuickStartMenu.tsx │ │ ├── ScrollToTop.tsx │ │ ├── SearchButton.tsx │ │ ├── SidebarNavigation.tsx │ │ ├── SidebarSearch.tsx │ │ └── UserAccount.tsx │ ├── newsletter │ │ ├── index.ts │ │ └── story.tsx │ ├── roadmap │ │ ├── roadmapItem.stories.tsx │ │ ├── roadmapItem.tsx │ │ ├── roadmapPhase.stories.tsx │ │ └── roadmapPhase.tsx │ ├── ui │ │ ├── carousel │ │ │ └── carousel.tsx │ │ ├── chakra │ │ │ ├── Slide.tsx │ │ │ └── index.ts │ │ ├── dropdown │ │ │ ├── MultiSelect.stories.tsx │ │ │ ├── MultiSelect.tsx │ │ │ └── index.ts │ │ ├── imageModal │ │ │ ├── ImageModal.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── loading │ │ │ └── Loading.tsx │ │ ├── logos │ │ │ ├── ProductIcon.tsx │ │ │ ├── ProductLogo.tsx │ │ │ ├── SvgLogo.tsx │ │ │ ├── index.ts │ │ │ └── logos │ │ │ │ ├── logo--astro.tsx │ │ │ │ ├── logo--chatgpt.tsx │ │ │ │ ├── logo--dotnet.tsx │ │ │ │ ├── logo--javascript.tsx │ │ │ │ ├── logo--nextjs.tsx │ │ │ │ ├── logo--npm.tsx │ │ │ │ ├── logo--powershell.tsx │ │ │ │ ├── logo--react.tsx │ │ │ │ ├── logo--reactnative.tsx │ │ │ │ ├── logo--svelte.tsx │ │ │ │ ├── logo--typescript.tsx │ │ │ │ └── logo--vue.tsx │ │ ├── sections │ │ │ ├── CenteredContent.tsx │ │ │ ├── ConditionalWrapper.tsx │ │ │ ├── ContentSection.tsx │ │ │ ├── Hero.tsx │ │ │ ├── Row.tsx │ │ │ ├── VerticalGroup.tsx │ │ │ └── index.ts │ │ └── socialShare │ │ │ ├── SocialShare.tsx │ │ │ └── index.ts │ └── video │ │ ├── YouTube.module.css │ │ ├── YouTube.tsx │ │ └── index.ts ├── context │ └── PreviewContext.tsx ├── gql │ └── generated │ │ ├── gql.ts │ │ ├── graphql.ts │ │ └── index.ts ├── hooks │ ├── useEngageTracker.ts │ ├── useGetEntriesByProducts.ts │ ├── useInPageNavigation.ts │ └── useManifestRoutes.ts ├── layouts │ ├── AcceleratePage.tsx │ ├── ArticlePage.tsx │ ├── ChildOverviewPage.tsx │ ├── DefaultContentPage.tsx │ ├── Layout.tsx │ ├── Meta.tsx │ ├── NewsLetterPage.tsx │ ├── Sidebar.tsx │ ├── SocialPage.tsx │ ├── ThreeColumnLayout.tsx │ └── Tutorial.tsx ├── lib │ ├── accelerate │ │ ├── feeds.ts │ │ ├── latest.ts │ │ └── types │ │ │ └── recipe.ts │ ├── assets.ts │ ├── auth0.ts │ ├── changelog │ │ ├── changelog.ts │ │ ├── common │ │ │ ├── changelog.ts │ │ │ ├── credentials.ts │ │ │ ├── fetch.ts │ │ │ ├── querystring.ts │ │ │ └── richTextConfiguration.ts │ │ ├── feeds.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── changeLogEntry.ts │ │ │ ├── changeType.ts │ │ │ ├── changelog.ts │ │ │ ├── common │ │ │ └── media.ts │ │ │ ├── index.ts │ │ │ ├── product.ts │ │ │ ├── sitecoreProduct.ts │ │ │ └── status.ts │ ├── downloads.ts │ ├── github.ts │ ├── interfaces │ │ ├── contentheading.ts │ │ ├── github.ts │ │ ├── jira.ts │ │ ├── manifest.ts │ │ └── page-info.ts │ ├── jira.ts │ ├── manifestHelper.ts │ ├── markdown │ │ ├── mdxParse.ts │ │ ├── rehype │ │ │ └── extractHeadings.ts │ │ └── remark │ │ │ └── heading-ids.ts │ ├── newsletter.ts │ ├── page-info.ts │ ├── roadmap.ts │ ├── search.ts │ ├── staticPaths.ts │ ├── transition-utils.ts │ └── utils │ │ ├── cookieUtil.ts │ │ ├── dateUtil.ts │ │ ├── fsUtils.ts │ │ ├── index.ts │ │ ├── requests.ts │ │ ├── sortUtil.ts │ │ ├── stringUtil.ts │ │ └── urlUtil.ts ├── middleware.ts ├── middlewares │ ├── aspxExtension.ts │ ├── lowercaseDownloads.ts │ ├── mediaHandler.ts │ ├── middlewareFactory.ts │ ├── stackHandler.ts │ └── underscore.ts ├── pages │ ├── 404.tsx │ ├── 500.tsx │ ├── [...slug].tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ ├── auth │ │ │ └── [...auth0].ts │ │ ├── changelog │ │ │ └── v1 │ │ │ │ ├── all │ │ │ │ └── index.ts │ │ │ │ ├── date │ │ │ │ └── [date].ts │ │ │ │ ├── index.ts │ │ │ │ ├── indexing.ts │ │ │ │ ├── preview │ │ │ │ └── [product] │ │ │ │ │ └── index.ts │ │ │ │ ├── products │ │ │ │ └── index.ts │ │ │ │ ├── status │ │ │ │ └── index.ts │ │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── context │ │ │ ├── init-preview.ts │ │ │ └── preview.ts │ │ ├── feedback.ts │ │ ├── og.tsx │ │ ├── roadmap │ │ │ ├── image.ts │ │ │ └── index.ts │ │ └── sitecore-community.ts │ ├── changelog │ │ ├── [product] │ │ │ ├── [...entry].tsx │ │ │ ├── atom.xml.tsx │ │ │ ├── index.tsx │ │ │ └── rss.xml.tsx │ │ ├── atom.xml.tsx │ │ ├── current.tsx │ │ ├── index.tsx │ │ └── rss.xml.tsx │ ├── feeds │ │ ├── rss-accelerate-contenthub.xml.tsx │ │ ├── rss-accelerate-xmcloud.xml.tsx │ │ └── rss-accelerate.xml.tsx │ ├── index.tsx │ ├── newsletter │ │ └── latest.tsx │ ├── open-source.tsx │ ├── roadmap │ │ ├── [product] │ │ │ └── index.tsx │ │ ├── full.tsx │ │ └── index.tsx │ └── search.tsx └── theme │ ├── components │ ├── cardTheme.ts │ ├── heading.ts │ └── modalTheme.ts │ ├── foundations │ └── breakpoints.ts │ ├── proseTheme.ts │ └── theme.ts ├── tsconfig.json ├── vitest.config.mts └── vitest.setup.ts /.env.template: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_YOUTUBE_API_KEY="" 2 | NEXT_PUBLIC_COOKIE_CONSENT_URL= 3 | 4 | NEXT_PUBLIC_GTM_ID= 5 | NEXT_PUBLIC_GTM_AUTH= 6 | NEXT_PUBLIC_GTM_ENVIRONMENT= 7 | 8 | # To enable search the following environment variables are required: 9 | NEXT_PUBLIC_SEARCH_APP_API_KEY= 10 | NEXT_PUBLIC_SEARCH_APP_CUSTOMER_KEY= 11 | NEXT_PUBLIC_SEARCH_APP_ENV= 12 | NEXT_PUBLIC_SEARCH_ENABLE_PREVIEW_SEARCH= 13 | 14 | # To enable Sitecore CDP/P the following environment variables are required: 15 | NEXT_PUBLIC_SITECORE_CDP_CLIENT_KEY= 16 | NEXT_PUBLIC_SITECORE_CDP_TARGETURL= 17 | NEXT_PUBLIC_SITECORE_CDP_COOKIE_DOMAIN= 18 | NEXT_PUBLIC_SITECORE_CDP_POS= -------------------------------------------------------------------------------- /.github/images/CEC-Sorting_Option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/.github/images/CEC-Sorting_Option.png -------------------------------------------------------------------------------- /.github/images/CEC-Suggestion_Block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/.github/images/CEC-Suggestion_Block.png -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx --no-install lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- 1 | { 2 | "*.ts?(x)": ["prettier -w --config .prettierrc"], 3 | "*.js?(x)": ["prettier -w --config .prettierrc"] 4 | } 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @sitecore:registry=https://npm.sitecore.com/resources/ -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | /node_modules 3 | /.pnp 4 | .pnp.js 5 | 6 | # testing 7 | /coverage 8 | 9 | # next.js 10 | /.next/ 11 | /out/ 12 | 13 | # production 14 | /build 15 | 16 | # misc 17 | .DS_Store 18 | *.pem 19 | 20 | # debug 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | 25 | # local env files 26 | .env.local 27 | .env.development.local 28 | .env.test.local 29 | .env.production.local 30 | 31 | # vercel 32 | .vercel -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "endOfLine": "lf", 3 | "semi": true, 4 | "singleQuote": true, 5 | "tabWidth": 2, 6 | "trailingComma": "es5", 7 | "printWidth": 250 8 | } 9 | -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- 1 | import type { StorybookConfig } from '@storybook/nextjs'; 2 | 3 | const config: StorybookConfig = { 4 | stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'], 5 | addons: ['@storybook/addon-links', '@storybook/addon-essentials', '@chromatic-com/storybook', '@storybook/addon-interactions'], 6 | framework: { 7 | name: '@storybook/nextjs', 8 | options: {}, 9 | }, 10 | staticDirs: ['..\\public'], 11 | }; 12 | export default config; 13 | -------------------------------------------------------------------------------- /.storybook/manager.ts: -------------------------------------------------------------------------------- 1 | import { addons } from '@storybook/manager-api'; 2 | import theme from './storybook-theme'; 3 | 4 | addons.setConfig({ 5 | theme, 6 | }); 7 | -------------------------------------------------------------------------------- /.storybook/storybook-theme.ts: -------------------------------------------------------------------------------- 1 | import { create } from '@storybook/theming'; 2 | 3 | export default create({ 4 | base: 'light', 5 | brandTitle: 'Sitecore Developer Portal', 6 | brandUrl: 'https://developers.sitecore.com', 7 | brandImage: 'https://delivery-sitecore.sitecorecontenthub.cloud/api/public/content/logo-sc_developers', 8 | }); 9 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.defaultFormatter": "esbenp.prettier-vscode", 3 | "editor.formatOnSave": true, 4 | "javascript.format.enable": false, 5 | "editor.tabSize": 2, 6 | "editor.codeActionsOnSave": { 7 | "source.fixAll": "explicit", 8 | "source.organizeImports": "explicit" 9 | }, 10 | "[typescript]": { 11 | "editor.formatOnSave": true 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /__mocks__/fs.cjs: -------------------------------------------------------------------------------- 1 | const { fs } = require('memfs'); 2 | module.exports = fs; 3 | -------------------------------------------------------------------------------- /__tests__/e2e/home.spec.ts: -------------------------------------------------------------------------------- 1 | import { expect, test } from '@playwright/test'; 2 | 3 | test('has title', async ({ page }) => { 4 | await page.goto('/'); 5 | 6 | // Expect a title "to contain" a substring. 7 | await expect(page).toHaveTitle(/Sitecore Developer Portal/); 8 | }); 9 | -------------------------------------------------------------------------------- /data/gql/generated/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gql'; 2 | -------------------------------------------------------------------------------- /data/gql/query/fragments/changeType.graphql: -------------------------------------------------------------------------------- 1 | fragment changeType on Changetype { 2 | id 3 | name 4 | changeType 5 | } 6 | -------------------------------------------------------------------------------- /data/gql/query/fragments/changelogEntry.graphql: -------------------------------------------------------------------------------- 1 | fragment changelogEntry on Changelog { 2 | id 3 | name 4 | title 5 | description 6 | fullArticle 7 | readMoreLink 8 | breakingChange 9 | version 10 | releaseDate 11 | scheduled 12 | image { 13 | total 14 | results { 15 | ...media 16 | } 17 | } 18 | sitecoreProduct { 19 | total 20 | results { 21 | ...product 22 | } 23 | } 24 | changeType { 25 | total 26 | results { 27 | ...changeType 28 | } 29 | } 30 | status { 31 | total 32 | results { 33 | ...status 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /data/gql/query/fragments/changelogEntrySummary.graphql: -------------------------------------------------------------------------------- 1 | fragment changelogEntrySummary on Changelog { 2 | id 3 | name 4 | title 5 | description 6 | readMoreLink 7 | breakingChange 8 | version 9 | releaseDate 10 | image { 11 | total 12 | results { 13 | ...media 14 | } 15 | } 16 | sitecoreProduct { 17 | total 18 | results { 19 | ...product 20 | } 21 | } 22 | changeType { 23 | total 24 | results { 25 | ...changeType 26 | } 27 | } 28 | status { 29 | total 30 | results { 31 | ...status 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /data/gql/query/fragments/media.graphql: -------------------------------------------------------------------------------- 1 | fragment media on Media { 2 | id 3 | name 4 | fileName 5 | fileUrl 6 | description 7 | fileWidth 8 | fileHeight 9 | fileId 10 | fileSize 11 | fileType 12 | } 13 | -------------------------------------------------------------------------------- /data/gql/query/fragments/product.graphql: -------------------------------------------------------------------------------- 1 | fragment product on SitecoreProduct { 2 | id 3 | name 4 | productName 5 | productDescription 6 | darkIcon: productIconDark 7 | lightIcon: productIconLight 8 | } 9 | -------------------------------------------------------------------------------- /data/gql/query/fragments/status.graphql: -------------------------------------------------------------------------------- 1 | fragment status on Status { 2 | id 3 | name 4 | description 5 | identifier 6 | } 7 | -------------------------------------------------------------------------------- /data/gql/query/getAllChangetypes.graphql: -------------------------------------------------------------------------------- 1 | query GetAllChangetypes { 2 | allChangetype { 3 | total 4 | results { 5 | ...changeType 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /data/gql/query/getAllProducts.graphql: -------------------------------------------------------------------------------- 1 | query GetAllProducts { 2 | allSitecoreProduct(first: 25) { 3 | total 4 | results { 5 | ...product 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /data/gql/query/getAllStatus.graphql: -------------------------------------------------------------------------------- 1 | query GetAllStatus { 2 | allStatus { 3 | total 4 | results { 5 | ...status 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /data/gql/query/getLatestEntries.graphql: -------------------------------------------------------------------------------- 1 | query GetLatestEntries($first: Int = 5, $after: String = "", $date: DateTime!) { 2 | changelog: allChangelog(orderBy: RELEASEDATE_DESC, first: $first, after: $after, where: { releaseDate_lt: $date }) { 3 | pageInfo { 4 | hasNext 5 | endCursor 6 | } 7 | total 8 | results { 9 | ...changelogEntry 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /data/gql/query/getNumberOfEntriesByProduct.graphql: -------------------------------------------------------------------------------- 1 | query getNumberOfEntriesByProduct($productId: [ID]!) { 2 | changelog: allChangelog(where: { sitecoreProduct: { changelog_ids: $productId } }) { 3 | total 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /data/gql/query/getStatusByIdentifier.graphql: -------------------------------------------------------------------------------- 1 | query GetStatusByIdentifier($identifier: String) { 2 | allStatus(where: { identifier_eq: $identifier }) { 3 | total 4 | results { 5 | ...status 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /data/gql/query/searchByDate.graphql: -------------------------------------------------------------------------------- 1 | query SearchByDate($startDate: DateTime!, $endDate: DateTime!, $first: Int = 5, $after: String = "") { 2 | changelog: allChangelog(first: $first, after: $after, where: { releaseDate_between: [$startDate, $endDate] }) { 3 | pageInfo { 4 | hasNext 5 | endCursor 6 | } 7 | total 8 | results { 9 | ...changelogEntry 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /data/gql/query/searchByProduct.graphql: -------------------------------------------------------------------------------- 1 | query searchByProduct($date: DateTime, $productId: [ID], $changeTypeIds: [ID] = [], $first: Int = 5, $after: String = "") { 2 | changelog: allChangelog(orderBy: RELEASEDATE_DESC, first: $first, after: $after, where: { releaseDate_lt: $date, sitecoreProduct: { changelog_ids: $productId }, AND: { OR: [{ changeType: { changelog_ids: $changeTypeIds } }] } }) { 3 | pageInfo { 4 | hasNext 5 | endCursor 6 | } 7 | total 8 | results { 9 | ...changelogEntry 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /data/gql/query/searchByProductsAndChangeTypes.graphql: -------------------------------------------------------------------------------- 1 | query searchByProductsAndChangeTypes($date: DateTime!, $productIds: [ID], $changeTypeIds: [ID], $first: Int = 5, $after: String = "") { 2 | changelog: allChangelog(orderBy: RELEASEDATE_DESC, first: $first, after: $after, where: { releaseDate_lt: $date, OR: [{ sitecoreProduct: { changelog_ids: $productIds } }], AND: { OR: [{ changeType: { changelog_ids: $changeTypeIds } }] } }) { 3 | pageInfo { 4 | hasNext 5 | endCursor 6 | } 7 | total 8 | results { 9 | ...changelogEntry 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /data/gql/query/searchByTitle.graphql: -------------------------------------------------------------------------------- 1 | query searchByTitle($date: DateTime, $productId: [ID]) { 2 | data: allChangelog(first: 1, where: { releaseDate_lt: $date, sitecoreProduct: { changelog_ids: $productId } }) { 3 | pageInfo { 4 | hasNext 5 | endCursor 6 | } 7 | total 8 | results { 9 | ...changelogEntry 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /data/markdown/pages/_newsletter.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Developer Newsletter' 3 | hasInPageNav: false 4 | --- 5 | -------------------------------------------------------------------------------- /data/markdown/pages/_roadmap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Roadmap' 3 | description: 'A glance into Sitecore''s long term roadmap' 4 | --- 5 | -------------------------------------------------------------------------------- /data/markdown/pages/_search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Search' 3 | description: 'Search development content across the Sitecore channels' 4 | --- 5 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Active_Directory/1_3/Active_Directory_1_3/Release_Notes 5 | --- 6 | 7 | The latest release information for the Active Directory module. 8 | 9 | ## Release History 10 | 11 | **October 17 , 2016** 12 | 13 | Sitecore Active Directory v1.3 rev. is released. 14 | 15 | Tested with Sitecore 8.2 rev. 160729. 16 | 17 | ### Compatibility 18 | 19 | This version of the module only runs on Sitecore 8.2 or later. 20 | 21 | ### Change log. 22 | 23 | Support of Sitecore 8.2 was added. 24 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Upgrade_Guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Upgrade Guide' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Active_Directory/1_3/Active_Directory_1_3/Upgrade_Guide 5 | --- 6 | 7 | To upgrade the module from **version 1.2 rev. 141225** to **version 1.3 rev. 161017**: 8 | 9 | - Download the Active Directory 1.3 rev. 161017 upgrade package. 10 | - Install **Sitecore Active Directory component 1.3 rev. 161017 Upgrade.zip**. 11 | - Click **"Yes to all"** when you are asked whether you want to override existing files. 12 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Campaign_Creator_module/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Campaign Creator module' 3 | description: 'Application for marketers to create and manage new campaign activities.' 4 | origin: https://dev.sitecore.net/Downloads/Campaign_Creator_module.aspx 5 | --- 6 | 7 | 8 | 9 | ## Campaign Creator module 1.0 10 | 11 | 12 | [Sitecore Campaign Creator Module 1.0](/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module) 13 | 14 | 15 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | --- 5 | 6 | **May 2024, released Sitecore Connect for Microsoft Dynamics 365 for Sales 9.0.0** 7 | 8 | ## New features/improvements 9 | 10 | | Description | ADO no. | 11 | | -------------------------------------------- | ------- | 12 | | Added compatibility with Sitecore XP 10.4.0. | | 13 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Installation Guide' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide 5 | --- 6 | 7 | Installation instructions are included in the readme that is displayed when the package is installed on your Sitecore server. 8 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Installation_Guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Installation Guide' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Installation_Guide 5 | --- 6 | 7 | Installation instructions are included in the readme that is displayed when the package is installed on your Sitecore server. 8 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/Release_Notes 5 | --- 6 | 7 | **June 2021 - Released Sitecore Email Exchange Manager DDS 1.0.3** 8 | 9 | This is initial release of EXM DDS. 10 | 11 | Sitecore EXM DDS includes: 12 | 13 | - Pre-configured asset image for Kubernetes and Docker support. 14 | - Dockerfile instructions to update CM and DDS roles. 15 | 16 | **Note** 17 | Only 1 DDS is supported in containers at this time. 18 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/Release_Notes 5 | --- 6 | 7 | **January 2020, released SalesForce CRM Connect 4.0.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | Customer ticket ID (or other) | TFS no. | 12 | | ------------------------------ | ----------------------------- | ------- | 13 | | Support for Sitecore XP 9.3.0. | | | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/Release_Notes 5 | --- 6 | 7 | **August 2020, released SalesForce CRM Connect 5.0.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | Customer ticket ID (or other) | TFS no. | 12 | | ------------------------------- | ----------------------------- | ------- | 13 | | Support for Sitecore XP 10.0.0. | | | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/Release_Notes 5 | --- 6 | 7 | **January 2023, released Sitecore Connect for Salesforce CRM 8.0.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | Customer ticket ID (or other) | AD no. | 12 | | ------------------------------- | ----------------------------- | ------ | 13 | | Support for Sitecore XP 10.3.0. | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | --- 5 | 6 | **May 2024, released Sitecore Connect for Salesforce CRM 9.0.0** 7 | 8 | ## New features/improvements 9 | 10 | | Description | Customer ticket ID (or other) | AD no. | 11 | | -------------------------------------------- | ----------------------------- | ------ | 12 | | Added compatibility with Sitecore XP 10.4.0. | 13 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '3.x' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_AI_Automated_Personalization_Standard/3x/ 5 | --- 6 | 7 | ### [Sitecore AI Automated Personalization Standard 3.0.0](/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300) 8 | 9 | This release is compatible with Sitecore XP 10.1. 10 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/Release_Notes 5 | --- 6 | 7 | **December 2022 – released Sitecore Azure Toolkit 2.8.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | ADO no. | 12 | | ---------------------------------------------------------------------------- | ------- | 13 | | ​​Azure Toolkit 2.8.0 is compatible with Sitecore Experience Platform 10.3.0 | 549541 | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_411/Release_Notes 5 | --- 6 | 7 | **January 2021 – released Sitecore CLI 4.1.1** 8 | 9 | ## Resolved issues 10 | 11 | The following issues have been fixed: 12 | 13 | | Description | ADO no. | 14 | | ------------------------------------------------------------------------- | ------- | 15 | | ​If you change the template of an item, a CLI Serialization error occurs. | 513298 | 16 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_420/Release_Notes 5 | --- 6 | 7 | **April 2022 – released Sitecore CLI 4.2.0** 8 | 9 | ## Resolved issues 10 | 11 | The following issues have been fixed: 12 | 13 | | Description | ADO no. | 14 | | ------------------------------------------------------------------------- | ------- | 15 | | ​If you change the template of an item, a CLI Serialization error occurs. | 513298 | 16 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_CLI/6x/Sitecore_CLI_600/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Release Notes" 3 | description: "" 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/Release_Notes 5 | --- 6 | 7 | **September 2024 – released Sitecore CLI 6.0.18** 8 | 9 | ## Highlights 10 | 11 | Sitecore CLI 6.0.18 includes: 12 | 13 | - Support for Dotnet 8 14 | - Sitecore Management Servicess 5.2.123 with support of Sitecore CLI 6.0.18 -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Codeless_Schema_Extensions/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Sitecore Codeless Schema Extensions' 3 | description: 'Code and segmentation rules enabling business users to extend the xConnect schema without requiring code development.' 4 | --- 5 | 6 | 7 | 8 | ## Sitecore Codeless Schema Extensions 9 | 10 | 11 | [Sitecore Codeless Schema Extensions 1.0.0](/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0) 12 | 13 | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__BDE.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes - BDE' 3 | description: '' 4 | --- 5 | 6 | **May 2024, released Sitecore Connect for Salesforce Marketing Cloud - Behavioral Data Exchange 9.0.0** 7 | 8 | ## New features/improvements 9 | 10 | | Description | ADO no. | 11 | | --------------------------------------------- | ------- | 12 | | Added compatiblility with Sitecore XP 10.4.0. | | 13 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__CE.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes - CE' 3 | description: '' 4 | --- 5 | 6 | **May 2024, released Sitecore Connect for Salesforce Marketing Cloud - Content Exchange 9.0.0** 7 | 8 | ## New features/improvements 9 | 10 | | Description | ADO no. | 11 | | ------------------------------------------- | ------- | 12 | | Added compatibilty with Sitecore XP 10.4.0. | | 13 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Headless_Rendering/19x/Sitecore_Headless_Rendering_1901/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Headless_Rendering/19x/Sitecore_Headless_Rendering_1901/Release_Notes 5 | --- 6 | 7 | **November 2022 – released Sitecore Headless Rendering 19.0.1** 8 | 9 | - [Highlights](#highlights) 10 | 11 | ## Highlights 12 | 13 | Sitecore Headless Rendering 19.0.1 includes: 14 | 15 | - Send delete message to edge for when item's path changes. 16 | - There were no updates to Sitecore Headless Services. 17 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Headless_Rendering/20x/Sitecore_Headless_Rendering_2002/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Headless_Rendering/20x/Sitecore_Headless_Rendering_2002/Release_Notes 5 | --- 6 | 7 | **November 2022 – released Sitecore Headless Rendering 20.0.2** 8 | 9 | - [Highlights](#highlights) 10 | 11 | ## Highlights 12 | 13 | Sitecore Headless Rendering 20.0.2 includes: 14 | 15 | - Sitecore Headless Services provides support for Sitecore CLI 5.1.25 and higher. 16 | - There were no updates to Sitecore Experience Edge Connector. 17 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Installation_Framework/1x/Sitecore_Installation_Framework_10/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'SIF 1.0 - Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Installation_Framework/1x/Sitecore_Installation_Framework_10/Release_Notes 5 | --- 6 | 7 | **October 2017** 8 | 9 | This is initial release of Sitecore Installation Framework. 10 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Print_Experience_Manager/8_0/Sitecore_Print_Experience_Manager_for_8_0/Release_Notes_ODG.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Print_Experience_Manager/8_0/Sitecore_Print_Experience_Manager_for_8_0/Release_Notes_ODG 5 | --- 6 | 7 | February 12, 2015 released ODG 8.0 rev. 150128 8 | 9 | # Compatibility 10 | 11 | This version is compatible with Sitecore XP 8.0 rev. 141212 and Print Experience Manager 8.0 rev. 150202. 12 | 13 | # Highlights 14 | 15 | New Online Document Generator version with Sitecore XP 8.0 rev. 141212 SPEAK interface. 16 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Print_Experience_Manager/90/Sitecore_Print_Experience_Manager_90/Upgrade_Information.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Upgrade Information' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Print_Experience_Manager/90/Sitecore_Print_Experience_Manager_90/Upgrade_Information 5 | --- 6 | 7 | **Upgrade information PXM 9.0** 8 | 9 | Sitecore should be upgraded to 8.2 (Update-3) before it can be used with PXM 9.0 version of the plugins. 10 | 11 | Refer to PXM 8.2 (Update-3) upgrade information. 12 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Publishing_Service/31/Sitecore_Publishing_Service_31_Update2/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Release Notes" 3 | description: "" 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Publishing_Service/31/Sitecore_Publishing_Service_31_Update2/Release_Notes 5 | --- 6 | 7 | **February 2019, released Sitecore Publishing Service 3.1 Update 2** 8 | 9 | ## Resolved issues 10 | 11 | The following issues have been fixed: 12 | 13 | | Description | Customer ticket ID (or other) | TFS no. | 14 | | --- | --- | --- | 15 | | ​Publishing a related template does not publish the section and field items. | 519424 | 276923 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1040/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | --- 4 | 5 | **April 2024 - released Publishing Service Module 10.4.0** 6 | 7 | ## Resolved issues 8 | 9 | The following issues have been fixed: 10 | 11 | | Description | ADO no. | 12 | | ----------------------------------------------------------------------------------------- | ------- | 13 | | The _Recent Jobs_ tab fails to display entries when multiple publishing jobs are running. | 570337 | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Publishing_Service_Module/9x/Sitecore_Publishing_Service_Module_920/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Release Notes" 3 | description: "" 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Publishing_Service_Module/9x/Sitecore_Publishing_Service_Module_920/Release_Notes 5 | --- 6 | 7 | **Sept 2019 – released Sitecore Publishing Service Module 9.2.0** 8 | 9 | ## Highlights 10 | 11 | There are no release notes for this version of the Sitecore Publishing Service Module. -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_Publishing_Service_Module/9x/Sitecore_Publishing_Service_Module_930/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Release Notes" 3 | description: "" 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_Publishing_Service_Module/9x/Sitecore_Publishing_Service_Module_930/Release_Notes 5 | --- 6 | 7 | **November 2019, released Sitecore Publishing Service Module 9.3.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | Customer ticket ID (or other) | TFS no. | 12 | | --- | --- | --- | 13 | | Sitecore Publishing Service Module 9.3.0 is compatible with Sitecore XP 9.3.0. | | 343074 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_for_Visual_Studio/5x/Sitecore_for_Visual_Studio_52113/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_for_Visual_Studio/5x/Sitecore_for_Visual_Studio_52113/Release_Notes 5 | --- 6 | 7 | **June 2023 – released Sitecore for Visual Studio 5.2.113** 8 | 9 | ## Highlights 10 | 11 | Sitecore for Visual Studio 5.2.113 includes: 12 | 13 | - Sitecore CLI 5.2 support. 14 | - Users serialization. 15 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_xDB_Data_Migration_Tool/3x/xDB_Data_Migration_Tool_300/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_xDB_Data_Migration_Tool/3x/xDB_Data_Migration_Tool_300/Release_Notes 5 | --- 6 | 7 | **September 2019 – released xDB Data Migration Tool 3.0.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | Customer ticket ID (or other) | TFS no. | 12 | | ---------------------------- | ----------------------------- | ------- | 13 | | ​​Support for Sitecore 9.2.0 | | | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_xDB_Data_Migration_Tool/4x/xDB_Data_Migration_Tool_400/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_xDB_Data_Migration_Tool/4x/xDB_Data_Migration_Tool_400/Release_Notes 5 | --- 6 | 7 | **April 2020 – released xDB Data Migration Tool 4.0.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | Customer ticket ID (or other) | TFS no. | 12 | | ---------------------------- | ----------------------------- | ------- | 13 | | ​​Support for Sitecore 9.3.0 | | | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/downloads/Sitecore_xDB_Data_Migration_Tool/5x/xDB_Data_Migration_Tool_500/Release_Notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Release Notes' 3 | description: '' 4 | origin: https://dev.sitecore.net/Downloads/Sitecore_xDB_Data_Migration_Tool/5x/xDB_Data_Migration_Tool_500/Release_Notes 5 | --- 6 | 7 | **August 2020 – released xDB Data Migration Tool 5.0.0** 8 | 9 | ## New features/improvements 10 | 11 | | Description | Customer ticket ID (or other) | TFS no. | 12 | | ----------------------------- | ----------------------------- | ------- | 13 | | ​​Support for Sitecore 10.0.0 | | | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/home.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'The platform for forward-thinking technologists' 3 | description: 'From CMS to DXP, our solutions empower you to create exceptional digital experiences.' 4 | stackexchange: ['/questions?tab=Newest'] 5 | youtube: 'UUJrNXcAEmZrqbf2suxbfIkg' 6 | youtubeTitle: 'Latest "Discover Sitecore" videos' 7 | sitecoreCommunityNews: 3 8 | sitecoreCommunityEvents: 0 9 | sitecoreCommunityBlog: 5 10 | changelog: 5 11 | heroImage: '/images/violet3d.png' 12 | cdpTags: [] 13 | --- 14 | -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/content-hub/implementation/custom-logic/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Custom Logic' 3 | description: 'This Cookbook provides a set of recipes to help implementing Content Hub through setup, configuration and implemenation.' 4 | area: ['accelerate'] 5 | hasSubPageNav: true 6 | hasInPageNav: false 7 | --- 8 | 9 | Custom logic allows organizations to meet specific business needs by incorporating workflows, validations, actions, or integrations that aren't inherently provided by default configurations. This enhances flexibility and ensures the platform aligns perfectly with unique operational requirements. -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/content-hub/implementation/functional-security/debugging-user-security.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Debugging User Security' 3 | description: 'Guidance on debugging issues around User Security' 4 | area: ['accelerate'] 5 | hasSubPageNav: true 6 | hasInPageNav: true 7 | lastUpdated: '2024-12-13' 8 | created: '2024-12-13' 9 | audience: ['All'] 10 | --- 11 | 12 | 🚀 This Sitecore Accelerate Recipe is coming soon... -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/content-hub/implementation/state-flow-and-approval.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'State Flow and Approval' 3 | description: 'Guidance on setting up state flows to guide your Content Hub users.' 4 | area: ['accelerate'] 5 | hasSubPageNav: true 6 | hasInPageNav: true 7 | lastUpdated: '2024-12-13' 8 | created: '2024-12-13' 9 | audience: "All" 10 | --- 11 | 12 | 🚀 This Sitecore Accelerate Recipe is coming soon... -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/content-hub/optimization/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Optimization' 3 | description: 'Learn more about how to develop for Content Hub' 4 | hasSubPageNav: true 5 | hasInPageNav: false 6 | area: ['accelerate'] 7 | --- 8 | 9 | ### Optimization 10 | 11 | This section focuses on further adoption and optimization that can be done on Content Hub following the intial implementation. -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/xm-cloud/implementation/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Implementation' 3 | description: 'Learn more about how to develop for XM Cloud' 4 | hasSubPageNav: true 5 | hasInPageNav: false 6 | area: ['accelerate'] 7 | --- 8 | 9 | Get the tools, guidance, and best practices you need to deliver successful XM Cloud projects. 10 | Working through the different topics that would come up during implementation, this section helps you build faster, smarter, and with greater confidence. -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/xm-cloud/optimization/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Optimization' 3 | description: 'Learn more about how to develop for XM Cloud' 4 | hasSubPageNav: true 5 | hasInPageNav: false 6 | area: ['accelerate'] 7 | --- 8 | 9 | ### Optimization 10 | 11 | This section focuses on further adoption and optimization that can be done on XM Cloud following the intial implementation. -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/xm-cloud/pre-development/hosting-applications/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Hosting Head Application' 3 | description: 'This Cookbook provides a set of recipes to help implementing XM Cloud through setup, configuration and implemenation.' 4 | area: ['accelerate'] 5 | hasSubPageNav: true 6 | hasInPageNav: false 7 | --- 8 | 9 | When building scalable and performant digital experiences with XM Cloud, hosting the head application is a critical step in your architecture. This guide walks you through the hosting process for your head application. -------------------------------------------------------------------------------- /data/markdown/pages/learn/accelerate/xm-cloud/pre-development/project-architecture/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Project Architecture' 3 | description: 'This Cookbook provides a set of recipes to help implementing XM Cloud through setup, configuration and implemenation.' 4 | area: ['accelerate'] 5 | hasSubPageNav: true 6 | hasInPageNav: false 7 | --- 8 | 9 | Designing a robust project architecture is the foundation of a successful XM Cloud implementation. This section explores key architectural considerations, including layout and routing, multisite configurations, and strategies for managing rate limits and caching. 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /data/markdown/pages/learn/faq/cloud-portal/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Cloud Portal Technical FAQ", 3 | "description": "", 4 | "heading": true, 5 | "path": "/learn/faq/cloud-portal", 6 | "routes": [ 7 | { 8 | "title": "Features", 9 | "path": "features" 10 | }, 11 | { 12 | "title": "Development", 13 | "path": "development" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/markdown/pages/learn/faq/xm-cloud-recommended-practices/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | product: ['xm-cloud'] 3 | title: 'XM Cloud Recommended Practices' 4 | description: 'Tips for teams working on XM Cloud projects from developers in the field' 5 | hasInPageNav: true 6 | cdpTags: ['xm-cloud'] 7 | --- 8 | 9 | 10 | 11 | The current recommendations for XM Cloud have been moved to Sitecore Accelerate for XM Cloud. Any content remaining in this section is pending being moved over to Accelerate but will be removed once it has been ported to the new location. 12 | 13 | -------------------------------------------------------------------------------- /data/markdown/pages/learn/faq/xm-cloud/personalization-analytics.md: -------------------------------------------------------------------------------- 1 | --- 2 | product: ['xm-cloud'] 3 | title: 'Embedded Personalization and analytics' 4 | hasInPageNav: true 5 | cdpTags: ['xm-cloud'] 6 | --- 7 | 8 | 9 | 10 | **The content that was previously here has been archived.** 11 | 12 | Please reference our robust document on embedded personalization: [XM Cloud: Embedded Personalization FAQ](/learn/faq/xm-cloud-embedded-personalization); 13 | 14 | -------------------------------------------------------------------------------- /data/markdown/pages/learn/getting-started/xm-cloud/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'XM Cloud' 3 | description: '' 4 | hasSubPageNav: true 5 | hasInPageNav: false 6 | pageType: childoverview 7 | --- 8 | -------------------------------------------------------------------------------- /data/markdown/pages/learn/getting-started/xm-cloud/tutorials/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Sitecore XM Cloud' 3 | description: 'Get started with Sitecore XM Cloud with the tutorials series' 4 | hasSubPageNav: true 5 | hasInPageNav: false 6 | pageType: childoverview 7 | productLogo: 'XMCloud' 8 | --- 9 | -------------------------------------------------------------------------------- /data/markdown/pages/newsletter/2022/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Newsletters 2022 3 | description: 'Here you can find all newsletters we sent out in 2022' 4 | hasInPageNav: false 5 | hasSubPageNav: false 6 | pageType: 'newsletter' 7 | --- 8 | -------------------------------------------------------------------------------- /data/markdown/pages/newsletter/2023/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Newsletters 2023 3 | description: 'Here you can find all newsletters we sent out in 2023' 4 | hasInPageNav: false 5 | hasSubPageNav: false 6 | pageType: 'newsletter' 7 | --- 8 | -------------------------------------------------------------------------------- /data/markdown/pages/newsletter/2024/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Newsletters 2024 3 | description: 'All the newsletters we sent out sor far in 2024' 4 | hasInPageNav: false 5 | hasSubPageNav: false 6 | pageType: 'newsletter' 7 | --- 8 | -------------------------------------------------------------------------------- /data/markdown/pages/products/devops-and-tools/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | solution: ['devops'] 3 | product: ['xm', 'xp', 'xc', 'xm-cloud', 'developer-collection', 'managed-cloud', 'sif'] 4 | pageType: 'childoverview' 5 | title: 'DevOps' 6 | description: 'Tools and practices that help improve the development process ' 7 | stackexchange: ['#docker', '#arm-template', '#sitecore-install-framework'] 8 | cdpTags: ['xm', 'xp', 'xc', 'xm-cloud', 'developer-collection', 'managed-cloud', 'sif'] 9 | --- 10 | -------------------------------------------------------------------------------- /data/markdown/pages/products/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Sitecore Products' 3 | pageType: 'childoverview' 4 | description: 'Overview of the Sitecore product suite' 5 | hasSubPageNav: true 6 | --- 7 | -------------------------------------------------------------------------------- /data/markdown/pages/trials/jss-connected-demo/exploring-code/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'JSS Connected Demo' 3 | description: 'Unlock the full potential of Sitecore with JSS in a live demo environment.' 4 | hasSubPageNav: true 5 | hasInPageNav: false 6 | pageType: childoverview 7 | --- 8 | -------------------------------------------------------------------------------- /data/promos/contact-us.ts: -------------------------------------------------------------------------------- 1 | import { CTACardProps } from '@/src/components/cards/CTACard'; 2 | 3 | const data: CTACardProps = { 4 | title: 'Contact Us', 5 | description: 'Want to learn more about our products and solutions? Got a question for our Support team? Just want to say hi? Get in touch in the way that works for you.', 6 | href: 'https://www.sitecore.com/company/contact-us', 7 | linkText: 'Get in touch', 8 | }; 9 | 10 | export default data; 11 | -------------------------------------------------------------------------------- /data/promos/get-help.ts: -------------------------------------------------------------------------------- 1 | import { CTACardProps } from '@/src/components/cards/CTACard'; 2 | 3 | const data: CTACardProps = { 4 | title: 'Get Help', 5 | description: 'Need answers to your questions?', 6 | href: '/help', 7 | linkText: 'Get help now!', 8 | }; 9 | 10 | export default data; 11 | -------------------------------------------------------------------------------- /data/promos/learning-at-sitecore.ts: -------------------------------------------------------------------------------- 1 | import { PromoCardProps } from '@/src/components/cards/PromoCard'; 2 | 3 | const data: PromoCardProps = { 4 | title: 'Learning @ Sitecore', 5 | description: 'Ready to make the most of your Sitecore solution? Skill up with Sitecore’s leading-edge and customized learning paths.', 6 | img: { 7 | src: 'https://mss-p-006-delivery.sitecorecontenthub.cloud/api/public/content/917fcaecd6364405a0ee576215e95a98?v=562bad4f', 8 | }, 9 | link: { 10 | href: 'https://learning.sitecore.com/', 11 | text: 'Start learning now', 12 | }, 13 | }; 14 | 15 | export default data; 16 | -------------------------------------------------------------------------------- /data/promos/newpromo.ts: -------------------------------------------------------------------------------- 1 | import { PromoCardProps } from '@/src/components/cards/PromoCard'; 2 | 3 | const data: PromoCardProps = { 4 | title: 'Newsletter archive', 5 | description: 'Read earlier editions of the Sitecore for Developers newsletter. ', 6 | img: { 7 | src: 'https://delivery-sitecore.sitecorecontenthub.cloud/api/public/content/newsletter?v=b6070bd5', 8 | }, 9 | link: { 10 | href: '/newsletter', 11 | text: 'Check it out!', 12 | }, 13 | }; 14 | 15 | export default data; 16 | -------------------------------------------------------------------------------- /data/promos/nextjsconf.ts: -------------------------------------------------------------------------------- 1 | import { PromoCardProps } from '@/src/components/cards/PromoCard'; 2 | 3 | const data: PromoCardProps = { 4 | title: 'Vercel Next.js conference', 5 | description: 'Replay the Next.js Conf and watch Pieter Brinkman, VP Technical Marketing, showing you how to use Next.js Commerce and Sitecore OrderCloud to build a B2C storefront in 5 minutes.', 6 | img: { 7 | src: 'https://delivery-sitecore.sitecorecontenthub.cloud/api/public/content/nextjs_conf?v=1aafcba3', 8 | }, 9 | link: { 10 | href: 'https://youtu.be/ati9lB4n_2o', 11 | text: 'Watch now!', 12 | }, 13 | }; 14 | 15 | export default data; 16 | -------------------------------------------------------------------------------- /data/promos/opensource.ts: -------------------------------------------------------------------------------- 1 | import { PromoCardProps } from '@/src/components/cards/PromoCard'; 2 | 3 | const data: PromoCardProps = { 4 | title: 'Open Source @ Sitecore', 5 | description: 'Did you know that Sitecore offers a lot of open source initiatives? ', 6 | img: { 7 | src: 'https://mss-p-006-delivery.sitecorecontenthub.cloud/api/public/content/a3c5df7b1d06426ca0b7cac57e4804e7?v=dbd864c9', 8 | }, 9 | link: { 10 | href: 'https://github.com/Sitecore', 11 | text: 'Check out Sitecore @ GitHub', 12 | }, 13 | }; 14 | 15 | export default data; 16 | -------------------------------------------------------------------------------- /data/promos/sitecore-support.ts: -------------------------------------------------------------------------------- 1 | import { PromoCardProps } from '@/src/components/cards/PromoCard'; 2 | 3 | const data: PromoCardProps = { 4 | title: 'Connect with Sitecore Support', 5 | description: 'Access the Sitecore Support and Self-Service Portal to search the knowledge base, report an issue, and check on service status.', 6 | img: { 7 | src: 'https://mss-p-006-delivery.sitecorecontenthub.cloud/api/public/content/e3e23f39681742a2ad41c9a2917c4c6e?v=1ff6d55b', 8 | }, 9 | link: { 10 | href: 'https://support.sitecore.com', 11 | text: 'Access the support portal', 12 | }, 13 | }; 14 | 15 | export default data; 16 | -------------------------------------------------------------------------------- /data/promos/xmc-practices.ts: -------------------------------------------------------------------------------- 1 | import { PromoCardProps } from '@/src/components/cards/PromoCard'; 2 | 3 | const data: PromoCardProps = { 4 | title: 'Sitecore Accelerate', 5 | description: 'Sitecore Accelerate is a dedicated program to help Sitecore customers upgrade their existing PaaS CMS or commerce solution to our next-gen SaaS products.', 6 | img: { 7 | src: '/public/images/accelerate.png', 8 | }, 9 | link: { 10 | href: '/learn/accelerate/xm-cloud', 11 | text: 'Read more', 12 | }, 13 | }; 14 | 15 | export default data; 16 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/pages/api-reference/config/typescript for more information. 6 | -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- 1 | const isProduction = process.env.VERCEL_ENV === 'production'; 2 | 3 | module.exports = { 4 | siteUrl: 'https://developers.sitecore.com', 5 | frequency: 'daily', 6 | generateIndexSitemap: false, 7 | generateRobotsTxt: true, // Generate robots.txt in production only 8 | exclude: isProduction == false ? ['/'] : [], 9 | robotsTxtOptions: { 10 | policies: [ 11 | { 12 | userAgent: '*', 13 | disallow: isProduction == false ? ['/'] : [], 14 | }, 15 | ], 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #ff0000 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/favicon.ico -------------------------------------------------------------------------------- /public/images/3d-neutral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/3d-neutral.jpg -------------------------------------------------------------------------------- /public/images/LoggerPXM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/LoggerPXM.png -------------------------------------------------------------------------------- /public/images/accelerate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/accelerate.png -------------------------------------------------------------------------------- /public/images/changelog-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/changelog-home.png -------------------------------------------------------------------------------- /public/images/downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/downloads.png -------------------------------------------------------------------------------- /public/images/file-excel-chdam-planning.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/file-excel-chdam-planning.webp -------------------------------------------------------------------------------- /public/images/file-excel-ordercloud.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/file-excel-ordercloud.webp -------------------------------------------------------------------------------- /public/images/file-excel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/file-excel.webp -------------------------------------------------------------------------------- /public/images/file-word-chdam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/file-word-chdam.webp -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-01.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-02.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-03.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/configure-available-datasources-04.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-01.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-02.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-03.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-04.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-05.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-06.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-07.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-08.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-09.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-10.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-11.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-12.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-13.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-14.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-15.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-16.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-17.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-18.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-component-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-component-19.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-01.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-02.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-03.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-04.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-05.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-06.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-07.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-08.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-09.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-10.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-11.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-12.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-13.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-14.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-15.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-16.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-17.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-18.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-a-site-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-a-site-19.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-01.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-02.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-03.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-04.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-05.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-06.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-07.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-08.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-09.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-10.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-11.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-12.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-13.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-14.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-15.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-16.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-17.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-18.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/create-component-data-template-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/create-component-data-template-19.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-01.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-02.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-03.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-04.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-05.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-06.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-07.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-08.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-09.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-10.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-11.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-12.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-13.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-14.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-15.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-16.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/map-component-datasources-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/map-component-datasources-17.jpg -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-01.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-02.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-03.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-04.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-05.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-06.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-07.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-08.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-09.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-10.png -------------------------------------------------------------------------------- /public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/getting-started/tutorials/xm-cloud/setup-xm-cloud-11.png -------------------------------------------------------------------------------- /public/images/heros/hero-plus-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/heros/hero-plus-pattern.png -------------------------------------------------------------------------------- /public/images/heros/hero-wide-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/heros/hero-wide-dark.png -------------------------------------------------------------------------------- /public/images/heros/hero-wide-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/heros/hero-wide-dark.webp -------------------------------------------------------------------------------- /public/images/heros/hero-wide-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/heros/hero-wide-light.png -------------------------------------------------------------------------------- /public/images/heros/hero-wide-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/heros/hero-wide-light.webp -------------------------------------------------------------------------------- /public/images/hex-item-round-corners.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250124-071335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250124-071335.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250221-074609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250221-074609.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250404-115813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250404-115813.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250428-055529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/abandon-cart/image-20250428-055529.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250123-172749.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250123-172749.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250123-173248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250123-173248.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250123-173429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250123-173429.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250204-102032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250204-102032.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250213-111644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250213-111644.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250213-112151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250213-112151.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250320-175246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/before-you-fly/image-20250320-175246.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/home-page/Screenshot 2025-02-13 at 16.38.00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/home-page/Screenshot 2025-02-13 at 16.38.00.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/home-page/Screenshot 2025-02-21 at 16.07.09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/home-page/Screenshot 2025-02-21 at 16.07.09.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/home-page/Screenshot 2025-03-24 at 13.37.54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/home-page/Screenshot 2025-03-24 at 13.37.54.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/home-page/decision-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/home-page/decision-table.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250124-123424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250124-123424.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250219-212837.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250219-212837.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250224-171408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250224-171408.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250401-151546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250401-151546.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250403-145607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250403-145607.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250403-154853.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250403-154853.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250414-151110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250414-151110.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/image-20250513-112712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/image-20250513-112712.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/bid cloudsdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/bid cloudsdk.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/bid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/bid.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/calculate audience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/calculate audience.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/data browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/data browser.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/debug table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/debug table.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/event viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/event viewer.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/events id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/events id.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/guests 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/guests 2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/guests 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/guests 3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/image-20250502-051340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/image-20250502-051340.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/manage features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/manage features.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/segment builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/segment builder.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/cdp-personalize/testing/segments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/cdp-personalize/testing/segments.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/1-AgencyFrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/1-AgencyFrance.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/2-AgencyFrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/2-AgencyFrance.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/3-AgencyFrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/3-AgencyFrance.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/API-call-on-Asset-entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/API-call-on-Asset-entity.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/CIHub-AddConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/CIHub-AddConnection.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/CIHub-AddSitecore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/CIHub-AddSitecore.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/CIHub-Browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/CIHub-Browse.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/CIHub-Collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/CIHub-Collection.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/CIHub-Editting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/CIHub-Editting.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/CIHub-GrantConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/CIHub-GrantConnection.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/CIHub-GrantConnection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/CIHub-GrantConnection2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Custom-Form-Control-external-component..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Custom-Form-Control-external-component..png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Entity-Details-page-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Entity-Details-page-components.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/New-Action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/New-Action.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Path-enable-definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Path-enable-definition.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Path-information-in-search-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Path-information-in-search-component.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Product-Family-on-Asset-Details-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Product-Family-on-Asset-Details-page.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Product-Hierarchy-on-the-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Product-Hierarchy-on-the-assets.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Product-Hierarchy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Product-Hierarchy.PNG -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/Social-Media-Processing-Matrix-Action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/Social-Media-Processing-Matrix-Action.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/SuperFacets.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/SuperFacets.webp -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/UserGroups-OrganizationalStructure-Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/UserGroups-OrganizationalStructure-Example.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/add-new-sign-in-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/add-new-sign-in-script.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/advanced-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/advanced-search.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/asset-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/asset-type.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/condition-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/condition-trigger.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/configuration-of-Entity-Details-Language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/configuration-of-Entity-Details-Language.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/configure-facets-filtering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/configure-facets-filtering.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/custom-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/custom-homepage.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/data-migration-sample-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/data-migration-sample-file.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/drm-request-download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/drm-request-download.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/drm-request-in-mrm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/drm-request-in-mrm.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/drm-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/drm-schema.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/filter-on-asset-type-relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/filter-on-asset-type-relation.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/flavorful-external-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/flavorful-external-component.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/homepage-theming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/homepage-theming.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/hypercare/image-20250207-210925.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/hypercare/image-20250207-210925.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/hypercare/image-20250207-211033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/hypercare/image-20250207-211033.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/hypercare/image-20250207-211121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/hypercare/image-20250207-211121.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/hypercare/image-20250207-211138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/hypercare/image-20250207-211138.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/hypercare/image-20250207-211205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/hypercare/image-20250207-211205.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/hypercare/image-20250207-211221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/hypercare/image-20250207-211221.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/image-20250321-193856.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/image-20250321-193856.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/mail-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/mail-workflow.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/media-matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/media-matrix.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/metadata-to-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/metadata-to-export.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/045.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/Screenshot 2025-03-12 at 11.05.06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/Screenshot 2025-03-12 at 11.05.06.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_15_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_15_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_16_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_16_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_20_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_20_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_21_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_21_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_22_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_22_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_24_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_24_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_25_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_25_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_37_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_37_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_39_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_39_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_40_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_40_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_41_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_41_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_42_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_42_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_44_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_44_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_45_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_45_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_60_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_60_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_61_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_61_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_62_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_62_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_63_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_63_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_66_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_66_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_67_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_67_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_68_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_68_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_69_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_69_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/most-searched-assets/att_70_for_3800498189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/most-searched-assets/att_70_for_3800498189.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/mrm-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/mrm-workflow.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/path-relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/path-relation.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/post-action-media-matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/post-action-media-matrix.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/pre-commit/image-20241213-124946.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/pre-commit/image-20241213-124946.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/pre-commit/image-20241213-125634.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/pre-commit/image-20241213-125634.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/pre-commit/image-20241213-125658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/pre-commit/image-20241213-125658.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/pre-commit/image-20241213-125725.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/pre-commit/image-20241213-125725.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/pre-commit/video_1280.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/pre-commit/video_1280.mp4 -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/product-path-on-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/product-path-on-asset.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/push-configuration-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/push-configuration-action.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/renditions-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/renditions-attributes.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/renditions-json-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/renditions-json-object.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/schema-configuration-product-hierarchy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/schema-configuration-product-hierarchy.PNG -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/script-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/script-logs.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/search-calendar-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/search-calendar-view.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/search-grid-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/search-grid-view.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/search-list-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/search-list-view.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/search-pivot-view.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/search-pivot-view.webp -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/search-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/search-sorting.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/search-wildcard-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/search-wildcard-mode.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/social-new-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/social-new-set.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/trigger-execution-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/trigger-execution-log.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/content-hub/trigger-save-media-matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/content-hub/trigger-save-media-matrix.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty10.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty11.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty12.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty13.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty14.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty15.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty16.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty2_updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty2_updated.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty4.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty5.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty6.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty7.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty8.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/3rdParty9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/3rdParty9.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/API-error-handling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/API-error-handling.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/ComponentDatasourceWorkflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/ComponentDatasourceWorkflow.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/Docker-Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/Docker-Status.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/Docker-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/Docker-logs.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/Docker-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/Docker-network.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/StandardValuesPageWorkflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/StandardValuesPageWorkflow.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/add-components-to-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/add-components-to-header.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/asp-net-core-change-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/asp-net-core-change-values.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/asp-net-core-update-ps1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/asp-net-core-update-ps1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/asp.netcore-starter-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/asp.netcore-starter-kit.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/codespaces-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/codespaces-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/codespaces-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/codespaces-2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/codespaces-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/codespaces-3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/codespaces-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/codespaces-4.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/codespaces-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/codespaces-5.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/codespaces-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/codespaces-6.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/component-error-handling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/component-error-handling.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/create-a-site-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/create-a-site-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/create-a-site-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/create-a-site-2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates10.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates11.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates12.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates13.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates14.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates4.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates5.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates6.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates7.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates8.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-branch-templates9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-branch-templates9.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-new-components1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-new-components1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-new-components2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-new-components2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-new-components3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-new-components3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-new-components4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-new-components4.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/creating-new-components5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/creating-new-components5.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/custom-error-pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/custom-error-pages.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/customizing-404-error-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/customizing-404-error-01.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/customizing-404-error-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/customizing-404-error-02.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/docker-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/docker-desktop.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/error-boundary-implementation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/error-boundary-implementation-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/error-boundary-implementation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/error-boundary-implementation-2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/example-multisite-content-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/example-multisite-content-tree.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/full-publish-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/full-publish-event.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/image-20250131-122723.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/image-20250131-122723.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/image-20250321-091939.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/image-20250321-091939.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/image-20250321-092144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/image-20250321-092144.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/implementation-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/implementation-architecture.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/incremental-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/incremental-updates.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/language-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/language-settings.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/layout-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/layout-folder.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/layoutroutes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/layoutroutes-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/layoutroutes-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/layoutroutes-2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/middleware-plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/middleware-plugins.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/moving-to-saas1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/moving-to-saas1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/multisite-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/multisite-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/one-app-vs-multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/one-app-vs-multi.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/project-solution-setup-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/project-solution-setup-2.jpeg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/project-solution-setup-solution.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/project-solution-setup-solution.jpeg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publish-edge-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publish-edge-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publish-edge-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publish-edge-2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publish-edge-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publish-edge-3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publishing/step1-publishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publishing/step1-publishing.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publishing/step2-publishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publishing/step2-publishing.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publishing/step3-publishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publishing/step3-publishing.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publishing/step4-publishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publishing/step4-publishing.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publishing/step5-publishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publishing/step5-publishing.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/publishing/step6-publishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/publishing/step6-publishing.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/re-index-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/re-index-explorer.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/re-index-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/re-index-property.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/search/throttle-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/search/throttle-limits.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/single-item-publish-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/single-item-publish-event.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-management-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-management-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-management-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-management-2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-management-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-management-3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-management-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-management-4.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-management-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-management-5.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-management-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-management-6.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-management-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-management-7.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/site-templates-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/site-templates-1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/tailwind-considerations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/tailwind-considerations.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/using-placeholders1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/using-placeholders1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/using-placeholders2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/using-placeholders2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/using-placeholders3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/using-placeholders3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/using-placeholders4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/using-placeholders4.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/using-placeholders5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/using-placeholders5.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/wildcard-pages1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/wildcard-pages1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/wildcard-pages2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/wildcard-pages2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/wildcard-pages3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/wildcard-pages3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows1.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows10.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows11.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows12.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows2.jpg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows2.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows3.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows4.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows5.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows6.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows7.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows8.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/workflows9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/workflows9.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/xm-xp-to-xmc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/xm-xp-to-xmc1.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/xmc-glossary-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/xmc-glossary-1.jpeg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/xmc-glossary-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/xmc-glossary-2.jpeg -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/xmcloud-enable-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/xmcloud-enable-debug.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/xmcloud-portal-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/xmcloud-portal-logs.png -------------------------------------------------------------------------------- /public/images/learn/accelerate/xm-cloud/xmcloud-search-high-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/accelerate/xm-cloud/xmcloud-search-high-level.png -------------------------------------------------------------------------------- /public/images/learn/migration-advisor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/migration-advisor.jpg -------------------------------------------------------------------------------- /public/images/learn/project-workflow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/learn/project-workflow.jpeg -------------------------------------------------------------------------------- /public/images/newsletter/sample-newsletter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/newsletter/sample-newsletter-image.png -------------------------------------------------------------------------------- /public/images/platform/experience-manager.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/search-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/search-page.png -------------------------------------------------------------------------------- /public/images/social/social-card-default.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/social/social-card-default.jpeg -------------------------------------------------------------------------------- /public/images/xm-cloud-agility-for-developers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/images/xm-cloud-agility-for-developers.png -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/developer-portal/9766cc08cc6ee40157f82a3947de2a2749de85fb/public/mstile-70x70.png -------------------------------------------------------------------------------- /src/components/authentication/HideForUsers.tsx: -------------------------------------------------------------------------------- 1 | import { useUser } from '@auth0/nextjs-auth0/client'; 2 | 3 | export type HideForUsersProps = { 4 | children?: React.ReactNode | Array; 5 | }; 6 | 7 | export const HideForUsers = (props: HideForUsersProps) => { 8 | const user = useUser(); 9 | 10 | if (user.user) { 11 | return; 12 | } 13 | 14 | return props.children; 15 | }; 16 | -------------------------------------------------------------------------------- /src/components/cards/LinkItem.stories.tsx: -------------------------------------------------------------------------------- 1 | // Replace your-renderer with the renderer you are using (e.g., react, vue3, etc.) 2 | import type { Meta, StoryObj } from '@storybook/react'; 3 | 4 | import { LinkItem } from './LinkItem'; 5 | 6 | const meta: Meta = { 7 | title: 'Components/Cards/LinkItem', 8 | component: LinkItem, 9 | }; 10 | export default meta; 11 | 12 | type Story = StoryObj; 13 | 14 | export const Basic: Story = { 15 | args: { 16 | title: 'Sample LinkItem', 17 | linktext: 'LinkItem', 18 | link: 'https://developers.sitecore.com', 19 | }, 20 | }; 21 | -------------------------------------------------------------------------------- /src/components/cards/LinkItem.tsx: -------------------------------------------------------------------------------- 1 | import { Card, CardProps } from '@chakra-ui/react'; 2 | import { LinkButton } from '../links'; 3 | 4 | type LinkProps = CardProps & { 5 | title: string; 6 | link: string; 7 | linktext?: string; 8 | }; 9 | 10 | export const LinkItem = ({ title, link, ...rest }: LinkProps) => { 11 | return ( 12 | 13 | 14 | 15 | ); 16 | }; 17 | -------------------------------------------------------------------------------- /src/components/cards/PromoList.tsx: -------------------------------------------------------------------------------- 1 | import { PromoCard, PromoCardProps } from './PromoCard'; 2 | 3 | type PromoListProps = { 4 | data: Array | undefined; 5 | }; 6 | 7 | export const PromoList = ({ data }: PromoListProps) => { 8 | if (data && data.length === 0) { 9 | return ( 10 | <> 11 | {data.map((promo, i) => ( 12 | 13 | ))} 14 | 15 | ); 16 | } 17 | 18 | return null; 19 | }; 20 | 21 | export default PromoList; 22 | -------------------------------------------------------------------------------- /src/components/cards/index.ts: -------------------------------------------------------------------------------- 1 | export { Article } from './Article'; 2 | export { CTACard } from './CTACard'; 3 | export type { CTACardProps } from './CTACard'; 4 | export { Download } from './Download'; 5 | export { Group } from './Group'; 6 | export { LinkItem } from './LinkItem'; 7 | export { Repository } from './Repository'; 8 | 9 | export { Promo, PromoCard } from './PromoCard'; 10 | export type { PromoCardProps } from './PromoCard'; 11 | export { PromoList } from './PromoList'; 12 | 13 | export { VideoPromo } from './videoPromo'; 14 | export type { VideoPromoProps } from './videoPromo'; 15 | 16 | -------------------------------------------------------------------------------- /src/components/changelog/Hint.stories.tsx: -------------------------------------------------------------------------------- 1 | // Replace your-renderer with the renderer you are using (e.g., react, vue3, etc.) 2 | import type { Meta, StoryObj } from '@storybook/react'; 3 | 4 | import { Hint } from './Hint'; 5 | 6 | const meta: Meta = { 7 | title: 'Components/Changelog/Hint', 8 | component: Hint, 9 | }; 10 | export default meta; 11 | 12 | type Story = StoryObj; 13 | 14 | export const Basic: Story = { 15 | args: { 16 | products: [ 17 | { 18 | label: 'XM Cloud', 19 | value: '0', 20 | }, 21 | ], 22 | enabled: true, 23 | }, 24 | }; 25 | -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cards'; 2 | export * from './video'; 3 | -------------------------------------------------------------------------------- /src/components/integrations/engage/EngageKeys.ts: -------------------------------------------------------------------------------- 1 | export interface IEngageConfigKeys { 2 | SitecoreCdpClientKey: string; 3 | SitecoreCdpPointOfSale: string; 4 | SitecoreCdpCookieDomain: string; 5 | SitecoreCdpTargetUrl: string; 6 | } 7 | 8 | export const EngageKeys: IEngageConfigKeys = { 9 | SitecoreCdpClientKey: process.env.NEXT_PUBLIC_SITECORE_CDP_CLIENT_KEY ?? '', 10 | SitecoreCdpPointOfSale: process.env.NEXT_PUBLIC_SITECORE_CDP_POS ?? '', 11 | SitecoreCdpCookieDomain: process.env.NEXT_PUBLIC_SITECORE_CDP_COOKIE_DOMAIN ?? '', 12 | SitecoreCdpTargetUrl: process.env.NEXT_PUBLIC_SITECORE_CDP_TARGETURL ?? '', 13 | }; 14 | -------------------------------------------------------------------------------- /src/components/integrations/index.ts: -------------------------------------------------------------------------------- 1 | export * from '../../hooks/useEngageTracker'; 2 | export * from './engage/EngageTracker'; 3 | export * from './sitecoreCommunity'; 4 | export type { StackExchangeQuestion } from './stackexchange/stackExchange'; 5 | export { StackExchangeApi } from './stackexchange/StackExchange.api'; 6 | export { StackExchangeFeed } from './stackexchange/StackExchangeFeed'; 7 | export type { YouTubeVideo } from './youtube/youTube'; 8 | export { YouTubeApi } from './youtube/YouTube.api'; 9 | export { YouTubeFeed } from './youtube/YouTubeFeed'; 10 | -------------------------------------------------------------------------------- /src/components/integrations/sitecore-search/Loader.tsx: -------------------------------------------------------------------------------- 1 | import { Presence } from '@sitecore-search/ui'; 2 | 3 | export const Loader = ({ enabled = true }: { enabled?: boolean }) => ( 4 |
5 | 6 | 7 | 8 | 9 | 10 |
11 | ); -------------------------------------------------------------------------------- /src/components/integrations/sitecore-search/Search.styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | Search results page 3 | */ 4 | 5 | .result-type-base { 6 | @apply text-white; 7 | } 8 | 9 | .result-type-article { 10 | @apply bg-primary-500 dark:bg-primary-900 result-type-base; 11 | } 12 | .result-type-forum { 13 | @apply result-type-base bg-teal-500 dark:bg-teal-500; 14 | } 15 | .result-type-repository { 16 | @apply result-type-base bg-gray-500; 17 | } 18 | .result-type-video { 19 | @apply result-type-base bg-red-500; 20 | } 21 | .result-type-changelog { 22 | @apply result-type-base bg-orange-500; 23 | } 24 | -------------------------------------------------------------------------------- /src/components/integrations/sitecore-search/index.ts: -------------------------------------------------------------------------------- 1 | export { Loader } from './Loader'; 2 | export { PreviewSearchInput } from './PreviewSearchInput'; 3 | export { QuerySummary } from './QuerySummary'; 4 | export { SearchFacets } from './SearchFacets'; 5 | export { SearchInput } from './SearchInput'; 6 | export { SearchPagination } from './SearchPagination'; 7 | export { SearchResults } from './SearchResults'; 8 | export { SearchSort } from './SearchSort'; 9 | 10 | export type { InitialSearchProps } from './SearchResults'; 11 | -------------------------------------------------------------------------------- /src/components/integrations/sitecoreCommunity/types.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Sitecore Community Integrations 3 | */ 4 | type SitecoreCommunityCore = { 5 | commentCount: string; 6 | title: string; 7 | url: string; 8 | viewCount: string; 9 | contentType: 'event' | 'Blog'; 10 | userName: string; 11 | }; 12 | 13 | export type SitecoreCommunityEvent = SitecoreCommunityCore & { 14 | editedDate: string; 15 | endDate: string; 16 | location: string; 17 | startDate: string; 18 | virtualUrl: string; 19 | }; 20 | 21 | export type SitecoreCommunityContent = SitecoreCommunityCore & { 22 | publishDate: string; 23 | }; 24 | -------------------------------------------------------------------------------- /src/components/integrations/stackexchange/stackExchange.ts: -------------------------------------------------------------------------------- 1 | export type StackExchangeQuestion = { 2 | creation_date: number; 3 | last_activity_date: number; 4 | link: string; 5 | question_id: string; 6 | title: string; 7 | view_count: string; 8 | tags: Array; 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/integrations/youtube/youTube.ts: -------------------------------------------------------------------------------- 1 | type YouTubeThumbnail = { 2 | url: string; 3 | height: number; 4 | width: number; 5 | }; 6 | 7 | export type YouTubeSnippet = { 8 | resourceId: { 9 | videoId: string; 10 | }; 11 | thumbnails: { 12 | medium: YouTubeThumbnail; 13 | }; 14 | title: string; 15 | description: string; 16 | playlistId: string; 17 | }; 18 | 19 | export type YouTubeVideo = { 20 | kind: string; 21 | etag: string; 22 | id: string; 23 | snippet: YouTubeSnippet; 24 | }; 25 | 26 | export type YouTubeApiResponse = { 27 | content: Array; 28 | playlistTitle?: string; 29 | }; 30 | -------------------------------------------------------------------------------- /src/components/links/GuidedDemo.stories.tsx: -------------------------------------------------------------------------------- 1 | // Replace your-renderer with the renderer you are using (e.g., react, vue3, etc.) 2 | import type { Meta, StoryObj } from '@storybook/react'; 3 | 4 | import { GuidedDemo } from './GuidedDemo'; 5 | 6 | const meta: Meta = { 7 | title: 'Components/Links/GuidedDemo', 8 | component: GuidedDemo, 9 | }; 10 | export default meta; 11 | 12 | type Story = StoryObj; 13 | 14 | export const Basic: Story = { 15 | args: { 16 | demoId: '123', 17 | linkText: 'Product Name', 18 | productName: 'XM Cloud', 19 | productLogo: 'XMCloud', 20 | }, 21 | }; 22 | -------------------------------------------------------------------------------- /src/components/links/index.ts: -------------------------------------------------------------------------------- 1 | export { GuidedDemo } from './GuidedDemo'; 2 | export { LinkButton } from './LinkButton'; 3 | export { SocialButton } from './SocialButton'; 4 | export { SocialFeeds } from './SocialFeeds'; 5 | export { TextLink } from './TextLink'; 6 | -------------------------------------------------------------------------------- /src/components/lists/categoryTileList/types.ts: -------------------------------------------------------------------------------- 1 | export type CategoryTileListData = { 2 | cards: Array; 3 | }; 4 | 5 | export type CategoryTileProps = { 6 | description: string; 7 | href: string; 8 | title: string; 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/lists/genericList/types.ts: -------------------------------------------------------------------------------- 1 | import { CardProps } from '@chakra-ui/react'; 2 | 3 | export type GenericListData = CardProps & { 4 | title: string; 5 | subtitle: string; 6 | data: Array; 7 | column?: number; 8 | cardVariant?: string; 9 | }; 10 | 11 | export type GenericListItem = { 12 | description: string; 13 | href: string; 14 | linkText: string; 15 | title: string; 16 | img: { 17 | src: string; 18 | alt?: string; 19 | width?: number; 20 | height?: number; 21 | }; 22 | }; 23 | -------------------------------------------------------------------------------- /src/components/lists/index.ts: -------------------------------------------------------------------------------- 1 | export { CategoryTileList } from './categoryTileList/CategoryTileList'; 2 | export type { CategoryTileListData, CategoryTileProps } from './categoryTileList/types'; 3 | export { GenericList } from './genericList/GenericList'; 4 | export type { GenericListData, GenericListItem } from './genericList/types'; 5 | -------------------------------------------------------------------------------- /src/components/markdown/MarkdownContent.module.css: -------------------------------------------------------------------------------- 1 | .richText :where(.richText > :first-child):not(:where([class~='notRichText'] *)) { 2 | margin-top: 0 !important; 3 | } 4 | 5 | .anchor { 6 | opacity: 0; 7 | transition: 0.3s; 8 | margin-left: 4pt; 9 | display: inline !important; 10 | } 11 | :where(h2, h3, h4, h5, h6):hover .anchor { 12 | opacity: 1; 13 | } 14 | 15 | .chakra-text { 16 | margin-top: 0 !important; 17 | margin-bottom: 0 !important; 18 | } 19 | 20 | .chakra-card__body .chakra-heading { 21 | margin-top: 0 !important; 22 | } 23 | -------------------------------------------------------------------------------- /src/components/markdown/MarkdownIntro.tsx: -------------------------------------------------------------------------------- 1 | import { Card, CardBody, CardHeader, CardProps, Heading } from '@chakra-ui/react'; 2 | 3 | type MarkdownIntroProps = CardProps & { 4 | children: React.ReactNode | Array; 5 | title: string; 6 | }; 7 | 8 | export const MarkdownIntro = ({ children, title, ...rest }: MarkdownIntroProps) => { 9 | return ( 10 | 11 | 12 | {title} 13 | 14 | {children} 15 | 16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /src/components/navigation/DarkModeSwitch.tsx: -------------------------------------------------------------------------------- 1 | import { Icon, IconButton, useColorMode } from '@chakra-ui/react'; 2 | import { mdiCircleHalfFull } from '@mdi/js'; 3 | 4 | export const DarkModeSwitch = () => { 5 | const { toggleColorMode } = useColorMode(); 6 | 7 | return ( 8 | 13 | 14 | 15 | } 16 | aria-label="Toggle Theme" 17 | onClick={toggleColorMode} 18 | /> 19 | ); 20 | }; 21 | -------------------------------------------------------------------------------- /src/components/navigation/Footer.stories.tsx: -------------------------------------------------------------------------------- 1 | // Replace your-renderer with the renderer you are using (e.g., react, vue3, etc.) 2 | import type { Meta, StoryObj } from '@storybook/react'; 3 | 4 | import { Footer } from './Footer'; 5 | 6 | const meta: Meta = { 7 | title: 'Components/Navigation/Footer', 8 | component: Footer, 9 | }; 10 | export default meta; 11 | 12 | type Story = StoryObj; 13 | 14 | export const Basic: Story = { 15 | args: {}, 16 | }; 17 | -------------------------------------------------------------------------------- /src/components/newsletter/index.ts: -------------------------------------------------------------------------------- 1 | export { NewsletterStory } from './story'; 2 | -------------------------------------------------------------------------------- /src/components/ui/chakra/index.ts: -------------------------------------------------------------------------------- 1 | export { Slide } from './Slide'; 2 | -------------------------------------------------------------------------------- /src/components/ui/dropdown/index.ts: -------------------------------------------------------------------------------- 1 | export { MultiSelect } from './MultiSelect'; 2 | export type { Option } from './MultiSelect'; 3 | -------------------------------------------------------------------------------- /src/components/ui/imageModal/index.ts: -------------------------------------------------------------------------------- 1 | export { ImageModal } from './ImageModal'; 2 | -------------------------------------------------------------------------------- /src/components/ui/index.ts: -------------------------------------------------------------------------------- 1 | export { SocialFeeds } from '../links/SocialFeeds'; 2 | export { Loading } from '../ui/loading/Loading'; 3 | -------------------------------------------------------------------------------- /src/components/ui/loading/Loading.tsx: -------------------------------------------------------------------------------- 1 | import { Container, Spinner, VisuallyHidden } from '@chakra-ui/react'; 2 | 3 | export const Loading = () => { 4 | return ( 5 | 6 | 7 | Loading... 8 | 9 | ); 10 | }; 11 | -------------------------------------------------------------------------------- /src/components/ui/logos/index.ts: -------------------------------------------------------------------------------- 1 | export { ProductIcon } from './ProductIcon'; 2 | export { ProductLogo } from './ProductLogo'; 3 | export { SvgLogo, isValidLogo } from './SvgLogo'; 4 | -------------------------------------------------------------------------------- /src/components/ui/logos/logos/logo--vue.tsx: -------------------------------------------------------------------------------- 1 | import { LogoComponent } from '../SvgLogo'; 2 | 3 | const Vue = ({ width, height }: LogoComponent) => ( 4 | 5 | 6 | 7 | 8 | ); 9 | 10 | export default Vue; 11 | -------------------------------------------------------------------------------- /src/components/ui/sections/CenteredContent.tsx: -------------------------------------------------------------------------------- 1 | import { Stack, StackProps } from '@chakra-ui/react'; 2 | 3 | export const CenteredContent = (props: StackProps) => ; 4 | -------------------------------------------------------------------------------- /src/components/ui/sections/ConditionalWrapper.tsx: -------------------------------------------------------------------------------- 1 | import React, { JSX } from 'react'; 2 | 3 | type ConditionalWrapProps = { 4 | condition: boolean; 5 | // eslint-disable-next-line no-unused-vars 6 | wrapper: (children: JSX.Element) => JSX.Element; 7 | children: JSX.Element; 8 | }; 9 | 10 | export const ConditionalWrapper = ({ condition, wrapper, children }: ConditionalWrapProps) => { 11 | return condition ? React.cloneElement(wrapper(children)) : children; 12 | }; 13 | 14 | export default ConditionalWrapper; 15 | -------------------------------------------------------------------------------- /src/components/ui/sections/ContentSection.tsx: -------------------------------------------------------------------------------- 1 | import { Flex, FlexProps } from '@chakra-ui/react'; 2 | 3 | export const ContentSection = (props: FlexProps) => ( 4 | 18 | ); 19 | -------------------------------------------------------------------------------- /src/components/ui/sections/Row.tsx: -------------------------------------------------------------------------------- 1 | import { SimpleGrid } from '@chakra-ui/react'; 2 | 3 | type RowProps = { 4 | children: React.ReactNode | Array; 5 | columns: number; 6 | }; 7 | 8 | export const Row = ({ children, columns }: RowProps) => { 9 | return ( 10 | 11 | {children} 12 | 13 | ); 14 | }; 15 | -------------------------------------------------------------------------------- /src/components/ui/sections/VerticalGroup.tsx: -------------------------------------------------------------------------------- 1 | import { Flex, FlexProps } from '@chakra-ui/react'; 2 | 3 | export const VerticalGroup = (props: FlexProps) => ( 4 | 17 | ); 18 | -------------------------------------------------------------------------------- /src/components/ui/sections/index.ts: -------------------------------------------------------------------------------- 1 | export { CenteredContent } from './CenteredContent'; 2 | export { ConditionalWrapper } from './ConditionalWrapper'; 3 | export { ContentSection } from './ContentSection'; 4 | export { Hero } from './Hero'; 5 | export { Row } from './Row'; 6 | export { VerticalGroup } from './VerticalGroup'; 7 | -------------------------------------------------------------------------------- /src/components/ui/socialShare/index.ts: -------------------------------------------------------------------------------- 1 | export { SocialShare } from './SocialShare'; 2 | -------------------------------------------------------------------------------- /src/components/video/index.ts: -------------------------------------------------------------------------------- 1 | export { YouTube } from './YouTube'; 2 | -------------------------------------------------------------------------------- /src/gql/generated/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gql'; 2 | -------------------------------------------------------------------------------- /src/lib/accelerate/types/recipe.ts: -------------------------------------------------------------------------------- 1 | export type AccelerateRecipe = { 2 | title: string; 3 | description: string; 4 | lastUpdated: string; 5 | url?: string; 6 | audience?: string; 7 | product?: string; 8 | }; 9 | -------------------------------------------------------------------------------- /src/lib/changelog/common/credentials.ts: -------------------------------------------------------------------------------- 1 | import { ChangelogCredentials } from '@lib/changelog/types'; 2 | 3 | export const entriesApiUrl = '/api/changelog/v1'; 4 | 5 | export function getChangelogCredentials(): ChangelogCredentials { 6 | return { 7 | production: { 8 | endpoint: process.env.SITECORE_CHONE_ENDPOINT_DELIVERY as string, 9 | token: process.env.SITECORE_CHONE_AUTH_TOKEN_DELIVERY as string, 10 | }, 11 | preview: { 12 | endpoint: process.env.SITECORE_CHONE_ENDPOINT_PREVIEW as string, 13 | token: process.env.SITECORE_CHONE_AUTH_TOKEN_PREVIEW as string, 14 | }, 15 | }; 16 | } 17 | -------------------------------------------------------------------------------- /src/lib/changelog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './changelog'; 2 | -------------------------------------------------------------------------------- /src/lib/changelog/types/changelog.ts: -------------------------------------------------------------------------------- 1 | export type ChangelogCredentials = { 2 | preview: ChangelogEndpoint; 3 | production: ChangelogEndpoint; 4 | }; 5 | 6 | export type ChangelogEndpoint = { 7 | endpoint: string; 8 | token: string; 9 | }; 10 | -------------------------------------------------------------------------------- /src/lib/changelog/types/common/media.ts: -------------------------------------------------------------------------------- 1 | export type Media = { 2 | id: string; 3 | name: string; 4 | fileName: string; 5 | fileUrl: string; 6 | description: string; 7 | fileWidth: number; 8 | fileHeight: number; 9 | fileId: string; 10 | fileSize: string; 11 | fileType: string; 12 | }; 13 | 14 | export type MediaResults = { 15 | total: string; 16 | results: Array; 17 | }; 18 | -------------------------------------------------------------------------------- /src/lib/changelog/types/sitecoreProduct.ts: -------------------------------------------------------------------------------- 1 | export type SitecoreProduct = { 2 | id: string; 3 | productName: string; 4 | productDescription: string; 5 | lightIcon: string; 6 | darkIcon: string; 7 | }; 8 | export default SitecoreProduct; 9 | 10 | export type SitecoreProductResults = { 11 | total: string; 12 | results: Array; 13 | }; 14 | -------------------------------------------------------------------------------- /src/lib/downloads.ts: -------------------------------------------------------------------------------- 1 | import downloads, { DownloadItem, PUBLIC_DOWNLOAD_HOST } from '@/data/data-downloads'; 2 | 3 | export function getDownloadItemByUid(uid: string | null): DownloadItem | undefined { 4 | if (uid === null) { 5 | return undefined; 6 | } 7 | 8 | uid = uid.split('.')[0]; 9 | 10 | return downloads.find((item) => item.uid === uid); 11 | } 12 | 13 | export function getDownloadUrl(uid: string | null): string | undefined { 14 | const item = getDownloadItemByUid(uid); 15 | 16 | return item ? PUBLIC_DOWNLOAD_HOST.concat(item.fileLocation) : undefined; 17 | } 18 | -------------------------------------------------------------------------------- /src/lib/github.ts: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | import { GitHubRepo } from './interfaces/github'; 3 | 4 | export const getGitHubRepositories = async (perPage: number = 6): Promise => { 5 | const response = await axios.get('https://api.github.com/orgs/Sitecore/repos', { 6 | params: { 7 | sort: 'pushed', 8 | per_page: perPage, 9 | direction: 'desc', 10 | }, 11 | headers: { 12 | Accept: 'application/vnd.github.v3+json', 13 | }, 14 | }); 15 | 16 | return response.data; 17 | }; 18 | -------------------------------------------------------------------------------- /src/lib/interfaces/contentheading.ts: -------------------------------------------------------------------------------- 1 | export interface ExtractHeadingsConfig { 2 | rank: number; 3 | headings: Array; 4 | } 5 | 6 | export interface ContentHeading { 7 | title: string; 8 | id: string; 9 | } 10 | -------------------------------------------------------------------------------- /src/lib/newsletter.ts: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | 4 | import { ManifestConfig } from './interfaces/manifest'; 5 | 6 | export const getLatestNewsletter = async () => { 7 | const dataDirectory = path.join(process.cwd(), 'data/markdown'); 8 | const pagesDirectory = path.join(dataDirectory, 'pages', 'newsletter'); 9 | const manifest: ManifestConfig = JSON.parse(fs.readFileSync(path.join(pagesDirectory, 'manifest.json'), 'utf-8')); 10 | 11 | const redirectUrl = '/newsletter/' + manifest.routes[0].children[0].path; 12 | 13 | return redirectUrl; 14 | }; 15 | -------------------------------------------------------------------------------- /src/lib/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cookieUtil'; 2 | export * from './dateUtil'; 3 | export * from './requests'; 4 | export * from './sortUtil'; 5 | export * from './stringUtil'; 6 | export * from './urlUtil'; 7 | -------------------------------------------------------------------------------- /src/lib/utils/requests.ts: -------------------------------------------------------------------------------- 1 | export const getQueryValue = (query: string | Array | undefined): string => { 2 | if (query == undefined) { 3 | return ''; 4 | } 5 | 6 | return Array.isArray(query) ? query[0] : query; 7 | }; 8 | 9 | export const getQueryArray = (query: string | Array | undefined): Array => { 10 | if (query == undefined) { 11 | return []; 12 | } 13 | 14 | return Array.isArray(query) ? query : [query]; 15 | }; 16 | -------------------------------------------------------------------------------- /src/lib/utils/sortUtil.ts: -------------------------------------------------------------------------------- 1 | export class SortUtil { 2 | static sortByProperty(array: Array, propName: keyof T, order: 'ASC' | 'DESC'): void { 3 | array.sort((a, b) => { 4 | if (a[propName] < b[propName]) { 5 | return -1; 6 | } 7 | 8 | if (a[propName] > b[propName]) { 9 | return 1; 10 | } 11 | 12 | return 0; 13 | }); 14 | 15 | if (order === 'DESC') { 16 | array.reverse(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/middlewares/middlewareFactory.ts: -------------------------------------------------------------------------------- 1 | import { NextMiddleware } from 'next/server'; 2 | 3 | // eslint-disable-next-line no-unused-vars 4 | export type MiddlewareFactory = (middleware: NextMiddleware) => NextMiddleware; 5 | -------------------------------------------------------------------------------- /src/middlewares/stackHandler.ts: -------------------------------------------------------------------------------- 1 | import { NextMiddleware, NextResponse } from 'next/server'; 2 | 3 | import { MiddlewareFactory } from './middlewareFactory'; 4 | 5 | export function stackMiddlewares(functions: Array = [], index = 0): NextMiddleware { 6 | const current = functions[index]; 7 | 8 | if (current) { 9 | const next = stackMiddlewares(functions, index + 1); 10 | 11 | return current(next); 12 | } 13 | 14 | return () => NextResponse.next(); 15 | } 16 | -------------------------------------------------------------------------------- /src/theme/foundations/breakpoints.ts: -------------------------------------------------------------------------------- 1 | const breakpoints = { 2 | base: '0px', 3 | sm: '320px', 4 | md: '768px', 5 | lg: '960px', 6 | xl: '1200px', 7 | '2xl': '1536px', 8 | '3xl': '1792px', 9 | }; 10 | 11 | export default breakpoints; 12 | -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- 1 | import react from '@vitejs/plugin-react'; 2 | import tsconfigPaths from 'vite-tsconfig-paths'; 3 | import { defineConfig } from 'vitest/config'; 4 | 5 | export default defineConfig({ 6 | plugins: [react(), tsconfigPaths()], 7 | test: { 8 | globals: true, 9 | environment: 'jsdom', 10 | setupFiles: ['./vitest.setup.ts'], 11 | exclude: ['**/__tests__/e2e/**', '**/node_modules/**', '**/dist/**', '**/cypress/**', '**/.{idea,git,cache,output,temp}/**', '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*'], 12 | }, 13 | }); 14 | -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/vitest'; 2 | import { cleanup } from '@testing-library/react'; 3 | import { afterEach } from 'vitest'; 4 | 5 | afterEach(() => { 6 | cleanup(); 7 | }); 8 | --------------------------------------------------------------------------------