@pnp/cli-microsoft365 5.1.0-beta.c8f5fd7 → 5.1.0-beta.ffd9bc8
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.js +1 -0
- package/dist/cli/index.js +5 -1
- package/dist/m365/aad/commands/app/app-add.js +68 -10
- package/dist/m365/aad/commands/app/{app-delete.js → app-remove.js} +9 -5
- package/dist/m365/aad/commands/app/{app-role-delete.js → app-role-remove.js} +11 -7
- package/dist/m365/aad/commands.js +3 -1
- package/dist/m365/base/PowerPlatformCommand.js +10 -0
- package/dist/m365/pp/commands/managementapp/managementapp-add.js +98 -0
- package/dist/m365/pp/commands.js +7 -0
- package/dist/m365/spfx/commands/project/model/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-externalize/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-externalize/rules/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-upgrade/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN001033_DEP_tslib.js +14 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN023002_GITIGNORE_heft.js +40 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.12.0.js +0 -2
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.15.0-beta.1.js +63 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +24 -19
- package/dist/m365/spo/commands/site/site-recyclebinitem-restore.js +66 -0
- package/dist/m365/spo/commands.js +1 -0
- package/dist/m365/teams/commands/chat/chat-message-send.js +50 -58
- package/dist/utils/formatting.js +3 -0
- package/dist/utils/index.js +5 -1
- package/docs/docs/cmd/aad/app/{app-delete.md → app-remove.md} +15 -9
- package/docs/docs/cmd/aad/app/{app-role-delete.md → app-role-remove.md} +25 -19
- package/docs/docs/cmd/pp/managementapp/managementapp-add.md +50 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/site/site-recyclebinitem-restore.md +27 -0
- package/docs/docs/cmd/teams/chat/chat-message-send.md +4 -4
- package/npm-shrinkwrap.json +173 -188
- package/package.json +12 -11
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN015006_FILE_editorconfig.js +0 -14
package/npm-shrinkwrap.json
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"adaptivecards": "^2.10.0",
|
|
16
16
|
"adaptivecards-templating": "^2.2.0",
|
|
17
17
|
"adm-zip": "^0.5.9",
|
|
18
|
-
"applicationinsights": "^2.2.
|
|
19
|
-
"axios": "^0.
|
|
18
|
+
"applicationinsights": "^2.2.2",
|
|
19
|
+
"axios": "^0.26.0",
|
|
20
20
|
"chalk": "^4.1.2",
|
|
21
21
|
"csv-stringify": "^6.0.5",
|
|
22
22
|
"easy-table": "^1.2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"open": "^8.4.0",
|
|
31
31
|
"semver": "^7.3.4",
|
|
32
32
|
"strip-json-comments": "^3.1.1",
|
|
33
|
-
"typescript": "^4.
|
|
33
|
+
"typescript": "^4.6.2",
|
|
34
34
|
"update-notifier": "^5.1.0",
|
|
35
35
|
"uuid": "^8.3.2"
|
|
36
36
|
},
|
|
@@ -40,30 +40,30 @@
|
|
|
40
40
|
"microsoft365": "dist/index.js"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
43
|
+
"@microsoft/microsoft-graph-types": "^2.16.0",
|
|
44
44
|
"@types/adm-zip": "^0.4.34",
|
|
45
45
|
"@types/inquirer": "^8.2.0",
|
|
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.0",
|
|
50
|
-
"@types/node": "^16.11.
|
|
50
|
+
"@types/node": "^16.11.26",
|
|
51
51
|
"@types/node-forge": "^1.0.0",
|
|
52
52
|
"@types/semver": "^7.3.9",
|
|
53
53
|
"@types/sinon": "^10.0.11",
|
|
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.13.0",
|
|
57
|
+
"@typescript-eslint/parser": "^5.13.0",
|
|
58
58
|
"c8": "^7.11.0",
|
|
59
59
|
"coveralls": "^3.1.1",
|
|
60
|
-
"eslint": "^8.
|
|
60
|
+
"eslint": "^8.10.0",
|
|
61
61
|
"eslint-config-standard": "^16.0.3",
|
|
62
62
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
63
63
|
"eslint-plugin-import": "^2.25.4",
|
|
64
64
|
"eslint-plugin-node": "^11.1.0",
|
|
65
65
|
"eslint-plugin-promise": "^6.0.0",
|
|
66
|
-
"mocha": "^9.2.
|
|
66
|
+
"mocha": "^9.2.1",
|
|
67
67
|
"rimraf": "^3.0.2",
|
|
68
68
|
"sinon": "^13.0.1",
|
|
69
69
|
"source-map-support": "^0.5.21"
|
|
@@ -229,14 +229,14 @@
|
|
|
229
229
|
"dev": true
|
|
230
230
|
},
|
|
231
231
|
"node_modules/@eslint/eslintrc": {
|
|
232
|
-
"version": "1.0
|
|
233
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.
|
|
234
|
-
"integrity": "sha512-
|
|
232
|
+
"version": "1.2.0",
|
|
233
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.0.tgz",
|
|
234
|
+
"integrity": "sha512-igm9SjJHNEJRiUnecP/1R5T3wKLEJ7pL6e2P+GUSfCd0dGjPYYZve08uzw8L2J8foVHFz+NGu12JxRcU2gGo6w==",
|
|
235
235
|
"dev": true,
|
|
236
236
|
"dependencies": {
|
|
237
237
|
"ajv": "^6.12.4",
|
|
238
238
|
"debug": "^4.3.2",
|
|
239
|
-
"espree": "^9.
|
|
239
|
+
"espree": "^9.3.1",
|
|
240
240
|
"globals": "^13.9.0",
|
|
241
241
|
"ignore": "^4.0.6",
|
|
242
242
|
"import-fresh": "^3.2.1",
|
|
@@ -296,9 +296,9 @@
|
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
298
|
"node_modules/@microsoft/microsoft-graph-types": {
|
|
299
|
-
"version": "2.
|
|
300
|
-
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.
|
|
301
|
-
"integrity": "sha512-
|
|
299
|
+
"version": "2.16.0",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.16.0.tgz",
|
|
301
|
+
"integrity": "sha512-Qvxv9mpXb/F4xlESEkSLjREHj3dAixTkH3LVO6Ct6sllc5RWrQxPxaSGqW9IpcLU6jI49f2XNSGLotVef3Irdg==",
|
|
302
302
|
"dev": true
|
|
303
303
|
},
|
|
304
304
|
"node_modules/@microsoft/recognizers-text-data-types-timex-expression": {
|
|
@@ -563,9 +563,9 @@
|
|
|
563
563
|
"dev": true
|
|
564
564
|
},
|
|
565
565
|
"node_modules/@types/node": {
|
|
566
|
-
"version": "16.11.
|
|
567
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.
|
|
568
|
-
"integrity": "sha512-
|
|
566
|
+
"version": "16.11.26",
|
|
567
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.26.tgz",
|
|
568
|
+
"integrity": "sha512-GZ7bu5A6+4DtG7q9GsoHXy3ALcgeIHP4NnL0Vv2wu0uUB/yQex26v0tf6/na1mm0+bS9Uw+0DFex7aaKr2qawQ=="
|
|
569
569
|
},
|
|
570
570
|
"node_modules/@types/node-fetch": {
|
|
571
571
|
"version": "2.5.12",
|
|
@@ -658,14 +658,14 @@
|
|
|
658
658
|
"integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
|
|
659
659
|
},
|
|
660
660
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
661
|
-
"version": "5.
|
|
662
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.
|
|
663
|
-
"integrity": "sha512-
|
|
661
|
+
"version": "5.13.0",
|
|
662
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.13.0.tgz",
|
|
663
|
+
"integrity": "sha512-vLktb2Uec81fxm/cfz2Hd6QaWOs8qdmVAZXLdOBX6JFJDhf6oDZpMzZ4/LZ6SFM/5DgDcxIMIvy3F+O9yZBuiQ==",
|
|
664
664
|
"dev": true,
|
|
665
665
|
"dependencies": {
|
|
666
|
-
"@typescript-eslint/scope-manager": "5.
|
|
667
|
-
"@typescript-eslint/type-utils": "5.
|
|
668
|
-
"@typescript-eslint/utils": "5.
|
|
666
|
+
"@typescript-eslint/scope-manager": "5.13.0",
|
|
667
|
+
"@typescript-eslint/type-utils": "5.13.0",
|
|
668
|
+
"@typescript-eslint/utils": "5.13.0",
|
|
669
669
|
"debug": "^4.3.2",
|
|
670
670
|
"functional-red-black-tree": "^1.0.1",
|
|
671
671
|
"ignore": "^5.1.8",
|
|
@@ -700,14 +700,14 @@
|
|
|
700
700
|
}
|
|
701
701
|
},
|
|
702
702
|
"node_modules/@typescript-eslint/parser": {
|
|
703
|
-
"version": "5.
|
|
704
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.
|
|
705
|
-
"integrity": "sha512-
|
|
703
|
+
"version": "5.13.0",
|
|
704
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.13.0.tgz",
|
|
705
|
+
"integrity": "sha512-GdrU4GvBE29tm2RqWOM0P5QfCtgCyN4hXICj/X9ibKED16136l9ZpoJvCL5pSKtmJzA+NRDzQ312wWMejCVVfg==",
|
|
706
706
|
"dev": true,
|
|
707
707
|
"dependencies": {
|
|
708
|
-
"@typescript-eslint/scope-manager": "5.
|
|
709
|
-
"@typescript-eslint/types": "5.
|
|
710
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
708
|
+
"@typescript-eslint/scope-manager": "5.13.0",
|
|
709
|
+
"@typescript-eslint/types": "5.13.0",
|
|
710
|
+
"@typescript-eslint/typescript-estree": "5.13.0",
|
|
711
711
|
"debug": "^4.3.2"
|
|
712
712
|
},
|
|
713
713
|
"engines": {
|
|
@@ -727,13 +727,13 @@
|
|
|
727
727
|
}
|
|
728
728
|
},
|
|
729
729
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
730
|
-
"version": "5.
|
|
731
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.
|
|
732
|
-
"integrity": "sha512-
|
|
730
|
+
"version": "5.13.0",
|
|
731
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.13.0.tgz",
|
|
732
|
+
"integrity": "sha512-T4N8UvKYDSfVYdmJq7g2IPJYCRzwtp74KyDZytkR4OL3NRupvswvmJQJ4CX5tDSurW2cvCc1Ia1qM7d0jpa7IA==",
|
|
733
733
|
"dev": true,
|
|
734
734
|
"dependencies": {
|
|
735
|
-
"@typescript-eslint/types": "5.
|
|
736
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
735
|
+
"@typescript-eslint/types": "5.13.0",
|
|
736
|
+
"@typescript-eslint/visitor-keys": "5.13.0"
|
|
737
737
|
},
|
|
738
738
|
"engines": {
|
|
739
739
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -744,12 +744,12 @@
|
|
|
744
744
|
}
|
|
745
745
|
},
|
|
746
746
|
"node_modules/@typescript-eslint/type-utils": {
|
|
747
|
-
"version": "5.
|
|
748
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.
|
|
749
|
-
"integrity": "sha512
|
|
747
|
+
"version": "5.13.0",
|
|
748
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.13.0.tgz",
|
|
749
|
+
"integrity": "sha512-/nz7qFizaBM1SuqAKb7GLkcNn2buRdDgZraXlkhz+vUGiN1NZ9LzkA595tHHeduAiS2MsHqMNhE2zNzGdw43Yg==",
|
|
750
750
|
"dev": true,
|
|
751
751
|
"dependencies": {
|
|
752
|
-
"@typescript-eslint/utils": "5.
|
|
752
|
+
"@typescript-eslint/utils": "5.13.0",
|
|
753
753
|
"debug": "^4.3.2",
|
|
754
754
|
"tsutils": "^3.21.0"
|
|
755
755
|
},
|
|
@@ -770,9 +770,9 @@
|
|
|
770
770
|
}
|
|
771
771
|
},
|
|
772
772
|
"node_modules/@typescript-eslint/types": {
|
|
773
|
-
"version": "5.
|
|
774
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.
|
|
775
|
-
"integrity": "sha512-
|
|
773
|
+
"version": "5.13.0",
|
|
774
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.13.0.tgz",
|
|
775
|
+
"integrity": "sha512-LmE/KO6DUy0nFY/OoQU0XelnmDt+V8lPQhh8MOVa7Y5k2gGRd6U9Kp3wAjhB4OHg57tUO0nOnwYQhRRyEAyOyg==",
|
|
776
776
|
"dev": true,
|
|
777
777
|
"engines": {
|
|
778
778
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -783,13 +783,13 @@
|
|
|
783
783
|
}
|
|
784
784
|
},
|
|
785
785
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
786
|
-
"version": "5.
|
|
787
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.
|
|
788
|
-
"integrity": "sha512-
|
|
786
|
+
"version": "5.13.0",
|
|
787
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.13.0.tgz",
|
|
788
|
+
"integrity": "sha512-Q9cQow0DeLjnp5DuEDjLZ6JIkwGx3oYZe+BfcNuw/POhtpcxMTy18Icl6BJqTSd+3ftsrfuVb7mNHRZf7xiaNA==",
|
|
789
789
|
"dev": true,
|
|
790
790
|
"dependencies": {
|
|
791
|
-
"@typescript-eslint/types": "5.
|
|
792
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
791
|
+
"@typescript-eslint/types": "5.13.0",
|
|
792
|
+
"@typescript-eslint/visitor-keys": "5.13.0",
|
|
793
793
|
"debug": "^4.3.2",
|
|
794
794
|
"globby": "^11.0.4",
|
|
795
795
|
"is-glob": "^4.0.3",
|
|
@@ -810,15 +810,15 @@
|
|
|
810
810
|
}
|
|
811
811
|
},
|
|
812
812
|
"node_modules/@typescript-eslint/utils": {
|
|
813
|
-
"version": "5.
|
|
814
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.
|
|
815
|
-
"integrity": "sha512
|
|
813
|
+
"version": "5.13.0",
|
|
814
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.13.0.tgz",
|
|
815
|
+
"integrity": "sha512-+9oHlPWYNl6AwwoEt5TQryEHwiKRVjz7Vk6kaBeD3/kwHE5YqTGHtm/JZY8Bo9ITOeKutFaXnBlMgSATMJALUQ==",
|
|
816
816
|
"dev": true,
|
|
817
817
|
"dependencies": {
|
|
818
818
|
"@types/json-schema": "^7.0.9",
|
|
819
|
-
"@typescript-eslint/scope-manager": "5.
|
|
820
|
-
"@typescript-eslint/types": "5.
|
|
821
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
819
|
+
"@typescript-eslint/scope-manager": "5.13.0",
|
|
820
|
+
"@typescript-eslint/types": "5.13.0",
|
|
821
|
+
"@typescript-eslint/typescript-estree": "5.13.0",
|
|
822
822
|
"eslint-scope": "^5.1.1",
|
|
823
823
|
"eslint-utils": "^3.0.0"
|
|
824
824
|
},
|
|
@@ -861,12 +861,12 @@
|
|
|
861
861
|
}
|
|
862
862
|
},
|
|
863
863
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
864
|
-
"version": "5.
|
|
865
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.
|
|
866
|
-
"integrity": "sha512-
|
|
864
|
+
"version": "5.13.0",
|
|
865
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.13.0.tgz",
|
|
866
|
+
"integrity": "sha512-HLKEAS/qA1V7d9EzcpLFykTePmOQqOFim8oCvhY3pZgQ8Hi38hYpHd9e5GN6nQBFQNecNhws5wkS9Y5XIO0s/g==",
|
|
867
867
|
"dev": true,
|
|
868
868
|
"dependencies": {
|
|
869
|
-
"@typescript-eslint/types": "5.
|
|
869
|
+
"@typescript-eslint/types": "5.13.0",
|
|
870
870
|
"eslint-visitor-keys": "^3.0.0"
|
|
871
871
|
},
|
|
872
872
|
"engines": {
|
|
@@ -1133,9 +1133,9 @@
|
|
|
1133
1133
|
}
|
|
1134
1134
|
},
|
|
1135
1135
|
"node_modules/applicationinsights": {
|
|
1136
|
-
"version": "2.2.
|
|
1137
|
-
"resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.2.
|
|
1138
|
-
"integrity": "sha512-
|
|
1136
|
+
"version": "2.2.2",
|
|
1137
|
+
"resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.2.2.tgz",
|
|
1138
|
+
"integrity": "sha512-X6cNOoTNJKSki8/U+eI1yqKbP7HtM1qIMcJtYp0E5rCllaYKYfN6w4gKARWuHLMQrzgiQoAfNTyZU8hVbIao1w==",
|
|
1139
1139
|
"dependencies": {
|
|
1140
1140
|
"@azure/core-http": "^2.2.3",
|
|
1141
1141
|
"@opentelemetry/api": "^1.0.4",
|
|
@@ -1288,11 +1288,11 @@
|
|
|
1288
1288
|
"dev": true
|
|
1289
1289
|
},
|
|
1290
1290
|
"node_modules/axios": {
|
|
1291
|
-
"version": "0.
|
|
1292
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-0.
|
|
1293
|
-
"integrity": "sha512-
|
|
1291
|
+
"version": "0.26.0",
|
|
1292
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.0.tgz",
|
|
1293
|
+
"integrity": "sha512-lKoGLMYtHvFrPVt3r+RBMp9nh34N0M8zEfCWqdWZx6phynIEhQqAdydpyBAAG211zlhX9Rgu08cOamy6XjE5Og==",
|
|
1294
1294
|
"dependencies": {
|
|
1295
|
-
"follow-redirects": "^1.14.
|
|
1295
|
+
"follow-redirects": "^1.14.8"
|
|
1296
1296
|
}
|
|
1297
1297
|
},
|
|
1298
1298
|
"node_modules/balanced-match": {
|
|
@@ -2273,12 +2273,12 @@
|
|
|
2273
2273
|
}
|
|
2274
2274
|
},
|
|
2275
2275
|
"node_modules/eslint": {
|
|
2276
|
-
"version": "8.
|
|
2277
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
2278
|
-
"integrity": "sha512-
|
|
2276
|
+
"version": "8.10.0",
|
|
2277
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.10.0.tgz",
|
|
2278
|
+
"integrity": "sha512-tcI1D9lfVec+R4LE1mNDnzoJ/f71Kl/9Cv4nG47jOueCMBrCCKYXr4AUVS7go6mWYGFD4+EoN6+eXSrEbRzXVw==",
|
|
2279
2279
|
"dev": true,
|
|
2280
2280
|
"dependencies": {
|
|
2281
|
-
"@eslint/eslintrc": "^1.0
|
|
2281
|
+
"@eslint/eslintrc": "^1.2.0",
|
|
2282
2282
|
"@humanwhocodes/config-array": "^0.9.2",
|
|
2283
2283
|
"ajv": "^6.10.0",
|
|
2284
2284
|
"chalk": "^4.0.0",
|
|
@@ -2286,10 +2286,10 @@
|
|
|
2286
2286
|
"debug": "^4.3.2",
|
|
2287
2287
|
"doctrine": "^3.0.0",
|
|
2288
2288
|
"escape-string-regexp": "^4.0.0",
|
|
2289
|
-
"eslint-scope": "^7.1.
|
|
2289
|
+
"eslint-scope": "^7.1.1",
|
|
2290
2290
|
"eslint-utils": "^3.0.0",
|
|
2291
|
-
"eslint-visitor-keys": "^3.
|
|
2292
|
-
"espree": "^9.3.
|
|
2291
|
+
"eslint-visitor-keys": "^3.3.0",
|
|
2292
|
+
"espree": "^9.3.1",
|
|
2293
2293
|
"esquery": "^1.4.0",
|
|
2294
2294
|
"esutils": "^2.0.2",
|
|
2295
2295
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -2602,9 +2602,9 @@
|
|
|
2602
2602
|
}
|
|
2603
2603
|
},
|
|
2604
2604
|
"node_modules/eslint-visitor-keys": {
|
|
2605
|
-
"version": "3.
|
|
2606
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.
|
|
2607
|
-
"integrity": "sha512-
|
|
2605
|
+
"version": "3.3.0",
|
|
2606
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
|
|
2607
|
+
"integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
|
|
2608
2608
|
"dev": true,
|
|
2609
2609
|
"engines": {
|
|
2610
2610
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -2629,9 +2629,9 @@
|
|
|
2629
2629
|
}
|
|
2630
2630
|
},
|
|
2631
2631
|
"node_modules/eslint/node_modules/eslint-scope": {
|
|
2632
|
-
"version": "7.1.
|
|
2633
|
-
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.
|
|
2634
|
-
"integrity": "sha512-
|
|
2632
|
+
"version": "7.1.1",
|
|
2633
|
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
|
|
2634
|
+
"integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
|
|
2635
2635
|
"dev": true,
|
|
2636
2636
|
"dependencies": {
|
|
2637
2637
|
"esrecurse": "^4.3.0",
|
|
@@ -2668,15 +2668,6 @@
|
|
|
2668
2668
|
"node": ">=10"
|
|
2669
2669
|
}
|
|
2670
2670
|
},
|
|
2671
|
-
"node_modules/eslint/node_modules/eslint-visitor-keys": {
|
|
2672
|
-
"version": "3.2.0",
|
|
2673
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz",
|
|
2674
|
-
"integrity": "sha512-IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ==",
|
|
2675
|
-
"dev": true,
|
|
2676
|
-
"engines": {
|
|
2677
|
-
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
2678
|
-
}
|
|
2679
|
-
},
|
|
2680
2671
|
"node_modules/eslint/node_modules/estraverse": {
|
|
2681
2672
|
"version": "5.3.0",
|
|
2682
2673
|
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
|
@@ -2720,14 +2711,14 @@
|
|
|
2720
2711
|
}
|
|
2721
2712
|
},
|
|
2722
2713
|
"node_modules/espree": {
|
|
2723
|
-
"version": "9.3.
|
|
2724
|
-
"resolved": "https://registry.npmjs.org/espree/-/espree-9.3.
|
|
2725
|
-
"integrity": "sha512-
|
|
2714
|
+
"version": "9.3.1",
|
|
2715
|
+
"resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz",
|
|
2716
|
+
"integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==",
|
|
2726
2717
|
"dev": true,
|
|
2727
2718
|
"dependencies": {
|
|
2728
2719
|
"acorn": "^8.7.0",
|
|
2729
2720
|
"acorn-jsx": "^5.3.1",
|
|
2730
|
-
"eslint-visitor-keys": "^3.
|
|
2721
|
+
"eslint-visitor-keys": "^3.3.0"
|
|
2731
2722
|
},
|
|
2732
2723
|
"engines": {
|
|
2733
2724
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -3152,9 +3143,9 @@
|
|
|
3152
3143
|
}
|
|
3153
3144
|
},
|
|
3154
3145
|
"node_modules/globals": {
|
|
3155
|
-
"version": "13.12.
|
|
3156
|
-
"resolved": "https://registry.npmjs.org/globals/-/globals-13.12.
|
|
3157
|
-
"integrity": "sha512-
|
|
3146
|
+
"version": "13.12.1",
|
|
3147
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz",
|
|
3148
|
+
"integrity": "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==",
|
|
3158
3149
|
"dev": true,
|
|
3159
3150
|
"dependencies": {
|
|
3160
3151
|
"type-fest": "^0.20.2"
|
|
@@ -4373,9 +4364,9 @@
|
|
|
4373
4364
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
|
4374
4365
|
},
|
|
4375
4366
|
"node_modules/mocha": {
|
|
4376
|
-
"version": "9.2.
|
|
4377
|
-
"resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.
|
|
4378
|
-
"integrity": "sha512-
|
|
4367
|
+
"version": "9.2.1",
|
|
4368
|
+
"resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.1.tgz",
|
|
4369
|
+
"integrity": "sha512-T7uscqjJVS46Pq1XDXyo9Uvey9gd3huT/DD9cYBb4K2Xc/vbKRPUWK067bxDQRK0yIz6Jxk73IrnimvASzBNAQ==",
|
|
4379
4370
|
"dev": true,
|
|
4380
4371
|
"dependencies": {
|
|
4381
4372
|
"@ungap/promise-all-settled": "1.1.2",
|
|
@@ -5728,9 +5719,9 @@
|
|
|
5728
5719
|
}
|
|
5729
5720
|
},
|
|
5730
5721
|
"node_modules/typescript": {
|
|
5731
|
-
"version": "4.
|
|
5732
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.
|
|
5733
|
-
"integrity": "sha512-
|
|
5722
|
+
"version": "4.6.2",
|
|
5723
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.2.tgz",
|
|
5724
|
+
"integrity": "sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==",
|
|
5734
5725
|
"bin": {
|
|
5735
5726
|
"tsc": "bin/tsc",
|
|
5736
5727
|
"tsserver": "bin/tsserver"
|
|
@@ -6338,14 +6329,14 @@
|
|
|
6338
6329
|
"dev": true
|
|
6339
6330
|
},
|
|
6340
6331
|
"@eslint/eslintrc": {
|
|
6341
|
-
"version": "1.0
|
|
6342
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.
|
|
6343
|
-
"integrity": "sha512-
|
|
6332
|
+
"version": "1.2.0",
|
|
6333
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.0.tgz",
|
|
6334
|
+
"integrity": "sha512-igm9SjJHNEJRiUnecP/1R5T3wKLEJ7pL6e2P+GUSfCd0dGjPYYZve08uzw8L2J8foVHFz+NGu12JxRcU2gGo6w==",
|
|
6344
6335
|
"dev": true,
|
|
6345
6336
|
"requires": {
|
|
6346
6337
|
"ajv": "^6.12.4",
|
|
6347
6338
|
"debug": "^4.3.2",
|
|
6348
|
-
"espree": "^9.
|
|
6339
|
+
"espree": "^9.3.1",
|
|
6349
6340
|
"globals": "^13.9.0",
|
|
6350
6341
|
"ignore": "^4.0.6",
|
|
6351
6342
|
"import-fresh": "^3.2.1",
|
|
@@ -6395,9 +6386,9 @@
|
|
|
6395
6386
|
"dev": true
|
|
6396
6387
|
},
|
|
6397
6388
|
"@microsoft/microsoft-graph-types": {
|
|
6398
|
-
"version": "2.
|
|
6399
|
-
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.
|
|
6400
|
-
"integrity": "sha512-
|
|
6389
|
+
"version": "2.16.0",
|
|
6390
|
+
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.16.0.tgz",
|
|
6391
|
+
"integrity": "sha512-Qvxv9mpXb/F4xlESEkSLjREHj3dAixTkH3LVO6Ct6sllc5RWrQxPxaSGqW9IpcLU6jI49f2XNSGLotVef3Irdg==",
|
|
6401
6392
|
"dev": true
|
|
6402
6393
|
},
|
|
6403
6394
|
"@microsoft/recognizers-text-data-types-timex-expression": {
|
|
@@ -6617,9 +6608,9 @@
|
|
|
6617
6608
|
"dev": true
|
|
6618
6609
|
},
|
|
6619
6610
|
"@types/node": {
|
|
6620
|
-
"version": "16.11.
|
|
6621
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.
|
|
6622
|
-
"integrity": "sha512-
|
|
6611
|
+
"version": "16.11.26",
|
|
6612
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.26.tgz",
|
|
6613
|
+
"integrity": "sha512-GZ7bu5A6+4DtG7q9GsoHXy3ALcgeIHP4NnL0Vv2wu0uUB/yQex26v0tf6/na1mm0+bS9Uw+0DFex7aaKr2qawQ=="
|
|
6623
6614
|
},
|
|
6624
6615
|
"@types/node-fetch": {
|
|
6625
6616
|
"version": "2.5.12",
|
|
@@ -6711,14 +6702,14 @@
|
|
|
6711
6702
|
"integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
|
|
6712
6703
|
},
|
|
6713
6704
|
"@typescript-eslint/eslint-plugin": {
|
|
6714
|
-
"version": "5.
|
|
6715
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.
|
|
6716
|
-
"integrity": "sha512-
|
|
6705
|
+
"version": "5.13.0",
|
|
6706
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.13.0.tgz",
|
|
6707
|
+
"integrity": "sha512-vLktb2Uec81fxm/cfz2Hd6QaWOs8qdmVAZXLdOBX6JFJDhf6oDZpMzZ4/LZ6SFM/5DgDcxIMIvy3F+O9yZBuiQ==",
|
|
6717
6708
|
"dev": true,
|
|
6718
6709
|
"requires": {
|
|
6719
|
-
"@typescript-eslint/scope-manager": "5.
|
|
6720
|
-
"@typescript-eslint/type-utils": "5.
|
|
6721
|
-
"@typescript-eslint/utils": "5.
|
|
6710
|
+
"@typescript-eslint/scope-manager": "5.13.0",
|
|
6711
|
+
"@typescript-eslint/type-utils": "5.13.0",
|
|
6712
|
+
"@typescript-eslint/utils": "5.13.0",
|
|
6722
6713
|
"debug": "^4.3.2",
|
|
6723
6714
|
"functional-red-black-tree": "^1.0.1",
|
|
6724
6715
|
"ignore": "^5.1.8",
|
|
@@ -6736,52 +6727,52 @@
|
|
|
6736
6727
|
}
|
|
6737
6728
|
},
|
|
6738
6729
|
"@typescript-eslint/parser": {
|
|
6739
|
-
"version": "5.
|
|
6740
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.
|
|
6741
|
-
"integrity": "sha512-
|
|
6730
|
+
"version": "5.13.0",
|
|
6731
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.13.0.tgz",
|
|
6732
|
+
"integrity": "sha512-GdrU4GvBE29tm2RqWOM0P5QfCtgCyN4hXICj/X9ibKED16136l9ZpoJvCL5pSKtmJzA+NRDzQ312wWMejCVVfg==",
|
|
6742
6733
|
"dev": true,
|
|
6743
6734
|
"requires": {
|
|
6744
|
-
"@typescript-eslint/scope-manager": "5.
|
|
6745
|
-
"@typescript-eslint/types": "5.
|
|
6746
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
6735
|
+
"@typescript-eslint/scope-manager": "5.13.0",
|
|
6736
|
+
"@typescript-eslint/types": "5.13.0",
|
|
6737
|
+
"@typescript-eslint/typescript-estree": "5.13.0",
|
|
6747
6738
|
"debug": "^4.3.2"
|
|
6748
6739
|
}
|
|
6749
6740
|
},
|
|
6750
6741
|
"@typescript-eslint/scope-manager": {
|
|
6751
|
-
"version": "5.
|
|
6752
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.
|
|
6753
|
-
"integrity": "sha512-
|
|
6742
|
+
"version": "5.13.0",
|
|
6743
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.13.0.tgz",
|
|
6744
|
+
"integrity": "sha512-T4N8UvKYDSfVYdmJq7g2IPJYCRzwtp74KyDZytkR4OL3NRupvswvmJQJ4CX5tDSurW2cvCc1Ia1qM7d0jpa7IA==",
|
|
6754
6745
|
"dev": true,
|
|
6755
6746
|
"requires": {
|
|
6756
|
-
"@typescript-eslint/types": "5.
|
|
6757
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
6747
|
+
"@typescript-eslint/types": "5.13.0",
|
|
6748
|
+
"@typescript-eslint/visitor-keys": "5.13.0"
|
|
6758
6749
|
}
|
|
6759
6750
|
},
|
|
6760
6751
|
"@typescript-eslint/type-utils": {
|
|
6761
|
-
"version": "5.
|
|
6762
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.
|
|
6763
|
-
"integrity": "sha512
|
|
6752
|
+
"version": "5.13.0",
|
|
6753
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.13.0.tgz",
|
|
6754
|
+
"integrity": "sha512-/nz7qFizaBM1SuqAKb7GLkcNn2buRdDgZraXlkhz+vUGiN1NZ9LzkA595tHHeduAiS2MsHqMNhE2zNzGdw43Yg==",
|
|
6764
6755
|
"dev": true,
|
|
6765
6756
|
"requires": {
|
|
6766
|
-
"@typescript-eslint/utils": "5.
|
|
6757
|
+
"@typescript-eslint/utils": "5.13.0",
|
|
6767
6758
|
"debug": "^4.3.2",
|
|
6768
6759
|
"tsutils": "^3.21.0"
|
|
6769
6760
|
}
|
|
6770
6761
|
},
|
|
6771
6762
|
"@typescript-eslint/types": {
|
|
6772
|
-
"version": "5.
|
|
6773
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.
|
|
6774
|
-
"integrity": "sha512-
|
|
6763
|
+
"version": "5.13.0",
|
|
6764
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.13.0.tgz",
|
|
6765
|
+
"integrity": "sha512-LmE/KO6DUy0nFY/OoQU0XelnmDt+V8lPQhh8MOVa7Y5k2gGRd6U9Kp3wAjhB4OHg57tUO0nOnwYQhRRyEAyOyg==",
|
|
6775
6766
|
"dev": true
|
|
6776
6767
|
},
|
|
6777
6768
|
"@typescript-eslint/typescript-estree": {
|
|
6778
|
-
"version": "5.
|
|
6779
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.
|
|
6780
|
-
"integrity": "sha512-
|
|
6769
|
+
"version": "5.13.0",
|
|
6770
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.13.0.tgz",
|
|
6771
|
+
"integrity": "sha512-Q9cQow0DeLjnp5DuEDjLZ6JIkwGx3oYZe+BfcNuw/POhtpcxMTy18Icl6BJqTSd+3ftsrfuVb7mNHRZf7xiaNA==",
|
|
6781
6772
|
"dev": true,
|
|
6782
6773
|
"requires": {
|
|
6783
|
-
"@typescript-eslint/types": "5.
|
|
6784
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
6774
|
+
"@typescript-eslint/types": "5.13.0",
|
|
6775
|
+
"@typescript-eslint/visitor-keys": "5.13.0",
|
|
6785
6776
|
"debug": "^4.3.2",
|
|
6786
6777
|
"globby": "^11.0.4",
|
|
6787
6778
|
"is-glob": "^4.0.3",
|
|
@@ -6790,15 +6781,15 @@
|
|
|
6790
6781
|
}
|
|
6791
6782
|
},
|
|
6792
6783
|
"@typescript-eslint/utils": {
|
|
6793
|
-
"version": "5.
|
|
6794
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.
|
|
6795
|
-
"integrity": "sha512
|
|
6784
|
+
"version": "5.13.0",
|
|
6785
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.13.0.tgz",
|
|
6786
|
+
"integrity": "sha512-+9oHlPWYNl6AwwoEt5TQryEHwiKRVjz7Vk6kaBeD3/kwHE5YqTGHtm/JZY8Bo9ITOeKutFaXnBlMgSATMJALUQ==",
|
|
6796
6787
|
"dev": true,
|
|
6797
6788
|
"requires": {
|
|
6798
6789
|
"@types/json-schema": "^7.0.9",
|
|
6799
|
-
"@typescript-eslint/scope-manager": "5.
|
|
6800
|
-
"@typescript-eslint/types": "5.
|
|
6801
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
6790
|
+
"@typescript-eslint/scope-manager": "5.13.0",
|
|
6791
|
+
"@typescript-eslint/types": "5.13.0",
|
|
6792
|
+
"@typescript-eslint/typescript-estree": "5.13.0",
|
|
6802
6793
|
"eslint-scope": "^5.1.1",
|
|
6803
6794
|
"eslint-utils": "^3.0.0"
|
|
6804
6795
|
},
|
|
@@ -6821,12 +6812,12 @@
|
|
|
6821
6812
|
}
|
|
6822
6813
|
},
|
|
6823
6814
|
"@typescript-eslint/visitor-keys": {
|
|
6824
|
-
"version": "5.
|
|
6825
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.
|
|
6826
|
-
"integrity": "sha512-
|
|
6815
|
+
"version": "5.13.0",
|
|
6816
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.13.0.tgz",
|
|
6817
|
+
"integrity": "sha512-HLKEAS/qA1V7d9EzcpLFykTePmOQqOFim8oCvhY3pZgQ8Hi38hYpHd9e5GN6nQBFQNecNhws5wkS9Y5XIO0s/g==",
|
|
6827
6818
|
"dev": true,
|
|
6828
6819
|
"requires": {
|
|
6829
|
-
"@typescript-eslint/types": "5.
|
|
6820
|
+
"@typescript-eslint/types": "5.13.0",
|
|
6830
6821
|
"eslint-visitor-keys": "^3.0.0"
|
|
6831
6822
|
}
|
|
6832
6823
|
},
|
|
@@ -7034,9 +7025,9 @@
|
|
|
7034
7025
|
}
|
|
7035
7026
|
},
|
|
7036
7027
|
"applicationinsights": {
|
|
7037
|
-
"version": "2.2.
|
|
7038
|
-
"resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.2.
|
|
7039
|
-
"integrity": "sha512-
|
|
7028
|
+
"version": "2.2.2",
|
|
7029
|
+
"resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.2.2.tgz",
|
|
7030
|
+
"integrity": "sha512-X6cNOoTNJKSki8/U+eI1yqKbP7HtM1qIMcJtYp0E5rCllaYKYfN6w4gKARWuHLMQrzgiQoAfNTyZU8hVbIao1w==",
|
|
7040
7031
|
"requires": {
|
|
7041
7032
|
"@azure/core-http": "^2.2.3",
|
|
7042
7033
|
"@opentelemetry/api": "^1.0.4",
|
|
@@ -7150,11 +7141,11 @@
|
|
|
7150
7141
|
"dev": true
|
|
7151
7142
|
},
|
|
7152
7143
|
"axios": {
|
|
7153
|
-
"version": "0.
|
|
7154
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-0.
|
|
7155
|
-
"integrity": "sha512-
|
|
7144
|
+
"version": "0.26.0",
|
|
7145
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.0.tgz",
|
|
7146
|
+
"integrity": "sha512-lKoGLMYtHvFrPVt3r+RBMp9nh34N0M8zEfCWqdWZx6phynIEhQqAdydpyBAAG211zlhX9Rgu08cOamy6XjE5Og==",
|
|
7156
7147
|
"requires": {
|
|
7157
|
-
"follow-redirects": "^1.14.
|
|
7148
|
+
"follow-redirects": "^1.14.8"
|
|
7158
7149
|
}
|
|
7159
7150
|
},
|
|
7160
7151
|
"balanced-match": {
|
|
@@ -7917,12 +7908,12 @@
|
|
|
7917
7908
|
}
|
|
7918
7909
|
},
|
|
7919
7910
|
"eslint": {
|
|
7920
|
-
"version": "8.
|
|
7921
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
7922
|
-
"integrity": "sha512-
|
|
7911
|
+
"version": "8.10.0",
|
|
7912
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.10.0.tgz",
|
|
7913
|
+
"integrity": "sha512-tcI1D9lfVec+R4LE1mNDnzoJ/f71Kl/9Cv4nG47jOueCMBrCCKYXr4AUVS7go6mWYGFD4+EoN6+eXSrEbRzXVw==",
|
|
7923
7914
|
"dev": true,
|
|
7924
7915
|
"requires": {
|
|
7925
|
-
"@eslint/eslintrc": "^1.0
|
|
7916
|
+
"@eslint/eslintrc": "^1.2.0",
|
|
7926
7917
|
"@humanwhocodes/config-array": "^0.9.2",
|
|
7927
7918
|
"ajv": "^6.10.0",
|
|
7928
7919
|
"chalk": "^4.0.0",
|
|
@@ -7930,10 +7921,10 @@
|
|
|
7930
7921
|
"debug": "^4.3.2",
|
|
7931
7922
|
"doctrine": "^3.0.0",
|
|
7932
7923
|
"escape-string-regexp": "^4.0.0",
|
|
7933
|
-
"eslint-scope": "^7.1.
|
|
7924
|
+
"eslint-scope": "^7.1.1",
|
|
7934
7925
|
"eslint-utils": "^3.0.0",
|
|
7935
|
-
"eslint-visitor-keys": "^3.
|
|
7936
|
-
"espree": "^9.3.
|
|
7926
|
+
"eslint-visitor-keys": "^3.3.0",
|
|
7927
|
+
"espree": "^9.3.1",
|
|
7937
7928
|
"esquery": "^1.4.0",
|
|
7938
7929
|
"esutils": "^2.0.2",
|
|
7939
7930
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -7972,9 +7963,9 @@
|
|
|
7972
7963
|
"dev": true
|
|
7973
7964
|
},
|
|
7974
7965
|
"eslint-scope": {
|
|
7975
|
-
"version": "7.1.
|
|
7976
|
-
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.
|
|
7977
|
-
"integrity": "sha512-
|
|
7966
|
+
"version": "7.1.1",
|
|
7967
|
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
|
|
7968
|
+
"integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
|
|
7978
7969
|
"dev": true,
|
|
7979
7970
|
"requires": {
|
|
7980
7971
|
"esrecurse": "^4.3.0",
|
|
@@ -7998,12 +7989,6 @@
|
|
|
7998
7989
|
}
|
|
7999
7990
|
}
|
|
8000
7991
|
},
|
|
8001
|
-
"eslint-visitor-keys": {
|
|
8002
|
-
"version": "3.2.0",
|
|
8003
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz",
|
|
8004
|
-
"integrity": "sha512-IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ==",
|
|
8005
|
-
"dev": true
|
|
8006
|
-
},
|
|
8007
7992
|
"estraverse": {
|
|
8008
7993
|
"version": "5.3.0",
|
|
8009
7994
|
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
|
@@ -8251,20 +8236,20 @@
|
|
|
8251
8236
|
}
|
|
8252
8237
|
},
|
|
8253
8238
|
"eslint-visitor-keys": {
|
|
8254
|
-
"version": "3.
|
|
8255
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.
|
|
8256
|
-
"integrity": "sha512-
|
|
8239
|
+
"version": "3.3.0",
|
|
8240
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
|
|
8241
|
+
"integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
|
|
8257
8242
|
"dev": true
|
|
8258
8243
|
},
|
|
8259
8244
|
"espree": {
|
|
8260
|
-
"version": "9.3.
|
|
8261
|
-
"resolved": "https://registry.npmjs.org/espree/-/espree-9.3.
|
|
8262
|
-
"integrity": "sha512-
|
|
8245
|
+
"version": "9.3.1",
|
|
8246
|
+
"resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz",
|
|
8247
|
+
"integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==",
|
|
8263
8248
|
"dev": true,
|
|
8264
8249
|
"requires": {
|
|
8265
8250
|
"acorn": "^8.7.0",
|
|
8266
8251
|
"acorn-jsx": "^5.3.1",
|
|
8267
|
-
"eslint-visitor-keys": "^3.
|
|
8252
|
+
"eslint-visitor-keys": "^3.3.0"
|
|
8268
8253
|
}
|
|
8269
8254
|
},
|
|
8270
8255
|
"esprima": {
|
|
@@ -8577,9 +8562,9 @@
|
|
|
8577
8562
|
}
|
|
8578
8563
|
},
|
|
8579
8564
|
"globals": {
|
|
8580
|
-
"version": "13.12.
|
|
8581
|
-
"resolved": "https://registry.npmjs.org/globals/-/globals-13.12.
|
|
8582
|
-
"integrity": "sha512-
|
|
8565
|
+
"version": "13.12.1",
|
|
8566
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz",
|
|
8567
|
+
"integrity": "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==",
|
|
8583
8568
|
"dev": true,
|
|
8584
8569
|
"requires": {
|
|
8585
8570
|
"type-fest": "^0.20.2"
|
|
@@ -9490,9 +9475,9 @@
|
|
|
9490
9475
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
|
9491
9476
|
},
|
|
9492
9477
|
"mocha": {
|
|
9493
|
-
"version": "9.2.
|
|
9494
|
-
"resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.
|
|
9495
|
-
"integrity": "sha512-
|
|
9478
|
+
"version": "9.2.1",
|
|
9479
|
+
"resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.1.tgz",
|
|
9480
|
+
"integrity": "sha512-T7uscqjJVS46Pq1XDXyo9Uvey9gd3huT/DD9cYBb4K2Xc/vbKRPUWK067bxDQRK0yIz6Jxk73IrnimvASzBNAQ==",
|
|
9496
9481
|
"dev": true,
|
|
9497
9482
|
"requires": {
|
|
9498
9483
|
"@ungap/promise-all-settled": "1.1.2",
|
|
@@ -10521,9 +10506,9 @@
|
|
|
10521
10506
|
}
|
|
10522
10507
|
},
|
|
10523
10508
|
"typescript": {
|
|
10524
|
-
"version": "4.
|
|
10525
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.
|
|
10526
|
-
"integrity": "sha512-
|
|
10509
|
+
"version": "4.6.2",
|
|
10510
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.2.tgz",
|
|
10511
|
+
"integrity": "sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg=="
|
|
10527
10512
|
},
|
|
10528
10513
|
"unbox-primitive": {
|
|
10529
10514
|
"version": "1.0.1",
|