@pnp/cli-microsoft365 5.1.0-beta.04832fc → 5.1.0-beta.7b2911b

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 (33) hide show
  1. package/.eslintrc.js +1 -0
  2. package/dist/Auth.js +10 -0
  3. package/dist/Command.js +3 -0
  4. package/dist/cli/Cli.js +13 -0
  5. package/dist/m365/aad/commands/app/app-add.js +68 -10
  6. package/dist/m365/aad/commands/app/{app-delete.js → app-remove.js} +9 -5
  7. package/dist/m365/aad/commands/app/{app-role-delete.js → app-role-remove.js} +11 -7
  8. package/dist/m365/aad/commands.js +3 -1
  9. package/dist/m365/base/PowerPlatformCommand.js +10 -0
  10. package/dist/m365/cli/commands/config/config-set.js +3 -2
  11. package/dist/m365/pp/commands/managementapp/managementapp-add.js +98 -0
  12. package/dist/m365/pp/commands.js +7 -0
  13. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.12.0.js +0 -2
  14. package/dist/m365/spfx/commands/spfx-doctor.js +6 -0
  15. package/dist/m365/tenant/commands.js +1 -6
  16. package/dist/settingsNames.js +1 -0
  17. package/docs/docs/cmd/aad/app/{app-delete.md → app-remove.md} +15 -9
  18. package/docs/docs/cmd/aad/app/{app-role-delete.md → app-role-remove.md} +25 -19
  19. package/docs/docs/cmd/pp/managementapp/managementapp-add.md +50 -0
  20. package/docs/docs/cmd/spfx/spfx-doctor.md +4 -1
  21. package/npm-shrinkwrap.json +270 -4
  22. package/package.json +4 -2
  23. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN015006_FILE_editorconfig.js +0 -14
  24. package/dist/m365/tenant/commands/auditlog/auditlog-report.js +0 -231
  25. package/dist/m365/tenant/commands/service/service-list.js +0 -41
  26. package/dist/m365/tenant/commands/service/service-message-list.js +0 -55
  27. package/dist/m365/tenant/commands/service/service-report-historicalservicestatus.js +0 -54
  28. package/dist/m365/tenant/commands/status/status-list.js +0 -55
  29. package/docs/docs/cmd/tenant/auditlog/auditlog-report.md +0 -61
  30. package/docs/docs/cmd/tenant/service/service-list.md +0 -25
  31. package/docs/docs/cmd/tenant/service/service-message-list.md +0 -34
  32. package/docs/docs/cmd/tenant/service/service-report-historicalservicestatus.md +0 -38
  33. package/docs/docs/cmd/tenant/status/status-list.md +0 -34
@@ -1,9 +1,15 @@
1
- # aad app role delete
1
+ # aad app role remove
2
2
 
3
- Deletes role from the specified Azure AD app registration
3
+ Removes role from the specified Azure AD app registration
4
4
 
5
5
  ## Usage
6
6
 
7
+ ```sh
8
+ m365 aad app role remove [options]
9
+ ```
10
+
11
+ ## Alias
12
+
7
13
  ```sh
8
14
  m365 aad app role delete [options]
9
15
  ```
@@ -11,60 +17,60 @@ m365 aad app role delete [options]
11
17
  ## Options
12
18
 
13
19
  `--appId [appId]`
14
- : Application (client) ID of the Azure AD application registration from which role should be deleted. Specify either `appId`, `appObjectId` or `appName`
20
+ : Application (client) ID of the Azure AD application registration from which role should be removed. Specify either `appId`, `appObjectId` or `appName`
15
21
 
16
22
  `--appObjectId [appObjectId]`
17
- : Object ID of the Azure AD application registration from which role should be deleted. Specify either `appId`, `appObjectId` or `appName`
23
+ : Object ID of the Azure AD application registration from which role should be removed. Specify either `appId`, `appObjectId` or `appName`
18
24
 
19
25
  `--appName [appName]`
20
- : Name of the Azure AD application registration from which role should be deleted. Specify either `appId`, `appObjectId` or `appName`
26
+ : Name of the Azure AD application registration from which role should be removed. Specify either `appId`, `appObjectId` or `appName`
21
27
 
22
28
  `-n, --name [name]`
23
- : Name of the role to delete. Specify either `name`, `id` or `claim`
29
+ : Name of the role to remove. Specify either `name`, `id` or `claim`
24
30
 
