@pnp/cli-microsoft365 6.8.0-beta.00c3a00 → 6.8.0-beta.0d48896

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 (26) hide show
  1. package/dist/m365/spfx/commands/project/project-doctor/doctor-1.17.2.js +25 -0
  2. package/dist/m365/spfx/commands/project/project-doctor/rules/FN001035_DEP_fluentui_react.js +18 -0
  3. package/dist/m365/spfx/commands/project/project-doctor/rules/FN021009_PKG_no_duplicate_oui_deps.js +11 -4
  4. package/dist/m365/spfx/commands/project/project-doctor.js +2 -1
  5. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN001035_DEP_fluentui_react.js +18 -0
  6. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.2.js +61 -0
  7. package/dist/m365/spfx/commands/project/project-upgrade.js +2 -1
  8. package/dist/m365/spfx/commands/spfx-doctor.js +15 -0
  9. package/docs/docs/cmd/adaptivecard/adaptivecard-send.md +13 -13
  10. package/docs/docs/cmd/app/app-get.md +25 -6
  11. package/docs/docs/cmd/app/app-open.md +8 -2
  12. package/docs/docs/cmd/app/permission/permission-add.md +6 -6
  13. package/docs/docs/cmd/app/permission/permission-list.md +19 -19
  14. package/docs/docs/cmd/booking/business/business-get.md +30 -8
  15. package/docs/docs/cmd/booking/business/business-list.md +17 -8
  16. package/docs/docs/cmd/spfx/project/project-doctor.md +1 -1
  17. package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
  18. package/docs/docs/cmd/spo/listitem/listitem-list.md +1 -1
  19. package/docs/docs/cmd/todo/list/list-add.md +18 -0
  20. package/docs/docs/cmd/todo/list/list-get.md +18 -0
  21. package/docs/docs/cmd/todo/list/list-list.md +18 -0
  22. package/docs/docs/cmd/todo/task/task-get.md +21 -0
  23. package/docs/docs/cmd/todo/task/task-list.md +21 -0
  24. package/docs/docs/cmd/util/accesstoken/accesstoken-get.md +6 -0
  25. package/docs/docs/cmd/viva/connections/connections-app-create.md +3 -3
  26. package/package.json +1 -1
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const FN001008_DEP_react_1 = require("./rules/FN001008_DEP_react");
4
+ const FN001009_DEP_react_dom_1 = require("./rules/FN001009_DEP_react_dom");
5
+ const FN001022_DEP_office_ui_fabric_react_1 = require("./rules/FN001022_DEP_office_ui_fabric_react");
6
+ const FN001035_DEP_fluentui_react_1 = require("./rules/FN001035_DEP_fluentui_react");
7
+ const FN002004_DEVDEP_gulp_1 = require("./rules/FN002004_DEVDEP_gulp");
8
+ const FN002007_DEVDEP_ajv_1 = require("./rules/FN002007_DEVDEP_ajv");
9
+ const FN002013_DEVDEP_types_webpack_env_1 = require("./rules/FN002013_DEVDEP_types_webpack_env");
10
+ const FN002015_DEVDEP_types_react_1 = require("./rules/FN002015_DEVDEP_types_react");
11
+ const FN002016_DEVDEP_types_react_dom_1 = require("./rules/FN002016_DEVDEP_types_react_dom");
12
+ const FN002019_DEVDEP_microsoft_rush_stack_compiler_1 = require("./rules/FN002019_DEVDEP_microsoft_rush_stack_compiler");
13
+ module.exports = [
14
+ new FN001008_DEP_react_1.FN001008_DEP_react('17'),
15
+ new FN001009_DEP_react_dom_1.FN001009_DEP_react_dom('17'),
16
+ new FN001022_DEP_office_ui_fabric_react_1.FN001022_DEP_office_ui_fabric_react('^7.199.1'),
17
+ new FN001035_DEP_fluentui_react_1.FN001035_DEP_fluentui_react('^7.199.1'),
18
+ new FN002004_DEVDEP_gulp_1.FN002004_DEVDEP_gulp('4.0.2'),
19
+ new FN002007_DEVDEP_ajv_1.FN002007_DEVDEP_ajv('^6.12.5'),
20
+ new FN002013_DEVDEP_types_webpack_env_1.FN002013_DEVDEP_types_webpack_env('~1.15.2'),
21
+ new FN002015_DEVDEP_types_react_1.FN002015_DEVDEP_types_react('17'),
22
+ new FN002016_DEVDEP_types_react_dom_1.FN002016_DEVDEP_types_react_dom('17'),
23
+ new FN002019_DEVDEP_microsoft_rush_stack_compiler_1.FN002019_DEVDEP_microsoft_rush_stack_compiler(['4.5'])
24
+ ];
25
+ //# sourceMappingURL=doctor-1.17.2.js.map
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FN001035_DEP_fluentui_react = void 0;
4
+ const spfx_1 = require("../../../../../../utils/spfx");
5
+ const DependencyRule_1 = require("./DependencyRule");
6
+ class FN001035_DEP_fluentui_react extends DependencyRule_1.DependencyRule {
7
+ constructor(supportedRange) {
8
+ super('@fluentui/react', supportedRange, false);
9
+ }
10
+ get id() {
11
+ return 'FN001035';
12
+ }
13
+ customCondition(project) {
14
+ return spfx_1.spfx.isReactProject(project);
15
+ }
16
+ }
17
+ exports.FN001035_DEP_fluentui_react = FN001035_DEP_fluentui_react;
18
+ //# sourceMappingURL=FN001035_DEP_fluentui_react.js.map
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.FN021009_PKG_no_duplicate_oui_deps = void 0;
4
+ const semver_1 = require("semver");
4
5
  const JsonRule_1 = require("../../JsonRule");
