sfdx-hardis 5.10.2-beta202412231619.0 → 5.10.2-beta202412292224.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 (39) hide show
  1. package/defaults/mkdocs/docs/stylesheets/extra.css +25 -0
  2. package/defaults/mkdocs/mkdocs.yml +10 -2
  3. package/defaults/mkdocs-project-doc/docs/javascripts/gtag.js +27 -0
  4. package/defaults/mkdocs-project-doc/docs/javascripts/tables.js +6 -0
  5. package/defaults/mkdocs-project-doc/docs/overrides/main.html +4 -0
  6. package/defaults/mkdocs-project-doc/docs/stylesheets/extra.css +33 -0
  7. package/defaults/mkdocs-project-doc/mkdocs.yml +49 -0
  8. package/lib/commands/hardis/doc/flow2markdown.d.ts +1 -0
  9. package/lib/commands/hardis/doc/flow2markdown.js +18 -3
  10. package/lib/commands/hardis/doc/flow2markdown.js.map +1 -1
  11. package/lib/commands/hardis/doc/project2markdown.d.ts +7 -2
  12. package/lib/commands/hardis/doc/project2markdown.js +173 -45
  13. package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
  14. package/lib/commands/hardis/project/generate/flow-git-diff.js +28 -16
  15. package/lib/commands/hardis/project/generate/flow-git-diff.js.map +1 -1
  16. package/lib/common/gitProvider/utilsMarkdown.js +5 -5
  17. package/lib/common/gitProvider/utilsMarkdown.js.map +1 -1
  18. package/lib/common/metadata-utils/index.js +3 -2
  19. package/lib/common/metadata-utils/index.js.map +1 -1
  20. package/lib/common/utils/flowVisualiser/flowParser.d.ts +0 -7
  21. package/lib/common/utils/flowVisualiser/flowParser.js +150 -167
  22. package/lib/common/utils/flowVisualiser/flowParser.js.map +1 -1
  23. package/lib/common/utils/flowVisualiser/nodeFormatUtils.d.ts +14 -0
  24. package/lib/common/utils/flowVisualiser/nodeFormatUtils.js +341 -0
  25. package/lib/common/utils/flowVisualiser/nodeFormatUtils.js.map +1 -0
  26. package/lib/common/utils/flowVisualiser/renderConfig.d.ts +9 -3
  27. package/lib/common/utils/flowVisualiser/renderConfig.js +62 -56
  28. package/lib/common/utils/flowVisualiser/renderConfig.js.map +1 -1
  29. package/lib/common/utils/index.d.ts +1 -0
  30. package/lib/common/utils/index.js +10 -0
  31. package/lib/common/utils/index.js.map +1 -1
  32. package/lib/common/utils/mermaidUtils.d.ts +5 -2
  33. package/lib/common/utils/mermaidUtils.js +278 -92
  34. package/lib/common/utils/mermaidUtils.js.map +1 -1
  35. package/lib/common/utils/projectUtils.js +1 -1
  36. package/lib/common/utils/projectUtils.js.map +1 -1
  37. package/oclif.lock +938 -1263
  38. package/oclif.manifest.json +373 -358
  39. package/package.json +6 -5
@@ -349,6 +349,13 @@
349
349
  "multiple": false,
350
350
  "type": "option"
351
351
  },
