@pnp/cli-microsoft365 10.3.0-beta.ea113b7 → 10.3.0-beta.f5e6f85
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/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/config.js +1 -0
- package/dist/m365/entra/commands/roledefinition/roledefinition-add.js +58 -0
- package/dist/m365/entra/commands/roledefinition/roledefinition-set.js +84 -0
- package/dist/m365/entra/commands.js +2 -0
- package/dist/m365/outlook/commands/mailbox/mailbox-settings-set.js +163 -0
- package/dist/m365/outlook/commands.js +1 -0
- package/dist/m365/tenant/commands/people/people-pronouns-set.js +46 -0
- package/dist/m365/tenant/commands.js +1 -0
- package/docs/docs/cmd/entra/roledefinition/roledefinition-add.mdx +127 -0
- package/docs/docs/cmd/entra/roledefinition/roledefinition-set.mdx +60 -0
- package/docs/docs/cmd/outlook/mailbox/mailbox-settings-set.mdx +166 -0
- package/docs/docs/cmd/tenant/people/people-pronouns-set.mdx +82 -0
- package/npm-shrinkwrap.json +54 -74
- package/package.json +9 -9
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
4
|
+
|
|
5
|
+
# outlook mailbox settings set
|
|
6
|
+
|
|
7
|
+
Updates user mailbox settings
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
m365 outlook mailbox settings set [options]
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Options
|
|
16
|
+
|
|
17
|
+
```md definition-list
|
|
18
|
+
`-i, --userId [userId]`
|
|
19
|
+
: The ID of the Microsoft Entra user to update mailbox settings for. Either `userId` or `userName` is required when using application permissions.
|
|
20
|
+
|
|
21
|
+
`-n, --userName [userName]`
|
|
22
|
+
: The UPN of the Microsoft Entra user to update mailbox settings for. Either `userId` or `userName` is required when using application permissions.
|
|
23
|
+
|
|
24
|
+
`--dateFormat [dateFormat]`
|
|
25
|
+
: The date format for the user's mailbox. Example: `dd.MM.yyyy`.
|
|
26
|
+
|
|
27
|
+
`--timeFormat [timeFormat]`
|
|
28
|
+
: The time format for the user's mailbox. Example: `H:mm`.
|
|
29
|
+
|
|
30
|
+
`--timeZone [timeZone]`
|
|
31
|
+
: The default time zone for the user's mailbox. Should follow [Windows time zone name](https://learn.microsoft.com/windows-hardware/manufacture/desktop/default-time-zones?view=windows-11#time-zones) or [IANA time zone identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). Example: `Central Europe Standard Time`.
|
|
32
|
+
|
|
33
|
+
`--language [language]`
|
|
34
|
+
: The preferred language for the user. Should follow [ISO 639-1 Code](https://learn.microsoft.com/openspecs/office_standards/ms-oe376/6c085406-a698-4e12-9d4d-c3b0ee3dbc4a). Example: `en-US`.
|
|
35
|
+
|
|
36
|
+
`--delegateMeetingMessageDeliveryOptions [delegateMeetingMessageDeliveryOptions]`
|
|
37
|
+
: Specifies who can receive meeting messages and meeting responses. Allowed values are `sendToDelegateOnly`, `sendToDelegateAndPrincipal`, or `sendToDelegateAndInformationToPrincipal`.
|
|
38
|
+
|
|
39
|
+
`--workingDays [workingDays]`
|
|
40
|
+
: The days of the week on which the user works, separated by a comma. Allowed values are `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, or `sunday`.
|
|
41
|
+
|
|
42
|
+
`--workingHoursStartTime [workingHoursStartTime]`
|
|
43
|
+
: The time of the day that the user starts working. Example: `09:00`.
|
|
44
|
+
|
|
45
|
+
`--workingHoursEndTime [workingHoursEndTime]`
|
|
46
|
+
: The time of the day that the user stops working. Example: `17:00`.
|
|
47
|
+
|
|
48
|
+
`--workingHoursTimeZone [workingHoursTimeZone]`
|
|
49
|
+
: The name of a time zone to which the working hours apply. Should follow [Windows time zone name](https://learn.microsoft.com/windows-hardware/manufacture/desktop/default-time-zones?view=windows-11#time-zones) or [IANA time zone identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). Example: `Central Europe Standard Time`.
|
|
50
|
+
|
|
51
|
+
`--autoReplyExternalAudience [autoReplyExternalAudience]`
|
|
52
|
+
: Specifies external audience who will receive reply message. Allowed values are `none`, `contactsOnly`, or `all`.
|
|
53
|
+
|
|
54
|
+
`--autoReplyExternalMessage [autoReplyExternalMessage]`
|
|
55
|
+
: The reply message for the external audience.
|
|
56
|
+
|
|
57
|
+
`--autoReplyInternalMessage [autoReplyInternalMessage]`
|
|
58
|
+
: The reply message for the audience from the signed-in user's organization.
|
|
59
|
+
|
|
60
|
+
`--autoReplyStartDateTime [autoReplyStartDateTime]`
|
|
61
|
+
: The date and time that automatic replies are set to begin. Example: `2025-01-06T11:00:00.0000000`.
|
|
62
|
+
|
|
63
|
+
`--autoReplyStartTimeZone [autoReplyStartTimeZone]`
|
|
64
|
+
: The time zone that automatic replies are set to begin.
|
|
65
|
+
|
|
66
|
+
`--autoReplyEndDateTime [autoReplyEndDateTime]`
|
|
67
|
+
: The date and time that automatic replies are set to end. Example: `2025-01-07T11:00:00.0000000`.
|
|
68
|
+
|
|
69
|
+
`--autoReplyEndTimeZone [autoReplyEndTimeZone]`
|
|
70
|
+
: The time zone that automatic replies are set to end.
|
|
71
|
+
|
|
72
|
+
`--autoReplyStatus [autoReplyStatus]`
|
|
73
|
+
: The status for automatic replies. Allowed values are `disabled`, `alwaysEnabled`, or `scheduled`.
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
<Global />
|
|
77
|
+
|
|
78
|
+
## Examples
|
|
79
|
+
|
|
80
|
+
Update date, time format and time zone of the signed-in user.
|
|
81
|
+
|
|
82
|
+
```sh
|
|
83
|
+
m365 outlook mailbox settings set --dateFormat 'dd.MM.yyyy' --timeFormat 'H:mm' --timeZone 'Central Europe Standard Time' --language 'en-US'
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Update working hours of a user specified by id
|
|
87
|
+
|
|
88
|
+
```sh
|
|
89
|
+
m365 outlook mailbox settings set --userId 1caf7dcd-7e83-4c3a-94f7-932a1299c844 --workingDays 'monday,tuesday,thursday,friday' --workingHoursStartTime '08:00' --workingHoursEndTime '16:30' --workingHoursTimeZone 'Central Europe Standard Time'
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Set scheduled automatic replies for the internal audience of a user specified by UPN
|
|
93
|
+
|
|
94
|
+
```sh
|
|
95
|
+
m365 outlook mailbox settings set --userName john.doe@contoso.com --autoReplyExternalAudience none --autoReplyInternalMessage 'On vacation' --autoReplyStartDateTime '2024-08-05T08:00:00.0000000' --autoReplyStartTimeZone 'Central Europe Standard Time' --autoReplyEndDateTime '2024-08-09T16:00:00.0000000' --autoReplyEndTimeZone 'Central Europe Standard Time' --autoReplyStatus scheduled
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Response
|
|
99
|
+
|
|
100
|
+
The command returns the updated properties of the user mailbox settings.
|
|
101
|
+
|
|
102
|
+
<Tabs>
|
|
103
|
+
<TabItem value="JSON">
|
|
104
|
+
|
|
105
|
+
```json
|
|
106
|
+
{
|
|
107
|
+
"timeZone": "Central Europe Standard Time",
|
|
108
|
+
"timeFormat": "H:mm",
|
|
109
|
+
"dateFormat": "dd.MM.yyyy",
|
|
110
|
+
"language": {
|
|
111
|
+
"locale": "en-US",
|
|
112
|
+
"displayName": "English (United States)"
|
|
113
|
+
},
|
|
114
|
+
"workingHours": {
|
|
115
|
+
"daysOfWeek": [
|
|
116
|
+
"monday",
|
|
117
|
+
"tuesday",
|
|
118
|
+
"wednesday",
|
|
119
|
+
"thursday",
|
|
120
|
+
"friday"
|
|
121
|
+
],
|
|
122
|
+
"startTime": "08:00:00.0000000",
|
|
123
|
+
"endTime": "16:30:00.0000000",
|
|
124
|
+
"timeZone": {
|
|
125
|
+
"name": "Central Europe Standard Time"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
</TabItem>
|
|
132
|
+
<TabItem value="Text">
|
|
133
|
+
|
|
134
|
+
```text
|
|
135
|
+
dateFormat : dd.MM.yyyy
|
|
136
|
+
language : {"locale":"en-US","displayName":"English (United States)"}
|
|
137
|
+
timeFormat : H:mm
|
|
138
|
+
timeZone : Central Europe Standard Time
|
|
139
|
+
workingHours: {"daysOfWeek":["monday","tuesday","wednesday","thursday","friday"],"startTime":"08:00:00.0000000","endTime":"16:30:00.0000000","timeZone":{"name":"Central Europe Standard Time"}}
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
</TabItem>
|
|
143
|
+
<TabItem value="CSV">
|
|
144
|
+
|
|
145
|
+
```csv
|
|
146
|
+
dateFormat,timeZone,timeFormat
|
|
147
|
+
dd.MM.yyy,Central Europe Standard Time,H:mm
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
</TabItem>
|
|
151
|
+
<TabItem value="Markdown">
|
|
152
|
+
|
|
153
|
+
```md
|
|
154
|
+
# outlook mailbox settings set --dateFormat "dd.MM.yyyy" --timeFormat "H:mm" --timeZone "Central Europe Standard Time" --language "en-US" --workingDays "monday,tuesday,wednesday,thursday,friday" --workingHoursStartTime "08:00:00.0000000" --workingHoursEndTime "16:30:00.0000000" --workingHoursTimeZone "Central Europe Standard Time"
|
|
155
|
+
|
|
156
|
+
Date: 1/6/2025
|
|
157
|
+
|
|
158
|
+
Property | Value
|
|
159
|
+
---------|-------
|
|
160
|
+
dateFormat | dd.MM.yyyy
|
|
161
|
+
timeZone | Central Europe Standard Time
|
|
162
|
+
timeFormat | H:mm
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
</TabItem>
|
|
166
|
+
</Tabs>
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
4
|
+
|
|
5
|
+
# tenant people pronouns set
|
|
6
|
+
|
|
7
|
+
Manage pronouns settings for an organization
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
m365 tenant people pronouns set [options]
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Options
|
|
16
|
+
|
|
17
|
+
```md definition-list
|
|
18
|
+
`-e, --enabled <enabled>`
|
|
19
|
+
: Specifies whether the pronouns are enabled in the organization or not.
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
<Global />
|
|
23
|
+
|
|
24
|
+
## Examples
|
|
25
|
+
|
|
26
|
+
Enable pronouns in the organization
|
|
27
|
+
|
|
28
|
+
```sh
|
|
29
|
+
m365 tenant people pronouns set --enabled true
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Disable pronouns in the organization
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
m365 tenant people pronouns set --enabled false
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Response
|
|
39
|
+
|
|
40
|
+
<Tabs>
|
|
41
|
+
<TabItem value="JSON">
|
|
42
|
+
|
|
43
|
+
```json
|
|
44
|
+
{
|
|
45
|
+
"isEnabledInOrganization": true
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
</TabItem>
|
|
50
|
+
<TabItem value="Text">
|
|
51
|
+
|
|
52
|
+
```text
|
|
53
|
+
isEnabledInOrganization: true
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
</TabItem>
|
|
57
|
+
<TabItem value="CSV">
|
|
58
|
+
|
|
59
|
+
```csv
|
|
60
|
+
isEnabledInOrganization
|
|
61
|
+
1
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
</TabItem>
|
|
65
|
+
<TabItem value="Markdown">
|
|
66
|
+
|
|
67
|
+
```md
|
|
68
|
+
# tenant people pronouns get
|
|
69
|
+
|
|
70
|
+
Date: 12/14/2024
|
|
71
|
+
|
|
72
|
+
Property | Value
|
|
73
|
+
---------|-------
|
|
74
|
+
isEnabledInOrganization | true
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
</TabItem>
|
|
78
|
+
</Tabs>
|
|
79
|
+
|
|
80
|
+
## More information
|
|
81
|
+
|
|
82
|
+
- https://learn.microsoft.com/graph/api/pronounssettings-update
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -11,17 +11,17 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@azure/msal-common": "^14.16.0",
|
|
13
13
|
"@azure/msal-node": "^2.16.2",
|
|
14
|
-
"@inquirer/confirm": "^5.1.
|
|
15
|
-
"@inquirer/input": "^4.1.
|
|
16
|
-
"@inquirer/select": "^4.0.
|
|
14
|
+
"@inquirer/confirm": "^5.1.1",
|
|
15
|
+
"@inquirer/input": "^4.1.1",
|
|
16
|
+
"@inquirer/select": "^4.0.4",
|
|
17
17
|
"@xmldom/xmldom": "^0.9.6",
|
|
18
18
|
"adaptive-expressions": "^4.23.1",
|
|
19
|
-
"adaptivecards": "^3.0.
|
|
19
|
+
"adaptivecards": "^3.0.5",
|
|
20
20
|
"adaptivecards-templating": "^2.3.1",
|
|
21
21
|
"adm-zip": "^0.5.16",
|
|
22
22
|
"applicationinsights": "^3.4.0",
|
|
23
23
|
"axios": "^1.7.9",
|
|
24
|
-
"chalk": "^5.
|
|
24
|
+
"chalk": "^5.4.1",
|
|
25
25
|
"clipboardy": "^4.0.0",
|
|
26
26
|
"configstore": "^7.0.0",
|
|
27
27
|
"csv-parse": "^5.6.0",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"strip-json-comments": "^5.0.1",
|
|
37
37
|
"typescript": "^5.7.2",
|
|
38
38
|
"update-notifier": "^7.3.1",
|
|
39
|
-
"uuid": "^11.0.
|
|
40
|
-
"yaml": "^2.
|
|
39
|
+
"uuid": "^11.0.4",
|
|
40
|
+
"yaml": "^2.7.0",
|
|
41
41
|
"yargs-parser": "^21.1.1",
|
|
42
42
|
"zod": "^3.24.1"
|
|
43
43
|
},
|
|
@@ -55,7 +55,7 @@
|
|
|
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": "^20.17.
|
|
58
|
+
"@types/node": "^20.17.12",
|
|
59
59
|
"@types/node-forge": "^1.3.11",
|
|
60
60
|
"@types/omelette": "^0.4.4",
|
|
61
61
|
"@types/semver": "^7.5.8",
|
|
@@ -640,12 +640,12 @@
|
|
|
640
640
|
"dev": true
|
|
641
641
|
},
|
|
642
642
|
"node_modules/@inquirer/confirm": {
|
|
643
|
-
"version": "5.1.
|
|
644
|
-
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.
|
|
645
|
-
"integrity": "sha512-
|
|
643
|
+
"version": "5.1.1",
|
|
644
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.1.tgz",
|
|
645
|
+
"integrity": "sha512-vVLSbGci+IKQvDOtzpPTCOiEJCNidHcAq9JYVoWTW0svb5FiwSLotkM+JXNXejfjnzVYV9n0DTBythl9+XgTxg==",
|
|
646
646
|
"dependencies": {
|
|
647
|
-
"@inquirer/core": "^10.1.
|
|
648
|
-
"@inquirer/type": "^3.0.
|
|
647
|
+
"@inquirer/core": "^10.1.2",
|
|
648
|
+
"@inquirer/type": "^3.0.2"
|
|
649
649
|
},
|
|
650
650
|
"engines": {
|
|
651
651
|
"node": ">=18"
|
|
@@ -655,12 +655,12 @@
|
|
|
655
655
|
}
|
|
656
656
|
},
|
|
657
657
|
"node_modules/@inquirer/core": {
|
|
658
|
-
"version": "10.1.
|
|
659
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.
|
|
660
|
-
"integrity": "sha512-
|
|
658
|
+
"version": "10.1.2",
|
|
659
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.2.tgz",
|
|
660
|
+
"integrity": "sha512-bHd96F3ezHg1mf/J0Rb4CV8ndCN0v28kUlrHqP7+ECm1C/A+paB7Xh2lbMk6x+kweQC+rZOxM/YeKikzxco8bQ==",
|
|
661
661
|
"dependencies": {
|
|
662
|
-
"@inquirer/figures": "^1.0.
|
|
663
|
-
"@inquirer/type": "^3.0.
|
|
662
|
+
"@inquirer/figures": "^1.0.9",
|
|
663
|
+
"@inquirer/type": "^3.0.2",
|
|
664
664
|
"ansi-escapes": "^4.3.2",
|
|
665
665
|
"cli-width": "^4.1.0",
|
|
666
666
|
"mute-stream": "^2.0.0",
|
|
@@ -674,20 +674,20 @@
|
|
|
674
674
|
}
|
|
675
675
|
},
|
|
676
676
|
"node_modules/@inquirer/figures": {
|
|
677
|
-
"version": "1.0.
|
|
678
|
-
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.
|
|
679
|
-
"integrity": "sha512-
|
|
677
|
+
"version": "1.0.9",
|
|
678
|
+
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.9.tgz",
|
|
679
|
+
"integrity": "sha512-BXvGj0ehzrngHTPTDqUoDT3NXL8U0RxUk2zJm2A66RhCEIWdtU1v6GuUqNAgArW4PQ9CinqIWyHdQgdwOj06zQ==",
|
|
680
680
|
"engines": {
|
|
681
681
|
"node": ">=18"
|
|
682
682
|
}
|
|
683
683
|
},
|
|
684
684
|
"node_modules/@inquirer/input": {
|
|
685
|
-
"version": "4.1.
|
|
686
|
-
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.
|
|
687
|
-
"integrity": "sha512-
|
|
685
|
+
"version": "4.1.1",
|
|
686
|
+
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.1.tgz",
|
|
687
|
+
"integrity": "sha512-nAXAHQndZcXB+7CyjIW3XuQZZHbQQ0q8LX6miY6bqAWwDzNa9JUioDBYrFmOUNIsuF08o1WT/m2gbBXvBhYVxg==",
|
|
688
688
|
"dependencies": {
|
|
689
|
-
"@inquirer/core": "^10.1.
|
|
690
|
-
"@inquirer/type": "^3.0.
|
|
689
|
+
"@inquirer/core": "^10.1.2",
|
|
690
|
+
"@inquirer/type": "^3.0.2"
|
|
691
691
|
},
|
|
692
692
|
"engines": {
|
|
693
693
|
"node": ">=18"
|
|
@@ -697,13 +697,13 @@
|
|
|
697
697
|
}
|
|
698
698
|
},
|
|
699
699
|
"node_modules/@inquirer/select": {
|
|
700
|
-
"version": "4.0.
|
|
701
|
-
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.0.
|
|
702
|
-
"integrity": "sha512-
|
|
700
|
+
"version": "4.0.4",
|
|
701
|
+
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.0.4.tgz",
|
|
702
|
+
"integrity": "sha512-ZzYLuLoUzTIW9EJm++jBpRiTshGqS3Q1o5qOEQqgzaBlmdsjQr6pA4TUNkwu6OBYgM2mIRbCz6mUhFDfl/GF+w==",
|
|
703
703
|
"dependencies": {
|
|
704
|
-
"@inquirer/core": "^10.1.
|
|
705
|
-
"@inquirer/figures": "^1.0.
|
|
706
|
-
"@inquirer/type": "^3.0.
|
|
704
|
+
"@inquirer/core": "^10.1.2",
|
|
705
|
+
"@inquirer/figures": "^1.0.9",
|
|
706
|
+
"@inquirer/type": "^3.0.2",
|
|
707
707
|
"ansi-escapes": "^4.3.2",
|
|
708
708
|
"yoctocolors-cjs": "^2.1.2"
|
|
709
709
|
},
|
|
@@ -715,9 +715,9 @@
|
|
|
715
715
|
}
|
|
716
716
|
},
|
|
717
717
|
"node_modules/@inquirer/type": {
|
|
718
|
-
"version": "3.0.
|
|
719
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.
|
|
720
|
-
"integrity": "sha512
|
|
718
|
+
"version": "3.0.2",
|
|
719
|
+
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.2.tgz",
|
|
720
|
+
"integrity": "sha512-ZhQ4TvhwHZF+lGhQ2O/rsjo80XoZR5/5qhOY3t6FJuX5XBg5Be8YzYTvaUGJnc12AUGI2nr4QSUE4PhKSigx7g==",
|
|
721
721
|
"engines": {
|
|
722
722
|
"node": ">=18"
|
|
723
723
|
},
|
|
@@ -2384,9 +2384,9 @@
|
|
|
2384
2384
|
}
|
|
2385
2385
|
},
|
|
2386
2386
|
"node_modules/@types/node": {
|
|
2387
|
-
"version": "20.17.
|
|
2388
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.
|
|
2389
|
-
"integrity": "sha512
|
|
2387
|
+
"version": "20.17.12",
|
|
2388
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.12.tgz",
|
|
2389
|
+
"integrity": "sha512-vo/wmBgMIiEA23A/knMfn/cf37VnuF52nZh5ZoW0GWt4e4sxNquibrMRJ7UQsA06+MBx9r/H1jsI9grYjQCQlw==",
|
|
2390
2390
|
"dependencies": {
|
|
2391
2391
|
"undici-types": "~6.19.2"
|
|
2392
2392
|
}
|
|
@@ -2756,11 +2756,11 @@
|
|
|
2756
2756
|
}
|
|
2757
2757
|
},
|
|
2758
2758
|
"node_modules/adaptivecards": {
|
|
2759
|
-
"version": "3.0.
|
|
2760
|
-
"resolved": "https://registry.npmjs.org/adaptivecards/-/adaptivecards-3.0.
|
|
2761
|
-
"integrity": "sha512-
|
|
2759
|
+
"version": "3.0.5",
|
|
2760
|
+
"resolved": "https://registry.npmjs.org/adaptivecards/-/adaptivecards-3.0.5.tgz",
|
|
2761
|
+
"integrity": "sha512-MCj9tJY/G3X8T4aUHM2MOQliKSqsXEyxmIca1FoKXCiJpgSgLPhSifsmjMoz1nb+2HbSCqvvkZ12fxJwvkdtXA==",
|
|
2762
2762
|
"peerDependencies": {
|
|
2763
|
-
"swiper": "^
|
|
2763
|
+
"swiper": "^11.0.7"
|
|
2764
2764
|
}
|
|
2765
2765
|
},
|
|
2766
2766
|
"node_modules/adaptivecards-templating": {
|
|
@@ -3198,9 +3198,9 @@
|
|
|
3198
3198
|
}
|
|
3199
3199
|
},
|
|
3200
3200
|
"node_modules/chalk": {
|
|
3201
|
-
"version": "5.
|
|
3202
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.
|
|
3203
|
-
"integrity": "sha512-
|
|
3201
|
+
"version": "5.4.1",
|
|
3202
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
|
|
3203
|
+
"integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
|
|
3204
3204
|
"engines": {
|
|
3205
3205
|
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
3206
3206
|
},
|
|
@@ -3607,15 +3607,6 @@
|
|
|
3607
3607
|
"node": ">=6.0.0"
|
|
3608
3608
|
}
|
|
3609
3609
|
},
|
|
3610
|
-
"node_modules/dom7": {
|
|
3611
|
-
"version": "4.0.6",
|
|
3612
|
-
"resolved": "https://registry.npmjs.org/dom7/-/dom7-4.0.6.tgz",
|
|
3613
|
-
"integrity": "sha512-emjdpPLhpNubapLFdjNL9tP06Sr+GZkrIHEXLWvOGsytACUrkbeIdjO5g77m00BrHTznnlcNqgmn7pCN192TBA==",
|
|
3614
|
-
"peer": true,
|
|
3615
|
-
"dependencies": {
|
|
3616
|
-
"ssr-window": "^4.0.0"
|
|
3617
|
-
}
|
|
3618
|
-
},
|
|
3619
3610
|
"node_modules/dot-prop": {
|
|
3620
3611
|
"version": "9.0.0",
|
|
3621
3612
|
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-9.0.0.tgz",
|
|
@@ -6226,12 +6217,6 @@
|
|
|
6226
6217
|
"source-map": "^0.6.0"
|
|
6227
6218
|
}
|
|
6228
6219
|
},
|
|
6229
|
-
"node_modules/ssr-window": {
|
|
6230
|
-
"version": "4.0.2",
|
|
6231
|
-
"resolved": "https://registry.npmjs.org/ssr-window/-/ssr-window-4.0.2.tgz",
|
|
6232
|
-
"integrity": "sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==",
|
|
6233
|
-
"peer": true
|
|
6234
|
-
},
|
|
6235
6220
|
"node_modules/stoppable": {
|
|
6236
6221
|
"version": "1.1.0",
|
|
6237
6222
|
"resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz",
|
|
@@ -6394,9 +6379,9 @@
|
|
|
6394
6379
|
}
|
|
6395
6380
|
},
|
|
6396
6381
|
"node_modules/swiper": {
|
|
6397
|
-
"version": "
|
|
6398
|
-
"resolved": "https://registry.npmjs.org/swiper/-/swiper-
|
|
6399
|
-
"integrity": "sha512-
|
|
6382
|
+
"version": "11.2.0",
|
|
6383
|
+
"resolved": "https://registry.npmjs.org/swiper/-/swiper-11.2.0.tgz",
|
|
6384
|
+
"integrity": "sha512-rjjAKgDEs+grR2eQshVDCcE4KNPC7CI294nfcbV9gE8WCsLdvOYXDeZKUYevqAZZp8j5hE7kpT3dAGVKFBWlxQ==",
|
|
6400
6385
|
"funding": [
|
|
6401
6386
|
{
|
|
6402
6387
|
"type": "patreon",
|
|
@@ -6407,12 +6392,7 @@
|
|
|
6407
6392
|
"url": "http://opencollective.com/swiper"
|
|
6408
6393
|
}
|
|
6409
6394
|
],
|
|
6410
|
-
"hasInstallScript": true,
|
|
6411
6395
|
"peer": true,
|
|
6412
|
-
"dependencies": {
|
|
6413
|
-
"dom7": "^4.0.4",
|
|
6414
|
-
"ssr-window": "^4.0.2"
|
|
6415
|
-
},
|
|
6416
6396
|
"engines": {
|
|
6417
6397
|
"node": ">= 4.7.0"
|
|
6418
6398
|
}
|
|
@@ -6722,9 +6702,9 @@
|
|
|
6722
6702
|
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
|
6723
6703
|
},
|
|
6724
6704
|
"node_modules/uuid": {
|
|
6725
|
-
"version": "11.0.
|
|
6726
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.
|
|
6727
|
-
"integrity": "sha512-
|
|
6705
|
+
"version": "11.0.4",
|
|
6706
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.4.tgz",
|
|
6707
|
+
"integrity": "sha512-IzL6VtTTYcAhA/oghbFJ1Dkmqev+FpQWnCBaKq/gUluLxliWvO8DPFWfIviRmYbtaavtSQe4WBL++rFjdcGWEg==",
|
|
6728
6708
|
"funding": [
|
|
6729
6709
|
"https://github.com/sponsors/broofa",
|
|
6730
6710
|
"https://github.com/sponsors/ctavan"
|
|
@@ -6934,9 +6914,9 @@
|
|
|
6934
6914
|
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
|
|
6935
6915
|
},
|
|
6936
6916
|
"node_modules/yaml": {
|
|
6937
|
-
"version": "2.
|
|
6938
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.
|
|
6939
|
-
"integrity": "sha512
|
|
6917
|
+
"version": "2.7.0",
|
|
6918
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
|
|
6919
|
+
"integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
|
|
6940
6920
|
"bin": {
|
|
6941
6921
|
"yaml": "bin.mjs"
|
|
6942
6922
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "10.3.0-beta.
|
|
3
|
+
"version": "10.3.0-beta.f5e6f85",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -255,17 +255,17 @@
|
|
|
255
255
|
"dependencies": {
|
|
256
256
|
"@azure/msal-common": "^14.16.0",
|
|
257
257
|
"@azure/msal-node": "^2.16.2",
|
|
258
|
-
"@inquirer/confirm": "^5.1.
|
|
259
|
-
"@inquirer/input": "^4.1.
|
|
260
|
-
"@inquirer/select": "^4.0.
|
|
258
|
+
"@inquirer/confirm": "^5.1.1",
|
|
259
|
+
"@inquirer/input": "^4.1.1",
|
|
260
|
+
"@inquirer/select": "^4.0.4",
|
|
261
261
|
"@xmldom/xmldom": "^0.9.6",
|
|
262
262
|
"adaptive-expressions": "^4.23.1",
|
|
263
|
-
"adaptivecards": "^3.0.
|
|
263
|
+
"adaptivecards": "^3.0.5",
|
|
264
264
|
"adaptivecards-templating": "^2.3.1",
|
|
265
265
|
"adm-zip": "^0.5.16",
|
|
266
266
|
"applicationinsights": "^3.4.0",
|
|
267
267
|
"axios": "^1.7.9",
|
|
268
|
-
"chalk": "^5.
|
|
268
|
+
"chalk": "^5.4.1",
|
|
269
269
|
"clipboardy": "^4.0.0",
|
|
270
270
|
"configstore": "^7.0.0",
|
|
271
271
|
"csv-parse": "^5.6.0",
|
|
@@ -280,8 +280,8 @@
|
|
|
280
280
|
"strip-json-comments": "^5.0.1",
|
|
281
281
|
"typescript": "^5.7.2",
|
|
282
282
|
"update-notifier": "^7.3.1",
|
|
283
|
-
"uuid": "^11.0.
|
|
284
|
-
"yaml": "^2.
|
|
283
|
+
"uuid": "^11.0.4",
|
|
284
|
+
"yaml": "^2.7.0",
|
|
285
285
|
"yargs-parser": "^21.1.1",
|
|
286
286
|
"zod": "^3.24.1"
|
|
287
287
|
},
|
|
@@ -293,7 +293,7 @@
|
|
|
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": "^20.17.
|
|
296
|
+
"@types/node": "^20.17.12",
|
|
297
297
|
"@types/node-forge": "^1.3.11",
|
|
298
298
|
"@types/omelette": "^0.4.4",
|
|
299
299
|
"@types/semver": "^7.5.8",
|