5
6
  class FN021009_PKG_no_duplicate_oui_deps extends JsonRule_1.JsonRule {
6
7
  get id() {
@@ -24,8 +25,17 @@ class FN021009_PKG_no_duplicate_oui_deps extends JsonRule_1.JsonRule {
24
25
  get resolutionType() {
25
26
  return 'cmd';
26
27
  }
28
+ customCondition(project) {
29
+ var _a, _b;
30
+ const ouifSemVer = (0, semver_1.coerce)((_b = (_a = project.packageJson) === null || _a === void 0 ? void 0 : _a.dependencies) === null || _b === void 0 ? void 0 : _b['office-ui-fabric-react']);
31
+ if (!ouifSemVer) {
32
+ return false;
33
+ }
34
+ // ouif and @fluentui/react are both required starting from 7.199.x
35
+ return ouifSemVer < new semver_1.SemVer('7.199.0');
36
+ }
27
37
  visit(project, findings) {
28
- if (!project.packageJson) {
38
+ if (!project.packageJson || !this.customCondition(project)) {
29
39
  return;
30
40
  }
31
41
  const projectDeps = [];
@@ -37,9 +47,6 @@ class FN021009_PKG_no_duplicate_oui_deps extends JsonRule_1.JsonRule {
37
47
  projectDevDeps.push(...Object.keys(project.packageJson.devDependencies));
38
48
  }
39
49
  const allDeps = projectDeps.concat(projectDevDeps);
40
- if (allDeps.length === 0) {
41
- return;
42
- }
43
50
  if (!allDeps.includes('office-ui-fabric-react') ||
44
51
  !allDeps.includes('@fluentui/react')) {
45
52
  return;
@@ -74,7 +74,8 @@ class SpfxProjectDoctorCommand extends base_project_command_1.BaseProjectCommand
74
74
  '1.16.0',
75
75
  '1.16.1',
76
76
  '1.17.0',
77
- '1.17.1'
77
+ '1.17.1',
78
+ '1.17.2'
78
79
  ];
79
80
  __classPrivateFieldGet(this, _SpfxProjectDoctorCommand_instances, "m", _SpfxProjectDoctorCommand_initTelemetry).call(this);
80
81
  __classPrivateFieldGet(this, _SpfxProjectDoctorCommand_instances, "m", _SpfxProjectDoctorCommand_initOptions).call(this);
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FN001035_DEP_fluentui_react = void 0;
4
+ const spfx_1 = require("../../../../../../utils/spfx");
5
+ const DependencyRule_1 = require("./DependencyRule");
6
+ class FN001035_DEP_fluentui_react extends DependencyRule_1.DependencyRule {
7
+ constructor(packageVersion) {
8
+ super('@fluentui/react', packageVersion, false, true);
9
+ }
10
+ get id() {
11
+ return 'FN001035';
12
+ }
13
+ customCondition(project) {
14
+ return spfx_1.spfx.isReactProject(project);
15
+ }
16
+ }
17
+ exports.FN001035_DEP_fluentui_react = FN001035_DEP_fluentui_react;
18
+ //# sourceMappingURL=FN001035_DEP_fluentui_react.js.map
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const FN001001_DEP_microsoft_sp_core_library_1 = require("./rules/FN001001_DEP_microsoft_sp_core_library");
4
+ const FN001002_DEP_microsoft_sp_lodash_subset_1 = require("./rules/FN001002_DEP_microsoft_sp_lodash_subset");
5
+ const FN001003_DEP_microsoft_sp_office_ui_fabric_core_1 = require("./rules/FN001003_DEP_microsoft_sp_office_ui_fabric_core");
6
+ const FN001004_DEP_microsoft_sp_webpart_base_1 = require("./rules/FN001004_DEP_microsoft_sp_webpart_base");
7
+ const FN001011_DEP_microsoft_sp_dialog_1 = require("./rules/FN001011_DEP_microsoft_sp_dialog");
8
+ const FN001012_DEP_microsoft_sp_application_base_1 = require("./rules/FN001012_DEP_microsoft_sp_application_base");
9
+ const FN001013_DEP_microsoft_decorators_1 = require("./rules/FN001013_DEP_microsoft_decorators");
10
+ const FN001014_DEP_microsoft_sp_listview_extensibility_1 = require("./rules/FN001014_DEP_microsoft_sp_listview_extensibility");
11
+ const FN001021_DEP_microsoft_sp_property_pane_1 = require("./rules/FN001021_DEP_microsoft_sp_property_pane");
12
+ const FN001023_DEP_microsoft_sp_component_base_1 = require("./rules/FN001023_DEP_microsoft_sp_component_base");
13
+ const FN001024_DEP_microsoft_sp_diagnostics_1 = require("./rules/FN001024_DEP_microsoft_sp_diagnostics");
14
+ const FN001025_DEP_microsoft_sp_dynamic_data_1 = require("./rules/FN001025_DEP_microsoft_sp_dynamic_data");
15
+ const FN001026_DEP_microsoft_sp_extension_base_1 = require("./rules/FN001026_DEP_microsoft_sp_extension_base");
16
+ const FN001027_DEP_microsoft_sp_http_1 = require("./rules/FN001027_DEP_microsoft_sp_http");
17
+ const FN001028_DEP_microsoft_sp_list_subscription_1 = require("./rules/FN001028_DEP_microsoft_sp_list_subscription");
18
+ const FN001029_DEP_microsoft_sp_loader_1 = require("./rules/FN001029_DEP_microsoft_sp_loader");
19
+ const FN001030_DEP_microsoft_sp_module_interfaces_1 = require("./rules/FN001030_DEP_microsoft_sp_module_interfaces");
20
+ const FN001031_DEP_microsoft_sp_odata_types_1 = require("./rules/FN001031_DEP_microsoft_sp_odata_types");
21
+ const FN001032_DEP_microsoft_sp_page_context_1 = require("./rules/FN001032_DEP_microsoft_sp_page_context");
22
+ const FN001034_DEP_microsoft_sp_adaptive_card_extension_base_1 = require("./rules/FN001034_DEP_microsoft_sp_adaptive_card_extension_base");
23
+ const FN001035_DEP_fluentui_react_1 = require("./rules/FN001035_DEP_fluentui_react");
24
+ const FN002001_DEVDEP_microsoft_sp_build_web_1 = require("./rules/FN002001_DEVDEP_microsoft_sp_build_web");
25
+ const FN002002_DEVDEP_microsoft_sp_module_interfaces_1 = require("./rules/FN002002_DEVDEP_microsoft_sp_module_interfaces");
26
+ const FN002020_DEVDEP_microsoft_rush_stack_compiler_4_5_1 = require("./rules/FN002020_DEVDEP_microsoft_rush_stack_compiler_4_5");
27
+ const FN002022_DEVDEP_microsoft_eslint_plugin_spfx_1 = require("./rules/FN002022_DEVDEP_microsoft_eslint_plugin_spfx");
28
+ const FN002023_DEVDEP_microsoft_eslint_config_spfx_1 = require("./rules/FN002023_DEVDEP_microsoft_eslint_config_spfx");
29
+ const FN010001_YORC_version_1 = require("./rules/FN010001_YORC_version");
30
+ const FN014008_CODE_launch_hostedWorkbench_type_1 = require("./rules/FN014008_CODE_launch_hostedWorkbench_type");
31
+ module.exports = [
32
+ new FN001001_DEP_microsoft_sp_core_library_1.FN001001_DEP_microsoft_sp_core_library('1.17.2'),
33
+ new FN001002_DEP_microsoft_sp_lodash_subset_1.FN001002_DEP_microsoft_sp_lodash_subset('1.17.2'),
34
+ new FN001003_DEP_microsoft_sp_office_ui_fabric_core_1.FN001003_DEP_microsoft_sp_office_ui_fabric_core('1.17.2'),
35
+ new FN001004_DEP_microsoft_sp_webpart_base_1.FN001004_DEP_microsoft_sp_webpart_base('1.17.2'),
36
+ new FN001011_DEP_microsoft_sp_dialog_1.FN001011_DEP_microsoft_sp_dialog('1.17.2'),
37
+ new FN001012_DEP_microsoft_sp_application_base_1.FN001012_DEP_microsoft_sp_application_base('1.17.2'),
38
+ new FN001014_DEP_microsoft_sp_listview_extensibility_1.FN001014_DEP_microsoft_sp_listview_extensibility('1.17.2'),
39
+ new FN001021_DEP_microsoft_sp_property_pane_1.FN001021_DEP_microsoft_sp_property_pane('1.17.2'),
40
+ new FN001023_DEP_microsoft_sp_component_base_1.FN001023_DEP_microsoft_sp_component_base('1.17.2'),
41
+ new FN001024_DEP_microsoft_sp_diagnostics_1.FN001024_DEP_microsoft_sp_diagnostics('1.17.2'),
42
+ new FN001025_DEP_microsoft_sp_dynamic_data_1.FN001025_DEP_microsoft_sp_dynamic_data('1.17.2'),
43
+ new FN001026_DEP_microsoft_sp_extension_base_1.FN001026_DEP_microsoft_sp_extension_base('1.17.2'),
44
+ new FN001027_DEP_microsoft_sp_http_1.FN001027_DEP_microsoft_sp_http('1.17.2'),
45
+ new FN001028_DEP_microsoft_sp_list_subscription_1.FN001028_DEP_microsoft_sp_list_subscription('1.17.2'),
46
+ new FN001029_DEP_microsoft_sp_loader_1.FN001029_DEP_microsoft_sp_loader('1.17.2'),
47
+ new FN001030_DEP_microsoft_sp_module_interfaces_1.FN001030_DEP_microsoft_sp_module_interfaces('1.17.2'),
48
+ new FN001031_DEP_microsoft_sp_odata_types_1.FN001031_DEP_microsoft_sp_odata_types('1.17.2'),
49
+ new FN001032_DEP_microsoft_sp_page_context_1.FN001032_DEP_microsoft_sp_page_context('1.17.2'),
50
+ new FN001013_DEP_microsoft_decorators_1.FN001013_DEP_microsoft_decorators('1.17.2'),
51
+ new FN001034_DEP_microsoft_sp_adaptive_card_extension_base_1.FN001034_DEP_microsoft_sp_adaptive_card_extension_base('1.17.2'),
52
+ new FN001035_DEP_fluentui_react_1.FN001035_DEP_fluentui_react('7.199.1'),
53
+ new FN002022_DEVDEP_microsoft_eslint_plugin_spfx_1.FN002022_DEVDEP_microsoft_eslint_plugin_spfx('1.17.2'),
54
+ new FN002023_DEVDEP_microsoft_eslint_config_spfx_1.FN002023_DEVDEP_microsoft_eslint_config_spfx('1.17.2'),
55
+ new FN002001_DEVDEP_microsoft_sp_build_web_1.FN002001_DEVDEP_microsoft_sp_build_web('1.17.2'),
56
+ new FN002002_DEVDEP_microsoft_sp_module_interfaces_1.FN002002_DEVDEP_microsoft_sp_module_interfaces('1.17.2'),
57
+ new FN002020_DEVDEP_microsoft_rush_stack_compiler_4_5_1.FN002020_DEVDEP_microsoft_rush_stack_compiler_4_5('0.5.0'),
58
+ new FN010001_YORC_version_1.FN010001_YORC_version('1.17.2'),
59
+ new FN014008_CODE_launch_hostedWorkbench_type_1.FN014008_CODE_launch_hostedWorkbench_type('msedge')
60
+ ];
61
+ //# sourceMappingURL=upgrade-1.17.2.js.map
@@ -76,7 +76,8 @@ class SpfxProjectUpgradeCommand extends base_project_command_1.BaseProjectComman
76
76
  '1.16.0',
77
77
  '1.16.1',
78
78
  '1.17.0',
79
- '1.17.1'
79
+ '1.17.1',
80
+ '1.17.2'
80
81
  ];
81
82
  __classPrivateFieldGet(this, _SpfxProjectUpgradeCommand_instances, "m", _SpfxProjectUpgradeCommand_initTelemetry).call(this);
82
83
  __classPrivateFieldGet(this, _SpfxProjectUpgradeCommand_instances, "m", _SpfxProjectUpgradeCommand_initOptions).call(this);
@@ -489,6 +489,21 @@ class SpfxDoctorCommand extends base_project_command_1.BaseProjectCommand {
489
489
  range: '^4',
490
490
  fix: 'npm i -g yo@4'
491
491
  }
492
+ },
493
+ '1.17.2': {
494
+ gulpCli: {
495
+ range: '^1 || ^2',
496
+ fix: 'npm i -g gulp-cli@2'
497
+ },
498
+ node: {
499
+ range: '>=16.13.0 <17.0.0',
500
+ fix: 'Install Node.js >=16.13.0 <17.0.0'
501
+ },
502
+ sp: SharePointVersion.SPO,
503
+ yo: {
504
+ range: '^4',
505
+ fix: 'npm i -g yo@4'
506
+ }
492
507
  }
493
508
  };
494
509
  __classPrivateFieldGet(this, _SpfxDoctorCommand_instances, "m", _SpfxDoctorCommand_initTelemetry).call(this);
@@ -17,7 +17,7 @@ m365 adaptivecard send [options]
17
17
  : Title of the card. Specify either `title` or `card` but not both.
18
18
 
19
19
  `-d, --description [description]`
20
- : Contents of the card
20
+ : Contents of the card.
21
21
 
22
22
  `-i, --imageUrl [imageUrl]`
23
23
  : URL of the image to include on the card.
@@ -48,73 +48,73 @@ If your custom card is a card template (card with placeholders like `${title}`),
48
48
 
49
49
  ## Examples
50
50
 
51
- Send a predefined adaptive card with just title
51
+ Send a predefined adaptive card with just title.
52
52
 
53
53
  ```sh
54
54
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --title "CLI for Microsoft 365 v3.4"
55
55
  ```
56
56
 
57
- Send a predefined adaptive card with just description
57
+ Send a predefined adaptive card with just description.
58
58
 
59
59
  ```sh
60
60
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --description "New release of CLI for Microsoft 365"
61
61
  ```
62
62
 
63
- Send card with title and description
63
+ Send card with title and description.
64
64
 
65
65
  ```sh
66
66
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --title "CLI for Microsoft 365 v3.4" --description "New release of CLI for Microsoft 365"
67
67
  ```
68
68
 
69
- Send card with title, description and image
69
+ Send card with title, description, and image.
70
70
 
71
71
  ```sh
72
72
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --title "CLI for Microsoft 365 v3.4" --description "New release of CLI for Microsoft 365" --imageUrl "https://contoso.com/image.gif"
73
73
  ```
74
74
 
75
- Send card with title, description and action
75
+ Send card with title, description, and action.
76
76
 
77
77
  ```sh
78
78
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --title "CLI for Microsoft 365 v3.4" --description "New release of CLI for Microsoft 365" --actionUrl "https://aka.ms/cli-m365"
79
79
  ```
80
80
 
81
- Send card with title, description, image and action
81
+ Send card with title, description, image, and action.
82
82
 
83
83
  ```sh
84
84
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --title "CLI for Microsoft 365 v3.4" --description "New release of CLI for Microsoft 365" --imageUrl "https://contoso.com/image.gif" --actionUrl "https://aka.ms/cli-m365"
85
85
  ```
86
86
 
87
- Send card with title, description, action and unknown options
87
+ Send card with title, description, action, and unknown options.
88
88
 
89
89
  ```sh
90
90
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --title "CLI for Microsoft 365 v3.4" --description "New release of CLI for Microsoft 365" --actionUrl "https://aka.ms/cli-m365" --Version "v3.4.0" --ReleaseNotes "https://pnp.github.io/cli-microsoft365/about/release-notes/#v340"
91
91
  ```
92
92
 
93
- Send custom card without any data
93
+ Send custom card without any data.
94
94
 
95
95
  ```sh
96
96
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --card '{"type":"AdaptiveCard","body":[{"type":"TextBlock","size":"Medium","weight":"Bolder","text":"CLI for Microsoft 365 v3.4"},{"type":"TextBlock","text":"New release of CLI for Microsoft 365","wrap":true}],"actions":[{"type":"Action.OpenUrl","title":"View","url":"https://aka.ms/cli-m365"}],"$schema":"http://adaptivecards.io/schemas/adaptive-card.json","version":"1.2"}'
97
97
  ```
98
98
 
99
- Send custom card with just title merged
99
+ Send custom card with just title merged.
100
100
 
101
101
  ```sh
102
102
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --card '{"type":"AdaptiveCard","body":[{"type":"TextBlock","size":"Medium","weight":"Bolder","text":"${title}"}],"$schema":"http://adaptivecards.io/schemas/adaptive-card.json","version":"1.2"}' --title "CLI for Microsoft 365 v3.4"
103
103
  ```
104
104
 
105
- Send custom card with all known options merged
105
+ Send custom card with all known options merged.
106
106
 
107
107
  ```sh
108
108
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --card '{"type":"AdaptiveCard","body":[{"type":"TextBlock","size":"Medium","weight":"Bolder","text":"${title}"},{"type":"TextBlock","text":"${description}","wrap":true},{"type":"FactSet","facts":[{"$data":"${properties}","title":"${key}:","value":"${value}"}]}],"actions":[{"type":"Action.OpenUrl","title":"View","url":"${actionUrl}"}],"$schema":"http://adaptivecards.io/schemas/adaptive-card.json","version":"1.2"}' --title "CLI for Microsoft 365 v3.4" --description "New release of CLI for Microsoft 365" --imageUrl "https://contoso.com/image.gif" --actionUrl "https://aka.ms/cli-m365"
109
109
  ```
110
110
 
111
- Send custom card with unknown option merged
111
+ Send custom card with unknown option merged.
112
112
 
113
113
  ```sh
114
114
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --card '{"type":"AdaptiveCard","body":[{"type":"TextBlock","size":"Medium","weight":"Bolder","text":"${Title}"}],"$schema":"http://adaptivecards.io/schemas/adaptive-card.json","version":"1.2"}' --Title "CLI for Microsoft 365 v3.4"
115
115
  ```
116
116
 
117
- Send custom card with card data
117
+ Send custom card with card data.
118
118
 
119
119
  ```sh
120
120
  m365 adaptivecard send --url https://contoso.webhook.office.com/webhookb2/892e8ed3-997c-4b6e-8f8a-7f32728a8a87@f7322380-f203-42ff-93e8-66e266f6d2e4/IncomingWebhook/fcc6565ec7a944928bd43d6fc193b258/4f0482d4-b147-4f67-8a61-11f0a5019547 --card '{"type":"AdaptiveCard","body":[{"type":"TextBlock","size":"Medium","weight":"Bolder","text":"${title}"},{"type":"TextBlock","text":"${description}","wrap":true},{"type":"FactSet","facts":[{"$data":"${properties}","title":"${key}:","value":"${value}"}]}],"actions":[{"type":"Action.OpenUrl","title":"View","url":"${viewUrl}"}],"$schema":"http://adaptivecards.io/schemas/adaptive-card.json","version":"1.2"}' --cardData '{"title":"Publish Adaptive Card Schema","description":"Now that we have defined the main rules and features of the format, we need to produce a schema and publish it to GitHub. The schema will be the starting point of our reference documentation.","creator":{"name":"Matt Hidinger","profileImage":"https://pbs.twimg.com/profile_images/3647943215/d7f12830b3c17a5a9e4afcc370e3a37e_400x400.jpeg"},"createdUtc":"2017-02-14T06:08:39Z","viewUrl":"https://adaptivecards.io","properties":[{"key":"Board","value":"Adaptive Cards"},{"key":"List","value":"Backlog"},{"key":"Assigned to","value":"Matt Hidinger"},{"key":"Due date","value":"Not set"}]}'
@@ -11,7 +11,7 @@ m365 app get [options]
11
11
  ## Options
12
12
 
13
13
  `--appId [appId]`
14
- : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve information for
14
+ : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve information for.
15
15
 
16
16
  --8<-- "docs/cmd/_global.md"
17
17
 
@@ -23,13 +23,13 @@ If you have multiple apps registered in your .m365rc.json file, you can specify
23
23
 
24
24
  ## Examples
25
25
 
26
- Retrieve information about your current Azure AD app
26
+ Retrieve information about your current Azure AD app.
27
27
 
28
28
  ```sh
29
29
  m365 app get
30
30
  ```
31
31
 
32
- Retrieve information about the Azure AD app with client ID _e23d235c-fcdf-45d1-ac5f-24ab2ee0695d_ specified in the _.m365rc.json_ file
32
+ Retrieve information about the Azure AD app with client ID specified in the _.m365rc.json_ file.
33
33
 
34
34
  ```sh
35
35
  m365 app get --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
@@ -54,7 +54,7 @@ m365 app get --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
54
54
  "isDeviceOnlyAuthSupported": null,
55
55
  "isFallbackPublicClient": null,
56
56
  "notes": null,
57
- "publisherDomain": "8b7jz1.onmicrosoft.com",
57
+ "publisherDomain": "contoso.onmicrosoft.com",
58
58
  "serviceManagementReference": null,
59
59
  "signInAudience": "AzureADMyOrg",
60
60
  "tags": [],
@@ -172,7 +172,7 @@ m365 app get --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
172
172
  parentalControlSettings : {"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"}
173
173
  passwordCredentials : []
174
174
  publicClient : {"redirectUris":[]}
175
- publisherDomain : 8b7jz1.onmicrosoft.com
175
+ publisherDomain : contoso.onmicrosoft.com
176
176
  requiredResourceAccess : [{"resourceAppId":"b55b276d-2b09-4ad2-8de5-f09cf24ffba9","resourceAccess":[{"id":"162b1576-a2b2-458d-b7b9-04481911b4ef","type":"Role"}]},{"resourceAppId":"00000005-0000-0ff1-ce00-000000000000","resourceAccess":[{"id":"8e5870bb-8808-44dc-8e10-c509ed919ddd","type":"Scope"},{"id":"5db81a03-0de0-432b-b31e-71d57c8d2e0b","type":"Scope"}]}]
177
177
  samlMetadataUrl : null
178
178
  serviceManagementReference: null
@@ -188,5 +188,24 @@ m365 app get --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
188
188
 
189
189
  ```csv
190
190
  id,deletedDateTime,appId,applicationTemplateId,disabledByMicrosoftStatus,createdDateTime,displayName,description,groupMembershipClaims,identifierUris,isDeviceOnlyAuthSupported,isFallbackPublicClient,notes,publisherDomain,serviceManagementReference,signInAudience,tags,tokenEncryptionKeyId,samlMetadataUrl,defaultRedirectUri,certification,optionalClaims,addIns,api,appRoles,info,keyCredentials,parentalControlSettings,passwordCredentials,publicClient,requiredResourceAccess,verifiedPublisher,web,spa
191
- b3241f2a-6551-43d4-a72f-0d02ccfeb77f,,02f9ff8c-b79e-4552-bdda-4facd74d6df1,,,2022-10-28T21:20:57Z,My AAD app,,,[],,,,8b7jz1.onmicrosoft.com,,AzureADMyOrg,[],,,,,,[],"{""acceptMappedClaims"":null,""knownClientApplications"":[],""requestedAccessTokenVersion"":null,""oauth2PermissionScopes"":[],""preAuthorizedApplications"":[]}","[{""allowedMemberTypes"":[""User""],""description"":""Managers"",""displayName"":""Managers"",""id"":""d7c46856-8a66-485a-9047-098eba08b9a3"",""isEnabled"":true,""origin"":""Application"",""value"":""managers""}]","{""logoUrl"":null,""marketingUrl"":null,""privacyStatementUrl"":null,""supportUrl"":null,""termsOfServiceUrl"":null}",[],"{""countriesBlockedForMinors"":[],""legalAgeGroupRule"":""Allow""}",[],"{""redirectUris"":[]}","[{""resourceAppId"":""b55b276d-2b09-4ad2-8de5-f09cf24ffba9"",""resourceAccess"":[{""id"":""162b1576-a2b2-458d-b7b9-04481911b4ef"",""type"":""Role""}]},{""resourceAppId"":""00000005-0000-0ff1-ce00-000000000000"",""resourceAccess"":[{""id"":""8e5870bb-8808-44dc-8e10-c509ed919ddd"",""type"":""Scope""},{""id"":""5db81a03-0de0-432b-b31e-71d57c8d2e0b"",""type"":""Scope""}]}]","{""displayName"":null,""verifiedPublisherId"":null,""addedDateTime"":null}","{""homePageUrl"":null,""logoutUrl"":null,""redirectUris"":[],""implicitGrantSettings"":{""enableAccessTokenIssuance"":false,""enableIdTokenIssuance"":false},""redirectUriSettings"":[]}","{""redirectUris"":[]}"
191
+ b3241f2a-6551-43d4-a72f-0d02ccfeb77f,,02f9ff8c-b79e-4552-bdda-4facd74d6df1,,,2022-10-28T21:20:57Z,My AAD app,,,[],,,,contoso.onmicrosoft.com,,AzureADMyOrg,[],,,,,,[],"{""acceptMappedClaims"":null,""knownClientApplications"":[],""requestedAccessTokenVersion"":null,""oauth2PermissionScopes"":[],""preAuthorizedApplications"":[]}","[{""allowedMemberTypes"":[""User""],""description"":""Managers"",""displayName"":""Managers"",""id"":""d7c46856-8a66-485a-9047-098eba08b9a3"",""isEnabled"":true,""origin"":""Application"",""value"":""managers""}]","{""logoUrl"":null,""marketingUrl"":null,""privacyStatementUrl"":null,""supportUrl"":null,""termsOfServiceUrl"":null}",[],"{""countriesBlockedForMinors"":[],""legalAgeGroupRule"":""Allow""}",[],"{""redirectUris"":[]}","[{""resourceAppId"":""b55b276d-2b09-4ad2-8de5-f09cf24ffba9"",""resourceAccess"":[{""id"":""162b1576-a2b2-458d-b7b9-04481911b4ef"",""type"":""Role""}]},{""resourceAppId"":""00000005-0000-0ff1-ce00-000000000000"",""resourceAccess"":[{""id"":""8e5870bb-8808-44dc-8e10-c509ed919ddd"",""type"":""Scope""},{""id"":""5db81a03-0de0-432b-b31e-71d57c8d2e0b"",""type"":""Scope""}]}]","{""displayName"":null,""verifiedPublisherId"":null,""addedDateTime"":null}","{""homePageUrl"":null,""logoutUrl"":null,""redirectUris"":[],""implicitGrantSettings"":{""enableAccessTokenIssuance"":false,""enableIdTokenIssuance"":false},""redirectUriSettings"":[]}","{""redirectUris"":[]}"
192
+ ```
193
+
194
+ === "Markdown"
195
+
196
+ ```md
197
+ # app get --appId "02f9ff8c-b79e-4552-bdda-4facd74d6df1"
198
+
199
+ Date: 5/29/2023
200
+
201
+ ## My AAD app (b3241f2a-6551-43d4-a72f-0d02ccfeb77f)
202
+
203
+ Property | Value
204
+ ---------|-------
205
+ id | b3241f2a-6551-43d4-a72f-0d02ccfeb77f
206
+ appId | 02f9ff8c-b79e-4552-bdda-4facd74d6df1
207
+ createdDateTime | 2022-10-28T21:20:57Z
208
+ displayName | My AAD app
209
+ publisherDomain | contoso.onmicrosoft.com
210
+ signInAudience | AzureADMyOrg
192
211
  ```
@@ -1,6 +1,6 @@
1
1
  # app open
2
2
 
3
- Returns deep link of the current AD app to open the Azure portal on the Azure AD app registration management page.
3
+ Returns deep link of the current AD app to open the Azure portal on the Azure AD app registration management page
4
4
 
5
5
  ## Usage
6
6
 
@@ -38,7 +38,7 @@ Prints the url of the Azure AD application registration management page on the p
38
38
  m365 app open --preview
39
39
  ```
40
40
 
41
- Prints the URL to the Azure AD application registration management page on the Azure Portal, evading a possible choice prompt in the case of multiple saved apps in the `.m365rc.json` file.
41
+ Prints the URL to the Azure AD application registration management page on the Azure Portal, evading a possible choice prompt in the case of multiple saved apps in the _.m365rc.json_ file.
42
42
 
43
43
  ```sh
44
44
  m365 app open --appId d75be2e1-0204-4f95-857d-51a37cf40be8
@@ -63,3 +63,9 @@ m365 app open --appId d75be2e1-0204-4f95-857d-51a37cf40be8
63
63
  ```csv
64
64
  Use a web browser to open the page https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/Overview/appId/02f9ff8c-b79e-4552-bdda-4facd74d6df2/isMSAApp/
65
65
  ```
66
+
67
+ === "Markdown"
68
+
69
+ ```md
70
+ Use a web browser to open the page https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/Overview/appId/02f9ff8c-b79e-4552-bdda-4facd74d6df2/isMSAApp/
71
+ ```
@@ -11,13 +11,13 @@ m365 app permission add [options]
11
11
  ## Options
12
12
 
13
13
  `--appId [appId]`
14
- : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve API permissions for
14
+ : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve API permissions for.
15
15
 
16
16
  `--applicationPermission [applicationPermission]`
17
- : Space-separated list of application permissions to add
17
+ : Space-separated list of application permissions to add.
18
18
 
19
19
  `--delegatedPermission [delegatedPermission]`
20
- : Space-separated list of delegated permissions to add
20
+ : Space-separated list of delegated permissions to add.
21
21
 
22
22
  `--grantAdminConsent`
23
23
  : If specified, admin consent to the newly added permissions will be granted.
@@ -30,19 +30,19 @@ If you have multiple apps registered in your .m365rc.json file, you can specify
30
30
 
31
31
  ## Examples
32
32
 
33
- Adds the specified application permissions to the default app registered in the .m365rc.json file while granting admin consent.
33
+ Adds the specified application permissions to the default app registered in the _.m365rc.json_ file while granting admin consent.
34
34
 
35
35
  ```sh
36
36
  m365 app permission add --applicationPermission 'https://graph.microsoft.com/User.ReadWrite.All https://graph.microsoft.com/User.Read.All' --grantAdminConsent
37
37
  ```
38
38
 
39
- Adds the specified delegated permissions to the default app registered in the .m365rc.json file without granting admin consent.
39
+ Adds the specified delegated permissions to the default app registered in the _.m365rc.json_ file without granting admin consent.
40
40
 
41
41
  ```sh
42
42
  m365 app permission add --delegatedPermission 'https://graph.microsoft.com/offline_access'
43
43
  ```
44
44
 
45
- Adds the specified application and delegated permissions to a specific app registered in the .m365rc.json file while granting admin consent.
45
+ Adds the specified application and delegated permissions to a specific app registered in the _.m365rc.json_ file while granting admin consent.
46
46
 
47
47
  ```sh
48
48
  m365 app permission add --appId '1663767b-4172-4519-bfd1-28e6ff19055b' --applicationPermission 'https://graph.microsoft.com/User.ReadWrite.All https://graph.microsoft.com/User.Read.All' --delegatedPermission 'https://graph.microsoft.com/offline_access' --grantAdminConsent
@@ -11,25 +11,25 @@ m365 app permission list [options]
11
11
  ## Options
12
12
 
13
13
  `--appId [appId]`
14
- : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve API permissions for
14
+ : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve API permissions for.
15
15
 
16
16
  --8<-- "docs/cmd/_global.md"
17
17
 
18
18
  ## Remarks
19
19
 
20
- Use this command to quickly look up API permissions for the Azure AD application registration registered in the .m365rc.json file in your current project (folder).
20
+ Use this command to quickly look up API permissions for the Azure AD application registration registered in the _.m365rc.json_ file in your current project (folder).
21
21
 
22
- If you have multiple apps registered in your .m365rc.json file, you can specify the app for which you'd like to retrieve permissions using the `--appId` option. If you don't specify the app using the `--appId` option, you'll be prompted to select one of the applications from your .m365rc.json file.
22
+ If you have multiple apps registered in your .m365rc.json file, you can specify the app for which you'd like to retrieve permissions using the `--appId` option. If you don't specify the app using the `--appId` option, you'll be prompted to select one of the applications from your _.m365rc.json_ file.
23
23
 
24
24
  ## Examples
25
25
 
26
- Retrieve API permissions for your current Azure AD app
26
+ Retrieve API permissions for your current Azure AD app.
27
27
 
28
28
  ```sh
29
29
  m365 app permission list
30
30
  ```
31
31
 
32
- Retrieve API permissions for the Azure AD app with client ID _e23d235c-fcdf-45d1-ac5f-24ab2ee0695d_ specified in the _.m365rc.json_ file
32
+ Retrieve API permissions for the Azure AD app with the client ID specified in the _.m365rc.json_ file.
33
33
 
34
34
  ```sh
35
35
  m365 app permission list --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
@@ -45,16 +45,6 @@ m365 app permission list --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
45
45
  "resource": "Microsoft Teams - Teams And Channels Service",
46
46
  "permission": "channels.readwrite",
47
47
  "type": "Application"
48
- },
49
- {
50
- "resource": "Yammer",
51
- "permission": "access_as_user",
52
- "type": "Delegated"
53
- },
54
- {
55
- "resource": "Yammer",
56
- "permission": "user_impersonation",
57
- "type": "Delegated"
58
48
  }
59
49
  ]