352
+ "with-history": {
353
+ "char": "d",
354
+ "description": "Generate a markdown file with the history diff of the Flow",
355
+ "name": "with-history",
356
+ "allowNo": false,
357
+ "type": "boolean"
358
+ },
352
359
  "debug": {
353
360
  "char": "d",
354
361
  "description": "Activate debug mode (more logs)",
@@ -490,7 +497,7 @@
490
497
  "hardis:doc:project2markdown": {
491
498
  "aliases": [],
492
499
  "args": {},
493
- "description": "Generates a markdown documentation from a SFDX project\n\n- Package.xml files\n- Source Packages\n- sfdx-hardis configuration\n- Installed packages\n\nCan work on any sfdx project, no need for it to be a sfdx-hardis flavored one.\n\nGenerates markdown files will be written in **docs** folder (except README.md where a link to doc index is added)\n\nTo generate Flow documentations, this command requires @mermaid-js/mermaid-cli\n\n- Run `npm install @mermaid-js/mermaid-cli --global` if puppeteer works in your environment\n- It can also be run as a docker image\n\nBoth modes will be tried by default, but you can also force one of them by defining environment variable `MERMAID_MODES=docker` or `MERMAID_MODES=cli`\n\n_sfdx-hardis docker image is alpine-based and does not succeed to run mermaid/puppeteer: if you can help, please submit a PR !_\n\n![Screenshot flow doc](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-flow-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc-2.jpg)\n",
500
+ "description": "Generates a markdown documentation from a SFDX project\n\n- Package.xml files\n- Source Packages\n- sfdx-hardis configuration\n- Installed packages\n\nCan work on any sfdx project, no need for it to be a sfdx-hardis flavored one.\n\nGenerates markdown files will be written in **docs** folder (except README.md where a link to doc index is added)\n\nTo generate Flow documentations, this command requires @mermaid-js/mermaid-cli\n\n- Run `npm install @mermaid-js/mermaid-cli --global` if puppeteer works in your environment\n- It can also be run as a docker image\n\nBoth modes will be tried by default, but you can also force one of them by defining environment variable `MERMAID_MODES=docker` or `MERMAID_MODES=cli`\n\n_sfdx-hardis docker image is alpine-based and does not succeed to run mermaid/puppeteer: if you can help, please submit a PR !_\n\n![Screenshot flow doc](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-flow-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc-2.jpg)\n\n## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need python on your computer)\n\n```python\npip install mkdocs-material mdx_truly_sane_lists\nmkdocs serve\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build`\n\n",
494
501
  "examples": [
495
502
  "$ sf hardis:doc:project2markdown"
496
503
  ],
@@ -516,6 +523,13 @@
516
523
  "allowNo": false,
517
524
  "type": "boolean"
518
525
  },
526
+ "with-history": {
527
+ "char": "d",
528
+ "description": "Generate a markdown file with the history diff of the Flow",
529
+ "name": "with-history",
530
+ "allowNo": false,
531
+ "type": "boolean"
532
+ },
519
533
  "debug": {
520
534
  "char": "d",
521
535
  "description": "Activate debug mode (more logs)",
@@ -546,6 +560,7 @@
546
560
  "strict": true,
547
561
  "enableJsonFlag": true,
548
562
  "title": "SFDX Project to Markdown",
563
+ "htmlInstructions": "## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need python on your computer)\n\n```python\npip install mkdocs-material mdx_truly_sane_lists\nmkdocs serve\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build`\n",
549
564
  "requiresProject": true,
550
565
  "isESM": true,
551
566
  "relativePath": [
@@ -4876,12 +4891,15 @@
4876
4891
  "import:data:org:hardis"
4877
4892
  ]
4878
4893
  },
4879
- "hardis:org:files:export": {
4894
+ "hardis:org:diagnose:audittrail": {
4880
4895
  "aliases": [],
4881
4896
  "args": {},
4882
- "description": "Export file attachments from a Salesforce org\n\nSee article below\n\n[![How to mass download notes and attachments files from a Salesforce org](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-mass-download.jpg)](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
4897
+ "description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - suOrgAdminLogin\n - suOrgAdminLogout\n - unfrozeuser\n - useremailchangesent\n- Mobile Administration\n - assigneduserstomobileconfig\n- Reporting Snapshots\n - createdReportJob\n - deletedReportJob\n- Sandboxes\n - DeleteSandbox\n\nBy default, deployment user defined in .sfdx-hardis.yml targetUsername property will be excluded.\n\nYou can define additional users to exclude in .sfdx-hardis.yml **monitoringExcludeUsernames** property.\n\nYou can also add more sections / actions considered as not suspect using property **monitoringAllowedSectionsActions**\n\nExample:\n\n```yaml\nmonitoringExcludeUsernames:\n - deploymentuser@cloudity.com\n - marketingcloud@cloudity.com\n - integration-user@cloudity.com\n\nmonitoringAllowedSectionsActions:\n \"Some section\": [] // Will ignore all actions from such section\n \"Some other section\": [\"actionType1\",\"actionType2\",\"actionType3\"] // Will ignore only those 3 actions from section \"Some other section\". Other actions in the same section will be considered as suspect.\n```\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-suspect-audit-trail/) and can output Grafana, Slack and MsTeams Notifications.\n",
4883
4898
  "examples": [
4884
- "$ sf hardis:org:files:export"
4899
+ "$ sf hardis:org:diagnose:audittrail",
4900
+ "$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
4901
+ "$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
4902
+ "$ sf hardis:org:diagnose:audittrail --lastndays 5"
4885
4903
  ],
4886
4904
  "flags": {
4887
4905
  "json": {
@@ -4899,37 +4917,26 @@
4899
4917
  "multiple": false,
4900
4918
  "type": "option"
4901
4919
  },
4902
- "path": {
4903
- "char": "p",
4904
- "description": "Path to the file export project",
4905
- "name": "path",
4906
- "hasDynamicHelp": false,
4907
- "multiple": false,
4908
- "type": "option"
4909
- },
4910
- "chunksize": {
4911
- "char": "c",
4912
- "description": "Number of records to add in a chunk before it is processed",
4913
- "name": "chunksize",
4914
- "default": 1000,
4920
+ "excludeusers": {
4921
+ "char": "e",
4922
+ "description": "Comma-separated list of usernames to exclude",
4923
+ "name": "excludeusers",
4915
4924
  "hasDynamicHelp": false,
4916
4925
  "multiple": false,
4917
4926
  "type": "option"
4918
4927
  },
4919
- "polltimeout": {
4928
+ "lastndays": {
4920
4929
  "char": "t",
4921
- "description": "Timeout in MS for Bulk API calls",
4922
- "name": "polltimeout",
4923
- "default": 300000,
4930
+ "description": "Number of days to extract from today (included)",
4931
+ "name": "lastndays",
4924
4932
  "hasDynamicHelp": false,
4925
4933
  "multiple": false,
4926
4934
  "type": "option"
4927
4935
  },
4928
- "startchunknumber": {
4929
- "char": "s",
4930
- "description": "Chunk number to start from",
4931
- "name": "startchunknumber",
4932
- "default": 0,
4936
+ "outputfile": {
4937
+ "char": "f",
4938
+ "description": "Force the path and name of output report file. Must end with .csv",
4939
+ "name": "outputfile",
4933
4940
  "hasDynamicHelp": false,
4934
4941
  "multiple": false,
4935
4942
  "type": "option"
@@ -4972,13 +4979,13 @@
4972
4979
  },
4973
4980
  "hasDynamicHelp": true,
4974
4981
  "hiddenAliases": [],
4975
- "id": "hardis:org:files:export",
4982
+ "id": "hardis:org:diagnose:audittrail",
4976
4983
  "pluginAlias": "sfdx-hardis",
4977
4984
  "pluginName": "sfdx-hardis",
4978
4985
  "pluginType": "core",
4979
4986
  "strict": true,
4980
4987
  "enableJsonFlag": true,
4981
- "title": "Export files",
4988
+ "title": "Diagnose content of Setup Audit Trail",
4982
4989
  "requiresProject": false,
4983
4990
  "isESM": true,
4984
4991
  "relativePath": [
@@ -4986,43 +4993,43 @@
4986
4993
  "commands",
4987
4994
  "hardis",
4988
4995
  "org",
4989
- "files",
4990
- "export.js"
4996
+ "diagnose",
4997
+ "audittrail.js"
4991
4998
  ],
4992
4999
  "aliasPermutations": [],
4993
5000
  "permutations": [
4994
- "hardis:org:files:export",
4995
- "org:hardis:files:export",
4996
- "org:files:hardis:export",
4997
- "org:files:export:hardis",
4998
- "hardis:files:org:export",
4999
- "files:hardis:org:export",
5000
- "files:org:hardis:export",
5001
- "files:org:export:hardis",
5002
- "hardis:files:export:org",
5003
- "files:hardis:export:org",
5004
- "files:export:hardis:org",
5005
- "files:export:org:hardis",
5006
- "hardis:org:export:files",
5007
- "org:hardis:export:files",
5008
- "org:export:hardis:files",
5009
- "org:export:files:hardis",
5010
- "hardis:export:org:files",
5011
- "export:hardis:org:files",
5012
- "export:org:hardis:files",
5013
- "export:org:files:hardis",
5014
- "hardis:export:files:org",
5015
- "export:hardis:files:org",
5016
- "export:files:hardis:org",
5017
- "export:files:org:hardis"
5001
+ "hardis:org:diagnose:audittrail",
5002
+ "org:hardis:diagnose:audittrail",
5003
+ "org:diagnose:hardis:audittrail",
5004
+ "org:diagnose:audittrail:hardis",
5005
+ "hardis:diagnose:org:audittrail",
5006
+ "diagnose:hardis:org:audittrail",
5007
+ "diagnose:org:hardis:audittrail",
5008
+ "diagnose:org:audittrail:hardis",
5009
+ "hardis:diagnose:audittrail:org",
5010
+ "diagnose:hardis:audittrail:org",
5011
+ "diagnose:audittrail:hardis:org",
5012
+ "diagnose:audittrail:org:hardis",
5013
+ "hardis:org:audittrail:diagnose",
5014
+ "org:hardis:audittrail:diagnose",
5015
+ "org:audittrail:hardis:diagnose",
5016
+ "org:audittrail:diagnose:hardis",
5017
+ "hardis:audittrail:org:diagnose",
5018
+ "audittrail:hardis:org:diagnose",
5019
+ "audittrail:org:hardis:diagnose",
5020
+ "audittrail:org:diagnose:hardis",
5021
+ "hardis:audittrail:diagnose:org",
5022
+ "audittrail:hardis:diagnose:org",
5023
+ "audittrail:diagnose:hardis:org",
5024
+ "audittrail:diagnose:org:hardis"
5018
5025
  ]
5019
5026
  },
5020
- "hardis:org:files:import": {
5027
+ "hardis:org:diagnose:instanceupgrade": {
5021
5028
  "aliases": [],
5022
5029
  "args": {},
5023
- "description": "Import file attachments into a Salesforce org\n\nSee article below to see how to Export them.\n\n[![How to mass download notes and attachments files from a Salesforce org](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-mass-download.jpg)](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
5030
+ "description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
5024
5031
  "examples": [
5025
- "$ sf hardis:org:files:import"
5032
+ "$ sf hardis:org:diagnose:instanceupgrade"
5026
5033
  ],
5027
5034
  "flags": {
5028
5035
  "json": {
@@ -5040,21 +5047,6 @@
5040
5047
  "multiple": false,
5041
5048
  "type": "option"
5042
5049
  },
5043
- "path": {
5044
- "char": "p",
5045
- "description": "Path to the file export project",
5046
- "name": "path",
5047
- "hasDynamicHelp": false,
5048
- "multiple": false,
5049
- "type": "option"
5050
- },
5051
- "overwrite": {
5052
- "char": "f",
5053
- "description": "Override existing files (doubles the number of API calls)",
5054
- "name": "overwrite",
5055
- "allowNo": false,
5056
- "type": "boolean"
5057
- },
5058
5050
  "debug": {
5059
5051
  "char": "d",
5060
5052
  "description": "Activate debug mode (more logs)",
@@ -5093,13 +5085,13 @@
5093
5085
  },
5094
5086
  "hasDynamicHelp": true,
5095
5087
  "hiddenAliases": [],
5096
- "id": "hardis:org:files:import",
5088
+ "id": "hardis:org:diagnose:instanceupgrade",
5097
5089
  "pluginAlias": "sfdx-hardis",
5098
5090
  "pluginName": "sfdx-hardis",
5099
5091
  "pluginType": "core",
5100
5092
  "strict": true,
5101
5093
  "enableJsonFlag": true,
5102
- "title": "Import files",
5094
+ "title": "Get Instance Upgrade date",
5103
5095
  "requiresProject": false,
5104
5096
  "isESM": true,
5105
5097
  "relativePath": [
@@ -5107,46 +5099,46 @@
5107
5099
  "commands",
5108
5100
  "hardis",
5109
5101
  "org",
5110
- "files",
5111
- "import.js"
5102
+ "diagnose",
5103
+ "instanceupgrade.js"
5112
5104
  ],
5113
5105
  "aliasPermutations": [],
5114
5106
  "permutations": [
5115
- "hardis:org:files:import",
5116
- "org:hardis:files:import",
5117
- "org:files:hardis:import",
5118
- "org:files:import:hardis",
5119
- "hardis:files:org:import",
5120
- "files:hardis:org:import",
5121
- "files:org:hardis:import",
5122
- "files:org:import:hardis",
5123
- "hardis:files:import:org",
5124
- "files:hardis:import:org",
5125
- "files:import:hardis:org",
5126
- "files:import:org:hardis",
5127
- "hardis:org:import:files",
5128
- "org:hardis:import:files",
5129
- "org:import:hardis:files",
5130
- "org:import:files:hardis",
5131
- "hardis:import:org:files",
5132
- "import:hardis:org:files",
5133
- "import:org:hardis:files",
5134
- "import:org:files:hardis",
5135
- "hardis:import:files:org",
5136
- "import:hardis:files:org",
5137
- "import:files:hardis:org",
5138
- "import:files:org:hardis"
5107
+ "hardis:org:diagnose:instanceupgrade",
5108
+ "org:hardis:diagnose:instanceupgrade",
5109
+ "org:diagnose:hardis:instanceupgrade",
5110
+ "org:diagnose:instanceupgrade:hardis",
5111
+ "hardis:diagnose:org:instanceupgrade",
5112
+ "diagnose:hardis:org:instanceupgrade",
5113
+ "diagnose:org:hardis:instanceupgrade",
5114
+ "diagnose:org:instanceupgrade:hardis",
5115
+ "hardis:diagnose:instanceupgrade:org",
5116
+ "diagnose:hardis:instanceupgrade:org",
5117
+ "diagnose:instanceupgrade:hardis:org",
5118
+ "diagnose:instanceupgrade:org:hardis",
5119
+ "hardis:org:instanceupgrade:diagnose",
5120
+ "org:hardis:instanceupgrade:diagnose",
5121
+ "org:instanceupgrade:hardis:diagnose",
5122
+ "org:instanceupgrade:diagnose:hardis",
5123
+ "hardis:instanceupgrade:org:diagnose",
5124
+ "instanceupgrade:hardis:org:diagnose",
5125
+ "instanceupgrade:org:hardis:diagnose",
5126
+ "instanceupgrade:org:diagnose:hardis",
5127
+ "hardis:instanceupgrade:diagnose:org",
5128
+ "instanceupgrade:hardis:diagnose:org",
5129
+ "instanceupgrade:diagnose:hardis:org",
5130
+ "instanceupgrade:diagnose:org:hardis"
5139
5131
  ]
5140
5132
  },
5141
- "hardis:org:diagnose:audittrail": {
5133
+ "hardis:org:diagnose:legacyapi": {
5142
5134
  "aliases": [],
5143
5135
  "args": {},
5144
- "description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - suOrgAdminLogin\n - suOrgAdminLogout\n - unfrozeuser\n - useremailchangesent\n- Mobile Administration\n - assigneduserstomobileconfig\n- Reporting Snapshots\n - createdReportJob\n - deletedReportJob\n- Sandboxes\n - DeleteSandbox\n\nBy default, deployment user defined in .sfdx-hardis.yml targetUsername property will be excluded.\n\nYou can define additional users to exclude in .sfdx-hardis.yml **monitoringExcludeUsernames** property.\n\nYou can also add more sections / actions considered as not suspect using property **monitoringAllowedSectionsActions**\n\nExample:\n\n```yaml\nmonitoringExcludeUsernames:\n - deploymentuser@cloudity.com\n - marketingcloud@cloudity.com\n - integration-user@cloudity.com\n\nmonitoringAllowedSectionsActions:\n \"Some section\": [] // Will ignore all actions from such section\n \"Some other section\": [\"actionType1\",\"actionType2\",\"actionType3\"] // Will ignore only those 3 actions from section \"Some other section\". Other actions in the same section will be considered as suspect.\n```\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-suspect-audit-trail/) and can output Grafana, Slack and MsTeams Notifications.\n",
5136
+ "description": "Checks if an org uses retired or someday retired API version\n\n\nSee article below\n\n[![Handle Salesforce API versions Deprecation like a pro](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-deprecated-api.jpg)](https://nicolas.vuillamy.fr/handle-salesforce-api-versions-deprecation-like-a-pro-335065f52238)\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-deprecated-api-calls/) and can output Grafana, Slack and MsTeams Notifications.\n",
5145
5137
  "examples": [
5146
- "$ sf hardis:org:diagnose:audittrail",
5147
- "$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
5148
- "$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
5149
- "$ sf hardis:org:diagnose:audittrail --lastndays 5"
5138
+ "$ sf hardis:org:diagnose:legacyapi",
5139
+ "$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com",
5140
+ "$ sf hardis:org:diagnose:legacyapi --outputfile 'c:/path/to/folder/legacyapi.csv'",
5141
+ "$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com --outputfile ./tmp/legacyapi.csv"
5150
5142
  ],
5151
5143
  "flags": {
5152
5144
  "json": {
@@ -5164,18 +5156,20 @@
5164
5156
  "multiple": false,
5165
5157
  "type": "option"
5166
5158
  },
5167
- "excludeusers": {
5159
+ "eventtype": {
5168
5160
  "char": "e",
5169
- "description": "Comma-separated list of usernames to exclude",
5170
- "name": "excludeusers",
5161
+ "description": "Type of EventLogFile event to analyze",
5162
+ "name": "eventtype",
5163
+ "default": "ApiTotalUsage",
5171
5164
  "hasDynamicHelp": false,
5172
5165
  "multiple": false,
5173
5166
  "type": "option"
5174
5167
  },
5175
- "lastndays": {
5176
- "char": "t",
5177
- "description": "Number of days to extract from today (included)",
5178
- "name": "lastndays",
5168
+ "limit": {
5169
+ "char": "l",
5170
+ "description": "Number of latest EventLogFile events to analyze",
5171
+ "name": "limit",
5172
+ "default": 999,
5179
5173
  "hasDynamicHelp": false,
5180
5174
  "multiple": false,
5181
5175
  "type": "option"
@@ -5226,13 +5220,13 @@
5226
5220
  },
5227
5221
  "hasDynamicHelp": true,
5228
5222
  "hiddenAliases": [],
5229
- "id": "hardis:org:diagnose:audittrail",
5223
+ "id": "hardis:org:diagnose:legacyapi",
5230
5224
  "pluginAlias": "sfdx-hardis",
5231
5225
  "pluginName": "sfdx-hardis",
5232
5226
  "pluginType": "core",
5233
5227
  "strict": true,
5234
5228
  "enableJsonFlag": true,
5235
- "title": "Diagnose content of Setup Audit Trail",
5229
+ "title": "Check for legacy API use",
5236
5230
  "requiresProject": false,
5237
5231
  "isESM": true,
5238
5232
  "relativePath": [
@@ -5241,248 +5235,7 @@
5241
5235
  "hardis",
5242
5236
  "org",
5243
5237
  "diagnose",
5244
- "audittrail.js"
5245
- ],
5246
- "aliasPermutations": [],
5247
- "permutations": [
5248
- "hardis:org:diagnose:audittrail",
5249
- "org:hardis:diagnose:audittrail",
5250
- "org:diagnose:hardis:audittrail",
5251
- "org:diagnose:audittrail:hardis",
5252
- "hardis:diagnose:org:audittrail",
5253
- "diagnose:hardis:org:audittrail",
5254
- "diagnose:org:hardis:audittrail",
5255
- "diagnose:org:audittrail:hardis",
5256
- "hardis:diagnose:audittrail:org",
5257
- "diagnose:hardis:audittrail:org",
5258
- "diagnose:audittrail:hardis:org",
5259
- "diagnose:audittrail:org:hardis",
5260
- "hardis:org:audittrail:diagnose",
5261
- "org:hardis:audittrail:diagnose",
5262
- "org:audittrail:hardis:diagnose",
5263
- "org:audittrail:diagnose:hardis",
5264
- "hardis:audittrail:org:diagnose",
5265
- "audittrail:hardis:org:diagnose",
5266
- "audittrail:org:hardis:diagnose",
5267
- "audittrail:org:diagnose:hardis",
5268
- "hardis:audittrail:diagnose:org",
5269
- "audittrail:hardis:diagnose:org",
5270
- "audittrail:diagnose:hardis:org",
5271
- "audittrail:diagnose:org:hardis"
5272
- ]
5273
- },
5274
- "hardis:org:diagnose:instanceupgrade": {
5275
- "aliases": [],
5276
- "args": {},
5277
- "description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
5278
- "examples": [
5279
- "$ sf hardis:org:diagnose:instanceupgrade"
5280
- ],
5281
- "flags": {
5282
- "json": {
5283
- "description": "Format output as json.",
5284
- "helpGroup": "GLOBAL",
5285
- "name": "json",
5286
- "allowNo": false,
5287
- "type": "boolean"
5288
- },
5289
- "flags-dir": {
5290
- "helpGroup": "GLOBAL",
5291
- "name": "flags-dir",
5292
- "summary": "Import flag values from a directory.",
5293
- "hasDynamicHelp": false,
5294
- "multiple": false,
5295
- "type": "option"
5296
- },
5297
- "debug": {
5298
- "char": "d",
5299
- "description": "Activate debug mode (more logs)",
5300
- "name": "debug",
5301
- "allowNo": false,
5302
- "type": "boolean"
5303
- },
5304
- "websocket": {
5305
- "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
5306
- "name": "websocket",
5307
- "hasDynamicHelp": false,
5308
- "multiple": false,
5309
- "type": "option"
5310
- },
5311
- "skipauth": {
5312
- "description": "Skip authentication check when a default username is required",
5313
- "name": "skipauth",
5314
- "allowNo": false,
5315
- "type": "boolean"
5316
- },
5317
- "target-org": {
5318
- "aliases": [
5319
- "targetusername",
5320
- "u"
5321
- ],
5322
- "char": "o",
5323
- "deprecateAliases": true,
5324
- "name": "target-org",
5325
- "noCacheDefault": true,
5326
- "required": true,
5327
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
5328
- "hasDynamicHelp": true,
5329
- "multiple": false,
5330
- "type": "option"
5331
- }
5332
- },
5333
- "hasDynamicHelp": true,
5334
- "hiddenAliases": [],
5335
- "id": "hardis:org:diagnose:instanceupgrade",
5336
- "pluginAlias": "sfdx-hardis",
5337
- "pluginName": "sfdx-hardis",
5338
- "pluginType": "core",
5339
- "strict": true,
5340
- "enableJsonFlag": true,
5341
- "title": "Get Instance Upgrade date",
5342
- "requiresProject": false,
5343
- "isESM": true,
5344
- "relativePath": [
5345
- "lib",
5346
- "commands",
5347
- "hardis",
5348
- "org",
5349
- "diagnose",
5350
- "instanceupgrade.js"
5351
- ],
5352
- "aliasPermutations": [],
5353
- "permutations": [
5354
- "hardis:org:diagnose:instanceupgrade",
5355
- "org:hardis:diagnose:instanceupgrade",
5356
- "org:diagnose:hardis:instanceupgrade",
5357
- "org:diagnose:instanceupgrade:hardis",
5358
- "hardis:diagnose:org:instanceupgrade",
5359
- "diagnose:hardis:org:instanceupgrade",
5360
- "diagnose:org:hardis:instanceupgrade",
5361
- "diagnose:org:instanceupgrade:hardis",
5362
- "hardis:diagnose:instanceupgrade:org",
5363
- "diagnose:hardis:instanceupgrade:org",
5364
- "diagnose:instanceupgrade:hardis:org",
5365
- "diagnose:instanceupgrade:org:hardis",
5366
- "hardis:org:instanceupgrade:diagnose",
5367
- "org:hardis:instanceupgrade:diagnose",
5368
- "org:instanceupgrade:hardis:diagnose",
5369
- "org:instanceupgrade:diagnose:hardis",
5370
- "hardis:instanceupgrade:org:diagnose",
5371
- "instanceupgrade:hardis:org:diagnose",
5372
- "instanceupgrade:org:hardis:diagnose",
5373
- "instanceupgrade:org:diagnose:hardis",
5374
- "hardis:instanceupgrade:diagnose:org",
5375
- "instanceupgrade:hardis:diagnose:org",
5376
- "instanceupgrade:diagnose:hardis:org",
5377
- "instanceupgrade:diagnose:org:hardis"
5378
- ]
5379
- },
5380
- "hardis:org:diagnose:legacyapi": {
5381
- "aliases": [],
5382
- "args": {},
5383
- "description": "Checks if an org uses retired or someday retired API version\n\n\nSee article below\n\n[![Handle Salesforce API versions Deprecation like a pro](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-deprecated-api.jpg)](https://nicolas.vuillamy.fr/handle-salesforce-api-versions-deprecation-like-a-pro-335065f52238)\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-deprecated-api-calls/) and can output Grafana, Slack and MsTeams Notifications.\n",
5384
- "examples": [
5385
- "$ sf hardis:org:diagnose:legacyapi",
5386
- "$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com",
5387
- "$ sf hardis:org:diagnose:legacyapi --outputfile 'c:/path/to/folder/legacyapi.csv'",
5388
- "$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com --outputfile ./tmp/legacyapi.csv"
5389
- ],
5390
- "flags": {
5391
- "json": {
5392
- "description": "Format output as json.",
5393
- "helpGroup": "GLOBAL",
5394
- "name": "json",
5395
- "allowNo": false,
5396
- "type": "boolean"
5397
- },
5398
- "flags-dir": {
5399
- "helpGroup": "GLOBAL",
5400
- "name": "flags-dir",
5401
- "summary": "Import flag values from a directory.",
5402
- "hasDynamicHelp": false,
5403
- "multiple": false,
5404
- "type": "option"
5405
- },
5406
- "eventtype": {
5407
- "char": "e",
5408
- "description": "Type of EventLogFile event to analyze",
5409
- "name": "eventtype",
5410
- "default": "ApiTotalUsage",
5411
- "hasDynamicHelp": false,
5412
- "multiple": false,
5413
- "type": "option"
5414
- },
5415
- "limit": {
5416
- "char": "l",
5417
- "description": "Number of latest EventLogFile events to analyze",
5418
- "name": "limit",
5419
- "default": 999,
5420
- "hasDynamicHelp": false,
5421
- "multiple": false,
5422
- "type": "option"
5423
- },
5424
- "outputfile": {
5425
- "char": "f",
5426
- "description": "Force the path and name of output report file. Must end with .csv",
5427
- "name": "outputfile",
5428
- "hasDynamicHelp": false,
5429
- "multiple": false,
5430
- "type": "option"
5431
- },
5432
- "debug": {
5433
- "char": "d",
5434
- "description": "Activate debug mode (more logs)",
5435
- "name": "debug",
5436
- "allowNo": false,
5437
- "type": "boolean"
5438
- },
5439
- "websocket": {
5440
- "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
5441
- "name": "websocket",
5442
- "hasDynamicHelp": false,
5443
- "multiple": false,
5444
- "type": "option"
5445
- },
5446
- "skipauth": {
5447
- "description": "Skip authentication check when a default username is required",
5448
- "name": "skipauth",
5449
- "allowNo": false,
5450
- "type": "boolean"
5451
- },
5452
- "target-org": {
5453
- "aliases": [
5454
- "targetusername",
5455
- "u"
5456
- ],
5457
- "char": "o",
5458
- "deprecateAliases": true,
5459
- "name": "target-org",
5460
- "noCacheDefault": true,
5461
- "required": true,
5462
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
5463
- "hasDynamicHelp": true,
5464
- "multiple": false,
5465
- "type": "option"
5466
- }
5467
- },
5468
- "hasDynamicHelp": true,
5469
- "hiddenAliases": [],
5470
- "id": "hardis:org:diagnose:legacyapi",
5471
- "pluginAlias": "sfdx-hardis",
5472
- "pluginName": "sfdx-hardis",
5473
- "pluginType": "core",
5474
- "strict": true,
5475
- "enableJsonFlag": true,
5476
- "title": "Check for legacy API use",
5477
- "requiresProject": false,
5478
- "isESM": true,
5479
- "relativePath": [
5480
- "lib",
5481
- "commands",
5482
- "hardis",
5483
- "org",
5484
- "diagnose",
5485
- "legacyapi.js"
5238
+ "legacyapi.js"
5486
5239
  ],
5487
5240
  "aliasPermutations": [],
5488
5241
  "permutations": [
@@ -6287,6 +6040,268 @@
6287
6040
  "unusedusers:diagnose:org:hardis"
6288
6041
  ]
6289
6042
  },
6043
+ "hardis:org:files:export": {
6044
+ "aliases": [],
6045
+ "args": {},
6046
+ "description": "Export file attachments from a Salesforce org\n\nSee article below\n\n[![How to mass download notes and attachments files from a Salesforce org](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-mass-download.jpg)](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
6047
+ "examples": [
6048
+ "$ sf hardis:org:files:export"
6049
+ ],
6050
+ "flags": {
6051
+ "json": {
6052
+ "description": "Format output as json.",
6053
+ "helpGroup": "GLOBAL",
6054
+ "name": "json",
6055
+ "allowNo": false,
6056
+ "type": "boolean"
6057
+ },
6058
+ "flags-dir": {
6059
+ "helpGroup": "GLOBAL",
6060
+ "name": "flags-dir",
6061
+ "summary": "Import flag values from a directory.",
6062
+ "hasDynamicHelp": false,
6063
+ "multiple": false,
6064
+ "type": "option"
6065
+ },
6066
+ "path": {
6067
+ "char": "p",
6068
+ "description": "Path to the file export project",
6069
+ "name": "path",
6070
+ "hasDynamicHelp": false,
6071
+ "multiple": false,
6072
+ "type": "option"
6073
+ },
6074
+ "chunksize": {
6075
+ "char": "c",
6076
+ "description": "Number of records to add in a chunk before it is processed",
6077
+ "name": "chunksize",
6078
+ "default": 1000,
6079
+ "hasDynamicHelp": false,
6080
+ "multiple": false,
6081
+ "type": "option"
6082
+ },
6083
+ "polltimeout": {
6084
+ "char": "t",
6085
+ "description": "Timeout in MS for Bulk API calls",
6086
+ "name": "polltimeout",
6087
+ "default": 300000,
6088
+ "hasDynamicHelp": false,
6089
+ "multiple": false,
6090
+ "type": "option"
6091
+ },
6092
+ "startchunknumber": {
6093
+ "char": "s",
6094
+ "description": "Chunk number to start from",
6095
+ "name": "startchunknumber",
6096
+ "default": 0,
6097
+ "hasDynamicHelp": false,
6098
+ "multiple": false,
6099
+ "type": "option"
6100
+ },
6101
+ "debug": {
6102
+ "char": "d",
6103
+ "description": "Activate debug mode (more logs)",
6104
+ "name": "debug",
6105
+ "allowNo": false,
6106
+ "type": "boolean"
6107
+ },
6108
+ "websocket": {
6109
+ "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
6110
+ "name": "websocket",
6111
+ "hasDynamicHelp": false,
6112
+ "multiple": false,
6113
+ "type": "option"
6114
+ },
6115
+ "skipauth": {
6116
+ "description": "Skip authentication check when a default username is required",
6117
+ "name": "skipauth",
6118
+ "allowNo": false,
6119
+ "type": "boolean"
6120
+ },
6121
+ "target-org": {
6122
+ "aliases": [
6123
+ "targetusername",
6124
+ "u"
6125
+ ],
6126
+ "char": "o",
6127
+ "deprecateAliases": true,
6128
+ "name": "target-org",
6129
+ "noCacheDefault": true,
6130
+ "required": true,
6131
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
6132
+ "hasDynamicHelp": true,
6133
+ "multiple": false,
6134
+ "type": "option"
6135
+ }
6136
+ },
6137
+ "hasDynamicHelp": true,
6138
+ "hiddenAliases": [],
6139
+ "id": "hardis:org:files:export",
6140
+ "pluginAlias": "sfdx-hardis",
6141
+ "pluginName": "sfdx-hardis",
6142
+ "pluginType": "core",
6143
+ "strict": true,
6144
+ "enableJsonFlag": true,
6145
+ "title": "Export files",
6146
+ "requiresProject": false,
6147
+ "isESM": true,
6148
+ "relativePath": [
6149
+ "lib",
6150
+ "commands",
6151
+ "hardis",
6152
+ "org",
6153
+ "files",
6154
+ "export.js"
6155
+ ],
6156
+ "aliasPermutations": [],
6157
+ "permutations": [
6158
+ "hardis:org:files:export",
6159
+ "org:hardis:files:export",
6160
+ "org:files:hardis:export",
6161
+ "org:files:export:hardis",
6162
+ "hardis:files:org:export",
6163
+ "files:hardis:org:export",
6164
+ "files:org:hardis:export",
6165
+ "files:org:export:hardis",
6166
+ "hardis:files:export:org",
6167
+ "files:hardis:export:org",
6168
+ "files:export:hardis:org",
6169
+ "files:export:org:hardis",
6170
+ "hardis:org:export:files",
6171
+ "org:hardis:export:files",
6172
+ "org:export:hardis:files",
6173
+ "org:export:files:hardis",
6174
+ "hardis:export:org:files",
6175
+ "export:hardis:org:files",
6176
+ "export:org:hardis:files",
6177
+ "export:org:files:hardis",
6178
+ "hardis:export:files:org",
6179
+ "export:hardis:files:org",
6180
+ "export:files:hardis:org",
6181
+ "export:files:org:hardis"
6182
+ ]
6183
+ },
6184
+ "hardis:org:files:import": {
6185
+ "aliases": [],
6186
+ "args": {},
6187
+ "description": "Import file attachments into a Salesforce org\n\nSee article below to see how to Export them.\n\n[![How to mass download notes and attachments files from a Salesforce org](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-mass-download.jpg)](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
6188
+ "examples": [
6189
+ "$ sf hardis:org:files:import"
6190
+ ],
6191
+ "flags": {
6192
+ "json": {
6193
+ "description": "Format output as json.",
6194
+ "helpGroup": "GLOBAL",
6195
+ "name": "json",
6196
+ "allowNo": false,
6197
+ "type": "boolean"
6198
+ },
6199
+ "flags-dir": {
6200
+ "helpGroup": "GLOBAL",
6201
+ "name": "flags-dir",
6202
+ "summary": "Import flag values from a directory.",
6203
+ "hasDynamicHelp": false,
6204
+ "multiple": false,
6205
+ "type": "option"
6206
+ },
6207
+ "path": {
6208
+ "char": "p",
6209
+ "description": "Path to the file export project",
6210
+ "name": "path",
6211
+ "hasDynamicHelp": false,
6212
+ "multiple": false,
6213
+ "type": "option"
6214
+ },
6215
+ "overwrite": {
6216
+ "char": "f",
6217
+ "description": "Override existing files (doubles the number of API calls)",
6218
+ "name": "overwrite",
6219
+ "allowNo": false,
6220
+ "type": "boolean"
6221
+ },
6222
+ "debug": {
6223
+ "char": "d",
6224
+ "description": "Activate debug mode (more logs)",
6225
+ "name": "debug",
6226
+ "allowNo": false,
6227
+ "type": "boolean"
6228
+ },
6229
+ "websocket": {
6230
+ "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
6231
+ "name": "websocket",
6232
+ "hasDynamicHelp": false,
6233
+ "multiple": false,
6234
+ "type": "option"
6235
+ },
6236
+ "skipauth": {
6237
+ "description": "Skip authentication check when a default username is required",
6238
+ "name": "skipauth",
6239
+ "allowNo": false,
6240
+ "type": "boolean"
6241
+ },
6242
+ "target-org": {
6243
+ "aliases": [
6244
+ "targetusername",
6245
+ "u"
6246
+ ],
6247
+ "char": "o",
6248
+ "deprecateAliases": true,
6249
+ "name": "target-org",
6250
+ "noCacheDefault": true,
6251
+ "required": true,
6252
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
6253
+ "hasDynamicHelp": true,
6254
+ "multiple": false,
6255
+ "type": "option"
6256
+ }
6257
+ },
6258
+ "hasDynamicHelp": true,
6259
+ "hiddenAliases": [],
6260
+ "id": "hardis:org:files:import",
6261
+ "pluginAlias": "sfdx-hardis",
6262
+ "pluginName": "sfdx-hardis",
6263
+ "pluginType": "core",
6264
+ "strict": true,
6265
+ "enableJsonFlag": true,
6266
+ "title": "Import files",
6267
+ "requiresProject": false,
6268
+ "isESM": true,
6269
+ "relativePath": [
6270
+ "lib",
6271
+ "commands",
6272
+ "hardis",
6273
+ "org",
6274
+ "files",
6275
+ "import.js"
6276
+ ],
6277
+ "aliasPermutations": [],
6278
+ "permutations": [
6279
+ "hardis:org:files:import",
6280
+ "org:hardis:files:import",
6281
+ "org:files:hardis:import",
6282
+ "org:files:import:hardis",
6283
+ "hardis:files:org:import",
6284
+ "files:hardis:org:import",
6285
+ "files:org:hardis:import",
6286
+ "files:org:import:hardis",
6287
+ "hardis:files:import:org",
6288
+ "files:hardis:import:org",
6289
+ "files:import:hardis:org",
6290
+ "files:import:org:hardis",
6291
+ "hardis:org:import:files",
6292
+ "org:hardis:import:files",
6293
+ "org:import:hardis:files",
6294
+ "org:import:files:hardis",
6295
+ "hardis:import:org:files",
6296
+ "import:hardis:org:files",
6297
+ "import:org:hardis:files",
6298
+ "import:org:files:hardis",
6299
+ "hardis:import:files:org",
6300
+ "import:hardis:files:org",
6301
+ "import:files:hardis:org",
6302
+ "import:files:org:hardis"
6303
+ ]
6304
+ },
6290
6305
  "hardis:org:fix:listviewmine": {
6291
6306
  "aliases": [],
6292
6307
  "args": {},
@@ -13870,5 +13885,5 @@
13870
13885
  ]
13871
13886
  }
13872
13887
  },
13873
- "version": "5.10.2-beta202412231619.0"
13888
+ "version": "5.10.2-beta202412292224.0"
13874
13889
  }