-
Notifications
You must be signed in to change notification settings - Fork 10
/
docusaurus.config.js
1658 lines (1650 loc) · 165 KB
/
docusaurus.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const elasticpath = {
plain: {
color: "#ebf4ff",
backgroundColor: "#1d262f",
},
styles: [
{
types: ["prolog", "comment", "doctype", "cdata"],
style: {
color: "#fff",
},
},
{
types: ["punctuation"],
style: {
color: "#7eb6f6",
},
},
{
types: ["namespace"],
style: {
opacity: 0.7,
},
},
{
types: ["tag", "operator", "number"],
style: {
color: "#0aa370",
},
},
{
types: ["property", "function"],
style: {
color: "#7eb6f6",
},
},
{
types: ["tag-id", "selector", "atrule-id"],
style: {
color: "#ebf4ff",
},
},
{
types: ["attr-name", "language-javascript"],
style: {
color: "#7eb6f6",
},
},
{
types: [
"boolean",
"string",
"entity",
"url",
"attr-value",
"keyword",
"control",
"directive",
"unit",
"statement",
"regex",
"atrule",
],
style: {
color: "#47ebb4",
},
},
{
types: ["placeholder", "variable"],
style: {
color: "#47ebb4",
},
},
{
types: ["deleted"],
style: {
textDecorationLine: "line-through",
},
},
{
types: ["inserted"],
style: {
borderBottom: "1px dotted #ebf4ff",
textDecorationLine: "none",
},
},
{
types: ["italic"],
style: {
fontStyle: "italic",
},
},
{
types: ["important", "bold"],
style: {
fontWeight: "bold",
},
},
{
types: ["important"],
style: {
color: "#7eb6f6",
},
},
{
types: ["entity"],
style: {
cursor: "help",
},
},
],
};
const lightCodeTheme = require("prism-react-renderer/themes/vsLight");
const darkCodeTheme = require("prism-react-renderer/themes/vsDark");
const fs = require("fs");
const resourcesHTML = fs.readFileSync("./src/snippets/resources.html", "utf-8");
const resourceDOCS = fs.readFileSync(
"./src/snippets/resourceDOCS.html",
"utf-8",
);
/** @type {import('@docusaurus/plugin-content-docs').Options} */
//const defaultSettings = {
// breadcrumbs: true,
// showLastUpdateTime: true,
// sidebarCollapsible: true,
// sidebarPath: require.resolve('./sidebars-default.js'),
//};
/**
* Create a section
* @param {import('@docusaurus/plugin-content-docs').Options} options
*/
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Elastic Path Documentation",
tagline: "API, Commerce Manager, Guides and Documentation 🚀",
url: "https://elasticpath.dev",
baseUrl: "/",
favicon: "/favicon.ico",
i18n: {
defaultLocale: "en",
locales: ["en"],
},
onBrokenLinks: "ignore",
onBrokenMarkdownLinks: "ignore",
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: "facebook", // Usually your GitHub org/user name.
projectName: "docusaurus", // Usually your repo name.
markdown: {
mermaid: true,
},
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve("./sidebars-default.js"),
docLayoutComponent: "@theme/DocPage",
docItemComponent: "@theme/ApiItem", // Derived from docusaurus-theme-openapi
editUrl: "https://github.com/elasticpath/elasticpath-dev/tree/main/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
sitemap: {
ignorePatterns: ["/tags/**","/docs/partials/**"],
},
gtag: {
trackingID: 'G-NZ3NL8DLLD',
anonymizeIP: false,
},
googleTagManager: {
containerId: 'G-NZ3NL8DLLD',
},
googleTagManager: {
containerId: 'G-NZ3NL8DLLD',
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
docs: {
sidebar: {
hideable: true,
autoCollapseCategories: true,
},
},
// announcementBar: {
//comment out when not needed, please do not remove
// id: "support_us",
// content:
// "The new OpenAPI specifications are here. Navigate to Docs, then API Documentation to learn more.",
// backgroundColor: "#0E1521",
// textColor: "#FFFFFF",
// isCloseable: true,
// },
colorMode: {
defaultMode: "light",
disableSwitch: false,
respectPrefersColorScheme: true,
},
navbar: {
logo: {
href: "/",
src: "/logo/light.svg",
srcDark: "/logo/dark.svg",
alt: "Elastic Path Docs",
height: "60px",
width: "120px",
},
hideOnScroll: true,
items: [
{
label: "Guides",
to: "guides",
},
{
label: "Docs",
type: "dropdown",
className: "nav-dropdown",
items: [
{
type: "html",
value: resourceDOCS,
className: "nav-dropdown",
},
],
},
{
label: "Resources",
type: "dropdown",
className: "nav-dropdown resources-dropdown",
items: [
{
type: "html",
value: resourcesHTML,
className: "nav-dropdown",
},
],
},
{
label: "Changelog",
to: "/changelog-landing",
},
{
label: "Support",
to: "https://support.elasticpath.com",
},
{
type: "search",
position: "right",
},
{
label: "Get in Touch",
href: "https://www.elasticpath.com/get-in-touch",
position: "right",
className: "navbar-book-demo",
},
{
label: "Free Trial",
href: "https://useast.cm.elasticpath.com/free-trial",
position: "right",
className: "dev-portal-signup dev-portal-link",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "Tutorial",
to: "/docs/intro",
},
],
},
{
title: "Community",
items: [
{
label: "Stack Overflow",
href: "https://stackoverflow.com/questions/tagged/docusaurus",
},
{
label: "Discord",
href: "https://discordapp.com/invite/docusaurus",
},
{
label: "Twitter",
href: "https://twitter.com/docusaurus",
},
],
},
{
title: "More",
items: [
{
label: "Blog",
to: "/blog",
},
{
label: "GitHub",
href: "https://github.com/facebook/docusaurus",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Elastic Path Software`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: [
"dart",
"ruby",
"groovy",
"kotlin",
"java",
"swift",
"objectivec",
"javascript",
"bash",
],
magicComments: [
{
className: "theme-code-block-highlighted-line",
line: "highlight-next-line",
block: { start: "highlight-start", end: "highlight-end" },
},
{
className: "code-block-error-line",
line: "highlight-next-line-error",
},
],
},
}),
plugins: [
async function tailwind(context, options) {
return {
name: "docusaurus-tailwindcss",
configurePostCss(postcssOptions) {
// Appends TailwindCSS and AutoPrefixer.
postcssOptions.plugins.push(require("tailwindcss"));
postcssOptions.plugins.push(require("autoprefixer"));
return postcssOptions;
},
};
},
[
"posthog-docusaurus",
{
apiKey: "phc_NsCAwFSbBegeJ8eRtU9T53pOVH8m7uoeMMwRXULdjVY",
//appUrl: "<ph_client_api_host>", // optional, defaults to "https://us.i.posthog.com"
enableInDevelopment: false, // optional
},
],
//define OpenAPI Specs to transform and include in documentation
[
"docusaurus-plugin-openapi-docs",
{
id: "openapi",
docsPluginId: "classic",
config: {
accounts: {
specPath: "openapispecs/accounts/OpenAPISpec.yaml",
outputDir: "docs/api/accounts",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/accounts/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
addresses: {
specPath: "openapispecs/addresses/AccountAddresses.yaml",
outputDir: "docs/api/addresses",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/addresses/AccountAddresses.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
authentication: {
specPath: "openapispecs/authentication/OpenAPISpec.yaml",
outputDir: "docs/api/authentication",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/authentication/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
customeraddresses: {
specPath: "openapispecs/customeraddresses/CustomerAddresses.yaml",
outputDir: "docs/api/customer-addresses",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/customeraddresses/CustomerAddresses.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
applicationkeys: {
specPath: "openapispecs/applicationkeys/OpenAPISpec.yaml",
outputDir: "docs/api/application-keys",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/applicationkeys/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
merchantrealmmappings: {
specPath: "openapispecs/merchantrealmmappings/OpenAPISpec.yaml",
outputDir: "docs/api/merchant-realm-mappings",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/merchant-realm-mappings/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
catalog: {
specPath: "openapispecs/catalog/catalog_view.yaml",
outputDir: "docs/api/pxm/catalog",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/catalog/catalog_view.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
cartsorders: {
specPath: "openapispecs/cartsorders/OpenAPISpec.yaml",
outputDir: "docs/api/carts",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/cartsorders/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
currencies: {
specPath: "openapispecs/currencies/OpenAPISpec.yaml",
outputDir: "docs/api/pxm/currencies",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/currencies/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
commerceextensions: {
specPath: "openapispecs/commerceextensions/OpenAPISpec.yaml",
outputDir: "docs/api/commerce-extensions/",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/commerceextensions/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
personaldata: {
specPath: "openapispecs/personaldata/OpenAPISpec.yaml",
outputDir: "docs/api/personal-data/",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/personaldata/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
exporter: {
specPath: "openapispecs/exporter/exporter.yaml",
outputDir: "docs/api/exporter",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/exporter/exporter.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
files: {
specPath: "openapispecs/files/files.yaml",
outputDir: "docs/api/pxm/files",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/files/files.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
flows: {
specPath: "openapispecs/flows/flows.yaml",
outputDir: "docs/api/flows",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/flows/flows.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
integrations: {
specPath: "openapispecs/integrations/openapi.yaml",
outputDir: "docs/api/integrations",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/integrations/openapi.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
inventory: {
specPath: "openapispecs/inventory/public_openapi.yaml",
outputDir: "docs/api/pxm/inventory",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/inventory/public_openapi.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
payments: {
specPath: "openapispecs/payments/OpenAPISpec.yaml",
outputDir: "docs/api/payments",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/payments/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
pim: {
specPath: "openapispecs/pim/pim.yaml",
outputDir: "docs/api/pxm/products",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/pim/pim.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
pricebooks: {
specPath: "openapispecs/pricebooks/pricebooks.yaml",
outputDir: "docs/api/pxm/pricebooks",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/pricebooks/pricebooks.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
promotions: {
specPath: "openapispecs/promotions/OpenAPISpec.yaml",
outputDir: "docs/api/promotions",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/promotions/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
settings: {
specPath: "openapispecs/settings/OpenAPISpec.yaml",
outputDir: "docs/api/settings",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/settings/OpenAPISpec.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
subscriptions: {
specPath: "openapispecs/subscriptions/public_openapi.yaml",
outputDir: "docs/api/subscriptions",
downloadUrl:
"https://raw.githubusercontent.com/elasticpath/elasticpath-dev/main/openapispecs/subscriptions/public_openapi.yaml",
sidebarOptions: {
groupPathsBy: "tag",
categoryLinkSource: "tag",
},
},
},
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "guides",
path: "guides",
routeBasePath: "guides",
sidebarPath: require.resolve("./sidebar-guides.js"),
editUrl: "https://github.com/elasticpath/elasticpath-dev/tree/main/",
// ... other options
},
],
[
"@docusaurus/plugin-content-blog",
{
blogTitle: 'Elastic Path Commerce Cloud Changelog',
blogDescription: 'The changelog contains updates and modifications to all Elastic Path Cloud Services',
postsPerPage: 30,
blogSidebarCount: 0,
blogSidebarTitle: 'Recent Changelogs',
id: "changelog",
routeBasePath: "changelog",
path: "./changelog",
tagsBasePath: "product",
showReadingTime: false,
feedOptions: {
type: 'all',
copyright: `Copyright © ${new Date().getFullYear()} Elastic Path`,
description: 'Elastic Path Cloud Services Changelog',
createFeedItems: async (params) => {
const { blogPosts, defaultCreateFeedItems, ...rest } = params;
return defaultCreateFeedItems({
// keep only the 10 most recent blog posts in the feed
blogPosts: blogPosts.filter((item, index) => index < 20),
...rest,
});
},
},
},
],
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
// /docs/oldDoc -> /docs/newDoc
{ to: '/docs/api/commerce-extensions', from: '/docs/api/commerce-extensions/commerce-extensions-introduction'},
{ to: '/docs/studio/developers/custom-themes/css-variables', from: '/docs/cx-studio/developers/custom-themes/css-variables'},
{ to: '/docs/studio/Insights/Setting-up-an-AB-Test', from: '/docs/cx-studio/Insights/Setting-up-an-AB-Test'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-145-July-17-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-145-July-17-2022'},
{ to: '/docs/studio/content/advanced-page-editing/Adding-Meta-Keywords', from: '/docs/cx-studio/content/advanced-page-editing/Adding-Meta-Keywords'},
{ to: '/docs/studio/Integrations/Integrating-Zapier', from: '/docs/cx-studio/Integrations/Integrating-Zapier'},
{ to: '/changelog/Studio-Release-Notes/2021/Release-120-Nov-2-2021', from: '/docs/cx-studio/Release-Notes/2021/Release-120-Nov-2-2021'},
{ to: '/docs/studio/Integrations/Integrating-Triple-Whale', from: '/docs/cx-studio/Integrations/Integrating-Triple-Whale'},
{ to: '/docs/studio/Integrations/Adding-Typekit-Fonts', from: '/docs/cx-studio/Integrations/Adding-Typekit-Fonts'},
{ to: '/docs/studio/Integrations/Integrating-Salesforce', from: '/docs/cx-studio/Integrations/Integrating-Salesforce'},
{ to: '/docs/studio/Integrations/Integrating-Privy', from: '/docs/cx-studio/Integrations/Integrating-Privy'},
{ to: '/docs/studio/Integrations/Integrating-ActiveCampaign', from: '/docs/cx-studio/Integrations/Integrating-ActiveCampaign'},
{ to: '/docs/studio/content/advanced-page-editing/Using-Dynamic-Text-Content', from: '/docs/cx-studio/content/advanced-page-editing/Using-Dynamic-Text-Content'},
{ to: '/docs/studio/content/Basic-Page-Editing/Padding-Controls', from: '/docs/cx-studio/content/Basic-Page-Editing/Padding-Controls'},
{ to: '/guides/How-To/organizations/pxm-org-pricebooks', from: '/docs/commerce-cloud/organizations/org-level-pxm-entities/pxm-org-pricebooks'},
{ to: '/docs/studio/content/Basic-Page-Editing/Page-Settings', from: '/docs/cx-studio/content/Basic-Page-Editing/Page-Settings'},
{ to: '/docs/studio/Settings/Domain-Management/Connecting-your-cPANEL-Domain', from: '/docs/cx-studio/Settings/Domain-Management/Connecting-your-cPANEL-Domain'},
{ to: '/docs/studio/Settings/Domain-Management/Connecting-your-OVH-Domain', from: '/docs/cx-studio/Settings/Domain-Management/Connecting-your-OVH-Domain'},
{ to: '/docs/studio/Integrations/Integrating-Tidio', from: '/docs/cx-studio/Integrations/Integrating-Tidio'},
{ to: '/docs/studio/Integrations/Integrating-Intercom', from: '/docs/cx-studio/Integrations/Integrating-Intercom'},
{ to: '/docs/studio/Integrations/Integrating-ConvertFlow', from: '/docs/cx-studio/Integrations/Integrating-ConvertFlow'},
{ to: '/docs/studio/Integrations/Integrating-authorize.net', from: '/docs/cx-studio/Integrations/Integrating-authorize.net'},
{ to: '/docs/studio/content/Forms-&-Contacts/Building-Forms', from: '/docs/cx-studio/content/Forms-&-Contacts/Building-Forms'},
{ to: '/docs/commerce-manager/product-experience-manager/pricebooks/pxm-pricebooks', from: '/docs/pxm/pricebooks/pxm-pricebooks'},
{ to: '/docs/studio/Integrations/stripe-connect', from: '/docs/cx-studio/Integrations/stripe-connect'},
{ to: '/docs/studio/Settings/Domain-Management/Connecting-your-Edgecast-Domain', from: '/docs/cx-studio/Settings/Domain-Management/Connecting-your-Edgecast-Domain'},
{ to: '/docs/studio/Integrations/Klaviyo-Overview-and-Integration-Guide', from: '/docs/cx-studio/Integrations/Klaviyo-Overview-and-Integration-Guide'},
{ to: '/docs/studio/content/Basic-Page-Editing/Smart-Links', from: '/docs/cx-studio/content/Basic-Page-Editing/Smart-Links'},
{ to: '/docs/studio/Integrations/Integrating-Drift', from: '/docs/cx-studio/Integrations/Integrating-Drift'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-147-August-10-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-147-August-10-2022'},
{ to: '/docs/studio/Integrations/stripe-payment-intents', from: '/docs/cx-studio/Integrations/stripe-payment-intents'},
{ to: '/docs/studio/Integrations/Integrating-Google-Tag-Manager', from: '/docs/cx-studio/Integrations/Integrating-Google-Tag-Manager'},
{ to: '/docs/studio/design/Header-and-Footer/Managing-Social-Links-in-your-Footer', from: '/docs/cx-studio/design/Header-and-Footer/Managing-Social-Links-in-your-Footer'},
{ to: '/docs/studio/content/Media-Management/Hyperlinking-Images', from: '/docs/cx-studio/content/Media-Management/Hyperlinking-Images'},
{ to: '/docs/studio/Integrations/Integrating-DISQUS', from: '/docs/cx-studio/Integrations/Integrating-DISQUS'},
{ to: '/docs/studio/developers/features/properties', from: '/docs/cx-studio/developers/features/properties'},
{ to: '/docs/studio/Integrations/integrating-google-analytics-4', from: '/docs/cx-studio/Integrations/integrating-google-analytics-4'},
{ to: '/docs/studio/Integrations/Integrating-Rewardful', from: '/docs/cx-studio/Integrations/Integrating-Rewardful'},
{ to: '/docs/studio/content/Basic-Page-Editing/Using-Anchor-Links', from: '/docs/cx-studio/content/Basic-Page-Editing/Using-Anchor-Links'},
{ to: '/changelog/Studio-Release-Notes/Older-Release-Notes', from: '/docs/cx-studio/Release-Notes/Older-Release-Notes'},
{ to: '/docs/studio/Shopify/Change-Cart-Bag-Language-and-Icon', from: '/docs/cx-studio/Shopify/Change-Cart-Bag-Language-and-Icon'},
{ to: '/docs/studio/Integrations/Integrating-Google-Search-Console', from: '/docs/cx-studio/Integrations/Integrating-Google-Search-Console'},
{ to: '/docs/studio/policies/How-to-change-the-email-shown-in-your-billing-invoices', from: '/docs/cx-studio/policies/How-to-change-the-email-shown-in-your-billing-invoices'},
{ to: '/docs/studio/content/Forms-&-Contacts/Managing-your-Contacts', from: '/docs/cx-studio/content/Forms-&-Contacts/Managing-your-Contacts'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-130-Feb-7-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-130-Feb-7-2022'},
{ to: '/docs/studio/content/Blog-Management/Import-&-Export-XML', from: '/docs/cx-studio/content/Blog-Management/Import-&-Export-XML'},
{ to: '/docs/studio/Settings/Domain-Management/Connecting-your-Shopify-Domain', from: '/docs/cx-studio/Settings/Domain-Management/Connecting-your-Shopify-Domain'},
{ to: '/docs/studio/Integrations/Integrating-Weglot', from: '/docs/cx-studio/Integrations/Integrating-Weglot'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-129-Jan-16-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-129-Jan-16-2022'},
{ to: '/docs/studio/design/Header-and-Footer/How-to-customize-header-color', from: '/docs/cx-studio/design/Header-and-Footer/How-to-customize-header-color'},
{ to: '/docs/studio/design/Header-and-Footer/Removing-the-Unstack-Branding-from-your-Footer', from: '/docs/cx-studio/design/Header-and-Footer/Removing-the-Unstack-Branding-from-your-Footer'},
{ to: '/docs/commerce-manager/subscriptions/subscription-plans/managing-subscription-plans-cm', from: '/docs/subscriptions/subscription-plans/managing-subscription-plans-cm'},
{ to: '/docs/studio/Integrations/Integrating-Calendly', from: '/docs/cx-studio/Integrations/Integrating-Calendly'},
{ to: '/docs/studio/design/Header-and-Footer/How-to-add-a-button-to-your-header', from: '/docs/cx-studio/design/Header-and-Footer/How-to-add-a-button-to-your-header'},
{ to: '/docs/studio/developers/eCommerce/Content-for-a-non-converting-user-who-visits-a-popular-product-page', from: '/docs/cx-studio/developers/eCommerce/Content-for-a-non-converting-user-who-visits-a-popular-product-page'},
{ to: '/docs/studio/content/advanced-page-editing/Saving-a-Page-as-a-Template', from: '/docs/cx-studio/content/advanced-page-editing/Saving-a-Page-as-a-Template'},
{ to: '/docs/commerce-manager/organizations/org-pxm-entities-in-commerce-manager/create-org_pxm_hierarchy', from: '/docs/commerce-cloud/organizations/organizations-in-commerce-manager/org-pxm-entities-in-commerce-manager/create-org_pxm_hierarchy'},
{ to: '/docs/studio/Integrations/advanced-commerce', from: '/docs/cx-studio/Integrations/advanced-commerce'},
{ to: '/docs/api/merchant-realm-mappings/update-merchant-realm-mapping', from: '/docs/commerce-cloud/authentication/single-sign-on/merchant-realm-mappings/update-merchant-realm-mapping'},
{ to: '/docs/studio/content/Blog-Management/Adding-an-image-to-a-blog-article', from: '/docs/cx-studio/content/Blog-Management/Adding-an-image-to-a-blog-article'},
{ to: '/docs/promotions-builder/promotions-builder-api/cart-level-promotions/create-a-cart-percent-discount-promotion', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/cart-rule-promotions/create-a-cart-percent-discount-rule-promotion'},
{ to: '/docs/commerce-manager/product-experience-manager/variations/', from: '/docs/pxm/products/pxm-product-variations/variations'},
{ to: '/docs/studio/developers/custom-themes/headers-footers', from: '/docs/cx-studio/developers/custom-themes/headers-footers'},
{ to: '/docs/api/merchant-realm-mappings/get-merchant-realm-mapping', from: '/docs/commerce-cloud/authentication/single-sign-on/merchant-realm-mappings/get-merchant-realm-mapping'},
{ to: '/docs/studio/Integrations/Using-the-Facebook-Pixel', from: '/docs/cx-studio/Integrations/Using-the-Facebook-Pixel'},
{ to: '/guides/How-To/Custom-Data/create-a-wishlist-resource', from: '/docs/commerce-cloud/custom-data/create-a-wishlist-resource'},
{ to: '/docs/promotions-builder/promotions-builder-api/item-level-promotions/create-limitation-and-condition-promotion', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/item-rule-promotions/create-limitation-and-condition-rule-promotion'},
{ to: '/docs/studio/design/Design-&-Styles/Using-your-Style-Guide', from: '/docs/cx-studio/design/Design-&-Styles/Using-your-Style-Guide'},
{ to: '/docs/studio/developers/e-commerce/cart-and-drawer-soon', from: '/docs/cx-studio/developers/e-commerce/cart-and-drawer-soon'},
{ to: '/docs/studio/design/Header-and-Footer/Adding-&-Removing-Header-Dropdowns', from: '/docs/cx-studio/design/Header-and-Footer/Adding-&-Removing-Header-Dropdowns'},
{ to: '/docs/studio/Integrations/Integrating-Mailchimp', from: '/docs/cx-studio/Integrations/Integrating-Mailchimp'},
{ to: '/docs/studio/content/Forms-&-Contacts/Warning-when-using-email-less-form', from: '/docs/cx-studio/content/Forms-&-Contacts/Warning-when-using-email-less-form'},
{ to: '/docs/api/personal-data/post-erasure-request', from: '/docs/commerce-cloud/personal-data/personal-data-erasure-requests-api/create-personal-data-erasure-request'},
{ to: '/docs/promotions-builder/promotions-builder-api/cart-level-promotions/create-a-cart-percent-with-custom-attribute', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/cart-rule-promotions/create-a-cart-percent-custom-attribute-rule-promotion'},
{ to: '/docs/api/merchant-realm-mappings/merchant-realm-mappings-introduction', from: '/docs/commerce-cloud/authentication/single-sign-on/merchant-realm-mappings/merchant-realm-mappings-overview'},
{ to: '/changelog/Studio-Release-Notes/2021/Release-121-Nov-7-2021', from: '/docs/cx-studio/Release-Notes/2021/Release-121-Nov-7-2021'},
{ to: '/docs/authentication/single-sign-on/user-authentication-openid-connect-profile-api/create-a-user-authentication-oidc-profile-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-openid-connect-profile-api/create-a-user-authentication-oidc-profile-info'},
{ to: '/docs/studio/Integrations/Integrating-Continually', from: '/docs/cx-studio/Integrations/Integrating-Continually'},
{ to: '/docs/studio/Settings/Domain-Management/Adding-SSL-to-your-account', from: '/docs/cx-studio/Settings/Domain-Management/Adding-SSL-to-your-account'},
{ to: '/docs/commerce-manager/organizations/org-pxm-entities-in-commerce-manager/create-org_pxm_pricebooks', from: '/docs/commerce-cloud/organizations/organizations-in-commerce-manager/org-pxm-entities-in-commerce-manager/create-org_pxm_pricebooks'},
{ to: '/docs/studio/Settings/account-management/Setting-your-Timezone-in-CX-Studio', from: '/docs/cx-studio/Settings/account-management/Setting-your-Timezone-in-CX-Studio'},
{ to: '/docs/authentication/single-sign-on/user-authentication-openid-connect-profile-api/openid-connect-profile-overview', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-openid-connect-profile-api/openid-connect-profile-overview'},
{ to: '/docs/authentication/single-sign-on/user-authentication-openid-connect-profile-api/update-a-user-authentication-oidc-profile-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-openid-connect-profile-api/update-a-user-authentication-oidc-profile-info'},
{ to: '/guides/How-To/Authentication/how-to-utilize-one-time-password-tokens', from: '/docs/commerce-cloud/authentication/single-sign-on/password-profiles-api/how-to-utilize-one-time-password-tokens'},
{ to: '/guides/How-To/Products/build-pxm-variations', from: '/docs/pxm/products/pxm-product-variations/build-pxm-variations'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-128-Jan-9-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-128-Jan-9-2022'},
{ to: '/docs/studio/developers/features/literals', from: '/docs/cx-studio/developers/features/literals'},
{ to: '/docs/promotions-builder/promotions-builder-api/item-level-promotions/create-an-item-fixed-price-promotion', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/item-rule-promotions/create-an-item-fixed-discount-rule-promotion'},
{ to: '/docs/promotions-builder/promotions-builder-api/item-level-promotions/create-an-item-fixed-price-promotion', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/item-rule-promotions/create-an-item-fixed-price-rule-promotion'},
{ to: '/docs/studio/content/Basic-Page-Editing/Publishing', from: '/docs/cx-studio/content/Basic-Page-Editing/Publishing'},
{ to: '/changelog/Studio-Release-Notes/Release-197-April-30-2024', from: '/docs/cx-studio/Release-Notes/2022/Release-139-April-17-2022'},
{ to: '/changelog/Studio-Release-Notes/Release-197-April-30-2024', from: '/docs/cx-studio/Release-Notes/2022/Release-138-April-10-2022'},
{ to: '/changelog/Studio-Release-Notes/Release-197-April-30-2024', from: '/docs/cx-studio/Release-Notes/Release-195-April-8-2024'},
{ to: '/guides/How-To/organizations/pxm-org-entities-in-store-level-catalogs', from: '/docs/commerce-cloud/organizations/org-level-pxm-entities/pxm-org-entities-in-store-level-catalogs'},
{ to: '/docs/studio/Integrations/Integrating-paypal', from: '/docs/cx-studio/Integrations/Integrating-paypal'},
{ to: '/docs/commerce-manager/product-experience-manager/bundles/bundle-configuration', from: '/docs/pxm/products/pxm-bundles/bundle-configuration'},
{ to: '/docs/promotions-builder/promotions-builder-api/cart-level-promotions/create-a-cart-fixed-discount', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/cart-rule-promotions/create-a-cart-fixed-discount-rule-promotion'},
{ to: '/docs/api/personal-data/get-erasure-request', from: '/docs/commerce-cloud/personal-data/personal-data-erasure-requests-api/get-personal-data-erasure-requests'},
{ to: '/docs/studio/content/Media-Management/Managing-video-settings', from: '/docs/cx-studio/content/Media-Management/Managing-video-settings'},
{ to: '/docs/api/personal-data/get-related-data-entries', from: '/docs/commerce-cloud/personal-data/personal-data-related-data-entries-api/get-personal-data-related-data-entries'},
{ to: '/docs/studio/developers/custom-themes/custom-codeblocks', from: '/docs/cx-studio/developers/custom-themes/custom-codeblocks'},
{ to: '/docs/studio/developers/tags/articles', from: '/docs/cx-studio/developers/tags/articles'},
{ to: '/docs/studio/content/Forms-&-Contacts/Customers', from: '/docs/cx-studio/content/Forms-&-Contacts/Customers'},
{ to: '/docs/api/personal-data/get-erasure-request', from: '/docs/commerce-cloud/personal-data/personal-data-erasure-requests-api/get-personal-data-erasure-request-by-id'},
{ to: '/guides/How-To/organizations/pxm-org-templates', from: '/docs/commerce-cloud/organizations/org-level-pxm-entities/pxm-org-templates'},
{ to: '/docs/promotions-builder/promotions-builder-api/item-level-promotions/create-item-discount-with-condition', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/item-rule-promotions/create-condition-rule-promotion'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-137-April-4-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-137-April-4-2022'},
{ to: '/docs/studio/Integrations/Adding-HTML-CSS-or-JavaScript-to-all-your-pages', from: '/docs/cx-studio/Integrations/Adding-HTML-CSS-or-JavaScript-to-all-your-pages'},
{ to: '/docs/promotions-builder/promotions-builder-api/action-limitations/create-limitations-and-exclusion-rule-promotion', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/action-limitations/create-limitations-and-exclusion-rule-promotion'},
{ to: '/docs/studio/developers/components/header-and-footer', from: '/docs/cx-studio/developers/components/header-and-footer'},
{ to: '/docs/authentication/single-sign-on/user-authentication-password-profiles-api/update-a-user-authentication-password-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-password-profiles-api/update-a-user-authentication-password-profile'},
{ to: '/docs/authentication/single-sign-on/user-authentication-password-profiles-api/create-a-user-authentication-password-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-password-profiles-api/create-a-user-authentication-password-profile'},
{ to: '/docs/authentication/single-sign-on/user-authentication-password-profiles-api/password-profile-overview', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-password-profiles-api/password-profile-overview'},
{ to: '/docs/studio/design/Design-&-Styles/Styling-for-light-and-dark-backgrounds', from: '/docs/cx-studio/design/Design-&-Styles/Styling-for-light-and-dark-backgrounds'},
{ to: '/docs/studio/policies/Downgrading-or-Cancelling-your-Unstack-Account', from: '/docs/cx-studio/policies/Downgrading-or-Cancelling-your-Unstack-Account'},
{ to: '/changelog/Studio-Release-Notes/2021/Release-125-Dec-6-2021', from: '/docs/cx-studio/Release-Notes/2021/Release-125-Dec-6-2021'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-149-August-30-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-149-August-30-2022'},
{ to: '/changelog/Studio-Release-Notes/Release-194-March-27-2024', from: '/docs/cx-studio/Release-Notes/Release-193-March-22-2024'},
{ to: '/changelog/Studio-Release-Notes/Release-194-March-27-2024', from: '/docs/cx-studio/Release-Notes/Release-192-March-13-2024'},
{ to: '/changelog/Studio-Release-Notes/Release-194-March-27-2024', from: '/docs/cx-studio/Release-Notes/Release-194-March-27-2024'},
{ to: '/changelog/Studio-Release-Notes/Release-194-March-27-2024', from: '/docs/cx-studio/Release-Notes/2022/Release-136-March-27-2022'},
{ to: '/changelog/Studio-Release-Notes/Release-194-March-27-2024', from: '/docs/cx-studio/Release-Notes/2022/Release-135-March-15-2022'},
{ to: '/changelog/Studio-Release-Notes/Release-194-March-27-2024', from: '/docs/cx-studio/Release-Notes/2022/Release-134-March-3-2022'},
{ to: '/docs/studio/policies/Acceptable-Use-Policy', from: '/docs/cx-studio/policies/Acceptable-Use-Policy'},
{ to: '/docs/studio/content/Basic-Page-Editing/Building-your-first-landing-page', from: '/docs/cx-studio/content/Basic-Page-Editing/Building-your-first-landing-page'},
{ to: '/docs/studio/Integrations/Integrating-Hotjar', from: '/docs/cx-studio/Integrations/Integrating-Hotjar'},
{ to: '/docs/commerce-manager/product-experience-manager/catalogs/catalog-configuration', from: '/docs/pxm/catalogs/catalogs-cm/catalog-configuration'},
{ to: '/docs/authentication/single-sign-on/user-authentication-openid-connect-profile-api/get-a-user-authentication-oidc-profile-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-openid-connect-profile-api/get-a-user-authentication-oidc-profile-info'},
{ to: '/docs/authentication/single-sign-on/user-authentication-openid-connect-profile-api/delete-a-user-authentication-oidc-profile-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-openid-connect-profile-api/delete-a-user-authentication-oidc-profile-info'},
{ to: '/docs/studio/Insights/Interpreting-Insights', from: '/docs/cx-studio/Insights/Interpreting-Insights'},
{ to: '/docs/studio/Settings/Domain-Management/Setting-up-your-Custom-Domain', from: '/docs/cx-studio/Settings/Domain-Management/Setting-up-your-Custom-Domain'},
{ to: '/docs/studio/Integrations/Integrating-stripe', from: '/docs/cx-studio/Integrations/Integrating-stripe'},
{ to: '/docs/studio/Integrations/Integrating-Typeform', from: '/docs/cx-studio/Integrations/Integrating-Typeform'},
{ to: '/docs/studio/Settings/account-management/shopper-sso', from: '/docs/cx-studio/Settings/account-management/shopper-sso'},
{ to: '/docs/authentication/single-sign-on/openid-connect-profiles-api/openid-connect-profiles-api-overview', from: '/docs/commerce-cloud/authentication/single-sign-on/openid-connect-profiles-api/openid-connect-profiles-api-overview'},
{ to: '/docs/authentication/single-sign-on/user-authentication-password-profiles-api/get-all-user-authentication-password-profile-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-password-profiles-api/get-all-user-authentication-password-profile-info'},
{ to: '/docs/commerce-manager/subscriptions/offerings/editing-offerings', from: '/docs/subscriptions/offerings/editing-offerings'},
{ to: '/docs/authentication/single-sign-on/user-authentication-password-profiles-api/get-a-user-authentication-password-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-password-profiles-api/get-a-user-authentication-password-profile'},
{ to: '/docs/commerce-manager/organizations/org-pxm-entities-in-commerce-manager/create-org_pxm_catalogs', from: '/docs/commerce-cloud/organizations/organizations-in-commerce-manager/org-pxm-entities-in-commerce-manager/create-org_pxm_catalogs'},
{ to: '/docs/promotions-builder/promotions-builder-api/promotions-builder-management/get-a-promotion-by-id', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/rule-promotions-management/get-rule-promotions'},
{ to: '/docs/studio/Shopify/Using-Add-to-Cart-Buttons', from: '/docs/cx-studio/Shopify/Using-Add-to-Cart-Buttons'},
{ to: '/docs/promotions-builder/promotions-builder-api/promotions-builder-management/get-a-promotion-by-id', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/rule-promotions-management/get-a-rule-promotion-by-id'},
{ to: '/docs/studio/design/Header-and-Footer/Header-Formatting-Options', from: '/docs/cx-studio/design/Header-and-Footer/Header-Formatting-Options'},
{ to: '/docs/authentication/single-sign-on/user-authentication-password-profiles-api/delete-a-user-authentication-password-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-password-profiles-api/delete-a-user-authentication-password-profile'},
{ to: '/docs/promotions-builder/promotions-builder-codes/delete-multiple-rule-promotion-codes', from: '/docs/commerce-cloud/rule-promotions/rule-promotion-codes/delete-multiple-rule-promotion-codes'},
{ to: '/docs/studio/content/advanced-page-editing/Managing-Redirects', from: '/docs/cx-studio/content/advanced-page-editing/Managing-Redirects'},
{ to: '/docs/promotions-builder/promotions-builder-api/promotions-builder-management/update-a-promotion', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/rule-promotions-management/update-a-rule-promotion'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-154-October-13-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-154-October-13-2022'},
{ to: '/docs/studio/developers/features/values', from: '/docs/cx-studio/developers/features/values'},
{ to: '/docs/studio/Settings/account-management/Adjusting-User-Roles', from: '/docs/cx-studio/Settings/account-management/Adjusting-User-Roles'},
{ to: '/docs/commerce-manager/product-experience-manager/currencies/manage-currencies', from: '/docs/pxm/currencies/manage-currencies'},
{ to: '/docs/studio/content/advanced-page-editing/Version-Control', from: '/docs/cx-studio/content/advanced-page-editing/Version-Control'},
{ to: '/docs/commerce-manager/subscriptions/products/managing-products-cm', from: '/docs/subscriptions/products/managing-products-cm'},
{ to: '/docs/authentication/single-sign-on/openid-connect-profiles-api/create-an-oidc-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/openid-connect-profiles-api/create-an-oidc-profile'},
{ to: '/docs/studio/content/Blog-Management/Adding-an-article-to-multiple-categories', from: '/docs/cx-studio/content/Blog-Management/Adding-an-article-to-multiple-categories'},
{ to: '/docs/authentication/single-sign-on/openid-connect-profiles-api/update-an-oidc-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/openid-connect-profiles-api/update-an-oidc-profile'},
{ to: '/docs/studio/content/Media-Management/Background-media', from: '/docs/cx-studio/content/Media-Management/Background-media'},
{ to: '/docs/authentication/single-sign-on/password-profiles-api/create-one-time-password-token-request', from: '/docs/commerce-cloud/authentication/single-sign-on/password-profiles-api/create-one-time-password-token-request'},
{ to: '/docs/studio/Integrations/Troubleshooting-PageSpeed-Insights-Issues', from: '/docs/cx-studio/Integrations/Troubleshooting-PageSpeed-Insights-Issues'},
{ to: '/docs/studio/Settings/account-management/Unstack-&-AMP', from: '/docs/cx-studio/Settings/account-management/Unstack-&-AMP'},
{ to: '/guides/How-To/Catalogs/breadcrumbs', from: '/docs/pxm/catalogs/breadcrumbs'},
{ to: '/docs/studio/Insights/Activity', from: '/docs/cx-studio/Insights/Activity'},
{ to: '/docs/studio/developers/tags/box', from: '/docs/cx-studio/developers/tags/box'},
{ to: '/docs/commerce-manager/subscriptions/subscription-plans/deleting-plans', from: '/docs/subscriptions/subscription-plans/deleting-plans'},
{ to: '/docs/studio/developers/custom-themes/custom-components', from: '/docs/cx-studio/developers/custom-themes/custom-components'},
{ to: '/docs/studio/design/Design-&-Styles/Adjusting-Quotation-Mark-Styling', from: '/docs/cx-studio/design/Design-&-Styles/Adjusting-Quotation-Mark-Styling'},
{ to: '/docs/studio/content/advanced-page-editing/Using-Conditional-Content', from: '/docs/cx-studio/content/advanced-page-editing/Using-Conditional-Content'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-140-May-9-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-140-May-9-2022'},
{ to: '/docs/promotions-builder/promotions-builder-api/item-level-promotions/create-an-Item-percent-product-attribute', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/item-rule-promotions/create-an-Item-percent-product-attribute'},
{ to: '/docs/studio/policies/Browser-Support-Policy', from: '/docs/cx-studio/policies/Browser-Support-Policy'},
{ to: '/docs/authentication/single-sign-on/authentication-realm-api/update-an-authentication-realm', from: '/docs/commerce-cloud/authentication/single-sign-on/authentication-realm-api/update-an-authentication-realm'},
{ to: '/docs/studio/Settings/account-management/Unstack-&-GDPR-Compliance', from: '/docs/cx-studio/Settings/account-management/Unstack-&-GDPR-Compliance'},
{ to: '/guides/How-To/Subscriptions/getting-started/merchandizer-getting-started/managing-subscriptions', from: '/docs/subscriptions/getting-started/merchandizer-getting-started/managing-subscriptions'},
{ to: '/docs/authentication/single-sign-on/user-authentication-openid-connect-profile-api/get-all-user-authentication-oidc-profile-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-openid-connect-profile-api/get-all-user-authentication-oidc-profile-info'},
{ to: '/docs/studio/developers/custom-themes/custom-integrations', from: '/docs/cx-studio/developers/custom-themes/custom-integrations'},
{ to: '/docs/api/pxm/products/hierarchies', from: '/docs/pxm/hierarchies/hierarchies'},
{ to: '/docs/authentication/single-sign-on/user-authentication-info-api/create-a-user-authentication-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-info-api/create-a-user-authentication-info'},
{ to: '/docs/studio/content/Media-Management/Embedding-Videos', from: '/docs/cx-studio/content/Media-Management/Embedding-Videos'},
{ to: '/docs/authentication/single-sign-on/user-authentication-info-api/update-a-user-authentication-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-info-api/update-a-user-authentication-info'},
{ to: '/docs/authentication/single-sign-on/authentication-realm-api/authentication-realm-api-overview', from: '/docs/commerce-cloud/authentication/single-sign-on/authentication-realm-api/authentication-realm-api-overview'},
{ to: '/docs/studio/Integrations/Integrating-MailerLite', from: '/docs/cx-studio/Integrations/Integrating-MailerLite'},
{ to: '/docs/ship-groups/shipping-groups/shipping-groups-api/get-cart-shipping-groups', from: '/docs/commerce-cloud/shipping-groups/shipping-groups-api/get-a-cart-shipping-group-by-id'},
{ to: '/docs/ship-groups/shipping-groups/shipping-groups-api/update-cart-shipping-group', from: '/docs/commerce-cloud/shipping-groups/shipping-groups-api/update-cart-shipping-group'},
{ to: '/docs/commerce-manager/organizations/org-pxm-entities-in-commerce-manager/create-org_pxm_templates', from: '/docs/commerce-cloud/organizations/organizations-in-commerce-manager/org-pxm-entities-in-commerce-manager/create-org_pxm_templates'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-143-June-23-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-143-June-23-2022'},
{ to: '/docs/commerce-manager/product-experience-manager/variations/assign-variations-build-child-products', from: '/docs/pxm/products/pxm-products-commerce-manager/assign-variations-build-child-products'},
{ to: '/docs/authentication/single-sign-on/openid-connect-profiles-api/delete-an-oidc-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/openid-connect-profiles-api/delete-an-oidc-profile'},
{ to: '/guides/key-concepts/organizations/overview', from: '/docs/commerce-cloud/organizations/overview'},
{ to: '/guides/How-To/Carts/manage-abandoned-carts', from: '/docs/commerce-cloud/carts/manage-abandoned-carts'},
{ to: '/docs/studio/Integrations/Integrating-Helpscout', from: '/docs/cx-studio/Integrations/Integrating-Helpscout'},
{ to: '/docs/authentication/single-sign-on/openid-connect-profiles-api/get-all-oidc-profiles', from: '/docs/commerce-cloud/authentication/single-sign-on/openid-connect-profiles-api/get-all-oidc-profiles'},
{ to: '/docs/authentication/single-sign-on/authentication-realm-api/get-all-authentication-realms', from: '/docs/commerce-cloud/authentication/single-sign-on/authentication-realm-api/get-all-authentication-realms'},
{ to: '/docs/authentication/single-sign-on/openid-connect-profiles-api/get-an-oidc-profile', from: '/docs/commerce-cloud/authentication/single-sign-on/openid-connect-profiles-api/get-an-oidc-profile'},
{ to: '/docs/studio/Integrations/Integrating-yotpo', from: '/docs/cx-studio/Integrations/Integrating-yotpo'},
{ to: '/docs/studio/design/Header-and-Footer/How-to-make-my-header-transparent', from: '/docs/cx-studio/design/Header-and-Footer/How-to-make-my-header-transparent'},
{ to: '/guides/How-To/paymentgateways/integrate-applepay-with-swift', from: '/docs/commerce-cloud/payments/payments-developer/integrate-applepay-with-swift'},
{ to: '/docs/studio/content/Basic-Page-Editing/Deleting-a-Page', from: '/docs/cx-studio/content/Basic-Page-Editing/Deleting-a-Page'},
{ to: '/docs/api/application-keys/application-keys-introduction', from: '/docs/commerce-cloud/authentication/application-keys/application-keys-overview'},
{ to: '/docs/studio/developers/e-commerce/product', from: '/docs/cx-studio/developers/e-commerce/product'},
{ to: '/docs/authentication/single-sign-on/user-authentication-info-api/delete-a-user-authentication-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-info-api/delete-a-user-authentication-info'},
{ to: '/docs/promotions-builder/promotions-builder-api/promotions-builder-management/delete-a-promotion', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/rule-promotions-management/delete-a-rule-promotion'},
{ to: '/docs/studio/developers/tags/actions', from: '/docs/cx-studio/developers/tags/actions'},
{ to: '/docs/studio/policies/Support-Scope', from: '/docs/cx-studio/policies/Support-Scope'},
{ to: '/guides/How-To/Products/generate-pxm-variations', from: '/docs/pxm/products/pxm-product-variations/generate-pxm-variations'},
{ to: '/docs/api/personal-data/personal-data-logs', from: '/docs/commerce-cloud/personal-data/personal-data-logs-api/personal-data-logs-api-overview'},
{ to: '/docs/authentication/single-sign-on/authentication-realm-api/get-an-authentication-realm', from: '/docs/commerce-cloud/authentication/single-sign-on/authentication-realm-api/get-an-authentication-realm'},
{ to: '/docs/authentication/single-sign-on/user-authentication-info-api/get-a-user-authentication-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-info-api/get-a-user-authentication-info'},
{ to: '/docs/studio/content/Media-Management/Media-Overview', from: '/docs/cx-studio/content/Media-Management/Media-Overview'},
{ to: '/docs/api/personal-data/get-personal-data-logs', from: '/docs/commerce-cloud/personal-data/personal-data-logs-api/get-personal-data-logs'},
{ to: '/docs/authentication/single-sign-on/user-authentication-info-api/get-all-user-authentication-info', from: '/docs/commerce-cloud/authentication/single-sign-on/user-authentication-info-api/get-all-user-authentication-info'},
{ to: '/docs/studio/developers/eCommerce/Content-for-returning-customers', from: '/docs/cx-studio/developers/eCommerce/Content-for-returning-customers'},
{ to: '/docs/authentication/single-sign-on/password-profiles-api/get-all-password-profiles', from: '/docs/commerce-cloud/authentication/single-sign-on/password-profiles-api/get-all-password-profiles'},
{ to: '/guides/Getting-Started/rate-limits', from: '/docs/commerce-cloud/api-overview/rate-limits'},
{ to: '/guides/How-To/paymentgateways/implement-payment-gateways', from: '/docs/commerce-cloud/payments/payments-developer/implement-payment-gateways'},
{ to: '/guides/Getting-Started/your-first-api-request', from: '/docs/commerce-cloud/api-overview/your-first-api-request'},
{ to: '/docs/studio/content/Basic-Page-Editing/Cloning-a-Page', from: '/docs/cx-studio/content/Basic-Page-Editing/Cloning-a-Page'},
{ to: '/docs/studio/content/advanced-page-editing/', from: '/docs/cx-studio/content/advanced-page-editing/Advanced-Page-Editing'},
{ to: '/docs/commerce-manager/subscriptions/offerings/deleting-offerings', from: '/docs/subscriptions/offerings/deleting-offerings'},
{ to: '/docs/studio/Shopify/Shopify-Media', from: '/docs/cx-studio/Shopify/Shopify-Media'},
{ to: '/docs/studio/content/Blog-Management/Adding-tags-to-blog-posts', from: '/docs/cx-studio/content/Blog-Management/Adding-tags-to-blog-posts'},
{ to: '/docs/studio/developers/components', from: '/docs/cx-studio/developers/components'},
{ to: '/docs/studio/content/Basic-Page-Editing/Understanding-page-structure', from: '/docs/cx-studio/content/Basic-Page-Editing/Understanding-page-structure'},
{ to: '/docs/studio/developers/utility/generator', from: '/docs/cx-studio/developers/utility/generator'},
{ to: '/docs/studio/developers/e-commerce/product-options', from: '/docs/cx-studio/developers/e-commerce/product-options'},
{ to: '/docs/promotions-builder/promotions-builder-api/item-level-promotions/create-a-mixed-of-cart-and-item-percent-discount', from: '/docs/commerce-cloud/rule-promotions/rule-promotions-api/item-rule-promotions/create-a-mixed-of-cart-and-item-percent-discount'},
{ to: '/docs/authentication/Tokens/implicit-token', from: '/docs/commerce-cloud/authentication/Tokens/implicit-token'},
{ to: '/docs/api/personal-data/get-logs-ttl', from: '/docs/commerce-cloud/personal-data/logs-ttl-settings/get-logs-ttl-settings'},
{ to: '/docs/api/personal-data/personal-data-erasure-requests', from: '/docs/commerce-cloud/personal-data/personal-data-erasure-requests-api/personal-data-erasure-request-overview'},
{ to: '/docs/api/personal-data/put-logs-ttl', from: '/docs/commerce-cloud/personal-data/logs-ttl-settings/update-logs-ttl-settings'},
{ to: '/docs/commerce-manager/subscriptions/subscription-plans/creating-plans', from: '/docs/subscriptions/subscription-plans/creating-plans'},
{ to: '/docs/studio/Integrations/Integrating-Profitwell-Retain', from: '/docs/cx-studio/Integrations/Integrating-Profitwell-Retain'},
{ to: '/guides/How-To/Custom-Data/extend-any-resource', from: '/docs/commerce-cloud/custom-data/extend-any-resource'},
{ to: '/docs/studio/design/Design-&-Styles/Editing-Bullet-Point-Color', from: '/docs/cx-studio/design/Design-&-Styles/Editing-Bullet-Point-Color'},
{ to: '/docs/api/pxm/currencies/delete-a-currency', from: '/docs/pxm/currencies/currencies-api/delete-a-currency'},
{ to: '/docs/studio/Settings/Domain-Management/Connecting-your-Dreamhost-Domain', from: '/docs/cx-studio/Settings/Domain-Management/Connecting-your-Dreamhost-Domain'},
{ to: '/docs/studio/Integrations/Integrating-reCAPTCHA', from: '/docs/cx-studio/Integrations/Integrating-reCAPTCHA'},
{ to: '/docs/commerce-manager/subscriptions/overview', from: '/docs/subscriptions/overview'},
{ to: '/docs/studio/content/Forms-&-Contacts/Enabling-notifications-for-new-leads', from: '/docs/cx-studio/content/Forms-&-Contacts/Enabling-notifications-for-new-leads'},
{ to: '/docs/studio/developers/components/section', from: '/docs/cx-studio/developers/components/section'},
{ to: '/guides/How-To/Subscriptions/subscription-models/subscribe-save', from: '/docs/subscriptions/subscription-models/subscribe-save'},
{ to: '/docs/authentication/Tokens/account-management-authentication-token', from: '/docs/commerce-cloud/authentication/Tokens/account-management-authentication-token'},
{ to: '/docs/authentication/single-sign-on/customer-authentication-settings/get-customer-authentication-settings', from: '/docs/commerce-cloud/authentication/single-sign-on/customer-authentication-settings/get-customer-authentication-settings'},
{ to: '/docs/api/pxm/currencies/get-all-currencies', from: '/docs/pxm/currencies/currencies-api/get-all-currencies'},
{ to: '/docs/api/pxm/currencies/get-all-currencies', from: '/docs/pxm/currencies/currencies-api/get-a-currency'},
{ to: '/docs/api/personal-data/personal-data-introduction', from: '/docs/commerce-cloud/personal-data/personal-data'},
{ to: '/docs/commerce-manager/subscriptions/products/deleting-products', from: '/docs/subscriptions/products/deleting-products'},
{ to: '/guides/How-To/Carts/manage-carts', from: '/docs/commerce-cloud/carts/manage-carts'},
{ to: '/docs/api/carts/create-cart-payment-intent', from: '/docs/commerce-cloud/carts/cart-payment-intent/overview'},
{ to: '/guides/key-concepts/organizations/org-level-entities', from: '/docs/commerce-cloud/organizations/org-level-pxm-entities/overview'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-161-December-19-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-161-December-19-2022'},
{ to: '/guides/How-To/orders/create-formatted-orders', from: '/docs/commerce-cloud/orders/create-formatted-orders'},
{ to: '/guides/How-To/Checkout/checkout-workflow', from: '/docs/commerce-cloud/checkout/checkout-workflow'},
{ to: '/docs/commerce-manager/promotions-builder/', from: '/docs/commerce-cloud/rule-promotions/promotions-in-commerce-manager/overview'},
{ to: '/docs/commerce-manager/subscriptions/products/creating-pxm-products', from: '/docs/subscriptions/products/creating-pxm-products'},
{ to: '/docs/commerce-manager/product-experience-manager/hierarchies/duplicating', from: '/docs/pxm/hierarchies/hierarchies-cm/duplicating'},
{ to: '/guides/key-concepts/organizations/organization_authentication', from: '/docs/commerce-cloud/organizations/organization_authentication'},
{ to: '/docs/promotions-builder/promotions-builder-codes/delete-a-single-promotion-code', from: '/docs/commerce-cloud/rule-promotions/rule-promotion-codes/delete-a-single-rule-promotion-code'},
{ to: '/docs/commerce-manager/authentication/', from: '/docs/commerce-cloud/authentication/single-sign-on/authentication'},
{ to: '/docs/studio/content/advanced-page-editing/Changing-your-homepage', from: '/docs/cx-studio/content/advanced-page-editing/Changing-your-homepage'},
{ to: '/guides/How-To/Carts/Taxes/store-data-for-taxes', from: '/docs/commerce-cloud/carts/tax-items/store-data-for-taxes'},
{ to: '/guides/How-To/Subscriptions/subscription-models/repeat-products', from: '/docs/subscriptions/subscription-models/repeat-products'},
{ to: '/guides/How-To/Subscriptions/getting-started/developer-getting-started/managing_subscriptions', from: '/docs/subscriptions/getting-started/developer-getting-started/managing_subscriptions'},
{ to: '/docs/carts-orders/update-cart-payment-intent', from: '/docs/commerce-cloud/carts/cart-payment-intent/update-cart-payment-intent'},
{ to: '/guides/How-To/commerce-extensions/create-a-multilocation-inventories-resource', from: '/docs/commerce-cloud/commerce-extensions/create-a-multilocation-inventories-resource'},
{ to: '/docs/promotions-builder/promotions-builder-codes/get-rule-promotion-codes', from: '/docs/commerce-cloud/rule-promotions/rule-promotion-codes/get-rule-promotion-codes'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-132-Feb-21-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-132-Feb-21-2022'},
{ to: '/docs/studio/policies/Support-Identification-Policy', from: '/docs/cx-studio/policies/Support-Identification-Policy'},
{ to: '/docs/studio/Integrations/algolia', from: '/docs/cx-studio/Integrations/algolia'},
{ to: '/docs/studio/Settings/sso', from: '/docs/cx-studio/Settings/sso'},
{ to: '/guides/How-To/Promotions-Standard/apply-promotions', from: '/docs/commerce-cloud/promotions/apply-promotions'},
{ to: '/docs/commerce-manager/subscriptions/overview', from: '/docs/subscriptions'},
{ to: '/guides/How-To/paymentgateways/integrate-payment-request-api', from: '/docs/commerce-cloud/payments/payments-developer/integrate-payment-request-api'},
{ to: '/docs/studio/content/Blog-Management/Scheduling-a-blog-post', from: '/docs/cx-studio/content/Blog-Management/Scheduling-a-blog-post'},
{ to: '/guides/How-To/Products/add-custom-data-to-pxm-products', from: '/docs/pxm/products/extending-pxm-products/add-custom-data-to-pxm-products'},
{ to: '/docs/authentication/single-sign-on/customer-authentication-settings/overview', from: '/docs/commerce-cloud/authentication/single-sign-on/customer-authentication-settings/overview'},
{ to: '/docs/api/pxm/currencies/create-a-currency', from: '/docs/pxm/currencies/currencies-api/create-a-currency'},
{ to: '/guides/Getting-Started/filtering', from: '/docs/commerce-cloud/api-overview/filtering'},
{ to: '/guides/How-To/Integrations/sqs-queues', from: '/docs/commerce-cloud/integrations/sqs-queues'},
{ to: '/changelog/Studio-Release-Notes/Release-188-January-17-2024', from: '/docs/cx-studio/Release-Notes/Release-188-January-17-2024'},
{ to: '/docs/api/pxm/products/variations', from: '/docs/pxm/products/pxm-product-variations/pxm-variations'},
{ to: '/guides/How-To/Personal-Data/set-logs-ttl', from: '/docs/commerce-cloud/personal-data/set-logs-ttl'},
{ to: '/docs/commerce-manager/promotions-builder/creating-a-promotion-in-promotions-builder', from: '/docs/commerce-cloud/rule-promotions/promotions-in-commerce-manager/creating-a-promotion-in-promotions-builder'},
{ to: '/guides/How-To/orders/send-order-confirmations', from: '/docs/commerce-cloud/orders/send-order-confirmations'},
{ to: '/changelog/Studio-Release-Notes/2022/Release-150-September-12-2022', from: '/docs/cx-studio/Release-Notes/2022/Release-150-September-12-2022'},
{ to: '/guides/How-To/Personal-Data/erase-personal-data', from: '/docs/commerce-cloud/personal-data/erase-personal-data'},
{ to: '/docs/studio/design/Header-and-Footer/Adjusting-the-Header-color-of-a-Landing-page', from: '/docs/cx-studio/design/Header-and-Footer/Adjusting-the-Header-color-of-a-Landing-page'},
{ to: '/docs/studio/Integrations/Stock-Media-Integrations', from: '/docs/cx-studio/Integrations/Stock-Media-Integrations'},
{ to: '/docs/studio/developers/e-commerce/product-price', from: '/docs/cx-studio/developers/e-commerce/product-price'},
{ to: '/docs/api/integrations/get-integration', from: '/docs/commerce-cloud/integrations/integrations-api/get-an-integration'},
{ to: '/docs/api/integrations/get-integration', from: '/docs/commerce-cloud/integrations/integrations-api/get-all-integrations'},
{ to: '/docs/commerce-manager/product-experience-manager/jobs/', from: '/docs/pxm/jobs-api/jobs'},
{ to: '/guides/How-To/Custom-Data/create-a-blog-resource', from: '/docs/commerce-cloud/custom-data/create-a-blog-resource'},
{ to: '/docs/commerce-manager/promotions-standard/item-level-promotions/item-percentage-discount-promotions', from: '/docs/commerce-cloud/promotions/promotions-cm/item-level-promotions/item-percentage-discount-promotions'},
{ to: '/guides/How-To/Products/get-started-pxm', from: '/docs/pxm/products/get-started-pxm'},
{ to: '/docs/commerce-manager/team-management/', from: '/docs/commerce-cloud/team-management/team-management'},
{ to: '/guides/How-To/Subscriptions/subscription-models/membership', from: '/docs/subscriptions/subscription-models/membership'},
{ to: '/docs/api/promotions/get-all-promotions', from: '/docs/commerce-cloud/promotions/promotion-management/get-all-promotions'},
{ to: '/docs/studio/content/Blog-Management/Adding-a-Table-of-Contents-to-your-articles', from: '/docs/cx-studio/content/Blog-Management/Adding-a-Table-of-Contents-to-your-articles'},
{ to: '/guides/Getting-Started/pagination', from: '/docs/commerce-cloud/api-overview/pagination'},
{ to: '/docs/commerce-manager/analytics/', from: '/docs/commerce-cloud/analytics/analytics'},
{ to: '/docs/studio/Settings/account-management/GDPR-Messaging-&-Cookie-Consent', from: '/docs/cx-studio/Settings/account-management/GDPR-Messaging-&-Cookie-Consent'},
{ to: '/guides/How-To/Customers/manage-customers', from: '/docs/commerce-cloud/customer-management/manage-customers'},
{ to: '/docs/studio/content/Blog-Management/Adding-a-dividing-line-to-a-blog-post', from: '/docs/cx-studio/content/Blog-Management/Adding-a-dividing-line-to-a-blog-post'},
{ to: '/docs/studio/content/Dynamic-Pages-&-Databases/Data-Driven-Content', from: '/docs/cx-studio/content/Dynamic-Pages-&-Databases/Data-Driven-Content'},
{ to: '/docs/ship-groups/shipping-groups/shipping-groups-api/get-cart-shipping-groups', from: '/docs/commerce-cloud/shipping-groups/shipping-groups-api/get-cart-shipping-groups'},
{ to: '/docs/studio/developers/utility/jsonparser', from: '/docs/cx-studio/developers/utility/jsonparser'},
{ to: '/docs/commerce-manager/subscriptions/products/creating-products', from: '/docs/subscriptions/products/creating-products'},
{ to: '/docs/commerce-manager/promotions-standard/cart-level-promotions/cart-level-percentage-discount', from: '/docs/commerce-cloud/promotions/promotions-cm/cart-level-promotions/cart-level-percentage-discount'},
{ to: '/guides/How-To/paymentgateways/implement-manual-gateways', from: '/docs/commerce-cloud/payments/payments-developer/implement-manual-gateways'},
{ to: '/docs/commerce-manager/payments/ep-payments-powered-by-stripe', from: '/docs/commerce-cloud/payments/payment-gateway-cm/ep-payments-powered-by-stripe'},
{ to: '/guides/How-To/Carts/calculate-totals', from: '/docs/commerce-cloud/carts/calculate-totals'},
{ to: '/docs/api/personal-data/personal-data-related-data-entries', from: '/docs/commerce-cloud/personal-data/personal-data-related-data-entries-api/personal-data-related-entries-overview'},
{ to: '/docs/studio/content/Basic-Page-Editing/Hyperlinking-Text', from: '/docs/cx-studio/content/Basic-Page-Editing/Hyperlinking-Text'},
{ to: '/docs/api/personal-data/logs-time-to-live-settings', from: '/docs/commerce-cloud/personal-data/logs-ttl-settings/logs-ttl-settings-overview'},
{ to: '/docs/studio/Settings/Domain-Management/Connecting-your-Google-Domain', from: '/docs/cx-studio/Settings/Domain-Management/Connecting-your-Google-Domain'},
{ to: '/docs/authentication/single-sign-on/openid', from: '/docs/commerce-cloud/authentication/single-sign-on/openid'},
{ to: '/docs/studio/Settings/account-management/adding-a-user-to-your-account', from: '/docs/cx-studio/Settings/account-management/adding-a-user-to-your-account'},
{ to: '/docs/studio/content/Blog-Management/', from: '/docs/cx-studio/content/Blog-Management/Blog-Management'},
{ to: '/docs/api/integrations/delete-integration', from: '/docs/commerce-cloud/integrations/integrations-api/delete-an-integration'},
{ to: '/docs/api/carts/get-order-items', from: '/docs/commerce-cloud/orders/orders-api/get-order-items'},
{ to: '/docs/studio/Integrations/Adding-a-Google-Form-to-your-page', from: '/docs/cx-studio/Integrations/Adding-a-Google-Form-to-your-page'},
{ to: '/docs/commerce-manager/payments/paypal', from: '/docs/commerce-cloud/payments/payment-gateway-cm/paypal'},
{ to: '/docs/ship-groups/shipping-groups/shipping-groups-api/get-order-shipping-group-by-id', from: '/docs/commerce-cloud/shipping-groups/shipping-groups-api/get-order-shipping-groups'},
{ to: '/docs/commerce-manager/promotions-standard/item-level-promotions/x-for-amount-discount-promotions', from: '/docs/commerce-cloud/promotions/promotions-cm/item-level-promotions/x-for-amount-discount-promotions'},
{ to: '/docs/api/application-keys/get-all-keys', from: '/docs/commerce-cloud/authentication/application-keys/get-application-keys'},
{ to: '/docs/commerce-manager/promotions-standard/item-level-promotions/free-gift-promotions', from: '/docs/commerce-cloud/promotions/promotions-cm/item-level-promotions/free-gift-promotions'},
{ to: '/docs/api/pxm/catalog/delete-rule-by-id', from: '/docs/pxm/catalogs/catalog-rules/delete-a-catalog-rule'},
{ to: '/docs/commerce-manager/subscriptions/offerings/managing-subscription-offerings', from: '/docs/subscriptions/offerings/managing-subscription-offerings'},
{ to: '/docs/ship-groups/shipping-groups/', from: '/docs/commerce-cloud/shipping-groups/Overview'},
{ to: '/docs/authentication/security', from: '/docs/commerce-cloud/authentication/security'},
{ to: '/docs/commerce-manager/promotions-standard/item-level-promotions/item-fixed-discount-promotions', from: '/docs/commerce-cloud/promotions/promotions-cm/item-level-promotions/item-fixed-discount-promotions'},
{ to: '/docs/commerce-manager/product-experience-manager/catalogs/editing-catalogs', from: '/docs/pxm/catalogs/catalogs-cm/editing-catalogs'},
{ to: '/docs/studio/developers/custom-themes/', from: '/docs/cx-studio/developers/custom-themes/style-guide'},
{ to: '/docs/commerce-manager/product-experience-manager/product-assets/files', from: '/docs/pxm/products/product-assets/files'},
{ to: '/docs/studio/content/Basic-Page-Editing/Types-of-Lists', from: '/docs/cx-studio/content/Basic-Page-Editing/Types-of-Lists'},
{ to: '/docs/customer-management/customer-management-api/get-all-customers', from: '/docs/commerce-cloud/customer-management/customer-managment-api/get-all-customers'},
{ to: '/docs/studio/Settings/account-management/Updating-your-credit-card', from: '/docs/cx-studio/Settings/account-management/Updating-your-credit-card'},
{ to: '/docs/commerce-manager/product-experience-manager/hierarchies/overview', from: '/docs/pxm/hierarchies/hierarchies-cm/overview'},
{ to: '/guides/How-To/Accounts/authenticate-using-passwordless-authentication', from: '/docs/commerce-cloud/accounts/authenticate-using-passwordless-authentication'},
{ to: '/docs/studio/design/Header-and-Footer/Adjusting-Header-&-Footer-Logo-Size', from: '/docs/cx-studio/design/Header-and-Footer/Adjusting-Header-&-Footer-Logo-Size'},
{ to: '/docs/studio/Shopify/Managing-the-URLs-of-Shopify-Landing-Pages', from: '/docs/cx-studio/Shopify/Managing-the-URLs-of-Shopify-Landing-Pages'},
{ to: '/docs/commerce-manager/product-experience-manager/Products/overview', from: '/docs/pxm/products/pxm-products-commerce-manager/overview'},
{ to: '/docs/commerce-manager/promotions-standard/cart-level-promotions/cart-level-fixed-discount', from: '/docs/commerce-cloud/promotions/promotions-cm/cart-level-promotions/cart-level-fixed-discount'},
{ to: '/docs/api/promotions/get-a-promotion-history', from: '/docs/commerce-cloud/promotions/promotion-management/get-promotion-history'},
{ to: '/guides/How-To/Subscriptions/getting-started/developer-getting-started/first-api-call', from: '/docs/subscriptions/getting-started/developer-getting-started/first-api-call'},
{ to: '/guides/Getting-Started/maintenance', from: '/docs/commerce-cloud/getting-started/maintenance'},
{ to: '/docs/commerce-manager/payments/ep-payments-powered-by-stripe', from: '/docs/commerce-cloud/payments/payment-gateway/configure-elastic-path-payments-powered-by-stripe'},
{ to: '/docs/api/accounts/account-members', from: '/docs/commerce-cloud/accounts/using-account-members-api/get-all-account-members'},
{ to: '/guides/How-To/Personal-Data/view-personal-data-logs-all-related-items', from: '/docs/commerce-cloud/personal-data/view-personal-data-logs-all-related-items'},
{ to: '/docs/api/carts/create-a-cart', from: '/docs/commerce-cloud/carts/cart-management/create-multi-cart'},
{ to: '/docs/studio/content/Basic-Page-Editing/Working-with-Page-Previews', from: '/docs/cx-studio/content/Basic-Page-Editing/Working-with-Page-Previews'},
{ to: '/docs/api/pxm/inventory/get-single-stock-transaction', from: '/docs/pxm/inventories/get-a-product-stock-transaction'},
{ to: '/docs/studio/content/Basic-Page-Editing/Content-vs-Screen-Height', from: '/docs/cx-studio/content/Basic-Page-Editing/Content-vs-Screen-Height'},
{ to: '/docs/api/accounts/account-membership-settings', from: '/docs/commerce-cloud/accounts/account-membership-settings'},
{ to: '/docs/api/pxm/pricebooks/replicate-pricebook', from: '/docs/pxm/pricebooks/pxm-pricebooks/replicate-a-pricebook'},
{ to: '/docs/api/accounts/account-members', from: '/docs/commerce-cloud/accounts/using-account-members-api/get-an-account-member'},