60
50
  ```
@@ -65,8 +55,6 @@ m365 app permission list --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
65
55
  resource permission type
66
56
  -------------------------------------------- ------------------ -----------
67
57
  Microsoft Teams - Teams And Channels Service channels.readwrite Application
68
- Yammer access_as_user Delegated
69
- Yammer user_impersonation Delegated
70
58
  ```
71
59
 
72
60
  === "CSV"
@@ -74,6 +62,18 @@ m365 app permission list --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
74
62
  ```csv
75
63
  resource,permission,type
76
64
  Microsoft Teams - Teams And Channels Service,channels.readwrite,Application
77
- Yammer,access_as_user,Delegated
78
- Yammer,user_impersonation,Delegated
65
+ ```
66
+
67
+ === "Markdown"
68
+
69
+ ```md
70
+ # app permission list
71
+
72
+ Date: 5/29/2023
73
+
74
+ Property | Value
75
+ ---------|-------
76
+ resource | Microsoft Teams - Teams And Channels Service
77
+ permission | channels.readwrite
78
+ type | Application
79
79
  ```
@@ -20,13 +20,13 @@ m365 booking business get [options]
20
20
 
21
21
  ## Examples
22
22
 
23
- Retrieve the specified Microsoft Bookings business with id _business@contoso.onmicrosoft.com_.
23
+ Retrieve the specified Microsoft Bookings business with the specified id.
24
24
 
