@pnp/cli-microsoft365 10.3.0-beta.d1b978f → 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.
Files changed (31) hide show
  1. package/.eslintrc.cjs +1 -0
  2. package/allCommands.json +1 -1
  3. package/allCommandsFull.json +1 -1
  4. package/dist/config.js +1 -0
  5. package/dist/m365/entra/commands/pim/pim-role-assignment-remove.js +186 -0
  6. package/dist/m365/entra/commands/roledefinition/roledefinition-add.js +58 -0
  7. package/dist/m365/entra/commands/roledefinition/roledefinition-set.js +84 -0
  8. package/dist/m365/entra/commands.js +3 -0
  9. package/dist/m365/exo/commands/approleassignment/approleassignment-add.js +235 -0
  10. package/dist/m365/exo/commands.js +5 -0
  11. package/dist/m365/outlook/commands/mailbox/mailbox-settings-set.js +163 -0
  12. package/dist/m365/outlook/commands.js +1 -0
  13. package/dist/m365/pp/commands/website/website-get.js +60 -0
  14. package/dist/m365/pp/commands.js +2 -1
  15. package/dist/m365/spo/commands/folder/folder-roleassignment-add.js +0 -13
  16. package/dist/m365/tenant/commands/people/people-pronouns-set.js +46 -0
  17. package/dist/m365/tenant/commands.js +1 -0
  18. package/dist/utils/customAppScope.js +29 -0
  19. package/dist/utils/entraServicePrincipal.js +46 -0
  20. package/dist/utils/powerPlatform.js +38 -0
  21. package/dist/utils/roleDefinition.js +23 -0
  22. package/dist/utils/validation.js +4 -0
  23. package/docs/docs/cmd/entra/pim/pim-role-assignment-remove.mdx +197 -0
  24. package/docs/docs/cmd/entra/roledefinition/roledefinition-add.mdx +127 -0
  25. package/docs/docs/cmd/entra/roledefinition/roledefinition-set.mdx +60 -0
  26. package/docs/docs/cmd/exo/approleassignment/approleassignment-add.mdx +170 -0
  27. package/docs/docs/cmd/outlook/mailbox/mailbox-settings-set.mdx +166 -0
  28. package/docs/docs/cmd/pp/website/website-get.mdx +153 -0
  29. package/docs/docs/cmd/tenant/people/people-pronouns-set.mdx +82 -0
  30. package/npm-shrinkwrap.json +54 -74
  31. 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,153 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # pp website get
