sfdx-hardis 5.26.1 → 5.28.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.
- package/CHANGELOG.md +17 -0
- package/defaults/mkdocs-project-doc/docs/javascripts/jstree-handler.js +111 -0
- package/defaults/mkdocs-project-doc/docs/json/index.md +1 -0
- package/defaults/mkdocs-project-doc/docs/stylesheets/jstree-custom.css +15 -0
- package/defaults/mkdocs-project-doc/mkdocs.yml +4 -0
- package/defaults/monitoring/manifest/package-skip-items.xml +7 -0
- package/lib/commands/hardis/doc/project2markdown.d.ts +5 -1
- package/lib/commands/hardis/doc/project2markdown.js +127 -8
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/commands/hardis/lint/metadatastatus.d.ts +7 -2
- package/lib/commands/hardis/lint/metadatastatus.js +225 -13
- package/lib/commands/hardis/lint/metadatastatus.js.map +1 -1
- package/lib/common/aiProvider/promptTemplates.d.ts +13 -1
- package/lib/common/aiProvider/promptTemplates.js +58 -1
- package/lib/common/aiProvider/promptTemplates.js.map +1 -1
- package/lib/common/docBuilder/docBuilderObject.js +5 -1
- package/lib/common/docBuilder/docBuilderObject.js.map +1 -1
- package/lib/common/docBuilder/docBuilderPackageXml.d.ts +3 -0
- package/lib/common/docBuilder/docBuilderPackageXml.js +77 -0
- package/lib/common/docBuilder/docBuilderPackageXml.js.map +1 -1
- package/lib/common/docBuilder/docBuilderPermissionSet.d.ts +13 -0
- package/lib/common/docBuilder/docBuilderPermissionSet.js +92 -0
- package/lib/common/docBuilder/docBuilderPermissionSet.js.map +1 -0
- package/lib/common/docBuilder/docBuilderPermissionSetGroup.d.ts +11 -0
- package/lib/common/docBuilder/docBuilderPermissionSetGroup.js +60 -0
- package/lib/common/docBuilder/docBuilderPermissionSetGroup.js.map +1 -0
- package/lib/common/docBuilder/docBuilderProfile.d.ts +4 -0
- package/lib/common/docBuilder/docBuilderProfile.js +117 -2
- package/lib/common/docBuilder/docBuilderProfile.js.map +1 -1
- package/lib/common/docBuilder/docBuilderRoot.d.ts +2 -0
- package/lib/common/docBuilder/docBuilderRoot.js +12 -0
- package/lib/common/docBuilder/docBuilderRoot.js.map +1 -1
- package/lib/common/docBuilder/docUtils.js +1 -1
- package/lib/common/docBuilder/docUtils.js.map +1 -1
- package/lib/common/gitProvider/utilsMarkdown.js +1 -1
- package/lib/common/gitProvider/utilsMarkdown.js.map +1 -1
- package/oclif.lock +34 -231
- package/oclif.manifest.json +3 -3
- package/package.json +6 -6
package/oclif.lock
CHANGED
|
@@ -112,24 +112,24 @@
|
|
|
112
112
|
"@smithy/util-utf8" "^2.0.0"
|
|
113
113
|
tslib "^2.6.2"
|
|
114
114
|
|
|
115
|
-
"@aws-sdk/client-cloudfront@^3.
|
|
116
|
-
version "3.
|
|
117
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudfront/-/client-cloudfront-3.
|
|
118
|
-
integrity sha512-
|
|
115
|
+
"@aws-sdk/client-cloudfront@^3.787.0":
|
|
116
|
+
version "3.787.0"
|
|
117
|
+
resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudfront/-/client-cloudfront-3.787.0.tgz#e0f202b5dd34d3a19e7ee3d8fa18004161d7fd9e"
|
|
118
|
+
integrity sha512-TDeV11LREVMPZRpTWQMbxnYB4EXyLCdpEKTNqt4yHB3BsudZb7VYgRYVR9BxNhVDJhOrnuqqzsBrV5HbO0m4Qg==
|
|
119
119
|
dependencies:
|
|
120
120
|
"@aws-crypto/sha256-browser" "5.2.0"
|
|
121
121
|
"@aws-crypto/sha256-js" "5.2.0"
|
|
122
122
|
"@aws-sdk/core" "3.775.0"
|
|
123
|
-
"@aws-sdk/credential-provider-node" "3.
|
|
123
|
+
"@aws-sdk/credential-provider-node" "3.787.0"
|
|
124
124
|
"@aws-sdk/middleware-host-header" "3.775.0"
|
|
125
125
|
"@aws-sdk/middleware-logger" "3.775.0"
|
|
126
126
|
"@aws-sdk/middleware-recursion-detection" "3.775.0"
|
|
127
|
-
"@aws-sdk/middleware-user-agent" "3.
|
|
127
|
+
"@aws-sdk/middleware-user-agent" "3.787.0"
|
|
128
128
|
"@aws-sdk/region-config-resolver" "3.775.0"
|
|
129
129
|
"@aws-sdk/types" "3.775.0"
|
|
130
|
-
"@aws-sdk/util-endpoints" "3.
|
|
130
|
+
"@aws-sdk/util-endpoints" "3.787.0"
|
|
131
131
|
"@aws-sdk/util-user-agent-browser" "3.775.0"
|
|
132
|
-
"@aws-sdk/util-user-agent-node" "3.
|
|
132
|
+
"@aws-sdk/util-user-agent-node" "3.787.0"
|
|
133
133
|
"@aws-sdk/xml-builder" "3.775.0"
|
|
134
134
|
"@smithy/config-resolver" "^4.1.0"
|
|
135
135
|
"@smithy/core" "^3.2.0"
|
|
@@ -222,50 +222,6 @@
|
|
|
222
222
|
"@smithy/util-waiter" "^4.0.3"
|
|
223
223
|
tslib "^2.6.2"
|
|
224
224
|
|
|
225
|
-
"@aws-sdk/client-sso@3.777.0":
|
|
226
|
-
version "3.777.0"
|
|
227
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.777.0.tgz#75582dad211497ab7e52ac2d51d7eb3e7954f5e6"
|
|
228
|
-
integrity sha512-0+z6CiAYIQa7s6FJ+dpBYPi9zr9yY5jBg/4/FGcwYbmqWPXwL9Thdtr0FearYRZgKl7bhL3m3dILCCfWqr3teQ==
|
|
229
|
-
dependencies:
|
|
230
|
-
"@aws-crypto/sha256-browser" "5.2.0"
|
|
231
|
-
"@aws-crypto/sha256-js" "5.2.0"
|
|
232
|
-
"@aws-sdk/core" "3.775.0"
|
|
233
|
-
"@aws-sdk/middleware-host-header" "3.775.0"
|
|
234
|
-
"@aws-sdk/middleware-logger" "3.775.0"
|
|
235
|
-
"@aws-sdk/middleware-recursion-detection" "3.775.0"
|
|
236
|
-
"@aws-sdk/middleware-user-agent" "3.775.0"
|
|
237
|
-
"@aws-sdk/region-config-resolver" "3.775.0"
|
|
238
|
-
"@aws-sdk/types" "3.775.0"
|
|
239
|
-
"@aws-sdk/util-endpoints" "3.775.0"
|
|
240
|
-
"@aws-sdk/util-user-agent-browser" "3.775.0"
|
|
241
|
-
"@aws-sdk/util-user-agent-node" "3.775.0"
|
|
242
|
-
"@smithy/config-resolver" "^4.1.0"
|
|
243
|
-
"@smithy/core" "^3.2.0"
|
|
244
|
-
"@smithy/fetch-http-handler" "^5.0.2"
|
|
245
|
-
"@smithy/hash-node" "^4.0.2"
|
|
246
|
-
"@smithy/invalid-dependency" "^4.0.2"
|
|
247
|
-
"@smithy/middleware-content-length" "^4.0.2"
|
|
248
|
-
"@smithy/middleware-endpoint" "^4.1.0"
|
|
249
|
-
"@smithy/middleware-retry" "^4.1.0"
|
|
250
|
-
"@smithy/middleware-serde" "^4.0.3"
|
|
251
|
-
"@smithy/middleware-stack" "^4.0.2"
|
|
252
|
-
"@smithy/node-config-provider" "^4.0.2"
|
|
253
|
-
"@smithy/node-http-handler" "^4.0.4"
|
|
254
|
-
"@smithy/protocol-http" "^5.1.0"
|
|
255
|
-
"@smithy/smithy-client" "^4.2.0"
|
|
256
|
-
"@smithy/types" "^4.2.0"
|
|
257
|
-
"@smithy/url-parser" "^4.0.2"
|
|
258
|
-
"@smithy/util-base64" "^4.0.0"
|
|
259
|
-
"@smithy/util-body-length-browser" "^4.0.0"
|
|
260
|
-
"@smithy/util-body-length-node" "^4.0.0"
|
|
261
|
-
"@smithy/util-defaults-mode-browser" "^4.0.8"
|
|
262
|
-
"@smithy/util-defaults-mode-node" "^4.0.8"
|
|
263
|
-
"@smithy/util-endpoints" "^3.0.2"
|
|
264
|
-
"@smithy/util-middleware" "^4.0.2"
|
|
265
|
-
"@smithy/util-retry" "^4.0.2"
|
|
266
|
-
"@smithy/util-utf8" "^4.0.0"
|
|
267
|
-
tslib "^2.6.2"
|
|
268
|
-
|
|
269
225
|
"@aws-sdk/client-sso@3.787.0":
|
|
270
226
|
version "3.787.0"
|
|
271
227
|
resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.787.0.tgz#39f1182296b586cb957b449b5f0dabd8f378cf1a"
|
|
@@ -354,25 +310,6 @@
|
|
|
354
310
|
"@smithy/util-stream" "^4.2.0"
|
|
355
311
|
tslib "^2.6.2"
|
|
356
312
|
|
|
357
|
-
"@aws-sdk/credential-provider-ini@3.777.0":
|
|
358
|
-
version "3.777.0"
|
|
359
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.777.0.tgz#bd508b1e8d421ac5009d7f756a826796817970d9"
|
|
360
|
-
integrity sha512-1X9mCuM9JSQPmQ+D2TODt4THy6aJWCNiURkmKmTIPRdno7EIKgAqrr/LLN++K5mBf54DZVKpqcJutXU2jwo01A==
|
|
361
|
-
dependencies:
|
|
362
|
-
"@aws-sdk/core" "3.775.0"
|
|
363
|
-
"@aws-sdk/credential-provider-env" "3.775.0"
|
|
364
|
-
"@aws-sdk/credential-provider-http" "3.775.0"
|
|
365
|
-
"@aws-sdk/credential-provider-process" "3.775.0"
|
|
366
|
-
"@aws-sdk/credential-provider-sso" "3.777.0"
|
|
367
|
-
"@aws-sdk/credential-provider-web-identity" "3.777.0"
|
|
368
|
-
"@aws-sdk/nested-clients" "3.777.0"
|
|
369
|
-
"@aws-sdk/types" "3.775.0"
|
|
370
|
-
"@smithy/credential-provider-imds" "^4.0.2"
|
|
371
|
-
"@smithy/property-provider" "^4.0.2"
|
|
372
|
-
"@smithy/shared-ini-file-loader" "^4.0.2"
|
|
373
|
-
"@smithy/types" "^4.2.0"
|
|
374
|
-
tslib "^2.6.2"
|
|
375
|
-
|
|
376
313
|
"@aws-sdk/credential-provider-ini@3.787.0":
|
|
377
314
|
version "3.787.0"
|
|
378
315
|
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.787.0.tgz#906ece004141462ae695504b6c07d1200688fd6c"
|
|
@@ -392,24 +329,6 @@
|
|
|
392
329
|
"@smithy/types" "^4.2.0"
|
|
393
330
|
tslib "^2.6.2"
|
|
394
331
|
|
|
395
|
-
"@aws-sdk/credential-provider-node@3.777.0":
|
|
396
|
-
version "3.777.0"
|
|
397
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.777.0.tgz#65e6de233a8d885c63f0362968239bac61001c4f"
|
|
398
|
-
integrity sha512-ZD66ywx1Q0KyUSuBXZIQzBe3Q7MzX8lNwsrCU43H3Fww+Y+HB3Ncws9grhSdNhKQNeGmZ+MgKybuZYaaeLwJEQ==
|
|
399
|
-
dependencies:
|
|
400
|
-
"@aws-sdk/credential-provider-env" "3.775.0"
|
|
401
|
-
"@aws-sdk/credential-provider-http" "3.775.0"
|
|
402
|
-
"@aws-sdk/credential-provider-ini" "3.777.0"
|
|
403
|
-
"@aws-sdk/credential-provider-process" "3.775.0"
|
|
404
|
-
"@aws-sdk/credential-provider-sso" "3.777.0"
|
|
405
|
-
"@aws-sdk/credential-provider-web-identity" "3.777.0"
|
|
406
|
-
"@aws-sdk/types" "3.775.0"
|
|
407
|
-
"@smithy/credential-provider-imds" "^4.0.2"
|
|
408
|
-
"@smithy/property-provider" "^4.0.2"
|
|
409
|
-
"@smithy/shared-ini-file-loader" "^4.0.2"
|
|
410
|
-
"@smithy/types" "^4.2.0"
|
|
411
|
-
tslib "^2.6.2"
|
|
412
|
-
|
|
413
332
|
"@aws-sdk/credential-provider-node@3.787.0":
|
|
414
333
|
version "3.787.0"
|
|
415
334
|
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.787.0.tgz#3e5cdafb0fecca25b7430f848cbca85000b25c33"
|
|
@@ -440,20 +359,6 @@
|
|
|
440
359
|
"@smithy/types" "^4.2.0"
|
|
441
360
|
tslib "^2.6.2"
|
|
442
361
|
|
|
443
|
-
"@aws-sdk/credential-provider-sso@3.777.0":
|
|
444
|
-
version "3.777.0"
|
|
445
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.777.0.tgz#570779b2bc2f4181024b1af81bf0a5bd65e7c15c"
|
|
446
|
-
integrity sha512-9mPz7vk9uE4PBVprfINv4tlTkyq1OonNevx2DiXC1LY4mCUCNN3RdBwAY0BTLzj0uyc3k5KxFFNbn3/8ZDQP7w==
|
|
447
|
-
dependencies:
|
|
448
|
-
"@aws-sdk/client-sso" "3.777.0"
|
|
449
|
-
"@aws-sdk/core" "3.775.0"
|
|
450
|
-
"@aws-sdk/token-providers" "3.777.0"
|
|
451
|
-
"@aws-sdk/types" "3.775.0"
|
|
452
|
-
"@smithy/property-provider" "^4.0.2"
|
|
453
|
-
"@smithy/shared-ini-file-loader" "^4.0.2"
|
|
454
|
-
"@smithy/types" "^4.2.0"
|
|
455
|
-
tslib "^2.6.2"
|
|
456
|
-
|
|
457
362
|
"@aws-sdk/credential-provider-sso@3.787.0":
|
|
458
363
|
version "3.787.0"
|
|
459
364
|
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.787.0.tgz#77ab6c01e4497d7ff2e6c7f081f3d8695744884b"
|
|
@@ -468,18 +373,6 @@
|
|
|
468
373
|
"@smithy/types" "^4.2.0"
|
|
469
374
|
tslib "^2.6.2"
|
|
470
375
|
|
|
471
|
-
"@aws-sdk/credential-provider-web-identity@3.777.0":
|
|
472
|
-
version "3.777.0"
|
|
473
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.777.0.tgz#4f36ccd876fd045e2bfd7678287d381a5430e7b9"
|
|
474
|
-
integrity sha512-uGCqr47fnthkqwq5luNl2dksgcpHHjSXz2jUra7TXtFOpqvnhOW8qXjoa1ivlkq8qhqlaZwCzPdbcN0lXpmLzQ==
|
|
475
|
-
dependencies:
|
|
476
|
-
"@aws-sdk/core" "3.775.0"
|
|
477
|
-
"@aws-sdk/nested-clients" "3.777.0"
|
|
478
|
-
"@aws-sdk/types" "3.775.0"
|
|
479
|
-
"@smithy/property-provider" "^4.0.2"
|
|
480
|
-
"@smithy/types" "^4.2.0"
|
|
481
|
-
tslib "^2.6.2"
|
|
482
|
-
|
|
483
376
|
"@aws-sdk/credential-provider-web-identity@3.787.0":
|
|
484
377
|
version "3.787.0"
|
|
485
378
|
resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.787.0.tgz#d492d1f4a90b70f3a71a65f11b8d3ef79fb2759e"
|
|
@@ -601,19 +494,6 @@
|
|
|
601
494
|
"@smithy/types" "^4.2.0"
|
|
602
495
|
tslib "^2.6.2"
|
|
603
496
|
|
|
604
|
-
"@aws-sdk/middleware-user-agent@3.775.0":
|
|
605
|
-
version "3.775.0"
|
|
606
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.775.0.tgz#66950672df55ddb32062baa4d92c67b3b67dfa65"
|
|
607
|
-
integrity sha512-7Lffpr1ptOEDE1ZYH1T78pheEY1YmeXWBfFt/amZ6AGsKSLG+JPXvof3ltporTGR2bhH/eJPo7UHCglIuXfzYg==
|
|
608
|
-
dependencies:
|
|
609
|
-
"@aws-sdk/core" "3.775.0"
|
|
610
|
-
"@aws-sdk/types" "3.775.0"
|
|
611
|
-
"@aws-sdk/util-endpoints" "3.775.0"
|
|
612
|
-
"@smithy/core" "^3.2.0"
|
|
613
|
-
"@smithy/protocol-http" "^5.1.0"
|
|
614
|
-
"@smithy/types" "^4.2.0"
|
|
615
|
-
tslib "^2.6.2"
|
|
616
|
-
|
|
617
497
|
"@aws-sdk/middleware-user-agent@3.787.0":
|
|
618
498
|
version "3.787.0"
|
|
619
499
|
resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.787.0.tgz#3d657c0ba1aec72bca079f4691ba20f25569fcfc"
|
|
@@ -627,50 +507,6 @@
|
|
|
627
507
|
"@smithy/types" "^4.2.0"
|
|
628
508
|
tslib "^2.6.2"
|
|
629
509
|
|
|
630
|
-
"@aws-sdk/nested-clients@3.777.0":
|
|
631
|
-
version "3.777.0"
|
|
632
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.777.0.tgz#e3b72bdebe4b60364ff82aff6c272aa163404196"
|
|
633
|
-
integrity sha512-bmmVRsCjuYlStYPt06hr+f8iEyWg7+AklKCA8ZLDEJujXhXIowgUIqXmqpTkXwkVvDQ9tzU7hxaONjyaQCGybA==
|
|
634
|
-
dependencies:
|
|
635
|
-
"@aws-crypto/sha256-browser" "5.2.0"
|
|
636
|
-
"@aws-crypto/sha256-js" "5.2.0"
|
|
637
|
-
"@aws-sdk/core" "3.775.0"
|
|
638
|
-
"@aws-sdk/middleware-host-header" "3.775.0"
|
|
639
|
-
"@aws-sdk/middleware-logger" "3.775.0"
|
|
640
|
-
"@aws-sdk/middleware-recursion-detection" "3.775.0"
|
|
641
|
-
"@aws-sdk/middleware-user-agent" "3.775.0"
|
|
642
|
-
"@aws-sdk/region-config-resolver" "3.775.0"
|
|
643
|
-
"@aws-sdk/types" "3.775.0"
|
|
644
|
-
"@aws-sdk/util-endpoints" "3.775.0"
|
|
645
|
-
"@aws-sdk/util-user-agent-browser" "3.775.0"
|
|
646
|
-
"@aws-sdk/util-user-agent-node" "3.775.0"
|
|
647
|
-
"@smithy/config-resolver" "^4.1.0"
|
|
648
|
-
"@smithy/core" "^3.2.0"
|
|
649
|
-
"@smithy/fetch-http-handler" "^5.0.2"
|
|
650
|
-
"@smithy/hash-node" "^4.0.2"
|
|
651
|
-
"@smithy/invalid-dependency" "^4.0.2"
|
|
652
|
-
"@smithy/middleware-content-length" "^4.0.2"
|
|
653
|
-
"@smithy/middleware-endpoint" "^4.1.0"
|
|
654
|
-
"@smithy/middleware-retry" "^4.1.0"
|
|
655
|
-
"@smithy/middleware-serde" "^4.0.3"
|
|
656
|
-
"@smithy/middleware-stack" "^4.0.2"
|
|
657
|
-
"@smithy/node-config-provider" "^4.0.2"
|
|
658
|
-
"@smithy/node-http-handler" "^4.0.4"
|
|
659
|
-
"@smithy/protocol-http" "^5.1.0"
|
|
660
|
-
"@smithy/smithy-client" "^4.2.0"
|
|
661
|
-
"@smithy/types" "^4.2.0"
|
|
662
|
-
"@smithy/url-parser" "^4.0.2"
|
|
663
|
-
"@smithy/util-base64" "^4.0.0"
|
|
664
|
-
"@smithy/util-body-length-browser" "^4.0.0"
|
|
665
|
-
"@smithy/util-body-length-node" "^4.0.0"
|
|
666
|
-
"@smithy/util-defaults-mode-browser" "^4.0.8"
|
|
667
|
-
"@smithy/util-defaults-mode-node" "^4.0.8"
|
|
668
|
-
"@smithy/util-endpoints" "^3.0.2"
|
|
669
|
-
"@smithy/util-middleware" "^4.0.2"
|
|
670
|
-
"@smithy/util-retry" "^4.0.2"
|
|
671
|
-
"@smithy/util-utf8" "^4.0.0"
|
|
672
|
-
tslib "^2.6.2"
|
|
673
|
-
|
|
674
510
|
"@aws-sdk/nested-clients@3.787.0":
|
|
675
511
|
version "3.787.0"
|
|
676
512
|
resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.787.0.tgz#e8a5a6e7d0b599a7f9f15b900d3223ad080b0a81"
|
|
@@ -739,18 +575,6 @@
|
|
|
739
575
|
"@smithy/types" "^4.2.0"
|
|
740
576
|
tslib "^2.6.2"
|
|
741
577
|
|
|
742
|
-
"@aws-sdk/token-providers@3.777.0":
|
|
743
|
-
version "3.777.0"
|
|
744
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.777.0.tgz#aeaae6db96e7e00a4d5e3325d0436d5c52310adb"
|
|
745
|
-
integrity sha512-Yc2cDONsHOa4dTSGOev6Ng2QgTKQUEjaUnsyKd13pc/nLLz/WLqHiQ/o7PcnKERJxXGs1g1C6l3sNXiX+kbnFQ==
|
|
746
|
-
dependencies:
|
|
747
|
-
"@aws-sdk/nested-clients" "3.777.0"
|
|
748
|
-
"@aws-sdk/types" "3.775.0"
|
|
749
|
-
"@smithy/property-provider" "^4.0.2"
|
|
750
|
-
"@smithy/shared-ini-file-loader" "^4.0.2"
|
|
751
|
-
"@smithy/types" "^4.2.0"
|
|
752
|
-
tslib "^2.6.2"
|
|
753
|
-
|
|
754
578
|
"@aws-sdk/token-providers@3.787.0":
|
|
755
579
|
version "3.787.0"
|
|
756
580
|
resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.787.0.tgz#18c761fb21ee25c8c3a35703876f0c733b4ae743"
|
|
@@ -786,16 +610,6 @@
|
|
|
786
610
|
dependencies:
|
|
787
611
|
tslib "^2.6.2"
|
|
788
612
|
|
|
789
|
-
"@aws-sdk/util-endpoints@3.775.0":
|
|
790
|
-
version "3.775.0"
|
|
791
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.775.0.tgz#2f6fd728c86aeb1fba38506161b2eb024de17c19"
|
|
792
|
-
integrity sha512-yjWmUgZC9tUxAo8Uaplqmq0eUh0zrbZJdwxGRKdYxfm4RG6fMw1tj52+KkatH7o+mNZvg1GDcVp/INktxonJLw==
|
|
793
|
-
dependencies:
|
|
794
|
-
"@aws-sdk/types" "3.775.0"
|
|
795
|
-
"@smithy/types" "^4.2.0"
|
|
796
|
-
"@smithy/util-endpoints" "^3.0.2"
|
|
797
|
-
tslib "^2.6.2"
|
|
798
|
-
|
|
799
613
|
"@aws-sdk/util-endpoints@3.787.0":
|
|
800
614
|
version "3.787.0"
|
|
801
615
|
resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.787.0.tgz#1398f0bd87f19e615ae920c73e16d9d5e5cb76d1"
|
|
@@ -823,17 +637,6 @@
|
|
|
823
637
|
bowser "^2.11.0"
|
|
824
638
|
tslib "^2.6.2"
|
|
825
639
|
|
|
826
|
-
"@aws-sdk/util-user-agent-node@3.775.0":
|
|
827
|
-
version "3.775.0"
|
|
828
|
-
resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.775.0.tgz#dbc34ff2d84e2c3d10466081cad005d49c3d9740"
|
|
829
|
-
integrity sha512-N9yhTevbizTOMo3drH7Eoy6OkJ3iVPxhV7dwb6CMAObbLneS36CSfA6xQXupmHWcRvZPTz8rd1JGG3HzFOau+g==
|
|
830
|
-
dependencies:
|
|
831
|
-
"@aws-sdk/middleware-user-agent" "3.775.0"
|
|
832
|
-
"@aws-sdk/types" "3.775.0"
|
|
833
|
-
"@smithy/node-config-provider" "^4.0.2"
|
|
834
|
-
"@smithy/types" "^4.2.0"
|
|
835
|
-
tslib "^2.6.2"
|
|
836
|
-
|
|
837
640
|
"@aws-sdk/util-user-agent-node@3.787.0":
|
|
838
641
|
version "3.787.0"
|
|
839
642
|
resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.787.0.tgz#58e63e99586cde1c1314f74b94596780321442f5"
|
|
@@ -2412,10 +2215,10 @@
|
|
|
2412
2215
|
strip-ansi "6.0.1"
|
|
2413
2216
|
ts-retry-promise "^0.8.1"
|
|
2414
2217
|
|
|
2415
|
-
"@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.2", "@salesforce/core@^8.8.6", "@salesforce/core@^8.
|
|
2416
|
-
version "8.
|
|
2417
|
-
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-8.
|
|
2418
|
-
integrity sha512-
|
|
2218
|
+
"@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.2", "@salesforce/core@^8.8.6", "@salesforce/core@^8.9.0":
|
|
2219
|
+
version "8.9.1"
|
|
2220
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-8.9.1.tgz#e31d307d495cc0b916c0b9312fba751714034e0a"
|
|
2221
|
+
integrity sha512-Q1evH4WD7IYWgbcIYCUDi3FTEMgy1KLVg4Xa4GacKLNcOBfom5s6whNsz3gUFESqjndGDwV5Pbgpi0ImC17PfQ==
|
|
2419
2222
|
dependencies:
|
|
2420
2223
|
"@jsforce/jsforce-node" "^3.7.0"
|
|
2421
2224
|
"@salesforce/kit" "^3.2.2"
|
|
@@ -3604,10 +3407,10 @@
|
|
|
3604
3407
|
resolved "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz"
|
|
3605
3408
|
integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==
|
|
3606
3409
|
|
|
3607
|
-
"@types/ws@^8.18.
|
|
3608
|
-
version "8.18.
|
|
3609
|
-
resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.18.
|
|
3610
|
-
integrity sha512-
|
|
3410
|
+
"@types/ws@^8.18.1":
|
|
3411
|
+
version "8.18.1"
|
|
3412
|
+
resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.18.1.tgz#48464e4bf2ddfd17db13d845467f6070ffea4aa9"
|
|
3413
|
+
integrity sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==
|
|
3611
3414
|
dependencies:
|
|
3612
3415
|
"@types/node" "*"
|
|
3613
3416
|
|
|
@@ -6094,12 +5897,12 @@ eslint-plugin-jsdoc@^46.10.1:
|
|
|
6094
5897
|
semver "^7.5.4"
|
|
6095
5898
|
spdx-expression-parse "^4.0.0"
|
|
6096
5899
|
|
|
6097
|
-
eslint-plugin-sf-plugin@^1.20.
|
|
6098
|
-
version "1.20.
|
|
6099
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.20.
|
|
6100
|
-
integrity sha512-
|
|
5900
|
+
eslint-plugin-sf-plugin@^1.20.19:
|
|
5901
|
+
version "1.20.19"
|
|
5902
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.20.19.tgz#e13f4bc60fab1f8b76b6bff2c11558e9ce4a3d00"
|
|
5903
|
+
integrity sha512-HBvwvwZ/YcnZxq/h2tdUc9ch8KzsGQL2JtKm76J2yiILuLywuKnMALVKCn3tuBCtFW/OUUWNa7cR56ipU6Uh8w==
|
|
6101
5904
|
dependencies:
|
|
6102
|
-
"@salesforce/core" "^8.
|
|
5905
|
+
"@salesforce/core" "^8.9.0"
|
|
6103
5906
|
"@typescript-eslint/utils" "^7.18.0"
|
|
6104
5907
|
|
|
6105
5908
|
eslint-plugin-unicorn@^50.0.1:
|
|
@@ -9824,12 +9627,12 @@ object.values@^1.1.7:
|
|
|
9824
9627
|
define-properties "^1.2.0"
|
|
9825
9628
|
es-abstract "^1.22.1"
|
|
9826
9629
|
|
|
9827
|
-
oclif@^4.17.
|
|
9828
|
-
version "4.17.
|
|
9829
|
-
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.17.
|
|
9830
|
-
integrity sha512-
|
|
9630
|
+
oclif@^4.17.44:
|
|
9631
|
+
version "4.17.44"
|
|
9632
|
+
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.17.44.tgz#13df89d893df41fd1d312d603091aaed68f770db"
|
|
9633
|
+
integrity sha512-w05L5LKhPiKT5uAn1yzMV+5EpwNvUrJKIlgtzBm4QxMlQ+MsBVclnCXoji1s+Kr0kZd8aC3x8q6VYiuoCxRuZQ==
|
|
9831
9634
|
dependencies:
|
|
9832
|
-
"@aws-sdk/client-cloudfront" "^3.
|
|
9635
|
+
"@aws-sdk/client-cloudfront" "^3.787.0"
|
|
9833
9636
|
"@aws-sdk/client-s3" "^3.782.0"
|
|
9834
9637
|
"@inquirer/confirm" "^3.1.22"
|
|
9835
9638
|
"@inquirer/input" "^2.2.4"
|
|
@@ -9894,20 +9697,20 @@ onetime@^7.0.0:
|
|
|
9894
9697
|
dependencies:
|
|
9895
9698
|
mimic-function "^5.0.0"
|
|
9896
9699
|
|
|
9897
|
-
open@^10.0.2, open@^10.1.
|
|
9898
|
-
version "10.1.
|
|
9899
|
-
resolved "https://registry.
|
|
9900
|
-
integrity sha512-
|
|
9700
|
+
open@^10.0.2, open@^10.1.1:
|
|
9701
|
+
version "10.1.1"
|
|
9702
|
+
resolved "https://registry.yarnpkg.com/open/-/open-10.1.1.tgz#5fd814699e47ae3e1a09962d39f4f4441cae6c22"
|
|
9703
|
+
integrity sha512-zy1wx4+P3PfhXSEPJNtZmJXfhkkIaxU1VauWIrDZw1O7uJRDRJtKr9n3Ic4NgbA16KyOxOXO2ng9gYwCdXuSXA==
|
|
9901
9704
|
dependencies:
|
|
9902
9705
|
default-browser "^5.2.1"
|
|
9903
9706
|
define-lazy-prop "^3.0.0"
|
|
9904
9707
|
is-inside-container "^1.0.0"
|
|
9905
9708
|
is-wsl "^3.1.0"
|
|
9906
9709
|
|
|
9907
|
-
openai@^4.
|
|
9908
|
-
version "4.
|
|
9909
|
-
resolved "https://registry.yarnpkg.com/openai/-/openai-4.
|
|
9910
|
-
integrity sha512-
|
|
9710
|
+
openai@^4.95.1:
|
|
9711
|
+
version "4.95.1"
|
|
9712
|
+
resolved "https://registry.yarnpkg.com/openai/-/openai-4.95.1.tgz#7157697c2b150a546b13eb860180c4a6058051da"
|
|
9713
|
+
integrity sha512-IqJy+ymeW+k/Wq+2YVN3693OQMMcODRtHEYOlz263MdUwnN/Dwdl9c2EXSxLLtGEHkSHAfvzpDMHI5MaWJKXjQ==
|
|
9911
9714
|
dependencies:
|
|
9912
9715
|
"@types/node" "^18.11.18"
|
|
9913
9716
|
"@types/node-fetch" "^2.6.4"
|
package/oclif.manifest.json
CHANGED
|
@@ -781,7 +781,7 @@
|
|
|
781
781
|
"hardis:doc:project2markdown": {
|
|
782
782
|
"aliases": [],
|
|
783
783
|
"args": {},
|
|
784
|
-
"description": "Generates a markdown documentation from a SFDX project\n\n- Objects\n- Flows\n- Apex\n- Lightning Pages\n- SFDX-Hardis Config\n- Branches & Orgs\n- Installed Packages\n- Manifests\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\n- You can customize the pages following [mkdocs-material setup documentation](https://squidfunk.github.io/mkdocs-material/setup/)\n- You can manually add new markdown files in the \"docs\" folder to extend this documentation and add references to them in \"mkdocs.yml\"\n- You can also add images in folder \"docs/assets\" and embed them in markdown files.\n\nTo read Flow documentations if your markdown reader doesn't handle MermaidJS syntax, this command could require @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\nIf Flow history doc always display a single state, you probably need to update your workflow configuration:\n\n- on Gitlab: Env variable [`GIT_FETCH_EXTRA_FLAGS: --depth 10000`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.gitlab-ci.yml#L11)\n- on GitHub: [`fetch-depth: 0`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.github/workflows/org-monitoring.yml#L58)\n- on Azure: [`fetchDepth: \"0\"`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/azure-pipelines.yml#L39)\n- on Bitbucket: [`step: clone: depth: full`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/bitbucket-pipelines.yml#L18)\n\n\n\n\n\n\n\n\n\n\nIf it is a sfdx-hardis CI/CD project, a diagram of the branches and orgs strategy will be generated.\n\n\n\nIf [AI integration](https://sfdx-hardis.cloudity.com/salesforce-ai-setup/) is configured, documentation will contain a summary of the Flow.\n\nIf you have a complex strategy, you might need to input property **mergeTargets** in branch-scoped sfdx-hardis.yml file to have a correct diagram.\n\n## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need [**Python**](https://www.python.org/downloads/) on your computer)\n\n```python\npip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || python -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists\nmkdocs serve -v || python -m mkdocs serve -v || py -m mkdocs serve -v\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build -v || python -m mkdocs build -v || py -m mkdocs build -v`\n\n",
|
|
784
|
+
"description": "Generates a markdown documentation from a SFDX project\n\n- Objects\n- Flows\n- Apex\n- Lightning Pages\n- SFDX-Hardis Config\n- Branches & Orgs\n- Installed Packages\n- Manifests\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\n- You can customize the pages following [mkdocs-material setup documentation](https://squidfunk.github.io/mkdocs-material/setup/)\n- You can manually add new markdown files in the \"docs\" folder to extend this documentation and add references to them in \"mkdocs.yml\"\n- You can also add images in folder \"docs/assets\" and embed them in markdown files.\n\nTo read Flow documentations if your markdown reader doesn't handle MermaidJS syntax, this command could require @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\nIf Flow history doc always display a single state, you probably need to update your workflow configuration:\n\n- on Gitlab: Env variable [`GIT_FETCH_EXTRA_FLAGS: --depth 10000`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.gitlab-ci.yml#L11)\n- on GitHub: [`fetch-depth: 0`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.github/workflows/org-monitoring.yml#L58)\n- on Azure: [`fetchDepth: \"0\"`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/azure-pipelines.yml#L39)\n- on Bitbucket: [`step: clone: depth: full`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/bitbucket-pipelines.yml#L18)\n\n\n\n\n\n\n\n\n\n\n\nIf it is a sfdx-hardis CI/CD project, a diagram of the branches and orgs strategy will be generated.\n\n\n\nIf [AI integration](https://sfdx-hardis.cloudity.com/salesforce-ai-setup/) is configured, documentation will contain a summary of the Flow.\n\nIf you have a complex strategy, you might need to input property **mergeTargets** in branch-scoped sfdx-hardis.yml file to have a correct diagram.\n\n## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need [**Python**](https://www.python.org/downloads/) on your computer)\n\n```python\npip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || python -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists\nmkdocs serve -v || python -m mkdocs serve -v || py -m mkdocs serve -v\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build -v || python -m mkdocs build -v || py -m mkdocs build -v`\n\n",
|
|
785
785
|
"examples": [
|
|
786
786
|
"$ sf hardis:doc:project2markdown",
|
|
787
787
|
"$ sf hardis:doc:project2markdown --with-history",
|
|
@@ -1041,7 +1041,7 @@
|
|
|
1041
1041
|
"hardis:lint:metadatastatus": {
|
|
1042
1042
|
"aliases": [],
|
|
1043
1043
|
"args": {},
|
|
1044
|
-
"description": "Check if elements
|
|
1044
|
+
"description": "Check if elements are inactive in the project:\n\n- Approval Processes\n- Assignment Rules\n- Auto Response Rules\n- Escalation Rules\n- Flows\n- Forecasting Types\n- Record Types\n- Validation Rules\n- Workflow Rules\n\n\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-inactive-metadata/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
1045
1045
|
"examples": [
|
|
1046
1046
|
"$ sf hardis:lint:metadatastatus"
|
|
1047
1047
|
],
|
|
@@ -14525,5 +14525,5 @@
|
|
|
14525
14525
|
]
|
|
14526
14526
|
}
|
|
14527
14527
|
},
|
|
14528
|
-
"version": "5.
|
|
14528
|
+
"version": "5.28.0"
|
|
14529
14529
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Swiss-army-knife Toolbox for Salesforce.\n Allows you to define a complete CD/CD Pipeline.\n Orchestrate base commands and assist users with interactive wizards",
|
|
4
4
|
"author": "NicolasVuillamy @nvuillam",
|
|
5
5
|
"bugs": "https://github.com/hardisgroupcom/sfdx-hardis/issues",
|
|
6
|
-
"version": "5.
|
|
6
|
+
"version": "5.28.0",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@actions/github": "^6.0.0",
|
|
9
9
|
"@cparra/apexdocs": "^3.11.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"md-to-pdf": "^5.2.4",
|
|
49
49
|
"mega-linter-runner": "^8.5.0",
|
|
50
50
|
"moment": "^2.30.1",
|
|
51
|
-
"open": "^10.1.
|
|
52
|
-
"openai": "^4.
|
|
51
|
+
"open": "^10.1.1",
|
|
52
|
+
"openai": "^4.95.1",
|
|
53
53
|
"ora": "^8.2.0",
|
|
54
54
|
"papaparse": "^5.5.2",
|
|
55
55
|
"pascalcase": "^2.0.0",
|
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"@types/sort-array": "^4.1.2",
|
|
92
92
|
"@types/update-notifier": "^6.0.8",
|
|
93
93
|
"@types/which": "^3.0.4",
|
|
94
|
-
"@types/ws": "^8.18.
|
|
94
|
+
"@types/ws": "^8.18.1",
|
|
95
95
|
"@types/xml2js": "^0.4.14",
|
|
96
|
-
"eslint-plugin-sf-plugin": "^1.20.
|
|
97
|
-
"oclif": "^4.17.
|
|
96
|
+
"eslint-plugin-sf-plugin": "^1.20.19",
|
|
97
|
+
"oclif": "^4.17.44",
|
|
98
98
|
"ts-node": "^10.9.2",
|
|
99
99
|
"typescript": "^5.8.3"
|
|
100
100
|
},
|