25
25
  ```sh
26
26
  m365 booking business get --id 'business@contoso.onmicrosoft.com'
27
27
  ```
28
28
 
29
- Retrieve the specified Microsoft Bookings business with name _business name_.
29
+ Retrieve the specified Microsoft Bookings business with the specified name.
30
30
 
31
31
  ```sh
32
32
  m365 booking business get --name 'business name'
@@ -38,15 +38,15 @@ m365 booking business get --name 'business name'
38
38
 
39
39
  ```json
40
40
  {
41
- "id": "Accounting@8b7jz1.onmicrosoft.com",
41
+ "id": "Accounting@contoso.onmicrosoft.com",
42
42
  "displayName": "Accounting",
43
43
  "businessType": "Financial services",
44
44
  "phone": "",
45
- "email": "runningdevadmin@8b7jz1.onmicrosoft.com",
45
+ "email": "runningdevadmin@contoso.onmicrosoft.com",
46
46
  "webSiteUrl": "",
47
47
  "defaultCurrencyIso": "USD",
48
48
  "isPublished": true,
49
- "publicUrl": "https://outlook.office365.com/owa/calendar/Accounting@8b7jz1.onmicrosoft.com/bookings/",
49
+ "publicUrl": "https://outlook.office365.com/owa/calendar/Accounting@contoso.onmicrosoft.com/bookings/",
50
50
  "languageTag": "",
51
51
  "address": {
52
52
  "street": "",
@@ -126,8 +126,8 @@ m365 booking business get --name 'business name'
126
126
  businessType : Financial services
127
127
  defaultCurrencyIso: USD
128
128
  displayName : Accounting
129
- email : runningdevadmin@8b7jz1.onmicrosoft.com
130
- id : Accounting@8b7jz1.onmicrosoft.com
129
+ email : runningdevadmin@contoso.onmicrosoft.com
130
+ id : Accounting@contoso.onmicrosoft.com
131
131
  phone :
132
132
  ```
133
133
 
@@ -135,6 +135,28 @@ m365 booking business get --name 'business name'
135
135
 
136
136
  ```csv
137
137
  id,displayName,businessType,phone,email,defaultCurrencyIso
138
- Accounting@8b7jz1.onmicrosoft.com,Accounting,Financial services,,runningdevadmin@8b7jz1.onmicrosoft.com,USD
138
+ Accounting@contoso.onmicrosoft.com,Accounting,Financial services,,runningdevadmin@contoso.onmicrosoft.com,USD
139
+ ```
140
+
141
+ === "Markdown"
142
+
143
+ ```md
144
+ # booking business get --name "Accounting"
145
+
146
+ Date: 5/29/2023
147
+
148
+ ## Accounting (Accounting@contoso.onmicrosoft.com)
139
149
 
150
+ Property | Value
151
+ ---------|-------
152
+ id | Accounting@contoso.onmicrosoft.com
153
+ displayName | Accounting
154
+ businessType | Financial services
155
+ phone |
156
+ email | runningdevadmin@contoso.onmicrosoft.com
157
+ webSiteUrl |
158
+ defaultCurrencyIso | USD
159
+ isPublished | true
160
+ publicUrl | https://outlook.office365.com/owa/calendar/Accounting@contoso.onmicrosoft.com/bookings/
161
+ languageTag |
140
162
  ```
@@ -29,10 +29,6 @@ m365 booking business list
29
29
  {
30
30
  "id": "Accounting@8b7jz1.onmicrosoft.com",
31
31
  "displayName": "Accounting"
32
- },
33
- {
34
- "id": "BestShop@8b7jz1.onmicrosoft.com",
35
- "displayName": "Best Shop"
36
32
  }
37
33
  ]
38
34
  ```
@@ -42,14 +38,27 @@ m365 booking business list
42
38
  ```text
43
39
  id displayName
44
40
  --------------------------------- -----------
45
- Accounting@8b7jz7.onmicrosoft.com Accounting
46
- BestShop@8b7jz7.onmicrosoft.com Best Shop
41
+ Accounting@contoso.onmicrosoft.com Accounting
47
42
  ```
48
43
 
49
44
  === "CSV"
50
45
 
51
46
  ```csv
52
47
  id,displayName
53
- Accounting@8b7jz7.onmicrosoft.com,Accounting
54
- BestShop@8b7jz7.onmicrosoft.com,Best Shop
48
+ Accounting@contoso.onmicrosoft.com,Accounting
49
+ ```
50
+
51
+ === "Markdown"
52
+
53
+ ```md
54
+ # booking business list
55
+
56
+ Date: 5/29/2023
57
+
58
+ ## Accounting (Accounting@contoso.onmicrosoft.com)
59
+
60
+ Property | Value
61
+ ---------|-------
62
+ id | Accounting@contoso.onmicrosoft.com
63
+ displayName | Accounting
55
64
  ```
@@ -36,7 +36,7 @@ This command doesn't change your project files. Instead, it gives you a report w
36
36
 
37
37
  !!! important
38
38
  Run this command in the folder where the project that you want to validate is located. This command doesn't change your project files.
39
-
39
+
40
40
  ## Examples
41
41
 
42
42
  Validate if your project is correctly set up and save the findings in a Markdown file
@@ -29,7 +29,7 @@ m365 spfx project upgrade [options]
29
29
 
30
30
  ## Remarks
31
31
 
32
- The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.17.1).
32
+ The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.17.2).
33
33
 
