@pnp/cli-microsoft365 7.10.0 → 7.11.0-beta.b404d9d

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 (60) hide show
  1. package/.eslintrc.cjs +5 -2
  2. package/allCommands.json +1 -1
  3. package/allCommandsFull.json +1 -1
  4. package/dist/Auth.js +1 -1
  5. package/dist/AuthServer.js +10 -10
  6. package/dist/Command.js +10 -10
  7. package/dist/chili/index.js +1 -1
  8. package/dist/cli/cli.js +11 -11
  9. package/dist/index.js +1 -1
  10. package/dist/m365/base/AnonymousCommand.js +1 -1
  11. package/dist/m365/base/DelegatedGraphCommand.js +2 -2
  12. package/dist/m365/base/PowerAppsCommand.js +2 -2
  13. package/dist/m365/base/PowerAutomateCommand.js +2 -2
  14. package/dist/m365/base/PowerBICommand.js +2 -2
  15. package/dist/m365/base/PowerPlatformCommand.js +2 -2
  16. package/dist/m365/base/VivaEngageCommand.js +2 -2
  17. package/dist/m365/cli/commands/cli-consent.js +1 -1
  18. package/dist/m365/commands/login.js +1 -1
  19. package/dist/m365/commands/logout.js +1 -1
  20. package/dist/m365/commands/status.js +1 -1
  21. package/dist/m365/connection/commands/connection-list.js +1 -1
  22. package/dist/m365/connection/commands/connection-remove.js +1 -1
  23. package/dist/m365/connection/commands/connection-set.js +1 -1
  24. package/dist/m365/connection/commands/connection-use.js +1 -1
  25. package/dist/m365/entra/commands/app/app-permission-add.js +21 -1
  26. package/dist/m365/entra/commands/app/app-permission-remove.js +17 -0
  27. package/dist/m365/entra/commands/m365group/m365group-add.js +1 -0
  28. package/dist/m365/entra/commands/m365group/m365group-user-list.js +1 -1
  29. package/dist/m365/external/commands/connection/connection-doctor.js +1 -1
  30. package/dist/m365/external/commands/connection/connection-schema-add.js +4 -4
  31. package/dist/m365/file/commands/file-copy.js +3 -3
  32. package/dist/m365/pa/commands/app/app-export.js +1 -1
  33. package/dist/m365/pa/commands/app/app-owner-set.js +1 -1
  34. package/dist/m365/pp/commands/solution/solution-publish.js +1 -1
  35. package/dist/m365/purview/commands/threatassessment/threatassessment-list.js +1 -1
  36. package/dist/m365/spfx/commands/project/project-azuredevops-pipeline-add.js +1 -1
  37. package/dist/m365/spfx/commands/project/project-externalize.js +1 -1
  38. package/dist/m365/spfx/commands/project/project-github-workflow-add.js +1 -1
  39. package/dist/m365/spfx/commands/spfx-doctor.js +4 -4
  40. package/dist/m365/spo/commands/commandset/commandset-get.js +1 -1
  41. package/dist/m365/spo/commands/file/file-retentionlabel-remove.js +1 -1
  42. package/dist/m365/spo/commands/group/group-member-add.js +2 -2
  43. package/dist/m365/spo/commands/group/group-member-remove.js +2 -2
  44. package/dist/m365/spo/commands/list/list-retentionlabel-ensure.js +1 -1
  45. package/dist/m365/spo/commands/listitem/listitem-batch-remove.js +1 -1
  46. package/dist/m365/spo/commands/listitem/listitem-retentionlabel-ensure.js +2 -2
  47. package/dist/m365/spo/commands/listitem/listitem-retentionlabel-remove.js +2 -2
  48. package/dist/m365/spo/commands/site/site-commsite-enable.js +1 -1
  49. package/dist/m365/spo/commands/spo-search.js +1 -1
  50. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-set.js +4 -4
  51. package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +2 -2
  52. package/dist/m365/spo/commands/user/user-ensure.js +1 -1
  53. package/dist/m365/teams/commands/chat/chat-member-add.js +1 -1
  54. package/dist/m365/teams/commands/meeting/meeting-list.js +1 -1
  55. package/dist/m365/viva/commands/engage/engage-community-get.js +1 -1
  56. package/dist/request.js +13 -14
  57. package/dist/utils/spo.js +5 -5
  58. package/dist/utils/validation.js +6 -0
  59. package/npm-shrinkwrap.json +802 -601
  60. package/package.json +12 -12
package/.eslintrc.cjs CHANGED
@@ -143,7 +143,8 @@ module.exports = {
143
143
  "parser": "@typescript-eslint/parser",
144
144
  "parserOptions": {
145
145
  "ecmaVersion": 2015,
146
- "sourceType": "module"
146
+ "sourceType": "module",
147
+ "project": "./tsconfig.json"
147
148
  },
148
149
  "plugins": [
149
150
  "@typescript-eslint",
@@ -154,6 +155,7 @@ module.exports = {
154
155
  "**/package-generate/assets/**",
155
156
  "**/test-projects/**",
156
157
  "clientsidepages.ts",
158
+ "*.d.ts",
157
159
  "*.js",
158
160
  "*.cjs"
159
161
  ],
@@ -235,7 +237,8 @@ module.exports = {
235
237
  }
236
238
  ],
237
239
  "@typescript-eslint/explicit-function-return-type": ["error", { "allowExpressions": true }],
238
- "mocha/no-identical-title": "error"
240
+ "mocha/no-identical-title": "error",
241
+ "@typescript-eslint/no-floating-promises": "error"
239
242
  },
240
243
  "overrides": [
241
244
  {