forked from medusajs/medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslug-changes.mjs
4232 lines (4232 loc) · 254 KB
/
slug-changes.mjs
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
export const slugChanges = [
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.authenticate",
"newSlug": "/references/api-key/authenticate",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.authenticate/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.createApiKeys",
"newSlug": "/references/api-key/createApiKeys",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.createApiKeys/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.deleteApiKeys",
"newSlug": "/references/api-key/deleteApiKeys",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.deleteApiKeys/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.listAndCountApiKeys",
"newSlug": "/references/api-key/listAndCountApiKeys",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.listAndCountApiKeys/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.listApiKeys",
"newSlug": "/references/api-key/listApiKeys",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.listApiKeys/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.retrieveApiKey",
"newSlug": "/references/api-key/retrieveApiKey",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.retrieveApiKey/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.revoke",
"newSlug": "/references/api-key/revoke",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.revoke/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.updateApiKeys",
"newSlug": "/references/api-key/updateApiKeys",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.updateApiKeys/page.mdx"
},
{
"origSlug": "/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.upsertApiKeys",
"newSlug": "/references/api-key/upsertApiKeys",
"filePath": "/www/apps/resources/references/api_key/IApiKeyModuleService/methods/api_key.IApiKeyModuleService.upsertApiKeys/page.mdx"
},
{
"origSlug": "/references/api_key/interfaces/api_key.IApiKeyModuleService",
"newSlug": "/references/api-key",
"filePath": "/www/apps/resources/references/api_key/interfaces/api_key.IApiKeyModuleService/page.mdx"
},
{
"origSlug": "/references/api_key_models/classes/api_key_models.ApiKey",
"newSlug": "/references/api-key/models/ApiKey",
"filePath": "/www/apps/resources/references/api_key_models/classes/api_key_models.ApiKey/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.authenticate",
"newSlug": "/references/auth/authenticate",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.authenticate/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.createAuthIdentities",
"newSlug": "/references/auth/createAuthIdentities",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.createAuthIdentities/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.deleteAuthIdentities",
"newSlug": "/references/auth/deleteAuthIdentities",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.deleteAuthIdentities/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.listAndCountAuthIdentities",
"newSlug": "/references/auth/listAndCountAuthIdentities",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.listAndCountAuthIdentities/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.listAuthIdentities",
"newSlug": "/references/auth/listAuthIdentities",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.listAuthIdentities/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.retrieveAuthIdentity",
"newSlug": "/references/auth/retrieveAuthIdentity",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.retrieveAuthIdentity/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.updateAuthIdentites",
"newSlug": "/references/auth/updateAuthIdentites",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.updateAuthIdentites/page.mdx"
},
{
"origSlug": "/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.validateCallback",
"newSlug": "/references/auth/validateCallback",
"filePath": "/www/apps/resources/references/auth/IAuthModuleService/methods/auth.IAuthModuleService.validateCallback/page.mdx"
},
{
"origSlug": "/references/auth/interfaces/auth.IAuthModuleService",
"newSlug": "/references/auth",
"filePath": "/www/apps/resources/references/auth/interfaces/auth.IAuthModuleService/page.mdx"
},
{
"origSlug": "/references/auth_models/classes/auth_models.AuthIdentity",
"newSlug": "/references/auth/models/AuthIdentity",
"filePath": "/www/apps/resources/references/auth_models/classes/auth_models.AuthIdentity/page.mdx"
},
{
"origSlug": "/references/auth_models/classes/auth_models.ProviderIdentity",
"newSlug": "/references/auth/models/ProviderIdentity",
"filePath": "/www/apps/resources/references/auth_models/classes/auth_models.ProviderIdentity/page.mdx"
},
{
"origSlug": "/references/auth_provider/classes/auth_provider.AbstractAuthModuleProvider",
"newSlug": "/references/auth/provider",
"filePath": "/www/apps/resources/references/auth_provider/classes/auth_provider.AbstractAuthModuleProvider/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.addLineItemAdjustments",
"newSlug": "/references/cart/addLineItemAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.addLineItemAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.addLineItemTaxLines",
"newSlug": "/references/cart/addLineItemTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.addLineItemTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.addLineItems",
"newSlug": "/references/cart/addLineItems",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.addLineItems/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.addShippingMethodAdjustments",
"newSlug": "/references/cart/addShippingMethodAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.addShippingMethodAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.addShippingMethodTaxLines",
"newSlug": "/references/cart/addShippingMethodTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.addShippingMethodTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.addShippingMethods",
"newSlug": "/references/cart/addShippingMethods",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.addShippingMethods/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.createAddresses",
"newSlug": "/references/cart/createAddresses",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.createAddresses/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.createCarts",
"newSlug": "/references/cart/createCarts",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.createCarts/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteAddresses",
"newSlug": "/references/cart/deleteAddresses",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteAddresses/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteCarts",
"newSlug": "/references/cart/deleteCarts",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteCarts/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteLineItemAdjustments",
"newSlug": "/references/cart/deleteLineItemAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteLineItemAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteLineItemTaxLines",
"newSlug": "/references/cart/deleteLineItemTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteLineItemTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteLineItems",
"newSlug": "/references/cart/deleteLineItems",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteLineItems/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteShippingMethodAdjustments",
"newSlug": "/references/cart/deleteShippingMethodAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteShippingMethodAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteShippingMethodTaxLines",
"newSlug": "/references/cart/deleteShippingMethodTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteShippingMethodTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteShippingMethods",
"newSlug": "/references/cart/deleteShippingMethods",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.deleteShippingMethods/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listAddresses",
"newSlug": "/references/cart/listAddresses",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listAddresses/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listAndCountCarts",
"newSlug": "/references/cart/listAndCountCarts",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listAndCountCarts/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listCarts",
"newSlug": "/references/cart/listCarts",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listCarts/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listLineItemAdjustments",
"newSlug": "/references/cart/listLineItemAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listLineItemAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listLineItemTaxLines",
"newSlug": "/references/cart/listLineItemTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listLineItemTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listLineItems",
"newSlug": "/references/cart/listLineItems",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listLineItems/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listShippingMethodAdjustments",
"newSlug": "/references/cart/listShippingMethodAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listShippingMethodAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listShippingMethodTaxLines",
"newSlug": "/references/cart/listShippingMethodTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listShippingMethodTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.listShippingMethods",
"newSlug": "/references/cart/listShippingMethods",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.listShippingMethods/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreAddresses",
"newSlug": "/references/cart/restoreAddresses",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreAddresses/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreCarts",
"newSlug": "/references/cart/restoreCarts",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreCarts/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreLineItemAdjustments",
"newSlug": "/references/cart/restoreLineItemAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreLineItemAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreLineItemTaxLines",
"newSlug": "/references/cart/restoreLineItemTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreLineItemTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreLineItems",
"newSlug": "/references/cart/restoreLineItems",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreLineItems/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreShippingMethodAdjustments",
"newSlug": "/references/cart/restoreShippingMethodAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreShippingMethodAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreShippingMethodTaxLines",
"newSlug": "/references/cart/restoreShippingMethodTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreShippingMethodTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreShippingMethods",
"newSlug": "/references/cart/restoreShippingMethods",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.restoreShippingMethods/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.retrieveCart",
"newSlug": "/references/cart/retrieveCart",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.retrieveCart/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.retrieveLineItem",
"newSlug": "/references/cart/retrieveLineItem",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.retrieveLineItem/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.setLineItemAdjustments",
"newSlug": "/references/cart/setLineItemAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.setLineItemAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.setLineItemTaxLines",
"newSlug": "/references/cart/setLineItemTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.setLineItemTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.setShippingMethodAdjustments",
"newSlug": "/references/cart/setShippingMethodAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.setShippingMethodAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.setShippingMethodTaxLines",
"newSlug": "/references/cart/setShippingMethodTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.setShippingMethodTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteAddresses",
"newSlug": "/references/cart/softDeleteAddresses",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteAddresses/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteCarts",
"newSlug": "/references/cart/softDeleteCarts",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteCarts/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteLineItemAdjustments",
"newSlug": "/references/cart/softDeleteLineItemAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteLineItemAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteLineItemTaxLines",
"newSlug": "/references/cart/softDeleteLineItemTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteLineItemTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteLineItems",
"newSlug": "/references/cart/softDeleteLineItems",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteLineItems/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteShippingMethodAdjustments",
"newSlug": "/references/cart/softDeleteShippingMethodAdjustments",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteShippingMethodAdjustments/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteShippingMethodTaxLines",
"newSlug": "/references/cart/softDeleteShippingMethodTaxLines",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteShippingMethodTaxLines/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteShippingMethods",
"newSlug": "/references/cart/softDeleteShippingMethods",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.softDeleteShippingMethods/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.updateAddresses",
"newSlug": "/references/cart/updateAddresses",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.updateAddresses/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.updateCarts",
"newSlug": "/references/cart/updateCarts",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.updateCarts/page.mdx"
},
{
"origSlug": "/references/cart/ICartModuleService/methods/cart.ICartModuleService.updateLineItems",
"newSlug": "/references/cart/updateLineItems",
"filePath": "/www/apps/resources/references/cart/ICartModuleService/methods/cart.ICartModuleService.updateLineItems/page.mdx"
},
{
"origSlug": "/references/cart/interfaces/cart.ICartModuleService",
"newSlug": "/references/cart",
"filePath": "/www/apps/resources/references/cart/interfaces/cart.ICartModuleService/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.Address",
"newSlug": "/references/cart/models/Address",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.Address/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.Cart",
"newSlug": "/references/cart/models/Cart",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.Cart/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.LineItem",
"newSlug": "/references/cart/models/LineItem",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.LineItem/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.LineItemAdjustment",
"newSlug": "/references/cart/models/LineItemAdjustment",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.LineItemAdjustment/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.LineItemTaxLine",
"newSlug": "/references/cart/models/LineItemTaxLine",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.LineItemTaxLine/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.ShippingMethod",
"newSlug": "/references/cart/models/ShippingMethod",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.ShippingMethod/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.ShippingMethodAdjustment",
"newSlug": "/references/cart/models/ShippingMethodAdjustment",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.ShippingMethodAdjustment/page.mdx"
},
{
"origSlug": "/references/cart_models/classes/cart_models.ShippingMethodTaxLine",
"newSlug": "/references/cart/models/ShippingMethodTaxLine",
"filePath": "/www/apps/resources/references/cart_models/classes/cart_models.ShippingMethodTaxLine/page.mdx"
},
{
"origSlug": "/references/currency/ICurrencyModuleService/methods/currency.ICurrencyModuleService.listAndCountCurrencies",
"newSlug": "/references/currency/listAndCountCurrencies",
"filePath": "/www/apps/resources/references/currency/ICurrencyModuleService/methods/currency.ICurrencyModuleService.listAndCountCurrencies/page.mdx"
},
{
"origSlug": "/references/currency/ICurrencyModuleService/methods/currency.ICurrencyModuleService.listCurrencies",
"newSlug": "/references/currency/listCurrencies",
"filePath": "/www/apps/resources/references/currency/ICurrencyModuleService/methods/currency.ICurrencyModuleService.listCurrencies/page.mdx"
},
{
"origSlug": "/references/currency/ICurrencyModuleService/methods/currency.ICurrencyModuleService.retrieveCurrency",
"newSlug": "/references/currency/retrieveCurrency",
"filePath": "/www/apps/resources/references/currency/ICurrencyModuleService/methods/currency.ICurrencyModuleService.retrieveCurrency/page.mdx"
},
{
"origSlug": "/references/currency/interfaces/currency.ICurrencyModuleService",
"newSlug": "/references/currency",
"filePath": "/www/apps/resources/references/currency/interfaces/currency.ICurrencyModuleService/page.mdx"
},
{
"origSlug": "/references/currency_models/variables/currency_models.Currency",
"newSlug": "/references/currency/models/Currency",
"filePath": "/www/apps/resources/references/currency_models/variables/currency_models.Currency/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.addCustomerToGroup",
"newSlug": "/references/customer/addCustomerToGroup",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.addCustomerToGroup/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.createAddresses",
"newSlug": "/references/customer/createAddresses",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.createAddresses/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.createCustomerGroups",
"newSlug": "/references/customer/createCustomerGroups",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.createCustomerGroups/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.createCustomers",
"newSlug": "/references/customer/createCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.createCustomers/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.deleteAddresses",
"newSlug": "/references/customer/deleteAddresses",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.deleteAddresses/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.deleteCustomerGroups",
"newSlug": "/references/customer/deleteCustomerGroups",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.deleteCustomerGroups/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.deleteCustomers",
"newSlug": "/references/customer/deleteCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.deleteCustomers/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAddresses",
"newSlug": "/references/customer/listAddresses",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAddresses/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAndCountAddresses",
"newSlug": "/references/customer/listAndCountAddresses",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAndCountAddresses/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAndCountCustomerGroups",
"newSlug": "/references/customer/listAndCountCustomerGroups",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAndCountCustomerGroups/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAndCountCustomers",
"newSlug": "/references/customer/listAndCountCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listAndCountCustomers/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listCustomerGroupCustomers",
"newSlug": "/references/customer/listCustomerGroupCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listCustomerGroupCustomers/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listCustomerGroups",
"newSlug": "/references/customer/listCustomerGroups",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listCustomerGroups/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listCustomers",
"newSlug": "/references/customer/listCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.listCustomers/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.removeCustomerFromGroup",
"newSlug": "/references/customer/removeCustomerFromGroup",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.removeCustomerFromGroup/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.restoreCustomerGroups",
"newSlug": "/references/customer/restoreCustomerGroups",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.restoreCustomerGroups/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.restoreCustomers",
"newSlug": "/references/customer/restoreCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.restoreCustomers/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.retrieveCustomer",
"newSlug": "/references/customer/retrieveCustomer",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.retrieveCustomer/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.retrieveCustomerGroup",
"newSlug": "/references/customer/retrieveCustomerGroup",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.retrieveCustomerGroup/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.softDeleteCustomerGroups",
"newSlug": "/references/customer/softDeleteCustomerGroups",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.softDeleteCustomerGroups/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.softDeleteCustomers",
"newSlug": "/references/customer/softDeleteCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.softDeleteCustomers/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.updateAddresses",
"newSlug": "/references/customer/updateAddresses",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.updateAddresses/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.updateCustomerGroups",
"newSlug": "/references/customer/updateCustomerGroups",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.updateCustomerGroups/page.mdx"
},
{
"origSlug": "/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.updateCustomers",
"newSlug": "/references/customer/updateCustomers",
"filePath": "/www/apps/resources/references/customer/ICustomerModuleService/methods/customer.ICustomerModuleService.updateCustomers/page.mdx"
},
{
"origSlug": "/references/customer/interfaces/customer.ICustomerModuleService",
"newSlug": "/references/customer",
"filePath": "/www/apps/resources/references/customer/interfaces/customer.ICustomerModuleService/page.mdx"
},
{
"origSlug": "/references/customer_models/classes/customer_models.Address",
"newSlug": "/references/customer/models/Address",
"filePath": "/www/apps/resources/references/customer_models/classes/customer_models.Address/page.mdx"
},
{
"origSlug": "/references/customer_models/classes/customer_models.Customer",
"newSlug": "/references/customer/models/Customer",
"filePath": "/www/apps/resources/references/customer_models/classes/customer_models.Customer/page.mdx"
},
{
"origSlug": "/references/customer_models/classes/customer_models.CustomerGroup",
"newSlug": "/references/customer/models/CustomerGroup",
"filePath": "/www/apps/resources/references/customer_models/classes/customer_models.CustomerGroup/page.mdx"
},
{
"origSlug": "/references/customer_models/classes/customer_models.CustomerGroupCustomer",
"newSlug": "/references/customer/models/CustomerGroupCustomer",
"filePath": "/www/apps/resources/references/customer_models/classes/customer_models.CustomerGroupCustomer/page.mdx"
},
{
"origSlug": "/references/dml/Model_Methods/methods/dml.Model_Methods.cascades",
"newSlug": "/references/data-model/model-methods/cascades",
"filePath": "/www/apps/resources/references/dml/Model_Methods/methods/dml.Model_Methods.cascades/page.mdx"
},
{
"origSlug": "/references/dml/Model_Methods/methods/dml.Model_Methods.indexes",
"newSlug": "/references/data-model/model-methods/indexes",
"filePath": "/www/apps/resources/references/dml/Model_Methods/methods/dml.Model_Methods.indexes/page.mdx"
},
{
"origSlug": "/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.default",
"newSlug": "/references/data-model/property-configuration/default",
"filePath": "/www/apps/resources/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.default/page.mdx"
},
{
"origSlug": "/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.index",
"newSlug": "/references/data-model/property-configuration/index",
"filePath": "/www/apps/resources/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.index/page.mdx"
},
{
"origSlug": "/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.nullable",
"newSlug": "/references/data-model/property-configuration/nullable",
"filePath": "/www/apps/resources/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.nullable/page.mdx"
},
{
"origSlug": "/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.unique",
"newSlug": "/references/data-model/property-configuration/unique",
"filePath": "/www/apps/resources/references/dml/Property_Configuration_Methods/methods/dml.Property_Configuration_Methods.unique/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.array",
"newSlug": "/references/data-model/property-types/array",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.array/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.bigNumber",
"newSlug": "/references/data-model/property-types/bignumber",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.bigNumber/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.boolean",
"newSlug": "/references/data-model/property-types/boolean",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.boolean/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.dateTime",
"newSlug": "/references/data-model/property-types/datetime",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.dateTime/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.enum",
"newSlug": "/references/data-model/property-types/enum",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.enum/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.id",
"newSlug": "/references/data-model/property-types/id",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.id/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.json",
"newSlug": "/references/data-model/property-types/json",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.json/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.number",
"newSlug": "/references/data-model/property-types/number",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.number/page.mdx"
},
{
"origSlug": "/references/dml/Property_Types/methods/dml.Property_Types.text",
"newSlug": "/references/data-model/property-types/text",
"filePath": "/www/apps/resources/references/dml/Property_Types/methods/dml.Property_Types.text/page.mdx"
},
{
"origSlug": "/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.belongsTo",
"newSlug": "/references/data-model/relationship-methods/belongsto",
"filePath": "/www/apps/resources/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.belongsTo/page.mdx"
},
{
"origSlug": "/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.hasMany",
"newSlug": "/references/data-model/relationship-methods/hasmany",
"filePath": "/www/apps/resources/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.hasMany/page.mdx"
},
{
"origSlug": "/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.hasOne",
"newSlug": "/references/data-model/relationship-methods/hasone",
"filePath": "/www/apps/resources/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.hasOne/page.mdx"
},
{
"origSlug": "/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.manyToMany",
"newSlug": "/references/data-model/relationship-methods/manytomany",
"filePath": "/www/apps/resources/references/dml/Relationship_Methods/methods/dml.Relationship_Methods.manyToMany/page.mdx"
},
{
"origSlug": "/references/dml/dml.Model_Methods",
"newSlug": "/references/data-model/model-methods",
"filePath": "/www/apps/resources/references/dml/dml.Model_Methods/page.mdx"
},
{
"origSlug": "/references/dml/dml.Property_Configuration_Methods",
"newSlug": "/references/data-model/property-configuration",
"filePath": "/www/apps/resources/references/dml/dml.Property_Configuration_Methods/page.mdx"
},
{
"origSlug": "/references/dml/dml.Property_Types",
"newSlug": "/references/data-model/property-types",
"filePath": "/www/apps/resources/references/dml/dml.Property_Types/page.mdx"
},
{
"origSlug": "/references/dml/dml.Relationship_Methods",
"newSlug": "/references/data-model/relationship-methods",
"filePath": "/www/apps/resources/references/dml/dml.Relationship_Methods/page.mdx"
},
{
"origSlug": "/references/dml/entity_builder/EntityBuilder/methods/dml.entity_builder.EntityBuilder.define",
"newSlug": "/references/data-model/define",
"filePath": "/www/apps/resources/references/dml/entity_builder/EntityBuilder/methods/dml.entity_builder.EntityBuilder.define/page.mdx"
},
{
"origSlug": "/references/file/classes/file.AbstractFileProviderService",
"newSlug": "/references/file-provider-module",
"filePath": "/www/apps/resources/references/file/classes/file.AbstractFileProviderService/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.cancelFulfillment",
"newSlug": "/references/fulfillment/cancelFulfillment",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.cancelFulfillment/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createFulfillment",
"newSlug": "/references/fulfillment/createFulfillment",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createFulfillment/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createFulfillmentSets",
"newSlug": "/references/fulfillment/createFulfillmentSets",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createFulfillmentSets/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createGeoZones",
"newSlug": "/references/fulfillment/createGeoZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createGeoZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createReturnFulfillment",
"newSlug": "/references/fulfillment/createReturnFulfillment",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createReturnFulfillment/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createServiceZones",
"newSlug": "/references/fulfillment/createServiceZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createServiceZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionRules",
"newSlug": "/references/fulfillment/createShippingOptionRules",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionRules/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptions",
"newSlug": "/references/fulfillment/createShippingOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptions/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingProfiles",
"newSlug": "/references/fulfillment/createShippingProfiles",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingProfiles/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteFulfillmentSets",
"newSlug": "/references/fulfillment/deleteFulfillmentSets",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteFulfillmentSets/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteGeoZones",
"newSlug": "/references/fulfillment/deleteGeoZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteGeoZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteServiceZones",
"newSlug": "/references/fulfillment/deleteServiceZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteServiceZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingOptionRules",
"newSlug": "/references/fulfillment/deleteShippingOptionRules",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingOptionRules/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingOptionTypes",
"newSlug": "/references/fulfillment/deleteShippingOptionTypes",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingOptionTypes/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingOptions",
"newSlug": "/references/fulfillment/deleteShippingOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingOptions/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingProfiles",
"newSlug": "/references/fulfillment/deleteShippingProfiles",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.deleteShippingProfiles/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountFulfillmentSets",
"newSlug": "/references/fulfillment/listAndCountFulfillmentSets",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountFulfillmentSets/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountFulfillments",
"newSlug": "/references/fulfillment/listAndCountFulfillments",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountFulfillments/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountGeoZones",
"newSlug": "/references/fulfillment/listAndCountGeoZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountGeoZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountServiceZones",
"newSlug": "/references/fulfillment/listAndCountServiceZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountServiceZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingOptionRules",
"newSlug": "/references/fulfillment/listAndCountShippingOptionRules",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingOptionRules/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingOptionTypes",
"newSlug": "/references/fulfillment/listAndCountShippingOptionTypes",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingOptionTypes/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingOptions",
"newSlug": "/references/fulfillment/listAndCountShippingOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingOptions/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingProfiles",
"newSlug": "/references/fulfillment/listAndCountShippingProfiles",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listAndCountShippingProfiles/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listFulfillmentProviders",
"newSlug": "/references/fulfillment/listFulfillmentProviders",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listFulfillmentProviders/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listFulfillmentSets",
"newSlug": "/references/fulfillment/listFulfillmentSets",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listFulfillmentSets/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listFulfillments",
"newSlug": "/references/fulfillment/listFulfillments",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listFulfillments/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listGeoZones",
"newSlug": "/references/fulfillment/listGeoZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listGeoZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listServiceZones",
"newSlug": "/references/fulfillment/listServiceZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listServiceZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptionRules",
"newSlug": "/references/fulfillment/listShippingOptionRules",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptionRules/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptionTypes",
"newSlug": "/references/fulfillment/listShippingOptionTypes",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptionTypes/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptions",
"newSlug": "/references/fulfillment/listShippingOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptions/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptionsForContext",
"newSlug": "/references/fulfillment/listShippingOptionsForContext",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingOptionsForContext/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingProfiles",
"newSlug": "/references/fulfillment/listShippingProfiles",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.listShippingProfiles/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreFulfillmentSets",
"newSlug": "/references/fulfillment/restoreFulfillmentSets",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreFulfillmentSets/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreGeoZones",
"newSlug": "/references/fulfillment/restoreGeoZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreGeoZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreServiceZones",
"newSlug": "/references/fulfillment/restoreServiceZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreServiceZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptions",
"newSlug": "/references/fulfillment/restoreShippingOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptions/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingProfiles",
"newSlug": "/references/fulfillment/restoreShippingProfiles",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingProfiles/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveFulfillment",
"newSlug": "/references/fulfillment/retrieveFulfillment",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveFulfillment/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveFulfillmentOptions",
"newSlug": "/references/fulfillment/retrieveFulfillmentOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveFulfillmentOptions/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveFulfillmentSet",
"newSlug": "/references/fulfillment/retrieveFulfillmentSet",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveFulfillmentSet/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveGeoZone",
"newSlug": "/references/fulfillment/retrieveGeoZone",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveGeoZone/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveServiceZone",
"newSlug": "/references/fulfillment/retrieveServiceZone",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveServiceZone/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingOption",
"newSlug": "/references/fulfillment/retrieveShippingOption",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingOption/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingOptionRule",
"newSlug": "/references/fulfillment/retrieveShippingOptionRule",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingOptionRule/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingOptionType",
"newSlug": "/references/fulfillment/retrieveShippingOptionType",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingOptionType/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingProfile",
"newSlug": "/references/fulfillment/retrieveShippingProfile",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.retrieveShippingProfile/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteFulfillmentSets",
"newSlug": "/references/fulfillment/softDeleteFulfillmentSets",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteFulfillmentSets/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteGeoZones",
"newSlug": "/references/fulfillment/softDeleteGeoZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteGeoZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteServiceZones",
"newSlug": "/references/fulfillment/softDeleteServiceZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteServiceZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptions",
"newSlug": "/references/fulfillment/softDeleteShippingOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptions/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingProfiles",
"newSlug": "/references/fulfillment/softDeleteShippingProfiles",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingProfiles/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateFulfillment",
"newSlug": "/references/fulfillment/updateFulfillment",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateFulfillment/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateFulfillmentSets",
"newSlug": "/references/fulfillment/updateFulfillmentSets",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateFulfillmentSets/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateGeoZones",
"newSlug": "/references/fulfillment/updateGeoZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateGeoZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateServiceZones",
"newSlug": "/references/fulfillment/updateServiceZones",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateServiceZones/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionRules",
"newSlug": "/references/fulfillment/updateShippingOptionRules",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionRules/page.mdx"
},
{
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptions",
"newSlug": "/references/fulfillment/updateShippingOptions",
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptions/page.mdx"