34
34
  This command doesn't change your project files. Instead, it gives you a report with all steps necessary to upgrade your project to the specified version of the SharePoint Framework. Changing project files is error-prone, especially when it comes to updating your solution's code. This is why at this moment, this command produces a report that you can use yourself to perform the necessary updates and verify that everything is working as expected.
35
35
 
@@ -31,7 +31,7 @@ m365 spo listitem list [options]
31
31
  `-l, --filter [filter]`
32
32
  : OData filter to use to query the list of items with. Specify `camlQuery` or `filter` but not both.
33
33
 
34
- `-p, --pageSize [pageSize]`
34
+ `-s, --pageSize [pageSize]`
35
35
  : Number of list items to return. Specify `camlQuery` or `pageSize` but not both. The default value is 5000.
36
36
 
37
37
  `-n, --pageNumber [pageNumber]`
@@ -53,3 +53,21 @@ m365 todo list add --name "My task list"
53
53
  displayName,isOwner,isShared,wellknownListName,id
54
54
  My task list,1,,none,AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
55
55
  ```
56
+
57
+ === "Markdown"
58
+
59
+ ```md
60
+ # todo list add --name "My task list"
61
+
62
+ Date: 26/5/2023
63
+
64
+ ## My task list (AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=)
65
+
66
+ Property | Value
67
+ ---------|-------
68
+ displayName | My task list
69
+ isOwner | true
70
+ isShared | false
71
+ wellknownListName | none
72
+ id | AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
73
+ ```
@@ -59,3 +59,21 @@ m365 todo list get --name "Task list"
59
59
  displayName,id
60
60
  Task list,AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
61
61
  ```
