@pnp/cli-microsoft365 5.0.0-beta.aff293c → 5.0.0-beta.c4100fe
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/.devcontainer/Dockerfile +2 -2
- package/.devcontainer/devcontainer.json +13 -2
- package/.eslintrc.js +3 -0
- package/.mocharc.json +9 -0
- package/README.md +3 -3
- package/dist/Command.js +1 -1
- package/dist/Utils.js +7 -0
- package/dist/api.d.ts +11 -0
- package/dist/api.js +17 -0
- package/dist/appInsights.js +5 -2
- package/dist/cli/Cli.js +42 -7
- package/dist/m365/aad/commands/app/app-add.js +101 -12
- package/dist/m365/aad/commands/app/app-delete.js +123 -0
- package/dist/m365/aad/commands/app/app-get.js +142 -0
- package/dist/m365/aad/commands/app/app-set.js +98 -3
- package/dist/m365/aad/commands/group/group-list.js +54 -0
- package/dist/m365/aad/commands/o365group/{GroupUser.js → GroupExtended.js} +1 -1
- package/dist/m365/aad/commands/o365group/o365group-add.js +56 -50
- package/dist/m365/aad/commands/o365group/o365group-conversation-list.js +41 -0
- package/dist/m365/aad/commands/o365group/o365group-user-set.js +3 -3
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-add.js +5 -8
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-list.js +7 -7
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-remove.js +36 -12
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-set.js +3 -3
- package/dist/m365/aad/commands/sp/sp-add.js +107 -0
- package/dist/m365/aad/commands/sp/sp-get.js +44 -21
- package/dist/m365/aad/commands/user/user-get.js +33 -6
- package/dist/m365/aad/commands/user/user-hibp.js +67 -0
- package/dist/m365/aad/commands/user/user-list.js +7 -4
- package/dist/m365/aad/commands/user/user-password-validate.js +42 -0
- package/dist/m365/aad/commands.js +7 -0
- package/dist/m365/app/commands/permission/permission-list.js +266 -0
- package/dist/m365/app/commands.js +7 -0
- package/dist/m365/base/AppCommand.js +76 -0
- package/dist/m365/{aad/commands/o365group/Group.js → base/M365RcJson.js} +1 -1
- package/dist/m365/cli/commands/cli-doctor.js +2 -0
- package/dist/m365/cli/commands/config/config-set.js +4 -1
- package/dist/m365/file/commands/file-add.js +32 -13
- package/dist/m365/file/commands/file-list.js +181 -0
- package/dist/m365/file/commands.js +2 -1
- package/dist/m365/flow/commands/flow-get.js +2 -2
- package/dist/m365/outlook/commands/room/room-list.js +43 -0
- package/dist/m365/outlook/commands/roomlist/roomlist-list.js +25 -0
- package/dist/m365/outlook/commands.js +2 -0
- package/dist/m365/pa/cds-project-mutator.js +1 -1
- package/dist/m365/pa/commands/app/app-list.js +28 -1
- package/dist/m365/planner/AppliedCategories.js +3 -0
- package/dist/m365/planner/commands/task/task-add.js +288 -0
- package/dist/m365/planner/commands/task/task-details-get.js +39 -0
- package/dist/m365/planner/commands/task/task-get.js +37 -0
- package/dist/m365/planner/commands/task/task-list.js +37 -7
- package/dist/m365/planner/commands/task/task-set.js +357 -0
- package/dist/m365/planner/commands.js +5 -1
- package/dist/m365/search/commands/externalconnection/externalconnection-add.js +99 -0
- package/dist/m365/search/commands.js +7 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006005_CFG_PS_metadata.js +63 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006006_CFG_PS_features.js +60 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN014008_CODE_launch_hostedWorkbench_type.js +62 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.13.1.js +53 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.14.0.js +59 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +3 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +197 -64
- package/dist/m365/spo/commands/contenttype/contenttype-list.js +52 -0
- package/dist/m365/spo/commands/group/group-user-add.js +74 -16
- package/dist/m365/spo/commands/group/group-user-remove.js +100 -0
- package/dist/m365/spo/commands/list/list-get.js +6 -2
- package/dist/m365/spo/commands/listitem/listitem-attachment-list.js +90 -0
- package/dist/m365/spo/commands/page/Page.js +3 -1
- package/dist/m365/spo/commands/page/page-add.js +7 -10
- package/dist/m365/spo/commands/page/page-set.js +7 -10
- package/dist/m365/spo/commands/site/site-ensure.js +1 -1
- package/dist/m365/spo/commands/site/site-recyclebinitem-list.js +76 -0
- package/dist/m365/spo/commands/site/site-remove.js +98 -30
- package/dist/m365/spo/commands/web/web-installedlanguage-list.js +48 -0
- package/dist/m365/spo/commands.js +6 -1
- package/dist/m365/teams/commands/app/app-install.js +75 -21
- package/dist/m365/teams/commands/app/app-list.js +9 -6
- package/dist/m365/teams/commands/app/app-update.js +55 -12
- package/dist/m365/teams/commands/channel/channel-get.js +29 -7
- package/dist/m365/teams/commands/chat/chat-list.js +43 -0
- package/dist/m365/teams/commands/chat/chat-member-list.js +42 -0
- package/dist/m365/teams/commands/chat/chat-message-list.js +60 -0
- package/dist/m365/teams/commands/chat/chat-message-send.js +225 -0
- package/dist/m365/teams/commands/message/message-get.js +1 -1
- package/dist/m365/teams/commands/report/report-directroutingcalls.js +1 -1
- package/dist/m365/teams/commands/report/report-pstncalls.js +1 -1
- package/dist/m365/teams/commands/tab/tab-get.js +9 -6
- package/dist/m365/teams/commands.js +4 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-health-get.js +57 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-health-list.js +56 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-healthissue-get.js +39 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-healthissue-list.js +38 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-message-get.js +51 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-message-list.js +38 -0
- package/dist/m365/tenant/commands.js +6 -0
- package/dist/request.js +9 -4
- package/dist/settingsNames.js +6 -1
- package/docs/docs/cmd/_global.md +2 -2
- package/docs/docs/cmd/aad/app/app-add.md +11 -0
- package/docs/docs/cmd/aad/app/app-delete.md +51 -0
- package/docs/docs/cmd/aad/app/app-get.md +59 -0
- package/docs/docs/cmd/aad/app/app-set.md +21 -0
- package/docs/docs/cmd/aad/group/group-list.md +30 -0
- package/docs/docs/cmd/aad/o365group/o365group-add.md +1 -0
- package/docs/docs/cmd/aad/o365group/o365group-conversation-list.md +24 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-list.md +4 -3
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-remove.md +9 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-set.md +3 -2
- package/docs/docs/cmd/aad/sp/sp-add.md +53 -0
- package/docs/docs/cmd/aad/sp/sp-get.md +2 -1
- package/docs/docs/cmd/aad/user/user-get.md +13 -4
- package/docs/docs/cmd/aad/user/user-hibp.md +46 -0
- package/docs/docs/cmd/aad/user/user-list.md +9 -0
- package/docs/docs/cmd/aad/user/user-password-validate.md +29 -0
- package/docs/docs/cmd/app/permission/permission-list.md +36 -0
- package/docs/docs/cmd/file/file-add.md +11 -0
- package/docs/docs/cmd/file/file-list.md +46 -0
- package/docs/docs/cmd/outlook/room/room-list.md +30 -0
- package/docs/docs/cmd/outlook/roomlist/roomlist-list.md +21 -0
- package/docs/docs/cmd/pa/app/app-list.md +17 -1
- package/docs/docs/cmd/planner/task/task-add.md +78 -0
- package/docs/docs/cmd/planner/task/task-details-get.md +24 -0
- package/docs/docs/cmd/planner/task/task-get.md +29 -0
- package/docs/docs/cmd/planner/task/task-list.md +5 -0
- package/docs/docs/cmd/planner/task/task-set.md +99 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +43 -0
- package/docs/docs/cmd/spfx/project/project-externalize.md +1 -1
- package/docs/docs/cmd/spfx/project/project-rename.md +1 -1
- package/docs/docs/cmd/spfx/project/project-upgrade.md +8 -8
- package/docs/docs/cmd/spfx/spfx-doctor.md +1 -1
- package/docs/docs/cmd/spo/contenttype/contenttype-list.md +33 -0
- package/docs/docs/cmd/spo/group/group-user-add.md +28 -6
- package/docs/docs/cmd/spo/group/group-user-remove.md +39 -0
- package/docs/docs/cmd/spo/list/list-get.md +9 -0
- package/docs/docs/cmd/spo/listitem/listitem-attachment-list.md +39 -0
- package/docs/docs/cmd/spo/page/page-add.md +2 -2
- package/docs/docs/cmd/spo/page/page-set.md +3 -3
- package/docs/docs/cmd/spo/site/site-recyclebinitem-list.md +40 -0
- package/docs/docs/cmd/spo/site/site-remove.md +3 -1
- package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +24 -0
- package/docs/docs/cmd/teams/app/app-install.md +22 -4
- package/docs/docs/cmd/teams/app/app-update.md +12 -3
- package/docs/docs/cmd/teams/channel/channel-get.md +11 -2
- package/docs/docs/cmd/teams/chat/chat-list.md +30 -0
- package/docs/docs/cmd/teams/chat/chat-member-list.md +24 -0
- package/docs/docs/cmd/teams/chat/chat-message-list.md +24 -0
- package/docs/docs/cmd/teams/chat/chat-message-send.md +55 -0
- package/docs/docs/cmd/teams/message/message-get.md +0 -3
- package/docs/docs/cmd/teams/report/report-directroutingcalls.md +0 -3
- package/docs/docs/cmd/teams/report/report-pstncalls.md +4 -3
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-get.md +33 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-list.md +30 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-get.md +24 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-list.md +34 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-get.md +28 -0
- package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-list.md +34 -0
- package/npm-shrinkwrap.json +1740 -2288
- package/package.json +46 -33
- package/dist/m365/base/AadCommand.js +0 -10
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.c4100fe",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"main": "./dist/
|
|
6
|
+
"main": "./dist/api.js",
|
|
7
|
+
"typings": "./dist/api.d.ts",
|
|
7
8
|
"bin": {
|
|
8
|
-
"microsoft365": "./dist/index.js",
|
|
9
9
|
"m365": "./dist/index.js",
|
|
10
|
-
"m365_comp": "./dist/autocomplete.js"
|
|
10
|
+
"m365_comp": "./dist/autocomplete.js",
|
|
11
|
+
"microsoft365": "./dist/index.js"
|
|
11
12
|
},
|
|
12
13
|
"repository": {
|
|
13
14
|
"type": "git",
|
|
@@ -84,10 +85,13 @@
|
|
|
84
85
|
],
|
|
85
86
|
"contributors": [
|
|
86
87
|
"Ågren, Simon <simon.agren@sogeti.com>",
|
|
88
|
+
"Akash Karda <akashkarda@gmail.com>",
|
|
87
89
|
"Albany, Bruce <bruce.albany@gmail.com>",
|
|
90
|
+
"Auckloo, Reshmee <reshmee011@gmail.com>",
|
|
88
91
|
"Balasubramaniam, Jayakumar <jayakumar@live.in>",
|
|
89
92
|
"Bauer, Stefan <stefan.bauer@n8d.at>",
|
|
90
93
|
"Bernier, Hugo <hugoabernier@live.ca>",
|
|
94
|
+
"Bewernitz, Christian <coder@karfau.de>",
|
|
91
95
|
"Bhardwaj, Aakash <aakashbhardwaj619@gmail.com>",
|
|
92
96
|
"Biret, Vincent <baywet@users.noreply.github.com>",
|
|
93
97
|
"Biro, Peter <Peter.Biro@xs.nestle.com>",
|
|
@@ -96,6 +100,7 @@
|
|
|
96
100
|
"Calabro, David <davej.calabro@gmail.com>",
|
|
97
101
|
"Connell, Andrew <me@andrewconnell.com>",
|
|
98
102
|
"Deshpande, Vardhaman <vardhaman.rd@gmail.com>",
|
|
103
|
+
"Dyjas, Robert <15113729+robdy@users.noreply.github.com>",
|
|
99
104
|
"Faleel, Mohamed Ashiq <ashiqf@gmail.com>",
|
|
100
105
|
"Ford, Lee <fordyman@gmail.com>",
|
|
101
106
|
"Freese, Luise <49960482+LuiseFreese@users.noreply.github.com>",
|
|
@@ -112,7 +117,7 @@
|
|
|
112
117
|
"Kailasam, Balamurugan <kshsbala@engineer.com>",
|
|
113
118
|
"Kasireddy, Prasad <prasad.gietcse@gmail.com>",
|
|
114
119
|
"Keijzers, Paul <KbWorks@users.noreply.github.com>",
|
|
115
|
-
"Kelkar, Vipul <
|
|
120
|
+
"Kelkar, Vipul <vipul.kelkar@outlook.com>",
|
|
116
121
|
"Kesavanarayanan, Sudharsan <10280385+sudharsank@users.noreply.github.com>",
|
|
117
122
|
"Khalil, Bassem <bk@bassems-air.home>",
|
|
118
123
|
"Kumar, Shantha <34408892+ktskumar@users.noreply.github.com>",
|
|
@@ -120,8 +125,10 @@
|
|
|
120
125
|
"Laskewitz, Daniel <daniel@laskewitz.nl>",
|
|
121
126
|
"Lengelle, Veronique <25181757+veronicageek@users.noreply.github.com>",
|
|
122
127
|
"Levert, Sebastien <slevert@outlook.com>",
|
|
128
|
+
"Lingstuyl, Martin <martin@i4-you.com>",
|
|
123
129
|
"Maillot, Michaël <battosaimykle@gmail.com>",
|
|
124
130
|
"Mastykarz, Waldek <waldek@mastykarz.nl>",
|
|
131
|
+
"McDonnell, Kevin <kevin@mcd79.com>",
|
|
125
132
|
"Menon, Arjun <arjun.umenon@gmail.com>",
|
|
126
133
|
"Moujahid, Abderahman <rags_place@hotmail.com>",
|
|
127
134
|
"Mücklisch, Steve <steve.muecklisch@gmail.com>",
|
|
@@ -131,6 +138,7 @@
|
|
|
131
138
|
"Patil, Atharva <atharvapatil19202@gmail.com>",
|
|
132
139
|
"Plenevaux, Yannick <yannick.plenevaux@gmail.com>",
|
|
133
140
|
"Powney, Mark <powney.mark@outlook.com>",
|
|
141
|
+
"pramod74 <pramod.lumb@gmail.com>",
|
|
134
142
|
"Priem, Mark <mark.priem@outlook.com>",
|
|
135
143
|
"Raju, Arnie <arnie.raju@thesolutioncollective.com.au>",
|
|
136
144
|
"Ramalho, David <dramalho@storm.ie>",
|
|
@@ -142,6 +150,7 @@
|
|
|
142
150
|
"Schot, Albert-Jan <appie@digiwijs.nl>",
|
|
143
151
|
"Schouten, Robert <robert.schouten@wortell.nl>",
|
|
144
152
|
"Schütze, Sebastian <sebastian.schuetze@razorspoint.com>",
|
|
153
|
+
"Shafi, Danish <33339824+builtbydans@users.noreply.github.com>",
|
|
145
154
|
"Shah, Dipen <Dips365@hotmail.com>",
|
|
146
155
|
"Siatka, Piotr <piotr@valointranet.com>",
|
|
147
156
|
"Sinha, Kislay <kislay_sinha@outlook.com>",
|
|
@@ -153,6 +162,7 @@
|
|
|
153
162
|
"Svenson, Mikael <miksvenson@gmail.com>",
|
|
154
163
|
"Tane, Peter <peter.tane@gmail.come>",
|
|
155
164
|
"Tatti, Anoop <anoop@live.co.uk>",
|
|
165
|
+
"Thangavel, Sekar <sekar.thangavel@gmail.com>",
|
|
156
166
|
"Thorild, Fredrik <fredrik.thorild@sogeti.com>",
|
|
157
167
|
"Trinder, Garry <garry.trinder@live.com>",
|
|
158
168
|
"Vaghasia, Siddharth <siddh.vaghasia@gmail.com>",
|
|
@@ -161,61 +171,64 @@
|
|
|
161
171
|
"van Iersel, Cas <cvaniersel@portiva.nl>",
|
|
162
172
|
"van Rousselt, Rick <rick.vanrousselt@outlook.com>",
|
|
163
173
|
"Velliah, Joseph <joseph@sprider.org>",
|
|
174
|
+
"Waegebaert, Jasey <jaseyw@gmigroup.be>",
|
|
164
175
|
"Wilen, Wictor <wictor@wictorwilen.se>",
|
|
165
176
|
"Williams, Rabia <rabiawilliams@gmail.com>",
|
|
166
177
|
"Wojcik, Adam <adam.wojcik.it@gmail.com>"
|
|
167
178
|
],
|
|
168
179
|
"dependencies": {
|
|
169
|
-
"@azure/msal-node": "^1.
|
|
170
|
-
"
|
|
171
|
-
"
|
|
180
|
+
"@azure/msal-node": "^1.6.0",
|
|
181
|
+
"@xmldom/xmldom": "^0.7.5",
|
|
182
|
+
"adaptive-expressions": "^4.15.0",
|
|
183
|
+
"adaptivecards": "^2.10.0",
|
|
184
|
+
"adaptivecards-templating": "^2.2.0",
|
|
172
185
|
"adm-zip": "^0.5.9",
|
|
173
|
-
"applicationinsights": "^2.1
|
|
174
|
-
"axios": "^0.
|
|
186
|
+
"applicationinsights": "^2.2.1",
|
|
187
|
+
"axios": "^0.25.0",
|
|
175
188
|
"chalk": "^4.1.2",
|
|
189
|
+
"csv-stringify": "^6.0.5",
|
|
176
190
|
"easy-table": "^1.2.0",
|
|
177
191
|
"inquirer": "^8.2.0",
|
|
178
|
-
"jmespath": "^0.
|
|
192
|
+
"jmespath": "^0.16.0",
|
|
179
193
|
"json-to-ast": "^2.1.0",
|
|
180
194
|
"markshell": "^1.3.8",
|
|
181
195
|
"minimist": "^1.2.5",
|
|
182
|
-
"node-forge": "^
|
|
196
|
+
"node-forge": "^1.2.1",
|
|
183
197
|
"omelette": "^0.4.17",
|
|
184
|
-
"open": "^8.
|
|
198
|
+
"open": "^8.4.0",
|
|
185
199
|
"semver": "^7.3.4",
|
|
186
200
|
"strip-json-comments": "^3.1.1",
|
|
187
|
-
"typescript": "^4.
|
|
201
|
+
"typescript": "^4.5.5",
|
|
188
202
|
"update-notifier": "^5.1.0",
|
|
189
|
-
"uuid": "^8.3.2"
|
|
190
|
-
"xmldom": "^0.6.0"
|
|
203
|
+
"uuid": "^8.3.2"
|
|
191
204
|
},
|
|
192
205
|
"devDependencies": {
|
|
193
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
206
|
+
"@microsoft/microsoft-graph-types": "^2.13.0",
|
|
194
207
|
"@types/adm-zip": "^0.4.34",
|
|
195
|
-
"@types/inquirer": "^8.
|
|
208
|
+
"@types/inquirer": "^8.2.0",
|
|
196
209
|
"@types/jmespath": "^0.15.0",
|
|
197
210
|
"@types/json-to-ast": "^2.1.2",
|
|
198
211
|
"@types/minimist": "^1.2.2",
|
|
199
|
-
"@types/mocha": "^9.
|
|
200
|
-
"@types/node": "^
|
|
201
|
-
"@types/node-forge": "^0.
|
|
202
|
-
"@types/semver": "^7.3.
|
|
203
|
-
"@types/sinon": "^10.0.
|
|
212
|
+
"@types/mocha": "^9.1.0",
|
|
213
|
+
"@types/node": "^16.11.22",
|
|
214
|
+
"@types/node-forge": "^1.0.0",
|
|
215
|
+
"@types/semver": "^7.3.9",
|
|
216
|
+
"@types/sinon": "^10.0.11",
|
|
204
217
|
"@types/update-notifier": "^5.1.0",
|
|
205
|
-
"@types/uuid": "^8.3.
|
|
206
|
-
"@
|
|
207
|
-
"@typescript-eslint/
|
|
208
|
-
"
|
|
209
|
-
"c8": "^7.10.0",
|
|
218
|
+
"@types/uuid": "^8.3.4",
|
|
219
|
+
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
220
|
+
"@typescript-eslint/parser": "^5.11.0",
|
|
221
|
+
"c8": "^7.11.0",
|
|
210
222
|
"coveralls": "^3.1.1",
|
|
211
|
-
"eslint": "^
|
|
223
|
+
"eslint": "^8.8.0",
|
|
212
224
|
"eslint-config-standard": "^16.0.3",
|
|
213
225
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
214
|
-
"eslint-plugin-import": "^2.
|
|
226
|
+
"eslint-plugin-import": "^2.25.4",
|
|
215
227
|
"eslint-plugin-node": "^11.1.0",
|
|
216
|
-
"eslint-plugin-promise": "^
|
|
217
|
-
"mocha": "^9.
|
|
228
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
229
|
+
"mocha": "^9.2.0",
|
|
218
230
|
"rimraf": "^3.0.2",
|
|
219
|
-
"sinon": "^
|
|
231
|
+
"sinon": "^13.0.1",
|
|
232
|
+
"source-map-support": "^0.5.21"
|
|
220
233
|
}
|
|
221
234
|
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const Command_1 = require("../../Command");
|
|
4
|
-
class AadCommand extends Command_1.default {
|
|
5
|
-
get resource() {
|
|
6
|
-
return 'https://graph.windows.net';
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
exports.default = AadCommand;
|
|
10
|
-
//# sourceMappingURL=AadCommand.js.map
|