@salesforce/plugin-orchestrator 1.0.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.
Files changed (110) hide show
  1. package/LICENSE +28 -0
  2. package/LICENSE.txt +12 -0
  3. package/README.md +145 -0
  4. package/lib/commands/orchestrator/create/app.d.ts +19 -0
  5. package/lib/commands/orchestrator/create/app.js +144 -0
  6. package/lib/commands/orchestrator/create/app.js.map +1 -0
  7. package/lib/commands/orchestrator/create/template.d.ts +17 -0
  8. package/lib/commands/orchestrator/create/template.js +96 -0
  9. package/lib/commands/orchestrator/create/template.js.map +1 -0
  10. package/lib/commands/orchestrator/decouple/app.d.ts +14 -0
  11. package/lib/commands/orchestrator/decouple/app.js +106 -0
  12. package/lib/commands/orchestrator/decouple/app.js.map +1 -0
  13. package/lib/commands/orchestrator/delete/app.d.ts +15 -0
  14. package/lib/commands/orchestrator/delete/app.js +102 -0
  15. package/lib/commands/orchestrator/delete/app.js.map +1 -0
  16. package/lib/commands/orchestrator/delete/template.d.ts +15 -0
  17. package/lib/commands/orchestrator/delete/template.js +108 -0
  18. package/lib/commands/orchestrator/delete/template.js.map +1 -0
  19. package/lib/commands/orchestrator/display/app.d.ts +15 -0
  20. package/lib/commands/orchestrator/display/app.js +85 -0
  21. package/lib/commands/orchestrator/display/app.js.map +1 -0
  22. package/lib/commands/orchestrator/display/template.d.ts +15 -0
  23. package/lib/commands/orchestrator/display/template.js +105 -0
  24. package/lib/commands/orchestrator/display/template.js.map +1 -0
  25. package/lib/commands/orchestrator/list/app.d.ts +13 -0
  26. package/lib/commands/orchestrator/list/app.js +62 -0
  27. package/lib/commands/orchestrator/list/app.js.map +1 -0
  28. package/lib/commands/orchestrator/list/template.d.ts +14 -0
  29. package/lib/commands/orchestrator/list/template.js +64 -0
  30. package/lib/commands/orchestrator/list/template.js.map +1 -0
  31. package/lib/commands/orchestrator/template/create.d.ts +17 -0
  32. package/lib/commands/orchestrator/template/create.js +96 -0
  33. package/lib/commands/orchestrator/template/create.js.map +1 -0
  34. package/lib/commands/orchestrator/template/delete.d.ts +15 -0
  35. package/lib/commands/orchestrator/template/delete.js +108 -0
  36. package/lib/commands/orchestrator/template/delete.js.map +1 -0
  37. package/lib/commands/orchestrator/template/display.d.ts +15 -0
  38. package/lib/commands/orchestrator/template/display.js +105 -0
  39. package/lib/commands/orchestrator/template/display.js.map +1 -0
  40. package/lib/commands/orchestrator/template/list.d.ts +13 -0
  41. package/lib/commands/orchestrator/template/list.js +62 -0
  42. package/lib/commands/orchestrator/template/list.js.map +1 -0
  43. package/lib/commands/orchestrator/template/update.d.ts +17 -0
  44. package/lib/commands/orchestrator/template/update.js +107 -0
  45. package/lib/commands/orchestrator/template/update.js.map +1 -0
  46. package/lib/commands/orchestrator/update/app.d.ts +20 -0
  47. package/lib/commands/orchestrator/update/app.js +145 -0
  48. package/lib/commands/orchestrator/update/app.js.map +1 -0
  49. package/lib/commands/orchestrator/update/template.d.ts +17 -0
  50. package/lib/commands/orchestrator/update/template.js +107 -0
  51. package/lib/commands/orchestrator/update/template.js.map +1 -0
  52. package/lib/index.d.ts +2 -0
  53. package/lib/index.js +8 -0
  54. package/lib/index.js.map +1 -0
  55. package/lib/utils/app/appDisplayUtil.d.ts +26 -0
  56. package/lib/utils/app/appDisplayUtil.js +153 -0
  57. package/lib/utils/app/appDisplayUtil.js.map +1 -0
  58. package/lib/utils/app/appListUtils.d.ts +34 -0
  59. package/lib/utils/app/appListUtils.js +81 -0
  60. package/lib/utils/app/appListUtils.js.map +1 -0
  61. package/lib/utils/app/appTypes.d.ts +44 -0
  62. package/lib/utils/app/appTypes.js +8 -0
  63. package/lib/utils/app/appTypes.js.map +1 -0
  64. package/lib/utils/app/appframeworkapp.d.ts +64 -0
  65. package/lib/utils/app/appframeworkapp.js +175 -0
  66. package/lib/utils/app/appframeworkapp.js.map +1 -0
  67. package/lib/utils/display/displayUtil.d.ts +27 -0
  68. package/lib/utils/display/displayUtil.js +80 -0
  69. package/lib/utils/display/displayUtil.js.map +1 -0
  70. package/lib/utils/request.d.ts +15 -0
  71. package/lib/utils/request.js +18 -0
  72. package/lib/utils/request.js.map +1 -0
  73. package/lib/utils/template/appframeworktemplate.d.ts +67 -0
  74. package/lib/utils/template/appframeworktemplate.js +114 -0
  75. package/lib/utils/template/appframeworktemplate.js.map +1 -0
  76. package/lib/utils/template/templateDisplayUtil.d.ts +42 -0
  77. package/lib/utils/template/templateDisplayUtil.js +142 -0
  78. package/lib/utils/template/templateDisplayUtil.js.map +1 -0
  79. package/lib/utils/template/templateHighlighter.d.ts +23 -0
  80. package/lib/utils/template/templateHighlighter.js +68 -0
  81. package/lib/utils/template/templateHighlighter.js.map +1 -0
  82. package/lib/utils/template/templateListUtils.d.ts +40 -0
  83. package/lib/utils/template/templateListUtils.js +126 -0
  84. package/lib/utils/template/templateListUtils.js.map +1 -0
  85. package/lib/utils/template/templateTypes.d.ts +114 -0
  86. package/lib/utils/template/templateTypes.js +15 -0
  87. package/lib/utils/template/templateTypes.js.map +1 -0
  88. package/lib/utils/utils.d.ts +21 -0
  89. package/lib/utils/utils.js +49 -0
  90. package/lib/utils/utils.js.map +1 -0
  91. package/messages/appframework.create.app.md +124 -0
  92. package/messages/appframework.create.template.md +82 -0
  93. package/messages/appframework.decouple.app.md +82 -0
  94. package/messages/appframework.delete.app.md +94 -0
  95. package/messages/appframework.delete.template.md +162 -0
  96. package/messages/appframework.display.app.md +70 -0
  97. package/messages/appframework.display.template.md +101 -0
  98. package/messages/appframework.list.app.md +126 -0
  99. package/messages/appframework.list.template.md +78 -0
  100. package/messages/appframework.template.create.md +82 -0
  101. package/messages/appframework.template.delete.md +162 -0
  102. package/messages/appframework.template.display.md +101 -0
  103. package/messages/appframework.template.list.md +78 -0
  104. package/messages/appframework.template.update.md +78 -0
  105. package/messages/appframework.update.app.md +142 -0
  106. package/messages/appframework.update.template.md +78 -0
  107. package/npm-shrinkwrap.json +14309 -0
  108. package/oclif.lock +7751 -0
  109. package/oclif.manifest.json +1731 -0
  110. package/package.json +226 -0