62
+
63
+ === "Markdown"
64
+
65
+ ```md
66
+ # todo list get --name "Task list"
67
+
68
+ Date: 25/5/2023
69
+
70
+ ## Task list (AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=)
71
+
72
+ Property | Value
73
+ ---------|-------
74
+ displayName | Task list
75
+ isOwner | true
76
+ isShared | false
77
+ wellknownListName | defaultList
78
+ id | AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
79
+ ```
@@ -50,3 +50,21 @@ m365 todo list list
50
50
  displayName,id
51
51
  Tasks,AQMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MAAuAAADMN-7V4K8g0q_adetip1DygEAxMBBaLl1lk_dAn8KkjfXKQAAAgESAAAA
52
52
  ```
53
+
54
+ === "Markdown"
55
+
56
+ ```md
57
+ # todo list list
58
+
59
+ Date: 25/5/2023
60
+
61
+ ## Tasks (AQMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MAAuAAADMN-7V4K8g0q_adetip1DygEAxMBBaLl1lk_dAn8KkjfXKQAAAgESAAAA)
62
+
63
+ Property | Value
64
+ ---------|-------
65
+ displayName | Tasks
66
+ isOwner | true
67
+ isShared | false
68
+ wellknownListName | defaultList
69
+ id | AQMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MAAuAAADMN-7V4K8g0q_adetip1DygEAxMBBaLl1lk_dAn8KkjfXKQAAAgESAAAA
70
+ ```
@@ -73,3 +73,24 @@ m365 todo task get --listId "AQMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM
73
73
  id,title,status,createdDateTime,lastModifiedDateTime
74
74
  AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=,Stay healthy,notStarted,2022-10-23T14:05:09.2673009Z,2022-10-23T14:15:11.3180312Z
75
75
  ```
76
+
77
+ === "Markdown"
78
+
79
+ ```md
80
+ # todo task get --listName "My task list" --id "AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA="
81
+
82
+ Date: 25/5/2023
83
+
84
+ ## List down the To do lists using CLI for M365 (AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=)
85
+
86
+ Property | Value
87
+ ---------|-------
88
+ importance | normal
89
+ isReminderOn | false
90
+ status | notStarted
91
+ title | Stay healthy
92
+ createdDateTime | 2022-10-23T14:05:09.2673009Z
93
+ lastModifiedDateTime | 2022-10-23T14:15:11.3180312Z
94
+ hasAttachments | false
95
+ id | AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=
96
+ ```
@@ -78,3 +78,24 @@ m365 todo task list --listId "AQMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOG
78
78
  id,title,status,createdDateTime,lastModifiedDateTime
79
79
  AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAL3xdLTAADEwEFouXWWT50CfwqSN9cpAAL3xhtSAAA=,New task,notStarted,2022-10-29T11:03:20.9175176Z,2022-10-29T11:13:23.6672968Z