25
31
  `-i, --id [id]`
26
- : Id of the role to delete. Specify either `name`, `id` or `claim`
32
+ : Id of the role to remove. Specify either `name`, `id` or `claim`
27
33
 
28
34
  `-c, --claim [claim]`
29
- : Claim value of the role to delete. Specify either `name`, `id` or `claim`
35
+ : Claim value of the role to remove. Specify either `name`, `id` or `claim`
30
36
 
31
37
  `--confirm`
32
- : Don't prompt for confirmation to delete the role.
38
+ : Don't prompt for confirmation to remove the role.
33
39
 
34
40
  --8<-- "docs/cmd/_global.md"
35
41
 
36
42
  ## Remarks
37
43
 
38
- For best performance use the `appObjectId` option to reference the Azure AD application registration from which to delete the role. If you use `appId` or `appName`, this command will first need to find the corresponding object ID for that application.
44
+ For best performance use the `appObjectId` option to reference the Azure AD application registration from which to remove the role. If you use `appId` or `appName`, this command will first need to find the corresponding object ID for that application.
39
45
 
40
46
  If the command finds multiple Azure AD application registrations with the specified app name, it will prompt you to disambiguate which app it should use, listing the discovered object IDs.
41
47
 
42
48
  If the command finds multiple roles with the specified role name, it will prompt you to disambiguate which role it should use, listing the claim values.
43
49
 
44
- If the role to be deleted is 'Enabled', this command will disable the role first and then delete.
50
+ If the role to be removed is 'Enabled', this command will disable the role first and then remove.
45
51
 
46
52
  ## Examples
47
53
 
48
- Delete role from a Azure AD application registration using object ID and role name options. Will prompt for confirmation before deleting the role.
54
+ Remove role from a Azure AD application registration using object ID and role name options. Will prompt for confirmation before deleting the role.
49
55
 
50
56
  ```sh
51
- m365 aad app role delete --appObjectId d75be2e1-0204-4f95-857d-51a37cf40be8 --name "Get Product"
57
+ m365 aad app role remove --appObjectId d75be2e1-0204-4f95-857d-51a37cf40be8 --name "Get Product"
52
58
  ```
53
59
 
54
- Delete role from a Azure AD application registration using app (client) ID and role claim options. Will prompt for confirmation before deleting the role.
60
+ Remove role from a Azure AD application registration using app (client) ID and role claim options. Will prompt for confirmation before deleting the role.
55
61
 
56
62
  ```sh
57
- m365 aad app role delete --appId e75be2e1-0204-4f95-857d-51a37cf40be8 --claim "Product.Get"
63
+ m365 aad app role remove --appId e75be2e1-0204-4f95-857d-51a37cf40be8 --claim "Product.Get"
58
64
  ```
59
65
 
60
- Delete role from a Azure AD application registration using app name and role claim options. Will prompt for confirmation before deleting the role.
66
+ Remove role from a Azure AD application registration using app name and role claim options. Will prompt for confirmation before deleting the role.
61
67
 
62
68
  ```sh
63
- m365 aad app role delete --appName "My app" --claim "Product.Get"
69
+ m365 aad app role remove --appName "My app" --claim "Product.Get"
64
70
  ```
65
71
 
66
- Delete role from a Azure AD application registration using object ID and role id options. Will NOT prompt for confirmation before deleting the role.
72
+ Remove role from a Azure AD application registration using object ID and role id options. Will NOT prompt for confirmation before deleting the role.
67
73
 
68
74
  ```sh
69
- m365 aad app role delete --appObjectId d75be2e1-0204-4f95-857d-51a37cf40be8 --id 15927ce6-1933-4b2f-b029-4dee3d53f4dd --confirm
75
+ m365 aad app role remove --appObjectId d75be2e1-0204-4f95-857d-51a37cf40be8 --id 15927ce6-1933-4b2f-b029-4dee3d53f4dd --confirm
70
76
  ```