@@ -0,0 +1,1731 @@
1
+ {
2
+ "commands": {
3
+ "orchestrator:decouple:app": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Decouples an AppFramework app from its template. This allows the app to be modified independently without being affected by template updates. You must specify either the app-id or app-name flag to identify the app to decouple.",
7
+ "examples": [
8
+ "Decouple an app by ID:\n<%= config.bin %> <%= command.id %> --app-id 00Dxx0000000001",
9
+ "Decouple an app by name:\n<%= config.bin %> <%= command.id %> --app-name \"My App\""
10
+ ],
11
+ "flags": {
12
+ "json": {
13
+ "description": "Format output as json.",
14
+ "helpGroup": "GLOBAL",
15
+ "name": "json",
16
+ "allowNo": false,
17
+ "type": "boolean"
18
+ },
19
+ "flags-dir": {
20
+ "helpGroup": "GLOBAL",
21
+ "name": "flags-dir",
22
+ "summary": "Import flag values from a directory.",
23
+ "hasDynamicHelp": false,
24
+ "multiple": false,
25
+ "type": "option"
26
+ },
27
+ "target-org": {
28
+ "char": "o",
29
+ "description": "Overrides your default org.",
30
+ "name": "target-org",
31
+ "noCacheDefault": true,
32
+ "required": true,
33
+ "summary": "Login username or alias for the target org.",
34
+ "hasDynamicHelp": true,
35
+ "multiple": false,
36
+ "type": "option"
37
+ },
38
+ "api-version": {
39
+ "description": "Override the api version used for api requests made by this command.",
40
+ "name": "api-version",
41
+ "summary": "Override the api version used for api requests made by this command.",
42
+ "hasDynamicHelp": false,
43
+ "multiple": false,
44
+ "type": "option"
45
+ },
46
+ "app-id": {
47
+ "char": "i",
48
+ "description": "Specify the ID of the app to decouple. Either this or app-name is required.",
49
+ "exclusive": [
50
+ "app-name"
51
+ ],
52
+ "name": "app-id",
53
+ "summary": "ID of the app to decouple.",
54
+ "hasDynamicHelp": false,
55
+ "multiple": false,
56
+ "type": "option"
57
+ },
58
+ "app-name": {
59
+ "char": "n",
60
+ "description": "Specify the name of the app to decouple. Either this or app-id is required.",
61
+ "exclusive": [
62
+ "app-id"
63
+ ],
64
+ "name": "app-name",
65
+ "summary": "Name of the app to decouple.",
66
+ "hasDynamicHelp": false,
67
+ "multiple": false,
68
+ "type": "option"
69
+ }
70
+ },
71
+ "hasDynamicHelp": true,
72
+ "hiddenAliases": [],
73
+ "id": "orchestrator:decouple:app",
74
+ "pluginAlias": "@salesforce/plugin-orchestrator",
75
+ "pluginName": "@salesforce/plugin-orchestrator",
76
+ "pluginType": "core",
77
+ "state": "preview",
78
+ "strict": true,
79
+ "summary": "Decouple an AppFramework app from its template.",
80
+ "enableJsonFlag": true,
81
+ "isESM": true,
82
+ "relativePath": [
83
+ "lib",
84
+ "commands",
85
+ "orchestrator",
86
+ "decouple",
87
+ "app.js"
88
+ ],
89
+ "aliasPermutations": [],
90
+ "permutations": [
91
+ "orchestrator:decouple:app",
92
+ "decouple:orchestrator:app",
93
+ "decouple:app:orchestrator",
94
+ "orchestrator:app:decouple",
95
+ "app:orchestrator:decouple",
96
+ "app:decouple:orchestrator"
97
+ ]
98
+ },
99
+ "orchestrator:create:app": {
100
+ "aliases": [],
101
+ "args": {},
102
+ "description": "Creates a new app from an existing template. The app will be initialized with the configuration defined in the template.",
103
+ "examples": [
104
+ "Create a new app using a template ID:\n<%= config.bin %> <%= command.id %> --target-org myOrg --name \"my_app\" --template-id 01t000000000123",
105
+ "Create a new app using a template name:\n<%= config.bin %> <%= command.id %> --target-org myOrg --name \"sales_app\" --template-name \"Sales_Template\"",
106
+ "Create a new app with additional details:\n<%= config.bin %> <%= command.id %> --target-org myOrg --name \"analytics_app\" --template-name \"Analytics_Template\" --label \"My Analytics App\" --description \"Custom analytics application\" --runtime-method async --log-level debug"
107
+ ],
108
+ "flags": {
109
+ "json": {
110
+ "description": "Format output as json.",
111
+ "helpGroup": "GLOBAL",
112
+ "name": "json",
113
+ "allowNo": false,
114
+ "type": "boolean"
115
+ },
116
+ "flags-dir": {
117
+ "helpGroup": "GLOBAL",
118
+ "name": "flags-dir",
119
+ "summary": "Import flag values from a directory.",
120
+ "hasDynamicHelp": false,
121
+ "multiple": false,
122
+ "type": "option"
123
+ },
124
+ "target-org": {
125
+ "char": "o",
126
+ "description": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
127
+ "name": "target-org",
128
+ "noCacheDefault": true,
129
+ "required": true,
130
+ "summary": "Username or alias of the target org.",
131
+ "hasDynamicHelp": true,
132
+ "multiple": false,
133
+ "type": "option"
134
+ },
135
+ "api-version": {
136
+ "description": "Override the api version used for api requests made by this command.",
137
+ "name": "api-version",
138
+ "summary": "Override the api version used for api requests made by this command.",
139
+ "hasDynamicHelp": false,
140
+ "multiple": false,
141
+ "type": "option"
142
+ },
143
+ "name": {
144
+ "char": "n",
145
+ "description": "A unique identifier for the app. Must be unique within your org.",
146
+ "name": "name",
147
+ "required": true,
148
+ "summary": "Name for the new app (required)",
149
+ "hasDynamicHelp": false,
150
+ "multiple": false,
151
+ "type": "option"
152
+ },
153
+ "label": {
154
+ "char": "l",
155
+ "description": "A human-readable label for the app. If not provided, the name will be used.",
156
+ "name": "label",
157
+ "summary": "Label for the new app",
158
+ "hasDynamicHelp": false,
159
+ "multiple": false,
160
+ "type": "option"
161
+ },
162
+ "description": {
163
+ "char": "d",
164
+ "description": "A description of what the app does.",
165
+ "name": "description",
166
+ "summary": "Description of the new app",
167
+ "hasDynamicHelp": false,
168
+ "multiple": false,
169
+ "type": "option"
170
+ },
171
+ "template-id": {
172
+ "char": "i",
173
+ "description": "ID of an existing template to use for creating the app. Either template-id or template-name must be provided.",
174
+ "exclusive": [
175
+ "template-name"
176
+ ],
177
+ "name": "template-id",
178
+ "summary": "ID of the template to use for creating the app",
179
+ "hasDynamicHelp": false,
180
+ "multiple": false,
181
+ "type": "option"
182
+ },
183
+ "template-name": {
184
+ "char": "t",
185
+ "description": "Name of an existing template to use for creating the app. Either template-id or template-name must be provided.",
186
+ "exclusive": [
187
+ "template-id"
188
+ ],
189
+ "name": "template-name",
190
+ "summary": "Name of the template to use for creating the app",
191
+ "hasDynamicHelp": false,
192
+ "multiple": false,
193
+ "type": "option"
194
+ },
195
+ "runtime-method": {
196
+ "char": "r",
197
+ "description": "Specifies how the app's runtime operates, either synchronously or asynchronously.",
198
+ "name": "runtime-method",
199
+ "summary": "Runtime method for the app (sync or async)",
200
+ "hasDynamicHelp": false,
201
+ "multiple": false,
202
+ "options": [
203
+ "sync",
204
+ "async"
205
+ ],
206
+ "type": "option"
207
+ },
208
+ "log-level": {
209
+ "char": "g",
210
+ "description": "Sets the logging level for the app. Valid options are: debug, info, warn, error.",
211
+ "name": "log-level",
212
+ "summary": "Log level for the app",
213
+ "hasDynamicHelp": false,
214
+ "multiple": false,
215
+ "options": [
216
+ "debug",
217
+ "info",
218
+ "warn",
219
+ "error"
220
+ ],
221
+ "type": "option"
222
+ }
223
+ },
224
+ "hasDynamicHelp": true,
225
+ "hiddenAliases": [],
226
+ "id": "orchestrator:create:app",
227
+ "pluginAlias": "@salesforce/plugin-orchestrator",
228
+ "pluginName": "@salesforce/plugin-orchestrator",
229
+ "pluginType": "core",
230
+ "state": "preview",
231
+ "strict": true,
232
+ "summary": "Create a new AppFramework app from a template.",
233
+ "enableJsonFlag": true,
234
+ "isESM": true,
235
+ "relativePath": [
236
+ "lib",
237
+ "commands",
238
+ "orchestrator",
239
+ "create",
240
+ "app.js"
241
+ ],
242
+ "aliasPermutations": [],
243
+ "permutations": [
244
+ "orchestrator:create:app",
245
+ "create:orchestrator:app",
246
+ "create:app:orchestrator",
247
+ "orchestrator:app:create",
248
+ "app:orchestrator:create",
249
+ "app:create:orchestrator"
250
+ ]
251
+ },
252
+ "orchestrator:create:template": {
253
+ "aliases": [],
254
+ "args": {},
255
+ "description": "Creates a new empty template that can be customized. Templates allow you to define reusable configurations for AppFramework applications.",
256
+ "examples": [
257
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"my_template\"",
258
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"sales_template\" --type app --label \"My Custom Template\"",
259
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"dashboard_template\" --type dashboard --subtype \"analytics\"",
260
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"analytics_template\" --type app --subtype \"tableau\" --label \"Sales Template\" --description \"Template for sales analytics apps\""
261
+ ],
262
+ "flags": {
263
+ "json": {
264
+ "description": "Format output as json.",
265
+ "helpGroup": "GLOBAL",
266
+ "name": "json",
267
+ "allowNo": false,
268
+ "type": "boolean"
269
+ },
270
+ "flags-dir": {
271
+ "helpGroup": "GLOBAL",
272
+ "name": "flags-dir",
273
+ "summary": "Import flag values from a directory.",
274
+ "hasDynamicHelp": false,
275
+ "multiple": false,
276
+ "type": "option"
277
+ },
278
+ "target-org": {
279
+ "char": "o",
280
+ "description": "The target org to connect to for creating the template.",
281
+ "name": "target-org",
282
+ "noCacheDefault": true,
283
+ "required": true,
284
+ "summary": "Login username or alias for the target org",
285
+ "hasDynamicHelp": true,
286
+ "multiple": false,
287
+ "type": "option"
288
+ },
289
+ "api-version": {
290
+ "description": "Override the api version used for api requests to the app framework.",
291
+ "name": "api-version",
292
+ "summary": "Override the api version used for api requests",
293
+ "hasDynamicHelp": false,
294
+ "multiple": false,
295
+ "type": "option"
296
+ },
297
+ "name": {
298
+ "char": "n",
299
+ "description": "A unique identifier for the template. Must be unique within your org.",
300
+ "name": "name",
301
+ "required": true,
302
+ "summary": "Name for the new template (required)",
303
+ "hasDynamicHelp": false,
304
+ "multiple": false,
305
+ "type": "option"
306
+ },
307
+ "type": {
308
+ "char": "t",
309
+ "description": "Specifies the type of template to create. Valid options are: app, component, dashboard, or lens. Defaults to 'app' if not specified.",
310
+ "name": "type",
311
+ "summary": "Type of template to create",
312
+ "default": "app",
313
+ "hasDynamicHelp": false,
314
+ "multiple": false,
315
+ "options": [
316
+ "app",
317
+ "component",
318
+ "dashboard",
319
+ "lens"
320
+ ],
321
+ "type": "option"
322
+ },
323
+ "subtype": {
324
+ "char": "s",
325
+ "description": "An optional subtype categorization for the template (e.g., 'tableau' for app templates).",
326
+ "name": "subtype",
327
+ "summary": "Subtype for the template",
328
+ "hasDynamicHelp": false,
329
+ "multiple": false,
330
+ "type": "option"
331
+ },
332
+ "label": {
333
+ "char": "l",
334
+ "description": "A human-readable label for the template. This is displayed in the Analytics Studio UI.",
335
+ "name": "label",
336
+ "summary": "Label for the new template",
337
+ "hasDynamicHelp": false,
338
+ "multiple": false,
339
+ "type": "option"
340
+ },
341
+ "description": {
342
+ "char": "d",
343
+ "description": "A description of what the template does. This is displayed in the Analytics Studio UI.",
344
+ "name": "description",
345
+ "summary": "Description of the new template",
346
+ "hasDynamicHelp": false,
347
+ "multiple": false,
348
+ "type": "option"
349
+ }
350
+ },
351
+ "hasDynamicHelp": true,
352
+ "hiddenAliases": [],
353
+ "id": "orchestrator:create:template",
354
+ "pluginAlias": "@salesforce/plugin-orchestrator",
355
+ "pluginName": "@salesforce/plugin-orchestrator",
356
+ "pluginType": "core",
357
+ "state": "preview",
358
+ "strict": true,
359
+ "summary": "Create a new AppFramework template.",
360
+ "enableJsonFlag": true,
361
+ "isESM": true,
362
+ "relativePath": [
363
+ "lib",
364
+ "commands",
365
+ "orchestrator",
366
+ "create",
367
+ "template.js"
368
+ ],
369
+ "aliasPermutations": [],
370
+ "permutations": [
371
+ "orchestrator:create:template",
372
+ "create:orchestrator:template",
373
+ "create:template:orchestrator",
374
+ "orchestrator:template:create",
375
+ "template:orchestrator:create",
376
+ "template:create:orchestrator"
377
+ ]
378
+ },
379
+ "orchestrator:delete:app": {
380
+ "aliases": [],
381
+ "args": {},
382
+ "description": "Deletes an app from AppFramework. Either the app ID or app name must be provided to identify the app.",
383
+ "examples": [
384
+ "Delete an app using its ID:\n<%= config.bin %> <%= command.id %> --app-id 01t5e000006lOjDAA2",
385
+ "Delete an app using its name:\n<%= config.bin %> <%= command.id %> --app-name MyAppName"
386
+ ],
387
+ "flags": {
388
+ "json": {
389
+ "description": "Format output as json.",
390
+ "helpGroup": "GLOBAL",
391
+ "name": "json",
392
+ "allowNo": false,
393
+ "type": "boolean"
394
+ },
395
+ "flags-dir": {
396
+ "helpGroup": "GLOBAL",
397
+ "name": "flags-dir",
398
+ "summary": "Import flag values from a directory.",
399
+ "hasDynamicHelp": false,
400
+ "multiple": false,
401
+ "type": "option"
402
+ },
403
+ "target-org": {
404
+ "char": "o",
405
+ "description": "Overrides your default org.",
406
+ "name": "target-org",
407
+ "noCacheDefault": true,
408
+ "required": true,
409
+ "summary": "Login username or alias for the target org.",
410
+ "hasDynamicHelp": true,
411
+ "multiple": false,
412
+ "type": "option"
413
+ },
414
+ "api-version": {
415
+ "description": "Override the api version used for api requests made by this command.",
416
+ "name": "api-version",
417
+ "summary": "Override the api version used for api requests made by this command.",
418
+ "hasDynamicHelp": false,
419
+ "multiple": false,
420
+ "type": "option"
421
+ },
422
+ "app-id": {
423
+ "char": "i",
424
+ "description": "Specify the ID of the app to delete. Either this or --app-name is required.",
425
+ "exclusive": [
426
+ "app-name"
427
+ ],
428
+ "name": "app-id",
429
+ "summary": "ID of the app to delete.",
430
+ "hasDynamicHelp": false,
431
+ "multiple": false,
432
+ "type": "option"
433
+ },
434
+ "app-name": {
435
+ "char": "n",
436
+ "description": "Specify the name of the app to delete. Either this or --app-id is required.",
437
+ "exclusive": [
438
+ "app-id"
439
+ ],
440
+ "name": "app-name",
441
+ "summary": "Name of the app to delete.",
442
+ "hasDynamicHelp": false,
443
+ "multiple": false,
444
+ "type": "option"
445
+ },
446
+ "no-prompt": {
447
+ "char": "p",
448
+ "description": "Disables the confirmation prompt that normally appears before deleting an app. Use with caution.",
449
+ "name": "no-prompt",
450
+ "summary": "Skip confirmation prompt before deleting.",
451
+ "allowNo": false,
452
+ "type": "boolean"
453
+ }
454
+ },
455
+ "hasDynamicHelp": true,
456
+ "hiddenAliases": [],
457
+ "id": "orchestrator:delete:app",
458
+ "pluginAlias": "@salesforce/plugin-orchestrator",
459
+ "pluginName": "@salesforce/plugin-orchestrator",
460
+ "pluginType": "core",
461
+ "state": "preview",
462
+ "strict": true,
463
+ "summary": "Delete an AppFramework app.",
464
+ "enableJsonFlag": true,
465
+ "isESM": true,
466
+ "relativePath": [
467
+ "lib",
468
+ "commands",
469
+ "orchestrator",
470
+ "delete",
471
+ "app.js"
472
+ ],
473
+ "aliasPermutations": [],
474
+ "permutations": [
475
+ "orchestrator:delete:app",
476
+ "delete:orchestrator:app",
477
+ "delete:app:orchestrator",
478
+ "orchestrator:app:delete",
479
+ "app:orchestrator:delete",
480
+ "app:delete:orchestrator"
481
+ ]
482
+ },
483
+ "orchestrator:delete:template": {
484
+ "aliases": [],
485
+ "args": {},
486
+ "description": "Deletes an existing template. By default, apps created from this template will remain but will no longer be linked to the template. Use --force-delete to delete both the template and all apps created from it. Use --decouple to keep the apps but remove their link to the template.",
487
+ "examples": [
488
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ",
489
+ "<%= config.bin %> <%= command.id %> --template-name \"My Template\"",
490
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --force-delete",
491
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --no-prompt"
492
+ ],
493
+ "flags": {
494
+ "json": {
495
+ "description": "Format output as json.",
496
+ "helpGroup": "GLOBAL",
497
+ "name": "json",
498
+ "allowNo": false,
499
+ "type": "boolean"
500
+ },
501
+ "flags-dir": {
502
+ "helpGroup": "GLOBAL",
503
+ "name": "flags-dir",
504
+ "summary": "Import flag values from a directory.",
505
+ "hasDynamicHelp": false,
506
+ "multiple": false,
507
+ "type": "option"
508
+ },
509
+ "target-org": {
510
+ "char": "o",
511
+ "description": "The target org to connect to for deleting the template.",
512
+ "name": "target-org",
513
+ "noCacheDefault": true,
514
+ "required": true,
515
+ "summary": "Login username or alias for the target org",
516
+ "hasDynamicHelp": true,
517
+ "multiple": false,
518
+ "type": "option"
519
+ },
520
+ "api-version": {
521
+ "description": "Override the api version used for api requests to the app framework.",
522
+ "name": "api-version",
523
+ "summary": "Override the api version used for api requests",
524
+ "hasDynamicHelp": false,
525
+ "multiple": false,
526
+ "type": "option"
527
+ },
528
+ "template-id": {
529
+ "char": "i",
530
+ "description": "The unique identifier of the template to delete.",
531
+ "exclusive": [
532
+ "template-name"
533
+ ],
534
+ "name": "template-id",
535
+ "summary": "ID of the template to delete",
536
+ "hasDynamicHelp": false,
537
+ "multiple": false,
538
+ "type": "option"
539
+ },
540
+ "template-name": {
541
+ "char": "n",
542
+ "description": "The name of the template to delete. Use this if you don't know the template ID.",
543
+ "exclusive": [
544
+ "template-id"
545
+ ],
546
+ "name": "template-name",
547
+ "summary": "Name of the template to delete",
548
+ "hasDynamicHelp": false,
549
+ "multiple": false,
550
+ "type": "option"
551
+ },
552
+ "no-prompt": {
553
+ "char": "p",
554
+ "description": "Skip the confirmation prompt before deleting the template.",
555
+ "name": "no-prompt",
556
+ "summary": "Do not prompt for confirmation",
557
+ "allowNo": false,
558
+ "type": "boolean"
559
+ }
560
+ },
561
+ "hasDynamicHelp": true,
562
+ "hiddenAliases": [],
563
+ "id": "orchestrator:delete:template",
564
+ "pluginAlias": "@salesforce/plugin-orchestrator",
565
+ "pluginName": "@salesforce/plugin-orchestrator",
566
+ "pluginType": "core",
567
+ "state": "preview",
568
+ "strict": true,
569
+ "summary": "Delete an AppFramework template.",
570
+ "enableJsonFlag": true,
571
+ "isESM": true,
572
+ "relativePath": [
573
+ "lib",
574
+ "commands",
575
+ "orchestrator",
576
+ "delete",
577
+ "template.js"
578
+ ],
579
+ "aliasPermutations": [],
580
+ "permutations": [
581
+ "orchestrator:delete:template",
582
+ "delete:orchestrator:template",
583
+ "delete:template:orchestrator",
584
+ "orchestrator:template:delete",
585
+ "template:orchestrator:delete",
586
+ "template:delete:orchestrator"
587
+ ]
588
+ },
589
+ "orchestrator:display:app": {
590
+ "aliases": [],
591
+ "args": {},
592
+ "description": "Display detailed information about a specific AppFramework app. You must specify either the --app-id or --app-name flag to identify the app.",
593
+ "examples": [
594
+ "Display app details by ID:\n<%= config.bin %> <%= command.id %> --app-id 00Dxx0000000001",
595
+ "Display app details by name:\n<%= config.bin %> <%= command.id %> --app-name \"My App\""
596
+ ],
597
+ "flags": {
598
+ "json": {
599
+ "description": "Format output as json.",
600
+ "helpGroup": "GLOBAL",
601
+ "name": "json",
602
+ "allowNo": false,
603
+ "type": "boolean"
604
+ },
605
+ "flags-dir": {
606
+ "helpGroup": "GLOBAL",
607
+ "name": "flags-dir",
608
+ "summary": "Import flag values from a directory.",
609
+ "hasDynamicHelp": false,
610
+ "multiple": false,
611
+ "type": "option"
612
+ },
613
+ "target-org": {
614
+ "char": "o",
615
+ "description": "Overrides your default org.",
616
+ "name": "target-org",
617
+ "noCacheDefault": true,
618
+ "required": true,
619
+ "summary": "Login username or alias for the target org.",
620
+ "hasDynamicHelp": true,
621
+ "multiple": false,
622
+ "type": "option"
623
+ },
624
+ "api-version": {
625
+ "description": "Override the api version used for api requests made by this command.",
626
+ "name": "api-version",
627
+ "summary": "Override the api version used for api requests made by this command.",
628
+ "hasDynamicHelp": false,
629
+ "multiple": false,
630
+ "type": "option"
631
+ },
632
+ "app-id": {
633
+ "char": "i",
634
+ "description": "Specify the ID of the app to display. Either this or --app-name is required.",
635
+ "exclusive": [
636
+ "app-name"
637
+ ],
638
+ "name": "app-id",
639
+ "summary": "ID of the app to display.",
640
+ "hasDynamicHelp": false,
641
+ "multiple": false,
642
+ "type": "option"
643
+ },
644
+ "app-name": {
645
+ "char": "n",
646
+ "description": "Specify the name of the app to display. Either this or --app-id is required.",
647
+ "exclusive": [
648
+ "app-id"
649
+ ],
650
+ "name": "app-name",
651
+ "summary": "Name of the app to display.",
652
+ "hasDynamicHelp": false,
653
+ "multiple": false,
654
+ "type": "option"
655
+ }
656
+ },
657
+ "hasDynamicHelp": true,
658
+ "hiddenAliases": [],
659
+ "id": "orchestrator:display:app",
660
+ "pluginAlias": "@salesforce/plugin-orchestrator",
661
+ "pluginName": "@salesforce/plugin-orchestrator",
662
+ "pluginType": "core",
663
+ "state": "preview",
664
+ "strict": true,
665
+ "summary": "Display details of an AppFramework app.",
666
+ "enableJsonFlag": true,
667
+ "isESM": true,
668
+ "relativePath": [
669
+ "lib",
670
+ "commands",
671
+ "orchestrator",
672
+ "display",
673
+ "app.js"
674
+ ],
675
+ "aliasPermutations": [],
676
+ "permutations": [
677
+ "orchestrator:display:app",
678
+ "display:orchestrator:app",
679
+ "display:app:orchestrator",
680
+ "orchestrator:app:display",
681
+ "app:orchestrator:display",
682
+ "app:display:orchestrator"
683
+ ]
684
+ },
685
+ "orchestrator:display:template": {
686
+ "aliases": [],
687
+ "args": {},
688
+ "description": "Shows detailed information about a specific AppFramework template including its name, label, ID, type, and other properties.",
689
+ "examples": [
690
+ "Display a template using its ID:\n<%= config.bin %> <%= command.id %> --template-id 01RM0000000HwBGMA0",
691
+ "Display a template using its name:\n<%= config.bin %> <%= command.id %> --template-name MyTemplate"
692
+ ],
693
+ "flags": {
694
+ "json": {
695
+ "description": "Format output as json.",
696
+ "helpGroup": "GLOBAL",
697
+ "name": "json",
698
+ "allowNo": false,
699
+ "type": "boolean"
700
+ },
701
+ "flags-dir": {
702
+ "helpGroup": "GLOBAL",
703
+ "name": "flags-dir",
704
+ "summary": "Import flag values from a directory.",
705
+ "hasDynamicHelp": false,
706
+ "multiple": false,
707
+ "type": "option"
708
+ },
709
+ "target-org": {
710
+ "char": "o",
711
+ "description": "The target org to connect to for displaying the template.",
712
+ "name": "target-org",
713
+ "noCacheDefault": true,
714
+ "required": true,
715
+ "summary": "Login username or alias for the target org",
716
+ "hasDynamicHelp": true,
717
+ "multiple": false,
718
+ "type": "option"
719
+ },
720
+ "api-version": {
721
+ "description": "Override the api version used for api requests to the app framework.",
722
+ "name": "api-version",
723
+ "summary": "Override the api version used for api requests",
724
+ "hasDynamicHelp": false,
725
+ "multiple": false,
726
+ "type": "option"
727
+ },
728
+ "template-id": {
729
+ "char": "i",
730
+ "description": "Specify the unique identifier of the template you want to display. Use this flag when you know the template's ID.",
731
+ "exclusive": [
732
+ "template-name"
733
+ ],
734
+ "name": "template-id",
735
+ "summary": "The ID of the template to display.",
736
+ "hasDynamicHelp": false,
737
+ "multiple": false,
738
+ "type": "option"
739
+ },
740
+ "template-name": {
741
+ "char": "n",
742
+ "description": "Specify the name of the template you want to display. Use this flag when you know the template's name but not its ID.",
743
+ "exclusive": [
744
+ "template-id"
745
+ ],
746
+ "name": "template-name",
747
+ "summary": "The name of the template to display.",
748
+ "hasDynamicHelp": false,
749
+ "multiple": false,
750
+ "type": "option"
751
+ }
752
+ },
753
+ "hasDynamicHelp": true,
754
+ "hiddenAliases": [],
755
+ "id": "orchestrator:display:template",
756
+ "pluginAlias": "@salesforce/plugin-orchestrator",
757
+ "pluginName": "@salesforce/plugin-orchestrator",
758
+ "pluginType": "core",
759
+ "state": "preview",
760
+ "strict": true,
761
+ "summary": "Display details of an AppFramework template.",
762
+ "enableJsonFlag": true,
763
+ "isESM": true,
764
+ "relativePath": [
765
+ "lib",
766
+ "commands",
767
+ "orchestrator",
768
+ "display",
769
+ "template.js"
770
+ ],
771
+ "aliasPermutations": [],
772
+ "permutations": [
773
+ "orchestrator:display:template",
774
+ "display:orchestrator:template",
775
+ "display:template:orchestrator",
776
+ "orchestrator:template:display",
777
+ "template:orchestrator:display",
778
+ "template:display:orchestrator"
779
+ ]
780
+ },
781
+ "orchestrator:list:app": {
782
+ "aliases": [],
783
+ "args": {},
784
+ "description": "Lists all AppFramework apps in your org. You can filter the results by template type and other criteria.",
785
+ "examples": [
786
+ "List all AppFramework apps in your default org:\n<%= config.bin %> <%= command.id %>",
787
+ "List apps with a specific API version:\n<%= config.bin %> <%= command.id %> --api-version=64.0"
788
+ ],
789
+ "flags": {
790
+ "json": {
791
+ "description": "Format output as json.",
792
+ "helpGroup": "GLOBAL",
793
+ "name": "json",
794
+ "allowNo": false,
795
+ "type": "boolean"
796
+ },
797
+ "flags-dir": {
798
+ "helpGroup": "GLOBAL",
799
+ "name": "flags-dir",
800
+ "summary": "Import flag values from a directory.",
801
+ "hasDynamicHelp": false,
802
+ "multiple": false,
803
+ "type": "option"
804
+ },
805
+ "target-org": {
806
+ "char": "o",
807
+ "description": "Overrides your default org.",
808
+ "name": "target-org",
809
+ "noCacheDefault": true,
810
+ "required": true,
811
+ "summary": "Login username or alias for the target org.",
812
+ "hasDynamicHelp": true,
813
+ "multiple": false,
814
+ "type": "option"
815
+ },
816
+ "api-version": {
817
+ "description": "Override the api version used for api requests made by this command.",
818
+ "name": "api-version",
819
+ "summary": "Override the api version used for api requests made by this command.",
820
+ "hasDynamicHelp": false,
821
+ "multiple": false,
822
+ "type": "option"
823
+ }
824
+ },
825
+ "hasDynamicHelp": true,
826
+ "hiddenAliases": [],
827
+ "id": "orchestrator:list:app",
828
+ "pluginAlias": "@salesforce/plugin-orchestrator",
829
+ "pluginName": "@salesforce/plugin-orchestrator",
830
+ "pluginType": "core",
831
+ "state": "preview",
832
+ "strict": true,
833
+ "summary": "List AppFramework apps in your org.",
834
+ "enableJsonFlag": true,
835
+ "isESM": true,
836
+ "relativePath": [
837
+ "lib",
838
+ "commands",
839
+ "orchestrator",
840
+ "list",
841
+ "app.js"
842
+ ],
843
+ "aliasPermutations": [],
844
+ "permutations": [
845
+ "orchestrator:list:app",
846
+ "list:orchestrator:app",
847
+ "list:app:orchestrator",
848
+ "orchestrator:app:list",
849
+ "app:orchestrator:list",
850
+ "app:list:orchestrator"
851
+ ]
852
+ },
853
+ "orchestrator:list:template": {
854
+ "aliases": [
855
+ "orchestrator template list"
856
+ ],
857
+ "args": {},
858
+ "description": "Lists AppFramework templates available in the target org. Shows template name, label, ID and other information.",
859
+ "examples": [
860
+ "List all AppFramework templates in your default org:\n<%= config.bin %> <%= command.id %>",
861
+ "List templates with a specific API version:\n<%= config.bin %> <%= command.id %> --api-version=64.0"
862
+ ],
863
+ "flags": {
864
+ "json": {
865
+ "description": "Format output as json.",
866
+ "helpGroup": "GLOBAL",
867
+ "name": "json",
868
+ "allowNo": false,
869
+ "type": "boolean"
870
+ },
871
+ "flags-dir": {
872
+ "helpGroup": "GLOBAL",
873
+ "name": "flags-dir",
874
+ "summary": "Import flag values from a directory.",
875
+ "hasDynamicHelp": false,
876
+ "multiple": false,
877
+ "type": "option"
878
+ },
879
+ "target-org": {
880
+ "char": "o",
881
+ "description": "The target org to connect to for listing templates.",
882
+ "name": "target-org",
883
+ "noCacheDefault": true,
884
+ "required": true,
885
+ "summary": "Login username or alias for the target org",
886
+ "hasDynamicHelp": true,
887
+ "multiple": false,
888
+ "type": "option"
889
+ },
890
+ "api-version": {
891
+ "description": "Override the api version used for api requests to the app framework.",
892
+ "name": "api-version",
893
+ "summary": "Override the api version used for api requests",
894
+ "hasDynamicHelp": false,
895
+ "multiple": false,
896
+ "type": "option"
897
+ }
898
+ },
899
+ "hasDynamicHelp": true,
900
+ "hiddenAliases": [],
901
+ "id": "orchestrator:list:template",
902
+ "pluginAlias": "@salesforce/plugin-orchestrator",
903
+ "pluginName": "@salesforce/plugin-orchestrator",
904
+ "pluginType": "core",
905
+ "state": "preview",
906
+ "strict": true,
907
+ "summary": "List all available AppFramework templates in the target org.",
908
+ "enableJsonFlag": true,
909
+ "isESM": true,
910
+ "relativePath": [
911
+ "lib",
912
+ "commands",
913
+ "orchestrator",
914
+ "list",
915
+ "template.js"
916
+ ],
917
+ "aliasPermutations": [
918
+ "orchestrator template list"
919
+ ],
920
+ "permutations": [
921
+ "orchestrator:list:template",
922
+ "list:orchestrator:template",
923
+ "list:template:orchestrator",
924
+ "orchestrator:template:list",
925
+ "template:orchestrator:list",
926
+ "template:list:orchestrator"
927
+ ]
928
+ },
929
+ "orchestrator:template:create": {
930
+ "aliases": [],
931
+ "args": {},
932
+ "description": "Creates a new empty template that can be customized. Templates allow you to define reusable configurations for AppFramework applications.",
933
+ "examples": [
934
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"my_template\"",
935
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"sales_template\" --type app --label \"My Custom Template\"",
936
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"dashboard_template\" --type dashboard --subtype \"analytics\"",
937
+ "<%= config.bin %> <%= command.id %> --target-org myOrg --name \"analytics_template\" --type app --subtype \"tableau\" --label \"Sales Template\" --description \"Template for sales analytics apps\""
938
+ ],
939
+ "flags": {
940
+ "json": {
941
+ "description": "Format output as json.",
942
+ "helpGroup": "GLOBAL",
943
+ "name": "json",
944
+ "allowNo": false,
945
+ "type": "boolean"
946
+ },
947
+ "flags-dir": {
948
+ "helpGroup": "GLOBAL",
949
+ "name": "flags-dir",
950
+ "summary": "Import flag values from a directory.",
951
+ "hasDynamicHelp": false,
952
+ "multiple": false,
953
+ "type": "option"
954
+ },
955
+ "target-org": {
956
+ "char": "o",
957
+ "description": "The target org to connect to for creating the template.",
958
+ "name": "target-org",
959
+ "noCacheDefault": true,
960
+ "required": true,
961
+ "summary": "Login username or alias for the target org",
962
+ "hasDynamicHelp": true,
963
+ "multiple": false,
964
+ "type": "option"
965
+ },
966
+ "api-version": {
967
+ "description": "Override the api version used for api requests to the app framework.",
968
+ "name": "api-version",
969
+ "summary": "Override the api version used for api requests",
970
+ "hasDynamicHelp": false,
971
+ "multiple": false,
972
+ "type": "option"
973
+ },
974
+ "name": {
975
+ "char": "n",
976
+ "description": "A unique identifier for the template. Must be unique within your org.",
977
+ "name": "name",
978
+ "required": true,
979
+ "summary": "Name for the new template (required)",
980
+ "hasDynamicHelp": false,
981
+ "multiple": false,
982
+ "type": "option"
983
+ },
984
+ "type": {
985
+ "char": "t",
986
+ "description": "Specifies the type of template to create. Valid options are: app, component, dashboard, or lens. Defaults to 'app' if not specified.",
987
+ "name": "type",
988
+ "summary": "Type of template to create",
989
+ "default": "app",
990
+ "hasDynamicHelp": false,
991
+ "multiple": false,
992
+ "options": [
993
+ "app",
994
+ "component",
995
+ "dashboard",
996
+ "lens"
997
+ ],
998
+ "type": "option"
999
+ },
1000
+ "subtype": {
1001
+ "char": "s",
1002
+ "description": "An optional subtype categorization for the template (e.g., 'tableau' for app templates).",
1003
+ "name": "subtype",
1004
+ "summary": "Subtype for the template",
1005
+ "hasDynamicHelp": false,
1006
+ "multiple": false,
1007
+ "type": "option"
1008
+ },
1009
+ "label": {
1010
+ "char": "l",
1011
+ "description": "A human-readable label for the template. This is displayed in the Analytics Studio UI.",
1012
+ "name": "label",
1013
+ "summary": "Label for the new template",
1014
+ "hasDynamicHelp": false,
1015
+ "multiple": false,
1016
+ "type": "option"
1017
+ },
1018
+ "description": {
1019
+ "char": "d",
1020
+ "description": "A description of what the template does. This is displayed in the Analytics Studio UI.",
1021
+ "name": "description",
1022
+ "summary": "Description of the new template",
1023
+ "hasDynamicHelp": false,
1024
+ "multiple": false,
1025
+ "type": "option"
1026
+ }
1027
+ },
1028
+ "hasDynamicHelp": true,
1029
+ "hiddenAliases": [],
1030
+ "id": "orchestrator:template:create",
1031
+ "pluginAlias": "@salesforce/plugin-orchestrator",
1032
+ "pluginName": "@salesforce/plugin-orchestrator",
1033
+ "pluginType": "core",
1034
+ "state": "preview",
1035
+ "strict": true,
1036
+ "summary": "Create a new AppFramework template.",
1037
+ "enableJsonFlag": true,
1038
+ "isESM": true,
1039
+ "relativePath": [
1040
+ "lib",
1041
+ "commands",
1042
+ "orchestrator",
1043
+ "template",
1044
+ "create.js"
1045
+ ],
1046
+ "aliasPermutations": [],
1047
+ "permutations": [
1048
+ "orchestrator:template:create",
1049
+ "template:orchestrator:create",
1050
+ "template:create:orchestrator",
1051
+ "orchestrator:create:template",
1052
+ "create:orchestrator:template",
1053
+ "create:template:orchestrator"
1054
+ ]
1055
+ },
1056
+ "orchestrator:template:delete": {
1057
+ "aliases": [],
1058
+ "args": {},
1059
+ "description": "Deletes an existing template. By default, apps created from this template will remain but will no longer be linked to the template. Use --force-delete to delete both the template and all apps created from it. Use --decouple to keep the apps but remove their link to the template.",
1060
+ "examples": [
1061
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ",
1062
+ "<%= config.bin %> <%= command.id %> --template-name \"My Template\"",
1063
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --force-delete",
1064
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --no-prompt"
1065
+ ],
1066
+ "flags": {
1067
+ "json": {
1068
+ "description": "Format output as json.",
1069
+ "helpGroup": "GLOBAL",
1070
+ "name": "json",
1071
+ "allowNo": false,
1072
+ "type": "boolean"
1073
+ },
1074
+ "flags-dir": {
1075
+ "helpGroup": "GLOBAL",
1076
+ "name": "flags-dir",
1077
+ "summary": "Import flag values from a directory.",
1078
+ "hasDynamicHelp": false,
1079
+ "multiple": false,
1080
+ "type": "option"
1081
+ },
1082
+ "target-org": {
1083
+ "char": "o",
1084
+ "description": "The target org to connect to for deleting the template.",
1085
+ "name": "target-org",
1086
+ "noCacheDefault": true,
1087
+ "required": true,
1088
+ "summary": "Login username or alias for the target org",
1089
+ "hasDynamicHelp": true,
1090
+ "multiple": false,
1091
+ "type": "option"
1092
+ },
1093
+ "api-version": {
1094
+ "description": "Override the api version used for api requests to the app framework.",
1095
+ "name": "api-version",
1096
+ "summary": "Override the api version used for api requests",
1097
+ "hasDynamicHelp": false,
1098
+ "multiple": false,
1099
+ "type": "option"
1100
+ },
1101
+ "template-id": {
1102
+ "char": "i",
1103
+ "description": "The unique identifier of the template to delete.",
1104
+ "exclusive": [
1105
+ "template-name"
1106
+ ],
1107
+ "name": "template-id",
1108
+ "summary": "ID of the template to delete",
1109
+ "hasDynamicHelp": false,
1110
+ "multiple": false,
1111
+ "type": "option"
1112
+ },
1113
+ "template-name": {
1114
+ "char": "n",
1115
+ "description": "The name of the template to delete. Use this if you don't know the template ID.",
1116
+ "exclusive": [
1117
+ "template-id"
1118
+ ],
1119
+ "name": "template-name",
1120
+ "summary": "Name of the template to delete",
1121
+ "hasDynamicHelp": false,
1122
+ "multiple": false,
1123
+ "type": "option"
1124
+ },
1125
+ "no-prompt": {
1126
+ "char": "p",
1127
+ "description": "Skip the confirmation prompt before deleting the template.",
1128
+ "name": "no-prompt",
1129
+ "summary": "Do not prompt for confirmation",
1130
+ "allowNo": false,
1131
+ "type": "boolean"
1132
+ }
1133
+ },
1134
+ "hasDynamicHelp": true,
1135
+ "hiddenAliases": [],
1136
+ "id": "orchestrator:template:delete",
1137
+ "pluginAlias": "@salesforce/plugin-orchestrator",
1138
+ "pluginName": "@salesforce/plugin-orchestrator",
1139
+ "pluginType": "core",
1140
+ "state": "preview",
1141
+ "strict": true,
1142
+ "summary": "Delete an AppFramework template.",
1143
+ "enableJsonFlag": true,
1144
+ "isESM": true,
1145
+ "relativePath": [
1146
+ "lib",
1147
+ "commands",
1148
+ "orchestrator",
1149
+ "template",
1150
+ "delete.js"
1151
+ ],
1152
+ "aliasPermutations": [],
1153
+ "permutations": [
1154
+ "orchestrator:template:delete",
1155
+ "template:orchestrator:delete",
1156
+ "template:delete:orchestrator",
1157
+ "orchestrator:delete:template",
1158
+ "delete:orchestrator:template",
1159
+ "delete:template:orchestrator"
1160
+ ]
1161
+ },
1162
+ "orchestrator:template:display": {
1163
+ "aliases": [],
1164
+ "args": {},
1165
+ "description": "Shows detailed information about a specific AppFramework template including its name, label, ID, type, and other properties.",
1166
+ "examples": [
1167
+ "Display a template using its ID:\n<%= config.bin %> <%= command.id %> --template-id 01RM0000000HwBGMA0",
1168
+ "Display a template using its name:\n<%= config.bin %> <%= command.id %> --template-name MyTemplate"
1169
+ ],
1170
+ "flags": {
1171
+ "json": {
1172
+ "description": "Format output as json.",
1173
+ "helpGroup": "GLOBAL",
1174
+ "name": "json",
1175
+ "allowNo": false,
1176
+ "type": "boolean"
1177
+ },
1178
+ "flags-dir": {
1179
+ "helpGroup": "GLOBAL",
1180
+ "name": "flags-dir",
1181
+ "summary": "Import flag values from a directory.",
1182
+ "hasDynamicHelp": false,
1183
+ "multiple": false,
1184
+ "type": "option"
1185
+ },
1186
+ "target-org": {
1187
+ "char": "o",
1188
+ "description": "The target org to connect to for displaying the template.",
1189
+ "name": "target-org",
1190
+ "noCacheDefault": true,
1191
+ "required": true,
1192
+ "summary": "Login username or alias for the target org",
1193
+ "hasDynamicHelp": true,
1194
+ "multiple": false,
1195
+ "type": "option"
1196
+ },
1197
+ "api-version": {
1198
+ "description": "Override the api version used for api requests to the app framework.",
1199
+ "name": "api-version",
1200
+ "summary": "Override the api version used for api requests",
1201
+ "hasDynamicHelp": false,
1202
+ "multiple": false,
1203
+ "type": "option"
1204
+ },
1205
+ "template-id": {
1206
+ "char": "i",
1207
+ "description": "Specify the unique identifier of the template you want to display. Use this flag when you know the template's ID.",
1208
+ "exclusive": [
1209
+ "template-name"
1210
+ ],
1211
+ "name": "template-id",
1212
+ "summary": "The ID of the template to display.",
1213
+ "hasDynamicHelp": false,
1214
+ "multiple": false,
1215
+ "type": "option"
1216
+ },
1217
+ "template-name": {
1218
+ "char": "n",
1219
+ "description": "Specify the name of the template you want to display. Use this flag when you know the template's name but not its ID.",
1220
+ "exclusive": [
1221
+ "template-id"
1222
+ ],
1223
+ "name": "template-name",
1224
+ "summary": "The name of the template to display.",
1225
+ "hasDynamicHelp": false,
1226
+ "multiple": false,
1227
+ "type": "option"
1228
+ }
1229
+ },
1230
+ "hasDynamicHelp": true,
1231
+ "hiddenAliases": [],
1232
+ "id": "orchestrator:template:display",
1233
+ "pluginAlias": "@salesforce/plugin-orchestrator",
1234
+ "pluginName": "@salesforce/plugin-orchestrator",
1235
+ "pluginType": "core",
1236
+ "state": "preview",
1237
+ "strict": true,
1238
+ "summary": "Display details of an AppFramework template.",
1239
+ "enableJsonFlag": true,
1240
+ "isESM": true,
1241
+ "relativePath": [
1242
+ "lib",
1243
+ "commands",
1244
+ "orchestrator",
1245
+ "template",
1246
+ "display.js"
1247
+ ],
1248
+ "aliasPermutations": [],
1249
+ "permutations": [
1250
+ "orchestrator:template:display",
1251
+ "template:orchestrator:display",
1252
+ "template:display:orchestrator",
1253
+ "orchestrator:display:template",
1254
+ "display:orchestrator:template",
1255
+ "display:template:orchestrator"
1256
+ ]
1257
+ },
1258
+ "orchestrator:template:list": {
1259
+ "aliases": [],
1260
+ "args": {},
1261
+ "description": "Lists AppFramework templates available in the target org. Shows template name, label, ID and other information.",
1262
+ "examples": [
1263
+ "List all AppFramework templates in your default org:\n<%= config.bin %> <%= command.id %>",
1264
+ "List templates with a specific API version:\n<%= config.bin %> <%= command.id %> --api-version=64.0"
1265
+ ],
1266
+ "flags": {
1267
+ "json": {
1268
+ "description": "Format output as json.",
1269
+ "helpGroup": "GLOBAL",
1270
+ "name": "json",
1271
+ "allowNo": false,
1272
+ "type": "boolean"
1273
+ },
1274
+ "flags-dir": {
1275
+ "helpGroup": "GLOBAL",
1276
+ "name": "flags-dir",
1277
+ "summary": "Import flag values from a directory.",
1278
+ "hasDynamicHelp": false,
1279
+ "multiple": false,
1280
+ "type": "option"
1281
+ },
1282
+ "target-org": {
1283
+ "char": "o",
1284
+ "description": "The target org to connect to for listing templates.",
1285
+ "name": "target-org",
1286
+ "noCacheDefault": true,
1287
+ "required": true,
1288
+ "summary": "Login username or alias for the target org",
1289
+ "hasDynamicHelp": true,
1290
+ "multiple": false,
1291
+ "type": "option"
1292
+ },
1293
+ "api-version": {
1294
+ "description": "Override the api version used for api requests to the app framework.",
1295
+ "name": "api-version",
1296
+ "summary": "Override the api version used for api requests",
1297
+ "hasDynamicHelp": false,
1298
+ "multiple": false,
1299
+ "type": "option"
1300
+ }
1301
+ },
1302
+ "hasDynamicHelp": true,
1303
+ "hiddenAliases": [],
1304
+ "id": "orchestrator:template:list",
1305
+ "pluginAlias": "@salesforce/plugin-orchestrator",
1306
+ "pluginName": "@salesforce/plugin-orchestrator",
1307
+ "pluginType": "core",
1308
+ "state": "preview",
1309
+ "strict": true,
1310
+ "summary": "List all available AppFramework templates in the target org.",
1311
+ "enableJsonFlag": true,
1312
+ "isESM": true,
1313
+ "relativePath": [
1314
+ "lib",
1315
+ "commands",
1316
+ "orchestrator",
1317
+ "template",
1318
+ "list.js"
1319
+ ],
1320
+ "aliasPermutations": [],
1321
+ "permutations": [
1322
+ "orchestrator:template:list",
1323
+ "template:orchestrator:list",
1324
+ "template:list:orchestrator",
1325
+ "orchestrator:list:template",
1326
+ "list:orchestrator:template",
1327
+ "list:template:orchestrator"
1328
+ ]
1329
+ },
1330
+ "orchestrator:template:update": {
1331
+ "aliases": [],
1332
+ "args": {},
1333
+ "description": "Updates an existing template. This allows you to refresh a template after making changes to its source app.",
1334
+ "examples": [
1335
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ",
1336
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --label \"New Display Label\"",
1337
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --description \"Updated template description\"",
1338
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --label \"New Label\" --description \"New description\" --asset-version 3"
1339
+ ],
1340
+ "flags": {
1341
+ "json": {
1342
+ "description": "Format output as json.",
1343
+ "helpGroup": "GLOBAL",
1344
+ "name": "json",
1345
+ "allowNo": false,
1346
+ "type": "boolean"
1347
+ },
1348
+ "flags-dir": {
1349
+ "helpGroup": "GLOBAL",
1350
+ "name": "flags-dir",
1351
+ "summary": "Import flag values from a directory.",
1352
+ "hasDynamicHelp": false,
1353
+ "multiple": false,
1354
+ "type": "option"
1355
+ },
1356
+ "target-org": {
1357
+ "char": "o",
1358
+ "description": "The target org to connect to for updating the template.",
1359
+ "name": "target-org",
1360
+ "noCacheDefault": true,
1361
+ "required": true,
1362
+ "summary": "Login username or alias for the target org",
1363
+ "hasDynamicHelp": true,
1364
+ "multiple": false,
1365
+ "type": "option"
1366
+ },
1367
+ "api-version": {
1368
+ "description": "Override the api version used for api requests to the app framework.",
1369
+ "name": "api-version",
1370
+ "summary": "Override the api version used for api requests",
1371
+ "hasDynamicHelp": false,
1372
+ "multiple": false,
1373
+ "type": "option"
1374
+ },
1375
+ "template-id": {
1376
+ "char": "i",
1377
+ "description": "The unique identifier of the template to update.",
1378
+ "exclusive": [
1379
+ "template-name"
1380
+ ],
1381
+ "name": "template-id",
1382
+ "summary": "ID of the template to update",
1383
+ "hasDynamicHelp": false,
1384
+ "multiple": false,
1385
+ "type": "option"
1386
+ },
1387
+ "template-name": {
1388
+ "char": "n",
1389
+ "description": "The name of the template to update. Use this if you don't know the template ID.",
1390
+ "exclusive": [
1391
+ "template-id"
1392
+ ],
1393
+ "name": "template-name",
1394
+ "summary": "Name of the template to update",
1395
+ "hasDynamicHelp": false,
1396
+ "multiple": false,
1397
+ "type": "option"
1398
+ },
1399
+ "label": {
1400
+ "char": "l",
1401
+ "description": "A new display label for the template. This is the name that will be shown to users in the UI. Note that this only changes the display label, not the template's unique name which cannot be changed after creation.",
1402
+ "name": "label",
1403
+ "summary": "New label for the template",
1404
+ "hasDynamicHelp": false,
1405
+ "multiple": false,
1406
+ "type": "option"
1407
+ },
1408
+ "description": {
1409
+ "char": "d",
1410
+ "description": "A new description for the template. This provides additional information about the template's purpose and contents.",
1411
+ "name": "description",
1412
+ "summary": "New description for the template",
1413
+ "hasDynamicHelp": false,
1414
+ "multiple": false,
1415
+ "type": "option"
1416
+ }
1417
+ },
1418
+ "hasDynamicHelp": true,
1419
+ "hiddenAliases": [],
1420
+ "id": "orchestrator:template:update",
1421
+ "pluginAlias": "@salesforce/plugin-orchestrator",
1422
+ "pluginName": "@salesforce/plugin-orchestrator",
1423
+ "pluginType": "core",
1424
+ "state": "preview",
1425
+ "strict": true,
1426
+ "summary": "Update an existing AppFramework template.",
1427
+ "enableJsonFlag": true,
1428
+ "isESM": true,
1429
+ "relativePath": [
1430
+ "lib",
1431
+ "commands",
1432
+ "orchestrator",
1433
+ "template",
1434
+ "update.js"
1435
+ ],
1436
+ "aliasPermutations": [],
1437
+ "permutations": [
1438
+ "orchestrator:template:update",
1439
+ "template:orchestrator:update",
1440
+ "template:update:orchestrator",
1441
+ "orchestrator:update:template",
1442
+ "update:orchestrator:template",
1443
+ "update:template:orchestrator"
1444
+ ]
1445
+ },
1446
+ "orchestrator:update:app": {
1447
+ "aliases": [],
1448
+ "args": {},
1449
+ "description": "Updates an existing AppFramework app with a new template. You must specify either the app-id or app-name flag to identify the app to update, and either the template-id or template-name flag to identify the template to use for the update.",
1450
+ "examples": [
1451
+ "Update an app by ID with a template ID:\n<%= config.bin %> <%= command.id %> --app-id 00Dxx0000000001 --template-id 00Dxx0000000002",
1452
+ "Update an app by name with a template name:\n<%= config.bin %> <%= command.id %> --app-name \"My App\" --template-name \"My Template\"",
1453
+ "Update an app with a new label and description:\n<%= config.bin %> <%= command.id %> --app-id 00Dxx0000000001 --template-id 00Dxx0000000002 --label \"New Label\" --description \"New description\""
1454
+ ],
1455
+ "flags": {
1456
+ "json": {
1457
+ "description": "Format output as json.",
1458
+ "helpGroup": "GLOBAL",
1459
+ "name": "json",
1460
+ "allowNo": false,
1461
+ "type": "boolean"
1462
+ },
1463
+ "flags-dir": {
1464
+ "helpGroup": "GLOBAL",
1465
+ "name": "flags-dir",
1466
+ "summary": "Import flag values from a directory.",
1467
+ "hasDynamicHelp": false,
1468
+ "multiple": false,
1469
+ "type": "option"
1470
+ },
1471
+ "target-org": {
1472
+ "char": "o",
1473
+ "description": "Overrides your default org.",
1474
+ "name": "target-org",
1475
+ "noCacheDefault": true,
1476
+ "required": true,
1477
+ "summary": "Login username or alias for the target org.",
1478
+ "hasDynamicHelp": true,
1479
+ "multiple": false,
1480
+ "type": "option"
1481
+ },
1482
+ "api-version": {
1483
+ "description": "Override the api version used for api requests made by this command.",
1484
+ "name": "api-version",
1485
+ "summary": "Override the api version used for api requests made by this command.",
1486
+ "hasDynamicHelp": false,
1487
+ "multiple": false,
1488
+ "type": "option"
1489
+ },
1490
+ "app-id": {
1491
+ "char": "i",
1492
+ "description": "Specify the ID of the app to update. Either this or app-name is required.",
1493
+ "exclusive": [
1494
+ "app-name"
1495
+ ],
1496
+ "name": "app-id",
1497
+ "summary": "ID of the app to update.",
1498
+ "hasDynamicHelp": false,
1499
+ "multiple": false,
1500
+ "type": "option"
1501
+ },
1502
+ "app-name": {
1503
+ "char": "n",
1504
+ "description": "Specify the name of the app to update. Either this or app-id is required.",
1505
+ "exclusive": [
1506
+ "app-id"
1507
+ ],
1508
+ "name": "app-name",
1509
+ "summary": "Name of the app to update.",
1510
+ "hasDynamicHelp": false,
1511
+ "multiple": false,
1512
+ "type": "option"
1513
+ },
1514
+ "template-id": {
1515
+ "char": "t",
1516
+ "description": "Specify the ID of the template to use for the update. Either this or template-name is required.",
1517
+ "exclusive": [
1518
+ "template-name"
1519
+ ],
1520
+ "name": "template-id",
1521
+ "summary": "ID of the template to use for the update.",
1522
+ "hasDynamicHelp": false,
1523
+ "multiple": false,
1524
+ "type": "option"
1525
+ },
1526
+ "template-name": {
1527
+ "char": "m",
1528
+ "description": "Specify the name of the template to use for the update. Either this or template-id is required.",
1529
+ "exclusive": [
1530
+ "template-id"
1531
+ ],
1532
+ "name": "template-name",
1533
+ "summary": "Name of the template to use for the update.",
1534
+ "hasDynamicHelp": false,
1535
+ "multiple": false,
1536
+ "type": "option"
1537
+ },
1538
+ "label": {
1539
+ "char": "l",
1540
+ "description": "Optionally specify a new label for the app.",
1541
+ "name": "label",
1542
+ "summary": "New label for the app.",
1543
+ "hasDynamicHelp": false,
1544
+ "multiple": false,
1545
+ "type": "option"
1546
+ },
1547
+ "description": {
1548
+ "char": "d",
1549
+ "description": "Optionally specify a new description for the app.",
1550
+ "name": "description",
1551
+ "summary": "New description for the app.",
1552
+ "hasDynamicHelp": false,
1553
+ "multiple": false,
1554
+ "type": "option"
1555
+ },
1556
+ "runtime-method": {
1557
+ "char": "r",
1558
+ "description": "Optionally specify a runtime method (sync or async) for the app.",
1559
+ "name": "runtime-method",
1560
+ "summary": "Runtime method for the app.",
1561
+ "hasDynamicHelp": false,
1562
+ "multiple": false,
1563
+ "options": [
1564
+ "sync",
1565
+ "async"
1566
+ ],
1567
+ "type": "option"
1568
+ },
1569
+ "log-level": {
1570
+ "char": "g",
1571
+ "description": "Optionally specify a log level (debug, info, warn, error) for the app.",
1572
+ "name": "log-level",
1573
+ "summary": "Log level for the app.",
1574
+ "hasDynamicHelp": false,
1575
+ "multiple": false,
1576
+ "options": [
1577
+ "debug",
1578
+ "info",
1579
+ "warn",
1580
+ "error"
1581
+ ],
1582
+ "type": "option"
1583
+ }
1584
+ },
1585
+ "hasDynamicHelp": true,
1586
+ "hiddenAliases": [],
1587
+ "id": "orchestrator:update:app",
1588
+ "pluginAlias": "@salesforce/plugin-orchestrator",
1589
+ "pluginName": "@salesforce/plugin-orchestrator",
1590
+ "pluginType": "core",
1591
+ "state": "preview",
1592
+ "strict": true,
1593
+ "summary": "Update an AppFramework app with a new template.",
1594
+ "enableJsonFlag": true,
1595
+ "isESM": true,
1596
+ "relativePath": [
1597
+ "lib",
1598
+ "commands",
1599
+ "orchestrator",
1600
+ "update",
1601
+ "app.js"
1602
+ ],
1603
+ "aliasPermutations": [],
1604
+ "permutations": [
1605
+ "orchestrator:update:app",
1606
+ "update:orchestrator:app",
1607
+ "update:app:orchestrator",
1608
+ "orchestrator:app:update",
1609
+ "app:orchestrator:update",
1610
+ "app:update:orchestrator"
1611
+ ]
1612
+ },
1613
+ "orchestrator:update:template": {
1614
+ "aliases": [],
1615
+ "args": {},
1616
+ "description": "Updates an existing template. This allows you to refresh a template after making changes to its source app.",
1617
+ "examples": [
1618
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ",
1619
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --label \"New Display Label\"",
1620
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --description \"Updated template description\"",
1621
+ "<%= config.bin %> <%= command.id %> --template-id 0XtB000000001aXYAQ --label \"New Label\" --description \"New description\" --asset-version 3"
1622
+ ],
1623
+ "flags": {
1624
+ "json": {
1625
+ "description": "Format output as json.",
1626
+ "helpGroup": "GLOBAL",
1627
+ "name": "json",
1628
+ "allowNo": false,
1629
+ "type": "boolean"
1630
+ },
1631
+ "flags-dir": {
1632
+ "helpGroup": "GLOBAL",
1633
+ "name": "flags-dir",
1634
+ "summary": "Import flag values from a directory.",
1635
+ "hasDynamicHelp": false,
1636
+ "multiple": false,
1637
+ "type": "option"
1638
+ },
1639
+ "target-org": {
1640
+ "char": "o",
1641
+ "description": "The target org to connect to for updating the template.",
1642
+ "name": "target-org",
1643
+ "noCacheDefault": true,
1644
+ "required": true,
1645
+ "summary": "Login username or alias for the target org",
1646
+ "hasDynamicHelp": true,
1647
+ "multiple": false,
1648
+ "type": "option"
1649
+ },
1650
+ "api-version": {
1651
+ "description": "Override the api version used for api requests to the app framework.",
1652
+ "name": "api-version",
1653
+ "summary": "Override the api version used for api requests",
1654
+ "hasDynamicHelp": false,
1655
+ "multiple": false,
1656
+ "type": "option"
1657
+ },
1658
+ "template-id": {
1659
+ "char": "i",
1660
+ "description": "The unique identifier of the template to update.",
1661
+ "exclusive": [
1662
+ "template-name"
1663
+ ],
1664
+ "name": "template-id",
1665
+ "summary": "ID of the template to update",
1666
+ "hasDynamicHelp": false,
1667
+ "multiple": false,
1668
+ "type": "option"
1669
+ },
1670
+ "template-name": {
1671
+ "char": "n",
1672
+ "description": "The name of the template to update. Use this if you don't know the template ID.",
1673
+ "exclusive": [
1674
+ "template-id"
1675
+ ],
1676
+ "name": "template-name",
1677
+ "summary": "Name of the template to update",
1678
+ "hasDynamicHelp": false,
1679
+ "multiple": false,
1680
+ "type": "option"
1681
+ },
1682
+ "label": {
1683
+ "char": "l",
1684
+ "description": "A new display label for the template. This is the name that will be shown to users in the UI. Note that this only changes the display label, not the template's unique name which cannot be changed after creation.",
1685
+ "name": "label",
1686
+ "summary": "New label for the template",
1687
+ "hasDynamicHelp": false,
1688
+ "multiple": false,
1689
+ "type": "option"
1690
+ },
1691
+ "description": {
1692
+ "char": "d",
1693
+ "description": "A new description for the template. This provides additional information about the template's purpose and contents.",
1694
+ "name": "description",
1695
+ "summary": "New description for the template",
1696
+ "hasDynamicHelp": false,
1697
+ "multiple": false,
1698
+ "type": "option"
1699
+ }
1700
+ },
1701
+ "hasDynamicHelp": true,
1702
+ "hiddenAliases": [],
1703
+ "id": "orchestrator:update:template",
1704
+ "pluginAlias": "@salesforce/plugin-orchestrator",
1705
+ "pluginName": "@salesforce/plugin-orchestrator",
1706
+ "pluginType": "core",
1707
+ "state": "preview",
1708
+ "strict": true,
1709
+ "summary": "Update an existing AppFramework template.",
1710
+ "enableJsonFlag": true,
1711
+ "isESM": true,
1712
+ "relativePath": [
1713
+ "lib",
1714
+ "commands",
1715
+ "orchestrator",
1716
+ "update",
1717
+ "template.js"
1718
+ ],
1719
+ "aliasPermutations": [],
1720
+ "permutations": [
1721
+ "orchestrator:update:template",
1722
+ "update:orchestrator:template",
1723
+ "update:template:orchestrator",
1724
+ "orchestrator:template:update",
1725
+ "template:orchestrator:update",
1726
+ "template:update:orchestrator"
1727
+ ]
1728
+ }
1729
+ },
1730
+ "version": "1.0.0"
1731
+ }