80
80
  ```
81
+
82
+ === "Markdown"
83
+
84
+ ```md
85
+ # todo task list --listName "My task list"
86
+
87
+ Date: 25/5/2023
88
+
89
+ ## List down the To do lists using CLI for M365 (AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAL3xdLTAADEwEFouXWWT50CfwqSN9cpAAL3xhtSAAA=)
90
+
91
+ Property | Value
92
+ ---------|-------
93
+ importance | high
94
+ isReminderOn | true
95
+ status | notStarted
96
+ title | New task
97
+ createdDateTime | 2022-10-29T11:03:20.9175176Z
98
+ lastModifiedDateTime | 2022-10-29T11:13:23.6672968Z
99
+ hasAttachments | false
100
+ id | AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAL3xdLTAADEwEFouXWWT50CfwqSN9cpAAL3xhtSAAA=
101
+ ```
@@ -63,3 +63,9 @@ m365 util accesstoken get --resource https://contoso.sharepoint.com --new
63
63
  ```csv
64
64
  eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjJaUXBKM1VwYmpBWVhZR2FYRUpsOGxWMFRPSSIsImtpZCI6IjJaUXBKM1VwYmpBWVhZR2FYRUpsOGxWMFRPSSJ9.ewogICJhdWQiOiAiaHR0cHM6Ly9jb250b3NvLnNoYXJlcG9pbnQuY29tIiwKICAiaXNzIjogImh0dHBzOi8vc3RzLndpbmRvd3MubmV0L2VhNjExNDcxLTE2ZTEtNDEwMS1hN2M0LTMzNTNmNjc1YTBkOC8iLAogICJpYXQiOiAxNjY3NTE2MDM1LAogICJuYmYiOiAxNjY3NTE2MDM1LAogICJleHAiOiAxNjY3NTIwODE3LAogICJhY3IiOiAiMSIsCiAgImFpbyI6ICJBVFFBeS84VEFBQUE0NFZrYm45YWNXa3Y1RVIzT1M1R3N3WWxZdzlHRlpvQmtQUG50VHhlTDY4ZDNRUXdheFFlMU01OW1ycnBXOVlFIiwKICAiYW1yIjogWwogICAgInB3ZCIKICBdLAogICJhcHBfZGlzcGxheW5hbWUiOiAiUG5QIE1hbmFnZW1lbnQgU2hlbGwiLAogICJhcHBpZCI6ICIzMTM1OWM3Zi1iZDdlLTQ3NWMtODZkYi1mZGI4YzkzNzU0OGUiLAogICJhcHBpZGFjciI6ICIwIiwKICAiZmFtaWx5X25hbWUiOiAiRG9lIiwKICAiZ2l2ZW5fbmFtZSI6ICJKb2huIiwKICAiaWR0eXAiOiAidXNlciIsCiAgImlwYWRkciI6ICIyMTMuNDkuMTM3LjQ2IiwKICAibmFtZSI6ICJKb2huIERvZSIsCiAgIm9pZCI6ICJiMjA5MWUxOC03ODgyLTRlZmUtYjdkMS05MDcwM2Y1YTVjNjUiLAogICJwdWlkIjogIjEwMDMyMDAwMzJEQTIyQ0EiLAogICJyaCI6ICIwLkFURUFXSmVGOVhveE0wV0hDRVY0SHBnOGFnTUFBQUFBQVBFUHpnQUFBQUFBQUFBeEFIYy4iLAogICJzY3AiOiAiQWxsU2l0ZXMuRnVsbENvbnRyb2wgQXBwQ2F0YWxvZy5SZWFkV3JpdGUuQWxsIEF1ZGl0TG9nLlJlYWQuQWxsIEJvb2tpbmdzLlJlYWQuQWxsIENoYW5uZWxNZW1iZXIuUmVhZFdyaXRlLkFsbCBDaGFubmVsTWVzc2FnZS5SZWFkLkFsbCBDaGFubmVsTWVzc2FnZS5TZW5kIENoYW5uZWxTZXR0aW5ncy5SZWFkV3JpdGUuQWxsIENoYXQuUmVhZCBDaGF0LlJlYWRXcml0ZSBEaXJlY3RvcnkuQWNjZXNzQXNVc2VyLkFsbCBEaXJlY3RvcnkuUmVhZFdyaXRlLkFsbCBFeHRlcm5hbENvbm5lY3Rpb24uUmVhZFdyaXRlLkFsbCBHcm91cC5SZWFkV3JpdGUuQWxsIElkZW50aXR5UHJvdmlkZXIuUmVhZFdyaXRlLkFsbCBNYWlsLlJlYWRXcml0ZSBNYWlsLlNlbmQgTm90ZXMuUmVhZC5BbGwgUGxhY2UuUmVhZC5BbGwgUG9saWN5LlJlYWQuQWxsIFJlcG9ydHMuUmVhZC5BbGwgU2VjdXJpdHlFdmVudHMuUmVhZC5BbGwgU2VydmljZUhlYWx0aC5SZWFkLkFsbCBTZXJ2aWNlTWVzc2FnZS5SZWFkLkFsbCBTZXJ2aWNlTWVzc2FnZVZpZXdwb2ludC5Xcml0ZSBUYXNrcy5SZWFkV3JpdGUgVGVhbS5DcmVhdGUgVGVhbU1lbWJlci5SZWFkV3JpdGUuQWxsIFRlYW1zQXBwSW5zdGFsbGF0aW9uLlJlYWRXcml0ZUZvclVzZXIgVGVhbVNldHRpbmdzLlJlYWRXcml0ZS5BbGwgVGVhbXNUYWIuUmVhZFdyaXRlLkFsbCBUZXJtU3RvcmUuUmVhZFdyaXRlLkFsbCBVc2VyLkludml0ZS5BbGwgVXNlci5SZWFkV3JpdGUuQWxsIiwKICAic2lkIjogImQwNzE4ZmE2LTYyYzAtNDExYi04YTFjLTIyNjdhNWM5N2VkNSIsCiAgInNpZ25pbl9zdGF0ZSI6IFsKICAgICJrbXNpIgogIF0sCiAgInN1YiI6ICJCdFhiMVdVdmIzOVp6UXoyd2tTenozZnZ5emFwSFl5b1dlRHlhNzF2S3ZRIiwKICAidGlkIjogImVhNjExNDcxLTE2ZTEtNDEwMS1hN2M0LTMzNTNmNjc1YTBkOCIsCiAgInVuaXF1ZV9uYW1lIjogImpvaG4uZG9lQGNvbnRvc28ub25taWNyb3NvZnQuY29tIiwKICAidXBuIjogImpvaG4uZG9lQGNvbnRvc28ub25taWNyb3NvZnQuY29tIiwKICAidXRpIjogIjdvdDQ4UjhlQmttbk5QTnpGM1F3QUEiLAogICJ2ZXIiOiAiMS4wIiwKICAid2lkcyI6IFsKICAgICI2MmU5MDM5NC02OWY1LTQyMzctOTE5MC0wMTIxNzcxNDVlMTAiLAogICAgImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSIKICBdCn0=.Y6yWiwlla_qNGKjePmkLsF8Oq0ZFK3ujk8eHixwtHIyus5g1ojbo7K-1lgExXrKGAp59YGLIKWoU7t-LeblKrdB35QHGjRoiQk0VaomE75iX9k-if_5D98h2N6t9WwSHGQcBj3lMonG4lmQfNV5hmBx9xFwJtCkbInaFRmoLZPBCcAFKrLRzE6LjdecXaBnGtxucWKsVOZVc6RRLTvWNpKbQLuJ3azremB77qZ49BxtuVLCgYzYsf8a14mJhMlEN4_m6mPjhdmElcr8JSe6EZRxrGlKMhUhkhc4zhjkQ_nDHqzXkin80FUbyX1y5U4r71KUJvtn5bqxeDK20DQD6mQ