6
+
7
+ Gets information about the specified Power Pages website.
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 pp website get [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-u, --url [url]`
19
+ : The URL of the website to retrieve. Specify either `url`, `name` or `id`.
20
+
21
+ `-n, --name [name]`
22
+ : The name of the website to retrieve. Specify either `url`, `name` or `id`.
23
+
24
+ `-i, --id [id]`
25
+ : The WebSite Id (GUID) of the website to retrieve. Specify either `url`, `name` or `id`.
26
+
27
+ `-e, --environmentName <environmentName>`
28
+ : The name of the environment from which to retrieve the Power Pages website.
29
+ ```
30
+
31
+ <Global />
32
+
33
+ ## Examples
34
+
35
+ Retrieve Demo Power Pages website by name in the given environment using `name`.
36
+
37
+ ```sh
38
+ m365 pp website get --name Demo --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5
39
+ ```
40
+
41
+ Retrieve Demo Power Pages website by name in the given environment using `id`.
42
+
43
+ ```sh
44
+ m365 pp website get --id 4916bb2c-91e1-4716-91d5-b6171928fac9 --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5
45
+ ```
46
+
47
+ Retrieve Demo Power Pages website by name in the given environment using `url`.
48
+
49
+ ```sh
50
+ m365 pp website get --url https://site-0uaq9.powerappsportals.com --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5
51
+ ```
52
+
53
+ ## Response
54
+
55
+ <Tabs>
56
+ <TabItem value="JSON">
57
+
58
+ ```json
59
+ {
60
+ "@odata.metadata": "https://api.powerplatform.com/powerpages/environments/Default-727dc1e9-3cd1-4d1f-8102-ab5c936e52f0/websites/$metadata#Websites",
61
+ "id": "4916bb2c-91e1-4716-91d5-b6171928fac9",
62
+ "name": "Site 1",
63
+ "createdOn": "2024-10-27T12:00:03",
64
+ "templateName": "DefaultPortalTemplate",
65
+ "websiteUrl": "https://site-0uaq9.powerappsportals.com",
66
+ "tenantId": "727dc1e9-3cd1-4d1f-8102-ab5c936e52f0",
67
+ "dataverseInstanceUrl": "https://org0cd4b2b9.crm4.dynamics.com/",
68
+ "environmentName": "Contoso (default)",
69
+ "environmentId": "Default-727dc1e9-3cd1-4d1f-8102-ab5c936e52f0",
70
+ "dataverseOrganizationId": "2d58aeac-74d4-4939-98d1-e05a70a655ba",
71
+ "selectedBaseLanguage": 1033,
72
+ "customHostNames": [],
73
+ "websiteRecordId": "5eb107a6-5ac2-4e1c-a3b9-d5c21bbc10ce",
74
+ "subdomain": "site-0uaq9",
75
+ "packageInstallStatus": "Installed",
76
+ "type": "Trial",
77
+ "trialExpiringInDays": 86,
78
+ "suspendedWebsiteDeletingInDays": 93,
79
+ "packageVersion": "9.6.9.39",
80
+ "isEarlyUpgradeEnabled": false,
81
+ "isCustomErrorEnabled": true,
82
+ "applicationUserAadAppId": "3f57aca7-5051-41b2-989d-26da8af7a53e",
83
+ "ownerId": "33469a62-c3af-4cfe-b893-854eceab96da",
84
+ "status": "OperationComplete",
85
+ "siteVisibility": "private",
86
+ "dataModel": "Enhanced"
87
+ }
88
+ ```
89
+
90
+ </TabItem>
91
+ <TabItem value="Text">
92
+
93
+ ```text
94
+ id : 4916bb2c-91e1-4716-91d5-b6171928fac9
95
+ name : Site 1
96
+ siteVisibility: private
97
+ status : OperationComplete
98
+ subdomain : site-0uaq9
99
+ tenantId : 727dc1e9-3cd1-4d1f-8102-ab5c936e52f0
100
+ type : Trial
101
+ websiteUrl : https://site-0uaq9.powerappsportals.com
102
+ ```
103
+
104
+ </TabItem>
105
+ <TabItem value="CSV">
106
+
107
+ ```csv
108
+ @odata.metadata,id,name,createdOn,templateName,websiteUrl,tenantId,dataverseInstanceUrl,environmentName,environmentId,dataverseOrganizationId,selectedBaseLanguage,websiteRecordId,subdomain,packageInstallStatus,type,trialExpiringInDays,suspendedWebsiteDeletingInDays,packageVersion,isEarlyUpgradeEnabled,isCustomErrorEnabled,applicationUserAadAppId,ownerId,status,siteVisibility,dataModel
109
+ https://api.powerplatform.com/powerpages/environments/Default-727dc1e9-3cd1-4d1f-8102-ab5c936e52f0/websites/$metadata#Websites,4916bb2c-91e1-4716-91d5-b6171928fac9,Site 1,2024-10-27T12:00:03,DefaultPortalTemplate,https://site-0uaq9.powerappsportals.com,727dc1e9-3cd1-4d1f-8102-ab5c936e52f0,https://org0cd4b2b9.crm4.dynamics.com/,Contoso (default),Default-727dc1e9-3cd1-4d1f-8102-ab5c936e52f0,2d58aeac-74d4-4939-98d1-e05a70a655ba,1033,5eb107a6-5ac2-4e1c-a3b9-d5c21bbc10ce,site-0uaq9,Installed,Trial,86,93,9.6.9.39,0,1,3f57aca7-5051-41b2-989d-26da8af7a53e,33469a62-c3af-4cfe-b893-854eceab96da,OperationComplete,private,Enhanced
110
+ ```
111
+
112
+ </TabItem>
113
+ <TabItem value="Markdown">
114
+
115
+ ```md
116
+ # pp website get --debug "false" --verbose "false" --name "Site 1" --environmentName "Default-727dc1e9-3cd1-4d1f-8102-ab5c936e52f0"
117
+
118
+ Date: 27/10/2024
119
+
120
+ ## Site 1 (4916bb2c-91e1-4716-91d5-b6171928fac9)
121
+
122
+ Property | Value
123
+ ---------|-------
124
+ @odata.metadata | https://api.powerplatform.com/powerpages/environments/Default-727dc1e9-3cd1-4d1f-8102-ab5c936e52f0/websites/$metadata#Websites
125
+ id | 4916bb2c-91e1-4716-91d5-b6171928fac9
126
+ name | Site 1
127
+ createdOn | 2024-10-27T12:00:03
128
+ templateName | DefaultPortalTemplate
129
+ websiteUrl | https://site-0uaq9.powerappsportals.com
130
+ tenantId | 727dc1e9-3cd1-4d1f-8102-ab5c936e52f0
131
+ dataverseInstanceUrl | https://org0cd4b2b9.crm4.dynamics.com/
132
+ environmentName | Contoso (default)
133
+ environmentId | Default-727dc1e9-3cd1-4d1f-8102-ab5c936e52f0
134
+ dataverseOrganizationId | 2d58aeac-74d4-4939-98d1-e05a70a655ba
135
+ selectedBaseLanguage | 1033
136
+ websiteRecordId | 5eb107a6-5ac2-4e1c-a3b9-d5c21bbc10ce
137
+ subdomain | site-0uaq9
138
+ packageInstallStatus | Installed
139
+ type | Trial
140
+ trialExpiringInDays | 86
141
+ suspendedWebsiteDeletingInDays | 93
142
+ packageVersion | 9.6.9.39
143
+ isEarlyUpgradeEnabled | false
144
+ isCustomErrorEnabled | true
145
+ applicationUserAadAppId | 3f57aca7-5051-41b2-989d-26da8af7a53e
146
+ ownerId | 33469a62-c3af-4cfe-b893-854eceab96da
147
+ status | OperationComplete
148
+ siteVisibility | private
149
+ dataModel | Enhanced
150
+ ```
151
+
152
+ </TabItem>
153
+ </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
@@ -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.0",
15
- "@inquirer/input": "^4.1.0",
16
- "@inquirer/select": "^4.0.3",
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.4",
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.3.0",
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.3",
40
- "yaml": "^2.6.1",
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.10",
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.0",
644
- "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.0.tgz",
645
- "integrity": "sha512-osaBbIMEqVFjTX5exoqPXs6PilWQdjaLhGtMDXMXg/yxkHXNq43GlxGyTA35lK2HpzUgDN+Cjh/2AmqCN0QJpw==",
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.1",
648
- "@inquirer/type": "^3.0.1"
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.1",
659
- "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.1.tgz",
660
- "integrity": "sha512-rmZVXy9iZvO3ZStEe/ayuuwIJ23LSF13aPMlLMTQARX6lGUBDHGV8UB5i9MRrfy0+mZwt5/9bdy8llszSD3NQA==",
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.8",
663
- "@inquirer/type": "^3.0.1",
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.8",
678
- "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.8.tgz",
679
- "integrity": "sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg==",
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.0",
686
- "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.0.tgz",
687
- "integrity": "sha512-16B8A9hY741yGXzd8UJ9R8su/fuuyO2e+idd7oVLYjP23wKJ6ILRIIHcnXe8/6AoYgwRS2zp4PNsW/u/iZ24yg==",
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.1",
690
- "@inquirer/type": "^3.0.1"
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.3",
701
- "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.0.3.tgz",
702
- "integrity": "sha512-OZfKDtDE8+J54JYAFTUGZwvKNfC7W/gFCjDkcsO7HnTH/wljsZo9y/FJquOxMy++DY0+9l9o/MOZ8s5s1j5wmw==",
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.1",
705
- "@inquirer/figures": "^1.0.8",
706
- "@inquirer/type": "^3.0.1",
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.1",
719
- "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.1.tgz",
720
- "integrity": "sha512-+ksJMIy92sOAiAccGpcKZUc3bYO07cADnscIxHBknEm3uNts3movSmBofc1908BNy5edKscxYeAdaX1NXkHS6A==",
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.10",
2388
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.10.tgz",
2389
- "integrity": "sha512-/jrvh5h6NXhEauFFexRin69nA0uHJ5gwk4iDivp/DeoEua3uwCUto6PC86IpRITBOs4+6i2I56K5x5b6WYGXHA==",
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.4",
2760
- "resolved": "https://registry.npmjs.org/adaptivecards/-/adaptivecards-3.0.4.tgz",
2761
- "integrity": "sha512-9gloqhEFpeinQta+UouODbVnGYKxGWRVK918pslhdx3lUyDJcOCfcX6mzDX3Csc47c5hnsNxKXNPtjs6wbazQQ==",
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": "^8.2.6"
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.3.0",
3202
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
3203
- "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
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": "8.4.7",
6398
- "resolved": "https://registry.npmjs.org/swiper/-/swiper-8.4.7.tgz",
6399
- "integrity": "sha512-VwO/KU3i9IV2Sf+W2NqyzwWob4yX9Qdedq6vBtS0rFqJ6Fa5iLUJwxQkuD4I38w0WDJwmFl8ojkdcRFPHWD+2g==",
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.3",
6726
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.3.tgz",
6727
- "integrity": "sha512-d0z310fCWv5dJwnX1Y/MncBAqGMKEzlBb1AOf7z9K8ALnd0utBX/msg/fA0+sbyN1ihbMsLhrBlnl1ak7Wa0rg==",
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.6.1",
6938
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
6939
- "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==",
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
  },