@pnp/cli-microsoft365 10.4.0 → 10.5.0-beta.31351d1
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/.eslintrc.cjs +1 -0
- package/README.md +1 -1
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Auth.js +61 -3
- package/dist/appInsights.js +10 -4
- package/dist/m365/booking/commands/business/business-get.js +0 -3
- package/dist/m365/commands/login.js +3 -0
- package/dist/m365/entra/commands/user/user-guest-add.js +0 -3
- package/dist/m365/flow/commands/environment/environment-get.js +0 -3
- package/dist/m365/flow/commands/flow-get.js +0 -3
- package/dist/m365/flow/commands/run/run-get.js +0 -3
- package/dist/m365/graph/commands/directoryextension/directoryextension-add.js +85 -0
- package/dist/m365/graph/commands/directoryextension/directoryextension-get.js +82 -0
- package/dist/m365/graph/commands/directoryextension/directoryextension-remove.js +93 -0
- package/dist/m365/graph/commands.js +3 -0
- package/dist/m365/pa/commands/app/app-get.js +0 -3
- package/dist/m365/pa/commands/environment/environment-get.js +0 -3
- package/dist/m365/planner/commands/bucket/bucket-add.js +0 -3
- package/dist/m365/planner/commands/plan/plan-add.js +0 -3
- package/dist/m365/planner/commands/plan/plan-get.js +0 -3
- package/dist/m365/planner/commands/plan/plan-set.js +0 -3
- package/dist/m365/planner/commands/task/task-checklistitem-add.js +0 -3
- package/dist/m365/pp/commands/aibuildermodel/aibuildermodel-get.js +0 -3
- package/dist/m365/pp/commands/card/card-get.js +0 -3
- package/dist/m365/pp/commands/copilot/copilot-get.js +0 -3
- package/dist/m365/pp/commands/dataverse/dataverse-table-get.js +0 -3
- package/dist/m365/pp/commands/environment/environment-get.js +0 -3
- package/dist/m365/pp/commands/solution/solution-get.js +0 -3
- package/dist/m365/pp/commands/solution/solution-publisher-get.js +0 -3
- package/dist/m365/pp/commands/website/website-get.js +0 -3
- package/dist/m365/spo/commands/group/group-member-add.js +0 -3
- package/dist/m365/spo/commands/homesite/homesite-add.js +66 -0
- package/dist/m365/spo/commands/page/page-copy.js +0 -3
- package/dist/m365/spo/commands/page/page-get.js +0 -3
- package/dist/m365/spo/commands/page/page-header-set.js +47 -10
- package/dist/m365/spo/commands/page/page-section-remove.js +81 -0
- package/dist/m365/spo/commands/sitedesign/sitedesign-run-status-get.js +0 -3
- package/dist/m365/spo/commands.js +2 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-health-get.js +0 -3
- package/dist/m365/todo/commands/list/list-get.js +0 -3
- package/dist/m365/todo/commands/task/task-get.js +0 -3
- package/dist/m365/viva/commands/engage/engage-community-user-add.js +113 -0
- package/dist/m365/viva/commands/engage/engage-community-user-remove.js +107 -0
- package/dist/m365/viva/commands/engage/engage-message-add.js +0 -3
- package/dist/m365/viva/commands/engage/engage-message-get.js +0 -3
- package/dist/m365/viva/commands/engage/engage-user-get.js +0 -3
- package/dist/m365/viva/commands.js +2 -0
- package/dist/request.js +5 -0
- package/dist/utils/directoryExtension.js +25 -0
- package/dist/utils/entraApp.js +28 -0
- package/docs/docs/cmd/booking/business/business-get.mdx +13 -0
- package/docs/docs/cmd/entra/user/user-guest-add.mdx +11 -0
- package/docs/docs/cmd/flow/environment/environment-get.mdx +2 -0
- package/docs/docs/cmd/flow/flow-get.mdx +2 -0
- package/docs/docs/cmd/flow/run/run-get.mdx +17 -13
- package/docs/docs/cmd/graph/directoryextension/directoryextension-add.mdx +123 -0
- package/docs/docs/cmd/graph/directoryextension/directoryextension-get.mdx +118 -0
- package/docs/docs/cmd/graph/directoryextension/directoryextension-remove.mdx +57 -0
- package/docs/docs/cmd/login.mdx +9 -1
- package/docs/docs/cmd/pa/app/app-get.mdx +8 -2
- package/docs/docs/cmd/pa/environment/environment-get.mdx +5 -3
- package/docs/docs/cmd/planner/plan/plan-add.mdx +2 -0
- package/docs/docs/cmd/planner/plan/plan-get.mdx +8 -4
- package/docs/docs/cmd/planner/plan/plan-set.mdx +2 -0
- package/docs/docs/cmd/planner/task/task-checklistitem-add.mdx +6 -3
- package/docs/docs/cmd/pp/aibuildermodel/aibuildermodel-get.mdx +12 -3
- package/docs/docs/cmd/pp/card/card-get.mdx +36 -5
- package/docs/docs/cmd/pp/copilot/copilot-get.mdx +41 -5
- package/docs/docs/cmd/pp/dataverse/dataverse-table-get.mdx +19 -4
- package/docs/docs/cmd/pp/environment/environment-get.mdx +5 -2
- package/docs/docs/cmd/pp/solution/solution-get.mdx +12 -7
- package/docs/docs/cmd/pp/solution/solution-publisher-get.mdx +12 -7
- package/docs/docs/cmd/pp/website/website-get.mdx +22 -4
- package/docs/docs/cmd/spo/group/group-member-add.mdx +12 -3
- package/docs/docs/cmd/spo/homesite/homesite-add.mdx +124 -0
- package/docs/docs/cmd/spo/page/page-copy.mdx +30 -4
- package/docs/docs/cmd/spo/page/page-get.mdx +44 -5
- package/docs/docs/cmd/spo/page/page-section-remove.mdx +47 -0
- package/docs/docs/cmd/spo/sitedesign/sitedesign-run-status-get.mdx +7 -0
- package/docs/docs/cmd/todo/list/list-get.mdx +7 -4
- package/docs/docs/cmd/todo/task/task-get.mdx +7 -2
- package/docs/docs/cmd/viva/engage/engage-community-user-add.mdx +67 -0
- package/docs/docs/cmd/viva/engage/engage-community-user-remove.mdx +55 -0
- package/docs/docs/cmd/viva/engage/engage-message-add.mdx +37 -12
- package/docs/docs/cmd/viva/engage/engage-message-get.mdx +27 -13
- package/docs/docs/cmd/viva/engage/engage-user-get.mdx +50 -8
- package/npm-shrinkwrap.json +99 -86
- package/package.json +15 -15
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.5.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@pnp/cli-microsoft365",
|
|
9
|
-
"version": "10.
|
|
9
|
+
"version": "10.5.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@azure/msal-common": "^15.
|
|
13
|
-
"@azure/msal-node": "^3.2.
|
|
14
|
-
"@inquirer/confirm": "^5.1.
|
|
15
|
-
"@inquirer/input": "^4.1.
|
|
16
|
-
"@inquirer/select": "^4.0.
|
|
17
|
-
"@xmldom/xmldom": "^0.9.
|
|
18
|
-
"adaptive-expressions": "^4.23.
|
|
12
|
+
"@azure/msal-common": "^15.2.0",
|
|
13
|
+
"@azure/msal-node": "^3.2.3",
|
|
14
|
+
"@inquirer/confirm": "^5.1.6",
|
|
15
|
+
"@inquirer/input": "^4.1.6",
|
|
16
|
+
"@inquirer/select": "^4.0.9",
|
|
17
|
+
"@xmldom/xmldom": "^0.9.8",
|
|
18
|
+
"adaptive-expressions": "^4.23.2",
|
|
19
19
|
"adaptivecards": "^3.0.5",
|
|
20
20
|
"adaptivecards-templating": "^2.3.1",
|
|
21
21
|
"adm-zip": "^0.5.16",
|
|
22
22
|
"applicationinsights": "^3.5.0",
|
|
23
|
-
"axios": "^1.
|
|
23
|
+
"axios": "^1.8.2",
|
|
24
24
|
"chalk": "^5.4.1",
|
|
25
25
|
"clipboardy": "^4.0.0",
|
|
26
26
|
"configstore": "^7.0.0",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"open": "^10.1.0",
|
|
35
35
|
"semver": "^7.7.1",
|
|
36
36
|
"strip-json-comments": "^5.0.1",
|
|
37
|
-
"typescript": "^5.
|
|
37
|
+
"typescript": "^5.8.2",
|
|
38
38
|
"update-notifier": "^7.3.1",
|
|
39
|
-
"uuid": "^11.0
|
|
39
|
+
"uuid": "^11.1.0",
|
|
40
40
|
"yaml": "^2.7.0",
|
|
41
41
|
"yargs-parser": "^21.1.1",
|
|
42
|
-
"zod": "^3.24.
|
|
42
|
+
"zod": "^3.24.2"
|
|
43
43
|
},
|
|
44
44
|
"bin": {
|
|
45
45
|
"m365": "dist/index.js",
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
"@types/json-schema": "^7.0.15",
|
|
56
56
|
"@types/json-to-ast": "^2.1.4",
|
|
57
57
|
"@types/mocha": "^10.0.10",
|
|
58
|
-
"@types/node": "^22.13.
|
|
58
|
+
"@types/node": "^22.13.9",
|
|
59
59
|
"@types/node-forge": "^1.3.11",
|
|
60
60
|
"@types/omelette": "^0.4.4",
|
|
61
61
|
"@types/semver": "^7.5.8",
|
|
62
|
-
"@types/sinon": "^17.0.
|
|
62
|
+
"@types/sinon": "^17.0.4",
|
|
63
63
|
"@types/update-notifier": "^6.0.8",
|
|
64
64
|
"@types/uuid": "^10.0.0",
|
|
65
65
|
"@types/yargs-parser": "^21.0.3",
|
|
@@ -423,19 +423,21 @@
|
|
|
423
423
|
}
|
|
424
424
|
},
|
|
425
425
|
"node_modules/@azure/msal-common": {
|
|
426
|
-
"version": "15.
|
|
427
|
-
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.
|
|
428
|
-
"integrity": "sha512-
|
|
426
|
+
"version": "15.2.0",
|
|
427
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.2.0.tgz",
|
|
428
|
+
"integrity": "sha512-HiYfGAKthisUYqHG1nImCf/uzcyS31wng3o+CycWLIM9chnYJ9Lk6jZ30Y6YiYYpTQ9+z/FGUpiKKekd3Arc0A==",
|
|
429
|
+
"license": "MIT",
|
|
429
430
|
"engines": {
|
|
430
431
|
"node": ">=0.8.0"
|
|
431
432
|
}
|
|
432
433
|
},
|
|
433
434
|
"node_modules/@azure/msal-node": {
|
|
434
|
-
"version": "3.2.
|
|
435
|
-
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.2.
|
|
436
|
-
"integrity": "sha512-
|
|
435
|
+
"version": "3.2.3",
|
|
436
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.2.3.tgz",
|
|
437
|
+
"integrity": "sha512-0eaPqBIWEAizeYiXdeHb09Iq0tvHJ17ztvNEaLdr/KcJJhJxbpkkEQf09DB+vKlFE0tzYi7j4rYLTXtES/InEQ==",
|
|
438
|
+
"license": "MIT",
|
|
437
439
|
"dependencies": {
|
|
438
|
-
"@azure/msal-common": "15.
|
|
440
|
+
"@azure/msal-common": "15.2.0",
|
|
439
441
|
"jsonwebtoken": "^9.0.0",
|
|
440
442
|
"uuid": "^8.3.0"
|
|
441
443
|
},
|
|
@@ -707,11 +709,12 @@
|
|
|
707
709
|
"dev": true
|
|
708
710
|
},
|
|
709
711
|
"node_modules/@inquirer/confirm": {
|
|
710
|
-
"version": "5.1.
|
|
711
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.
|
|
712
|
-
"integrity": "sha512-
|
|
712
|
+
"version": "5.1.6",
|
|
713
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.6.tgz",
|
|
714
|
+
"integrity": "sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==",
|
|
715
|
+
"license": "MIT",
|
|
713
716
|
"dependencies": {
|
|
714
|
-
"@inquirer/core": "^10.1.
|
|
717
|
+
"@inquirer/core": "^10.1.7",
|
|
715
718
|
"@inquirer/type": "^3.0.4"
|
|
716
719
|
},
|
|
717
720
|
"engines": {
|
|
@@ -727,9 +730,10 @@
|
|
|
727
730
|
}
|
|
728
731
|
},
|
|
729
732
|
"node_modules/@inquirer/core": {
|
|
730
|
-
"version": "10.1.
|
|
731
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.
|
|
732
|
-
"integrity": "sha512-
|
|
733
|
+
"version": "10.1.7",
|
|
734
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.7.tgz",
|
|
735
|
+
"integrity": "sha512-AA9CQhlrt6ZgiSy6qoAigiA1izOa751ugX6ioSjqgJ+/Gd+tEN/TORk5sUYNjXuHWfW0r1n/a6ak4u/NqHHrtA==",
|
|
736
|
+
"license": "MIT",
|
|
733
737
|
"dependencies": {
|
|
734
738
|
"@inquirer/figures": "^1.0.10",
|
|
735
739
|
"@inquirer/type": "^3.0.4",
|
|
@@ -756,16 +760,18 @@
|
|
|
756
760
|
"version": "1.0.10",
|
|
757
761
|
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.10.tgz",
|
|
758
762
|
"integrity": "sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==",
|
|
763
|
+
"license": "MIT",
|
|
759
764
|
"engines": {
|
|
760
765
|
"node": ">=18"
|
|
761
766
|
}
|
|
762
767
|
},
|
|
763
768
|
"node_modules/@inquirer/input": {
|
|
764
|
-
"version": "4.1.
|
|
765
|
-
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.
|
|
766
|
-
"integrity": "sha512-
|
|
769
|
+
"version": "4.1.6",
|
|
770
|
+
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.6.tgz",
|
|
771
|
+
"integrity": "sha512-1f5AIsZuVjPT4ecA8AwaxDFNHny/tSershP/cTvTDxLdiIGTeILNcKozB0LaYt6mojJLUbOYhpIxicaYf7UKIQ==",
|
|
772
|
+
"license": "MIT",
|
|
767
773
|
"dependencies": {
|
|
768
|
-
"@inquirer/core": "^10.1.
|
|
774
|
+
"@inquirer/core": "^10.1.7",
|
|
769
775
|
"@inquirer/type": "^3.0.4"
|
|
770
776
|
},
|
|
771
777
|
"engines": {
|
|
@@ -781,11 +787,12 @@
|
|
|
781
787
|
}
|
|
782
788
|
},
|
|
783
789
|
"node_modules/@inquirer/select": {
|
|
784
|
-
"version": "4.0.
|
|
785
|
-
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.0.
|
|
786
|
-
"integrity": "sha512-
|
|
790
|
+
"version": "4.0.9",
|
|
791
|
+
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.0.9.tgz",
|
|
792
|
+
"integrity": "sha512-BpJyJe7Dkhv2kz7yG7bPSbJLQuu/rqyNlF1CfiiFeFwouegfH+zh13KDyt6+d9DwucKo7hqM3wKLLyJxZMO+Xg==",
|
|
793
|
+
"license": "MIT",
|
|
787
794
|
"dependencies": {
|
|
788
|
-
"@inquirer/core": "^10.1.
|
|
795
|
+
"@inquirer/core": "^10.1.7",
|
|
789
796
|
"@inquirer/figures": "^1.0.10",
|
|
790
797
|
"@inquirer/type": "^3.0.4",
|
|
791
798
|
"ansi-escapes": "^4.3.2",
|
|
@@ -1847,19 +1854,6 @@
|
|
|
1847
1854
|
"integrity": "sha512-131wOmuwDg8ypYCSQ437bGdP+K2lJ8GJUu+ng4iQQxAc3irRnb7mGHbexsPChBcKWLctTR9V5LJdX5A8WWk44A==",
|
|
1848
1855
|
"dev": true
|
|
1849
1856
|
},
|
|
1850
|
-
"node_modules/@types/lodash": {
|
|
1851
|
-
"version": "4.17.13",
|
|
1852
|
-
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.13.tgz",
|
|
1853
|
-
"integrity": "sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg=="
|
|
1854
|
-
},
|
|
1855
|
-
"node_modules/@types/lodash.isequal": {
|
|
1856
|
-
"version": "4.5.8",
|
|
1857
|
-
"resolved": "https://registry.npmjs.org/@types/lodash.isequal/-/lodash.isequal-4.5.8.tgz",
|
|
1858
|
-
"integrity": "sha512-uput6pg4E/tj2LGxCZo9+y27JNyB2OZuuI/T5F+ylVDYuqICLG2/ktjxx0v6GvVntAf8TvEzeQLcV0ffRirXuA==",
|
|
1859
|
-
"dependencies": {
|
|
1860
|
-
"@types/lodash": "*"
|
|
1861
|
-
}
|
|
1862
|
-
},
|
|
1863
1857
|
"node_modules/@types/lru-cache": {
|
|
1864
1858
|
"version": "5.1.1",
|
|
1865
1859
|
"resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
@@ -1880,9 +1874,9 @@
|
|
|
1880
1874
|
}
|
|
1881
1875
|
},
|
|
1882
1876
|
"node_modules/@types/node": {
|
|
1883
|
-
"version": "22.13.
|
|
1884
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.
|
|
1885
|
-
"integrity": "sha512-
|
|
1877
|
+
"version": "22.13.9",
|
|
1878
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.9.tgz",
|
|
1879
|
+
"integrity": "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==",
|
|
1886
1880
|
"license": "MIT",
|
|
1887
1881
|
"dependencies": {
|
|
1888
1882
|
"undici-types": "~6.20.0"
|
|
@@ -1933,10 +1927,11 @@
|
|
|
1933
1927
|
"integrity": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg=="
|
|
1934
1928
|
},
|
|
1935
1929
|
"node_modules/@types/sinon": {
|
|
1936
|
-
"version": "17.0.
|
|
1937
|
-
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-17.0.
|
|
1938
|
-
"integrity": "sha512-
|
|
1930
|
+
"version": "17.0.4",
|
|
1931
|
+
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-17.0.4.tgz",
|
|
1932
|
+
"integrity": "sha512-RHnIrhfPO3+tJT0s7cFaXGZvsL4bbR3/k7z3P312qMS4JaS2Tk+KiwiLx1S0rQ56ERj00u1/BtdyVd0FY+Pdew==",
|
|
1939
1933
|
"dev": true,
|
|
1934
|
+
"license": "MIT",
|
|
1940
1935
|
"dependencies": {
|
|
1941
1936
|
"@types/sinonjs__fake-timers": "*"
|
|
1942
1937
|
}
|
|
@@ -2171,9 +2166,10 @@
|
|
|
2171
2166
|
"dev": true
|
|
2172
2167
|
},
|
|
2173
2168
|
"node_modules/@xmldom/xmldom": {
|
|
2174
|
-
"version": "0.9.
|
|
2175
|
-
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.
|
|
2176
|
-
"integrity": "sha512-
|
|
2169
|
+
"version": "0.9.8",
|
|
2170
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.8.tgz",
|
|
2171
|
+
"integrity": "sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==",
|
|
2172
|
+
"license": "MIT",
|
|
2177
2173
|
"engines": {
|
|
2178
2174
|
"node": ">=14.6"
|
|
2179
2175
|
}
|
|
@@ -2207,14 +2203,14 @@
|
|
|
2207
2203
|
}
|
|
2208
2204
|
},
|
|
2209
2205
|
"node_modules/adaptive-expressions": {
|
|
2210
|
-
"version": "4.23.
|
|
2211
|
-
"resolved": "https://registry.npmjs.org/adaptive-expressions/-/adaptive-expressions-4.23.
|
|
2212
|
-
"integrity": "sha512-
|
|
2206
|
+
"version": "4.23.2",
|
|
2207
|
+
"resolved": "https://registry.npmjs.org/adaptive-expressions/-/adaptive-expressions-4.23.2.tgz",
|
|
2208
|
+
"integrity": "sha512-L4A74wiDs/PSYF60CAw79jD1gBX7TXkNvBh/wYD/XIRAEBRi2Sb7sMZTbOzRGeYzGSD5wQZllynYXS+SDr31Lg==",
|
|
2209
|
+
"license": "MIT",
|
|
2213
2210
|
"dependencies": {
|
|
2214
2211
|
"@microsoft/recognizers-text-data-types-timex-expression": "~1.3.1",
|
|
2215
2212
|
"@types/atob-lite": "^2.0.2",
|
|
2216
2213
|
"@types/btoa-lite": "^1.0.2",
|
|
2217
|
-
"@types/lodash.isequal": "^4.5.8",
|
|
2218
2214
|
"@types/lru-cache": "^5.1.1",
|
|
2219
2215
|
"@types/xmldom": "^0.1.34",
|
|
2220
2216
|
"@xmldom/xmldom": "^0.8.6",
|
|
@@ -2222,11 +2218,11 @@
|
|
|
2222
2218
|
"atob-lite": "^2.0.0",
|
|
2223
2219
|
"big-integer": "^1.6.52",
|
|
2224
2220
|
"btoa-lite": "^1.0.0",
|
|
2225
|
-
"d3-format": "^
|
|
2221
|
+
"d3-format": "^3.1.0",
|
|
2226
2222
|
"dayjs": "^1.11.13",
|
|
2227
2223
|
"fast-xml-parser": "^4.4.1",
|
|
2228
2224
|
"jspath": "^0.4.0",
|
|
2229
|
-
"lodash
|
|
2225
|
+
"lodash": "^4.17.21",
|
|
2230
2226
|
"lru-cache": "^5.1.1",
|
|
2231
2227
|
"uuid": "^10.0.0",
|
|
2232
2228
|
"xpath": "^0.0.34"
|
|
@@ -2339,6 +2335,7 @@
|
|
|
2339
2335
|
"version": "4.3.2",
|
|
2340
2336
|
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
|
|
2341
2337
|
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
|
|
2338
|
+
"license": "MIT",
|
|
2342
2339
|
"dependencies": {
|
|
2343
2340
|
"type-fest": "^0.21.3"
|
|
2344
2341
|
},
|
|
@@ -2458,9 +2455,10 @@
|
|
|
2458
2455
|
}
|
|
2459
2456
|
},
|
|
2460
2457
|
"node_modules/axios": {
|
|
2461
|
-
"version": "1.
|
|
2462
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
2463
|
-
"integrity": "sha512-
|
|
2458
|
+
"version": "1.8.2",
|
|
2459
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
|
|
2460
|
+
"integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
|
|
2461
|
+
"license": "MIT",
|
|
2464
2462
|
"dependencies": {
|
|
2465
2463
|
"follow-redirects": "^1.15.6",
|
|
2466
2464
|
"form-data": "^4.0.0",
|
|
@@ -2761,6 +2759,7 @@
|
|
|
2761
2759
|
"version": "4.1.0",
|
|
2762
2760
|
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
2763
2761
|
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
2762
|
+
"license": "ISC",
|
|
2764
2763
|
"engines": {
|
|
2765
2764
|
"node": ">= 12"
|
|
2766
2765
|
}
|
|
@@ -2947,9 +2946,13 @@
|
|
|
2947
2946
|
"integrity": "sha512-RFPahj0sXcmUyjrObAK+DOWtMvMIFV328n4qZJhgX3x2RqkQgOTU2mCUmiFR0CzM6AzChlRSUErjiJeEt8BaQA=="
|
|
2948
2947
|
},
|
|
2949
2948
|
"node_modules/d3-format": {
|
|
2950
|
-
"version": "
|
|
2951
|
-
"resolved": "https://registry.npmjs.org/d3-format/-/d3-format-
|
|
2952
|
-
"integrity": "sha512-
|
|
2949
|
+
"version": "3.1.0",
|
|
2950
|
+
"resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
|
|
2951
|
+
"integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
|
|
2952
|
+
"license": "ISC",
|
|
2953
|
+
"engines": {
|
|
2954
|
+
"node": ">=12"
|
|
2955
|
+
}
|
|
2953
2956
|
},
|
|
2954
2957
|
"node_modules/dayjs": {
|
|
2955
2958
|
"version": "1.11.13",
|
|
@@ -4519,6 +4522,12 @@
|
|
|
4519
4522
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4520
4523
|
}
|
|
4521
4524
|
},
|
|
4525
|
+
"node_modules/lodash": {
|
|
4526
|
+
"version": "4.17.21",
|
|
4527
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
4528
|
+
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
4529
|
+
"license": "MIT"
|
|
4530
|
+
},
|
|
4522
4531
|
"node_modules/lodash.camelcase": {
|
|
4523
4532
|
"version": "4.3.0",
|
|
4524
4533
|
"resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
|
|
@@ -4540,11 +4549,6 @@
|
|
|
4540
4549
|
"resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
|
|
4541
4550
|
"integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
|
|
4542
4551
|
},
|
|
4543
|
-
"node_modules/lodash.isequal": {
|
|
4544
|
-
"version": "4.5.0",
|
|
4545
|
-
"resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
|
|
4546
|
-
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ=="
|
|
4547
|
-
},
|
|
4548
4552
|
"node_modules/lodash.isinteger": {
|
|
4549
4553
|
"version": "4.0.4",
|
|
4550
4554
|
"resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
|
|
@@ -4829,6 +4833,7 @@
|
|
|
4829
4833
|
"version": "2.0.0",
|
|
4830
4834
|
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz",
|
|
4831
4835
|
"integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==",
|
|
4836
|
+
"license": "ISC",
|
|
4832
4837
|
"engines": {
|
|
4833
4838
|
"node": "^18.17.0 || >=20.5.0"
|
|
4834
4839
|
}
|
|
@@ -5929,6 +5934,7 @@
|
|
|
5929
5934
|
"version": "0.21.3",
|
|
5930
5935
|
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
|
|
5931
5936
|
"integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
|
|
5937
|
+
"license": "(MIT OR CC0-1.0)",
|
|
5932
5938
|
"engines": {
|
|
5933
5939
|
"node": ">=10"
|
|
5934
5940
|
},
|
|
@@ -5937,9 +5943,10 @@
|
|
|
5937
5943
|
}
|
|
5938
5944
|
},
|
|
5939
5945
|
"node_modules/typescript": {
|
|
5940
|
-
"version": "5.
|
|
5941
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
5942
|
-
"integrity": "sha512-
|
|
5946
|
+
"version": "5.8.2",
|
|
5947
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
|
5948
|
+
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
|
5949
|
+
"license": "Apache-2.0",
|
|
5943
5950
|
"bin": {
|
|
5944
5951
|
"tsc": "bin/tsc",
|
|
5945
5952
|
"tsserver": "bin/tsserver"
|
|
@@ -6133,13 +6140,14 @@
|
|
|
6133
6140
|
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
|
6134
6141
|
},
|
|
6135
6142
|
"node_modules/uuid": {
|
|
6136
|
-
"version": "11.0
|
|
6137
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.
|
|
6138
|
-
"integrity": "sha512-
|
|
6143
|
+
"version": "11.1.0",
|
|
6144
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
|
|
6145
|
+
"integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
|
|
6139
6146
|
"funding": [
|
|
6140
6147
|
"https://github.com/sponsors/broofa",
|
|
6141
6148
|
"https://github.com/sponsors/ctavan"
|
|
6142
6149
|
],
|
|
6150
|
+
"license": "MIT",
|
|
6143
6151
|
"bin": {
|
|
6144
6152
|
"uuid": "dist/esm/bin/uuid"
|
|
6145
6153
|
}
|
|
@@ -6233,6 +6241,7 @@
|
|
|
6233
6241
|
"version": "6.2.0",
|
|
6234
6242
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
|
6235
6243
|
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
|
|
6244
|
+
"license": "MIT",
|
|
6236
6245
|
"dependencies": {
|
|
6237
6246
|
"ansi-styles": "^4.0.0",
|
|
6238
6247
|
"string-width": "^4.1.0",
|
|
@@ -6283,12 +6292,14 @@
|
|
|
6283
6292
|
"node_modules/wrap-ansi/node_modules/emoji-regex": {
|
|
6284
6293
|
"version": "8.0.0",
|
|
6285
6294
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
6286
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
|
|
6295
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
6296
|
+
"license": "MIT"
|
|
6287
6297
|
},
|
|
6288
6298
|
"node_modules/wrap-ansi/node_modules/string-width": {
|
|
6289
6299
|
"version": "4.2.3",
|
|
6290
6300
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
6291
6301
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
6302
|
+
"license": "MIT",
|
|
6292
6303
|
"dependencies": {
|
|
6293
6304
|
"emoji-regex": "^8.0.0",
|
|
6294
6305
|
"is-fullwidth-code-point": "^3.0.0",
|
|
@@ -6441,6 +6452,7 @@
|
|
|
6441
6452
|
"version": "2.1.2",
|
|
6442
6453
|
"resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz",
|
|
6443
6454
|
"integrity": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==",
|
|
6455
|
+
"license": "MIT",
|
|
6444
6456
|
"engines": {
|
|
6445
6457
|
"node": ">=18"
|
|
6446
6458
|
},
|
|
@@ -6449,9 +6461,10 @@
|
|
|
6449
6461
|
}
|
|
6450
6462
|
},
|
|
6451
6463
|
"node_modules/zod": {
|
|
6452
|
-
"version": "3.24.
|
|
6453
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.24.
|
|
6454
|
-
"integrity": "sha512-
|
|
6464
|
+
"version": "3.24.2",
|
|
6465
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz",
|
|
6466
|
+
"integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==",
|
|
6467
|
+
"license": "MIT",
|
|
6455
6468
|
"funding": {
|
|
6456
6469
|
"url": "https://github.com/sponsors/colinhacks"
|
|
6457
6470
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.5.0-beta.31351d1",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -253,18 +253,18 @@
|
|
|
253
253
|
"Zachariassen Laksafoss, Trygvi <trygvi.laksafoss@gmail.com>"
|
|
254
254
|
],
|
|
255
255
|
"dependencies": {
|
|
256
|
-
"@azure/msal-common": "^15.
|
|
257
|
-
"@azure/msal-node": "^3.2.
|
|
258
|
-
"@inquirer/confirm": "^5.1.
|
|
259
|
-
"@inquirer/input": "^4.1.
|
|
260
|
-
"@inquirer/select": "^4.0.
|
|
261
|
-
"@xmldom/xmldom": "^0.9.
|
|
262
|
-
"adaptive-expressions": "^4.23.
|
|
256
|
+
"@azure/msal-common": "^15.2.0",
|
|
257
|
+
"@azure/msal-node": "^3.2.3",
|
|
258
|
+
"@inquirer/confirm": "^5.1.6",
|
|
259
|
+
"@inquirer/input": "^4.1.6",
|
|
260
|
+
"@inquirer/select": "^4.0.9",
|
|
261
|
+
"@xmldom/xmldom": "^0.9.8",
|
|
262
|
+
"adaptive-expressions": "^4.23.2",
|
|
263
263
|
"adaptivecards": "^3.0.5",
|
|
264
264
|
"adaptivecards-templating": "^2.3.1",
|
|
265
265
|
"adm-zip": "^0.5.16",
|
|
266
266
|
"applicationinsights": "^3.5.0",
|
|
267
|
-
"axios": "^1.
|
|
267
|
+
"axios": "^1.8.2",
|
|
268
268
|
"chalk": "^5.4.1",
|
|
269
269
|
"clipboardy": "^4.0.0",
|
|
270
270
|
"configstore": "^7.0.0",
|
|
@@ -278,12 +278,12 @@
|
|
|
278
278
|
"open": "^10.1.0",
|
|
279
279
|
"semver": "^7.7.1",
|
|
280
280
|
"strip-json-comments": "^5.0.1",
|
|
281
|
-
"typescript": "^5.
|
|
281
|
+
"typescript": "^5.8.2",
|
|
282
282
|
"update-notifier": "^7.3.1",
|
|
283
|
-
"uuid": "^11.0
|
|
283
|
+
"uuid": "^11.1.0",
|
|
284
284
|
"yaml": "^2.7.0",
|
|
285
285
|
"yargs-parser": "^21.1.1",
|
|
286
|
-
"zod": "^3.24.
|
|
286
|
+
"zod": "^3.24.2"
|
|
287
287
|
},
|
|
288
288
|
"devDependencies": {
|
|
289
289
|
"@actions/core": "^1.11.1",
|
|
@@ -293,11 +293,11 @@
|
|
|
293
293
|
"@types/json-schema": "^7.0.15",
|
|
294
294
|
"@types/json-to-ast": "^2.1.4",
|
|
295
295
|
"@types/mocha": "^10.0.10",
|
|
296
|
-
"@types/node": "^22.13.
|
|
296
|
+
"@types/node": "^22.13.9",
|
|
297
297
|
"@types/node-forge": "^1.3.11",
|
|
298
298
|
"@types/omelette": "^0.4.4",
|
|
299
299
|
"@types/semver": "^7.5.8",
|
|
300
|
-
"@types/sinon": "^17.0.
|
|
300
|
+
"@types/sinon": "^17.0.4",
|
|
301
301
|
"@types/update-notifier": "^6.0.8",
|
|
302
302
|
"@types/uuid": "^10.0.0",
|
|
303
303
|
"@types/yargs-parser": "^21.0.3",
|
|
@@ -312,4 +312,4 @@
|
|
|
312
312
|
"sinon": "^19.0.2",
|
|
313
313
|
"source-map-support": "^0.5.21"
|
|
314
314
|
}
|
|
315
|
-
}
|
|
315
|
+
}
|