65
65
  ```
66
+
67
+ === "Markdown"
68
+
69
+ ```md
70
+ eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjJaUXBKM1VwYmpBWVhZR2FYRUpsOGxWMFRPSSIsImtpZCI6IjJaUXBKM1VwYmpBWVhZR2FYRUpsOGxWMFRPSSJ9.ewogICJhdWQiOiAiaHR0cHM6Ly9jb250b3NvLnNoYXJlcG9pbnQuY29tIiwKICAiaXNzIjogImh0dHBzOi8vc3RzLndpbmRvd3MubmV0L2VhNjExNDcxLTE2ZTEtNDEwMS1hN2M0LTMzNTNmNjc1YTBkOC8iLAogICJpYXQiOiAxNjY3NTE2MDM1LAogICJuYmYiOiAxNjY3NTE2MDM1LAogICJleHAiOiAxNjY3NTIwODE3LAogICJhY3IiOiAiMSIsCiAgImFpbyI6ICJBVFFBeS84VEFBQUE0NFZrYm45YWNXa3Y1RVIzT1M1R3N3WWxZdzlHRlpvQmtQUG50VHhlTDY4ZDNRUXdheFFlMU01OW1ycnBXOVlFIiwKICAiYW1yIjogWwogICAgInB3ZCIKICBdLAogICJhcHBfZGlzcGxheW5hbWUiOiAiUG5QIE1hbmFnZW1lbnQgU2hlbGwiLAogICJhcHBpZCI6ICIzMTM1OWM3Zi1iZDdlLTQ3NWMtODZkYi1mZGI4YzkzNzU0OGUiLAogICJhcHBpZGFjciI6ICIwIiwKICAiZmFtaWx5X25hbWUiOiAiRG9lIiwKICAiZ2l2ZW5fbmFtZSI6ICJKb2huIiwKICAiaWR0eXAiOiAidXNlciIsCiAgImlwYWRkciI6ICIyMTMuNDkuMTM3LjQ2IiwKICAibmFtZSI6ICJKb2huIERvZSIsCiAgIm9pZCI6ICJiMjA5MWUxOC03ODgyLTRlZmUtYjdkMS05MDcwM2Y1YTVjNjUiLAogICJwdWlkIjogIjEwMDMyMDAwMzJEQTIyQ0EiLAogICJyaCI6ICIwLkFURUFXSmVGOVhveE0wV0hDRVY0SHBnOGFnTUFBQUFBQVBFUHpnQUFBQUFBQUFBeEFIYy4iLAogICJzY3AiOiAiQWxsU2l0ZXMuRnVsbENvbnRyb2wgQXBwQ2F0YWxvZy5SZWFkV3JpdGUuQWxsIEF1ZGl0TG9nLlJlYWQuQWxsIEJvb2tpbmdzLlJlYWQuQWxsIENoYW5uZWxNZW1iZXIuUmVhZFdyaXRlLkFsbCBDaGFubmVsTWVzc2FnZS5SZWFkLkFsbCBDaGFubmVsTWVzc2FnZS5TZW5kIENoYW5uZWxTZXR0aW5ncy5SZWFkV3JpdGUuQWxsIENoYXQuUmVhZCBDaGF0LlJlYWRXcml0ZSBEaXJlY3RvcnkuQWNjZXNzQXNVc2VyLkFsbCBEaXJlY3RvcnkuUmVhZFdyaXRlLkFsbCBFeHRlcm5hbENvbm5lY3Rpb24uUmVhZFdyaXRlLkFsbCBHcm91cC5SZWFkV3JpdGUuQWxsIElkZW50aXR5UHJvdmlkZXIuUmVhZFdyaXRlLkFsbCBNYWlsLlJlYWRXcml0ZSBNYWlsLlNlbmQgTm90ZXMuUmVhZC5BbGwgUGxhY2UuUmVhZC5BbGwgUG9saWN5LlJlYWQuQWxsIFJlcG9ydHMuUmVhZC5BbGwgU2VjdXJpdHlFdmVudHMuUmVhZC5BbGwgU2VydmljZUhlYWx0aC5SZWFkLkFsbCBTZXJ2aWNlTWVzc2FnZS5SZWFkLkFsbCBTZXJ2aWNlTWVzc2FnZVZpZXdwb2ludC5Xcml0ZSBUYXNrcy5SZWFkV3JpdGUgVGVhbS5DcmVhdGUgVGVhbU1lbWJlci5SZWFkV3JpdGUuQWxsIFRlYW1zQXBwSW5zdGFsbGF0aW9uLlJlYWRXcml0ZUZvclVzZXIgVGVhbVNldHRpbmdzLlJlYWRXcml0ZS5BbGwgVGVhbXNUYWIuUmVhZFdyaXRlLkFsbCBUZXJtU3RvcmUuUmVhZFdyaXRlLkFsbCBVc2VyLkludml0ZS5BbGwgVXNlci5SZWFkV3JpdGUuQWxsIiwKICAic2lkIjogImQwNzE4ZmE2LTYyYzAtNDExYi04YTFjLTIyNjdhNWM5N2VkNSIsCiAgInNpZ25pbl9zdGF0ZSI6IFsKICAgICJrbXNpIgogIF0sCiAgInN1YiI6ICJCdFhiMVdVdmIzOVp6UXoyd2tTenozZnZ5emFwSFl5b1dlRHlhNzF2S3ZRIiwKICAidGlkIjogImVhNjExNDcxLTE2ZTEtNDEwMS1hN2M0LTMzNTNmNjc1YTBkOCIsCiAgInVuaXF1ZV9uYW1lIjogImpvaG4uZG9lQGNvbnRvc28ub25taWNyb3NvZnQuY29tIiwKICAidXBuIjogImpvaG4uZG9lQGNvbnRvc28ub25taWNyb3NvZnQuY29tIiwKICAidXRpIjogIjdvdDQ4UjhlQmttbk5QTnpGM1F3QUEiLAogICJ2ZXIiOiAiMS4wIiwKICAid2lkcyI6IFsKICAgICI2MmU5MDM5NC02OWY1LTQyMzctOTE5MC0wMTIxNzcxNDVlMTAiLAogICAgImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSIKICBdCn0=.Y6yWiwlla_qNGKjePmkLsF8Oq0ZFK3ujk8eHixwtHIyus5g1ojbo7K-1lgExXrKGAp59YGLIKWoU7t-LeblKrdB35QHGjRoiQk0VaomE75iX9k-if_5D98h2N6t9WwSHGQcBj3lMonG4lmQfNV5hmBx9xFwJtCkbInaFRmoLZPBCcAFKrLRzE6LjdecXaBnGtxucWKsVOZVc6RRLTvWNpKbQLuJ3azremB77qZ49BxtuVLCgYzYsf8a14mJhMlEN4_m6mPjhdmElcr8JSe6EZRxrGlKMhUhkhc4zhjkQ_nDHqzXkin80FUbyX1y5U4r71KUJvtn5bqxeDK20DQD6mQ
71
+ ```
@@ -50,7 +50,7 @@ m365 viva connections app create [options]
50
50
 
51
51
  ## Remarks
52
52
 
53
- If the specified portal URL doesn't exist, the command will a `404 - FILE NOT FOUND` error.
53
+ If the specified portal URL doesn't exist, the command will return `404 - FILE NOT FOUND` error.
54
54
 
55
55
  The specified portal URL must point to a valid Communication site. To get the list of Communication sites in your tenant, execute: `m365 spo site list --type CommunicationSite`.
56
56
 
@@ -72,6 +72,6 @@ The command won't return a response on success.
72
72
 
73
73
  ## More information
74
74
 
75
- - Add Viva Connections for Microsoft Teams desktop: [https://docs.microsoft.com/sharepoint/viva-connections](https://docs.microsoft.com/sharepoint/viva-connections?WT.mc_id=m365-15896-cxa)
75
+ - Add the Viva Connections app in the Teams Admin Center: [https://docs.microsoft.com/viva/connections/add-viva-connections-app](https://docs.microsoft.com/viva/connections/add-viva-connections-app)
76
76
  - App manifest checklist: [https://docs.microsoft.com/microsoftteams/platform/concepts/deploy-and-publish/appsource/prepare/app-manifest-checklist](https://docs.microsoft.com/microsoftteams/platform/concepts/deploy-and-publish/appsource/prepare/app-manifest-checklist?WT.mc_id=m365-15896-cxa)
77
- - Reference: Manifest schema for Microsoft Teams: [https://docs.microsoft.com/microsoftteams/platform/resources/schema/manifest-schema](https://docs.microsoft.com/microsoftteams/platform/resources/schema/manifest-schema?WT.mc_id=m365-15896-cxa)
77
+ - Reference: App manifest schema for Microsoft Teams: [https://docs.microsoft.com/microsoftteams/platform/resources/schema/manifest-schema](https://docs.microsoft.com/microsoftteams/platform/resources/schema/manifest-schema?WT.mc_id=m365-15896-cxa)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "6.8.0-beta.00c3a00",
3
+ "version": "6.8.0-beta.0d48896",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",