@salesforce/plugin-orchestrator 1.0.18 → 1.0.21
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/lib/commands/orchestrator/app/upgrade.d.ts +32 -0
- package/lib/commands/orchestrator/app/upgrade.js +188 -0
- package/lib/commands/orchestrator/app/upgrade.js.map +1 -0
- package/lib/commands/orchestrator/rules/eval.d.ts +63 -0
- package/lib/commands/orchestrator/rules/eval.js +126 -0
- package/lib/commands/orchestrator/rules/eval.js.map +1 -0
- package/lib/commands/orchestrator/template/list.d.ts +1 -0
- package/lib/commands/orchestrator/template/list.js +12 -2
- package/lib/commands/orchestrator/template/list.js.map +1 -1
- package/messages/appframework.list.template.md +22 -0
- package/messages/orchestrator.app.upgrade.md +141 -0
- package/messages/orchestrator.rules.eval.md +55 -0
- package/npm-shrinkwrap.json +4138 -3697
- package/oclif.lock +3580 -3479
- package/oclif.manifest.json +267 -3
- package/package.json +30 -8
package/oclif.manifest.json
CHANGED
|
@@ -551,6 +551,160 @@
|
|
|
551
551
|
"update:app:orchestrator"
|
|
552
552
|
]
|
|
553
553
|
},
|
|
554
|
+
"orchestrator:app:upgrade": {
|
|
555
|
+
"aliases": [],
|
|
556
|
+
"args": {},
|
|
557
|
+
"description": "Upgrade an existing orchestrated app by running its template's upgrade chains. This command allows you to apply template upgrades, reconfigure the app with new template values, and modify runtime settings while staying within the same template.\n\nYou can identify the app by either its unique ID or its name. App IDs are guaranteed to be unique, while names should be unique within an org.\n\nUse this command to run template-defined upgrade workflows that can update app configurations, apply new template versions, or reconfigure template values. This is different from the update command which only changes basic metadata like label and description.\n\nYou must have Data Cloud and Tableau Next enabled in your org and the AppFrameworkManageApp user permission to modify apps. The template ID must match the app's current template - you cannot change the underlying template an app is based on.",
|
|
558
|
+
"examples": [
|
|
559
|
+
"Upgrade an app with its current template:\n<%= config.bin %> <%= command.id %> --target-org myOrg --app-id 1zAxx000000000123 --template-id 1zDxx000000001EAA",
|
|
560
|
+
"Upgrade an app with new template values:\n<%= config.bin %> <%= command.id %> --target-org myOrg --app-name \"My App\" --template-id 1zDxx000000001EAA --template-values '{\"dataSource\":\"newSource\",\"refreshInterval\":60}'",
|
|
561
|
+
"Upgrade an app with async execution:\n<%= config.bin %> <%= command.id %> --target-org myOrg --app-id 1zAxx000000000123 --template-id 1zDxx000000001EAA --runtime-method async --log-level debug",
|
|
562
|
+
"Upgrade an app using a specific chain:\n<%= config.bin %> <%= command.id %> --target-org myOrg --app-id 1zAxx000000000123 --template-id 1zDxx000000001EAA --chain-name \"UpdateConfiguration\""
|
|
563
|
+
],
|
|
564
|
+
"flags": {
|
|
565
|
+
"json": {
|
|
566
|
+
"description": "Format output as json.",
|
|
567
|
+
"helpGroup": "GLOBAL",
|
|
568
|
+
"name": "json",
|
|
569
|
+
"allowNo": false,
|
|
570
|
+
"type": "boolean"
|
|
571
|
+
},
|
|
572
|
+
"flags-dir": {
|
|
573
|
+
"helpGroup": "GLOBAL",
|
|
574
|
+
"name": "flags-dir",
|
|
575
|
+
"summary": "Import flag values from a directory.",
|
|
576
|
+
"hasDynamicHelp": false,
|
|
577
|
+
"multiple": false,
|
|
578
|
+
"type": "option"
|
|
579
|
+
},
|
|
580
|
+
"target-org": {
|
|
581
|
+
"char": "o",
|
|
582
|
+
"description": "The target org to connect to for upgrading the app.",
|
|
583
|
+
"name": "target-org",
|
|
584
|
+
"noCacheDefault": true,
|
|
585
|
+
"required": true,
|
|
586
|
+
"summary": "Login username or alias for the target org.",
|
|
587
|
+
"hasDynamicHelp": true,
|
|
588
|
+
"multiple": false,
|
|
589
|
+
"type": "option"
|
|
590
|
+
},
|
|
591
|
+
"api-version": {
|
|
592
|
+
"description": "Override the API version used for orchestrator API requests. Use this flag to specify a particular API version when the default version doesn't work with your org's configuration.",
|
|
593
|
+
"name": "api-version",
|
|
594
|
+
"summary": "Override the API version used for API requests.",
|
|
595
|
+
"hasDynamicHelp": false,
|
|
596
|
+
"multiple": false,
|
|
597
|
+
"type": "option"
|
|
598
|
+
},
|
|
599
|
+
"app-id": {
|
|
600
|
+
"char": "i",
|
|
601
|
+
"description": "The unique identifier of the app to upgrade.",
|
|
602
|
+
"exclusive": [
|
|
603
|
+
"app-name"
|
|
604
|
+
],
|
|
605
|
+
"name": "app-id",
|
|
606
|
+
"summary": "ID of the app to upgrade.",
|
|
607
|
+
"hasDynamicHelp": false,
|
|
608
|
+
"multiple": false,
|
|
609
|
+
"type": "option"
|
|
610
|
+
},
|
|
611
|
+
"app-name": {
|
|
612
|
+
"char": "n",
|
|
613
|
+
"description": "The name of the app to upgrade.",
|
|
614
|
+
"exclusive": [
|
|
615
|
+
"app-id"
|
|
616
|
+
],
|
|
617
|
+
"name": "app-name",
|
|
618
|
+
"summary": "Name of the app to upgrade.",
|
|
619
|
+
"hasDynamicHelp": false,
|
|
620
|
+
"multiple": false,
|
|
621
|
+
"type": "option"
|
|
622
|
+
},
|
|
623
|
+
"template-id": {
|
|
624
|
+
"char": "t",
|
|
625
|
+
"description": "The unique identifier of the template to use for upgrading the app. This must match the app's current template ID. Template upgrades run the template's defined upgrade chains to reconfigure or update the app. Use \"sf orchestrator template list\" to find available template IDs.",
|
|
626
|
+
"name": "template-id",
|
|
627
|
+
"required": true,
|
|
628
|
+
"summary": "ID of the template to use for the upgrade.",
|
|
629
|
+
"hasDynamicHelp": false,
|
|
630
|
+
"multiple": false,
|
|
631
|
+
"type": "option"
|
|
632
|
+
},
|
|
633
|
+
"template-values": {
|
|
634
|
+
"char": "v",
|
|
635
|
+
"description": "A JSON object containing template-specific configuration values to pass to the upgrade chain. The available values depend on the template's variable definitions. For example: '{\"dataSource\":\"mySource\",\"refreshInterval\":30}'. These values customize how the template upgrade chain configures the app.",
|
|
636
|
+
"name": "template-values",
|
|
637
|
+
"summary": "Template-specific configuration values as JSON.",
|
|
638
|
+
"hasDynamicHelp": false,
|
|
639
|
+
"multiple": false,
|
|
640
|
+
"type": "option"
|
|
641
|
+
},
|
|
642
|
+
"runtime-method": {
|
|
643
|
+
"char": "r",
|
|
644
|
+
"description": "Specifies how the upgrade chain should be executed. Use 'sync' for synchronous execution (wait for completion) or 'async' for asynchronous execution (run in background). This affects how long the command takes to complete and how errors are handled.",
|
|
645
|
+
"name": "runtime-method",
|
|
646
|
+
"summary": "Runtime method for the upgrade execution.",
|
|
647
|
+
"hasDynamicHelp": false,
|
|
648
|
+
"multiple": false,
|
|
649
|
+
"options": [
|
|
650
|
+
"sync",
|
|
651
|
+
"async"
|
|
652
|
+
],
|
|
653
|
+
"type": "option"
|
|
654
|
+
},
|
|
655
|
+
"log-level": {
|
|
656
|
+
"char": "l",
|
|
657
|
+
"description": "Sets the logging level for the upgrade chain execution. Higher levels provide more diagnostic information: 'debug' (most verbose), 'info' (normal), 'warn' (warnings only), or 'error' (errors only). Use 'debug' when troubleshooting upgrade issues.",
|
|
658
|
+
"name": "log-level",
|
|
659
|
+
"summary": "Log level for the upgrade execution.",
|
|
660
|
+
"hasDynamicHelp": false,
|
|
661
|
+
"multiple": false,
|
|
662
|
+
"options": [
|
|
663
|
+
"debug",
|
|
664
|
+
"info",
|
|
665
|
+
"warn",
|
|
666
|
+
"error"
|
|
667
|
+
],
|
|
668
|
+
"type": "option"
|
|
669
|
+
},
|
|
670
|
+
"chain-name": {
|
|
671
|
+
"char": "c",
|
|
672
|
+
"description": "The name of the specific upgrade chain to execute. If not specified, the template's default upgrade chain will be used. Different chains may perform different types of upgrades or configurations within the same template.",
|
|
673
|
+
"name": "chain-name",
|
|
674
|
+
"summary": "Specific chain name to execute for the upgrade.",
|
|
675
|
+
"hasDynamicHelp": false,
|
|
676
|
+
"multiple": false,
|
|
677
|
+
"type": "option"
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"hasDynamicHelp": true,
|
|
681
|
+
"hiddenAliases": [],
|
|
682
|
+
"id": "orchestrator:app:upgrade",
|
|
683
|
+
"pluginAlias": "@salesforce/plugin-orchestrator",
|
|
684
|
+
"pluginName": "@salesforce/plugin-orchestrator",
|
|
685
|
+
"pluginType": "core",
|
|
686
|
+
"state": "preview",
|
|
687
|
+
"strict": true,
|
|
688
|
+
"summary": "Upgrade an orchestrated app.",
|
|
689
|
+
"enableJsonFlag": true,
|
|
690
|
+
"isESM": true,
|
|
691
|
+
"relativePath": [
|
|
692
|
+
"lib",
|
|
693
|
+
"commands",
|
|
694
|
+
"orchestrator",
|
|
695
|
+
"app",
|
|
696
|
+
"upgrade.js"
|
|
697
|
+
],
|
|
698
|
+
"aliasPermutations": [],
|
|
699
|
+
"permutations": [
|
|
700
|
+
"orchestrator:app:upgrade",
|
|
701
|
+
"app:orchestrator:upgrade",
|
|
702
|
+
"app:upgrade:orchestrator",
|
|
703
|
+
"orchestrator:upgrade:app",
|
|
704
|
+
"upgrade:orchestrator:app",
|
|
705
|
+
"upgrade:app:orchestrator"
|
|
706
|
+
]
|
|
707
|
+
},
|
|
554
708
|
"orchestrator:template:create": {
|
|
555
709
|
"aliases": [],
|
|
556
710
|
"args": {},
|
|
@@ -889,12 +1043,14 @@
|
|
|
889
1043
|
"orchestrator:template:list": {
|
|
890
1044
|
"aliases": [],
|
|
891
1045
|
"args": {},
|
|
892
|
-
"description": "Templates are reusable configurations that define the structure and settings for creating orchestrated apps. Use this command to discover available templates in your org before creating new apps.\n\nTemplates are displayed in a table format showing their name, label, ID, type, and other metadata. This information helps you choose the right template for your orchestrated app development.\n\nYou must have Data Cloud and Tableau Next enabled in your org and the AppFrameworkViewApp user permission to view templates. This command works with production orgs, sandboxes, and scratch orgs.",
|
|
1046
|
+
"description": "Templates are reusable configurations that define the structure and settings for creating orchestrated apps. Use this command to discover available templates in your org before creating new apps.\n\nBy default, this command only shows custom templates created in your org. Standard Salesforce-provided templates are filtered out to reduce noise. Use the --all flag to include all templates including the standard ones.\n\nTemplates are displayed in a table format showing their name, label, ID, type, and other metadata. This information helps you choose the right template for your orchestrated app development.\n\nYou must have Data Cloud and Tableau Next enabled in your org and the AppFrameworkViewApp user permission to view templates. This command works with production orgs, sandboxes, and scratch orgs.",
|
|
893
1047
|
"examples": [
|
|
894
1048
|
"List all templates in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
895
1049
|
"List templates in a specific org:\n<%= config.bin %> <%= command.id %> --target-org myOrg",
|
|
896
1050
|
"List templates using a specific API version:\n<%= config.bin %> <%= command.id %> --api-version 64.0",
|
|
897
|
-
"List templates in a sandbox org with a specific API version:\n<%= config.bin %> <%= command.id %> --target-org mySandbox --api-version 60.0"
|
|
1051
|
+
"List templates in a sandbox org with a specific API version:\n<%= config.bin %> <%= command.id %> --target-org mySandbox --api-version 60.0",
|
|
1052
|
+
"List all templates including standard Salesforce templates:\n<%= config.bin %> <%= command.id %> --all",
|
|
1053
|
+
"List all templates in a specific org:\n<%= config.bin %> <%= command.id %> --target-org myOrg --all"
|
|
898
1054
|
],
|
|
899
1055
|
"flags": {
|
|
900
1056
|
"json": {
|
|
@@ -930,6 +1086,13 @@
|
|
|
930
1086
|
"hasDynamicHelp": false,
|
|
931
1087
|
"multiple": false,
|
|
932
1088
|
"type": "option"
|
|
1089
|
+
},
|
|
1090
|
+
"all": {
|
|
1091
|
+
"description": "By default, this command only shows custom templates created in your org. Use this flag to include the standard Salesforce-provided templates (those starting with 'sfdc_internal\\_\\_') in the results.",
|
|
1092
|
+
"name": "all",
|
|
1093
|
+
"summary": "Show all templates including standard Salesforce templates.",
|
|
1094
|
+
"allowNo": false,
|
|
1095
|
+
"type": "boolean"
|
|
933
1096
|
}
|
|
934
1097
|
},
|
|
935
1098
|
"hasDynamicHelp": true,
|
|
@@ -1076,7 +1239,108 @@
|
|
|
1076
1239
|
"update:orchestrator:template",
|
|
1077
1240
|
"update:template:orchestrator"
|
|
1078
1241
|
]
|
|
1242
|
+
},
|
|
1243
|
+
"orchestrator:rules:eval": {
|
|
1244
|
+
"aliases": [],
|
|
1245
|
+
"args": {},
|
|
1246
|
+
"description": "Preview how transformation rules will modify JSON documents before deploying templates. This command uses a sample transformation to test the jsonxform/transformation endpoint with built-in User and Org context variables.",
|
|
1247
|
+
"examples": [
|
|
1248
|
+
"Test JSON transformation with Analytics template files:\n<%= config.bin %> <%= command.id %> --template-info ./template-info.json --variables ./variables.json --rules ./rules.json --target-org myorg",
|
|
1249
|
+
"Test with specific API version:\n<%= config.bin %> <%= command.id %> --template-info ./template-info.json --variables ./variables.json --rules ./rules.json --target-org myorg --api-version 60.0"
|
|
1250
|
+
],
|
|
1251
|
+
"flags": {
|
|
1252
|
+
"json": {
|
|
1253
|
+
"description": "Format output as json.",
|
|
1254
|
+
"helpGroup": "GLOBAL",
|
|
1255
|
+
"name": "json",
|
|
1256
|
+
"allowNo": false,
|
|
1257
|
+
"type": "boolean"
|
|
1258
|
+
},
|
|
1259
|
+
"flags-dir": {
|
|
1260
|
+
"helpGroup": "GLOBAL",
|
|
1261
|
+
"name": "flags-dir",
|
|
1262
|
+
"summary": "Import flag values from a directory.",
|
|
1263
|
+
"hasDynamicHelp": false,
|
|
1264
|
+
"multiple": false,
|
|
1265
|
+
"type": "option"
|
|
1266
|
+
},
|
|
1267
|
+
"target-org": {
|
|
1268
|
+
"char": "o",
|
|
1269
|
+
"description": "The username or alias of the target org where the jsonxform/transformation endpoint will be called. This org provides the User and Org context variables used in the transformation.",
|
|
1270
|
+
"name": "target-org",
|
|
1271
|
+
"noCacheDefault": true,
|
|
1272
|
+
"required": true,
|
|
1273
|
+
"summary": "Username or alias for the target org; overrides default target org.",
|
|
1274
|
+
"hasDynamicHelp": true,
|
|
1275
|
+
"multiple": false,
|
|
1276
|
+
"type": "option"
|
|
1277
|
+
},
|
|
1278
|
+
"api-version": {
|
|
1279
|
+
"description": "API version to use for the transformation request. Defaults to the org's configured API version.",
|
|
1280
|
+
"name": "api-version",
|
|
1281
|
+
"summary": "Override the api version used for api requests made by this command.",
|
|
1282
|
+
"hasDynamicHelp": false,
|
|
1283
|
+
"multiple": false,
|
|
1284
|
+
"type": "option"
|
|
1285
|
+
},
|
|
1286
|
+
"template-info": {
|
|
1287
|
+
"char": "t",
|
|
1288
|
+
"description": "Path to the template-info.json file containing the base JSON document structure that will be transformed.",
|
|
1289
|
+
"name": "template-info",
|
|
1290
|
+
"required": true,
|
|
1291
|
+
"summary": "Path to Analytics template-info.json file.",
|
|
1292
|
+
"hasDynamicHelp": false,
|
|
1293
|
+
"multiple": false,
|
|
1294
|
+
"type": "option"
|
|
1295
|
+
},
|
|
1296
|
+
"variables": {
|
|
1297
|
+
"char": "v",
|
|
1298
|
+
"description": "Path to the variables.json file containing variable definitions used in transformations.",
|
|
1299
|
+
"name": "variables",
|
|
1300
|
+
"required": true,
|
|
1301
|
+
"summary": "Path to Analytics variables.json file.",
|
|
1302
|
+
"hasDynamicHelp": false,
|
|
1303
|
+
"multiple": false,
|
|
1304
|
+
"type": "option"
|
|
1305
|
+
},
|
|
1306
|
+
"rules": {
|
|
1307
|
+
"char": "r",
|
|
1308
|
+
"description": "Path to the rules.json file containing transformation rules and macro definitions.",
|
|
1309
|
+
"name": "rules",
|
|
1310
|
+
"required": true,
|
|
1311
|
+
"summary": "Path to Analytics rules.json file.",
|
|
1312
|
+
"hasDynamicHelp": false,
|
|
1313
|
+
"multiple": false,
|
|
1314
|
+
"type": "option"
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"hasDynamicHelp": true,
|
|
1318
|
+
"hiddenAliases": [],
|
|
1319
|
+
"id": "orchestrator:rules:eval",
|
|
1320
|
+
"pluginAlias": "@salesforce/plugin-orchestrator",
|
|
1321
|
+
"pluginName": "@salesforce/plugin-orchestrator",
|
|
1322
|
+
"pluginType": "core",
|
|
1323
|
+
"strict": true,
|
|
1324
|
+
"summary": "Test JSON transformation rules using the jsonxform/transformation endpoint.",
|
|
1325
|
+
"enableJsonFlag": true,
|
|
1326
|
+
"isESM": true,
|
|
1327
|
+
"relativePath": [
|
|
1328
|
+
"lib",
|
|
1329
|
+
"commands",
|
|
1330
|
+
"orchestrator",
|
|
1331
|
+
"rules",
|
|
1332
|
+
"eval.js"
|
|
1333
|
+
],
|
|
1334
|
+
"aliasPermutations": [],
|
|
1335
|
+
"permutations": [
|
|
1336
|
+
"orchestrator:rules:eval",
|
|
1337
|
+
"rules:orchestrator:eval",
|
|
1338
|
+
"rules:eval:orchestrator",
|
|
1339
|
+
"orchestrator:eval:rules",
|
|
1340
|
+
"eval:orchestrator:rules",
|
|
1341
|
+
"eval:rules:orchestrator"
|
|
1342
|
+
]
|
|
1079
1343
|
}
|
|
1080
1344
|
},
|
|
1081
|
-
"version": "1.0.
|
|
1345
|
+
"version": "1.0.21"
|
|
1082
1346
|
}
|
package/package.json
CHANGED
|
@@ -1,25 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-orchestrator",
|
|
3
3
|
"description": "Plugin for working with SalesForce analytic apps, templates, assets and services.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.21",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
+
"@inquirer/select": "^5.0.1",
|
|
8
9
|
"@oclif/core": "^4",
|
|
9
|
-
"@salesforce/core": "^8.
|
|
10
|
+
"@salesforce/core": "^8.24.0",
|
|
10
11
|
"@salesforce/kit": "^3.2.1",
|
|
11
12
|
"@salesforce/sf-plugins-core": "^12",
|
|
12
13
|
"ansis": "^3.17.0",
|
|
13
14
|
"eslint": "^8.56.0"
|
|
14
15
|
},
|
|
15
16
|
"devDependencies": {
|
|
16
|
-
"@oclif/plugin-command-snapshot": "^5.3.
|
|
17
|
+
"@oclif/plugin-command-snapshot": "^5.3.8",
|
|
17
18
|
"@salesforce/cli-plugins-testkit": "^5.3.41",
|
|
18
19
|
"@salesforce/dev-scripts": "^11.0.2",
|
|
19
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
20
|
+
"@salesforce/plugin-command-reference": "^3.1.78",
|
|
20
21
|
"eslint-config-salesforce-license": "^1.0.1",
|
|
21
22
|
"eslint-plugin-sf-plugin": "^1.20.31",
|
|
22
|
-
"oclif": "^4.22.
|
|
23
|
+
"oclif": "^4.22.50",
|
|
23
24
|
"ts-node": "^10.9.2",
|
|
24
25
|
"typescript": "^5.5.4"
|
|
25
26
|
},
|
|
@@ -56,13 +57,28 @@
|
|
|
56
57
|
],
|
|
57
58
|
"topics": {
|
|
58
59
|
"orchestrator": {
|
|
59
|
-
"description": "Commands to work with apps and templates"
|
|
60
|
+
"description": "Commands to work with apps and templates",
|
|
61
|
+
"external": true,
|
|
62
|
+
"subtopics": {
|
|
63
|
+
"app": {
|
|
64
|
+
"external": true
|
|
65
|
+
},
|
|
66
|
+
"rules": {
|
|
67
|
+
"external": true
|
|
68
|
+
}
|
|
69
|
+
}
|
|
60
70
|
},
|
|
61
71
|
"orchestrator:app": {
|
|
62
72
|
"description": "Work with apps"
|
|
63
73
|
},
|
|
64
74
|
"orchestrator:template": {
|
|
65
75
|
"description": "Work with templates"
|
|
76
|
+
},
|
|
77
|
+
"orchestrator:rules": {
|
|
78
|
+
"description": "Work with transformation rules"
|
|
79
|
+
},
|
|
80
|
+
"template": {
|
|
81
|
+
"description": "description for template"
|
|
66
82
|
}
|
|
67
83
|
},
|
|
68
84
|
"flexibleTaxonomy": true
|
|
@@ -204,10 +220,16 @@
|
|
|
204
220
|
"output": []
|
|
205
221
|
}
|
|
206
222
|
},
|
|
223
|
+
"resolutions": {
|
|
224
|
+
"@types/node": "^20.0.0"
|
|
225
|
+
},
|
|
226
|
+
"overrides": {
|
|
227
|
+
"@types/node": "^20.0.0"
|
|
228
|
+
},
|
|
207
229
|
"exports": "./lib/index.js",
|
|
208
230
|
"type": "module",
|
|
209
231
|
"sfdx": {
|
|
210
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.
|
|
211
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.
|
|
232
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.21.crt",
|
|
233
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.21.sig"
|
|
212
234
|
}
|
|
213
235
|
}
|