@pnp/cli-microsoft365 5.5.0-beta.4e973d9 → 5.5.0-beta.a6d97fd
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/dist/Auth.js +1 -1
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-get.md +1 -1
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-list.md +1 -1
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-list.md +1 -1
- package/package.json +1 -1
package/dist/Auth.js
CHANGED
|
@@ -330,7 +330,7 @@ class Auth {
|
|
|
330
330
|
}
|
|
331
331
|
return this.clientApplication.acquireTokenByUsernamePassword({
|
|
332
332
|
username: this.service.userName,
|
|
333
|
-
password:
|
|
333
|
+
password: this.service.password,
|
|
334
334
|
scopes: [`${resource}/.default`]
|
|
335
335
|
});
|
|
336
336
|
});
|
|
@@ -16,7 +16,7 @@ m365 tenant serviceannouncement health get [options]
|
|
|
16
16
|
`-i, --issues`
|
|
17
17
|
: Return the collection of issues that happened on the service, with detailed information for each issue. Is only returned in JSON output mode.
|
|
18
18
|
|
|
19
|
-
--8<-- "docs/cmd
|
|
19
|
+
--8<-- "docs/cmd/_global.md"
|
|
20
20
|
|
|
21
21
|
## Examples
|
|
22
22
|
|
|
@@ -13,7 +13,7 @@ m365 tenant serviceannouncement healthissue list [options]
|
|
|
13
13
|
`-s, --service [service]`
|
|
14
14
|
: Retrieve service health issues for the particular service. If not provided, retrieves health issues for all services
|
|
15
15
|
|
|
16
|
-
--8<-- "docs/cmd
|
|
16
|
+
--8<-- "docs/cmd/_global.md"
|
|
17
17
|
|
|
18
18
|
## Examples
|
|
19
19
|
|
|
@@ -13,7 +13,7 @@ m365 tenant serviceannouncement message list [options]
|
|
|
13
13
|
`-s, --service [service]`
|
|
14
14
|
: Retrieve service update messages for the particular service. If not provided, retrieves messages for all services
|
|
15
15
|
|
|
16
|
-
--8<-- "docs/cmd
|
|
16
|
+
--8<-- "docs/cmd/_global.md"
|
|
17
17
|
|
|
18
18
|
## Examples
|
|
19
19
|
|
package/package.json
CHANGED