@pnp/cli-microsoft365 6.0.0-beta.fe4e66d → 6.0.0-beta.ff232be
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/m365/aad/commands/app/app-remove.js +0 -4
- package/dist/m365/aad/commands/app/app-role-remove.js +0 -4
- package/dist/m365/aad/commands.js +0 -2
- package/dist/m365/spo/commands/listitem/listitem-list.js +4 -25
- package/docs/docs/cmd/aad/app/app-remove.md +0 -6
- package/docs/docs/cmd/aad/app/app-role-remove.md +0 -6
- package/docs/docs/cmd/spo/listitem/listitem-list.md +0 -6
- package/npm-shrinkwrap.json +173 -158
- package/package.json +13 -13
|
@@ -9,9 +9,6 @@ class AadAppRemoveCommand extends GraphCommand_1.default {
|
|
|
9
9
|
get name() {
|
|
10
10
|
return commands_1.default.APP_REMOVE;
|
|
11
11
|
}
|
|
12
|
-
alias() {
|
|
13
|
-
return [commands_1.default.APP_DELETE];
|
|
14
|
-
}
|
|
15
12
|
get description() {
|
|
16
13
|
return 'Removes an Azure AD app registration';
|
|
17
14
|
}
|
|
@@ -24,7 +21,6 @@ class AadAppRemoveCommand extends GraphCommand_1.default {
|
|
|
24
21
|
return telemetryProps;
|
|
25
22
|
}
|
|
26
23
|
commandAction(logger, args, cb) {
|
|
27
|
-
this.showDeprecationWarning(logger, commands_1.default.APP_DELETE, commands_1.default.APP_REMOVE);
|
|
28
24
|
const deleteApp = () => {
|
|
29
25
|
this
|
|
30
26
|
.getObjectId(args, logger)
|
|
@@ -12,9 +12,6 @@ class AadAppRoleRemoveCommand extends GraphCommand_1.default {
|
|
|
12
12
|
get description() {
|
|
13
13
|
return 'Removes role from the specified Azure AD app registration';
|
|
14
14
|
}
|
|
15
|
-
alias() {
|
|
16
|
-
return [commands_1.default.APP_ROLE_DELETE];
|
|
17
|
-
}
|
|
18
15
|
getTelemetryProperties(args) {
|
|
19
16
|
const telemetryProps = super.getTelemetryProperties(args);
|
|
20
17
|
telemetryProps.appId = typeof args.options.appId !== 'undefined';
|
|
@@ -26,7 +23,6 @@ class AadAppRoleRemoveCommand extends GraphCommand_1.default {
|
|
|
26
23
|
return telemetryProps;
|
|
27
24
|
}
|
|
28
25
|
commandAction(logger, args, cb) {
|
|
29
|
-
this.showDeprecationWarning(logger, commands_1.default.APP_ROLE_DELETE, commands_1.default.APP_ROLE_REMOVE);
|
|
30
26
|
const deleteAppRole = () => {
|
|
31
27
|
this
|
|
32
28
|
.processAppRoleDelete(logger, args)
|
|
@@ -3,11 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const prefix = 'aad';
|
|
4
4
|
exports.default = {
|
|
5
5
|
APP_ADD: `${prefix} app add`,
|
|
6
|
-
APP_DELETE: `${prefix} app delete`,
|
|
7
6
|
APP_GET: `${prefix} app get`,
|
|
8
7
|
APP_REMOVE: `${prefix} app remove`,
|
|
9
8
|
APP_ROLE_ADD: `${prefix} app role add`,
|
|
10
|
-
APP_ROLE_DELETE: `${prefix} app role delete`,
|
|
11
9
|
APP_ROLE_LIST: `${prefix} app role list`,
|
|
12
10
|
APP_ROLE_REMOVE: `${prefix} app role remove`,
|
|
13
11
|
APP_SET: `${prefix} app set`,
|
|
@@ -13,10 +13,8 @@ class SpoListItemListCommand extends SpoCommand_1.default {
|
|
|
13
13
|
}
|
|
14
14
|
getTelemetryProperties(args) {
|
|
15
15
|
const telemetryProps = super.getTelemetryProperties(args);
|
|
16
|
-
telemetryProps.id = typeof args.options.id !== 'undefined';
|
|
17
16
|
telemetryProps.listId = typeof args.options.listId !== 'undefined';
|
|
18
17
|
telemetryProps.listTitle = typeof args.options.listTitle !== 'undefined';
|
|
19
|
-
telemetryProps.title = typeof args.options.title !== 'undefined';
|
|
20
18
|
telemetryProps.fields = typeof args.options.fields !== 'undefined';
|
|
21
19
|
telemetryProps.filter = typeof args.options.filter !== 'undefined';
|
|
22
20
|
telemetryProps.pageNumber = typeof args.options.pageNumber !== 'undefined';
|
|
@@ -25,14 +23,8 @@ class SpoListItemListCommand extends SpoCommand_1.default {
|
|
|
25
23
|
return telemetryProps;
|
|
26
24
|
}
|
|
27
25
|
commandAction(logger, args, cb) {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
if (args.options.title) {
|
|
32
|
-
this.warn(logger, `Option 'title' is deprecated. Please use 'listTitle' instead.`);
|
|
33
|
-
}
|
|
34
|
-
const listIdArgument = args.options.listId || args.options.id || '';
|
|
35
|
-
const listTitleArgument = args.options.listTitle || args.options.title || '';
|
|
26
|
+
const listIdArgument = args.options.listId || '';
|
|
27
|
+
const listTitleArgument = args.options.listTitle || '';
|
|
36
28
|
let formDigestValue = '';
|
|
37
29
|
const fieldsArray = args.options.fields ? args.options.fields.split(",")
|
|
38
30
|
: (!args.options.output || args.options.output === "text") ? ["Title", "Id"] : [];
|
|
@@ -111,12 +103,6 @@ class SpoListItemListCommand extends SpoCommand_1.default {
|
|
|
111
103
|
{
|
|
112
104
|
option: '-u, --webUrl <webUrl>'
|
|
113
105
|
},
|
|
114
|
-
{
|
|
115
|
-
option: '--id [id]'
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
option: '--title [title]'
|
|
119
|
-
},
|
|
120
106
|
{
|
|
121
107
|
option: '-i, --listId [listId]'
|
|
122
108
|
},
|
|
@@ -161,14 +147,10 @@ class SpoListItemListCommand extends SpoCommand_1.default {
|
|
|
161
147
|
if (isValidSharePointUrl !== true) {
|
|
162
148
|
return isValidSharePointUrl;
|
|
163
149
|
}
|
|
164
|
-
if (!args.options.
|
|
150
|
+
if (!args.options.listId && !args.options.listTitle) {
|
|
165
151
|
return `Specify listId or listTitle`;
|
|
166
152
|
}
|
|
167
|
-
if (args.options.
|
|
168
|
-
return `Specify list id or title but not both`;
|
|
169
|
-
}
|
|
170
|
-
// Check if only one of the 4 options is specified
|
|
171
|
-
if ([args.options.id, args.options.title, args.options.listId, args.options.listTitle].filter(o => o).length > 1) {
|
|
153
|
+
if (args.options.listId && args.options.listTitle) {
|
|
172
154
|
return 'Specify listId or listTitle but not both';
|
|
173
155
|
}
|
|
174
156
|
if (args.options.camlQuery && args.options.fields) {
|
|
@@ -192,9 +174,6 @@ class SpoListItemListCommand extends SpoCommand_1.default {
|
|
|
192
174
|
if (args.options.listId && !utils_1.validation.isValidGuid(args.options.listId)) {
|
|
193
175
|
return `${args.options.listId} is not a valid GUID`;
|
|
194
176
|
}
|
|
195
|
-
if (args.options.id && !utils_1.validation.isValidGuid(args.options.id)) {
|
|
196
|
-
return `${args.options.id} in option id is not a valid GUID`;
|
|
197
|
-
}
|
|
198
177
|
return true;
|
|
199
178
|
}
|
|
200
179
|
}
|
|
@@ -16,15 +16,9 @@ m365 spo listitem list [options]
|
|
|
16
16
|
`-i, --listId [listId]`
|
|
17
17
|
: ID of the list to retrieve items from. Specify `listId` or `listTitle` but not both
|
|
18
18
|
|
|
19
|
-
`--id [id]`
|
|
20
|
-
: (deprecated. Use `listId` instead) ID of the list to retrieve items from. Specify `id` or `title` but not both
|
|
21
|
-
|
|
22
19
|
`-t, --listTitle [listTitle]`
|
|
23
20
|
: Title of the list to retrieve items from. Specify `listId` or `listTitle` but not both
|
|
24
21
|
|
|
25
|
-
`--title [title]`
|
|
26
|
-
: (deprecated. Use `listTitle` instead) Title of the list to retrieve items from. Specify `id` or `title` but not both
|
|
27
|
-
|
|
28
22
|
`-q, --camlQuery [camlQuery]`
|
|
29
23
|
: CAML query to use to query the list of items with
|
|
30
24
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"version": "6.0.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@azure/msal-node": "^1.
|
|
13
|
-
"@xmldom/xmldom": "^0.
|
|
12
|
+
"@azure/msal-node": "^1.11.0",
|
|
13
|
+
"@xmldom/xmldom": "^0.8.2",
|
|
14
14
|
"adaptive-expressions": "^4.16.0",
|
|
15
15
|
"adaptivecards": "^2.10.0",
|
|
16
16
|
"adaptivecards-templating": "^2.2.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"axios": "^0.27.2",
|
|
20
20
|
"chalk": "^4.1.2",
|
|
21
21
|
"clipboardy": "^2.3.0",
|
|
22
|
-
"csv-stringify": "^6.
|
|
22
|
+
"csv-stringify": "^6.2.0",
|
|
23
23
|
"easy-table": "^1.2.0",
|
|
24
24
|
"inquirer": "^8.2.4",
|
|
25
25
|
"jmespath": "^0.16.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"open": "^8.4.0",
|
|
31
31
|
"semver": "^7.3.7",
|
|
32
32
|
"strip-json-comments": "^3.1.1",
|
|
33
|
-
"typescript": "^4.7.
|
|
33
|
+
"typescript": "^4.7.4",
|
|
34
34
|
"update-notifier": "^5.1.0",
|
|
35
35
|
"uuid": "^8.3.2"
|
|
36
36
|
},
|
|
@@ -40,23 +40,23 @@
|
|
|
40
40
|
"microsoft365": "dist/index.js"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
43
|
+
"@microsoft/microsoft-graph-types": "^2.22.0",
|
|
44
44
|
"@types/adm-zip": "^0.5.0",
|
|
45
45
|
"@types/inquirer": "^8.2.1",
|
|
46
46
|
"@types/jmespath": "^0.15.0",
|
|
47
47
|
"@types/json-to-ast": "^2.1.2",
|
|
48
48
|
"@types/minimist": "^1.2.2",
|
|
49
49
|
"@types/mocha": "^9.1.1",
|
|
50
|
-
"@types/node": "^16.11.
|
|
51
|
-
"@types/node-forge": "^1.0.
|
|
52
|
-
"@types/semver": "^7.3.
|
|
53
|
-
"@types/sinon": "^10.0.
|
|
50
|
+
"@types/node": "^16.11.43",
|
|
51
|
+
"@types/node-forge": "^1.0.3",
|
|
52
|
+
"@types/semver": "^7.3.10",
|
|
53
|
+
"@types/sinon": "^10.0.12",
|
|
54
54
|
"@types/update-notifier": "^5.1.0",
|
|
55
55
|
"@types/uuid": "^8.3.4",
|
|
56
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
57
|
-
"@typescript-eslint/parser": "^5.
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
57
|
+
"@typescript-eslint/parser": "^5.30.5",
|
|
58
58
|
"c8": "^7.11.3",
|
|
59
|
-
"eslint": "^8.
|
|
59
|
+
"eslint": "^8.19.0",
|
|
60
60
|
"eslint-config-standard": "^17.0.0",
|
|
61
61
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
62
62
|
"eslint-plugin-import": "^2.26.0",
|
|
@@ -153,19 +153,19 @@
|
|
|
153
153
|
}
|
|
154
154
|
},
|
|
155
155
|
"node_modules/@azure/msal-common": {
|
|
156
|
-
"version": "
|
|
157
|
-
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-
|
|
158
|
-
"integrity": "sha512-
|
|
156
|
+
"version": "7.1.0",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.1.0.tgz",
|
|
158
|
+
"integrity": "sha512-WyfqE5mY/rggjqvq0Q5DxLnA33KSb0vfsUjxa95rycFknI03L5GPYI4HTU9D+g0PL5TtsQGnV3xzAGq9BFCVJQ==",
|
|
159
159
|
"engines": {
|
|
160
160
|
"node": ">=0.8.0"
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
163
|
"node_modules/@azure/msal-node": {
|
|
164
|
-
"version": "1.
|
|
165
|
-
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.
|
|
166
|
-
"integrity": "sha512-
|
|
164
|
+
"version": "1.11.0",
|
|
165
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.11.0.tgz",
|
|
166
|
+
"integrity": "sha512-KW/XEexfCrPzdYbjY7NVmhq9okZT3Jvck55CGXpz9W5asxeq3EtrP45p+ZXtQVEfko0YJdolpCNqWUyXvanWZg==",
|
|
167
167
|
"dependencies": {
|
|
168
|
-
"@azure/msal-common": "^
|
|
168
|
+
"@azure/msal-common": "^7.1.0",
|
|
169
169
|
"jsonwebtoken": "^8.5.1",
|
|
170
170
|
"uuid": "^8.3.0"
|
|
171
171
|
},
|
|
@@ -272,9 +272,9 @@
|
|
|
272
272
|
}
|
|
273
273
|
},
|
|
274
274
|
"node_modules/@microsoft/microsoft-graph-types": {
|
|
275
|
-
"version": "2.
|
|
276
|
-
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.
|
|
277
|
-
"integrity": "sha512-
|
|
275
|
+
"version": "2.22.0",
|
|
276
|
+
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.22.0.tgz",
|
|
277
|
+
"integrity": "sha512-iKc5L036hc/wu13DX5kGf//3/WqTAErAPTyYKG6zT3vG070xXaaP7PInODznfyZduhiOvavmrRlQb34ajeDTUA==",
|
|
278
278
|
"dev": true
|
|
279
279
|
},
|
|
280
280
|
"node_modules/@microsoft/recognizers-text-data-types-timex-expression": {
|
|
@@ -531,9 +531,9 @@
|
|
|
531
531
|
"dev": true
|
|
532
532
|
},
|
|
533
533
|
"node_modules/@types/node": {
|
|
534
|
-
"version": "16.11.
|
|
535
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.
|
|
536
|
-
"integrity": "sha512-
|
|
534
|
+
"version": "16.11.43",
|
|
535
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.43.tgz",
|
|
536
|
+
"integrity": "sha512-GqWykok+3uocgfAJM8imbozrqLnPyTrpFlrryURQlw1EesPUCx5XxTiucWDSFF9/NUEXDuD4bnvHm8xfVGWTpQ=="
|
|
537
537
|
},
|
|
538
538
|
"node_modules/@types/node-fetch": {
|
|
539
539
|
"version": "2.6.1",
|
|
@@ -558,24 +558,24 @@
|
|
|
558
558
|
}
|
|
559
559
|
},
|
|
560
560
|
"node_modules/@types/node-forge": {
|
|
561
|
-
"version": "1.0.
|
|
562
|
-
"resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.
|
|
563
|
-
"integrity": "sha512-
|
|
561
|
+
"version": "1.0.3",
|
|
562
|
+
"resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.3.tgz",
|
|
563
|
+
"integrity": "sha512-o7k1vR+qULsZlzjt4V+Rlz27MOcaitpRrK5MjXwHx1d3TkZVY2cljJBtEsFe9L8AFuT7ZUgkKaQRp/JNt2gKBA==",
|
|
564
564
|
"dev": true,
|
|
565
565
|
"dependencies": {
|
|
566
566
|
"@types/node": "*"
|
|
567
567
|
}
|
|
568
568
|
},
|
|
569
569
|
"node_modules/@types/semver": {
|
|
570
|
-
"version": "7.3.
|
|
571
|
-
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.
|
|
572
|
-
"integrity": "sha512-
|
|
570
|
+
"version": "7.3.10",
|
|
571
|
+
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.10.tgz",
|
|
572
|
+
"integrity": "sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==",
|
|
573
573
|
"dev": true
|
|
574
574
|
},
|
|
575
575
|
"node_modules/@types/sinon": {
|
|
576
|
-
"version": "10.0.
|
|
577
|
-
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.
|
|
578
|
-
"integrity": "sha512-
|
|
576
|
+
"version": "10.0.12",
|
|
577
|
+
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.12.tgz",
|
|
578
|
+
"integrity": "sha512-uWf4QJ4oky/GckJ1MYQxU52cgVDcXwBhDkpvLbi4EKoLPqLE4MOH6T/ttM33l3hi0oZ882G6oIzWv/oupRYSxQ==",
|
|
579
579
|
"dev": true,
|
|
580
580
|
"dependencies": {
|
|
581
581
|
"@types/sinonjs__fake-timers": "*"
|
|
@@ -626,14 +626,14 @@
|
|
|
626
626
|
"integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
|
|
627
627
|
},
|
|
628
628
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
629
|
-
"version": "5.
|
|
630
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.
|
|
631
|
-
"integrity": "sha512-
|
|
629
|
+
"version": "5.30.5",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz",
|
|
631
|
+
"integrity": "sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==",
|
|
632
632
|
"dev": true,
|
|
633
633
|
"dependencies": {
|
|
634
|
-
"@typescript-eslint/scope-manager": "5.
|
|
635
|
-
"@typescript-eslint/type-utils": "5.
|
|
636
|
-
"@typescript-eslint/utils": "5.
|
|
634
|
+
"@typescript-eslint/scope-manager": "5.30.5",
|
|
635
|
+
"@typescript-eslint/type-utils": "5.30.5",
|
|
636
|
+
"@typescript-eslint/utils": "5.30.5",
|
|
637
637
|
"debug": "^4.3.4",
|
|
638
638
|
"functional-red-black-tree": "^1.0.1",
|
|
639
639
|
"ignore": "^5.2.0",
|
|
@@ -659,14 +659,14 @@
|
|
|
659
659
|
}
|
|
660
660
|
},
|
|
661
661
|
"node_modules/@typescript-eslint/parser": {
|
|
662
|
-
"version": "5.
|
|
663
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.
|
|
664
|
-
"integrity": "sha512-
|
|
662
|
+
"version": "5.30.5",
|
|
663
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.5.tgz",
|
|
664
|
+
"integrity": "sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==",
|
|
665
665
|
"dev": true,
|
|
666
666
|
"dependencies": {
|
|
667
|
-
"@typescript-eslint/scope-manager": "5.
|
|
668
|
-
"@typescript-eslint/types": "5.
|
|
669
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
667
|
+
"@typescript-eslint/scope-manager": "5.30.5",
|
|
668
|
+
"@typescript-eslint/types": "5.30.5",
|
|
669
|
+
"@typescript-eslint/typescript-estree": "5.30.5",
|
|
670
670
|
"debug": "^4.3.4"
|
|
671
671
|
},
|
|
672
672
|
"engines": {
|
|
@@ -686,13 +686,13 @@
|
|
|
686
686
|
}
|
|
687
687
|
},
|
|
688
688
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
689
|
-
"version": "5.
|
|
690
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.
|
|
691
|
-
"integrity": "sha512-
|
|
689
|
+
"version": "5.30.5",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz",
|
|
691
|
+
"integrity": "sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==",
|
|
692
692
|
"dev": true,
|
|
693
693
|
"dependencies": {
|
|
694
|
-
"@typescript-eslint/types": "5.
|
|
695
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
694
|
+
"@typescript-eslint/types": "5.30.5",
|
|
695
|
+
"@typescript-eslint/visitor-keys": "5.30.5"
|
|
696
696
|
},
|
|
697
697
|
"engines": {
|
|
698
698
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -703,12 +703,12 @@
|
|
|
703
703
|
}
|
|
704
704
|
},
|
|
705
705
|
"node_modules/@typescript-eslint/type-utils": {
|
|
706
|
-
"version": "5.
|
|
707
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.
|
|
708
|
-
"integrity": "sha512
|
|
706
|
+
"version": "5.30.5",
|
|
707
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz",
|
|
708
|
+
"integrity": "sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==",
|
|
709
709
|
"dev": true,
|
|
710
710
|
"dependencies": {
|
|
711
|
-
"@typescript-eslint/utils": "5.
|
|
711
|
+
"@typescript-eslint/utils": "5.30.5",
|
|
712
712
|
"debug": "^4.3.4",
|
|
713
713
|
"tsutils": "^3.21.0"
|
|
714
714
|
},
|
|
@@ -729,9 +729,9 @@
|
|
|
729
729
|
}
|
|
730
730
|
},
|
|
731
731
|
"node_modules/@typescript-eslint/types": {
|
|
732
|
-
"version": "5.
|
|
733
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.
|
|
734
|
-
"integrity": "sha512-
|
|
732
|
+
"version": "5.30.5",
|
|
733
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.5.tgz",
|
|
734
|
+
"integrity": "sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==",
|
|
735
735
|
"dev": true,
|
|
736
736
|
"engines": {
|
|
737
737
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -742,13 +742,13 @@
|
|
|
742
742
|
}
|
|
743
743
|
},
|
|
744
744
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
745
|
-
"version": "5.
|
|
746
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.
|
|
747
|
-
"integrity": "sha512-
|
|
745
|
+
"version": "5.30.5",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz",
|
|
747
|
+
"integrity": "sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==",
|
|
748
748
|
"dev": true,
|
|
749
749
|
"dependencies": {
|
|
750
|
-
"@typescript-eslint/types": "5.
|
|
751
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
750
|
+
"@typescript-eslint/types": "5.30.5",
|
|
751
|
+
"@typescript-eslint/visitor-keys": "5.30.5",
|
|
752
752
|
"debug": "^4.3.4",
|
|
753
753
|
"globby": "^11.1.0",
|
|
754
754
|
"is-glob": "^4.0.3",
|
|
@@ -769,15 +769,15 @@
|
|
|
769
769
|
}
|
|
770
770
|
},
|
|
771
771
|
"node_modules/@typescript-eslint/utils": {
|
|
772
|
-
"version": "5.
|
|
773
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.
|
|
774
|
-
"integrity": "sha512-
|
|
772
|
+
"version": "5.30.5",
|
|
773
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz",
|
|
774
|
+
"integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==",
|
|
775
775
|
"dev": true,
|
|
776
776
|
"dependencies": {
|
|
777
777
|
"@types/json-schema": "^7.0.9",
|
|
778
|
-
"@typescript-eslint/scope-manager": "5.
|
|
779
|
-
"@typescript-eslint/types": "5.
|
|
780
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
778
|
+
"@typescript-eslint/scope-manager": "5.30.5",
|
|
779
|
+
"@typescript-eslint/types": "5.30.5",
|
|
780
|
+
"@typescript-eslint/typescript-estree": "5.30.5",
|
|
781
781
|
"eslint-scope": "^5.1.1",
|
|
782
782
|
"eslint-utils": "^3.0.0"
|
|
783
783
|
},
|
|
@@ -793,12 +793,12 @@
|
|
|
793
793
|
}
|
|
794
794
|
},
|
|
795
795
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
796
|
-
"version": "5.
|
|
797
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.
|
|
798
|
-
"integrity": "sha512-
|
|
796
|
+
"version": "5.30.5",
|
|
797
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz",
|
|
798
|
+
"integrity": "sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==",
|
|
799
799
|
"dev": true,
|
|
800
800
|
"dependencies": {
|
|
801
|
-
"@typescript-eslint/types": "5.
|
|
801
|
+
"@typescript-eslint/types": "5.30.5",
|
|
802
802
|
"eslint-visitor-keys": "^3.3.0"
|
|
803
803
|
},
|
|
804
804
|
"engines": {
|
|
@@ -816,9 +816,9 @@
|
|
|
816
816
|
"dev": true
|
|
817
817
|
},
|
|
818
818
|
"node_modules/@xmldom/xmldom": {
|
|
819
|
-
"version": "0.
|
|
820
|
-
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.
|
|
821
|
-
"integrity": "sha512
|
|
819
|
+
"version": "0.8.2",
|
|
820
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.2.tgz",
|
|
821
|
+
"integrity": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ==",
|
|
822
822
|
"engines": {
|
|
823
823
|
"node": ">=10.0.0"
|
|
824
824
|
}
|
|
@@ -870,6 +870,14 @@
|
|
|
870
870
|
"xpath": "^0.0.32"
|
|
871
871
|
}
|
|
872
872
|
},
|
|
873
|
+
"node_modules/adaptive-expressions/node_modules/@xmldom/xmldom": {
|
|
874
|
+
"version": "0.7.5",
|
|
875
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz",
|
|
876
|
+
"integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==",
|
|
877
|
+
"engines": {
|
|
878
|
+
"node": ">=10.0.0"
|
|
879
|
+
}
|
|
880
|
+
},
|
|
873
881
|
"node_modules/adaptivecards": {
|
|
874
882
|
"version": "2.10.0",
|
|
875
883
|
"resolved": "https://registry.npmjs.org/adaptivecards/-/adaptivecards-2.10.0.tgz",
|
|
@@ -1661,9 +1669,9 @@
|
|
|
1661
1669
|
}
|
|
1662
1670
|
},
|
|
1663
1671
|
"node_modules/csv-stringify": {
|
|
1664
|
-
"version": "6.
|
|
1665
|
-
"resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.
|
|
1666
|
-
"integrity": "sha512-
|
|
1672
|
+
"version": "6.2.0",
|
|
1673
|
+
"resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.2.0.tgz",
|
|
1674
|
+
"integrity": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA=="
|
|
1667
1675
|
},
|
|
1668
1676
|
"node_modules/d3-format": {
|
|
1669
1677
|
"version": "1.4.5",
|
|
@@ -1977,9 +1985,9 @@
|
|
|
1977
1985
|
}
|
|
1978
1986
|
},
|
|
1979
1987
|
"node_modules/eslint": {
|
|
1980
|
-
"version": "8.
|
|
1981
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
1982
|
-
"integrity": "sha512-
|
|
1988
|
+
"version": "8.19.0",
|
|
1989
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
|
|
1990
|
+
"integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
|
|
1983
1991
|
"dev": true,
|
|
1984
1992
|
"dependencies": {
|
|
1985
1993
|
"@eslint/eslintrc": "^1.3.0",
|
|
@@ -5275,9 +5283,9 @@
|
|
|
5275
5283
|
}
|
|
5276
5284
|
},
|
|
5277
5285
|
"node_modules/typescript": {
|
|
5278
|
-
"version": "4.7.
|
|
5279
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.
|
|
5280
|
-
"integrity": "sha512-
|
|
5286
|
+
"version": "4.7.4",
|
|
5287
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz",
|
|
5288
|
+
"integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==",
|
|
5281
5289
|
"bin": {
|
|
5282
5290
|
"tsc": "bin/tsc",
|
|
5283
5291
|
"tsserver": "bin/tsserver"
|
|
@@ -5734,16 +5742,16 @@
|
|
|
5734
5742
|
}
|
|
5735
5743
|
},
|
|
5736
5744
|
"@azure/msal-common": {
|
|
5737
|
-
"version": "
|
|
5738
|
-
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-
|
|
5739
|
-
"integrity": "sha512-
|
|
5745
|
+
"version": "7.1.0",
|
|
5746
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.1.0.tgz",
|
|
5747
|
+
"integrity": "sha512-WyfqE5mY/rggjqvq0Q5DxLnA33KSb0vfsUjxa95rycFknI03L5GPYI4HTU9D+g0PL5TtsQGnV3xzAGq9BFCVJQ=="
|
|
5740
5748
|
},
|
|
5741
5749
|
"@azure/msal-node": {
|
|
5742
|
-
"version": "1.
|
|
5743
|
-
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.
|
|
5744
|
-
"integrity": "sha512-
|
|
5750
|
+
"version": "1.11.0",
|
|
5751
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.11.0.tgz",
|
|
5752
|
+
"integrity": "sha512-KW/XEexfCrPzdYbjY7NVmhq9okZT3Jvck55CGXpz9W5asxeq3EtrP45p+ZXtQVEfko0YJdolpCNqWUyXvanWZg==",
|
|
5745
5753
|
"requires": {
|
|
5746
|
-
"@azure/msal-common": "^
|
|
5754
|
+
"@azure/msal-common": "^7.1.0",
|
|
5747
5755
|
"jsonwebtoken": "^8.5.1",
|
|
5748
5756
|
"uuid": "^8.3.0"
|
|
5749
5757
|
}
|
|
@@ -5834,9 +5842,9 @@
|
|
|
5834
5842
|
}
|
|
5835
5843
|
},
|
|
5836
5844
|
"@microsoft/microsoft-graph-types": {
|
|
5837
|
-
"version": "2.
|
|
5838
|
-
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.
|
|
5839
|
-
"integrity": "sha512-
|
|
5845
|
+
"version": "2.22.0",
|
|
5846
|
+
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.22.0.tgz",
|
|
5847
|
+
"integrity": "sha512-iKc5L036hc/wu13DX5kGf//3/WqTAErAPTyYKG6zT3vG070xXaaP7PInODznfyZduhiOvavmrRlQb34ajeDTUA==",
|
|
5840
5848
|
"dev": true
|
|
5841
5849
|
},
|
|
5842
5850
|
"@microsoft/recognizers-text-data-types-timex-expression": {
|
|
@@ -6051,9 +6059,9 @@
|
|
|
6051
6059
|
"dev": true
|
|
6052
6060
|
},
|
|
6053
6061
|
"@types/node": {
|
|
6054
|
-
"version": "16.11.
|
|
6055
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.
|
|
6056
|
-
"integrity": "sha512-
|
|
6062
|
+
"version": "16.11.43",
|
|
6063
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.43.tgz",
|
|
6064
|
+
"integrity": "sha512-GqWykok+3uocgfAJM8imbozrqLnPyTrpFlrryURQlw1EesPUCx5XxTiucWDSFF9/NUEXDuD4bnvHm8xfVGWTpQ=="
|
|
6057
6065
|
},
|
|
6058
6066
|
"@types/node-fetch": {
|
|
6059
6067
|
"version": "2.6.1",
|
|
@@ -6077,24 +6085,24 @@
|
|
|
6077
6085
|
}
|
|
6078
6086
|
},
|
|
6079
6087
|
"@types/node-forge": {
|
|
6080
|
-
"version": "1.0.
|
|
6081
|
-
"resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.
|
|
6082
|
-
"integrity": "sha512-
|
|
6088
|
+
"version": "1.0.3",
|
|
6089
|
+
"resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.3.tgz",
|
|
6090
|
+
"integrity": "sha512-o7k1vR+qULsZlzjt4V+Rlz27MOcaitpRrK5MjXwHx1d3TkZVY2cljJBtEsFe9L8AFuT7ZUgkKaQRp/JNt2gKBA==",
|
|
6083
6091
|
"dev": true,
|
|
6084
6092
|
"requires": {
|
|
6085
6093
|
"@types/node": "*"
|
|
6086
6094
|
}
|
|
6087
6095
|
},
|
|
6088
6096
|
"@types/semver": {
|
|
6089
|
-
"version": "7.3.
|
|
6090
|
-
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.
|
|
6091
|
-
"integrity": "sha512-
|
|
6097
|
+
"version": "7.3.10",
|
|
6098
|
+
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.10.tgz",
|
|
6099
|
+
"integrity": "sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==",
|
|
6092
6100
|
"dev": true
|
|
6093
6101
|
},
|
|
6094
6102
|
"@types/sinon": {
|
|
6095
|
-
"version": "10.0.
|
|
6096
|
-
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.
|
|
6097
|
-
"integrity": "sha512-
|
|
6103
|
+
"version": "10.0.12",
|
|
6104
|
+
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.12.tgz",
|
|
6105
|
+
"integrity": "sha512-uWf4QJ4oky/GckJ1MYQxU52cgVDcXwBhDkpvLbi4EKoLPqLE4MOH6T/ttM33l3hi0oZ882G6oIzWv/oupRYSxQ==",
|
|
6098
6106
|
"dev": true,
|
|
6099
6107
|
"requires": {
|
|
6100
6108
|
"@types/sinonjs__fake-timers": "*"
|
|
@@ -6145,14 +6153,14 @@
|
|
|
6145
6153
|
"integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
|
|
6146
6154
|
},
|
|
6147
6155
|
"@typescript-eslint/eslint-plugin": {
|
|
6148
|
-
"version": "5.
|
|
6149
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.
|
|
6150
|
-
"integrity": "sha512-
|
|
6156
|
+
"version": "5.30.5",
|
|
6157
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz",
|
|
6158
|
+
"integrity": "sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==",
|
|
6151
6159
|
"dev": true,
|
|
6152
6160
|
"requires": {
|
|
6153
|
-
"@typescript-eslint/scope-manager": "5.
|
|
6154
|
-
"@typescript-eslint/type-utils": "5.
|
|
6155
|
-
"@typescript-eslint/utils": "5.
|
|
6161
|
+
"@typescript-eslint/scope-manager": "5.30.5",
|
|
6162
|
+
"@typescript-eslint/type-utils": "5.30.5",
|
|
6163
|
+
"@typescript-eslint/utils": "5.30.5",
|
|
6156
6164
|
"debug": "^4.3.4",
|
|
6157
6165
|
"functional-red-black-tree": "^1.0.1",
|
|
6158
6166
|
"ignore": "^5.2.0",
|
|
@@ -6162,52 +6170,52 @@
|
|
|
6162
6170
|
}
|
|
6163
6171
|
},
|
|
6164
6172
|
"@typescript-eslint/parser": {
|
|
6165
|
-
"version": "5.
|
|
6166
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.
|
|
6167
|
-
"integrity": "sha512-
|
|
6173
|
+
"version": "5.30.5",
|
|
6174
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.5.tgz",
|
|
6175
|
+
"integrity": "sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==",
|
|
6168
6176
|
"dev": true,
|
|
6169
6177
|
"requires": {
|
|
6170
|
-
"@typescript-eslint/scope-manager": "5.
|
|
6171
|
-
"@typescript-eslint/types": "5.
|
|
6172
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
6178
|
+
"@typescript-eslint/scope-manager": "5.30.5",
|
|
6179
|
+
"@typescript-eslint/types": "5.30.5",
|
|
6180
|
+
"@typescript-eslint/typescript-estree": "5.30.5",
|
|
6173
6181
|
"debug": "^4.3.4"
|
|
6174
6182
|
}
|
|
6175
6183
|
},
|
|
6176
6184
|
"@typescript-eslint/scope-manager": {
|
|
6177
|
-
"version": "5.
|
|
6178
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.
|
|
6179
|
-
"integrity": "sha512-
|
|
6185
|
+
"version": "5.30.5",
|
|
6186
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz",
|
|
6187
|
+
"integrity": "sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==",
|
|
6180
6188
|
"dev": true,
|
|
6181
6189
|
"requires": {
|
|
6182
|
-
"@typescript-eslint/types": "5.
|
|
6183
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
6190
|
+
"@typescript-eslint/types": "5.30.5",
|
|
6191
|
+
"@typescript-eslint/visitor-keys": "5.30.5"
|
|
6184
6192
|
}
|
|
6185
6193
|
},
|
|
6186
6194
|
"@typescript-eslint/type-utils": {
|
|
6187
|
-
"version": "5.
|
|
6188
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.
|
|
6189
|
-
"integrity": "sha512
|
|
6195
|
+
"version": "5.30.5",
|
|
6196
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz",
|
|
6197
|
+
"integrity": "sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==",
|
|
6190
6198
|
"dev": true,
|
|
6191
6199
|
"requires": {
|
|
6192
|
-
"@typescript-eslint/utils": "5.
|
|
6200
|
+
"@typescript-eslint/utils": "5.30.5",
|
|
6193
6201
|
"debug": "^4.3.4",
|
|
6194
6202
|
"tsutils": "^3.21.0"
|
|
6195
6203
|
}
|
|
6196
6204
|
},
|
|
6197
6205
|
"@typescript-eslint/types": {
|
|
6198
|
-
"version": "5.
|
|
6199
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.
|
|
6200
|
-
"integrity": "sha512-
|
|
6206
|
+
"version": "5.30.5",
|
|
6207
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.5.tgz",
|
|
6208
|
+
"integrity": "sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==",
|
|
6201
6209
|
"dev": true
|
|
6202
6210
|
},
|
|
6203
6211
|
"@typescript-eslint/typescript-estree": {
|
|
6204
|
-
"version": "5.
|
|
6205
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.
|
|
6206
|
-
"integrity": "sha512-
|
|
6212
|
+
"version": "5.30.5",
|
|
6213
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz",
|
|
6214
|
+
"integrity": "sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==",
|
|
6207
6215
|
"dev": true,
|
|
6208
6216
|
"requires": {
|
|
6209
|
-
"@typescript-eslint/types": "5.
|
|
6210
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
6217
|
+
"@typescript-eslint/types": "5.30.5",
|
|
6218
|
+
"@typescript-eslint/visitor-keys": "5.30.5",
|
|
6211
6219
|
"debug": "^4.3.4",
|
|
6212
6220
|
"globby": "^11.1.0",
|
|
6213
6221
|
"is-glob": "^4.0.3",
|
|
@@ -6216,26 +6224,26 @@
|
|
|
6216
6224
|
}
|
|
6217
6225
|
},
|
|
6218
6226
|
"@typescript-eslint/utils": {
|
|
6219
|
-
"version": "5.
|
|
6220
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.
|
|
6221
|
-
"integrity": "sha512-
|
|
6227
|
+
"version": "5.30.5",
|
|
6228
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz",
|
|
6229
|
+
"integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==",
|
|
6222
6230
|
"dev": true,
|
|
6223
6231
|
"requires": {
|
|
6224
6232
|
"@types/json-schema": "^7.0.9",
|
|
6225
|
-
"@typescript-eslint/scope-manager": "5.
|
|
6226
|
-
"@typescript-eslint/types": "5.
|
|
6227
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
6233
|
+
"@typescript-eslint/scope-manager": "5.30.5",
|
|
6234
|
+
"@typescript-eslint/types": "5.30.5",
|
|
6235
|
+
"@typescript-eslint/typescript-estree": "5.30.5",
|
|
6228
6236
|
"eslint-scope": "^5.1.1",
|
|
6229
6237
|
"eslint-utils": "^3.0.0"
|
|
6230
6238
|
}
|
|
6231
6239
|
},
|
|
6232
6240
|
"@typescript-eslint/visitor-keys": {
|
|
6233
|
-
"version": "5.
|
|
6234
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.
|
|
6235
|
-
"integrity": "sha512-
|
|
6241
|
+
"version": "5.30.5",
|
|
6242
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz",
|
|
6243
|
+
"integrity": "sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==",
|
|
6236
6244
|
"dev": true,
|
|
6237
6245
|
"requires": {
|
|
6238
|
-
"@typescript-eslint/types": "5.
|
|
6246
|
+
"@typescript-eslint/types": "5.30.5",
|
|
6239
6247
|
"eslint-visitor-keys": "^3.3.0"
|
|
6240
6248
|
}
|
|
6241
6249
|
},
|
|
@@ -6246,9 +6254,9 @@
|
|
|
6246
6254
|
"dev": true
|
|
6247
6255
|
},
|
|
6248
6256
|
"@xmldom/xmldom": {
|
|
6249
|
-
"version": "0.
|
|
6250
|
-
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.
|
|
6251
|
-
"integrity": "sha512
|
|
6257
|
+
"version": "0.8.2",
|
|
6258
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.2.tgz",
|
|
6259
|
+
"integrity": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ=="
|
|
6252
6260
|
},
|
|
6253
6261
|
"acorn": {
|
|
6254
6262
|
"version": "8.7.1",
|
|
@@ -6287,6 +6295,13 @@
|
|
|
6287
6295
|
"lru-cache": "^5.1.1",
|
|
6288
6296
|
"uuid": "^8.3.2",
|
|
6289
6297
|
"xpath": "^0.0.32"
|
|
6298
|
+
},
|
|
6299
|
+
"dependencies": {
|
|
6300
|
+
"@xmldom/xmldom": {
|
|
6301
|
+
"version": "0.7.5",
|
|
6302
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz",
|
|
6303
|
+
"integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="
|
|
6304
|
+
}
|
|
6290
6305
|
}
|
|
6291
6306
|
},
|
|
6292
6307
|
"adaptivecards": {
|
|
@@ -6868,9 +6883,9 @@
|
|
|
6868
6883
|
"integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
|
|
6869
6884
|
},
|
|
6870
6885
|
"csv-stringify": {
|
|
6871
|
-
"version": "6.
|
|
6872
|
-
"resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.
|
|
6873
|
-
"integrity": "sha512-
|
|
6886
|
+
"version": "6.2.0",
|
|
6887
|
+
"resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.2.0.tgz",
|
|
6888
|
+
"integrity": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA=="
|
|
6874
6889
|
},
|
|
6875
6890
|
"d3-format": {
|
|
6876
6891
|
"version": "1.4.5",
|
|
@@ -7111,9 +7126,9 @@
|
|
|
7111
7126
|
"dev": true
|
|
7112
7127
|
},
|
|
7113
7128
|
"eslint": {
|
|
7114
|
-
"version": "8.
|
|
7115
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
7116
|
-
"integrity": "sha512-
|
|
7129
|
+
"version": "8.19.0",
|
|
7130
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
|
|
7131
|
+
"integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
|
|
7117
7132
|
"dev": true,
|
|
7118
7133
|
"requires": {
|
|
7119
7134
|
"@eslint/eslintrc": "^1.3.0",
|
|
@@ -9508,9 +9523,9 @@
|
|
|
9508
9523
|
}
|
|
9509
9524
|
},
|
|
9510
9525
|
"typescript": {
|
|
9511
|
-
"version": "4.7.
|
|
9512
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.
|
|
9513
|
-
"integrity": "sha512-
|
|
9526
|
+
"version": "4.7.4",
|
|
9527
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz",
|
|
9528
|
+
"integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ=="
|
|
9514
9529
|
},
|
|
9515
9530
|
"unbox-primitive": {
|
|
9516
9531
|
"version": "1.0.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.ff232be",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -186,8 +186,8 @@
|
|
|
186
186
|
"Wojcik, Adam <adam.wojcik.it@gmail.com>"
|
|
187
187
|
],
|
|
188
188
|
"dependencies": {
|
|
189
|
-
"@azure/msal-node": "^1.
|
|
190
|
-
"@xmldom/xmldom": "^0.
|
|
189
|
+
"@azure/msal-node": "^1.11.0",
|
|
190
|
+
"@xmldom/xmldom": "^0.8.2",
|
|
191
191
|
"adaptive-expressions": "^4.16.0",
|
|
192
192
|
"adaptivecards": "^2.10.0",
|
|
193
193
|
"adaptivecards-templating": "^2.2.0",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"axios": "^0.27.2",
|
|
197
197
|
"chalk": "^4.1.2",
|
|
198
198
|
"clipboardy": "^2.3.0",
|
|
199
|
-
"csv-stringify": "^6.
|
|
199
|
+
"csv-stringify": "^6.2.0",
|
|
200
200
|
"easy-table": "^1.2.0",
|
|
201
201
|
"inquirer": "^8.2.4",
|
|
202
202
|
"jmespath": "^0.16.0",
|
|
@@ -207,28 +207,28 @@
|
|
|
207
207
|
"open": "^8.4.0",
|
|
208
208
|
"semver": "^7.3.7",
|
|
209
209
|
"strip-json-comments": "^3.1.1",
|
|
210
|
-
"typescript": "^4.7.
|
|
210
|
+
"typescript": "^4.7.4",
|
|
211
211
|
"update-notifier": "^5.1.0",
|
|
212
212
|
"uuid": "^8.3.2"
|
|
213
213
|
},
|
|
214
214
|
"devDependencies": {
|
|
215
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
215
|
+
"@microsoft/microsoft-graph-types": "^2.22.0",
|
|
216
216
|
"@types/adm-zip": "^0.5.0",
|
|
217
217
|
"@types/inquirer": "^8.2.1",
|
|
218
218
|
"@types/jmespath": "^0.15.0",
|
|
219
219
|
"@types/json-to-ast": "^2.1.2",
|
|
220
220
|
"@types/minimist": "^1.2.2",
|
|
221
221
|
"@types/mocha": "^9.1.1",
|
|
222
|
-
"@types/node": "^16.11.
|
|
223
|
-
"@types/node-forge": "^1.0.
|
|
224
|
-
"@types/semver": "^7.3.
|
|
225
|
-
"@types/sinon": "^10.0.
|
|
222
|
+
"@types/node": "^16.11.43",
|
|
223
|
+
"@types/node-forge": "^1.0.3",
|
|
224
|
+
"@types/semver": "^7.3.10",
|
|
225
|
+
"@types/sinon": "^10.0.12",
|
|
226
226
|
"@types/update-notifier": "^5.1.0",
|
|
227
227
|
"@types/uuid": "^8.3.4",
|
|
228
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
229
|
-
"@typescript-eslint/parser": "^5.
|
|
228
|
+
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
229
|
+
"@typescript-eslint/parser": "^5.30.5",
|
|
230
230
|
"c8": "^7.11.3",
|
|
231
|
-
"eslint": "^8.
|
|
231
|
+
"eslint": "^8.19.0",
|
|
232
232
|
"eslint-config-standard": "^17.0.0",
|
|
233
233
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
234
234
|
"eslint-plugin-import": "^2.26.0",
|