@@ -0,0 +1,50 @@
1
+ # pp managementapp add
2
+
3
+ Register management application for Power Platform
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 pp managementapp add [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `--appId [appId]`
14
+ : Application (client) ID of the Azure AD application registration to register as a management app. Specify either `appId`, `objectId` or `name`
15
+
16
+ `--objectId [objectId]`
17
+ : Object ID of the Azure AD application registration to register as a management app. Specify either `appId`, `objectId` or `name`
18
+
19
+ `--name [name]`
20
+ : Name of the Azure AD application registration to register as a management app. Specify either `appId`, `objectId` or `name`
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Remarks
25
+
26
+ To execute this command the first time you'll need sign in using the Microsoft Azure PowerShell app registration. You can do this by executing `m365 login --appId 1950a258-227b-4e31-a9cf-717495945fc2`. To register the Azure AD app registration that CLI for Microsoft 365 uses by default, execute `m365 pp managementapp add--appId 31359c7f-bd7e-475c-86db-fdb8c937548e`.
27
+
28
+ For best performance use the `appId` option to reference the Azure AD application registration to update. If you use `objectId` or `name`, this command will first need to find the corresponding `appId` for that application.
29
+
30
+ If the command finds multiple Azure AD application registrations with the specified app name, it will prompt you to disambiguate which app it should use, listing the discovered object IDs.
31
+
32
+ ## Examples
33
+
34
+ Register CLI for Microsoft 365 as a management application for the Power Platform
35
+
36
+ ```sh
37
+ m365 pp managementapp add --appId 31359c7f-bd7e-475c-86db-fdb8c937548e
38
+ ```
39
+
40
+ Register Azure AD application with the specified object ID as a management application for the Power Platform
41
+
42
+ ```sh
43
+ m365 pp managementapp add --objectId d75be2e1-0204-4f95-857d-51a37cf40be8
44
+ ```
45
+
46
+ Register Azure AD application named _My app_ as a management application for the Power Platform
47
+
48
+ ```sh
49
+ m365 pp managementapp add --name "My app"
50
+ ```
@@ -20,7 +20,7 @@ m365 spfx doctor [options]
20
20
  : JMESPath query string. See [http://jmespath.org/](http://jmespath.org/) for more information and examples
21
21
 
22
22
  `-o, --output [output]`
23
- : Output type. `json,text,csv,md`. Default `json`
23
+ : Output type. `text`. Default `text`
24
24
 
25
25
  `--verbose`
26
26
  : Runs command with verbose logging
@@ -43,6 +43,9 @@ If you miss any required tools or use a version that doesn't meet the SharePoint
43
43
 
44
44
  Next to verifying the readiness of your environment to use a particular version of the SharePoint Framework, you can also check if the version of the SharePoint Framework that you use is compatible with the specific version of SharePoint. Supported versions are `sp2016`, `sp2019` and `spo`.
45
45
 
46
+ !!! important
47
+ This command supports only text output.
48
+
46
49
  ## Examples
47
50
 
48
51
  Verify if your environment meets the requirements to work with the SharePoint Framework
@@ -18,6 +18,7 @@
18
18
  "applicationinsights": "^2.2.2",
19
19
  "axios": "^0.26.0",
20
20
  "chalk": "^4.1.2",
21
+ "clipboardy": "^2.3.0",
21
22
  "csv-stringify": "^6.0.5",
22
23
  "easy-table": "^1.2.0",
23
24
  "inquirer": "^8.2.0",
@@ -1159,6 +1160,25 @@
1159
1160
  }
1160
1161
  }
1161
1162
  },
1163
+ "node_modules/arch": {
1164
+ "version": "2.2.0",
1165
+ "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
1166
+ "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
1167
+ "funding": [
1168
+ {
1169
+ "type": "github",
1170
+ "url": "https://github.com/sponsors/feross"
1171
+ },
1172
+ {
1173
+ "type": "patreon",
1174
+ "url": "https://www.patreon.com/feross"
1175
+ },
1176
+ {
1177
+ "type": "consulting",
1178
+ "url": "https://feross.org/support"
1179
+ }
1180
+ ]
1181
+ },
1162
1182
  "node_modules/argparse": {
1163
1183
  "version": "1.0.10",
1164
1184
  "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -1646,6 +1666,19 @@
1646
1666
  "node": ">= 10"
1647
1667
  }
1648
1668
  },
1669
+ "node_modules/clipboardy": {
1670
+ "version": "2.3.0",
1671
+ "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz",
1672
+ "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==",
1673
+ "dependencies": {
1674
+ "arch": "^2.1.1",
1675
+ "execa": "^1.0.0",
1676
+ "is-wsl": "^2.1.1"
1677
+ },
1678
+ "engines": {
1679
+ "node": ">=8"
1680
+ }
1681
+ },
1649
1682
  "node_modules/cliui": {
1650
1683
  "version": "7.0.4",
1651
1684
  "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
@@ -2795,6 +2828,84 @@
2795
2828
  "node": ">=0.10.0"
2796
2829
  }
