@salesforce/b2c-cli 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/code/deploy.d.ts +3 -1
- package/dist/commands/code/deploy.js +46 -15
- package/dist/commands/code/deploy.js.map +1 -1
- package/dist/commands/code/watch.js +10 -0
- package/dist/commands/code/watch.js.map +1 -1
- package/dist/commands/job/export.js +20 -0
- package/dist/commands/job/export.js.map +1 -1
- package/dist/commands/job/import.js +19 -0
- package/dist/commands/job/import.js.map +1 -1
- package/dist/commands/job/run.js +9 -0
- package/dist/commands/job/run.js.map +1 -1
- package/dist/commands/sandbox/realm/configuration.d.ts +19 -0
- package/dist/commands/sandbox/realm/configuration.js +86 -0
- package/dist/commands/sandbox/realm/configuration.js.map +1 -0
- package/dist/commands/sandbox/realm/get.js +1 -1
- package/dist/commands/sandbox/realm/get.js.map +1 -1
- package/dist/commands/sandbox/realm/list.d.ts +3 -6
- package/dist/commands/sandbox/realm/list.js +7 -28
- package/dist/commands/sandbox/realm/list.js.map +1 -1
- package/dist/commands/sandbox/realm/update.js +1 -1
- package/dist/commands/sandbox/realm/update.js.map +1 -1
- package/dist/commands/sandbox/realm/usage.js +1 -1
- package/dist/commands/sandbox/realm/usage.js.map +1 -1
- package/dist/commands/sandbox/realm/usages.d.ts +23 -0
- package/dist/commands/sandbox/realm/usages.js +105 -0
- package/dist/commands/sandbox/realm/usages.js.map +1 -0
- package/dist/commands/sandbox/settings.d.ts +19 -0
- package/dist/commands/sandbox/settings.js +76 -0
- package/dist/commands/sandbox/settings.js.map +1 -0
- package/dist/commands/sandbox/storage.d.ts +19 -0
- package/dist/commands/sandbox/storage.js +64 -0
- package/dist/commands/sandbox/storage.js.map +1 -0
- package/oclif.manifest.json +2145 -1137
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -906,7 +906,7 @@
|
|
|
906
906
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
907
907
|
"helpGroup": "QUERY",
|
|
908
908
|
"name": "from",
|
|
909
|
-
"default": "2026-
|
|
909
|
+
"default": "2026-04-01",
|
|
910
910
|
"hasDynamicHelp": false,
|
|
911
911
|
"multiple": false,
|
|
912
912
|
"type": "option"
|
|
@@ -915,7 +915,7 @@
|
|
|
915
915
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
916
916
|
"helpGroup": "QUERY",
|
|
917
917
|
"name": "to",
|
|
918
|
-
"default": "2026-
|
|
918
|
+
"default": "2026-04-06",
|
|
919
919
|
"hasDynamicHelp": false,
|
|
920
920
|
"multiple": false,
|
|
921
921
|
"type": "option"
|
|
@@ -1202,7 +1202,7 @@
|
|
|
1202
1202
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
1203
1203
|
"helpGroup": "QUERY",
|
|
1204
1204
|
"name": "from",
|
|
1205
|
-
"default": "2026-
|
|
1205
|
+
"default": "2026-04-01",
|
|
1206
1206
|
"hasDynamicHelp": false,
|
|
1207
1207
|
"multiple": false,
|
|
1208
1208
|
"type": "option"
|
|
@@ -1211,7 +1211,7 @@
|
|
|
1211
1211
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
1212
1212
|
"helpGroup": "QUERY",
|
|
1213
1213
|
"name": "to",
|
|
1214
|
-
"default": "2026-
|
|
1214
|
+
"default": "2026-04-06",
|
|
1215
1215
|
"hasDynamicHelp": false,
|
|
1216
1216
|
"multiple": false,
|
|
1217
1217
|
"type": "option"
|
|
@@ -1633,7 +1633,7 @@
|
|
|
1633
1633
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
1634
1634
|
"helpGroup": "QUERY",
|
|
1635
1635
|
"name": "from",
|
|
1636
|
-
"default": "2026-
|
|
1636
|
+
"default": "2026-04-01",
|
|
1637
1637
|
"hasDynamicHelp": false,
|
|
1638
1638
|
"multiple": false,
|
|
1639
1639
|
"type": "option"
|
|
@@ -1642,7 +1642,7 @@
|
|
|
1642
1642
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
1643
1643
|
"helpGroup": "QUERY",
|
|
1644
1644
|
"name": "to",
|
|
1645
|
-
"default": "2026-
|
|
1645
|
+
"default": "2026-04-06",
|
|
1646
1646
|
"hasDynamicHelp": false,
|
|
1647
1647
|
"multiple": false,
|
|
1648
1648
|
"type": "option"
|
|
@@ -2376,8 +2376,9 @@
|
|
|
2376
2376
|
"<%= config.bin %> <%= command.id %>",
|
|
2377
2377
|
"<%= config.bin %> <%= command.id %> ./my-cartridges",
|
|
2378
2378
|
"<%= config.bin %> <%= command.id %> --server my-sandbox.demandware.net --code-version v1",
|
|
2379
|
+
"<%= config.bin %> <%= command.id %> --activate",
|
|
2380
|
+
"<%= config.bin %> <%= command.id %> --delete --activate",
|
|
2379
2381
|
"<%= config.bin %> <%= command.id %> --reload",
|
|
2380
|
-
"<%= config.bin %> <%= command.id %> --delete --reload",
|
|
2381
2382
|
"<%= config.bin %> <%= command.id %> -c app_storefront_base -c plugin_applepay",
|
|
2382
2383
|
"<%= config.bin %> <%= command.id %> -x test_cartridge"
|
|
2383
2384
|
],
|
|
@@ -2683,9 +2684,22 @@
|
|
|
2683
2684
|
"multiple": true,
|
|
2684
2685
|
"type": "option"
|
|
2685
2686
|
},
|
|
2687
|
+
"activate": {
|
|
2688
|
+
"char": "a",
|
|
2689
|
+
"description": "Activate code version after deploy",
|
|
2690
|
+
"exclusive": [
|
|
2691
|
+
"reload"
|
|
2692
|
+
],
|
|
2693
|
+
"name": "activate",
|
|
2694
|
+
"allowNo": false,
|
|
2695
|
+
"type": "boolean"
|
|
2696
|
+
},
|
|
2686
2697
|
"reload": {
|
|
2687
2698
|
"char": "r",
|
|
2688
|
-
"description": "Reload (
|
|
2699
|
+
"description": "Reload (toggle activation to force reload) code version after deploy",
|
|
2700
|
+
"exclusive": [
|
|
2701
|
+
"activate"
|
|
2702
|
+
],
|
|
2689
2703
|
"name": "reload",
|
|
2690
2704
|
"allowNo": false,
|
|
2691
2705
|
"type": "boolean"
|
|
@@ -3419,20 +3433,23 @@
|
|
|
3419
3433
|
"watch.js"
|
|
3420
3434
|
]
|
|
3421
3435
|
},
|
|
3422
|
-
"
|
|
3436
|
+
"content:export": {
|
|
3423
3437
|
"aliases": [],
|
|
3424
3438
|
"args": {
|
|
3425
|
-
"
|
|
3426
|
-
"description": "
|
|
3427
|
-
"name": "
|
|
3439
|
+
"pages": {
|
|
3440
|
+
"description": "Content IDs to export (pages, content assets, or components)",
|
|
3441
|
+
"name": "pages",
|
|
3428
3442
|
"required": true
|
|
3429
3443
|
}
|
|
3430
3444
|
},
|
|
3431
|
-
"description": "
|
|
3445
|
+
"description": "Export Page Designer pages with components and assets from a content library",
|
|
3432
3446
|
"examples": [
|
|
3433
|
-
"<%= config.bin %> <%= command.id %>
|
|
3434
|
-
"<%= config.bin %> <%= command.id %>
|
|
3435
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3447
|
+
"<%= config.bin %> <%= command.id %> --library SharedLibrary homepage",
|
|
3448
|
+
"<%= config.bin %> <%= command.id %> --library SharedLibrary homepage about-us",
|
|
3449
|
+
"<%= config.bin %> <%= command.id %> --library SharedLibrary \"hero-.*\" --regex",
|
|
3450
|
+
"<%= config.bin %> <%= command.id %> --library RefArch --site-library homepage -o ./export",
|
|
3451
|
+
"<%= config.bin %> <%= command.id %> --library SharedLibrary homepage --json",
|
|
3452
|
+
"<%= config.bin %> <%= command.id %> --library SharedLibrary homepage --dry-run"
|
|
3436
3453
|
],
|
|
3437
3454
|
"flags": {
|
|
3438
3455
|
"json": {
|
|
@@ -3718,45 +3735,115 @@
|
|
|
3718
3735
|
"allowNo": true,
|
|
3719
3736
|
"type": "boolean"
|
|
3720
3737
|
},
|
|
3721
|
-
"
|
|
3722
|
-
"description": "
|
|
3723
|
-
"name": "
|
|
3738
|
+
"library": {
|
|
3739
|
+
"description": "Library ID or site ID (also configurable via dw.json \"content-library\")",
|
|
3740
|
+
"name": "library",
|
|
3741
|
+
"hasDynamicHelp": false,
|
|
3742
|
+
"multiple": false,
|
|
3743
|
+
"type": "option"
|
|
3744
|
+
},
|
|
3745
|
+
"output": {
|
|
3746
|
+
"char": "o",
|
|
3747
|
+
"description": "Output directory",
|
|
3748
|
+
"name": "output",
|
|
3749
|
+
"hasDynamicHelp": false,
|
|
3750
|
+
"multiple": false,
|
|
3751
|
+
"type": "option"
|
|
3752
|
+
},
|
|
3753
|
+
"site-library": {
|
|
3754
|
+
"description": "Library is a site-private library",
|
|
3755
|
+
"name": "site-library",
|
|
3756
|
+
"allowNo": false,
|
|
3757
|
+
"type": "boolean"
|
|
3758
|
+
},
|
|
3759
|
+
"asset-query": {
|
|
3760
|
+
"char": "q",
|
|
3761
|
+
"description": "JSON dot-paths for asset extraction",
|
|
3762
|
+
"name": "asset-query",
|
|
3763
|
+
"default": [
|
|
3764
|
+
"image.path"
|
|
3765
|
+
],
|
|
3766
|
+
"hasDynamicHelp": false,
|
|
3767
|
+
"multiple": true,
|
|
3768
|
+
"type": "option"
|
|
3769
|
+
},
|
|
3770
|
+
"regex": {
|
|
3771
|
+
"char": "r",
|
|
3772
|
+
"description": "Treat page IDs as regular expressions",
|
|
3773
|
+
"name": "regex",
|
|
3774
|
+
"allowNo": false,
|
|
3775
|
+
"type": "boolean"
|
|
3776
|
+
},
|
|
3777
|
+
"folder": {
|
|
3778
|
+
"description": "Filter by folder classification",
|
|
3779
|
+
"name": "folder",
|
|
3780
|
+
"hasDynamicHelp": false,
|
|
3781
|
+
"multiple": true,
|
|
3782
|
+
"type": "option"
|
|
3783
|
+
},
|
|
3784
|
+
"offline": {
|
|
3785
|
+
"description": "Skip asset downloads",
|
|
3786
|
+
"name": "offline",
|
|
3787
|
+
"allowNo": false,
|
|
3788
|
+
"type": "boolean"
|
|
3789
|
+
},
|
|
3790
|
+
"library-file": {
|
|
3791
|
+
"description": "Use a local library XML file instead of fetching from instance",
|
|
3792
|
+
"name": "library-file",
|
|
3793
|
+
"hasDynamicHelp": false,
|
|
3794
|
+
"multiple": false,
|
|
3795
|
+
"type": "option"
|
|
3796
|
+
},
|
|
3797
|
+
"keep-orphans": {
|
|
3798
|
+
"description": "Include orphan components in export",
|
|
3799
|
+
"name": "keep-orphans",
|
|
3800
|
+
"allowNo": false,
|
|
3801
|
+
"type": "boolean"
|
|
3802
|
+
},
|
|
3803
|
+
"show-tree": {
|
|
3804
|
+
"description": "Display tree structure of exported content",
|
|
3805
|
+
"name": "show-tree",
|
|
3806
|
+
"allowNo": false,
|
|
3807
|
+
"type": "boolean"
|
|
3808
|
+
},
|
|
3809
|
+
"timeout": {
|
|
3810
|
+
"description": "Export job timeout in seconds",
|
|
3811
|
+
"name": "timeout",
|
|
3812
|
+
"hasDynamicHelp": false,
|
|
3813
|
+
"multiple": false,
|
|
3814
|
+
"type": "option"
|
|
3815
|
+
},
|
|
3816
|
+
"dry-run": {
|
|
3817
|
+
"description": "Preview export without downloading assets or writing files",
|
|
3818
|
+
"name": "dry-run",
|
|
3724
3819
|
"allowNo": false,
|
|
3725
3820
|
"type": "boolean"
|
|
3726
3821
|
}
|
|
3727
3822
|
},
|
|
3728
3823
|
"hasDynamicHelp": false,
|
|
3729
3824
|
"hiddenAliases": [],
|
|
3730
|
-
"id": "
|
|
3825
|
+
"id": "content:export",
|
|
3731
3826
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
3732
3827
|
"pluginName": "@salesforce/b2c-cli",
|
|
3733
3828
|
"pluginType": "core",
|
|
3734
|
-
"strict":
|
|
3829
|
+
"strict": false,
|
|
3735
3830
|
"enableJsonFlag": true,
|
|
3736
3831
|
"isESM": true,
|
|
3737
3832
|
"relativePath": [
|
|
3738
3833
|
"dist",
|
|
3739
3834
|
"commands",
|
|
3740
|
-
"
|
|
3741
|
-
"
|
|
3835
|
+
"content",
|
|
3836
|
+
"export.js"
|
|
3742
3837
|
]
|
|
3743
3838
|
},
|
|
3744
|
-
"
|
|
3839
|
+
"content:list": {
|
|
3745
3840
|
"aliases": [],
|
|
3746
|
-
"args": {
|
|
3747
|
-
|
|
3748
|
-
"description": "Search query for documentation (class name, module path, or partial match)",
|
|
3749
|
-
"name": "query",
|
|
3750
|
-
"required": true
|
|
3751
|
-
}
|
|
3752
|
-
},
|
|
3753
|
-
"description": "Read Script API documentation for a class or module",
|
|
3841
|
+
"args": {},
|
|
3842
|
+
"description": "List pages and content in a content library",
|
|
3754
3843
|
"examples": [
|
|
3755
|
-
"<%= config.bin %> <%= command.id %>
|
|
3756
|
-
"<%= config.bin %> <%= command.id %>
|
|
3757
|
-
"<%= config.bin %> <%= command.id %>
|
|
3758
|
-
"<%= config.bin %> <%= command.id %> ProductMgr --raw",
|
|
3759
|
-
"<%= config.bin %> <%= command.id %> ProductMgr --json"
|
|
3844
|
+
"<%= config.bin %> <%= command.id %> --library SharedLibrary",
|
|
3845
|
+
"<%= config.bin %> <%= command.id %> --library SharedLibrary --tree",
|
|
3846
|
+
"<%= config.bin %> <%= command.id %> --library RefArch --site-library --type page"
|
|
3760
3847
|
],
|
|
3761
3848
|
"flags": {
|
|
3762
3849
|
"json": {
|
|
@@ -3873,17 +3960,230 @@
|
|
|
3873
3960
|
"multiple": false,
|
|
3874
3961
|
"type": "option"
|
|
3875
3962
|
},
|
|
3876
|
-
"
|
|
3877
|
-
"
|
|
3878
|
-
"
|
|
3879
|
-
"
|
|
3963
|
+
"client-id": {
|
|
3964
|
+
"description": "Client ID for OAuth",
|
|
3965
|
+
"env": "SFCC_CLIENT_ID",
|
|
3966
|
+
"helpGroup": "AUTH",
|
|
3967
|
+
"name": "client-id",
|
|
3968
|
+
"hasDynamicHelp": false,
|
|
3969
|
+
"multiple": false,
|
|
3970
|
+
"type": "option"
|
|
3971
|
+
},
|
|
3972
|
+
"client-secret": {
|
|
3973
|
+
"description": "Client Secret for OAuth",
|
|
3974
|
+
"env": "SFCC_CLIENT_SECRET",
|
|
3975
|
+
"helpGroup": "AUTH",
|
|
3976
|
+
"name": "client-secret",
|
|
3977
|
+
"hasDynamicHelp": false,
|
|
3978
|
+
"multiple": false,
|
|
3979
|
+
"type": "option"
|
|
3980
|
+
},
|
|
3981
|
+
"auth-scope": {
|
|
3982
|
+
"description": "OAuth scopes to request (comma-separated)",
|
|
3983
|
+
"env": "SFCC_OAUTH_SCOPES",
|
|
3984
|
+
"helpGroup": "AUTH",
|
|
3985
|
+
"name": "auth-scope",
|
|
3986
|
+
"delimiter": ",",
|
|
3987
|
+
"hasDynamicHelp": false,
|
|
3988
|
+
"multiple": true,
|
|
3989
|
+
"type": "option"
|
|
3990
|
+
},
|
|
3991
|
+
"short-code": {
|
|
3992
|
+
"description": "SCAPI short code",
|
|
3993
|
+
"env": "SFCC_SHORTCODE",
|
|
3994
|
+
"helpGroup": "AUTH",
|
|
3995
|
+
"name": "short-code",
|
|
3996
|
+
"hasDynamicHelp": false,
|
|
3997
|
+
"multiple": false,
|
|
3998
|
+
"type": "option"
|
|
3999
|
+
},
|
|
4000
|
+
"tenant-id": {
|
|
4001
|
+
"aliases": [
|
|
4002
|
+
"tenant"
|
|
4003
|
+
],
|
|
4004
|
+
"description": "Organization/tenant ID",
|
|
4005
|
+
"env": "SFCC_TENANT_ID",
|
|
4006
|
+
"helpGroup": "AUTH",
|
|
4007
|
+
"name": "tenant-id",
|
|
4008
|
+
"hasDynamicHelp": false,
|
|
4009
|
+
"multiple": false,
|
|
4010
|
+
"type": "option"
|
|
4011
|
+
},
|
|
4012
|
+
"auth-methods": {
|
|
4013
|
+
"description": "Allowed auth methods in priority order (comma-separated)",
|
|
4014
|
+
"env": "SFCC_AUTH_METHODS",
|
|
4015
|
+
"exclusive": [
|
|
4016
|
+
"user-auth"
|
|
4017
|
+
],
|
|
4018
|
+
"helpGroup": "AUTH",
|
|
4019
|
+
"name": "auth-methods",
|
|
4020
|
+
"delimiter": ",",
|
|
4021
|
+
"hasDynamicHelp": false,
|
|
4022
|
+
"multiple": true,
|
|
4023
|
+
"options": [
|
|
4024
|
+
"client-credentials",
|
|
4025
|
+
"implicit",
|
|
4026
|
+
"basic",
|
|
4027
|
+
"api-key"
|
|
4028
|
+
],
|
|
4029
|
+
"type": "option"
|
|
4030
|
+
},
|
|
4031
|
+
"user-auth": {
|
|
4032
|
+
"description": "Use browser-based user authentication (implicit OAuth flow)",
|
|
4033
|
+
"exclusive": [
|
|
4034
|
+
"auth-methods"
|
|
4035
|
+
],
|
|
4036
|
+
"helpGroup": "AUTH",
|
|
4037
|
+
"name": "user-auth",
|
|
4038
|
+
"allowNo": false,
|
|
4039
|
+
"type": "boolean"
|
|
4040
|
+
},
|
|
4041
|
+
"account-manager-host": {
|
|
4042
|
+
"description": "Account Manager hostname for OAuth (default: account.demandware.com)",
|
|
4043
|
+
"env": "SFCC_ACCOUNT_MANAGER_HOST",
|
|
4044
|
+
"helpGroup": "AUTH",
|
|
4045
|
+
"name": "account-manager-host",
|
|
4046
|
+
"hasDynamicHelp": false,
|
|
4047
|
+
"multiple": false,
|
|
4048
|
+
"type": "option"
|
|
4049
|
+
},
|
|
4050
|
+
"server": {
|
|
4051
|
+
"char": "s",
|
|
4052
|
+
"description": "B2C instance hostname",
|
|
4053
|
+
"env": "SFCC_SERVER",
|
|
4054
|
+
"helpGroup": "INSTANCE",
|
|
4055
|
+
"name": "server",
|
|
4056
|
+
"hasDynamicHelp": false,
|
|
4057
|
+
"multiple": false,
|
|
4058
|
+
"type": "option"
|
|
4059
|
+
},
|
|
4060
|
+
"webdav-server": {
|
|
4061
|
+
"description": "Separate hostname for WebDAV (cert. hostname, etc)",
|
|
4062
|
+
"env": "SFCC_WEBDAV_SERVER",
|
|
4063
|
+
"helpGroup": "INSTANCE",
|
|
4064
|
+
"name": "webdav-server",
|
|
4065
|
+
"hasDynamicHelp": false,
|
|
4066
|
+
"multiple": false,
|
|
4067
|
+
"type": "option"
|
|
4068
|
+
},
|
|
4069
|
+
"code-version": {
|
|
4070
|
+
"char": "v",
|
|
4071
|
+
"description": "Code version",
|
|
4072
|
+
"env": "SFCC_CODE_VERSION",
|
|
4073
|
+
"helpGroup": "INSTANCE",
|
|
4074
|
+
"name": "code-version",
|
|
4075
|
+
"hasDynamicHelp": false,
|
|
4076
|
+
"multiple": false,
|
|
4077
|
+
"type": "option"
|
|
4078
|
+
},
|
|
4079
|
+
"username": {
|
|
4080
|
+
"char": "u",
|
|
4081
|
+
"description": "Username for Basic Auth (WebDAV)",
|
|
4082
|
+
"env": "SFCC_USERNAME",
|
|
4083
|
+
"helpGroup": "AUTH",
|
|
4084
|
+
"name": "username",
|
|
4085
|
+
"hasDynamicHelp": false,
|
|
4086
|
+
"multiple": false,
|
|
4087
|
+
"type": "option"
|
|
4088
|
+
},
|
|
4089
|
+
"password": {
|
|
4090
|
+
"char": "p",
|
|
4091
|
+
"description": "Password/access key for Basic Auth (WebDAV)",
|
|
4092
|
+
"env": "SFCC_PASSWORD",
|
|
4093
|
+
"helpGroup": "AUTH",
|
|
4094
|
+
"name": "password",
|
|
4095
|
+
"hasDynamicHelp": false,
|
|
4096
|
+
"multiple": false,
|
|
4097
|
+
"type": "option"
|
|
4098
|
+
},
|
|
4099
|
+
"certificate": {
|
|
4100
|
+
"description": "Path to PKCS12 certificate for two-factor auth",
|
|
4101
|
+
"env": "SFCC_CERTIFICATE",
|
|
4102
|
+
"helpGroup": "AUTH",
|
|
4103
|
+
"name": "certificate",
|
|
4104
|
+
"hasDynamicHelp": false,
|
|
4105
|
+
"multiple": false,
|
|
4106
|
+
"type": "option"
|
|
4107
|
+
},
|
|
4108
|
+
"passphrase": {
|
|
4109
|
+
"description": "Passphrase for the certificate",
|
|
4110
|
+
"env": "SFCC_CERTIFICATE_PASSPHRASE",
|
|
4111
|
+
"helpGroup": "AUTH",
|
|
4112
|
+
"name": "passphrase",
|
|
4113
|
+
"hasDynamicHelp": false,
|
|
4114
|
+
"multiple": false,
|
|
4115
|
+
"type": "option"
|
|
4116
|
+
},
|
|
4117
|
+
"selfsigned": {
|
|
4118
|
+
"description": "Allow self-signed server certificates",
|
|
4119
|
+
"env": "SFCC_SELFSIGNED",
|
|
4120
|
+
"helpGroup": "AUTH",
|
|
4121
|
+
"name": "selfsigned",
|
|
3880
4122
|
"allowNo": false,
|
|
3881
4123
|
"type": "boolean"
|
|
4124
|
+
},
|
|
4125
|
+
"verify": {
|
|
4126
|
+
"description": "Verify SSL certificates",
|
|
4127
|
+
"helpGroup": "AUTH",
|
|
4128
|
+
"name": "verify",
|
|
4129
|
+
"allowNo": true,
|
|
4130
|
+
"type": "boolean"
|
|
4131
|
+
},
|
|
4132
|
+
"library": {
|
|
4133
|
+
"description": "Library ID or site ID (also configurable via dw.json \"content-library\")",
|
|
4134
|
+
"name": "library",
|
|
4135
|
+
"hasDynamicHelp": false,
|
|
4136
|
+
"multiple": false,
|
|
4137
|
+
"type": "option"
|
|
4138
|
+
},
|
|
4139
|
+
"site-library": {
|
|
4140
|
+
"description": "Site-private library",
|
|
4141
|
+
"name": "site-library",
|
|
4142
|
+
"allowNo": false,
|
|
4143
|
+
"type": "boolean"
|
|
4144
|
+
},
|
|
4145
|
+
"library-file": {
|
|
4146
|
+
"description": "Local XML file",
|
|
4147
|
+
"name": "library-file",
|
|
4148
|
+
"hasDynamicHelp": false,
|
|
4149
|
+
"multiple": false,
|
|
4150
|
+
"type": "option"
|
|
4151
|
+
},
|
|
4152
|
+
"type": {
|
|
4153
|
+
"description": "Filter by node type",
|
|
4154
|
+
"name": "type",
|
|
4155
|
+
"hasDynamicHelp": false,
|
|
4156
|
+
"multiple": false,
|
|
4157
|
+
"options": [
|
|
4158
|
+
"page",
|
|
4159
|
+
"content",
|
|
4160
|
+
"component"
|
|
4161
|
+
],
|
|
4162
|
+
"type": "option"
|
|
4163
|
+
},
|
|
4164
|
+
"components": {
|
|
4165
|
+
"description": "Include components in output",
|
|
4166
|
+
"name": "components",
|
|
4167
|
+
"allowNo": false,
|
|
4168
|
+
"type": "boolean"
|
|
4169
|
+
},
|
|
4170
|
+
"tree": {
|
|
4171
|
+
"description": "Show tree structure",
|
|
4172
|
+
"name": "tree",
|
|
4173
|
+
"allowNo": false,
|
|
4174
|
+
"type": "boolean"
|
|
4175
|
+
},
|
|
4176
|
+
"timeout": {
|
|
4177
|
+
"description": "Job timeout in seconds",
|
|
4178
|
+
"name": "timeout",
|
|
4179
|
+
"hasDynamicHelp": false,
|
|
4180
|
+
"multiple": false,
|
|
4181
|
+
"type": "option"
|
|
3882
4182
|
}
|
|
3883
4183
|
},
|
|
3884
4184
|
"hasDynamicHelp": false,
|
|
3885
4185
|
"hiddenAliases": [],
|
|
3886
|
-
"id": "
|
|
4186
|
+
"id": "content:list",
|
|
3887
4187
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
3888
4188
|
"pluginName": "@salesforce/b2c-cli",
|
|
3889
4189
|
"pluginType": "core",
|
|
@@ -3893,26 +4193,26 @@
|
|
|
3893
4193
|
"relativePath": [
|
|
3894
4194
|
"dist",
|
|
3895
4195
|
"commands",
|
|
3896
|
-
"
|
|
3897
|
-
"
|
|
4196
|
+
"content",
|
|
4197
|
+
"list.js"
|
|
3898
4198
|
]
|
|
3899
4199
|
},
|
|
3900
|
-
"
|
|
4200
|
+
"content:validate": {
|
|
3901
4201
|
"aliases": [],
|
|
3902
4202
|
"args": {
|
|
3903
|
-
"
|
|
3904
|
-
"description": "
|
|
3905
|
-
"name": "
|
|
3906
|
-
"required":
|
|
4203
|
+
"files": {
|
|
4204
|
+
"description": "File(s), directory, or glob pattern(s) for JSON metadefinition files to validate",
|
|
4205
|
+
"name": "files",
|
|
4206
|
+
"required": true
|
|
3907
4207
|
}
|
|
3908
4208
|
},
|
|
3909
|
-
"description": "
|
|
4209
|
+
"description": "Validate Page Designer metadefinition JSON files against schemas",
|
|
3910
4210
|
"examples": [
|
|
3911
|
-
"<%= config.bin %> <%= command.id %>
|
|
3912
|
-
"<%= config.bin %> <%= command.id %>
|
|
3913
|
-
"<%= config.bin %> <%= command.id %>
|
|
3914
|
-
"<%= config.bin %> <%= command.id %>
|
|
3915
|
-
"
|
|
4211
|
+
"<%= config.bin %> <%= command.id %> cartridge/experience/pages/storePage.json",
|
|
4212
|
+
"<%= config.bin %> <%= command.id %> --type componenttype mycomponent.json",
|
|
4213
|
+
"<%= config.bin %> <%= command.id %> 'cartridge/experience/**/*.json'",
|
|
4214
|
+
"<%= config.bin %> <%= command.id %> cartridge/experience/",
|
|
4215
|
+
"<%= config.bin %> <%= command.id %> storePage.json --json"
|
|
3916
4216
|
],
|
|
3917
4217
|
"flags": {
|
|
3918
4218
|
"json": {
|
|
@@ -4029,217 +4329,56 @@
|
|
|
4029
4329
|
"multiple": false,
|
|
4030
4330
|
"type": "option"
|
|
4031
4331
|
},
|
|
4032
|
-
"
|
|
4033
|
-
"char": "
|
|
4034
|
-
"description": "
|
|
4035
|
-
"name": "
|
|
4036
|
-
"allowNo": false,
|
|
4037
|
-
"type": "boolean"
|
|
4038
|
-
},
|
|
4039
|
-
"path": {
|
|
4040
|
-
"char": "p",
|
|
4041
|
-
"description": "Print the filesystem path to the schema instead of its content",
|
|
4042
|
-
"name": "path",
|
|
4043
|
-
"allowNo": false,
|
|
4044
|
-
"type": "boolean"
|
|
4045
|
-
}
|
|
4046
|
-
},
|
|
4047
|
-
"hasDynamicHelp": false,
|
|
4048
|
-
"hiddenAliases": [],
|
|
4049
|
-
"id": "docs:schema",
|
|
4050
|
-
"pluginAlias": "@salesforce/b2c-cli",
|
|
4051
|
-
"pluginName": "@salesforce/b2c-cli",
|
|
4052
|
-
"pluginType": "core",
|
|
4053
|
-
"strict": true,
|
|
4054
|
-
"enableJsonFlag": true,
|
|
4055
|
-
"isESM": true,
|
|
4056
|
-
"relativePath": [
|
|
4057
|
-
"dist",
|
|
4058
|
-
"commands",
|
|
4059
|
-
"docs",
|
|
4060
|
-
"schema.js"
|
|
4061
|
-
]
|
|
4062
|
-
},
|
|
4063
|
-
"docs:search": {
|
|
4064
|
-
"aliases": [],
|
|
4065
|
-
"args": {
|
|
4066
|
-
"query": {
|
|
4067
|
-
"description": "Search query (fuzzy match against class/module names)",
|
|
4068
|
-
"name": "query",
|
|
4069
|
-
"required": false
|
|
4070
|
-
}
|
|
4071
|
-
},
|
|
4072
|
-
"description": "Search Script API documentation",
|
|
4073
|
-
"examples": [
|
|
4074
|
-
"<%= config.bin %> <%= command.id %> ProductMgr",
|
|
4075
|
-
"<%= config.bin %> <%= command.id %> \"catalog product\"",
|
|
4076
|
-
"<%= config.bin %> <%= command.id %> status --limit 5",
|
|
4077
|
-
"<%= config.bin %> <%= command.id %> --list"
|
|
4078
|
-
],
|
|
4079
|
-
"flags": {
|
|
4080
|
-
"json": {
|
|
4081
|
-
"description": "Output result as JSON",
|
|
4082
|
-
"helpGroup": "GLOBAL",
|
|
4083
|
-
"name": "json",
|
|
4084
|
-
"allowNo": false,
|
|
4085
|
-
"type": "boolean"
|
|
4086
|
-
},
|
|
4087
|
-
"log-level": {
|
|
4088
|
-
"description": "Set logging verbosity level",
|
|
4089
|
-
"env": "SFCC_LOG_LEVEL",
|
|
4090
|
-
"helpGroup": "GLOBAL",
|
|
4091
|
-
"name": "log-level",
|
|
4332
|
+
"type": {
|
|
4333
|
+
"char": "t",
|
|
4334
|
+
"description": "Schema type (auto-detected if not specified)",
|
|
4335
|
+
"name": "type",
|
|
4092
4336
|
"hasDynamicHelp": false,
|
|
4093
4337
|
"multiple": false,
|
|
4094
4338
|
"options": [
|
|
4095
|
-
"
|
|
4096
|
-
"
|
|
4097
|
-
"
|
|
4098
|
-
"
|
|
4099
|
-
"
|
|
4100
|
-
"
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
"debug": {
|
|
4105
|
-
"char": "D",
|
|
4106
|
-
"description": "Enable debug logging (shorthand for --log-level debug)",
|
|
4107
|
-
"env": "SFCC_DEBUG",
|
|
4108
|
-
"helpGroup": "GLOBAL",
|
|
4109
|
-
"name": "debug",
|
|
4110
|
-
"allowNo": false,
|
|
4111
|
-
"type": "boolean"
|
|
4112
|
-
},
|
|
4113
|
-
"jsonl": {
|
|
4114
|
-
"aliases": [
|
|
4115
|
-
"json-logs"
|
|
4116
|
-
],
|
|
4117
|
-
"description": "Output log messages as JSON lines",
|
|
4118
|
-
"env": "SFCC_JSON_LOGS",
|
|
4119
|
-
"helpGroup": "GLOBAL",
|
|
4120
|
-
"name": "jsonl",
|
|
4121
|
-
"allowNo": false,
|
|
4122
|
-
"type": "boolean"
|
|
4123
|
-
},
|
|
4124
|
-
"lang": {
|
|
4125
|
-
"char": "L",
|
|
4126
|
-
"description": "Language for messages (e.g., en, de). Also respects LANGUAGE env var.",
|
|
4127
|
-
"helpGroup": "GLOBAL",
|
|
4128
|
-
"name": "lang",
|
|
4129
|
-
"hasDynamicHelp": false,
|
|
4130
|
-
"multiple": false,
|
|
4131
|
-
"type": "option"
|
|
4132
|
-
},
|
|
4133
|
-
"config": {
|
|
4134
|
-
"description": "Path to config file (in dw.json format; defaults to ./dw.json)",
|
|
4135
|
-
"env": "SFCC_CONFIG",
|
|
4136
|
-
"helpGroup": "GLOBAL",
|
|
4137
|
-
"name": "config",
|
|
4138
|
-
"hasDynamicHelp": false,
|
|
4139
|
-
"multiple": false,
|
|
4140
|
-
"type": "option"
|
|
4141
|
-
},
|
|
4142
|
-
"instance": {
|
|
4143
|
-
"char": "i",
|
|
4144
|
-
"description": "Instance name from configuration file (i.e. dw.json, etc)",
|
|
4145
|
-
"env": "SFCC_INSTANCE",
|
|
4146
|
-
"helpGroup": "GLOBAL",
|
|
4147
|
-
"name": "instance",
|
|
4148
|
-
"hasDynamicHelp": false,
|
|
4149
|
-
"multiple": false,
|
|
4150
|
-
"type": "option"
|
|
4151
|
-
},
|
|
4152
|
-
"project-directory": {
|
|
4153
|
-
"aliases": [
|
|
4154
|
-
"working-directory"
|
|
4339
|
+
"pagetype",
|
|
4340
|
+
"componenttype",
|
|
4341
|
+
"aspecttype",
|
|
4342
|
+
"cmsrecord",
|
|
4343
|
+
"customeditortype",
|
|
4344
|
+
"contentassetpageconfig",
|
|
4345
|
+
"contentassetcomponentconfig",
|
|
4346
|
+
"contentassetstructuredcontentdata",
|
|
4347
|
+
"image"
|
|
4155
4348
|
],
|
|
4156
|
-
"description": "Project directory",
|
|
4157
|
-
"env": "SFCC_PROJECT_DIRECTORY",
|
|
4158
|
-
"helpGroup": "GLOBAL",
|
|
4159
|
-
"name": "project-directory",
|
|
4160
|
-
"hasDynamicHelp": false,
|
|
4161
|
-
"multiple": false,
|
|
4162
|
-
"type": "option"
|
|
4163
|
-
},
|
|
4164
|
-
"extra-query": {
|
|
4165
|
-
"description": "Extra query parameters as JSON (e.g., '{\"debug\":\"true\"}')",
|
|
4166
|
-
"env": "SFCC_EXTRA_QUERY",
|
|
4167
|
-
"helpGroup": "GLOBAL",
|
|
4168
|
-
"hidden": true,
|
|
4169
|
-
"name": "extra-query",
|
|
4170
|
-
"hasDynamicHelp": false,
|
|
4171
|
-
"multiple": false,
|
|
4172
|
-
"type": "option"
|
|
4173
|
-
},
|
|
4174
|
-
"extra-body": {
|
|
4175
|
-
"description": "Extra body fields to merge as JSON (e.g., '{\"_internal\":true}')",
|
|
4176
|
-
"env": "SFCC_EXTRA_BODY",
|
|
4177
|
-
"helpGroup": "GLOBAL",
|
|
4178
|
-
"hidden": true,
|
|
4179
|
-
"name": "extra-body",
|
|
4180
|
-
"hasDynamicHelp": false,
|
|
4181
|
-
"multiple": false,
|
|
4182
|
-
"type": "option"
|
|
4183
|
-
},
|
|
4184
|
-
"extra-headers": {
|
|
4185
|
-
"description": "Extra HTTP headers as JSON (e.g., '{\"X-Custom-Header\": \"value\"}')",
|
|
4186
|
-
"env": "SFCC_EXTRA_HEADERS",
|
|
4187
|
-
"helpGroup": "GLOBAL",
|
|
4188
|
-
"hidden": true,
|
|
4189
|
-
"name": "extra-headers",
|
|
4190
|
-
"hasDynamicHelp": false,
|
|
4191
|
-
"multiple": false,
|
|
4192
|
-
"type": "option"
|
|
4193
|
-
},
|
|
4194
|
-
"limit": {
|
|
4195
|
-
"char": "l",
|
|
4196
|
-
"description": "Maximum number of results to display",
|
|
4197
|
-
"name": "limit",
|
|
4198
|
-
"default": 20,
|
|
4199
|
-
"hasDynamicHelp": false,
|
|
4200
|
-
"multiple": false,
|
|
4201
4349
|
"type": "option"
|
|
4202
|
-
},
|
|
4203
|
-
"list": {
|
|
4204
|
-
"description": "List all available documentation entries",
|
|
4205
|
-
"name": "list",
|
|
4206
|
-
"allowNo": false,
|
|
4207
|
-
"type": "boolean"
|
|
4208
4350
|
}
|
|
4209
4351
|
},
|
|
4210
4352
|
"hasDynamicHelp": false,
|
|
4211
4353
|
"hiddenAliases": [],
|
|
4212
|
-
"id": "
|
|
4354
|
+
"id": "content:validate",
|
|
4213
4355
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
4214
4356
|
"pluginName": "@salesforce/b2c-cli",
|
|
4215
4357
|
"pluginType": "core",
|
|
4216
|
-
"strict":
|
|
4358
|
+
"strict": false,
|
|
4217
4359
|
"enableJsonFlag": true,
|
|
4218
4360
|
"isESM": true,
|
|
4219
4361
|
"relativePath": [
|
|
4220
4362
|
"dist",
|
|
4221
4363
|
"commands",
|
|
4222
|
-
"
|
|
4223
|
-
"
|
|
4364
|
+
"content",
|
|
4365
|
+
"validate.js"
|
|
4224
4366
|
]
|
|
4225
4367
|
},
|
|
4226
|
-
"
|
|
4368
|
+
"docs:download": {
|
|
4227
4369
|
"aliases": [],
|
|
4228
4370
|
"args": {
|
|
4229
|
-
"
|
|
4230
|
-
"description": "
|
|
4231
|
-
"name": "
|
|
4371
|
+
"output": {
|
|
4372
|
+
"description": "Output directory for extracted documentation",
|
|
4373
|
+
"name": "output",
|
|
4232
4374
|
"required": true
|
|
4233
4375
|
}
|
|
4234
4376
|
},
|
|
4235
|
-
"description": "
|
|
4377
|
+
"description": "Download Script API documentation from a B2C Commerce instance",
|
|
4236
4378
|
"examples": [
|
|
4237
|
-
"<%= config.bin %> <%= command.id %>
|
|
4238
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4239
|
-
"<%= config.bin %> <%= command.id %> --
|
|
4240
|
-
"<%= config.bin %> <%= command.id %> --library RefArch --site-library homepage -o ./export",
|
|
4241
|
-
"<%= config.bin %> <%= command.id %> --library SharedLibrary homepage --json",
|
|
4242
|
-
"<%= config.bin %> <%= command.id %> --library SharedLibrary homepage --dry-run"
|
|
4379
|
+
"<%= config.bin %> <%= command.id %> ./docs",
|
|
4380
|
+
"<%= config.bin %> <%= command.id %> ./docs --keep-archive",
|
|
4381
|
+
"<%= config.bin %> <%= command.id %> --server sandbox.demandware.net ./my-docs"
|
|
4243
4382
|
],
|
|
4244
4383
|
"flags": {
|
|
4245
4384
|
"json": {
|
|
@@ -4525,115 +4664,45 @@
|
|
|
4525
4664
|
"allowNo": true,
|
|
4526
4665
|
"type": "boolean"
|
|
4527
4666
|
},
|
|
4528
|
-
"
|
|
4529
|
-
"description": "
|
|
4530
|
-
"name": "
|
|
4531
|
-
"hasDynamicHelp": false,
|
|
4532
|
-
"multiple": false,
|
|
4533
|
-
"type": "option"
|
|
4534
|
-
},
|
|
4535
|
-
"output": {
|
|
4536
|
-
"char": "o",
|
|
4537
|
-
"description": "Output directory",
|
|
4538
|
-
"name": "output",
|
|
4539
|
-
"hasDynamicHelp": false,
|
|
4540
|
-
"multiple": false,
|
|
4541
|
-
"type": "option"
|
|
4542
|
-
},
|
|
4543
|
-
"site-library": {
|
|
4544
|
-
"description": "Library is a site-private library",
|
|
4545
|
-
"name": "site-library",
|
|
4546
|
-
"allowNo": false,
|
|
4547
|
-
"type": "boolean"
|
|
4548
|
-
},
|
|
4549
|
-
"asset-query": {
|
|
4550
|
-
"char": "q",
|
|
4551
|
-
"description": "JSON dot-paths for asset extraction",
|
|
4552
|
-
"name": "asset-query",
|
|
4553
|
-
"default": [
|
|
4554
|
-
"image.path"
|
|
4555
|
-
],
|
|
4556
|
-
"hasDynamicHelp": false,
|
|
4557
|
-
"multiple": true,
|
|
4558
|
-
"type": "option"
|
|
4559
|
-
},
|
|
4560
|
-
"regex": {
|
|
4561
|
-
"char": "r",
|
|
4562
|
-
"description": "Treat page IDs as regular expressions",
|
|
4563
|
-
"name": "regex",
|
|
4564
|
-
"allowNo": false,
|
|
4565
|
-
"type": "boolean"
|
|
4566
|
-
},
|
|
4567
|
-
"folder": {
|
|
4568
|
-
"description": "Filter by folder classification",
|
|
4569
|
-
"name": "folder",
|
|
4570
|
-
"hasDynamicHelp": false,
|
|
4571
|
-
"multiple": true,
|
|
4572
|
-
"type": "option"
|
|
4573
|
-
},
|
|
4574
|
-
"offline": {
|
|
4575
|
-
"description": "Skip asset downloads",
|
|
4576
|
-
"name": "offline",
|
|
4577
|
-
"allowNo": false,
|
|
4578
|
-
"type": "boolean"
|
|
4579
|
-
},
|
|
4580
|
-
"library-file": {
|
|
4581
|
-
"description": "Use a local library XML file instead of fetching from instance",
|
|
4582
|
-
"name": "library-file",
|
|
4583
|
-
"hasDynamicHelp": false,
|
|
4584
|
-
"multiple": false,
|
|
4585
|
-
"type": "option"
|
|
4586
|
-
},
|
|
4587
|
-
"keep-orphans": {
|
|
4588
|
-
"description": "Include orphan components in export",
|
|
4589
|
-
"name": "keep-orphans",
|
|
4590
|
-
"allowNo": false,
|
|
4591
|
-
"type": "boolean"
|
|
4592
|
-
},
|
|
4593
|
-
"show-tree": {
|
|
4594
|
-
"description": "Display tree structure of exported content",
|
|
4595
|
-
"name": "show-tree",
|
|
4596
|
-
"allowNo": false,
|
|
4597
|
-
"type": "boolean"
|
|
4598
|
-
},
|
|
4599
|
-
"timeout": {
|
|
4600
|
-
"description": "Export job timeout in seconds",
|
|
4601
|
-
"name": "timeout",
|
|
4602
|
-
"hasDynamicHelp": false,
|
|
4603
|
-
"multiple": false,
|
|
4604
|
-
"type": "option"
|
|
4605
|
-
},
|
|
4606
|
-
"dry-run": {
|
|
4607
|
-
"description": "Preview export without downloading assets or writing files",
|
|
4608
|
-
"name": "dry-run",
|
|
4667
|
+
"keep-archive": {
|
|
4668
|
+
"description": "Keep the downloaded archive file",
|
|
4669
|
+
"name": "keep-archive",
|
|
4609
4670
|
"allowNo": false,
|
|
4610
4671
|
"type": "boolean"
|
|
4611
4672
|
}
|
|
4612
4673
|
},
|
|
4613
4674
|
"hasDynamicHelp": false,
|
|
4614
4675
|
"hiddenAliases": [],
|
|
4615
|
-
"id": "
|
|
4676
|
+
"id": "docs:download",
|
|
4616
4677
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
4617
4678
|
"pluginName": "@salesforce/b2c-cli",
|
|
4618
4679
|
"pluginType": "core",
|
|
4619
|
-
"strict":
|
|
4680
|
+
"strict": true,
|
|
4620
4681
|
"enableJsonFlag": true,
|
|
4621
4682
|
"isESM": true,
|
|
4622
4683
|
"relativePath": [
|
|
4623
4684
|
"dist",
|
|
4624
4685
|
"commands",
|
|
4625
|
-
"
|
|
4626
|
-
"
|
|
4686
|
+
"docs",
|
|
4687
|
+
"download.js"
|
|
4627
4688
|
]
|
|
4628
4689
|
},
|
|
4629
|
-
"
|
|
4690
|
+
"docs:read": {
|
|
4630
4691
|
"aliases": [],
|
|
4631
|
-
"args": {
|
|
4632
|
-
|
|
4692
|
+
"args": {
|
|
4693
|
+
"query": {
|
|
4694
|
+
"description": "Search query for documentation (class name, module path, or partial match)",
|
|
4695
|
+
"name": "query",
|
|
4696
|
+
"required": true
|
|
4697
|
+
}
|
|
4698
|
+
},
|
|
4699
|
+
"description": "Read Script API documentation for a class or module",
|
|
4633
4700
|
"examples": [
|
|
4634
|
-
"<%= config.bin %> <%= command.id %>
|
|
4635
|
-
"<%= config.bin %> <%= command.id %>
|
|
4636
|
-
"<%= config.bin %> <%= command.id %>
|
|
4701
|
+
"<%= config.bin %> <%= command.id %> ProductMgr",
|
|
4702
|
+
"<%= config.bin %> <%= command.id %> dw.catalog.ProductMgr",
|
|
4703
|
+
"<%= config.bin %> <%= command.id %> \"dw system Status\"",
|
|
4704
|
+
"<%= config.bin %> <%= command.id %> ProductMgr --raw",
|
|
4705
|
+
"<%= config.bin %> <%= command.id %> ProductMgr --json"
|
|
4637
4706
|
],
|
|
4638
4707
|
"flags": {
|
|
4639
4708
|
"json": {
|
|
@@ -4750,230 +4819,180 @@
|
|
|
4750
4819
|
"multiple": false,
|
|
4751
4820
|
"type": "option"
|
|
4752
4821
|
},
|
|
4753
|
-
"
|
|
4754
|
-
"
|
|
4755
|
-
"
|
|
4756
|
-
"
|
|
4757
|
-
"
|
|
4822
|
+
"raw": {
|
|
4823
|
+
"char": "r",
|
|
4824
|
+
"description": "Output raw markdown without terminal formatting",
|
|
4825
|
+
"name": "raw",
|
|
4826
|
+
"allowNo": false,
|
|
4827
|
+
"type": "boolean"
|
|
4828
|
+
}
|
|
4829
|
+
},
|
|
4830
|
+
"hasDynamicHelp": false,
|
|
4831
|
+
"hiddenAliases": [],
|
|
4832
|
+
"id": "docs:read",
|
|
4833
|
+
"pluginAlias": "@salesforce/b2c-cli",
|
|
4834
|
+
"pluginName": "@salesforce/b2c-cli",
|
|
4835
|
+
"pluginType": "core",
|
|
4836
|
+
"strict": true,
|
|
4837
|
+
"enableJsonFlag": true,
|
|
4838
|
+
"isESM": true,
|
|
4839
|
+
"relativePath": [
|
|
4840
|
+
"dist",
|
|
4841
|
+
"commands",
|
|
4842
|
+
"docs",
|
|
4843
|
+
"read.js"
|
|
4844
|
+
]
|
|
4845
|
+
},
|
|
4846
|
+
"docs:schema": {
|
|
4847
|
+
"aliases": [],
|
|
4848
|
+
"args": {
|
|
4849
|
+
"query": {
|
|
4850
|
+
"description": "Schema name or partial match (e.g., \"catalog\", \"order\")",
|
|
4851
|
+
"name": "query",
|
|
4852
|
+
"required": false
|
|
4853
|
+
}
|
|
4854
|
+
},
|
|
4855
|
+
"description": "Read an XSD schema file",
|
|
4856
|
+
"examples": [
|
|
4857
|
+
"<%= config.bin %> <%= command.id %> catalog",
|
|
4858
|
+
"<%= config.bin %> <%= command.id %> order",
|
|
4859
|
+
"<%= config.bin %> <%= command.id %> --list",
|
|
4860
|
+
"<%= config.bin %> <%= command.id %> catalog --json",
|
|
4861
|
+
"xmllint --schema \"$(<%= config.bin %> <%= command.id %> catalog --path)\" file.xml --noout"
|
|
4862
|
+
],
|
|
4863
|
+
"flags": {
|
|
4864
|
+
"json": {
|
|
4865
|
+
"description": "Output result as JSON",
|
|
4866
|
+
"helpGroup": "GLOBAL",
|
|
4867
|
+
"name": "json",
|
|
4868
|
+
"allowNo": false,
|
|
4869
|
+
"type": "boolean"
|
|
4870
|
+
},
|
|
4871
|
+
"log-level": {
|
|
4872
|
+
"description": "Set logging verbosity level",
|
|
4873
|
+
"env": "SFCC_LOG_LEVEL",
|
|
4874
|
+
"helpGroup": "GLOBAL",
|
|
4875
|
+
"name": "log-level",
|
|
4758
4876
|
"hasDynamicHelp": false,
|
|
4759
4877
|
"multiple": false,
|
|
4878
|
+
"options": [
|
|
4879
|
+
"trace",
|
|
4880
|
+
"debug",
|
|
4881
|
+
"info",
|
|
4882
|
+
"warn",
|
|
4883
|
+
"error",
|
|
4884
|
+
"silent"
|
|
4885
|
+
],
|
|
4760
4886
|
"type": "option"
|
|
4761
4887
|
},
|
|
4762
|
-
"
|
|
4763
|
-
"
|
|
4764
|
-
"
|
|
4765
|
-
"
|
|
4766
|
-
"
|
|
4888
|
+
"debug": {
|
|
4889
|
+
"char": "D",
|
|
4890
|
+
"description": "Enable debug logging (shorthand for --log-level debug)",
|
|
4891
|
+
"env": "SFCC_DEBUG",
|
|
4892
|
+
"helpGroup": "GLOBAL",
|
|
4893
|
+
"name": "debug",
|
|
4894
|
+
"allowNo": false,
|
|
4895
|
+
"type": "boolean"
|
|
4896
|
+
},
|
|
4897
|
+
"jsonl": {
|
|
4898
|
+
"aliases": [
|
|
4899
|
+
"json-logs"
|
|
4900
|
+
],
|
|
4901
|
+
"description": "Output log messages as JSON lines",
|
|
4902
|
+
"env": "SFCC_JSON_LOGS",
|
|
4903
|
+
"helpGroup": "GLOBAL",
|
|
4904
|
+
"name": "jsonl",
|
|
4905
|
+
"allowNo": false,
|
|
4906
|
+
"type": "boolean"
|
|
4907
|
+
},
|
|
4908
|
+
"lang": {
|
|
4909
|
+
"char": "L",
|
|
4910
|
+
"description": "Language for messages (e.g., en, de). Also respects LANGUAGE env var.",
|
|
4911
|
+
"helpGroup": "GLOBAL",
|
|
4912
|
+
"name": "lang",
|
|
4767
4913
|
"hasDynamicHelp": false,
|
|
4768
4914
|
"multiple": false,
|
|
4769
4915
|
"type": "option"
|
|
4770
4916
|
},
|
|
4771
|
-
"
|
|
4772
|
-
"description": "
|
|
4773
|
-
"env": "
|
|
4774
|
-
"helpGroup": "
|
|
4775
|
-
"name": "
|
|
4776
|
-
"delimiter": ",",
|
|
4917
|
+
"config": {
|
|
4918
|
+
"description": "Path to config file (in dw.json format; defaults to ./dw.json)",
|
|
4919
|
+
"env": "SFCC_CONFIG",
|
|
4920
|
+
"helpGroup": "GLOBAL",
|
|
4921
|
+
"name": "config",
|
|
4777
4922
|
"hasDynamicHelp": false,
|
|
4778
|
-
"multiple":
|
|
4923
|
+
"multiple": false,
|
|
4779
4924
|
"type": "option"
|
|
4780
4925
|
},
|
|
4781
|
-
"
|
|
4782
|
-
"
|
|
4783
|
-
"
|
|
4784
|
-
"
|
|
4785
|
-
"
|
|
4926
|
+
"instance": {
|
|
4927
|
+
"char": "i",
|
|
4928
|
+
"description": "Instance name from configuration file (i.e. dw.json, etc)",
|
|
4929
|
+
"env": "SFCC_INSTANCE",
|
|
4930
|
+
"helpGroup": "GLOBAL",
|
|
4931
|
+
"name": "instance",
|
|
4786
4932
|
"hasDynamicHelp": false,
|
|
4787
4933
|
"multiple": false,
|
|
4788
4934
|
"type": "option"
|
|
4789
4935
|
},
|
|
4790
|
-
"
|
|
4936
|
+
"project-directory": {
|
|
4791
4937
|
"aliases": [
|
|
4792
|
-
"
|
|
4938
|
+
"working-directory"
|
|
4793
4939
|
],
|
|
4794
|
-
"description": "
|
|
4795
|
-
"env": "
|
|
4796
|
-
"helpGroup": "
|
|
4797
|
-
"name": "
|
|
4940
|
+
"description": "Project directory",
|
|
4941
|
+
"env": "SFCC_PROJECT_DIRECTORY",
|
|
4942
|
+
"helpGroup": "GLOBAL",
|
|
4943
|
+
"name": "project-directory",
|
|
4798
4944
|
"hasDynamicHelp": false,
|
|
4799
4945
|
"multiple": false,
|
|
4800
4946
|
"type": "option"
|
|
4801
4947
|
},
|
|
4802
|
-
"
|
|
4803
|
-
"description": "
|
|
4804
|
-
"env": "
|
|
4805
|
-
"
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
"helpGroup": "AUTH",
|
|
4809
|
-
"name": "auth-methods",
|
|
4810
|
-
"delimiter": ",",
|
|
4948
|
+
"extra-query": {
|
|
4949
|
+
"description": "Extra query parameters as JSON (e.g., '{\"debug\":\"true\"}')",
|
|
4950
|
+
"env": "SFCC_EXTRA_QUERY",
|
|
4951
|
+
"helpGroup": "GLOBAL",
|
|
4952
|
+
"hidden": true,
|
|
4953
|
+
"name": "extra-query",
|
|
4811
4954
|
"hasDynamicHelp": false,
|
|
4812
|
-
"multiple":
|
|
4813
|
-
"options": [
|
|
4814
|
-
"client-credentials",
|
|
4815
|
-
"implicit",
|
|
4816
|
-
"basic",
|
|
4817
|
-
"api-key"
|
|
4818
|
-
],
|
|
4955
|
+
"multiple": false,
|
|
4819
4956
|
"type": "option"
|
|
4820
4957
|
},
|
|
4821
|
-
"
|
|
4822
|
-
"description": "
|
|
4823
|
-
"
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
"
|
|
4827
|
-
"name": "user-auth",
|
|
4828
|
-
"allowNo": false,
|
|
4829
|
-
"type": "boolean"
|
|
4830
|
-
},
|
|
4831
|
-
"account-manager-host": {
|
|
4832
|
-
"description": "Account Manager hostname for OAuth (default: account.demandware.com)",
|
|
4833
|
-
"env": "SFCC_ACCOUNT_MANAGER_HOST",
|
|
4834
|
-
"helpGroup": "AUTH",
|
|
4835
|
-
"name": "account-manager-host",
|
|
4958
|
+
"extra-body": {
|
|
4959
|
+
"description": "Extra body fields to merge as JSON (e.g., '{\"_internal\":true}')",
|
|
4960
|
+
"env": "SFCC_EXTRA_BODY",
|
|
4961
|
+
"helpGroup": "GLOBAL",
|
|
4962
|
+
"hidden": true,
|
|
4963
|
+
"name": "extra-body",
|
|
4836
4964
|
"hasDynamicHelp": false,
|
|
4837
4965
|
"multiple": false,
|
|
4838
4966
|
"type": "option"
|
|
4839
4967
|
},
|
|
4840
|
-
"
|
|
4841
|
-
"
|
|
4842
|
-
"
|
|
4843
|
-
"
|
|
4844
|
-
"
|
|
4845
|
-
"name": "
|
|
4968
|
+
"extra-headers": {
|
|
4969
|
+
"description": "Extra HTTP headers as JSON (e.g., '{\"X-Custom-Header\": \"value\"}')",
|
|
4970
|
+
"env": "SFCC_EXTRA_HEADERS",
|
|
4971
|
+
"helpGroup": "GLOBAL",
|
|
4972
|
+
"hidden": true,
|
|
4973
|
+
"name": "extra-headers",
|
|
4846
4974
|
"hasDynamicHelp": false,
|
|
4847
4975
|
"multiple": false,
|
|
4848
4976
|
"type": "option"
|
|
4849
4977
|
},
|
|
4850
|
-
"
|
|
4851
|
-
"
|
|
4852
|
-
"
|
|
4853
|
-
"
|
|
4854
|
-
"name": "webdav-server",
|
|
4855
|
-
"hasDynamicHelp": false,
|
|
4856
|
-
"multiple": false,
|
|
4857
|
-
"type": "option"
|
|
4858
|
-
},
|
|
4859
|
-
"code-version": {
|
|
4860
|
-
"char": "v",
|
|
4861
|
-
"description": "Code version",
|
|
4862
|
-
"env": "SFCC_CODE_VERSION",
|
|
4863
|
-
"helpGroup": "INSTANCE",
|
|
4864
|
-
"name": "code-version",
|
|
4865
|
-
"hasDynamicHelp": false,
|
|
4866
|
-
"multiple": false,
|
|
4867
|
-
"type": "option"
|
|
4868
|
-
},
|
|
4869
|
-
"username": {
|
|
4870
|
-
"char": "u",
|
|
4871
|
-
"description": "Username for Basic Auth (WebDAV)",
|
|
4872
|
-
"env": "SFCC_USERNAME",
|
|
4873
|
-
"helpGroup": "AUTH",
|
|
4874
|
-
"name": "username",
|
|
4875
|
-
"hasDynamicHelp": false,
|
|
4876
|
-
"multiple": false,
|
|
4877
|
-
"type": "option"
|
|
4878
|
-
},
|
|
4879
|
-
"password": {
|
|
4880
|
-
"char": "p",
|
|
4881
|
-
"description": "Password/access key for Basic Auth (WebDAV)",
|
|
4882
|
-
"env": "SFCC_PASSWORD",
|
|
4883
|
-
"helpGroup": "AUTH",
|
|
4884
|
-
"name": "password",
|
|
4885
|
-
"hasDynamicHelp": false,
|
|
4886
|
-
"multiple": false,
|
|
4887
|
-
"type": "option"
|
|
4888
|
-
},
|
|
4889
|
-
"certificate": {
|
|
4890
|
-
"description": "Path to PKCS12 certificate for two-factor auth",
|
|
4891
|
-
"env": "SFCC_CERTIFICATE",
|
|
4892
|
-
"helpGroup": "AUTH",
|
|
4893
|
-
"name": "certificate",
|
|
4894
|
-
"hasDynamicHelp": false,
|
|
4895
|
-
"multiple": false,
|
|
4896
|
-
"type": "option"
|
|
4897
|
-
},
|
|
4898
|
-
"passphrase": {
|
|
4899
|
-
"description": "Passphrase for the certificate",
|
|
4900
|
-
"env": "SFCC_CERTIFICATE_PASSPHRASE",
|
|
4901
|
-
"helpGroup": "AUTH",
|
|
4902
|
-
"name": "passphrase",
|
|
4903
|
-
"hasDynamicHelp": false,
|
|
4904
|
-
"multiple": false,
|
|
4905
|
-
"type": "option"
|
|
4906
|
-
},
|
|
4907
|
-
"selfsigned": {
|
|
4908
|
-
"description": "Allow self-signed server certificates",
|
|
4909
|
-
"env": "SFCC_SELFSIGNED",
|
|
4910
|
-
"helpGroup": "AUTH",
|
|
4911
|
-
"name": "selfsigned",
|
|
4912
|
-
"allowNo": false,
|
|
4913
|
-
"type": "boolean"
|
|
4914
|
-
},
|
|
4915
|
-
"verify": {
|
|
4916
|
-
"description": "Verify SSL certificates",
|
|
4917
|
-
"helpGroup": "AUTH",
|
|
4918
|
-
"name": "verify",
|
|
4919
|
-
"allowNo": true,
|
|
4920
|
-
"type": "boolean"
|
|
4921
|
-
},
|
|
4922
|
-
"library": {
|
|
4923
|
-
"description": "Library ID or site ID (also configurable via dw.json \"content-library\")",
|
|
4924
|
-
"name": "library",
|
|
4925
|
-
"hasDynamicHelp": false,
|
|
4926
|
-
"multiple": false,
|
|
4927
|
-
"type": "option"
|
|
4928
|
-
},
|
|
4929
|
-
"site-library": {
|
|
4930
|
-
"description": "Site-private library",
|
|
4931
|
-
"name": "site-library",
|
|
4932
|
-
"allowNo": false,
|
|
4933
|
-
"type": "boolean"
|
|
4934
|
-
},
|
|
4935
|
-
"library-file": {
|
|
4936
|
-
"description": "Local XML file",
|
|
4937
|
-
"name": "library-file",
|
|
4938
|
-
"hasDynamicHelp": false,
|
|
4939
|
-
"multiple": false,
|
|
4940
|
-
"type": "option"
|
|
4941
|
-
},
|
|
4942
|
-
"type": {
|
|
4943
|
-
"description": "Filter by node type",
|
|
4944
|
-
"name": "type",
|
|
4945
|
-
"hasDynamicHelp": false,
|
|
4946
|
-
"multiple": false,
|
|
4947
|
-
"options": [
|
|
4948
|
-
"page",
|
|
4949
|
-
"content",
|
|
4950
|
-
"component"
|
|
4951
|
-
],
|
|
4952
|
-
"type": "option"
|
|
4953
|
-
},
|
|
4954
|
-
"components": {
|
|
4955
|
-
"description": "Include components in output",
|
|
4956
|
-
"name": "components",
|
|
4978
|
+
"list": {
|
|
4979
|
+
"char": "l",
|
|
4980
|
+
"description": "List all available schemas",
|
|
4981
|
+
"name": "list",
|
|
4957
4982
|
"allowNo": false,
|
|
4958
4983
|
"type": "boolean"
|
|
4959
4984
|
},
|
|
4960
|
-
"
|
|
4961
|
-
"
|
|
4962
|
-
"
|
|
4985
|
+
"path": {
|
|
4986
|
+
"char": "p",
|
|
4987
|
+
"description": "Print the filesystem path to the schema instead of its content",
|
|
4988
|
+
"name": "path",
|
|
4963
4989
|
"allowNo": false,
|
|
4964
4990
|
"type": "boolean"
|
|
4965
|
-
},
|
|
4966
|
-
"timeout": {
|
|
4967
|
-
"description": "Job timeout in seconds",
|
|
4968
|
-
"name": "timeout",
|
|
4969
|
-
"hasDynamicHelp": false,
|
|
4970
|
-
"multiple": false,
|
|
4971
|
-
"type": "option"
|
|
4972
4991
|
}
|
|
4973
4992
|
},
|
|
4974
4993
|
"hasDynamicHelp": false,
|
|
4975
4994
|
"hiddenAliases": [],
|
|
4976
|
-
"id": "
|
|
4995
|
+
"id": "docs:schema",
|
|
4977
4996
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
4978
4997
|
"pluginName": "@salesforce/b2c-cli",
|
|
4979
4998
|
"pluginType": "core",
|
|
@@ -4983,26 +5002,25 @@
|
|
|
4983
5002
|
"relativePath": [
|
|
4984
5003
|
"dist",
|
|
4985
5004
|
"commands",
|
|
4986
|
-
"
|
|
4987
|
-
"
|
|
5005
|
+
"docs",
|
|
5006
|
+
"schema.js"
|
|
4988
5007
|
]
|
|
4989
5008
|
},
|
|
4990
|
-
"
|
|
5009
|
+
"docs:search": {
|
|
4991
5010
|
"aliases": [],
|
|
4992
5011
|
"args": {
|
|
4993
|
-
"
|
|
4994
|
-
"description": "
|
|
4995
|
-
"name": "
|
|
4996
|
-
"required":
|
|
5012
|
+
"query": {
|
|
5013
|
+
"description": "Search query (fuzzy match against class/module names)",
|
|
5014
|
+
"name": "query",
|
|
5015
|
+
"required": false
|
|
4997
5016
|
}
|
|
4998
5017
|
},
|
|
4999
|
-
"description": "
|
|
5018
|
+
"description": "Search Script API documentation",
|
|
5000
5019
|
"examples": [
|
|
5001
|
-
"<%= config.bin %> <%= command.id %>
|
|
5002
|
-
"<%= config.bin %> <%= command.id %>
|
|
5003
|
-
"<%= config.bin %> <%= command.id %>
|
|
5004
|
-
"<%= config.bin %> <%= command.id %>
|
|
5005
|
-
"<%= config.bin %> <%= command.id %> storePage.json --json"
|
|
5020
|
+
"<%= config.bin %> <%= command.id %> ProductMgr",
|
|
5021
|
+
"<%= config.bin %> <%= command.id %> \"catalog product\"",
|
|
5022
|
+
"<%= config.bin %> <%= command.id %> status --limit 5",
|
|
5023
|
+
"<%= config.bin %> <%= command.id %> --list"
|
|
5006
5024
|
],
|
|
5007
5025
|
"flags": {
|
|
5008
5026
|
"json": {
|
|
@@ -5119,40 +5137,36 @@
|
|
|
5119
5137
|
"multiple": false,
|
|
5120
5138
|
"type": "option"
|
|
5121
5139
|
},
|
|
5122
|
-
"
|
|
5123
|
-
"char": "
|
|
5124
|
-
"description": "
|
|
5125
|
-
"name": "
|
|
5140
|
+
"limit": {
|
|
5141
|
+
"char": "l",
|
|
5142
|
+
"description": "Maximum number of results to display",
|
|
5143
|
+
"name": "limit",
|
|
5144
|
+
"default": 20,
|
|
5126
5145
|
"hasDynamicHelp": false,
|
|
5127
5146
|
"multiple": false,
|
|
5128
|
-
"options": [
|
|
5129
|
-
"pagetype",
|
|
5130
|
-
"componenttype",
|
|
5131
|
-
"aspecttype",
|
|
5132
|
-
"cmsrecord",
|
|
5133
|
-
"customeditortype",
|
|
5134
|
-
"contentassetpageconfig",
|
|
5135
|
-
"contentassetcomponentconfig",
|
|
5136
|
-
"contentassetstructuredcontentdata",
|
|
5137
|
-
"image"
|
|
5138
|
-
],
|
|
5139
5147
|
"type": "option"
|
|
5148
|
+
},
|
|
5149
|
+
"list": {
|
|
5150
|
+
"description": "List all available documentation entries",
|
|
5151
|
+
"name": "list",
|
|
5152
|
+
"allowNo": false,
|
|
5153
|
+
"type": "boolean"
|
|
5140
5154
|
}
|
|
5141
5155
|
},
|
|
5142
5156
|
"hasDynamicHelp": false,
|
|
5143
5157
|
"hiddenAliases": [],
|
|
5144
|
-
"id": "
|
|
5158
|
+
"id": "docs:search",
|
|
5145
5159
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
5146
5160
|
"pluginName": "@salesforce/b2c-cli",
|
|
5147
5161
|
"pluginType": "core",
|
|
5148
|
-
"strict":
|
|
5162
|
+
"strict": true,
|
|
5149
5163
|
"enableJsonFlag": true,
|
|
5150
5164
|
"isESM": true,
|
|
5151
5165
|
"relativePath": [
|
|
5152
5166
|
"dist",
|
|
5153
5167
|
"commands",
|
|
5154
|
-
"
|
|
5155
|
-
"
|
|
5168
|
+
"docs",
|
|
5169
|
+
"search.js"
|
|
5156
5170
|
]
|
|
5157
5171
|
},
|
|
5158
5172
|
"job:export": {
|
|
@@ -8754,104 +8768,736 @@
|
|
|
8754
8768
|
"multiple": false,
|
|
8755
8769
|
"type": "option"
|
|
8756
8770
|
},
|
|
8757
|
-
"api-key": {
|
|
8758
|
-
"description": "MRT API key",
|
|
8759
|
-
"env": "MRT_API_KEY",
|
|
8771
|
+
"api-key": {
|
|
8772
|
+
"description": "MRT API key",
|
|
8773
|
+
"env": "MRT_API_KEY",
|
|
8774
|
+
"helpGroup": "AUTH",
|
|
8775
|
+
"name": "api-key",
|
|
8776
|
+
"hasDynamicHelp": false,
|
|
8777
|
+
"multiple": false,
|
|
8778
|
+
"type": "option"
|
|
8779
|
+
},
|
|
8780
|
+
"project": {
|
|
8781
|
+
"char": "p",
|
|
8782
|
+
"description": "MRT project slug (or set mrtProject in dw.json)",
|
|
8783
|
+
"env": "MRT_PROJECT",
|
|
8784
|
+
"name": "project",
|
|
8785
|
+
"hasDynamicHelp": false,
|
|
8786
|
+
"multiple": false,
|
|
8787
|
+
"type": "option"
|
|
8788
|
+
},
|
|
8789
|
+
"environment": {
|
|
8790
|
+
"aliases": [
|
|
8791
|
+
"target"
|
|
8792
|
+
],
|
|
8793
|
+
"char": "e",
|
|
8794
|
+
"description": "MRT environment (e.g., staging, production; or set mrtEnvironment in dw.json)",
|
|
8795
|
+
"env": "MRT_ENVIRONMENT",
|
|
8796
|
+
"name": "environment",
|
|
8797
|
+
"hasDynamicHelp": false,
|
|
8798
|
+
"multiple": false,
|
|
8799
|
+
"type": "option"
|
|
8800
|
+
},
|
|
8801
|
+
"cloud-origin": {
|
|
8802
|
+
"description": "MRT cloud origin URL (or set mrtOrigin in dw.json; default: https://cloud.mobify.com)",
|
|
8803
|
+
"env": "MRT_CLOUD_ORIGIN",
|
|
8804
|
+
"name": "cloud-origin",
|
|
8805
|
+
"hasDynamicHelp": false,
|
|
8806
|
+
"multiple": false,
|
|
8807
|
+
"type": "option"
|
|
8808
|
+
},
|
|
8809
|
+
"credentials-file": {
|
|
8810
|
+
"description": "Path to MRT credentials file (overrides default ~/.mobify)",
|
|
8811
|
+
"env": "MRT_CREDENTIALS_FILE",
|
|
8812
|
+
"name": "credentials-file",
|
|
8813
|
+
"hasDynamicHelp": false,
|
|
8814
|
+
"multiple": false,
|
|
8815
|
+
"type": "option"
|
|
8816
|
+
},
|
|
8817
|
+
"level": {
|
|
8818
|
+
"description": "Filter by log level (ERROR, WARN, INFO, DEBUG, etc.)",
|
|
8819
|
+
"name": "level",
|
|
8820
|
+
"hasDynamicHelp": false,
|
|
8821
|
+
"multiple": true,
|
|
8822
|
+
"type": "option"
|
|
8823
|
+
},
|
|
8824
|
+
"search": {
|
|
8825
|
+
"char": "g",
|
|
8826
|
+
"description": "Filter entries matching this regex pattern (case-insensitive)",
|
|
8827
|
+
"name": "search",
|
|
8828
|
+
"hasDynamicHelp": false,
|
|
8829
|
+
"multiple": false,
|
|
8830
|
+
"type": "option"
|
|
8831
|
+
},
|
|
8832
|
+
"no-color": {
|
|
8833
|
+
"description": "Disable colored output",
|
|
8834
|
+
"name": "no-color",
|
|
8835
|
+
"allowNo": false,
|
|
8836
|
+
"type": "boolean"
|
|
8837
|
+
}
|
|
8838
|
+
},
|
|
8839
|
+
"hasDynamicHelp": false,
|
|
8840
|
+
"hiddenAliases": [],
|
|
8841
|
+
"id": "mrt:tail-logs",
|
|
8842
|
+
"pluginAlias": "@salesforce/b2c-cli",
|
|
8843
|
+
"pluginName": "@salesforce/b2c-cli",
|
|
8844
|
+
"pluginType": "core",
|
|
8845
|
+
"strict": true,
|
|
8846
|
+
"enableJsonFlag": true,
|
|
8847
|
+
"isESM": true,
|
|
8848
|
+
"relativePath": [
|
|
8849
|
+
"dist",
|
|
8850
|
+
"commands",
|
|
8851
|
+
"mrt",
|
|
8852
|
+
"tail-logs.js"
|
|
8853
|
+
]
|
|
8854
|
+
},
|
|
8855
|
+
"sandbox:create": {
|
|
8856
|
+
"aliases": [
|
|
8857
|
+
"ods:create"
|
|
8858
|
+
],
|
|
8859
|
+
"args": {},
|
|
8860
|
+
"description": "Create a new on-demand sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-create",
|
|
8861
|
+
"examples": [
|
|
8862
|
+
"<%= config.bin %> <%= command.id %> --realm abcd",
|
|
8863
|
+
"<%= config.bin %> <%= command.id %> --realm abcd --ttl 48",
|
|
8864
|
+
"<%= config.bin %> <%= command.id %> --realm abcd --profile large",
|
|
8865
|
+
"<%= config.bin %> <%= command.id %> --realm abcd --auto-scheduled",
|
|
8866
|
+
"<%= config.bin %> <%= command.id %> --realm abcd --wait",
|
|
8867
|
+
"<%= config.bin %> <%= command.id %> --realm abcd --wait --poll-interval 15",
|
|
8868
|
+
"<%= config.bin %> <%= command.id %> --realm abcd --json"
|
|
8869
|
+
],
|
|
8870
|
+
"flags": {
|
|
8871
|
+
"json": {
|
|
8872
|
+
"description": "Output result as JSON",
|
|
8873
|
+
"helpGroup": "GLOBAL",
|
|
8874
|
+
"name": "json",
|
|
8875
|
+
"allowNo": false,
|
|
8876
|
+
"type": "boolean"
|
|
8877
|
+
},
|
|
8878
|
+
"log-level": {
|
|
8879
|
+
"description": "Set logging verbosity level",
|
|
8880
|
+
"env": "SFCC_LOG_LEVEL",
|
|
8881
|
+
"helpGroup": "GLOBAL",
|
|
8882
|
+
"name": "log-level",
|
|
8883
|
+
"hasDynamicHelp": false,
|
|
8884
|
+
"multiple": false,
|
|
8885
|
+
"options": [
|
|
8886
|
+
"trace",
|
|
8887
|
+
"debug",
|
|
8888
|
+
"info",
|
|
8889
|
+
"warn",
|
|
8890
|
+
"error",
|
|
8891
|
+
"silent"
|
|
8892
|
+
],
|
|
8893
|
+
"type": "option"
|
|
8894
|
+
},
|
|
8895
|
+
"debug": {
|
|
8896
|
+
"char": "D",
|
|
8897
|
+
"description": "Enable debug logging (shorthand for --log-level debug)",
|
|
8898
|
+
"env": "SFCC_DEBUG",
|
|
8899
|
+
"helpGroup": "GLOBAL",
|
|
8900
|
+
"name": "debug",
|
|
8901
|
+
"allowNo": false,
|
|
8902
|
+
"type": "boolean"
|
|
8903
|
+
},
|
|
8904
|
+
"jsonl": {
|
|
8905
|
+
"aliases": [
|
|
8906
|
+
"json-logs"
|
|
8907
|
+
],
|
|
8908
|
+
"description": "Output log messages as JSON lines",
|
|
8909
|
+
"env": "SFCC_JSON_LOGS",
|
|
8910
|
+
"helpGroup": "GLOBAL",
|
|
8911
|
+
"name": "jsonl",
|
|
8912
|
+
"allowNo": false,
|
|
8913
|
+
"type": "boolean"
|
|
8914
|
+
},
|
|
8915
|
+
"lang": {
|
|
8916
|
+
"char": "L",
|
|
8917
|
+
"description": "Language for messages (e.g., en, de). Also respects LANGUAGE env var.",
|
|
8918
|
+
"helpGroup": "GLOBAL",
|
|
8919
|
+
"name": "lang",
|
|
8920
|
+
"hasDynamicHelp": false,
|
|
8921
|
+
"multiple": false,
|
|
8922
|
+
"type": "option"
|
|
8923
|
+
},
|
|
8924
|
+
"config": {
|
|
8925
|
+
"description": "Path to config file (in dw.json format; defaults to ./dw.json)",
|
|
8926
|
+
"env": "SFCC_CONFIG",
|
|
8927
|
+
"helpGroup": "GLOBAL",
|
|
8928
|
+
"name": "config",
|
|
8929
|
+
"hasDynamicHelp": false,
|
|
8930
|
+
"multiple": false,
|
|
8931
|
+
"type": "option"
|
|
8932
|
+
},
|
|
8933
|
+
"instance": {
|
|
8934
|
+
"char": "i",
|
|
8935
|
+
"description": "Instance name from configuration file (i.e. dw.json, etc)",
|
|
8936
|
+
"env": "SFCC_INSTANCE",
|
|
8937
|
+
"helpGroup": "GLOBAL",
|
|
8938
|
+
"name": "instance",
|
|
8939
|
+
"hasDynamicHelp": false,
|
|
8940
|
+
"multiple": false,
|
|
8941
|
+
"type": "option"
|
|
8942
|
+
},
|
|
8943
|
+
"project-directory": {
|
|
8944
|
+
"aliases": [
|
|
8945
|
+
"working-directory"
|
|
8946
|
+
],
|
|
8947
|
+
"description": "Project directory",
|
|
8948
|
+
"env": "SFCC_PROJECT_DIRECTORY",
|
|
8949
|
+
"helpGroup": "GLOBAL",
|
|
8950
|
+
"name": "project-directory",
|
|
8951
|
+
"hasDynamicHelp": false,
|
|
8952
|
+
"multiple": false,
|
|
8953
|
+
"type": "option"
|
|
8954
|
+
},
|
|
8955
|
+
"extra-query": {
|
|
8956
|
+
"description": "Extra query parameters as JSON (e.g., '{\"debug\":\"true\"}')",
|
|
8957
|
+
"env": "SFCC_EXTRA_QUERY",
|
|
8958
|
+
"helpGroup": "GLOBAL",
|
|
8959
|
+
"hidden": true,
|
|
8960
|
+
"name": "extra-query",
|
|
8961
|
+
"hasDynamicHelp": false,
|
|
8962
|
+
"multiple": false,
|
|
8963
|
+
"type": "option"
|
|
8964
|
+
},
|
|
8965
|
+
"extra-body": {
|
|
8966
|
+
"description": "Extra body fields to merge as JSON (e.g., '{\"_internal\":true}')",
|
|
8967
|
+
"env": "SFCC_EXTRA_BODY",
|
|
8968
|
+
"helpGroup": "GLOBAL",
|
|
8969
|
+
"hidden": true,
|
|
8970
|
+
"name": "extra-body",
|
|
8971
|
+
"hasDynamicHelp": false,
|
|
8972
|
+
"multiple": false,
|
|
8973
|
+
"type": "option"
|
|
8974
|
+
},
|
|
8975
|
+
"extra-headers": {
|
|
8976
|
+
"description": "Extra HTTP headers as JSON (e.g., '{\"X-Custom-Header\": \"value\"}')",
|
|
8977
|
+
"env": "SFCC_EXTRA_HEADERS",
|
|
8978
|
+
"helpGroup": "GLOBAL",
|
|
8979
|
+
"hidden": true,
|
|
8980
|
+
"name": "extra-headers",
|
|
8981
|
+
"hasDynamicHelp": false,
|
|
8982
|
+
"multiple": false,
|
|
8983
|
+
"type": "option"
|
|
8984
|
+
},
|
|
8985
|
+
"client-id": {
|
|
8986
|
+
"description": "Client ID for OAuth",
|
|
8987
|
+
"env": "SFCC_CLIENT_ID",
|
|
8988
|
+
"helpGroup": "AUTH",
|
|
8989
|
+
"name": "client-id",
|
|
8990
|
+
"hasDynamicHelp": false,
|
|
8991
|
+
"multiple": false,
|
|
8992
|
+
"type": "option"
|
|
8993
|
+
},
|
|
8994
|
+
"client-secret": {
|
|
8995
|
+
"description": "Client Secret for OAuth",
|
|
8996
|
+
"env": "SFCC_CLIENT_SECRET",
|
|
8997
|
+
"helpGroup": "AUTH",
|
|
8998
|
+
"name": "client-secret",
|
|
8999
|
+
"hasDynamicHelp": false,
|
|
9000
|
+
"multiple": false,
|
|
9001
|
+
"type": "option"
|
|
9002
|
+
},
|
|
9003
|
+
"auth-scope": {
|
|
9004
|
+
"description": "OAuth scopes to request (comma-separated)",
|
|
9005
|
+
"env": "SFCC_OAUTH_SCOPES",
|
|
9006
|
+
"helpGroup": "AUTH",
|
|
9007
|
+
"name": "auth-scope",
|
|
9008
|
+
"delimiter": ",",
|
|
9009
|
+
"hasDynamicHelp": false,
|
|
9010
|
+
"multiple": true,
|
|
9011
|
+
"type": "option"
|
|
9012
|
+
},
|
|
9013
|
+
"short-code": {
|
|
9014
|
+
"description": "SCAPI short code",
|
|
9015
|
+
"env": "SFCC_SHORTCODE",
|
|
9016
|
+
"helpGroup": "AUTH",
|
|
9017
|
+
"name": "short-code",
|
|
9018
|
+
"hasDynamicHelp": false,
|
|
9019
|
+
"multiple": false,
|
|
9020
|
+
"type": "option"
|
|
9021
|
+
},
|
|
9022
|
+
"tenant-id": {
|
|
9023
|
+
"aliases": [
|
|
9024
|
+
"tenant"
|
|
9025
|
+
],
|
|
9026
|
+
"description": "Organization/tenant ID",
|
|
9027
|
+
"env": "SFCC_TENANT_ID",
|
|
9028
|
+
"helpGroup": "AUTH",
|
|
9029
|
+
"name": "tenant-id",
|
|
9030
|
+
"hasDynamicHelp": false,
|
|
9031
|
+
"multiple": false,
|
|
9032
|
+
"type": "option"
|
|
9033
|
+
},
|
|
9034
|
+
"auth-methods": {
|
|
9035
|
+
"description": "Allowed auth methods in priority order (comma-separated)",
|
|
9036
|
+
"env": "SFCC_AUTH_METHODS",
|
|
9037
|
+
"exclusive": [
|
|
9038
|
+
"user-auth"
|
|
9039
|
+
],
|
|
9040
|
+
"helpGroup": "AUTH",
|
|
9041
|
+
"name": "auth-methods",
|
|
9042
|
+
"delimiter": ",",
|
|
9043
|
+
"hasDynamicHelp": false,
|
|
9044
|
+
"multiple": true,
|
|
9045
|
+
"options": [
|
|
9046
|
+
"client-credentials",
|
|
9047
|
+
"implicit",
|
|
9048
|
+
"basic",
|
|
9049
|
+
"api-key"
|
|
9050
|
+
],
|
|
9051
|
+
"type": "option"
|
|
9052
|
+
},
|
|
9053
|
+
"user-auth": {
|
|
9054
|
+
"description": "Use browser-based user authentication (implicit OAuth flow)",
|
|
9055
|
+
"exclusive": [
|
|
9056
|
+
"auth-methods"
|
|
9057
|
+
],
|
|
9058
|
+
"helpGroup": "AUTH",
|
|
9059
|
+
"name": "user-auth",
|
|
9060
|
+
"allowNo": false,
|
|
9061
|
+
"type": "boolean"
|
|
9062
|
+
},
|
|
9063
|
+
"account-manager-host": {
|
|
9064
|
+
"description": "Account Manager hostname for OAuth (default: account.demandware.com)",
|
|
9065
|
+
"env": "SFCC_ACCOUNT_MANAGER_HOST",
|
|
9066
|
+
"helpGroup": "AUTH",
|
|
9067
|
+
"name": "account-manager-host",
|
|
9068
|
+
"hasDynamicHelp": false,
|
|
9069
|
+
"multiple": false,
|
|
9070
|
+
"type": "option"
|
|
9071
|
+
},
|
|
9072
|
+
"sandbox-api-host": {
|
|
9073
|
+
"description": "ODS API hostname (default: admin.dx.commercecloud.salesforce.com)",
|
|
9074
|
+
"env": "SFCC_SANDBOX_API_HOST",
|
|
9075
|
+
"name": "sandbox-api-host",
|
|
9076
|
+
"hasDynamicHelp": false,
|
|
9077
|
+
"multiple": false,
|
|
9078
|
+
"type": "option"
|
|
9079
|
+
},
|
|
9080
|
+
"realm": {
|
|
9081
|
+
"char": "r",
|
|
9082
|
+
"description": "Realm ID (four-letter ID)",
|
|
9083
|
+
"name": "realm",
|
|
9084
|
+
"required": true,
|
|
9085
|
+
"hasDynamicHelp": false,
|
|
9086
|
+
"multiple": false,
|
|
9087
|
+
"type": "option"
|
|
9088
|
+
},
|
|
9089
|
+
"ttl": {
|
|
9090
|
+
"description": "Time to live in hours (0 for infinite)",
|
|
9091
|
+
"name": "ttl",
|
|
9092
|
+
"default": 24,
|
|
9093
|
+
"hasDynamicHelp": false,
|
|
9094
|
+
"multiple": false,
|
|
9095
|
+
"type": "option"
|
|
9096
|
+
},
|
|
9097
|
+
"profile": {
|
|
9098
|
+
"description": "Resource profile (medium, large, xlarge, xxlarge)",
|
|
9099
|
+
"name": "profile",
|
|
9100
|
+
"default": "medium",
|
|
9101
|
+
"hasDynamicHelp": false,
|
|
9102
|
+
"multiple": false,
|
|
9103
|
+
"options": [
|
|
9104
|
+
"medium",
|
|
9105
|
+
"large",
|
|
9106
|
+
"xlarge",
|
|
9107
|
+
"xxlarge"
|
|
9108
|
+
],
|
|
9109
|
+
"type": "option"
|
|
9110
|
+
},
|
|
9111
|
+
"auto-scheduled": {
|
|
9112
|
+
"description": "Enable automatic start/stop scheduling",
|
|
9113
|
+
"name": "auto-scheduled",
|
|
9114
|
+
"allowNo": false,
|
|
9115
|
+
"type": "boolean"
|
|
9116
|
+
},
|
|
9117
|
+
"wait": {
|
|
9118
|
+
"char": "w",
|
|
9119
|
+
"description": "Wait for the sandbox to reach started or failed state before returning",
|
|
9120
|
+
"name": "wait",
|
|
9121
|
+
"allowNo": false,
|
|
9122
|
+
"type": "boolean"
|
|
9123
|
+
},
|
|
9124
|
+
"poll-interval": {
|
|
9125
|
+
"dependsOn": [
|
|
9126
|
+
"wait"
|
|
9127
|
+
],
|
|
9128
|
+
"description": "Polling interval in seconds when using --wait",
|
|
9129
|
+
"name": "poll-interval",
|
|
9130
|
+
"default": 10,
|
|
9131
|
+
"hasDynamicHelp": false,
|
|
9132
|
+
"multiple": false,
|
|
9133
|
+
"type": "option"
|
|
9134
|
+
},
|
|
9135
|
+
"timeout": {
|
|
9136
|
+
"dependsOn": [
|
|
9137
|
+
"wait"
|
|
9138
|
+
],
|
|
9139
|
+
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
9140
|
+
"name": "timeout",
|
|
9141
|
+
"default": 600,
|
|
9142
|
+
"hasDynamicHelp": false,
|
|
9143
|
+
"multiple": false,
|
|
9144
|
+
"type": "option"
|
|
9145
|
+
},
|
|
9146
|
+
"set-permissions": {
|
|
9147
|
+
"description": "Automatically set OCAPI and WebDAV permissions for the client ID used to create the sandbox",
|
|
9148
|
+
"name": "set-permissions",
|
|
9149
|
+
"allowNo": true,
|
|
9150
|
+
"type": "boolean"
|
|
9151
|
+
},
|
|
9152
|
+
"permissions-client-id": {
|
|
9153
|
+
"description": "Client ID to use for default OCAPI/WebDAV permissions (defaults to auth client ID)",
|
|
9154
|
+
"name": "permissions-client-id",
|
|
9155
|
+
"hasDynamicHelp": false,
|
|
9156
|
+
"multiple": false,
|
|
9157
|
+
"type": "option"
|
|
9158
|
+
},
|
|
9159
|
+
"ocapi-settings": {
|
|
9160
|
+
"description": "Custom OCAPI settings JSON array (replaces defaults). Format: [{\"client_id\":\"...\",\"resources\":[...]}]",
|
|
9161
|
+
"name": "ocapi-settings",
|
|
9162
|
+
"hasDynamicHelp": false,
|
|
9163
|
+
"multiple": false,
|
|
9164
|
+
"type": "option"
|
|
9165
|
+
},
|
|
9166
|
+
"webdav-settings": {
|
|
9167
|
+
"description": "Custom WebDAV settings JSON array (replaces defaults). Format: [{\"client_id\":\"...\",\"permissions\":[...]}]",
|
|
9168
|
+
"name": "webdav-settings",
|
|
9169
|
+
"hasDynamicHelp": false,
|
|
9170
|
+
"multiple": false,
|
|
9171
|
+
"type": "option"
|
|
9172
|
+
},
|
|
9173
|
+
"start-scheduler": {
|
|
9174
|
+
"description": "Start schedule JSON. Format: {\"weekdays\":[\"MONDAY\",...],\"time\":\"08:00:00+03:00\"}",
|
|
9175
|
+
"name": "start-scheduler",
|
|
9176
|
+
"hasDynamicHelp": false,
|
|
9177
|
+
"multiple": false,
|
|
9178
|
+
"type": "option"
|
|
9179
|
+
},
|
|
9180
|
+
"stop-scheduler": {
|
|
9181
|
+
"description": "Stop schedule JSON. Format: {\"weekdays\":[\"MONDAY\",...],\"time\":\"19:00:00Z\"}",
|
|
9182
|
+
"name": "stop-scheduler",
|
|
9183
|
+
"hasDynamicHelp": false,
|
|
9184
|
+
"multiple": false,
|
|
9185
|
+
"type": "option"
|
|
9186
|
+
}
|
|
9187
|
+
},
|
|
9188
|
+
"hasDynamicHelp": false,
|
|
9189
|
+
"hiddenAliases": [],
|
|
9190
|
+
"id": "sandbox:create",
|
|
9191
|
+
"pluginAlias": "@salesforce/b2c-cli",
|
|
9192
|
+
"pluginName": "@salesforce/b2c-cli",
|
|
9193
|
+
"pluginType": "core",
|
|
9194
|
+
"strict": true,
|
|
9195
|
+
"enableJsonFlag": true,
|
|
9196
|
+
"isESM": true,
|
|
9197
|
+
"relativePath": [
|
|
9198
|
+
"dist",
|
|
9199
|
+
"commands",
|
|
9200
|
+
"sandbox",
|
|
9201
|
+
"create.js"
|
|
9202
|
+
]
|
|
9203
|
+
},
|
|
9204
|
+
"sandbox:delete": {
|
|
9205
|
+
"aliases": [
|
|
9206
|
+
"ods:delete"
|
|
9207
|
+
],
|
|
9208
|
+
"args": {
|
|
9209
|
+
"sandboxId": {
|
|
9210
|
+
"description": "Sandbox ID (UUID or realm-instance, e.g., abcd-123)",
|
|
9211
|
+
"name": "sandboxId",
|
|
9212
|
+
"required": true
|
|
9213
|
+
}
|
|
9214
|
+
},
|
|
9215
|
+
"description": "Delete an on-demand sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-delete",
|
|
9216
|
+
"examples": [
|
|
9217
|
+
"<%= config.bin %> <%= command.id %> abc12345-1234-1234-1234-abc123456789",
|
|
9218
|
+
"<%= config.bin %> <%= command.id %> zzzv-123",
|
|
9219
|
+
"<%= config.bin %> <%= command.id %> zzzv_123 --force"
|
|
9220
|
+
],
|
|
9221
|
+
"flags": {
|
|
9222
|
+
"log-level": {
|
|
9223
|
+
"description": "Set logging verbosity level",
|
|
9224
|
+
"env": "SFCC_LOG_LEVEL",
|
|
9225
|
+
"helpGroup": "GLOBAL",
|
|
9226
|
+
"name": "log-level",
|
|
9227
|
+
"hasDynamicHelp": false,
|
|
9228
|
+
"multiple": false,
|
|
9229
|
+
"options": [
|
|
9230
|
+
"trace",
|
|
9231
|
+
"debug",
|
|
9232
|
+
"info",
|
|
9233
|
+
"warn",
|
|
9234
|
+
"error",
|
|
9235
|
+
"silent"
|
|
9236
|
+
],
|
|
9237
|
+
"type": "option"
|
|
9238
|
+
},
|
|
9239
|
+
"debug": {
|
|
9240
|
+
"char": "D",
|
|
9241
|
+
"description": "Enable debug logging (shorthand for --log-level debug)",
|
|
9242
|
+
"env": "SFCC_DEBUG",
|
|
9243
|
+
"helpGroup": "GLOBAL",
|
|
9244
|
+
"name": "debug",
|
|
9245
|
+
"allowNo": false,
|
|
9246
|
+
"type": "boolean"
|
|
9247
|
+
},
|
|
9248
|
+
"json": {
|
|
9249
|
+
"description": "Output result as JSON",
|
|
9250
|
+
"helpGroup": "GLOBAL",
|
|
9251
|
+
"name": "json",
|
|
9252
|
+
"allowNo": false,
|
|
9253
|
+
"type": "boolean"
|
|
9254
|
+
},
|
|
9255
|
+
"jsonl": {
|
|
9256
|
+
"aliases": [
|
|
9257
|
+
"json-logs"
|
|
9258
|
+
],
|
|
9259
|
+
"description": "Output log messages as JSON lines",
|
|
9260
|
+
"env": "SFCC_JSON_LOGS",
|
|
9261
|
+
"helpGroup": "GLOBAL",
|
|
9262
|
+
"name": "jsonl",
|
|
9263
|
+
"allowNo": false,
|
|
9264
|
+
"type": "boolean"
|
|
9265
|
+
},
|
|
9266
|
+
"lang": {
|
|
9267
|
+
"char": "L",
|
|
9268
|
+
"description": "Language for messages (e.g., en, de). Also respects LANGUAGE env var.",
|
|
9269
|
+
"helpGroup": "GLOBAL",
|
|
9270
|
+
"name": "lang",
|
|
9271
|
+
"hasDynamicHelp": false,
|
|
9272
|
+
"multiple": false,
|
|
9273
|
+
"type": "option"
|
|
9274
|
+
},
|
|
9275
|
+
"config": {
|
|
9276
|
+
"description": "Path to config file (in dw.json format; defaults to ./dw.json)",
|
|
9277
|
+
"env": "SFCC_CONFIG",
|
|
9278
|
+
"helpGroup": "GLOBAL",
|
|
9279
|
+
"name": "config",
|
|
9280
|
+
"hasDynamicHelp": false,
|
|
9281
|
+
"multiple": false,
|
|
9282
|
+
"type": "option"
|
|
9283
|
+
},
|
|
9284
|
+
"instance": {
|
|
9285
|
+
"char": "i",
|
|
9286
|
+
"description": "Instance name from configuration file (i.e. dw.json, etc)",
|
|
9287
|
+
"env": "SFCC_INSTANCE",
|
|
9288
|
+
"helpGroup": "GLOBAL",
|
|
9289
|
+
"name": "instance",
|
|
9290
|
+
"hasDynamicHelp": false,
|
|
9291
|
+
"multiple": false,
|
|
9292
|
+
"type": "option"
|
|
9293
|
+
},
|
|
9294
|
+
"project-directory": {
|
|
9295
|
+
"aliases": [
|
|
9296
|
+
"working-directory"
|
|
9297
|
+
],
|
|
9298
|
+
"description": "Project directory",
|
|
9299
|
+
"env": "SFCC_PROJECT_DIRECTORY",
|
|
9300
|
+
"helpGroup": "GLOBAL",
|
|
9301
|
+
"name": "project-directory",
|
|
9302
|
+
"hasDynamicHelp": false,
|
|
9303
|
+
"multiple": false,
|
|
9304
|
+
"type": "option"
|
|
9305
|
+
},
|
|
9306
|
+
"extra-query": {
|
|
9307
|
+
"description": "Extra query parameters as JSON (e.g., '{\"debug\":\"true\"}')",
|
|
9308
|
+
"env": "SFCC_EXTRA_QUERY",
|
|
9309
|
+
"helpGroup": "GLOBAL",
|
|
9310
|
+
"hidden": true,
|
|
9311
|
+
"name": "extra-query",
|
|
9312
|
+
"hasDynamicHelp": false,
|
|
9313
|
+
"multiple": false,
|
|
9314
|
+
"type": "option"
|
|
9315
|
+
},
|
|
9316
|
+
"extra-body": {
|
|
9317
|
+
"description": "Extra body fields to merge as JSON (e.g., '{\"_internal\":true}')",
|
|
9318
|
+
"env": "SFCC_EXTRA_BODY",
|
|
9319
|
+
"helpGroup": "GLOBAL",
|
|
9320
|
+
"hidden": true,
|
|
9321
|
+
"name": "extra-body",
|
|
9322
|
+
"hasDynamicHelp": false,
|
|
9323
|
+
"multiple": false,
|
|
9324
|
+
"type": "option"
|
|
9325
|
+
},
|
|
9326
|
+
"extra-headers": {
|
|
9327
|
+
"description": "Extra HTTP headers as JSON (e.g., '{\"X-Custom-Header\": \"value\"}')",
|
|
9328
|
+
"env": "SFCC_EXTRA_HEADERS",
|
|
9329
|
+
"helpGroup": "GLOBAL",
|
|
9330
|
+
"hidden": true,
|
|
9331
|
+
"name": "extra-headers",
|
|
9332
|
+
"hasDynamicHelp": false,
|
|
9333
|
+
"multiple": false,
|
|
9334
|
+
"type": "option"
|
|
9335
|
+
},
|
|
9336
|
+
"client-id": {
|
|
9337
|
+
"description": "Client ID for OAuth",
|
|
9338
|
+
"env": "SFCC_CLIENT_ID",
|
|
8760
9339
|
"helpGroup": "AUTH",
|
|
8761
|
-
"name": "
|
|
9340
|
+
"name": "client-id",
|
|
8762
9341
|
"hasDynamicHelp": false,
|
|
8763
9342
|
"multiple": false,
|
|
8764
9343
|
"type": "option"
|
|
8765
9344
|
},
|
|
8766
|
-
"
|
|
8767
|
-
"
|
|
8768
|
-
"
|
|
8769
|
-
"
|
|
8770
|
-
"name": "
|
|
9345
|
+
"client-secret": {
|
|
9346
|
+
"description": "Client Secret for OAuth",
|
|
9347
|
+
"env": "SFCC_CLIENT_SECRET",
|
|
9348
|
+
"helpGroup": "AUTH",
|
|
9349
|
+
"name": "client-secret",
|
|
8771
9350
|
"hasDynamicHelp": false,
|
|
8772
9351
|
"multiple": false,
|
|
8773
9352
|
"type": "option"
|
|
8774
9353
|
},
|
|
8775
|
-
"
|
|
8776
|
-
"
|
|
8777
|
-
|
|
8778
|
-
|
|
8779
|
-
"
|
|
8780
|
-
"
|
|
8781
|
-
"env": "MRT_ENVIRONMENT",
|
|
8782
|
-
"name": "environment",
|
|
9354
|
+
"auth-scope": {
|
|
9355
|
+
"description": "OAuth scopes to request (comma-separated)",
|
|
9356
|
+
"env": "SFCC_OAUTH_SCOPES",
|
|
9357
|
+
"helpGroup": "AUTH",
|
|
9358
|
+
"name": "auth-scope",
|
|
9359
|
+
"delimiter": ",",
|
|
8783
9360
|
"hasDynamicHelp": false,
|
|
8784
|
-
"multiple":
|
|
9361
|
+
"multiple": true,
|
|
8785
9362
|
"type": "option"
|
|
8786
9363
|
},
|
|
8787
|
-
"
|
|
8788
|
-
"description": "
|
|
8789
|
-
"env": "
|
|
8790
|
-
"
|
|
9364
|
+
"short-code": {
|
|
9365
|
+
"description": "SCAPI short code",
|
|
9366
|
+
"env": "SFCC_SHORTCODE",
|
|
9367
|
+
"helpGroup": "AUTH",
|
|
9368
|
+
"name": "short-code",
|
|
8791
9369
|
"hasDynamicHelp": false,
|
|
8792
9370
|
"multiple": false,
|
|
8793
9371
|
"type": "option"
|
|
8794
9372
|
},
|
|
8795
|
-
"
|
|
8796
|
-
"
|
|
8797
|
-
|
|
8798
|
-
|
|
9373
|
+
"tenant-id": {
|
|
9374
|
+
"aliases": [
|
|
9375
|
+
"tenant"
|
|
9376
|
+
],
|
|
9377
|
+
"description": "Organization/tenant ID",
|
|
9378
|
+
"env": "SFCC_TENANT_ID",
|
|
9379
|
+
"helpGroup": "AUTH",
|
|
9380
|
+
"name": "tenant-id",
|
|
8799
9381
|
"hasDynamicHelp": false,
|
|
8800
9382
|
"multiple": false,
|
|
8801
9383
|
"type": "option"
|
|
8802
9384
|
},
|
|
8803
|
-
"
|
|
8804
|
-
"description": "
|
|
8805
|
-
"
|
|
9385
|
+
"auth-methods": {
|
|
9386
|
+
"description": "Allowed auth methods in priority order (comma-separated)",
|
|
9387
|
+
"env": "SFCC_AUTH_METHODS",
|
|
9388
|
+
"exclusive": [
|
|
9389
|
+
"user-auth"
|
|
9390
|
+
],
|
|
9391
|
+
"helpGroup": "AUTH",
|
|
9392
|
+
"name": "auth-methods",
|
|
9393
|
+
"delimiter": ",",
|
|
8806
9394
|
"hasDynamicHelp": false,
|
|
8807
9395
|
"multiple": true,
|
|
9396
|
+
"options": [
|
|
9397
|
+
"client-credentials",
|
|
9398
|
+
"implicit",
|
|
9399
|
+
"basic",
|
|
9400
|
+
"api-key"
|
|
9401
|
+
],
|
|
8808
9402
|
"type": "option"
|
|
8809
9403
|
},
|
|
8810
|
-
"
|
|
8811
|
-
"
|
|
8812
|
-
"
|
|
8813
|
-
|
|
9404
|
+
"user-auth": {
|
|
9405
|
+
"description": "Use browser-based user authentication (implicit OAuth flow)",
|
|
9406
|
+
"exclusive": [
|
|
9407
|
+
"auth-methods"
|
|
9408
|
+
],
|
|
9409
|
+
"helpGroup": "AUTH",
|
|
9410
|
+
"name": "user-auth",
|
|
9411
|
+
"allowNo": false,
|
|
9412
|
+
"type": "boolean"
|
|
9413
|
+
},
|
|
9414
|
+
"account-manager-host": {
|
|
9415
|
+
"description": "Account Manager hostname for OAuth (default: account.demandware.com)",
|
|
9416
|
+
"env": "SFCC_ACCOUNT_MANAGER_HOST",
|
|
9417
|
+
"helpGroup": "AUTH",
|
|
9418
|
+
"name": "account-manager-host",
|
|
8814
9419
|
"hasDynamicHelp": false,
|
|
8815
9420
|
"multiple": false,
|
|
8816
9421
|
"type": "option"
|
|
8817
9422
|
},
|
|
8818
|
-
"
|
|
8819
|
-
"description": "
|
|
8820
|
-
"
|
|
9423
|
+
"sandbox-api-host": {
|
|
9424
|
+
"description": "ODS API hostname (default: admin.dx.commercecloud.salesforce.com)",
|
|
9425
|
+
"env": "SFCC_SANDBOX_API_HOST",
|
|
9426
|
+
"name": "sandbox-api-host",
|
|
9427
|
+
"hasDynamicHelp": false,
|
|
9428
|
+
"multiple": false,
|
|
9429
|
+
"type": "option"
|
|
9430
|
+
},
|
|
9431
|
+
"force": {
|
|
9432
|
+
"char": "f",
|
|
9433
|
+
"description": "Skip confirmation prompt",
|
|
9434
|
+
"name": "force",
|
|
8821
9435
|
"allowNo": false,
|
|
8822
9436
|
"type": "boolean"
|
|
9437
|
+
},
|
|
9438
|
+
"wait": {
|
|
9439
|
+
"char": "w",
|
|
9440
|
+
"description": "Wait for the sandbox to be fully deleted before returning",
|
|
9441
|
+
"name": "wait",
|
|
9442
|
+
"allowNo": false,
|
|
9443
|
+
"type": "boolean"
|
|
9444
|
+
},
|
|
9445
|
+
"poll-interval": {
|
|
9446
|
+
"dependsOn": [
|
|
9447
|
+
"wait"
|
|
9448
|
+
],
|
|
9449
|
+
"description": "Polling interval in seconds when using --wait",
|
|
9450
|
+
"name": "poll-interval",
|
|
9451
|
+
"default": 10,
|
|
9452
|
+
"hasDynamicHelp": false,
|
|
9453
|
+
"multiple": false,
|
|
9454
|
+
"type": "option"
|
|
9455
|
+
},
|
|
9456
|
+
"timeout": {
|
|
9457
|
+
"dependsOn": [
|
|
9458
|
+
"wait"
|
|
9459
|
+
],
|
|
9460
|
+
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
9461
|
+
"name": "timeout",
|
|
9462
|
+
"default": 600,
|
|
9463
|
+
"hasDynamicHelp": false,
|
|
9464
|
+
"multiple": false,
|
|
9465
|
+
"type": "option"
|
|
8823
9466
|
}
|
|
8824
9467
|
},
|
|
8825
9468
|
"hasDynamicHelp": false,
|
|
8826
9469
|
"hiddenAliases": [],
|
|
8827
|
-
"id": "
|
|
9470
|
+
"id": "sandbox:delete",
|
|
8828
9471
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
8829
9472
|
"pluginName": "@salesforce/b2c-cli",
|
|
8830
9473
|
"pluginType": "core",
|
|
8831
9474
|
"strict": true,
|
|
8832
|
-
"enableJsonFlag":
|
|
9475
|
+
"enableJsonFlag": false,
|
|
8833
9476
|
"isESM": true,
|
|
8834
9477
|
"relativePath": [
|
|
8835
9478
|
"dist",
|
|
8836
9479
|
"commands",
|
|
8837
|
-
"
|
|
8838
|
-
"
|
|
9480
|
+
"sandbox",
|
|
9481
|
+
"delete.js"
|
|
8839
9482
|
]
|
|
8840
9483
|
},
|
|
8841
|
-
"sandbox:
|
|
9484
|
+
"sandbox:get": {
|
|
8842
9485
|
"aliases": [
|
|
8843
|
-
"ods:
|
|
9486
|
+
"ods:get"
|
|
8844
9487
|
],
|
|
8845
|
-
"args": {
|
|
8846
|
-
|
|
9488
|
+
"args": {
|
|
9489
|
+
"sandboxId": {
|
|
9490
|
+
"description": "Sandbox ID (UUID or realm-instance, e.g., abcd-123)",
|
|
9491
|
+
"name": "sandboxId",
|
|
9492
|
+
"required": true
|
|
9493
|
+
}
|
|
9494
|
+
},
|
|
9495
|
+
"description": "Get details of a specific sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-get",
|
|
8847
9496
|
"examples": [
|
|
8848
|
-
"<%= config.bin %> <%= command.id %>
|
|
8849
|
-
"<%= config.bin %> <%= command.id %>
|
|
8850
|
-
"<%= config.bin %> <%= command.id %>
|
|
8851
|
-
"<%= config.bin %> <%= command.id %>
|
|
8852
|
-
"<%= config.bin %> <%= command.id %> --realm abcd --wait",
|
|
8853
|
-
"<%= config.bin %> <%= command.id %> --realm abcd --wait --poll-interval 15",
|
|
8854
|
-
"<%= config.bin %> <%= command.id %> --realm abcd --json"
|
|
9497
|
+
"<%= config.bin %> <%= command.id %> abc12345-1234-1234-1234-abc123456789",
|
|
9498
|
+
"<%= config.bin %> <%= command.id %> zzzv-123",
|
|
9499
|
+
"<%= config.bin %> <%= command.id %> zzzv_123 --json",
|
|
9500
|
+
"<%= config.bin %> <%= command.id %> zzzv_123 --clone-details"
|
|
8855
9501
|
],
|
|
8856
9502
|
"flags": {
|
|
8857
9503
|
"json": {
|
|
@@ -9063,117 +9709,16 @@
|
|
|
9063
9709
|
"multiple": false,
|
|
9064
9710
|
"type": "option"
|
|
9065
9711
|
},
|
|
9066
|
-
"
|
|
9067
|
-
"
|
|
9068
|
-
"
|
|
9069
|
-
"name": "realm",
|
|
9070
|
-
"required": true,
|
|
9071
|
-
"hasDynamicHelp": false,
|
|
9072
|
-
"multiple": false,
|
|
9073
|
-
"type": "option"
|
|
9074
|
-
},
|
|
9075
|
-
"ttl": {
|
|
9076
|
-
"description": "Time to live in hours (0 for infinite)",
|
|
9077
|
-
"name": "ttl",
|
|
9078
|
-
"default": 24,
|
|
9079
|
-
"hasDynamicHelp": false,
|
|
9080
|
-
"multiple": false,
|
|
9081
|
-
"type": "option"
|
|
9082
|
-
},
|
|
9083
|
-
"profile": {
|
|
9084
|
-
"description": "Resource profile (medium, large, xlarge, xxlarge)",
|
|
9085
|
-
"name": "profile",
|
|
9086
|
-
"default": "medium",
|
|
9087
|
-
"hasDynamicHelp": false,
|
|
9088
|
-
"multiple": false,
|
|
9089
|
-
"options": [
|
|
9090
|
-
"medium",
|
|
9091
|
-
"large",
|
|
9092
|
-
"xlarge",
|
|
9093
|
-
"xxlarge"
|
|
9094
|
-
],
|
|
9095
|
-
"type": "option"
|
|
9096
|
-
},
|
|
9097
|
-
"auto-scheduled": {
|
|
9098
|
-
"description": "Enable automatic start/stop scheduling",
|
|
9099
|
-
"name": "auto-scheduled",
|
|
9100
|
-
"allowNo": false,
|
|
9101
|
-
"type": "boolean"
|
|
9102
|
-
},
|
|
9103
|
-
"wait": {
|
|
9104
|
-
"char": "w",
|
|
9105
|
-
"description": "Wait for the sandbox to reach started or failed state before returning",
|
|
9106
|
-
"name": "wait",
|
|
9712
|
+
"clone-details": {
|
|
9713
|
+
"description": "Include detailed clone information if the sandbox was created by cloning",
|
|
9714
|
+
"name": "clone-details",
|
|
9107
9715
|
"allowNo": false,
|
|
9108
9716
|
"type": "boolean"
|
|
9109
|
-
},
|
|
9110
|
-
"poll-interval": {
|
|
9111
|
-
"dependsOn": [
|
|
9112
|
-
"wait"
|
|
9113
|
-
],
|
|
9114
|
-
"description": "Polling interval in seconds when using --wait",
|
|
9115
|
-
"name": "poll-interval",
|
|
9116
|
-
"default": 10,
|
|
9117
|
-
"hasDynamicHelp": false,
|
|
9118
|
-
"multiple": false,
|
|
9119
|
-
"type": "option"
|
|
9120
|
-
},
|
|
9121
|
-
"timeout": {
|
|
9122
|
-
"dependsOn": [
|
|
9123
|
-
"wait"
|
|
9124
|
-
],
|
|
9125
|
-
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
9126
|
-
"name": "timeout",
|
|
9127
|
-
"default": 600,
|
|
9128
|
-
"hasDynamicHelp": false,
|
|
9129
|
-
"multiple": false,
|
|
9130
|
-
"type": "option"
|
|
9131
|
-
},
|
|
9132
|
-
"set-permissions": {
|
|
9133
|
-
"description": "Automatically set OCAPI and WebDAV permissions for the client ID used to create the sandbox",
|
|
9134
|
-
"name": "set-permissions",
|
|
9135
|
-
"allowNo": true,
|
|
9136
|
-
"type": "boolean"
|
|
9137
|
-
},
|
|
9138
|
-
"permissions-client-id": {
|
|
9139
|
-
"description": "Client ID to use for default OCAPI/WebDAV permissions (defaults to auth client ID)",
|
|
9140
|
-
"name": "permissions-client-id",
|
|
9141
|
-
"hasDynamicHelp": false,
|
|
9142
|
-
"multiple": false,
|
|
9143
|
-
"type": "option"
|
|
9144
|
-
},
|
|
9145
|
-
"ocapi-settings": {
|
|
9146
|
-
"description": "Custom OCAPI settings JSON array (replaces defaults). Format: [{\"client_id\":\"...\",\"resources\":[...]}]",
|
|
9147
|
-
"name": "ocapi-settings",
|
|
9148
|
-
"hasDynamicHelp": false,
|
|
9149
|
-
"multiple": false,
|
|
9150
|
-
"type": "option"
|
|
9151
|
-
},
|
|
9152
|
-
"webdav-settings": {
|
|
9153
|
-
"description": "Custom WebDAV settings JSON array (replaces defaults). Format: [{\"client_id\":\"...\",\"permissions\":[...]}]",
|
|
9154
|
-
"name": "webdav-settings",
|
|
9155
|
-
"hasDynamicHelp": false,
|
|
9156
|
-
"multiple": false,
|
|
9157
|
-
"type": "option"
|
|
9158
|
-
},
|
|
9159
|
-
"start-scheduler": {
|
|
9160
|
-
"description": "Start schedule JSON. Format: {\"weekdays\":[\"MONDAY\",...],\"time\":\"08:00:00+03:00\"}",
|
|
9161
|
-
"name": "start-scheduler",
|
|
9162
|
-
"hasDynamicHelp": false,
|
|
9163
|
-
"multiple": false,
|
|
9164
|
-
"type": "option"
|
|
9165
|
-
},
|
|
9166
|
-
"stop-scheduler": {
|
|
9167
|
-
"description": "Stop schedule JSON. Format: {\"weekdays\":[\"MONDAY\",...],\"time\":\"19:00:00Z\"}",
|
|
9168
|
-
"name": "stop-scheduler",
|
|
9169
|
-
"hasDynamicHelp": false,
|
|
9170
|
-
"multiple": false,
|
|
9171
|
-
"type": "option"
|
|
9172
9717
|
}
|
|
9173
9718
|
},
|
|
9174
9719
|
"hasDynamicHelp": false,
|
|
9175
9720
|
"hiddenAliases": [],
|
|
9176
|
-
"id": "sandbox:
|
|
9721
|
+
"id": "sandbox:get",
|
|
9177
9722
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
9178
9723
|
"pluginName": "@salesforce/b2c-cli",
|
|
9179
9724
|
"pluginType": "core",
|
|
@@ -9184,27 +9729,28 @@
|
|
|
9184
9729
|
"dist",
|
|
9185
9730
|
"commands",
|
|
9186
9731
|
"sandbox",
|
|
9187
|
-
"
|
|
9732
|
+
"get.js"
|
|
9188
9733
|
]
|
|
9189
9734
|
},
|
|
9190
|
-
"sandbox:
|
|
9735
|
+
"sandbox:info": {
|
|
9191
9736
|
"aliases": [
|
|
9192
|
-
"ods:
|
|
9737
|
+
"ods:info"
|
|
9193
9738
|
],
|
|
9194
|
-
"args": {
|
|
9195
|
-
|
|
9196
|
-
"description": "Sandbox ID (UUID or realm-instance, e.g., abcd-123)",
|
|
9197
|
-
"name": "sandboxId",
|
|
9198
|
-
"required": true
|
|
9199
|
-
}
|
|
9200
|
-
},
|
|
9201
|
-
"description": "Delete an on-demand sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-delete",
|
|
9739
|
+
"args": {},
|
|
9740
|
+
"description": "Display sandbox user and system information\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-info",
|
|
9202
9741
|
"examples": [
|
|
9203
|
-
"<%= config.bin %> <%= command.id %>
|
|
9204
|
-
"<%= config.bin %> <%= command.id %>
|
|
9205
|
-
"<%= config.bin %> <%= command.id %>
|
|
9742
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9743
|
+
"<%= config.bin %> <%= command.id %> --json",
|
|
9744
|
+
"<%= config.bin %> <%= command.id %> --host admin.eu01.dx.commercecloud.salesforce.com"
|
|
9206
9745
|
],
|
|
9207
9746
|
"flags": {
|
|
9747
|
+
"json": {
|
|
9748
|
+
"description": "Output result as JSON",
|
|
9749
|
+
"helpGroup": "GLOBAL",
|
|
9750
|
+
"name": "json",
|
|
9751
|
+
"allowNo": false,
|
|
9752
|
+
"type": "boolean"
|
|
9753
|
+
},
|
|
9208
9754
|
"log-level": {
|
|
9209
9755
|
"description": "Set logging verbosity level",
|
|
9210
9756
|
"env": "SFCC_LOG_LEVEL",
|
|
@@ -9231,13 +9777,6 @@
|
|
|
9231
9777
|
"allowNo": false,
|
|
9232
9778
|
"type": "boolean"
|
|
9233
9779
|
},
|
|
9234
|
-
"json": {
|
|
9235
|
-
"description": "Output result as JSON",
|
|
9236
|
-
"helpGroup": "GLOBAL",
|
|
9237
|
-
"name": "json",
|
|
9238
|
-
"allowNo": false,
|
|
9239
|
-
"type": "boolean"
|
|
9240
|
-
},
|
|
9241
9780
|
"jsonl": {
|
|
9242
9781
|
"aliases": [
|
|
9243
9782
|
"json-logs"
|
|
@@ -9413,77 +9952,35 @@
|
|
|
9413
9952
|
"hasDynamicHelp": false,
|
|
9414
9953
|
"multiple": false,
|
|
9415
9954
|
"type": "option"
|
|
9416
|
-
},
|
|
9417
|
-
"force": {
|
|
9418
|
-
"char": "f",
|
|
9419
|
-
"description": "Skip confirmation prompt",
|
|
9420
|
-
"name": "force",
|
|
9421
|
-
"allowNo": false,
|
|
9422
|
-
"type": "boolean"
|
|
9423
|
-
},
|
|
9424
|
-
"wait": {
|
|
9425
|
-
"char": "w",
|
|
9426
|
-
"description": "Wait for the sandbox to be fully deleted before returning",
|
|
9427
|
-
"name": "wait",
|
|
9428
|
-
"allowNo": false,
|
|
9429
|
-
"type": "boolean"
|
|
9430
|
-
},
|
|
9431
|
-
"poll-interval": {
|
|
9432
|
-
"dependsOn": [
|
|
9433
|
-
"wait"
|
|
9434
|
-
],
|
|
9435
|
-
"description": "Polling interval in seconds when using --wait",
|
|
9436
|
-
"name": "poll-interval",
|
|
9437
|
-
"default": 10,
|
|
9438
|
-
"hasDynamicHelp": false,
|
|
9439
|
-
"multiple": false,
|
|
9440
|
-
"type": "option"
|
|
9441
|
-
},
|
|
9442
|
-
"timeout": {
|
|
9443
|
-
"dependsOn": [
|
|
9444
|
-
"wait"
|
|
9445
|
-
],
|
|
9446
|
-
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
9447
|
-
"name": "timeout",
|
|
9448
|
-
"default": 600,
|
|
9449
|
-
"hasDynamicHelp": false,
|
|
9450
|
-
"multiple": false,
|
|
9451
|
-
"type": "option"
|
|
9452
9955
|
}
|
|
9453
9956
|
},
|
|
9454
9957
|
"hasDynamicHelp": false,
|
|
9455
9958
|
"hiddenAliases": [],
|
|
9456
|
-
"id": "sandbox:
|
|
9959
|
+
"id": "sandbox:info",
|
|
9457
9960
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
9458
9961
|
"pluginName": "@salesforce/b2c-cli",
|
|
9459
9962
|
"pluginType": "core",
|
|
9460
9963
|
"strict": true,
|
|
9461
|
-
"enableJsonFlag":
|
|
9964
|
+
"enableJsonFlag": true,
|
|
9462
9965
|
"isESM": true,
|
|
9463
9966
|
"relativePath": [
|
|
9464
9967
|
"dist",
|
|
9465
9968
|
"commands",
|
|
9466
9969
|
"sandbox",
|
|
9467
|
-
"
|
|
9970
|
+
"info.js"
|
|
9468
9971
|
]
|
|
9469
9972
|
},
|
|
9470
|
-
"sandbox:
|
|
9973
|
+
"sandbox:ips": {
|
|
9471
9974
|
"aliases": [
|
|
9472
|
-
"ods:
|
|
9975
|
+
"ods:ips"
|
|
9473
9976
|
],
|
|
9474
|
-
"args": {
|
|
9475
|
-
|
|
9476
|
-
"description": "Sandbox ID (UUID or realm-instance, e.g., abcd-123)",
|
|
9477
|
-
"name": "sandboxId",
|
|
9478
|
-
"required": true
|
|
9479
|
-
}
|
|
9480
|
-
},
|
|
9481
|
-
"description": "Get details of a specific sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-get",
|
|
9977
|
+
"args": {},
|
|
9978
|
+
"description": "List inbound and outbound IP addresses for ODS sandboxes\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-ips",
|
|
9482
9979
|
"examples": [
|
|
9483
|
-
"<%= config.bin %> <%= command.id %>
|
|
9484
|
-
"<%= config.bin %> <%= command.id %>
|
|
9485
|
-
"<%= config.bin %> <%= command.id %>
|
|
9486
|
-
"<%= config.bin %> <%= command.id %>
|
|
9980
|
+
"<%= config.bin %> <%= command.id %>",
|
|
9981
|
+
"<%= config.bin %> <%= command.id %> --json",
|
|
9982
|
+
"<%= config.bin %> <%= command.id %> --realm zzzz",
|
|
9983
|
+
"<%= config.bin %> <%= command.id %> -r zzzz --json"
|
|
9487
9984
|
],
|
|
9488
9985
|
"flags": {
|
|
9489
9986
|
"json": {
|
|
@@ -9695,16 +10192,18 @@
|
|
|
9695
10192
|
"multiple": false,
|
|
9696
10193
|
"type": "option"
|
|
9697
10194
|
},
|
|
9698
|
-
"
|
|
9699
|
-
"
|
|
9700
|
-
"
|
|
9701
|
-
"
|
|
9702
|
-
"
|
|
10195
|
+
"realm": {
|
|
10196
|
+
"char": "r",
|
|
10197
|
+
"description": "Realm ID (four-letter ID) to get IP details for",
|
|
10198
|
+
"name": "realm",
|
|
10199
|
+
"hasDynamicHelp": false,
|
|
10200
|
+
"multiple": false,
|
|
10201
|
+
"type": "option"
|
|
9703
10202
|
}
|
|
9704
10203
|
},
|
|
9705
10204
|
"hasDynamicHelp": false,
|
|
9706
10205
|
"hiddenAliases": [],
|
|
9707
|
-
"id": "sandbox:
|
|
10206
|
+
"id": "sandbox:ips",
|
|
9708
10207
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
9709
10208
|
"pluginName": "@salesforce/b2c-cli",
|
|
9710
10209
|
"pluginType": "core",
|
|
@@ -9715,19 +10214,23 @@
|
|
|
9715
10214
|
"dist",
|
|
9716
10215
|
"commands",
|
|
9717
10216
|
"sandbox",
|
|
9718
|
-
"
|
|
10217
|
+
"ips.js"
|
|
9719
10218
|
]
|
|
9720
10219
|
},
|
|
9721
|
-
"sandbox:
|
|
10220
|
+
"sandbox:list": {
|
|
9722
10221
|
"aliases": [
|
|
9723
|
-
"ods:
|
|
10222
|
+
"ods:list"
|
|
9724
10223
|
],
|
|
9725
10224
|
"args": {},
|
|
9726
|
-
"description": "
|
|
10225
|
+
"description": "List all on-demand sandboxes\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-list",
|
|
9727
10226
|
"examples": [
|
|
9728
10227
|
"<%= config.bin %> <%= command.id %>",
|
|
9729
|
-
"<%= config.bin %> <%= command.id %> --
|
|
9730
|
-
"<%= config.bin %> <%= command.id %> --
|
|
10228
|
+
"<%= config.bin %> <%= command.id %> --realm abcd",
|
|
10229
|
+
"<%= config.bin %> <%= command.id %> --filter-params \"realm=abcd&state=started\"",
|
|
10230
|
+
"<%= config.bin %> <%= command.id %> --show-deleted",
|
|
10231
|
+
"<%= config.bin %> <%= command.id %> --extended",
|
|
10232
|
+
"<%= config.bin %> <%= command.id %> --columns realm,instance,state,hostname",
|
|
10233
|
+
"<%= config.bin %> <%= command.id %> --json"
|
|
9731
10234
|
],
|
|
9732
10235
|
"flags": {
|
|
9733
10236
|
"json": {
|
|
@@ -9938,11 +10441,47 @@
|
|
|
9938
10441
|
"hasDynamicHelp": false,
|
|
9939
10442
|
"multiple": false,
|
|
9940
10443
|
"type": "option"
|
|
10444
|
+
},
|
|
10445
|
+
"realm": {
|
|
10446
|
+
"char": "r",
|
|
10447
|
+
"description": "Filter by realm ID (four-letter ID)",
|
|
10448
|
+
"name": "realm",
|
|
10449
|
+
"hasDynamicHelp": false,
|
|
10450
|
+
"multiple": false,
|
|
10451
|
+
"type": "option"
|
|
10452
|
+
},
|
|
10453
|
+
"filter-params": {
|
|
10454
|
+
"description": "Raw filter parameters (e.g., \"realm=abcd&state=started&resourceProfile=medium\")",
|
|
10455
|
+
"name": "filter-params",
|
|
10456
|
+
"hasDynamicHelp": false,
|
|
10457
|
+
"multiple": false,
|
|
10458
|
+
"type": "option"
|
|
10459
|
+
},
|
|
10460
|
+
"show-deleted": {
|
|
10461
|
+
"description": "Include deleted sandboxes in the list",
|
|
10462
|
+
"name": "show-deleted",
|
|
10463
|
+
"allowNo": false,
|
|
10464
|
+
"type": "boolean"
|
|
10465
|
+
},
|
|
10466
|
+
"columns": {
|
|
10467
|
+
"char": "c",
|
|
10468
|
+
"description": "Columns to display (comma-separated). Available: realm, instance, state, profile, created, eol, id, hostname, createdBy, autoScheduled, isCloned",
|
|
10469
|
+
"name": "columns",
|
|
10470
|
+
"hasDynamicHelp": false,
|
|
10471
|
+
"multiple": false,
|
|
10472
|
+
"type": "option"
|
|
10473
|
+
},
|
|
10474
|
+
"extended": {
|
|
10475
|
+
"char": "x",
|
|
10476
|
+
"description": "Show all columns including extended fields",
|
|
10477
|
+
"name": "extended",
|
|
10478
|
+
"allowNo": false,
|
|
10479
|
+
"type": "boolean"
|
|
9941
10480
|
}
|
|
9942
10481
|
},
|
|
9943
10482
|
"hasDynamicHelp": false,
|
|
9944
10483
|
"hiddenAliases": [],
|
|
9945
|
-
"id": "sandbox:
|
|
10484
|
+
"id": "sandbox:list",
|
|
9946
10485
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
9947
10486
|
"pluginName": "@salesforce/b2c-cli",
|
|
9948
10487
|
"pluginType": "core",
|
|
@@ -9953,20 +10492,26 @@
|
|
|
9953
10492
|
"dist",
|
|
9954
10493
|
"commands",
|
|
9955
10494
|
"sandbox",
|
|
9956
|
-
"
|
|
10495
|
+
"list.js"
|
|
9957
10496
|
]
|
|
9958
10497
|
},
|
|
9959
|
-
"sandbox:
|
|
10498
|
+
"sandbox:reset": {
|
|
9960
10499
|
"aliases": [
|
|
9961
|
-
"ods:
|
|
10500
|
+
"ods:reset"
|
|
9962
10501
|
],
|
|
9963
|
-
"args": {
|
|
9964
|
-
|
|
10502
|
+
"args": {
|
|
10503
|
+
"sandboxId": {
|
|
10504
|
+
"description": "Sandbox ID (UUID or realm-instance, e.g., abcd-123)",
|
|
10505
|
+
"name": "sandboxId",
|
|
10506
|
+
"required": true
|
|
10507
|
+
}
|
|
10508
|
+
},
|
|
10509
|
+
"description": "Reset a sandbox to clean state (clears all data and code but preserves configuration)\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-reset",
|
|
9965
10510
|
"examples": [
|
|
9966
|
-
"<%= config.bin %> <%= command.id %>",
|
|
9967
|
-
"<%= config.bin %> <%= command.id %>
|
|
9968
|
-
"<%= config.bin %> <%= command.id %> --
|
|
9969
|
-
"<%= config.bin %> <%= command.id %> -
|
|
10511
|
+
"<%= config.bin %> <%= command.id %> abc12345-1234-1234-1234-abc123456789",
|
|
10512
|
+
"<%= config.bin %> <%= command.id %> zzzv-123",
|
|
10513
|
+
"<%= config.bin %> <%= command.id %> zzzv-123 --wait",
|
|
10514
|
+
"<%= config.bin %> <%= command.id %> zzzv-123 --force --json"
|
|
9970
10515
|
],
|
|
9971
10516
|
"flags": {
|
|
9972
10517
|
"json": {
|
|
@@ -10178,18 +10723,46 @@
|
|
|
10178
10723
|
"multiple": false,
|
|
10179
10724
|
"type": "option"
|
|
10180
10725
|
},
|
|
10181
|
-
"
|
|
10182
|
-
"char": "
|
|
10183
|
-
"description": "
|
|
10184
|
-
"name": "
|
|
10726
|
+
"wait": {
|
|
10727
|
+
"char": "w",
|
|
10728
|
+
"description": "Wait for the sandbox to reach started state after reset",
|
|
10729
|
+
"name": "wait",
|
|
10730
|
+
"allowNo": false,
|
|
10731
|
+
"type": "boolean"
|
|
10732
|
+
},
|
|
10733
|
+
"poll-interval": {
|
|
10734
|
+
"dependsOn": [
|
|
10735
|
+
"wait"
|
|
10736
|
+
],
|
|
10737
|
+
"description": "Polling interval in seconds when using --wait",
|
|
10738
|
+
"name": "poll-interval",
|
|
10739
|
+
"default": 10,
|
|
10185
10740
|
"hasDynamicHelp": false,
|
|
10186
10741
|
"multiple": false,
|
|
10187
10742
|
"type": "option"
|
|
10743
|
+
},
|
|
10744
|
+
"timeout": {
|
|
10745
|
+
"dependsOn": [
|
|
10746
|
+
"wait"
|
|
10747
|
+
],
|
|
10748
|
+
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
10749
|
+
"name": "timeout",
|
|
10750
|
+
"default": 600,
|
|
10751
|
+
"hasDynamicHelp": false,
|
|
10752
|
+
"multiple": false,
|
|
10753
|
+
"type": "option"
|
|
10754
|
+
},
|
|
10755
|
+
"force": {
|
|
10756
|
+
"char": "f",
|
|
10757
|
+
"description": "Skip confirmation prompt",
|
|
10758
|
+
"name": "force",
|
|
10759
|
+
"allowNo": false,
|
|
10760
|
+
"type": "boolean"
|
|
10188
10761
|
}
|
|
10189
10762
|
},
|
|
10190
10763
|
"hasDynamicHelp": false,
|
|
10191
10764
|
"hiddenAliases": [],
|
|
10192
|
-
"id": "sandbox:
|
|
10765
|
+
"id": "sandbox:reset",
|
|
10193
10766
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
10194
10767
|
"pluginName": "@salesforce/b2c-cli",
|
|
10195
10768
|
"pluginType": "core",
|
|
@@ -10200,23 +10773,27 @@
|
|
|
10200
10773
|
"dist",
|
|
10201
10774
|
"commands",
|
|
10202
10775
|
"sandbox",
|
|
10203
|
-
"
|
|
10776
|
+
"reset.js"
|
|
10204
10777
|
]
|
|
10205
10778
|
},
|
|
10206
|
-
"sandbox:
|
|
10779
|
+
"sandbox:restart": {
|
|
10207
10780
|
"aliases": [
|
|
10208
|
-
"ods:
|
|
10781
|
+
"ods:restart"
|
|
10209
10782
|
],
|
|
10210
|
-
"args": {
|
|
10211
|
-
|
|
10783
|
+
"args": {
|
|
10784
|
+
"sandboxId": {
|
|
10785
|
+
"description": "Sandbox ID (UUID or realm-instance, e.g., abcd-123)",
|
|
10786
|
+
"name": "sandboxId",
|
|
10787
|
+
"required": true
|
|
10788
|
+
}
|
|
10789
|
+
},
|
|
10790
|
+
"description": "Restart an on-demand sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-restart",
|
|
10212
10791
|
"examples": [
|
|
10213
|
-
"<%= config.bin %> <%= command.id %>",
|
|
10214
|
-
"<%= config.bin %> <%= command.id %>
|
|
10215
|
-
"<%= config.bin %> <%= command.id %>
|
|
10216
|
-
"<%= config.bin %> <%= command.id %> --
|
|
10217
|
-
"<%= config.bin %> <%= command.id %> --
|
|
10218
|
-
"<%= config.bin %> <%= command.id %> --columns realm,instance,state,hostname",
|
|
10219
|
-
"<%= config.bin %> <%= command.id %> --json"
|
|
10792
|
+
"<%= config.bin %> <%= command.id %> abc12345-1234-1234-1234-abc123456789",
|
|
10793
|
+
"<%= config.bin %> <%= command.id %> zzzv-123",
|
|
10794
|
+
"<%= config.bin %> <%= command.id %> zzzv-123 --wait",
|
|
10795
|
+
"<%= config.bin %> <%= command.id %> zzzv-123 --wait --poll-interval 15",
|
|
10796
|
+
"<%= config.bin %> <%= command.id %> zzzv_123 --json"
|
|
10220
10797
|
],
|
|
10221
10798
|
"flags": {
|
|
10222
10799
|
"json": {
|
|
@@ -10428,46 +11005,39 @@
|
|
|
10428
11005
|
"multiple": false,
|
|
10429
11006
|
"type": "option"
|
|
10430
11007
|
},
|
|
10431
|
-
"
|
|
10432
|
-
"char": "
|
|
10433
|
-
"description": "
|
|
10434
|
-
"name": "
|
|
10435
|
-
"
|
|
10436
|
-
"
|
|
10437
|
-
"type": "option"
|
|
11008
|
+
"wait": {
|
|
11009
|
+
"char": "w",
|
|
11010
|
+
"description": "Wait for the sandbox to reach started or failed state before returning",
|
|
11011
|
+
"name": "wait",
|
|
11012
|
+
"allowNo": false,
|
|
11013
|
+
"type": "boolean"
|
|
10438
11014
|
},
|
|
10439
|
-
"
|
|
10440
|
-
"
|
|
10441
|
-
|
|
11015
|
+
"poll-interval": {
|
|
11016
|
+
"dependsOn": [
|
|
11017
|
+
"wait"
|
|
11018
|
+
],
|
|
11019
|
+
"description": "Polling interval in seconds when using --wait",
|
|
11020
|
+
"name": "poll-interval",
|
|
11021
|
+
"default": 10,
|
|
10442
11022
|
"hasDynamicHelp": false,
|
|
10443
11023
|
"multiple": false,
|
|
10444
11024
|
"type": "option"
|
|
10445
11025
|
},
|
|
10446
|
-
"
|
|
10447
|
-
"
|
|
10448
|
-
|
|
10449
|
-
|
|
10450
|
-
"
|
|
10451
|
-
|
|
10452
|
-
|
|
10453
|
-
"char": "c",
|
|
10454
|
-
"description": "Columns to display (comma-separated). Available: realm, instance, state, profile, created, eol, id, hostname, createdBy, autoScheduled, isCloned",
|
|
10455
|
-
"name": "columns",
|
|
11026
|
+
"timeout": {
|
|
11027
|
+
"dependsOn": [
|
|
11028
|
+
"wait"
|
|
11029
|
+
],
|
|
11030
|
+
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
11031
|
+
"name": "timeout",
|
|
11032
|
+
"default": 600,
|
|
10456
11033
|
"hasDynamicHelp": false,
|
|
10457
11034
|
"multiple": false,
|
|
10458
11035
|
"type": "option"
|
|
10459
|
-
},
|
|
10460
|
-
"extended": {
|
|
10461
|
-
"char": "x",
|
|
10462
|
-
"description": "Show all columns including extended fields",
|
|
10463
|
-
"name": "extended",
|
|
10464
|
-
"allowNo": false,
|
|
10465
|
-
"type": "boolean"
|
|
10466
11036
|
}
|
|
10467
11037
|
},
|
|
10468
11038
|
"hasDynamicHelp": false,
|
|
10469
11039
|
"hiddenAliases": [],
|
|
10470
|
-
"id": "sandbox:
|
|
11040
|
+
"id": "sandbox:restart",
|
|
10471
11041
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
10472
11042
|
"pluginName": "@salesforce/b2c-cli",
|
|
10473
11043
|
"pluginType": "core",
|
|
@@ -10478,26 +11048,24 @@
|
|
|
10478
11048
|
"dist",
|
|
10479
11049
|
"commands",
|
|
10480
11050
|
"sandbox",
|
|
10481
|
-
"
|
|
11051
|
+
"restart.js"
|
|
10482
11052
|
]
|
|
10483
11053
|
},
|
|
10484
|
-
"sandbox:
|
|
11054
|
+
"sandbox:settings": {
|
|
10485
11055
|
"aliases": [
|
|
10486
|
-
"ods:
|
|
11056
|
+
"ods:settings"
|
|
10487
11057
|
],
|
|
10488
11058
|
"args": {
|
|
10489
11059
|
"sandboxId": {
|
|
10490
|
-
"description": "Sandbox ID (UUID or realm-instance, e.g.,
|
|
11060
|
+
"description": "Sandbox ID (UUID or realm-instance, e.g., zzzz-001)",
|
|
10491
11061
|
"name": "sandboxId",
|
|
10492
11062
|
"required": true
|
|
10493
11063
|
}
|
|
10494
11064
|
},
|
|
10495
|
-
"description": "
|
|
11065
|
+
"description": "Show settings for a specific sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-settings",
|
|
10496
11066
|
"examples": [
|
|
10497
|
-
"<%= config.bin %> <%= command.id %>
|
|
10498
|
-
"<%= config.bin %> <%= command.id %>
|
|
10499
|
-
"<%= config.bin %> <%= command.id %> zzzv-123 --wait",
|
|
10500
|
-
"<%= config.bin %> <%= command.id %> zzzv-123 --force --json"
|
|
11067
|
+
"<%= config.bin %> <%= command.id %> zzzz-001",
|
|
11068
|
+
"<%= config.bin %> <%= command.id %> zzzz-001 --json"
|
|
10501
11069
|
],
|
|
10502
11070
|
"flags": {
|
|
10503
11071
|
"json": {
|
|
@@ -10708,47 +11276,11 @@
|
|
|
10708
11276
|
"hasDynamicHelp": false,
|
|
10709
11277
|
"multiple": false,
|
|
10710
11278
|
"type": "option"
|
|
10711
|
-
},
|
|
10712
|
-
"wait": {
|
|
10713
|
-
"char": "w",
|
|
10714
|
-
"description": "Wait for the sandbox to reach started state after reset",
|
|
10715
|
-
"name": "wait",
|
|
10716
|
-
"allowNo": false,
|
|
10717
|
-
"type": "boolean"
|
|
10718
|
-
},
|
|
10719
|
-
"poll-interval": {
|
|
10720
|
-
"dependsOn": [
|
|
10721
|
-
"wait"
|
|
10722
|
-
],
|
|
10723
|
-
"description": "Polling interval in seconds when using --wait",
|
|
10724
|
-
"name": "poll-interval",
|
|
10725
|
-
"default": 10,
|
|
10726
|
-
"hasDynamicHelp": false,
|
|
10727
|
-
"multiple": false,
|
|
10728
|
-
"type": "option"
|
|
10729
|
-
},
|
|
10730
|
-
"timeout": {
|
|
10731
|
-
"dependsOn": [
|
|
10732
|
-
"wait"
|
|
10733
|
-
],
|
|
10734
|
-
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
10735
|
-
"name": "timeout",
|
|
10736
|
-
"default": 600,
|
|
10737
|
-
"hasDynamicHelp": false,
|
|
10738
|
-
"multiple": false,
|
|
10739
|
-
"type": "option"
|
|
10740
|
-
},
|
|
10741
|
-
"force": {
|
|
10742
|
-
"char": "f",
|
|
10743
|
-
"description": "Skip confirmation prompt",
|
|
10744
|
-
"name": "force",
|
|
10745
|
-
"allowNo": false,
|
|
10746
|
-
"type": "boolean"
|
|
10747
11279
|
}
|
|
10748
11280
|
},
|
|
10749
11281
|
"hasDynamicHelp": false,
|
|
10750
11282
|
"hiddenAliases": [],
|
|
10751
|
-
"id": "sandbox:
|
|
11283
|
+
"id": "sandbox:settings",
|
|
10752
11284
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
10753
11285
|
"pluginName": "@salesforce/b2c-cli",
|
|
10754
11286
|
"pluginType": "core",
|
|
@@ -10759,12 +11291,12 @@
|
|
|
10759
11291
|
"dist",
|
|
10760
11292
|
"commands",
|
|
10761
11293
|
"sandbox",
|
|
10762
|
-
"
|
|
11294
|
+
"settings.js"
|
|
10763
11295
|
]
|
|
10764
11296
|
},
|
|
10765
|
-
"sandbox:
|
|
11297
|
+
"sandbox:start": {
|
|
10766
11298
|
"aliases": [
|
|
10767
|
-
"ods:
|
|
11299
|
+
"ods:start"
|
|
10768
11300
|
],
|
|
10769
11301
|
"args": {
|
|
10770
11302
|
"sandboxId": {
|
|
@@ -10773,7 +11305,7 @@
|
|
|
10773
11305
|
"required": true
|
|
10774
11306
|
}
|
|
10775
11307
|
},
|
|
10776
|
-
"description": "
|
|
11308
|
+
"description": "Start an on-demand sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-start",
|
|
10777
11309
|
"examples": [
|
|
10778
11310
|
"<%= config.bin %> <%= command.id %> abc12345-1234-1234-1234-abc123456789",
|
|
10779
11311
|
"<%= config.bin %> <%= command.id %> zzzv-123",
|
|
@@ -11023,7 +11555,7 @@
|
|
|
11023
11555
|
},
|
|
11024
11556
|
"hasDynamicHelp": false,
|
|
11025
11557
|
"hiddenAliases": [],
|
|
11026
|
-
"id": "sandbox:
|
|
11558
|
+
"id": "sandbox:start",
|
|
11027
11559
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
11028
11560
|
"pluginName": "@salesforce/b2c-cli",
|
|
11029
11561
|
"pluginType": "core",
|
|
@@ -11034,12 +11566,12 @@
|
|
|
11034
11566
|
"dist",
|
|
11035
11567
|
"commands",
|
|
11036
11568
|
"sandbox",
|
|
11037
|
-
"
|
|
11569
|
+
"start.js"
|
|
11038
11570
|
]
|
|
11039
11571
|
},
|
|
11040
|
-
"sandbox:
|
|
11572
|
+
"sandbox:stop": {
|
|
11041
11573
|
"aliases": [
|
|
11042
|
-
"ods:
|
|
11574
|
+
"ods:stop"
|
|
11043
11575
|
],
|
|
11044
11576
|
"args": {
|
|
11045
11577
|
"sandboxId": {
|
|
@@ -11048,7 +11580,7 @@
|
|
|
11048
11580
|
"required": true
|
|
11049
11581
|
}
|
|
11050
11582
|
},
|
|
11051
|
-
"description": "
|
|
11583
|
+
"description": "Stop an on-demand sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-stop",
|
|
11052
11584
|
"examples": [
|
|
11053
11585
|
"<%= config.bin %> <%= command.id %> abc12345-1234-1234-1234-abc123456789",
|
|
11054
11586
|
"<%= config.bin %> <%= command.id %> zzzv-123",
|
|
@@ -11268,7 +11800,7 @@
|
|
|
11268
11800
|
},
|
|
11269
11801
|
"wait": {
|
|
11270
11802
|
"char": "w",
|
|
11271
|
-
"description": "Wait for the sandbox to reach
|
|
11803
|
+
"description": "Wait for the sandbox to reach stopped or failed state before returning",
|
|
11272
11804
|
"name": "wait",
|
|
11273
11805
|
"allowNo": false,
|
|
11274
11806
|
"type": "boolean"
|
|
@@ -11298,7 +11830,7 @@
|
|
|
11298
11830
|
},
|
|
11299
11831
|
"hasDynamicHelp": false,
|
|
11300
11832
|
"hiddenAliases": [],
|
|
11301
|
-
"id": "sandbox:
|
|
11833
|
+
"id": "sandbox:stop",
|
|
11302
11834
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
11303
11835
|
"pluginName": "@salesforce/b2c-cli",
|
|
11304
11836
|
"pluginType": "core",
|
|
@@ -11309,27 +11841,24 @@
|
|
|
11309
11841
|
"dist",
|
|
11310
11842
|
"commands",
|
|
11311
11843
|
"sandbox",
|
|
11312
|
-
"
|
|
11844
|
+
"stop.js"
|
|
11313
11845
|
]
|
|
11314
11846
|
},
|
|
11315
|
-
"sandbox:
|
|
11847
|
+
"sandbox:storage": {
|
|
11316
11848
|
"aliases": [
|
|
11317
|
-
"ods:
|
|
11849
|
+
"ods:storage"
|
|
11318
11850
|
],
|
|
11319
11851
|
"args": {
|
|
11320
11852
|
"sandboxId": {
|
|
11321
|
-
"description": "Sandbox ID (UUID or realm-instance, e.g.,
|
|
11853
|
+
"description": "Sandbox ID (UUID or realm-instance, e.g., zzzz-001)",
|
|
11322
11854
|
"name": "sandboxId",
|
|
11323
11855
|
"required": true
|
|
11324
11856
|
}
|
|
11325
11857
|
},
|
|
11326
|
-
"description": "
|
|
11858
|
+
"description": "Show storage details for a specific sandbox\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html#b2c-sandbox-storage",
|
|
11327
11859
|
"examples": [
|
|
11328
|
-
"<%= config.bin %> <%= command.id %>
|
|
11329
|
-
"<%= config.bin %> <%= command.id %>
|
|
11330
|
-
"<%= config.bin %> <%= command.id %> zzzv-123 --wait",
|
|
11331
|
-
"<%= config.bin %> <%= command.id %> zzzv-123 --wait --poll-interval 15",
|
|
11332
|
-
"<%= config.bin %> <%= command.id %> zzzv_123 --json"
|
|
11860
|
+
"<%= config.bin %> <%= command.id %> zzzz-001",
|
|
11861
|
+
"<%= config.bin %> <%= command.id %> zzzz-001 --json"
|
|
11333
11862
|
],
|
|
11334
11863
|
"flags": {
|
|
11335
11864
|
"json": {
|
|
@@ -11540,40 +12069,11 @@
|
|
|
11540
12069
|
"hasDynamicHelp": false,
|
|
11541
12070
|
"multiple": false,
|
|
11542
12071
|
"type": "option"
|
|
11543
|
-
},
|
|
11544
|
-
"wait": {
|
|
11545
|
-
"char": "w",
|
|
11546
|
-
"description": "Wait for the sandbox to reach stopped or failed state before returning",
|
|
11547
|
-
"name": "wait",
|
|
11548
|
-
"allowNo": false,
|
|
11549
|
-
"type": "boolean"
|
|
11550
|
-
},
|
|
11551
|
-
"poll-interval": {
|
|
11552
|
-
"dependsOn": [
|
|
11553
|
-
"wait"
|
|
11554
|
-
],
|
|
11555
|
-
"description": "Polling interval in seconds when using --wait",
|
|
11556
|
-
"name": "poll-interval",
|
|
11557
|
-
"default": 10,
|
|
11558
|
-
"hasDynamicHelp": false,
|
|
11559
|
-
"multiple": false,
|
|
11560
|
-
"type": "option"
|
|
11561
|
-
},
|
|
11562
|
-
"timeout": {
|
|
11563
|
-
"dependsOn": [
|
|
11564
|
-
"wait"
|
|
11565
|
-
],
|
|
11566
|
-
"description": "Maximum time to wait in seconds when using --wait (0 for no timeout)",
|
|
11567
|
-
"name": "timeout",
|
|
11568
|
-
"default": 600,
|
|
11569
|
-
"hasDynamicHelp": false,
|
|
11570
|
-
"multiple": false,
|
|
11571
|
-
"type": "option"
|
|
11572
12072
|
}
|
|
11573
12073
|
},
|
|
11574
12074
|
"hasDynamicHelp": false,
|
|
11575
12075
|
"hiddenAliases": [],
|
|
11576
|
-
"id": "sandbox:
|
|
12076
|
+
"id": "sandbox:storage",
|
|
11577
12077
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
11578
12078
|
"pluginName": "@salesforce/b2c-cli",
|
|
11579
12079
|
"pluginType": "core",
|
|
@@ -11584,7 +12084,7 @@
|
|
|
11584
12084
|
"dist",
|
|
11585
12085
|
"commands",
|
|
11586
12086
|
"sandbox",
|
|
11587
|
-
"
|
|
12087
|
+
"storage.js"
|
|
11588
12088
|
]
|
|
11589
12089
|
},
|
|
11590
12090
|
"sandbox:update": {
|
|
@@ -24141,7 +24641,7 @@
|
|
|
24141
24641
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
24142
24642
|
"helpGroup": "QUERY",
|
|
24143
24643
|
"name": "from",
|
|
24144
|
-
"default": "2026-
|
|
24644
|
+
"default": "2026-04-01",
|
|
24145
24645
|
"hasDynamicHelp": false,
|
|
24146
24646
|
"multiple": false,
|
|
24147
24647
|
"type": "option"
|
|
@@ -24150,7 +24650,7 @@
|
|
|
24150
24650
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
24151
24651
|
"helpGroup": "QUERY",
|
|
24152
24652
|
"name": "to",
|
|
24153
|
-
"default": "2026-
|
|
24653
|
+
"default": "2026-04-06",
|
|
24154
24654
|
"hasDynamicHelp": false,
|
|
24155
24655
|
"multiple": false,
|
|
24156
24656
|
"type": "option"
|
|
@@ -24472,7 +24972,7 @@
|
|
|
24472
24972
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
24473
24973
|
"helpGroup": "QUERY",
|
|
24474
24974
|
"name": "from",
|
|
24475
|
-
"default": "2026-
|
|
24975
|
+
"default": "2026-04-01",
|
|
24476
24976
|
"hasDynamicHelp": false,
|
|
24477
24977
|
"multiple": false,
|
|
24478
24978
|
"type": "option"
|
|
@@ -24481,7 +24981,7 @@
|
|
|
24481
24981
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
24482
24982
|
"helpGroup": "QUERY",
|
|
24483
24983
|
"name": "to",
|
|
24484
|
-
"default": "2026-
|
|
24984
|
+
"default": "2026-04-06",
|
|
24485
24985
|
"hasDynamicHelp": false,
|
|
24486
24986
|
"multiple": false,
|
|
24487
24987
|
"type": "option"
|
|
@@ -24803,7 +25303,7 @@
|
|
|
24803
25303
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
24804
25304
|
"helpGroup": "QUERY",
|
|
24805
25305
|
"name": "from",
|
|
24806
|
-
"default": "2026-
|
|
25306
|
+
"default": "2026-04-01",
|
|
24807
25307
|
"hasDynamicHelp": false,
|
|
24808
25308
|
"multiple": false,
|
|
24809
25309
|
"type": "option"
|
|
@@ -24812,7 +25312,7 @@
|
|
|
24812
25312
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
24813
25313
|
"helpGroup": "QUERY",
|
|
24814
25314
|
"name": "to",
|
|
24815
|
-
"default": "2026-
|
|
25315
|
+
"default": "2026-04-06",
|
|
24816
25316
|
"hasDynamicHelp": false,
|
|
24817
25317
|
"multiple": false,
|
|
24818
25318
|
"type": "option"
|
|
@@ -25134,7 +25634,7 @@
|
|
|
25134
25634
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
25135
25635
|
"helpGroup": "QUERY",
|
|
25136
25636
|
"name": "from",
|
|
25137
|
-
"default": "2026-
|
|
25637
|
+
"default": "2026-04-01",
|
|
25138
25638
|
"hasDynamicHelp": false,
|
|
25139
25639
|
"multiple": false,
|
|
25140
25640
|
"type": "option"
|
|
@@ -25143,7 +25643,7 @@
|
|
|
25143
25643
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
25144
25644
|
"helpGroup": "QUERY",
|
|
25145
25645
|
"name": "to",
|
|
25146
|
-
"default": "2026-
|
|
25646
|
+
"default": "2026-04-06",
|
|
25147
25647
|
"hasDynamicHelp": false,
|
|
25148
25648
|
"multiple": false,
|
|
25149
25649
|
"type": "option"
|
|
@@ -25465,7 +25965,7 @@
|
|
|
25465
25965
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
25466
25966
|
"helpGroup": "QUERY",
|
|
25467
25967
|
"name": "from",
|
|
25468
|
-
"default": "2026-
|
|
25968
|
+
"default": "2026-04-01",
|
|
25469
25969
|
"hasDynamicHelp": false,
|
|
25470
25970
|
"multiple": false,
|
|
25471
25971
|
"type": "option"
|
|
@@ -25474,7 +25974,7 @@
|
|
|
25474
25974
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
25475
25975
|
"helpGroup": "QUERY",
|
|
25476
25976
|
"name": "to",
|
|
25477
|
-
"default": "2026-
|
|
25977
|
+
"default": "2026-04-06",
|
|
25478
25978
|
"hasDynamicHelp": false,
|
|
25479
25979
|
"multiple": false,
|
|
25480
25980
|
"type": "option"
|
|
@@ -25787,7 +26287,7 @@
|
|
|
25787
26287
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
25788
26288
|
"helpGroup": "QUERY",
|
|
25789
26289
|
"name": "from",
|
|
25790
|
-
"default": "2026-
|
|
26290
|
+
"default": "2026-04-01",
|
|
25791
26291
|
"hasDynamicHelp": false,
|
|
25792
26292
|
"multiple": false,
|
|
25793
26293
|
"type": "option"
|
|
@@ -25796,7 +26296,7 @@
|
|
|
25796
26296
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
25797
26297
|
"helpGroup": "QUERY",
|
|
25798
26298
|
"name": "to",
|
|
25799
|
-
"default": "2026-
|
|
26299
|
+
"default": "2026-04-06",
|
|
25800
26300
|
"hasDynamicHelp": false,
|
|
25801
26301
|
"multiple": false,
|
|
25802
26302
|
"type": "option"
|
|
@@ -26118,7 +26618,7 @@
|
|
|
26118
26618
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
26119
26619
|
"helpGroup": "QUERY",
|
|
26120
26620
|
"name": "from",
|
|
26121
|
-
"default": "2026-
|
|
26621
|
+
"default": "2026-04-01",
|
|
26122
26622
|
"hasDynamicHelp": false,
|
|
26123
26623
|
"multiple": false,
|
|
26124
26624
|
"type": "option"
|
|
@@ -26127,7 +26627,7 @@
|
|
|
26127
26627
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
26128
26628
|
"helpGroup": "QUERY",
|
|
26129
26629
|
"name": "to",
|
|
26130
|
-
"default": "2026-
|
|
26630
|
+
"default": "2026-04-06",
|
|
26131
26631
|
"hasDynamicHelp": false,
|
|
26132
26632
|
"multiple": false,
|
|
26133
26633
|
"type": "option"
|
|
@@ -26449,7 +26949,7 @@
|
|
|
26449
26949
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
26450
26950
|
"helpGroup": "QUERY",
|
|
26451
26951
|
"name": "from",
|
|
26452
|
-
"default": "2026-
|
|
26952
|
+
"default": "2026-04-01",
|
|
26453
26953
|
"hasDynamicHelp": false,
|
|
26454
26954
|
"multiple": false,
|
|
26455
26955
|
"type": "option"
|
|
@@ -26458,7 +26958,7 @@
|
|
|
26458
26958
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
26459
26959
|
"helpGroup": "QUERY",
|
|
26460
26960
|
"name": "to",
|
|
26461
|
-
"default": "2026-
|
|
26961
|
+
"default": "2026-04-06",
|
|
26462
26962
|
"hasDynamicHelp": false,
|
|
26463
26963
|
"multiple": false,
|
|
26464
26964
|
"type": "option"
|
|
@@ -26793,7 +27293,7 @@
|
|
|
26793
27293
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
26794
27294
|
"helpGroup": "QUERY",
|
|
26795
27295
|
"name": "from",
|
|
26796
|
-
"default": "2026-
|
|
27296
|
+
"default": "2026-04-01",
|
|
26797
27297
|
"hasDynamicHelp": false,
|
|
26798
27298
|
"multiple": false,
|
|
26799
27299
|
"type": "option"
|
|
@@ -26802,7 +27302,7 @@
|
|
|
26802
27302
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
26803
27303
|
"helpGroup": "QUERY",
|
|
26804
27304
|
"name": "to",
|
|
26805
|
-
"default": "2026-
|
|
27305
|
+
"default": "2026-04-06",
|
|
26806
27306
|
"hasDynamicHelp": false,
|
|
26807
27307
|
"multiple": false,
|
|
26808
27308
|
"type": "option"
|
|
@@ -27133,7 +27633,7 @@
|
|
|
27133
27633
|
"description": "Inclusive start date (YYYY-MM-DD)",
|
|
27134
27634
|
"helpGroup": "QUERY",
|
|
27135
27635
|
"name": "from",
|
|
27136
|
-
"default": "2026-
|
|
27636
|
+
"default": "2026-04-01",
|
|
27137
27637
|
"hasDynamicHelp": false,
|
|
27138
27638
|
"multiple": false,
|
|
27139
27639
|
"type": "option"
|
|
@@ -27142,7 +27642,7 @@
|
|
|
27142
27642
|
"description": "Inclusive end date (YYYY-MM-DD)",
|
|
27143
27643
|
"helpGroup": "QUERY",
|
|
27144
27644
|
"name": "to",
|
|
27145
|
-
"default": "2026-
|
|
27645
|
+
"default": "2026-04-06",
|
|
27146
27646
|
"hasDynamicHelp": false,
|
|
27147
27647
|
"multiple": false,
|
|
27148
27648
|
"type": "option"
|
|
@@ -40155,10 +40655,253 @@
|
|
|
40155
40655
|
"list.js"
|
|
40156
40656
|
]
|
|
40157
40657
|
},
|
|
40658
|
+
"sandbox:realm:configuration": {
|
|
40659
|
+
"aliases": [
|
|
40660
|
+
"ods:realm:configuration"
|
|
40661
|
+
],
|
|
40662
|
+
"args": {
|
|
40663
|
+
"realm": {
|
|
40664
|
+
"description": "Realm ID (four-letter ID)",
|
|
40665
|
+
"name": "realm",
|
|
40666
|
+
"required": true
|
|
40667
|
+
}
|
|
40668
|
+
},
|
|
40669
|
+
"description": "Get sandbox configuration for a realm\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/realm.html#b2c-realm-configuration",
|
|
40670
|
+
"examples": [
|
|
40671
|
+
"<%= config.bin %> <%= command.id %> zzzz",
|
|
40672
|
+
"<%= config.bin %> <%= command.id %> zzzz --json"
|
|
40673
|
+
],
|
|
40674
|
+
"flags": {
|
|
40675
|
+
"json": {
|
|
40676
|
+
"description": "Output result as JSON",
|
|
40677
|
+
"helpGroup": "GLOBAL",
|
|
40678
|
+
"name": "json",
|
|
40679
|
+
"allowNo": false,
|
|
40680
|
+
"type": "boolean"
|
|
40681
|
+
},
|
|
40682
|
+
"log-level": {
|
|
40683
|
+
"description": "Set logging verbosity level",
|
|
40684
|
+
"env": "SFCC_LOG_LEVEL",
|
|
40685
|
+
"helpGroup": "GLOBAL",
|
|
40686
|
+
"name": "log-level",
|
|
40687
|
+
"hasDynamicHelp": false,
|
|
40688
|
+
"multiple": false,
|
|
40689
|
+
"options": [
|
|
40690
|
+
"trace",
|
|
40691
|
+
"debug",
|
|
40692
|
+
"info",
|
|
40693
|
+
"warn",
|
|
40694
|
+
"error",
|
|
40695
|
+
"silent"
|
|
40696
|
+
],
|
|
40697
|
+
"type": "option"
|
|
40698
|
+
},
|
|
40699
|
+
"debug": {
|
|
40700
|
+
"char": "D",
|
|
40701
|
+
"description": "Enable debug logging (shorthand for --log-level debug)",
|
|
40702
|
+
"env": "SFCC_DEBUG",
|
|
40703
|
+
"helpGroup": "GLOBAL",
|
|
40704
|
+
"name": "debug",
|
|
40705
|
+
"allowNo": false,
|
|
40706
|
+
"type": "boolean"
|
|
40707
|
+
},
|
|
40708
|
+
"jsonl": {
|
|
40709
|
+
"aliases": [
|
|
40710
|
+
"json-logs"
|
|
40711
|
+
],
|
|
40712
|
+
"description": "Output log messages as JSON lines",
|
|
40713
|
+
"env": "SFCC_JSON_LOGS",
|
|
40714
|
+
"helpGroup": "GLOBAL",
|
|
40715
|
+
"name": "jsonl",
|
|
40716
|
+
"allowNo": false,
|
|
40717
|
+
"type": "boolean"
|
|
40718
|
+
},
|
|
40719
|
+
"lang": {
|
|
40720
|
+
"char": "L",
|
|
40721
|
+
"description": "Language for messages (e.g., en, de). Also respects LANGUAGE env var.",
|
|
40722
|
+
"helpGroup": "GLOBAL",
|
|
40723
|
+
"name": "lang",
|
|
40724
|
+
"hasDynamicHelp": false,
|
|
40725
|
+
"multiple": false,
|
|
40726
|
+
"type": "option"
|
|
40727
|
+
},
|
|
40728
|
+
"config": {
|
|
40729
|
+
"description": "Path to config file (in dw.json format; defaults to ./dw.json)",
|
|
40730
|
+
"env": "SFCC_CONFIG",
|
|
40731
|
+
"helpGroup": "GLOBAL",
|
|
40732
|
+
"name": "config",
|
|
40733
|
+
"hasDynamicHelp": false,
|
|
40734
|
+
"multiple": false,
|
|
40735
|
+
"type": "option"
|
|
40736
|
+
},
|
|
40737
|
+
"instance": {
|
|
40738
|
+
"char": "i",
|
|
40739
|
+
"description": "Instance name from configuration file (i.e. dw.json, etc)",
|
|
40740
|
+
"env": "SFCC_INSTANCE",
|
|
40741
|
+
"helpGroup": "GLOBAL",
|
|
40742
|
+
"name": "instance",
|
|
40743
|
+
"hasDynamicHelp": false,
|
|
40744
|
+
"multiple": false,
|
|
40745
|
+
"type": "option"
|
|
40746
|
+
},
|
|
40747
|
+
"project-directory": {
|
|
40748
|
+
"aliases": [
|
|
40749
|
+
"working-directory"
|
|
40750
|
+
],
|
|
40751
|
+
"description": "Project directory",
|
|
40752
|
+
"env": "SFCC_PROJECT_DIRECTORY",
|
|
40753
|
+
"helpGroup": "GLOBAL",
|
|
40754
|
+
"name": "project-directory",
|
|
40755
|
+
"hasDynamicHelp": false,
|
|
40756
|
+
"multiple": false,
|
|
40757
|
+
"type": "option"
|
|
40758
|
+
},
|
|
40759
|
+
"extra-query": {
|
|
40760
|
+
"description": "Extra query parameters as JSON (e.g., '{\"debug\":\"true\"}')",
|
|
40761
|
+
"env": "SFCC_EXTRA_QUERY",
|
|
40762
|
+
"helpGroup": "GLOBAL",
|
|
40763
|
+
"hidden": true,
|
|
40764
|
+
"name": "extra-query",
|
|
40765
|
+
"hasDynamicHelp": false,
|
|
40766
|
+
"multiple": false,
|
|
40767
|
+
"type": "option"
|
|
40768
|
+
},
|
|
40769
|
+
"extra-body": {
|
|
40770
|
+
"description": "Extra body fields to merge as JSON (e.g., '{\"_internal\":true}')",
|
|
40771
|
+
"env": "SFCC_EXTRA_BODY",
|
|
40772
|
+
"helpGroup": "GLOBAL",
|
|
40773
|
+
"hidden": true,
|
|
40774
|
+
"name": "extra-body",
|
|
40775
|
+
"hasDynamicHelp": false,
|
|
40776
|
+
"multiple": false,
|
|
40777
|
+
"type": "option"
|
|
40778
|
+
},
|
|
40779
|
+
"extra-headers": {
|
|
40780
|
+
"description": "Extra HTTP headers as JSON (e.g., '{\"X-Custom-Header\": \"value\"}')",
|
|
40781
|
+
"env": "SFCC_EXTRA_HEADERS",
|
|
40782
|
+
"helpGroup": "GLOBAL",
|
|
40783
|
+
"hidden": true,
|
|
40784
|
+
"name": "extra-headers",
|
|
40785
|
+
"hasDynamicHelp": false,
|
|
40786
|
+
"multiple": false,
|
|
40787
|
+
"type": "option"
|
|
40788
|
+
},
|
|
40789
|
+
"client-id": {
|
|
40790
|
+
"description": "Client ID for OAuth",
|
|
40791
|
+
"env": "SFCC_CLIENT_ID",
|
|
40792
|
+
"helpGroup": "AUTH",
|
|
40793
|
+
"name": "client-id",
|
|
40794
|
+
"hasDynamicHelp": false,
|
|
40795
|
+
"multiple": false,
|
|
40796
|
+
"type": "option"
|
|
40797
|
+
},
|
|
40798
|
+
"client-secret": {
|
|
40799
|
+
"description": "Client Secret for OAuth",
|
|
40800
|
+
"env": "SFCC_CLIENT_SECRET",
|
|
40801
|
+
"helpGroup": "AUTH",
|
|
40802
|
+
"name": "client-secret",
|
|
40803
|
+
"hasDynamicHelp": false,
|
|
40804
|
+
"multiple": false,
|
|
40805
|
+
"type": "option"
|
|
40806
|
+
},
|
|
40807
|
+
"auth-scope": {
|
|
40808
|
+
"description": "OAuth scopes to request (comma-separated)",
|
|
40809
|
+
"env": "SFCC_OAUTH_SCOPES",
|
|
40810
|
+
"helpGroup": "AUTH",
|
|
40811
|
+
"name": "auth-scope",
|
|
40812
|
+
"delimiter": ",",
|
|
40813
|
+
"hasDynamicHelp": false,
|
|
40814
|
+
"multiple": true,
|
|
40815
|
+
"type": "option"
|
|
40816
|
+
},
|
|
40817
|
+
"short-code": {
|
|
40818
|
+
"description": "SCAPI short code",
|
|
40819
|
+
"env": "SFCC_SHORTCODE",
|
|
40820
|
+
"helpGroup": "AUTH",
|
|
40821
|
+
"name": "short-code",
|
|
40822
|
+
"hasDynamicHelp": false,
|
|
40823
|
+
"multiple": false,
|
|
40824
|
+
"type": "option"
|
|
40825
|
+
},
|
|
40826
|
+
"tenant-id": {
|
|
40827
|
+
"aliases": [
|
|
40828
|
+
"tenant"
|
|
40829
|
+
],
|
|
40830
|
+
"description": "Organization/tenant ID",
|
|
40831
|
+
"env": "SFCC_TENANT_ID",
|
|
40832
|
+
"helpGroup": "AUTH",
|
|
40833
|
+
"name": "tenant-id",
|
|
40834
|
+
"hasDynamicHelp": false,
|
|
40835
|
+
"multiple": false,
|
|
40836
|
+
"type": "option"
|
|
40837
|
+
},
|
|
40838
|
+
"auth-methods": {
|
|
40839
|
+
"description": "Allowed auth methods in priority order (comma-separated)",
|
|
40840
|
+
"env": "SFCC_AUTH_METHODS",
|
|
40841
|
+
"exclusive": [
|
|
40842
|
+
"user-auth"
|
|
40843
|
+
],
|
|
40844
|
+
"helpGroup": "AUTH",
|
|
40845
|
+
"name": "auth-methods",
|
|
40846
|
+
"delimiter": ",",
|
|
40847
|
+
"hasDynamicHelp": false,
|
|
40848
|
+
"multiple": true,
|
|
40849
|
+
"options": [
|
|
40850
|
+
"client-credentials",
|
|
40851
|
+
"implicit",
|
|
40852
|
+
"basic",
|
|
40853
|
+
"api-key"
|
|
40854
|
+
],
|
|
40855
|
+
"type": "option"
|
|
40856
|
+
},
|
|
40857
|
+
"user-auth": {
|
|
40858
|
+
"description": "Use browser-based user authentication (implicit OAuth flow)",
|
|
40859
|
+
"exclusive": [
|
|
40860
|
+
"auth-methods"
|
|
40861
|
+
],
|
|
40862
|
+
"helpGroup": "AUTH",
|
|
40863
|
+
"name": "user-auth",
|
|
40864
|
+
"allowNo": false,
|
|
40865
|
+
"type": "boolean"
|
|
40866
|
+
},
|
|
40867
|
+
"account-manager-host": {
|
|
40868
|
+
"description": "Account Manager hostname for OAuth (default: account.demandware.com)",
|
|
40869
|
+
"env": "SFCC_ACCOUNT_MANAGER_HOST",
|
|
40870
|
+
"helpGroup": "AUTH",
|
|
40871
|
+
"name": "account-manager-host",
|
|
40872
|
+
"hasDynamicHelp": false,
|
|
40873
|
+
"multiple": false,
|
|
40874
|
+
"type": "option"
|
|
40875
|
+
},
|
|
40876
|
+
"sandbox-api-host": {
|
|
40877
|
+
"description": "ODS API hostname (default: admin.dx.commercecloud.salesforce.com)",
|
|
40878
|
+
"env": "SFCC_SANDBOX_API_HOST",
|
|
40879
|
+
"name": "sandbox-api-host",
|
|
40880
|
+
"hasDynamicHelp": false,
|
|
40881
|
+
"multiple": false,
|
|
40882
|
+
"type": "option"
|
|
40883
|
+
}
|
|
40884
|
+
},
|
|
40885
|
+
"hasDynamicHelp": false,
|
|
40886
|
+
"hiddenAliases": [],
|
|
40887
|
+
"id": "sandbox:realm:configuration",
|
|
40888
|
+
"pluginAlias": "@salesforce/b2c-cli",
|
|
40889
|
+
"pluginName": "@salesforce/b2c-cli",
|
|
40890
|
+
"pluginType": "core",
|
|
40891
|
+
"strict": true,
|
|
40892
|
+
"enableJsonFlag": true,
|
|
40893
|
+
"isESM": true,
|
|
40894
|
+
"relativePath": [
|
|
40895
|
+
"dist",
|
|
40896
|
+
"commands",
|
|
40897
|
+
"sandbox",
|
|
40898
|
+
"realm",
|
|
40899
|
+
"configuration.js"
|
|
40900
|
+
]
|
|
40901
|
+
},
|
|
40158
40902
|
"sandbox:realm:get": {
|
|
40159
40903
|
"aliases": [
|
|
40160
|
-
"ods:realm:get"
|
|
40161
|
-
"realm:get"
|
|
40904
|
+
"ods:realm:get"
|
|
40162
40905
|
],
|
|
40163
40906
|
"args": {
|
|
40164
40907
|
"realm": {
|
|
@@ -40402,12 +41145,11 @@
|
|
|
40402
41145
|
},
|
|
40403
41146
|
"sandbox:realm:list": {
|
|
40404
41147
|
"aliases": [
|
|
40405
|
-
"ods:realm:list"
|
|
40406
|
-
"realm:list"
|
|
41148
|
+
"ods:realm:list"
|
|
40407
41149
|
],
|
|
40408
41150
|
"args": {
|
|
40409
41151
|
"realm": {
|
|
40410
|
-
"description": "
|
|
41152
|
+
"description": "Optional realm ID filter (four-letter ID)",
|
|
40411
41153
|
"name": "realm",
|
|
40412
41154
|
"required": false
|
|
40413
41155
|
}
|
|
@@ -40648,8 +41390,7 @@
|
|
|
40648
41390
|
},
|
|
40649
41391
|
"sandbox:realm:update": {
|
|
40650
41392
|
"aliases": [
|
|
40651
|
-
"ods:realm:update"
|
|
40652
|
-
"realm:update"
|
|
41393
|
+
"ods:realm:update"
|
|
40653
41394
|
],
|
|
40654
41395
|
"args": {
|
|
40655
41396
|
"realm": {
|
|
@@ -40923,8 +41664,7 @@
|
|
|
40923
41664
|
},
|
|
40924
41665
|
"sandbox:realm:usage": {
|
|
40925
41666
|
"aliases": [
|
|
40926
|
-
"ods:realm:usage"
|
|
40927
|
-
"realm:usage"
|
|
41667
|
+
"ods:realm:usage"
|
|
40928
41668
|
],
|
|
40929
41669
|
"args": {
|
|
40930
41670
|
"realm": {
|
|
@@ -41195,6 +41935,274 @@
|
|
|
41195
41935
|
"usage.js"
|
|
41196
41936
|
]
|
|
41197
41937
|
},
|
|
41938
|
+
"sandbox:realm:usages": {
|
|
41939
|
+
"aliases": [
|
|
41940
|
+
"ods:realm:usages"
|
|
41941
|
+
],
|
|
41942
|
+
"args": {},
|
|
41943
|
+
"description": "Show usage information for multiple realms\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/realm.html#b2c-realm-usages",
|
|
41944
|
+
"examples": [
|
|
41945
|
+
"<%= config.bin %> <%= command.id %>",
|
|
41946
|
+
"<%= config.bin %> <%= command.id %> --realm zzzz --realm yyyy",
|
|
41947
|
+
"<%= config.bin %> <%= command.id %> --realm zzzz,yyyy --from 2026-02-08 --to 2026-02-11",
|
|
41948
|
+
"<%= config.bin %> <%= command.id %> --detailed-report --json"
|
|
41949
|
+
],
|
|
41950
|
+
"flags": {
|
|
41951
|
+
"json": {
|
|
41952
|
+
"description": "Output result as JSON",
|
|
41953
|
+
"helpGroup": "GLOBAL",
|
|
41954
|
+
"name": "json",
|
|
41955
|
+
"allowNo": false,
|
|
41956
|
+
"type": "boolean"
|
|
41957
|
+
},
|
|
41958
|
+
"log-level": {
|
|
41959
|
+
"description": "Set logging verbosity level",
|
|
41960
|
+
"env": "SFCC_LOG_LEVEL",
|
|
41961
|
+
"helpGroup": "GLOBAL",
|
|
41962
|
+
"name": "log-level",
|
|
41963
|
+
"hasDynamicHelp": false,
|
|
41964
|
+
"multiple": false,
|
|
41965
|
+
"options": [
|
|
41966
|
+
"trace",
|
|
41967
|
+
"debug",
|
|
41968
|
+
"info",
|
|
41969
|
+
"warn",
|
|
41970
|
+
"error",
|
|
41971
|
+
"silent"
|
|
41972
|
+
],
|
|
41973
|
+
"type": "option"
|
|
41974
|
+
},
|
|
41975
|
+
"debug": {
|
|
41976
|
+
"char": "D",
|
|
41977
|
+
"description": "Enable debug logging (shorthand for --log-level debug)",
|
|
41978
|
+
"env": "SFCC_DEBUG",
|
|
41979
|
+
"helpGroup": "GLOBAL",
|
|
41980
|
+
"name": "debug",
|
|
41981
|
+
"allowNo": false,
|
|
41982
|
+
"type": "boolean"
|
|
41983
|
+
},
|
|
41984
|
+
"jsonl": {
|
|
41985
|
+
"aliases": [
|
|
41986
|
+
"json-logs"
|
|
41987
|
+
],
|
|
41988
|
+
"description": "Output log messages as JSON lines",
|
|
41989
|
+
"env": "SFCC_JSON_LOGS",
|
|
41990
|
+
"helpGroup": "GLOBAL",
|
|
41991
|
+
"name": "jsonl",
|
|
41992
|
+
"allowNo": false,
|
|
41993
|
+
"type": "boolean"
|
|
41994
|
+
},
|
|
41995
|
+
"lang": {
|
|
41996
|
+
"char": "L",
|
|
41997
|
+
"description": "Language for messages (e.g., en, de). Also respects LANGUAGE env var.",
|
|
41998
|
+
"helpGroup": "GLOBAL",
|
|
41999
|
+
"name": "lang",
|
|
42000
|
+
"hasDynamicHelp": false,
|
|
42001
|
+
"multiple": false,
|
|
42002
|
+
"type": "option"
|
|
42003
|
+
},
|
|
42004
|
+
"config": {
|
|
42005
|
+
"description": "Path to config file (in dw.json format; defaults to ./dw.json)",
|
|
42006
|
+
"env": "SFCC_CONFIG",
|
|
42007
|
+
"helpGroup": "GLOBAL",
|
|
42008
|
+
"name": "config",
|
|
42009
|
+
"hasDynamicHelp": false,
|
|
42010
|
+
"multiple": false,
|
|
42011
|
+
"type": "option"
|
|
42012
|
+
},
|
|
42013
|
+
"instance": {
|
|
42014
|
+
"char": "i",
|
|
42015
|
+
"description": "Instance name from configuration file (i.e. dw.json, etc)",
|
|
42016
|
+
"env": "SFCC_INSTANCE",
|
|
42017
|
+
"helpGroup": "GLOBAL",
|
|
42018
|
+
"name": "instance",
|
|
42019
|
+
"hasDynamicHelp": false,
|
|
42020
|
+
"multiple": false,
|
|
42021
|
+
"type": "option"
|
|
42022
|
+
},
|
|
42023
|
+
"project-directory": {
|
|
42024
|
+
"aliases": [
|
|
42025
|
+
"working-directory"
|
|
42026
|
+
],
|
|
42027
|
+
"description": "Project directory",
|
|
42028
|
+
"env": "SFCC_PROJECT_DIRECTORY",
|
|
42029
|
+
"helpGroup": "GLOBAL",
|
|
42030
|
+
"name": "project-directory",
|
|
42031
|
+
"hasDynamicHelp": false,
|
|
42032
|
+
"multiple": false,
|
|
42033
|
+
"type": "option"
|
|
42034
|
+
},
|
|
42035
|
+
"extra-query": {
|
|
42036
|
+
"description": "Extra query parameters as JSON (e.g., '{\"debug\":\"true\"}')",
|
|
42037
|
+
"env": "SFCC_EXTRA_QUERY",
|
|
42038
|
+
"helpGroup": "GLOBAL",
|
|
42039
|
+
"hidden": true,
|
|
42040
|
+
"name": "extra-query",
|
|
42041
|
+
"hasDynamicHelp": false,
|
|
42042
|
+
"multiple": false,
|
|
42043
|
+
"type": "option"
|
|
42044
|
+
},
|
|
42045
|
+
"extra-body": {
|
|
42046
|
+
"description": "Extra body fields to merge as JSON (e.g., '{\"_internal\":true}')",
|
|
42047
|
+
"env": "SFCC_EXTRA_BODY",
|
|
42048
|
+
"helpGroup": "GLOBAL",
|
|
42049
|
+
"hidden": true,
|
|
42050
|
+
"name": "extra-body",
|
|
42051
|
+
"hasDynamicHelp": false,
|
|
42052
|
+
"multiple": false,
|
|
42053
|
+
"type": "option"
|
|
42054
|
+
},
|
|
42055
|
+
"extra-headers": {
|
|
42056
|
+
"description": "Extra HTTP headers as JSON (e.g., '{\"X-Custom-Header\": \"value\"}')",
|
|
42057
|
+
"env": "SFCC_EXTRA_HEADERS",
|
|
42058
|
+
"helpGroup": "GLOBAL",
|
|
42059
|
+
"hidden": true,
|
|
42060
|
+
"name": "extra-headers",
|
|
42061
|
+
"hasDynamicHelp": false,
|
|
42062
|
+
"multiple": false,
|
|
42063
|
+
"type": "option"
|
|
42064
|
+
},
|
|
42065
|
+
"client-id": {
|
|
42066
|
+
"description": "Client ID for OAuth",
|
|
42067
|
+
"env": "SFCC_CLIENT_ID",
|
|
42068
|
+
"helpGroup": "AUTH",
|
|
42069
|
+
"name": "client-id",
|
|
42070
|
+
"hasDynamicHelp": false,
|
|
42071
|
+
"multiple": false,
|
|
42072
|
+
"type": "option"
|
|
42073
|
+
},
|
|
42074
|
+
"client-secret": {
|
|
42075
|
+
"description": "Client Secret for OAuth",
|
|
42076
|
+
"env": "SFCC_CLIENT_SECRET",
|
|
42077
|
+
"helpGroup": "AUTH",
|
|
42078
|
+
"name": "client-secret",
|
|
42079
|
+
"hasDynamicHelp": false,
|
|
42080
|
+
"multiple": false,
|
|
42081
|
+
"type": "option"
|
|
42082
|
+
},
|
|
42083
|
+
"auth-scope": {
|
|
42084
|
+
"description": "OAuth scopes to request (comma-separated)",
|
|
42085
|
+
"env": "SFCC_OAUTH_SCOPES",
|
|
42086
|
+
"helpGroup": "AUTH",
|
|
42087
|
+
"name": "auth-scope",
|
|
42088
|
+
"delimiter": ",",
|
|
42089
|
+
"hasDynamicHelp": false,
|
|
42090
|
+
"multiple": true,
|
|
42091
|
+
"type": "option"
|
|
42092
|
+
},
|
|
42093
|
+
"short-code": {
|
|
42094
|
+
"description": "SCAPI short code",
|
|
42095
|
+
"env": "SFCC_SHORTCODE",
|
|
42096
|
+
"helpGroup": "AUTH",
|
|
42097
|
+
"name": "short-code",
|
|
42098
|
+
"hasDynamicHelp": false,
|
|
42099
|
+
"multiple": false,
|
|
42100
|
+
"type": "option"
|
|
42101
|
+
},
|
|
42102
|
+
"tenant-id": {
|
|
42103
|
+
"aliases": [
|
|
42104
|
+
"tenant"
|
|
42105
|
+
],
|
|
42106
|
+
"description": "Organization/tenant ID",
|
|
42107
|
+
"env": "SFCC_TENANT_ID",
|
|
42108
|
+
"helpGroup": "AUTH",
|
|
42109
|
+
"name": "tenant-id",
|
|
42110
|
+
"hasDynamicHelp": false,
|
|
42111
|
+
"multiple": false,
|
|
42112
|
+
"type": "option"
|
|
42113
|
+
},
|
|
42114
|
+
"auth-methods": {
|
|
42115
|
+
"description": "Allowed auth methods in priority order (comma-separated)",
|
|
42116
|
+
"env": "SFCC_AUTH_METHODS",
|
|
42117
|
+
"exclusive": [
|
|
42118
|
+
"user-auth"
|
|
42119
|
+
],
|
|
42120
|
+
"helpGroup": "AUTH",
|
|
42121
|
+
"name": "auth-methods",
|
|
42122
|
+
"delimiter": ",",
|
|
42123
|
+
"hasDynamicHelp": false,
|
|
42124
|
+
"multiple": true,
|
|
42125
|
+
"options": [
|
|
42126
|
+
"client-credentials",
|
|
42127
|
+
"implicit",
|
|
42128
|
+
"basic",
|
|
42129
|
+
"api-key"
|
|
42130
|
+
],
|
|
42131
|
+
"type": "option"
|
|
42132
|
+
},
|
|
42133
|
+
"user-auth": {
|
|
42134
|
+
"description": "Use browser-based user authentication (implicit OAuth flow)",
|
|
42135
|
+
"exclusive": [
|
|
42136
|
+
"auth-methods"
|
|
42137
|
+
],
|
|
42138
|
+
"helpGroup": "AUTH",
|
|
42139
|
+
"name": "user-auth",
|
|
42140
|
+
"allowNo": false,
|
|
42141
|
+
"type": "boolean"
|
|
42142
|
+
},
|
|
42143
|
+
"account-manager-host": {
|
|
42144
|
+
"description": "Account Manager hostname for OAuth (default: account.demandware.com)",
|
|
42145
|
+
"env": "SFCC_ACCOUNT_MANAGER_HOST",
|
|
42146
|
+
"helpGroup": "AUTH",
|
|
42147
|
+
"name": "account-manager-host",
|
|
42148
|
+
"hasDynamicHelp": false,
|
|
42149
|
+
"multiple": false,
|
|
42150
|
+
"type": "option"
|
|
42151
|
+
},
|
|
42152
|
+
"sandbox-api-host": {
|
|
42153
|
+
"description": "ODS API hostname (default: admin.dx.commercecloud.salesforce.com)",
|
|
42154
|
+
"env": "SFCC_SANDBOX_API_HOST",
|
|
42155
|
+
"name": "sandbox-api-host",
|
|
42156
|
+
"hasDynamicHelp": false,
|
|
42157
|
+
"multiple": false,
|
|
42158
|
+
"type": "option"
|
|
42159
|
+
},
|
|
42160
|
+
"realm": {
|
|
42161
|
+
"description": "Realm ID(s). Repeat flag or provide comma-separated values",
|
|
42162
|
+
"name": "realm",
|
|
42163
|
+
"delimiter": ",",
|
|
42164
|
+
"hasDynamicHelp": false,
|
|
42165
|
+
"multiple": true,
|
|
42166
|
+
"type": "option"
|
|
42167
|
+
},
|
|
42168
|
+
"from": {
|
|
42169
|
+
"description": "Earliest date to include in usage (ISO 8601)",
|
|
42170
|
+
"name": "from",
|
|
42171
|
+
"hasDynamicHelp": false,
|
|
42172
|
+
"multiple": false,
|
|
42173
|
+
"type": "option"
|
|
42174
|
+
},
|
|
42175
|
+
"to": {
|
|
42176
|
+
"description": "Latest date to include in usage (ISO 8601)",
|
|
42177
|
+
"name": "to",
|
|
42178
|
+
"hasDynamicHelp": false,
|
|
42179
|
+
"multiple": false,
|
|
42180
|
+
"type": "option"
|
|
42181
|
+
},
|
|
42182
|
+
"detailed-report": {
|
|
42183
|
+
"description": "Include detailed usage information in the response",
|
|
42184
|
+
"name": "detailed-report",
|
|
42185
|
+
"allowNo": false,
|
|
42186
|
+
"type": "boolean"
|
|
42187
|
+
}
|
|
42188
|
+
},
|
|
42189
|
+
"hasDynamicHelp": false,
|
|
42190
|
+
"hiddenAliases": [],
|
|
42191
|
+
"id": "sandbox:realm:usages",
|
|
42192
|
+
"pluginAlias": "@salesforce/b2c-cli",
|
|
42193
|
+
"pluginName": "@salesforce/b2c-cli",
|
|
42194
|
+
"pluginType": "core",
|
|
42195
|
+
"strict": true,
|
|
42196
|
+
"enableJsonFlag": true,
|
|
42197
|
+
"isESM": true,
|
|
42198
|
+
"relativePath": [
|
|
42199
|
+
"dist",
|
|
42200
|
+
"commands",
|
|
42201
|
+
"sandbox",
|
|
42202
|
+
"realm",
|
|
42203
|
+
"usages.js"
|
|
42204
|
+
]
|
|
42205
|
+
},
|
|
41198
42206
|
"scapi:custom:status": {
|
|
41199
42207
|
"aliases": [],
|
|
41200
42208
|
"args": {},
|
|
@@ -52024,13 +53032,14 @@
|
|
|
52024
53032
|
"list.js"
|
|
52025
53033
|
]
|
|
52026
53034
|
},
|
|
52027
|
-
"ecdn:waf:
|
|
53035
|
+
"ecdn:waf:managed-rules:list": {
|
|
52028
53036
|
"aliases": [],
|
|
52029
53037
|
"args": {},
|
|
52030
|
-
"description": "List WAF
|
|
53038
|
+
"description": "List WAF v2 managed rules in a ruleset\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-managed-rules-list",
|
|
52031
53039
|
"examples": [
|
|
52032
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone",
|
|
52033
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
53040
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123",
|
|
53041
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --extended",
|
|
53042
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --json"
|
|
52034
53043
|
],
|
|
52035
53044
|
"flags": {
|
|
52036
53045
|
"json": {
|
|
@@ -52243,18 +53252,33 @@
|
|
|
52243
53252
|
"multiple": false,
|
|
52244
53253
|
"type": "option"
|
|
52245
53254
|
},
|
|
53255
|
+
"ruleset-id": {
|
|
53256
|
+
"description": "WAF ruleset ID to list rules for",
|
|
53257
|
+
"name": "ruleset-id",
|
|
53258
|
+
"required": true,
|
|
53259
|
+
"hasDynamicHelp": false,
|
|
53260
|
+
"multiple": false,
|
|
53261
|
+
"type": "option"
|
|
53262
|
+
},
|
|
52246
53263
|
"columns": {
|
|
52247
53264
|
"char": "c",
|
|
52248
|
-
"description": "Columns to display (comma-separated). Available:
|
|
53265
|
+
"description": "Columns to display (comma-separated). Available: ruleId, description, action, enabled, categories, score",
|
|
52249
53266
|
"name": "columns",
|
|
52250
53267
|
"hasDynamicHelp": false,
|
|
52251
53268
|
"multiple": false,
|
|
52252
53269
|
"type": "option"
|
|
53270
|
+
},
|
|
53271
|
+
"extended": {
|
|
53272
|
+
"char": "x",
|
|
53273
|
+
"description": "Show all columns including extended fields",
|
|
53274
|
+
"name": "extended",
|
|
53275
|
+
"allowNo": false,
|
|
53276
|
+
"type": "boolean"
|
|
52253
53277
|
}
|
|
52254
53278
|
},
|
|
52255
53279
|
"hasDynamicHelp": false,
|
|
52256
53280
|
"hiddenAliases": [],
|
|
52257
|
-
"id": "ecdn:waf:
|
|
53281
|
+
"id": "ecdn:waf:managed-rules:list",
|
|
52258
53282
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
52259
53283
|
"pluginName": "@salesforce/b2c-cli",
|
|
52260
53284
|
"pluginType": "core",
|
|
@@ -52265,17 +53289,18 @@
|
|
|
52265
53289
|
"commands",
|
|
52266
53290
|
"ecdn",
|
|
52267
53291
|
"waf",
|
|
52268
|
-
"
|
|
53292
|
+
"managed-rules",
|
|
52269
53293
|
"list.js"
|
|
52270
53294
|
]
|
|
52271
53295
|
},
|
|
52272
|
-
"ecdn:waf:
|
|
53296
|
+
"ecdn:waf:managed-rules:update": {
|
|
52273
53297
|
"aliases": [],
|
|
52274
53298
|
"args": {},
|
|
52275
|
-
"description": "Update a WAF
|
|
53299
|
+
"description": "Update a WAF v2 managed rule in a ruleset\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-managed-rules-update",
|
|
52276
53300
|
"examples": [
|
|
52277
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
52278
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
53301
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --rule-id def456 --enabled",
|
|
53302
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --rule-id def456 --action block",
|
|
53303
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --rule-id def456 --no-enabled"
|
|
52279
53304
|
],
|
|
52280
53305
|
"flags": {
|
|
52281
53306
|
"json": {
|
|
@@ -52488,43 +53513,39 @@
|
|
|
52488
53513
|
"multiple": false,
|
|
52489
53514
|
"type": "option"
|
|
52490
53515
|
},
|
|
52491
|
-
"
|
|
52492
|
-
"description": "WAF
|
|
52493
|
-
"name": "
|
|
53516
|
+
"ruleset-id": {
|
|
53517
|
+
"description": "WAF ruleset ID containing the rule",
|
|
53518
|
+
"name": "ruleset-id",
|
|
52494
53519
|
"required": true,
|
|
52495
53520
|
"hasDynamicHelp": false,
|
|
52496
53521
|
"multiple": false,
|
|
52497
53522
|
"type": "option"
|
|
52498
53523
|
},
|
|
52499
|
-
"
|
|
52500
|
-
"description": "
|
|
52501
|
-
"name": "
|
|
53524
|
+
"rule-id": {
|
|
53525
|
+
"description": "WAF managed rule ID to update",
|
|
53526
|
+
"name": "rule-id",
|
|
52502
53527
|
"required": true,
|
|
52503
53528
|
"hasDynamicHelp": false,
|
|
52504
53529
|
"multiple": false,
|
|
52505
|
-
"options": [
|
|
52506
|
-
"on",
|
|
52507
|
-
"off"
|
|
52508
|
-
],
|
|
52509
53530
|
"type": "option"
|
|
52510
53531
|
},
|
|
53532
|
+
"enabled": {
|
|
53533
|
+
"description": "Enable the rule",
|
|
53534
|
+
"name": "enabled",
|
|
53535
|
+
"allowNo": true,
|
|
53536
|
+
"type": "boolean"
|
|
53537
|
+
},
|
|
52511
53538
|
"action": {
|
|
52512
|
-
"description": "Action for the
|
|
53539
|
+
"description": "Action for the rule (e.g., default, block, challenge)",
|
|
52513
53540
|
"name": "action",
|
|
52514
53541
|
"hasDynamicHelp": false,
|
|
52515
53542
|
"multiple": false,
|
|
52516
|
-
"options": [
|
|
52517
|
-
"block",
|
|
52518
|
-
"challenge",
|
|
52519
|
-
"monitor",
|
|
52520
|
-
"default"
|
|
52521
|
-
],
|
|
52522
53543
|
"type": "option"
|
|
52523
53544
|
}
|
|
52524
53545
|
},
|
|
52525
53546
|
"hasDynamicHelp": false,
|
|
52526
53547
|
"hiddenAliases": [],
|
|
52527
|
-
"id": "ecdn:waf:
|
|
53548
|
+
"id": "ecdn:waf:managed-rules:update",
|
|
52528
53549
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
52529
53550
|
"pluginName": "@salesforce/b2c-cli",
|
|
52530
53551
|
"pluginType": "core",
|
|
@@ -52535,18 +53556,17 @@
|
|
|
52535
53556
|
"commands",
|
|
52536
53557
|
"ecdn",
|
|
52537
53558
|
"waf",
|
|
52538
|
-
"
|
|
53559
|
+
"managed-rules",
|
|
52539
53560
|
"update.js"
|
|
52540
53561
|
]
|
|
52541
53562
|
},
|
|
52542
|
-
"ecdn:waf:
|
|
53563
|
+
"ecdn:waf:groups:list": {
|
|
52543
53564
|
"aliases": [],
|
|
52544
53565
|
"args": {},
|
|
52545
|
-
"description": "List WAF
|
|
53566
|
+
"description": "List WAF v1 groups for a zone (not applicable for WAFv2 zones)\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-groups-list",
|
|
52546
53567
|
"examples": [
|
|
52547
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone
|
|
52548
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
52549
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --json"
|
|
53568
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone",
|
|
53569
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --json"
|
|
52550
53570
|
],
|
|
52551
53571
|
"flags": {
|
|
52552
53572
|
"json": {
|
|
@@ -52759,33 +53779,18 @@
|
|
|
52759
53779
|
"multiple": false,
|
|
52760
53780
|
"type": "option"
|
|
52761
53781
|
},
|
|
52762
|
-
"ruleset-id": {
|
|
52763
|
-
"description": "WAF ruleset ID to list rules for",
|
|
52764
|
-
"name": "ruleset-id",
|
|
52765
|
-
"required": true,
|
|
52766
|
-
"hasDynamicHelp": false,
|
|
52767
|
-
"multiple": false,
|
|
52768
|
-
"type": "option"
|
|
52769
|
-
},
|
|
52770
53782
|
"columns": {
|
|
52771
53783
|
"char": "c",
|
|
52772
|
-
"description": "Columns to display (comma-separated). Available:
|
|
53784
|
+
"description": "Columns to display (comma-separated). Available: groupId, description, mode, action",
|
|
52773
53785
|
"name": "columns",
|
|
52774
53786
|
"hasDynamicHelp": false,
|
|
52775
53787
|
"multiple": false,
|
|
52776
53788
|
"type": "option"
|
|
52777
|
-
},
|
|
52778
|
-
"extended": {
|
|
52779
|
-
"char": "x",
|
|
52780
|
-
"description": "Show all columns including extended fields",
|
|
52781
|
-
"name": "extended",
|
|
52782
|
-
"allowNo": false,
|
|
52783
|
-
"type": "boolean"
|
|
52784
53789
|
}
|
|
52785
53790
|
},
|
|
52786
53791
|
"hasDynamicHelp": false,
|
|
52787
53792
|
"hiddenAliases": [],
|
|
52788
|
-
"id": "ecdn:waf:
|
|
53793
|
+
"id": "ecdn:waf:groups:list",
|
|
52789
53794
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
52790
53795
|
"pluginName": "@salesforce/b2c-cli",
|
|
52791
53796
|
"pluginType": "core",
|
|
@@ -52796,18 +53801,17 @@
|
|
|
52796
53801
|
"commands",
|
|
52797
53802
|
"ecdn",
|
|
52798
53803
|
"waf",
|
|
52799
|
-
"
|
|
53804
|
+
"groups",
|
|
52800
53805
|
"list.js"
|
|
52801
53806
|
]
|
|
52802
53807
|
},
|
|
52803
|
-
"ecdn:waf:
|
|
53808
|
+
"ecdn:waf:groups:update": {
|
|
52804
53809
|
"aliases": [],
|
|
52805
53810
|
"args": {},
|
|
52806
|
-
"description": "Update a WAF
|
|
53811
|
+
"description": "Update a WAF v1 group for a zone (not applicable for WAFv2 zones)\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-groups-update",
|
|
52807
53812
|
"examples": [
|
|
52808
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
52809
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
52810
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --rule-id def456 --no-enabled"
|
|
53813
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --group-id abc123 --mode on",
|
|
53814
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --group-id abc123 --action block"
|
|
52811
53815
|
],
|
|
52812
53816
|
"flags": {
|
|
52813
53817
|
"json": {
|
|
@@ -53020,39 +54024,43 @@
|
|
|
53020
54024
|
"multiple": false,
|
|
53021
54025
|
"type": "option"
|
|
53022
54026
|
},
|
|
53023
|
-
"
|
|
53024
|
-
"description": "WAF
|
|
53025
|
-
"name": "
|
|
54027
|
+
"group-id": {
|
|
54028
|
+
"description": "WAF group ID to update",
|
|
54029
|
+
"name": "group-id",
|
|
53026
54030
|
"required": true,
|
|
53027
54031
|
"hasDynamicHelp": false,
|
|
53028
54032
|
"multiple": false,
|
|
53029
54033
|
"type": "option"
|
|
53030
54034
|
},
|
|
53031
|
-
"
|
|
53032
|
-
"description": "
|
|
53033
|
-
"name": "
|
|
54035
|
+
"mode": {
|
|
54036
|
+
"description": "Mode for the WAF group (on/off)",
|
|
54037
|
+
"name": "mode",
|
|
53034
54038
|
"required": true,
|
|
53035
54039
|
"hasDynamicHelp": false,
|
|
53036
54040
|
"multiple": false,
|
|
54041
|
+
"options": [
|
|
54042
|
+
"on",
|
|
54043
|
+
"off"
|
|
54044
|
+
],
|
|
53037
54045
|
"type": "option"
|
|
53038
54046
|
},
|
|
53039
|
-
"enabled": {
|
|
53040
|
-
"description": "Enable the rule",
|
|
53041
|
-
"name": "enabled",
|
|
53042
|
-
"allowNo": true,
|
|
53043
|
-
"type": "boolean"
|
|
53044
|
-
},
|
|
53045
54047
|
"action": {
|
|
53046
|
-
"description": "Action for the
|
|
54048
|
+
"description": "Action for the WAF group",
|
|
53047
54049
|
"name": "action",
|
|
53048
54050
|
"hasDynamicHelp": false,
|
|
53049
54051
|
"multiple": false,
|
|
54052
|
+
"options": [
|
|
54053
|
+
"block",
|
|
54054
|
+
"challenge",
|
|
54055
|
+
"monitor",
|
|
54056
|
+
"default"
|
|
54057
|
+
],
|
|
53050
54058
|
"type": "option"
|
|
53051
54059
|
}
|
|
53052
54060
|
},
|
|
53053
54061
|
"hasDynamicHelp": false,
|
|
53054
54062
|
"hiddenAliases": [],
|
|
53055
|
-
"id": "ecdn:waf:
|
|
54063
|
+
"id": "ecdn:waf:groups:update",
|
|
53056
54064
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
53057
54065
|
"pluginName": "@salesforce/b2c-cli",
|
|
53058
54066
|
"pluginType": "core",
|
|
@@ -53063,7 +54071,7 @@
|
|
|
53063
54071
|
"commands",
|
|
53064
54072
|
"ecdn",
|
|
53065
54073
|
"waf",
|
|
53066
|
-
"
|
|
54074
|
+
"groups",
|
|
53067
54075
|
"update.js"
|
|
53068
54076
|
]
|
|
53069
54077
|
},
|
|
@@ -53569,13 +54577,14 @@
|
|
|
53569
54577
|
"update.js"
|
|
53570
54578
|
]
|
|
53571
54579
|
},
|
|
53572
|
-
"ecdn:waf:
|
|
54580
|
+
"ecdn:waf:rulesets:list": {
|
|
53573
54581
|
"aliases": [],
|
|
53574
54582
|
"args": {},
|
|
53575
|
-
"description": "
|
|
54583
|
+
"description": "List WAF v2 managed rulesets for a zone\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-rulesets-list",
|
|
53576
54584
|
"examples": [
|
|
53577
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone
|
|
53578
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
54585
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone",
|
|
54586
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --extended",
|
|
54587
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --json"
|
|
53579
54588
|
],
|
|
53580
54589
|
"flags": {
|
|
53581
54590
|
"json": {
|
|
@@ -53788,18 +54797,25 @@
|
|
|
53788
54797
|
"multiple": false,
|
|
53789
54798
|
"type": "option"
|
|
53790
54799
|
},
|
|
53791
|
-
"
|
|
53792
|
-
"
|
|
53793
|
-
"
|
|
53794
|
-
"
|
|
54800
|
+
"columns": {
|
|
54801
|
+
"char": "c",
|
|
54802
|
+
"description": "Columns to display (comma-separated). Available: rulesetId, name, enabled, action, paranoiaLevel, anomalyScore",
|
|
54803
|
+
"name": "columns",
|
|
53795
54804
|
"hasDynamicHelp": false,
|
|
53796
54805
|
"multiple": false,
|
|
53797
54806
|
"type": "option"
|
|
54807
|
+
},
|
|
54808
|
+
"extended": {
|
|
54809
|
+
"char": "x",
|
|
54810
|
+
"description": "Show all columns including extended fields",
|
|
54811
|
+
"name": "extended",
|
|
54812
|
+
"allowNo": false,
|
|
54813
|
+
"type": "boolean"
|
|
53798
54814
|
}
|
|
53799
54815
|
},
|
|
53800
54816
|
"hasDynamicHelp": false,
|
|
53801
54817
|
"hiddenAliases": [],
|
|
53802
|
-
"id": "ecdn:waf:
|
|
54818
|
+
"id": "ecdn:waf:rulesets:list",
|
|
53803
54819
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
53804
54820
|
"pluginName": "@salesforce/b2c-cli",
|
|
53805
54821
|
"pluginType": "core",
|
|
@@ -53810,17 +54826,18 @@
|
|
|
53810
54826
|
"commands",
|
|
53811
54827
|
"ecdn",
|
|
53812
54828
|
"waf",
|
|
53813
|
-
"
|
|
53814
|
-
"
|
|
54829
|
+
"rulesets",
|
|
54830
|
+
"list.js"
|
|
53815
54831
|
]
|
|
53816
54832
|
},
|
|
53817
|
-
"ecdn:waf:
|
|
54833
|
+
"ecdn:waf:rulesets:update": {
|
|
53818
54834
|
"aliases": [],
|
|
53819
54835
|
"args": {},
|
|
53820
|
-
"description": "
|
|
54836
|
+
"description": "Update a WAF v2 managed ruleset for a zone\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-rulesets-update",
|
|
53821
54837
|
"examples": [
|
|
53822
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
53823
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
54838
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --enabled",
|
|
54839
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --action block",
|
|
54840
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --paranoia-level 2"
|
|
53824
54841
|
],
|
|
53825
54842
|
"flags": {
|
|
53826
54843
|
"json": {
|
|
@@ -54033,33 +55050,45 @@
|
|
|
54033
55050
|
"multiple": false,
|
|
54034
55051
|
"type": "option"
|
|
54035
55052
|
},
|
|
54036
|
-
"
|
|
54037
|
-
"description": "WAF
|
|
54038
|
-
"name": "
|
|
55053
|
+
"ruleset-id": {
|
|
55054
|
+
"description": "WAF ruleset ID to update",
|
|
55055
|
+
"name": "ruleset-id",
|
|
54039
55056
|
"required": true,
|
|
54040
55057
|
"hasDynamicHelp": false,
|
|
54041
55058
|
"multiple": false,
|
|
54042
55059
|
"type": "option"
|
|
54043
55060
|
},
|
|
54044
|
-
"
|
|
54045
|
-
"
|
|
54046
|
-
"
|
|
54047
|
-
"
|
|
55061
|
+
"enabled": {
|
|
55062
|
+
"description": "Enable the ruleset",
|
|
55063
|
+
"name": "enabled",
|
|
55064
|
+
"allowNo": true,
|
|
55065
|
+
"type": "boolean"
|
|
55066
|
+
},
|
|
55067
|
+
"action": {
|
|
55068
|
+
"description": "Action for the ruleset (e.g., default, block, challenge)",
|
|
55069
|
+
"name": "action",
|
|
54048
55070
|
"hasDynamicHelp": false,
|
|
54049
55071
|
"multiple": false,
|
|
54050
55072
|
"type": "option"
|
|
54051
55073
|
},
|
|
54052
|
-
"
|
|
54053
|
-
"
|
|
54054
|
-
"
|
|
54055
|
-
"
|
|
54056
|
-
"
|
|
54057
|
-
"type": "
|
|
55074
|
+
"anomaly-score": {
|
|
55075
|
+
"description": "Anomaly score threshold (for OWASP ruleset)",
|
|
55076
|
+
"name": "anomaly-score",
|
|
55077
|
+
"hasDynamicHelp": false,
|
|
55078
|
+
"multiple": false,
|
|
55079
|
+
"type": "option"
|
|
55080
|
+
},
|
|
55081
|
+
"paranoia-level": {
|
|
55082
|
+
"description": "Paranoia level 1-4 (for OWASP ruleset)",
|
|
55083
|
+
"name": "paranoia-level",
|
|
55084
|
+
"hasDynamicHelp": false,
|
|
55085
|
+
"multiple": false,
|
|
55086
|
+
"type": "option"
|
|
54058
55087
|
}
|
|
54059
55088
|
},
|
|
54060
55089
|
"hasDynamicHelp": false,
|
|
54061
55090
|
"hiddenAliases": [],
|
|
54062
|
-
"id": "ecdn:waf:
|
|
55091
|
+
"id": "ecdn:waf:rulesets:update",
|
|
54063
55092
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
54064
55093
|
"pluginName": "@salesforce/b2c-cli",
|
|
54065
55094
|
"pluginType": "core",
|
|
@@ -54070,17 +55099,17 @@
|
|
|
54070
55099
|
"commands",
|
|
54071
55100
|
"ecdn",
|
|
54072
55101
|
"waf",
|
|
54073
|
-
"
|
|
54074
|
-
"
|
|
55102
|
+
"rulesets",
|
|
55103
|
+
"update.js"
|
|
54075
55104
|
]
|
|
54076
55105
|
},
|
|
54077
|
-
"ecdn:waf:rules:
|
|
55106
|
+
"ecdn:waf:rules:get": {
|
|
54078
55107
|
"aliases": [],
|
|
54079
55108
|
"args": {},
|
|
54080
|
-
"description": "
|
|
55109
|
+
"description": "Get a WAF v1 rule for a zone (not applicable for WAFv2 zones)\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-rules-get",
|
|
54081
55110
|
"examples": [
|
|
54082
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --rule-id abc123
|
|
54083
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --rule-id abc123 --
|
|
55111
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --rule-id abc123",
|
|
55112
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --rule-id abc123 --json"
|
|
54084
55113
|
],
|
|
54085
55114
|
"flags": {
|
|
54086
55115
|
"json": {
|
|
@@ -54294,32 +55323,17 @@
|
|
|
54294
55323
|
"type": "option"
|
|
54295
55324
|
},
|
|
54296
55325
|
"rule-id": {
|
|
54297
|
-
"description": "WAF rule ID to
|
|
55326
|
+
"description": "WAF rule ID to get",
|
|
54298
55327
|
"name": "rule-id",
|
|
54299
55328
|
"required": true,
|
|
54300
55329
|
"hasDynamicHelp": false,
|
|
54301
55330
|
"multiple": false,
|
|
54302
55331
|
"type": "option"
|
|
54303
|
-
},
|
|
54304
|
-
"action": {
|
|
54305
|
-
"description": "Action for the WAF rule",
|
|
54306
|
-
"name": "action",
|
|
54307
|
-
"required": true,
|
|
54308
|
-
"hasDynamicHelp": false,
|
|
54309
|
-
"multiple": false,
|
|
54310
|
-
"options": [
|
|
54311
|
-
"block",
|
|
54312
|
-
"challenge",
|
|
54313
|
-
"monitor",
|
|
54314
|
-
"disable",
|
|
54315
|
-
"default"
|
|
54316
|
-
],
|
|
54317
|
-
"type": "option"
|
|
54318
55332
|
}
|
|
54319
55333
|
},
|
|
54320
55334
|
"hasDynamicHelp": false,
|
|
54321
55335
|
"hiddenAliases": [],
|
|
54322
|
-
"id": "ecdn:waf:rules:
|
|
55336
|
+
"id": "ecdn:waf:rules:get",
|
|
54323
55337
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
54324
55338
|
"pluginName": "@salesforce/b2c-cli",
|
|
54325
55339
|
"pluginType": "core",
|
|
@@ -54331,17 +55345,16 @@
|
|
|
54331
55345
|
"ecdn",
|
|
54332
55346
|
"waf",
|
|
54333
55347
|
"rules",
|
|
54334
|
-
"
|
|
55348
|
+
"get.js"
|
|
54335
55349
|
]
|
|
54336
55350
|
},
|
|
54337
|
-
"ecdn:waf:
|
|
55351
|
+
"ecdn:waf:rules:list": {
|
|
54338
55352
|
"aliases": [],
|
|
54339
55353
|
"args": {},
|
|
54340
|
-
"description": "List WAF
|
|
55354
|
+
"description": "List WAF v1 rules for a zone (not applicable for WAFv2 zones)\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-rules-list",
|
|
54341
55355
|
"examples": [
|
|
54342
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone",
|
|
54343
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
54344
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --json"
|
|
55356
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --group-id abc123",
|
|
55357
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --group-id abc123 --json"
|
|
54345
55358
|
],
|
|
54346
55359
|
"flags": {
|
|
54347
55360
|
"json": {
|
|
@@ -54554,9 +55567,17 @@
|
|
|
54554
55567
|
"multiple": false,
|
|
54555
55568
|
"type": "option"
|
|
54556
55569
|
},
|
|
55570
|
+
"group-id": {
|
|
55571
|
+
"description": "WAF group ID to list rules for",
|
|
55572
|
+
"name": "group-id",
|
|
55573
|
+
"required": true,
|
|
55574
|
+
"hasDynamicHelp": false,
|
|
55575
|
+
"multiple": false,
|
|
55576
|
+
"type": "option"
|
|
55577
|
+
},
|
|
54557
55578
|
"columns": {
|
|
54558
55579
|
"char": "c",
|
|
54559
|
-
"description": "Columns to display (comma-separated). Available:
|
|
55580
|
+
"description": "Columns to display (comma-separated). Available: ruleId, groupId, description, action, defaultAction",
|
|
54560
55581
|
"name": "columns",
|
|
54561
55582
|
"hasDynamicHelp": false,
|
|
54562
55583
|
"multiple": false,
|
|
@@ -54572,7 +55593,7 @@
|
|
|
54572
55593
|
},
|
|
54573
55594
|
"hasDynamicHelp": false,
|
|
54574
55595
|
"hiddenAliases": [],
|
|
54575
|
-
"id": "ecdn:waf:
|
|
55596
|
+
"id": "ecdn:waf:rules:list",
|
|
54576
55597
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
54577
55598
|
"pluginName": "@salesforce/b2c-cli",
|
|
54578
55599
|
"pluginType": "core",
|
|
@@ -54583,18 +55604,17 @@
|
|
|
54583
55604
|
"commands",
|
|
54584
55605
|
"ecdn",
|
|
54585
55606
|
"waf",
|
|
54586
|
-
"
|
|
55607
|
+
"rules",
|
|
54587
55608
|
"list.js"
|
|
54588
55609
|
]
|
|
54589
55610
|
},
|
|
54590
|
-
"ecdn:waf:
|
|
55611
|
+
"ecdn:waf:rules:update": {
|
|
54591
55612
|
"aliases": [],
|
|
54592
55613
|
"args": {},
|
|
54593
|
-
"description": "Update a WAF
|
|
55614
|
+
"description": "Update a WAF v1 rule for a zone (not applicable for WAFv2 zones)\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/ecdn.html#b2c-ecdn-waf-rules-update",
|
|
54594
55615
|
"examples": [
|
|
54595
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
54596
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --
|
|
54597
|
-
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --ruleset-id abc123 --paranoia-level 2"
|
|
55616
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --rule-id abc123 --action block",
|
|
55617
|
+
"<%= config.bin %> <%= command.id %> --tenant-id zzxy_prd --zone my-zone --rule-id abc123 --action monitor"
|
|
54598
55618
|
],
|
|
54599
55619
|
"flags": {
|
|
54600
55620
|
"json": {
|
|
@@ -54807,45 +55827,33 @@
|
|
|
54807
55827
|
"multiple": false,
|
|
54808
55828
|
"type": "option"
|
|
54809
55829
|
},
|
|
54810
|
-
"
|
|
54811
|
-
"description": "WAF
|
|
54812
|
-
"name": "
|
|
55830
|
+
"rule-id": {
|
|
55831
|
+
"description": "WAF rule ID to update",
|
|
55832
|
+
"name": "rule-id",
|
|
54813
55833
|
"required": true,
|
|
54814
55834
|
"hasDynamicHelp": false,
|
|
54815
55835
|
"multiple": false,
|
|
54816
55836
|
"type": "option"
|
|
54817
55837
|
},
|
|
54818
|
-
"enabled": {
|
|
54819
|
-
"description": "Enable the ruleset",
|
|
54820
|
-
"name": "enabled",
|
|
54821
|
-
"allowNo": true,
|
|
54822
|
-
"type": "boolean"
|
|
54823
|
-
},
|
|
54824
55838
|
"action": {
|
|
54825
|
-
"description": "Action for the
|
|
55839
|
+
"description": "Action for the WAF rule",
|
|
54826
55840
|
"name": "action",
|
|
55841
|
+
"required": true,
|
|
54827
55842
|
"hasDynamicHelp": false,
|
|
54828
55843
|
"multiple": false,
|
|
54829
|
-
"
|
|
54830
|
-
|
|
54831
|
-
|
|
54832
|
-
|
|
54833
|
-
|
|
54834
|
-
|
|
54835
|
-
|
|
54836
|
-
"type": "option"
|
|
54837
|
-
},
|
|
54838
|
-
"paranoia-level": {
|
|
54839
|
-
"description": "Paranoia level 1-4 (for OWASP ruleset)",
|
|
54840
|
-
"name": "paranoia-level",
|
|
54841
|
-
"hasDynamicHelp": false,
|
|
54842
|
-
"multiple": false,
|
|
55844
|
+
"options": [
|
|
55845
|
+
"block",
|
|
55846
|
+
"challenge",
|
|
55847
|
+
"monitor",
|
|
55848
|
+
"disable",
|
|
55849
|
+
"default"
|
|
55850
|
+
],
|
|
54843
55851
|
"type": "option"
|
|
54844
55852
|
}
|
|
54845
55853
|
},
|
|
54846
55854
|
"hasDynamicHelp": false,
|
|
54847
55855
|
"hiddenAliases": [],
|
|
54848
|
-
"id": "ecdn:waf:
|
|
55856
|
+
"id": "ecdn:waf:rules:update",
|
|
54849
55857
|
"pluginAlias": "@salesforce/b2c-cli",
|
|
54850
55858
|
"pluginName": "@salesforce/b2c-cli",
|
|
54851
55859
|
"pluginType": "core",
|
|
@@ -54856,7 +55864,7 @@
|
|
|
54856
55864
|
"commands",
|
|
54857
55865
|
"ecdn",
|
|
54858
55866
|
"waf",
|
|
54859
|
-
"
|
|
55867
|
+
"rules",
|
|
54860
55868
|
"update.js"
|
|
54861
55869
|
]
|
|
54862
55870
|
},
|
|
@@ -58586,5 +59594,5 @@
|
|
|
58586
59594
|
]
|
|
58587
59595
|
}
|
|
58588
59596
|
},
|
|
58589
|
-
"version": "1.
|
|
59597
|
+
"version": "1.1.0"
|
|
58590
59598
|
}
|