@salesforce/plugin-org 3.0.4 → 3.0.6

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.
@@ -1482,6 +1482,114 @@
1482
1482
  "scratch:delete:org"
1483
1483
  ]
1484
1484
  },
1485
+ "org:disable:tracking": {
1486
+ "aliases": [],
1487
+ "args": {},
1488
+ "description": "This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that no source tracking operations are executed when working with this org.",
1489
+ "examples": [
1490
+ "Disable tracking on an org using an alias\n\n- <%= config.bin %> <%= command.id %> -o someAlias\n\nDisable tracking on an org using a username\n\n- <%= config.bin %> <%= command.id %> -o you@example.com\n\nDisable tracking on your default org\n\n- <%= config.bin %> <%= command.id %>"
1491
+ ],
1492
+ "flags": {
1493
+ "json": {
1494
+ "description": "Format output as json.",
1495
+ "helpGroup": "GLOBAL",
1496
+ "name": "json",
1497
+ "allowNo": false,
1498
+ "type": "boolean"
1499
+ },
1500
+ "target-org": {
1501
+ "char": "o",
1502
+ "name": "target-org",
1503
+ "noCacheDefault": true,
1504
+ "required": true,
1505
+ "summary": "Username or alias of the target org.",
1506
+ "hasDynamicHelp": true,
1507
+ "multiple": false,
1508
+ "type": "option"
1509
+ }
1510
+ },
1511
+ "hasDynamicHelp": true,
1512
+ "hiddenAliases": [],
1513
+ "id": "org:disable:tracking",
1514
+ "pluginAlias": "@salesforce/plugin-org",
1515
+ "pluginName": "@salesforce/plugin-org",
1516
+ "pluginType": "core",
1517
+ "strict": true,
1518
+ "summary": "Disable source tracking in local auth file.",
1519
+ "enableJsonFlag": true,
1520
+ "SF_ENV": "SF_ENV",
1521
+ "isESM": true,
1522
+ "relativePath": [
1523
+ "lib",
1524
+ "commands",
1525
+ "org",
1526
+ "disable",
1527
+ "tracking.js"
1528
+ ],
1529
+ "aliasPermutations": [],
1530
+ "permutations": [
1531
+ "org:disable:tracking",
1532
+ "disable:org:tracking",
1533
+ "disable:tracking:org",
1534
+ "org:tracking:disable",
1535
+ "tracking:org:disable",
1536
+ "tracking:disable:org"
1537
+ ]
1538
+ },
1539
+ "org:enable:tracking": {
1540
+ "aliases": [],
1541
+ "args": {},
1542
+ "description": "This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that source tracking operations are executed when working with this org.\n\nThis command will throw an error if the org does not support tracking.",
1543
+ "examples": [
1544
+ "Enable tracking on an org using an alias\n\n- <%= config.bin %> <%= command.id %> -o someAlias\n\nEnable tracking on an org using a username\n\n- <%= config.bin %> <%= command.id %> -o you@example.com\n\nEnable tracking on your default org\n\n- <%= config.bin %> <%= command.id %>"
1545
+ ],
1546
+ "flags": {
1547
+ "json": {
1548
+ "description": "Format output as json.",
1549
+ "helpGroup": "GLOBAL",
1550
+ "name": "json",
1551
+ "allowNo": false,
1552
+ "type": "boolean"
1553
+ },
1554
+ "target-org": {
1555
+ "char": "o",
1556
+ "name": "target-org",
1557
+ "noCacheDefault": true,
1558
+ "required": true,
1559
+ "summary": "Username or alias of the target org.",
1560
+ "hasDynamicHelp": true,
1561
+ "multiple": false,
1562
+ "type": "option"
1563
+ }
1564
+ },
1565
+ "hasDynamicHelp": true,
1566
+ "hiddenAliases": [],
1567
+ "id": "org:enable:tracking",
1568
+ "pluginAlias": "@salesforce/plugin-org",
1569
+ "pluginName": "@salesforce/plugin-org",
1570
+ "pluginType": "core",
1571
+ "strict": true,
1572
+ "summary": "Enable source tracking in local auth file.",
1573
+ "enableJsonFlag": true,
1574
+ "SF_ENV": "SF_ENV",
1575
+ "isESM": true,
1576
+ "relativePath": [
1577
+ "lib",
1578
+ "commands",
1579
+ "org",
1580
+ "enable",
1581
+ "tracking.js"
1582
+ ],
1583
+ "aliasPermutations": [],
1584
+ "permutations": [
1585
+ "org:enable:tracking",
1586
+ "enable:org:tracking",
1587
+ "enable:tracking:org",
1588
+ "org:tracking:enable",
1589
+ "tracking:org:enable",
1590
+ "tracking:enable:org"
1591
+ ]
1592
+ },
1485
1593
  "org:list:metadata-types": {
1486
1594
  "aliases": [
1487
1595
  "force:mdapi:describemetadata"
@@ -1903,5 +2011,5 @@
1903
2011
  ]
1904
2012
  }
1905
2013
  },
1906
- "version": "3.0.4"
2014
+ "version": "3.0.6"
1907
2015
  }
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-org",
3
3
  "description": "Commands to interact with Salesforce orgs",
4
- "version": "3.0.4",
4
+ "version": "3.0.6",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@oclif/core": "^3.10.8",
9
- "@salesforce/core": "^5.3.18",
9
+ "@salesforce/core": "^6.1.3",
10
10
  "@salesforce/kit": "^3.0.15",
11
- "@salesforce/sf-plugins-core": "^4.1.1",
12
- "@salesforce/source-deploy-retrieve": "^9.8.4",
11
+ "@salesforce/sf-plugins-core": "^5.0.1",
12
+ "@salesforce/source-deploy-retrieve": "^10.0.0",
13
13
  "open": "^9.1.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@oclif/plugin-command-snapshot": "^5.0.1",
17
- "@salesforce/cli-plugins-testkit": "^5.0.3",
18
- "@salesforce/dev-scripts": "^6.0.3",
16
+ "@oclif/plugin-command-snapshot": "^5.0.2",
17
+ "@salesforce/cli-plugins-testkit": "^5.0.4",
18
+ "@salesforce/dev-scripts": "^7.1.1",
19
19
  "@salesforce/plugin-command-reference": "^3.0.46",
20
20
  "@salesforce/ts-sinon": "1.4.19",
21
21
  "@types/shelljs": "^0.8.14",
22
- "eslint-plugin-sf-plugin": "^1.16.14",
22
+ "eslint-plugin-sf-plugin": "^1.16.15",
23
23
  "moment": "^2.29.1",
24
24
  "oclif": "^4.0.3",
25
25
  "shelljs": "^0.8.5",
@@ -70,8 +70,15 @@
70
70
  },
71
71
  "delete": {
72
72
  "description": "Delete scratch orgs, sandboxes, org shapes, and org snapshots."
73
+ },
74
+ "enable": {
75
+ "description": "Enable tracking on an org."
76
+ },
77
+ "disable": {
78
+ "description": "Disable tracking on an org"
73
79
  }
74
- }
80
+ },
81
+ "external": true
75
82
  },
76
83
  "force": {
77
84
  "external": true,
@@ -217,7 +224,7 @@
217
224
  "exports": "./lib/index.js",
218
225
  "type": "module",
219
226
  "sfdx": {
220
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.4.crt",
221
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.4.sig"
227
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.6.crt",
228
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.6.sig"
222
229
  }
223
230
  }