2797
2830
  },
2831
+ "node_modules/execa": {
2832
+ "version": "1.0.0",
2833
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
2834
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
2835
+ "dependencies": {
2836
+ "cross-spawn": "^6.0.0",
2837
+ "get-stream": "^4.0.0",
2838
+ "is-stream": "^1.1.0",
2839
+ "npm-run-path": "^2.0.0",
2840
+ "p-finally": "^1.0.0",
2841
+ "signal-exit": "^3.0.0",
2842
+ "strip-eof": "^1.0.0"
2843
+ },
2844
+ "engines": {
2845
+ "node": ">=6"
2846
+ }
2847
+ },
2848
+ "node_modules/execa/node_modules/cross-spawn": {
2849
+ "version": "6.0.5",
2850
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
2851
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
2852
+ "dependencies": {
2853
+ "nice-try": "^1.0.4",
2854
+ "path-key": "^2.0.1",
2855
+ "semver": "^5.5.0",
2856
+ "shebang-command": "^1.2.0",
2857
+ "which": "^1.2.9"
2858
+ },
2859
+ "engines": {
2860
+ "node": ">=4.8"
2861
+ }
2862
+ },
2863
+ "node_modules/execa/node_modules/path-key": {
2864
+ "version": "2.0.1",
2865
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
2866
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
2867
+ "engines": {
2868
+ "node": ">=4"
2869
+ }
2870
+ },
2871
+ "node_modules/execa/node_modules/semver": {
2872
+ "version": "5.7.1",
2873
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
2874
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
2875
+ "bin": {
2876
+ "semver": "bin/semver"
2877
+ }
2878
+ },
2879
+ "node_modules/execa/node_modules/shebang-command": {
2880
+ "version": "1.2.0",
2881
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
2882
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
2883
+ "dependencies": {
2884
+ "shebang-regex": "^1.0.0"
2885
+ },
2886
+ "engines": {
2887
+ "node": ">=0.10.0"
2888
+ }
2889
+ },
2890
+ "node_modules/execa/node_modules/shebang-regex": {
2891
+ "version": "1.0.0",
2892
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
2893
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
2894
+ "engines": {
2895
+ "node": ">=0.10.0"
2896
+ }
2897
+ },
2898
+ "node_modules/execa/node_modules/which": {
2899
+ "version": "1.3.1",
2900
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
2901
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
2902
+ "dependencies": {
2903
+ "isexe": "^2.0.0"
2904
+ },
2905
+ "bin": {
2906
+ "which": "bin/which"
2907
+ }
2908
+ },
2798
2909
  "node_modules/extend": {
2799
2910
  "version": "3.0.2",
2800
2911
  "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
@@ -3763,6 +3874,14 @@
3763
3874
  "url": "https://github.com/sponsors/ljharb"
3764
3875
  }
3765
3876
  },
3877
+ "node_modules/is-stream": {
3878
+ "version": "1.1.0",
3879
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
3880
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
3881
+ "engines": {
3882
+ "node": ">=0.10.0"
3883
+ }
3884
+ },
3766
3885
  "node_modules/is-string": {
3767
3886
  "version": "1.0.7",
3768
3887
  "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
@@ -3846,8 +3965,7 @@
3846
3965
  "node_modules/isexe": {
3847
3966
  "version": "2.0.0",
3848
3967
  "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
3849
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
3850
- "dev": true
3968
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
3851
3969
  },
3852
3970
  "node_modules/isstream": {
3853
3971
  "version": "0.1.2",
@@ -4488,6 +4606,11 @@
4488
4606
  "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
4489
4607
  "dev": true
4490
4608
  },
4609
+ "node_modules/nice-try": {
4610
+ "version": "1.0.5",
4611
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
4612
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="
4613
+ },
4491
4614
  "node_modules/nise": {
4492
4615
  "version": "5.1.1",
4493
4616
  "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.1.tgz",
@@ -4564,6 +4687,25 @@
4564
4687
  "node": ">=8"
4565
4688
  }
4566
4689
  },
