sf-raven 1.2.0 → 1.2.2
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/README.md +66 -66
- package/lib/commands/raven/object/display/fields.d.ts +1 -0
- package/lib/commands/raven/object/display/fields.js +82 -20
- package/lib/commands/raven/object/display/fields.js.map +1 -1
- package/lib/commands/raven/object/display/recordtypes.d.ts +1 -0
- package/lib/commands/raven/object/display/recordtypes.js +82 -20
- package/lib/commands/raven/object/display/recordtypes.js.map +1 -1
- package/messages/raven.object.display.fields.md +13 -1
- package/messages/raven.object.display.recordtypes.md +13 -1
- package/oclif.lock +1021 -1280
- package/oclif.manifest.json +25 -5
- package/package.json +6 -5
package/oclif.manifest.json
CHANGED
|
@@ -413,7 +413,9 @@
|
|
|
413
413
|
"description": "FieldDefinition metadata is queried for the given sObject. The field Labels, API names, and Type are displayed.",
|
|
414
414
|
"examples": [
|
|
415
415
|
"<%= config.bin %> <%= command.id %> --target-org dev --sobject Account",
|
|
416
|
-
"<%= config.bin %> <%= command.id %> --target-org dev --sobject My_Custom_Object\\_\\_c"
|
|
416
|
+
"<%= config.bin %> <%= command.id %> --target-org dev --sobject My_Custom_Object\\_\\_c",
|
|
417
|
+
"<%= config.bin %> <%= command.id %> --target-org dev --sobject Account,Contact",
|
|
418
|
+
"<%= config.bin %> <%= command.id %> --target-org dev --sobject Account --csv account-fields.csv"
|
|
417
419
|
],
|
|
418
420
|
"flags": {
|
|
419
421
|
"json": {
|
|
@@ -445,7 +447,15 @@
|
|
|
445
447
|
"char": "s",
|
|
446
448
|
"name": "sobject",
|
|
447
449
|
"required": true,
|
|
448
|
-
"summary": "The API name of the sObject that you want to view fields for.",
|
|
450
|
+
"summary": "The API name of the sObject that you want to view fields for. Use a comma-delimited list to query multiple objects.",
|
|
451
|
+
"hasDynamicHelp": false,
|
|
452
|
+
"multiple": false,
|
|
453
|
+
"type": "option"
|
|
454
|
+
},
|
|
455
|
+
"csv": {
|
|
456
|
+
"char": "c",
|
|
457
|
+
"name": "csv",
|
|
458
|
+
"summary": "Path to write field information as CSV. When supplied, table output is suppressed.",
|
|
449
459
|
"hasDynamicHelp": false,
|
|
450
460
|
"multiple": false,
|
|
451
461
|
"type": "option"
|
|
@@ -476,7 +486,9 @@
|
|
|
476
486
|
"description": "RecordType metadata is queried for the given sObject. The RecordType Name, DeveloperName, and Id are displayed.",
|
|
477
487
|
"examples": [
|
|
478
488
|
"<%= config.bin %> <%= command.id %> --target-org dev --sobject Account",
|
|
479
|
-
"<%= config.bin %> <%= command.id %> --target-org dev --sobject My_Custom_Object\\_\\_c"
|
|
489
|
+
"<%= config.bin %> <%= command.id %> --target-org dev --sobject My_Custom_Object\\_\\_c",
|
|
490
|
+
"<%= config.bin %> <%= command.id %> --target-org dev --sobject Account,Opportunity",
|
|
491
|
+
"<%= config.bin %> <%= command.id %> --target-org dev --sobject Account --csv account-record-types.csv"
|
|
480
492
|
],
|
|
481
493
|
"flags": {
|
|
482
494
|
"json": {
|
|
@@ -508,7 +520,15 @@
|
|
|
508
520
|
"char": "s",
|
|
509
521
|
"name": "sobject",
|
|
510
522
|
"required": true,
|
|
511
|
-
"summary": "The API name of the sObject that you want to view Record Types for.",
|
|
523
|
+
"summary": "The API name of the sObject that you want to view Record Types for. Use a comma-delimited list to query multiple objects.",
|
|
524
|
+
"hasDynamicHelp": false,
|
|
525
|
+
"multiple": false,
|
|
526
|
+
"type": "option"
|
|
527
|
+
},
|
|
528
|
+
"csv": {
|
|
529
|
+
"char": "c",
|
|
530
|
+
"name": "csv",
|
|
531
|
+
"summary": "Path to write Record Type information as CSV. When supplied, table output is suppressed.",
|
|
512
532
|
"hasDynamicHelp": false,
|
|
513
533
|
"multiple": false,
|
|
514
534
|
"type": "option"
|
|
@@ -534,5 +554,5 @@
|
|
|
534
554
|
]
|
|
535
555
|
}
|
|
536
556
|
},
|
|
537
|
-
"version": "1.2.
|
|
557
|
+
"version": "1.2.2"
|
|
538
558
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sf-raven",
|
|
3
3
|
"description": "A custom sf plugin built by @tomcarman",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.2",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@inquirer/select": "^2.4.2",
|
|
7
7
|
"@oclif/core": "^4.0.14",
|
|
8
8
|
"@salesforce/core": "^8.2.3",
|
|
9
9
|
"@salesforce/kit": "^3.1.6",
|
|
10
|
-
"@salesforce/sf-plugins-core": "^11.
|
|
10
|
+
"@salesforce/sf-plugins-core": "^11.3.12",
|
|
11
11
|
"@salesforce/ts-types": "^2.0.10",
|
|
12
12
|
"dayjs": "^1.11.10",
|
|
13
13
|
"jsforce": "^3.3.1",
|
|
@@ -17,15 +17,16 @@
|
|
|
17
17
|
"private": false,
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@oclif/plugin-command-snapshot": "^5.2.3",
|
|
20
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
20
|
+
"@salesforce/cli-plugins-testkit": "^5.3.58",
|
|
21
21
|
"@salesforce/dev-scripts": "^10.2.4",
|
|
22
22
|
"@types/js-yaml": "^4.0.9",
|
|
23
|
+
"@types/node": "^20.19.41",
|
|
23
24
|
"eslint-plugin-sf-plugin": "^1.19.1",
|
|
24
25
|
"husky": "^9.1.1",
|
|
25
|
-
"oclif": "^4.
|
|
26
|
+
"oclif": "^4.23.7",
|
|
26
27
|
"shx": "0.3.4",
|
|
27
28
|
"ts-node": "^10.9.2",
|
|
28
|
-
"typescript": "^5.
|
|
29
|
+
"typescript": "^5.9.3",
|
|
29
30
|
"wireit": "^0.14.5"
|
|
30
31
|
},
|
|
31
32
|
"engines": {
|