4690
+ "node_modules/npm-run-path": {
4691
+ "version": "2.0.2",
4692
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
4693
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
4694
+ "dependencies": {
4695
+ "path-key": "^2.0.0"
4696
+ },
4697
+ "engines": {
4698
+ "node": ">=4"
4699
+ }
4700
+ },
4701
+ "node_modules/npm-run-path/node_modules/path-key": {
4702
+ "version": "2.0.1",
4703
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
4704
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
4705
+ "engines": {
4706
+ "node": ">=4"
4707
+ }
4708
+ },
4567
4709
  "node_modules/nwsapi": {
4568
4710
  "version": "2.2.0",
4569
4711
  "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
@@ -4729,6 +4871,14 @@
4729
4871
  "node": ">=6"
4730
4872
  }
4731
4873
  },
4874
+ "node_modules/p-finally": {
4875
+ "version": "1.0.0",
4876
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
4877
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
4878
+ "engines": {
4879
+ "node": ">=4"
4880
+ }
4881
+ },
4732
4882
  "node_modules/p-limit": {
4733
4883
  "version": "3.1.0",
4734
4884
  "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
@@ -5500,6 +5650,14 @@
5500
5650
  "node": ">=4"
5501
5651
  }
5502
5652
  },
5653
+ "node_modules/strip-eof": {
5654
+ "version": "1.0.0",
5655
+ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
5656
+ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
5657
+ "engines": {
5658
+ "node": ">=0.10.0"
5659
+ }
5660
+ },
5503
5661
  "node_modules/strip-json-comments": {
5504
5662
  "version": "3.1.1",
5505
5663
  "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
@@ -7040,6 +7198,11 @@
7040
7198
  "diagnostic-channel-publishers": "1.0.4"
7041
7199
  }
7042
7200
  },
7201
+ "arch": {
7202
+ "version": "2.2.0",
7203
+ "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
7204
+ "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ=="
7205
+ },
7043
7206
  "argparse": {
7044
7207
  "version": "1.0.10",
7045
7208
  "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -7407,6 +7570,16 @@
7407
7570
  "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
7408
7571
  "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw=="
7409
7572
  },
7573
+ "clipboardy": {
7574
+ "version": "2.3.0",
7575
+ "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz",
7576
+ "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==",
7577
+ "requires": {
7578
+ "arch": "^2.1.1",
7579
+ "execa": "^1.0.0",
7580
+ "is-wsl": "^2.1.1"
7581
+ }
7582
+ },
7410
7583
  "cliui": {
7411
7584
  "version": "7.0.4",
7412
7585
  "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
@@ -8302,6 +8475,65 @@
8302
8475
  "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
8303
8476
  "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
8304
8477
  },
8478
+ "execa": {
8479
+ "version": "1.0.0",
8480
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
8481
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
8482
+ "requires": {
8483
+ "cross-spawn": "^6.0.0",
8484
+ "get-stream": "^4.0.0",
8485
+ "is-stream": "^1.1.0",
8486
+ "npm-run-path": "^2.0.0",
8487
+ "p-finally": "^1.0.0",
8488
+ "signal-exit": "^3.0.0",
8489
+ "strip-eof": "^1.0.0"
8490
+ },
8491
+ "dependencies": {
8492
+ "cross-spawn": {
8493
+ "version": "6.0.5",
8494
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
8495
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
8496
+ "requires": {
8497
+ "nice-try": "^1.0.4",
8498
+ "path-key": "^2.0.1",
8499
+ "semver": "^5.5.0",
8500
+ "shebang-command": "^1.2.0",
8501
+ "which": "^1.2.9"
8502
+ }
8503
+ },
8504
+ "path-key": {
8505
+ "version": "2.0.1",
8506
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
8507
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="
8508
+ },
8509
+ "semver": {
8510
+ "version": "5.7.1",
8511
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
8512
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
8513
+ },
8514
+ "shebang-command": {
8515
+ "version": "1.2.0",
8516
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
8517
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
8518
+ "requires": {
8519
+ "shebang-regex": "^1.0.0"
8520
+ }
8521
+ },
8522
+ "shebang-regex": {
8523
+ "version": "1.0.0",
8524
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
8525
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM="
8526
+ },
8527
+ "which": {
8528
+ "version": "1.3.1",
8529
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
8530
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
8531
+ "requires": {
8532
+ "isexe": "^2.0.0"
8533
+ }
8534
+ }
8535
+ }
8536
+ },
8305
8537
  "extend": {
8306
8538
  "version": "3.0.2",
8307
8539
  "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
@@ -8994,6 +9226,11 @@
8994
9226
  "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==",
8995
9227
  "dev": true
8996
9228
  },
9229
+ "is-stream": {
9230
+ "version": "1.1.0",
9231
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
9232
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
9233
+ },
8997
9234
  "is-string": {
8998
9235
  "version": "1.0.7",
8999
9236
  "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
@@ -9053,8 +9290,7 @@
9053
9290
  "isexe": {
9054
9291
  "version": "2.0.0",
9055
9292
  "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
9056
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
9057
- "dev": true
9293
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
9058
9294
  },
9059
9295
  "isstream": {
9060
9296
  "version": "0.1.2",
@@ -9572,6 +9808,11 @@
9572
9808
  "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
9573
9809
  "dev": true
9574
9810
  },
9811
+ "nice-try": {
9812
+ "version": "1.0.5",
9813
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
9814
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="
9815
+ },
9575
9816
  "nise": {
9576
9817
  "version": "5.1.1",
9577
9818
  "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.1.tgz",
@@ -9630,6 +9871,21 @@
9630
9871
  "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz",
9631
9872
  "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="
9632
9873
  },
9874
+ "npm-run-path": {
9875
+ "version": "2.0.2",
9876
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
9877
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
9878
+ "requires": {
9879
+ "path-key": "^2.0.0"
9880
+ },
9881
+ "dependencies": {
9882
+ "path-key": {
9883
+ "version": "2.0.1",
9884
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
9885
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A="
9886
+ }
9887
+ }
9888
+ },
9633
9889
  "nwsapi": {
9634
9890
  "version": "2.2.0",
9635
9891
  "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
@@ -9747,6 +10003,11 @@
9747
10003
  "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz",
9748
10004
  "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="
9749
10005
  },
10006
+ "p-finally": {
10007
+ "version": "1.0.0",
10008
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
10009
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4="
10010
+ },
9750
10011
  "p-limit": {
9751
10012
  "version": "3.1.0",
9752
10013
  "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
@@ -10338,6 +10599,11 @@
10338
10599
  "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
10339
10600
  "dev": true
10340
10601
  },
10602
+ "strip-eof": {
10603
+ "version": "1.0.0",
10604
+ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
10605
+ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8="
10606
+ },
10341
10607
  "strip-json-comments": {
10342
10608
  "version": "3.1.1",
10343
10609
  "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "5.1.0-beta.04832fc",
3
+ "version": "5.1.0-beta.7b2911b",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -107,9 +107,10 @@
107
107
  "Georgiev, Velin <velin.georgiev@gmail.com>",
108
108
  "Ghuge, Pramod <pramod7@gmail.com>",
109
109
  "Gölles, Thomas <thomy@outlook.at>",
110
- "Hagström, Joakim <joakim.hogberg@bravero.se>",
110
+ "Hagström, Joakim <johags@johags-sb2.localdomain>",
111
111
  "Harding, Phil <pil.harding@platinumdogs.co.uk>",
112
112
  "Hawrylak, Paweł <phawrylak@outlook.com>",
113
+ "Holemans, Milan <Milan.Holemans@vanroey.be>",
113
114
  "Högberg, Joakim <joakim.hogberg@bravero.se>",
114
115
  "Hvam, Allan <ahp@delegate.dk>",
115
116
  "Jaakke, Robert <robert.jaakke@mavention.nl>",
@@ -186,6 +187,7 @@
186
187
  "applicationinsights": "^2.2.2",
187
188
  "axios": "^0.26.0",
188
189
  "chalk": "^4.1.2",
190
+ "clipboardy": "^2.3.0",
189
191
  "csv-stringify": "^6.0.5",
190
192
  "easy-table": "^1.2.0",
191
193
  "inquirer": "^8.2.0",
@@ -1,14 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FN015006_FILE_editorconfig = void 0;
4
- const FileAddRemoveRule_1 = require("./FileAddRemoveRule");
5
- class FN015006_FILE_editorconfig extends FileAddRemoveRule_1.FileAddRemoveRule {
6
- constructor(add) {
7
- super('.editorconfig', add);
8
- }
9
- get id() {
10
- return 'FN015006';
11
- }
12
- }
13
- exports.FN015006_FILE_editorconfig = FN015006_FILE_editorconfig;
14
- //# sourceMappingURL=FN015006_FILE_editorconfig.js.map