@pnp/cli-microsoft365 6.9.0-beta.91abae4 → 6.9.0-beta.cdf4be7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (290) hide show
  1. package/.devcontainer/Dockerfile +12 -19
  2. package/.devcontainer/devcontainer.json +24 -17
  3. package/Dockerfile +3 -1
  4. package/dist/Auth.js +2 -8
  5. package/dist/AuthServer.js +2 -4
  6. package/dist/cli/Cli.js +16 -0
  7. package/dist/m365/aad/commands/app/app-add.js +258 -249
  8. package/dist/m365/aad/commands/app/app-get.js +65 -62
  9. package/dist/m365/aad/commands/app/app-remove.js +22 -23
  10. package/dist/m365/aad/commands/app/app-role-add.js +35 -34
  11. package/dist/m365/aad/commands/app/app-role-list.js +22 -23
  12. package/dist/m365/aad/commands/app/app-role-remove.js +76 -73
  13. package/dist/m365/aad/commands/app/app-set.js +103 -103
  14. package/dist/m365/aad/commands/approleassignment/approleassignment-add.js +16 -14
  15. package/dist/m365/aad/commands/approleassignment/approleassignment-list.js +43 -52
  16. package/dist/m365/aad/commands/approleassignment/approleassignment-remove.js +20 -16
  17. package/dist/m365/aad/commands/o365group/o365group-add.js +40 -37
  18. package/dist/m365/aad/commands/o365group/o365group-conversation-post-list.js +7 -6
  19. package/dist/m365/aad/commands/o365group/o365group-list.js +6 -11
  20. package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-clear.js +7 -8
  21. package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-restore.js +23 -24
  22. package/dist/m365/aad/commands/o365group/o365group-set.js +15 -20
  23. package/dist/m365/aad/commands/o365group/o365group-teamify.js +15 -16
  24. package/dist/m365/aad/commands/o365group/o365group-user-list.js +17 -10
  25. package/dist/m365/aad/commands/o365group/o365group-user-set.js +17 -10
  26. package/dist/m365/aad/commands/policy/policy-list.js +12 -13
  27. package/dist/m365/aad/commands/siteclassification/siteclassification-enable.js +1 -3
  28. package/dist/m365/aad/commands/siteclassification/siteclassification-set.js +19 -20
  29. package/dist/m365/aad/commands/sp/sp-add.js +22 -23
  30. package/dist/m365/aad/commands/sp/sp-get.js +22 -23
  31. package/dist/m365/aad/commands/sp/sp-list.js +78 -0
  32. package/dist/m365/aad/commands.js +1 -0
  33. package/dist/m365/app/commands/app-open.js +4 -14
  34. package/dist/m365/base/AzmgmtItemsListCommand.js +31 -33
  35. package/dist/m365/cli/commands/cli-issue.js +4 -10
  36. package/dist/m365/cli/commands/cli-reconsent.js +2 -8
  37. package/dist/m365/commands/docs.js +2 -8
  38. package/dist/m365/commands/login.js +20 -0
  39. package/dist/m365/file/commands/convert/convert-pdf.js +147 -143
  40. package/dist/m365/file/commands/file-add.js +87 -93
  41. package/dist/m365/file/commands/file-list.js +49 -55
  42. package/dist/m365/flow/commands/flow-list.js +30 -12
  43. package/dist/m365/flow/commands/flow-remove.js +2 -3
  44. package/dist/m365/flow/commands/run/run-resubmit.js +11 -10
  45. package/dist/m365/onedrive/commands/onedrive-list.js +21 -32
  46. package/dist/m365/outlook/commands/message/message-list.js +18 -23
  47. package/dist/m365/outlook/commands/message/message-move.js +15 -20
  48. package/dist/m365/pa/commands/app/app-export.js +3 -4
  49. package/dist/m365/pa/commands/app/app-get.js +11 -9
  50. package/dist/m365/pa/commands/app/app-remove.js +1 -1
  51. package/dist/m365/pa/commands/pcf/pcf-init.js +1 -2
  52. package/dist/m365/pa/commands/solution/solution-init.js +1 -2
  53. package/dist/m365/pa/commands/solution/solution-reference-add.js +1 -2
  54. package/dist/m365/planner/commands/bucket/bucket-add.js +15 -13
  55. package/dist/m365/planner/commands/bucket/bucket-get.js +27 -28
  56. package/dist/m365/planner/commands/bucket/bucket-list.js +15 -13
  57. package/dist/m365/planner/commands/bucket/bucket-remove.js +33 -34
  58. package/dist/m365/planner/commands/bucket/bucket-set.js +33 -34
  59. package/dist/m365/planner/commands/plan/plan-add.js +49 -52
  60. package/dist/m365/planner/commands/plan/plan-set.js +19 -20
  61. package/dist/m365/planner/commands/task/task-add.js +75 -78
  62. package/dist/m365/planner/commands/task/task-checklistitem-add.js +11 -10
  63. package/dist/m365/planner/commands/task/task-checklistitem-remove.js +10 -8
  64. package/dist/m365/planner/commands/task/task-get.js +53 -56
  65. package/dist/m365/planner/commands/task/task-list.js +23 -24
  66. package/dist/m365/planner/commands/task/task-reference-add.js +11 -10
  67. package/dist/m365/planner/commands/task/task-reference-remove.js +13 -14
  68. package/dist/m365/planner/commands/task/task-remove.js +44 -48
  69. package/dist/m365/planner/commands/task/task-set.js +83 -87
  70. package/dist/m365/pp/commands/card/card-get.js +6 -1
  71. package/dist/m365/pp/commands/managementapp/managementapp-add.js +19 -20
  72. package/dist/m365/purview/commands/retentionevent/retentionevent-add.js +3 -8
  73. package/dist/m365/purview/commands/retentionevent/retentionevent-get.js +1 -6
  74. package/dist/m365/purview/commands/retentionevent/retentionevent-list.js +1 -6
  75. package/dist/m365/purview/commands/retentionevent/retentionevent-remove.js +1 -6
  76. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-add.js +1 -6
  77. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-get.js +1 -6
  78. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-list.js +1 -6
  79. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-remove.js +1 -6
  80. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-set.js +1 -6
  81. package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +0 -5
  82. package/dist/m365/purview/commands/retentionlabel/retentionlabel-get.js +0 -5
  83. package/dist/m365/purview/commands/retentionlabel/retentionlabel-list.js +0 -5
  84. package/dist/m365/purview/commands/retentionlabel/retentionlabel-remove.js +19 -22
  85. package/dist/m365/purview/commands/retentionlabel/retentionlabel-set.js +0 -5
  86. package/dist/m365/spfx/commands/project/JsonRule.js +1 -1
  87. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN021003_PKG_engines_node.js +1 -0
  88. package/dist/m365/spo/commands/app/app-teamspackage-download.js +17 -24
  89. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-set.js +154 -0
  90. package/dist/m365/spo/commands/apppage/apppage-set.js +1 -1
  91. package/dist/m365/spo/commands/commandset/commandset-set.js +11 -2
  92. package/dist/m365/spo/commands/contenttype/contenttype-field-set.js +65 -94
  93. package/dist/m365/spo/commands/customaction/customaction-clear.js +4 -12
  94. package/dist/m365/spo/commands/customaction/customaction-remove.js +12 -23
  95. package/dist/m365/spo/commands/customaction/customaction-set.js +21 -29
  96. package/dist/m365/spo/commands/file/file-add.js +133 -133
  97. package/dist/m365/spo/commands/file/file-checkout-undo.js +119 -0
  98. package/dist/m365/spo/commands/file/file-rename.js +11 -9
  99. package/dist/m365/spo/commands/file/file-retentionlabel-ensure.js +2 -2
  100. package/dist/m365/spo/commands/file/file-roleassignment-add.js +41 -61
  101. package/dist/m365/spo/commands/file/file-roleassignment-remove.js +3 -0
  102. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +3 -0
  103. package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +3 -0
  104. package/dist/m365/spo/commands/file/file-sharinginfo-get.js +23 -21
  105. package/dist/m365/spo/commands/file/file-version-clear.js +1 -1
  106. package/dist/m365/spo/commands/file/file-version-remove.js +1 -1
  107. package/dist/m365/spo/commands/file/file-version-restore.js +1 -1
  108. package/dist/m365/spo/commands/folder/folder-roleassignment-add.js +3 -3
  109. package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +1 -1
  110. package/dist/m365/spo/commands/group/group-member-add.js +17 -16
  111. package/dist/m365/spo/commands/group/group-set.js +20 -20
  112. package/dist/m365/spo/commands/homesite/homesite-remove.js +1 -1
  113. package/dist/m365/spo/commands/hubsite/hubsite-get.js +33 -31
  114. package/dist/m365/spo/commands/hubsite/hubsite-list.js +18 -29
  115. package/dist/m365/spo/commands/hubsite/hubsite-unregister.js +3 -0
  116. package/dist/m365/spo/commands/list/list-add.js +1 -1
  117. package/dist/m365/spo/commands/list/list-contenttype-default-set.js +1 -1
  118. package/dist/m365/spo/commands/list/list-roleassignment-add.js +45 -52
  119. package/dist/m365/spo/commands/list/list-roleassignment-remove.js +33 -38
  120. package/dist/m365/spo/commands/list/list-sensitivitylabel-ensure.js +137 -0
  121. package/dist/m365/spo/commands/list/list-view-field-add.js +12 -10
  122. package/dist/m365/spo/commands/list/list-view-field-remove.js +12 -10
  123. package/dist/m365/spo/commands/list/list-view-field-set.js +12 -10
  124. package/dist/m365/spo/commands/list/list-view-remove.js +3 -0
  125. package/dist/m365/spo/commands/listitem/listitem-roleassignment-add.js +41 -61
  126. package/dist/m365/spo/commands/listitem/listitem-roleassignment-remove.js +71 -74
  127. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +36 -34
  128. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +32 -30
  129. package/dist/m365/spo/commands/navigation/navigation-node-add.js +31 -1
  130. package/dist/m365/spo/commands/navigation/navigation-node-remove.js +24 -22
  131. package/dist/m365/spo/commands/navigation/navigation-node-set.js +31 -2
  132. package/dist/m365/spo/commands/orgassetslibrary/orgassetslibrary-remove.js +29 -27
  133. package/dist/m365/spo/commands/orgnewssite/orgnewssite-remove.js +26 -24
  134. package/dist/m365/spo/commands/page/page-clientsidewebpart-add.js +34 -40
  135. package/dist/m365/spo/commands/sitedesign/sitedesign-task-remove.js +23 -21
  136. package/dist/m365/spo/commands/sitescript/sitescript-remove.js +24 -22
  137. package/dist/m365/spo/commands/spo-search.js +7 -15
  138. package/dist/m365/spo/commands/storageentity/storageentity-remove.js +29 -27
  139. package/dist/m365/{teams/Message.js → spo/commands/tenant/Solution.js} +1 -1
  140. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-set.js +156 -0
  141. package/dist/m365/spo/commands/tenant/tenant-commandset-add.js +215 -0
  142. package/dist/m365/spo/commands/tenant/tenant-commandset-get.js +114 -0
  143. package/dist/m365/spo/commands/tenant/tenant-commandset-list.js +50 -0
  144. package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +1 -1
  145. package/dist/m365/spo/commands.js +7 -0
  146. package/dist/m365/teams/commands/app/app-install.js +23 -21
  147. package/dist/m365/teams/commands/app/app-remove.js +3 -0
  148. package/dist/m365/teams/commands/app/app-uninstall.js +3 -0
  149. package/dist/m365/teams/commands/app/app-update.js +15 -16
  150. package/dist/m365/teams/commands/channel/channel-add.js +40 -39
  151. package/dist/m365/teams/commands/channel/channel-get.js +23 -25
  152. package/dist/m365/teams/commands/channel/channel-list.js +6 -7
  153. package/dist/m365/teams/commands/channel/channel-member-add.js +61 -60
  154. package/dist/m365/teams/commands/channel/channel-member-list.js +20 -22
  155. package/dist/m365/teams/commands/channel/channel-member-remove.js +43 -48
  156. package/dist/m365/teams/commands/channel/channel-member-set.js +36 -39
  157. package/dist/m365/teams/commands/channel/channel-remove.js +4 -1
  158. package/dist/m365/teams/commands/funsettings/funsettings-list.js +3 -0
  159. package/dist/m365/teams/commands/funsettings/funsettings-set.js +3 -0
  160. package/dist/m365/teams/commands/tab/tab-get.js +34 -37
  161. package/dist/m365/teams/commands/team/team-archive.js +6 -7
  162. package/dist/m365/teams/commands/team/team-get.js +6 -7
  163. package/dist/m365/teams/commands/team/team-list.js +9 -11
  164. package/dist/m365/teams/commands/team/team-remove.js +6 -7
  165. package/dist/m365/teams/commands/team/team-unarchive.js +6 -7
  166. package/dist/m365/teams/commands/user/user-app-list.js +13 -11
  167. package/dist/m365/teams/commands/user/user-list.js +7 -4
  168. package/dist/m365/tenant/commands/security/security-alerts-list.js +25 -26
  169. package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-health-list.js +13 -14
  170. package/dist/m365/todo/commands/list/list-remove.js +39 -36
  171. package/dist/m365/todo/commands/list/list-set.js +16 -14
  172. package/dist/m365/todo/commands/task/task-add.js +14 -14
  173. package/dist/m365/util/commands/accesstoken/accesstoken-get.js +10 -7
  174. package/dist/utils/browserUtil.js +23 -0
  175. package/dist/utils/md.js +1 -3
  176. package/dist/utils/spo.js +60 -0
  177. package/docs/docs/cmd/aad/app/app-add.mdx +113 -0
  178. package/docs/docs/cmd/aad/app/app-get.mdx +217 -0
  179. package/docs/docs/cmd/aad/app/app-list.mdx +21 -0
  180. package/docs/docs/cmd/aad/app/app-role-add.mdx +4 -0
  181. package/docs/docs/cmd/aad/app/app-role-list.mdx +63 -0
  182. package/docs/docs/cmd/aad/app/app-role-remove.mdx +4 -0
  183. package/docs/docs/cmd/aad/app/app-set.mdx +4 -0
  184. package/docs/docs/cmd/aad/approleassignment/approleassignment-add.mdx +61 -0
  185. package/docs/docs/cmd/aad/approleassignment/approleassignment-list.mdx +59 -0
  186. package/docs/docs/cmd/aad/approleassignment/approleassignment-remove.mdx +4 -0
  187. package/docs/docs/cmd/aad/group/group-get.mdx +24 -0
  188. package/docs/docs/cmd/aad/group/group-list.mdx +98 -0
  189. package/docs/docs/cmd/aad/groupsetting/groupsetting-add.mdx +114 -0
  190. package/docs/docs/cmd/aad/groupsetting/groupsetting-get.mdx +115 -0
  191. package/docs/docs/cmd/aad/groupsetting/groupsetting-list.mdx +115 -0
  192. package/docs/docs/cmd/aad/groupsetting/groupsetting-remove.mdx +4 -0
  193. package/docs/docs/cmd/aad/groupsetting/groupsetting-set.mdx +4 -0
  194. package/docs/docs/cmd/aad/groupsettingtemplate/groupsettingtemplate-get.mdx +63 -0
  195. package/docs/docs/cmd/aad/groupsettingtemplate/groupsettingtemplate-list.mdx +63 -0
  196. package/docs/docs/cmd/aad/o365group/o365group-add.mdx +122 -0
  197. package/docs/docs/cmd/aad/o365group/o365group-conversation-list.mdx +68 -0
  198. package/docs/docs/cmd/aad/o365group/o365group-conversation-post-list.mdx +77 -0
  199. package/docs/docs/cmd/aad/o365group/o365group-get.mdx +122 -0
  200. package/docs/docs/cmd/aad/o365group/o365group-list.mdx +99 -0
  201. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-clear.mdx +4 -0
  202. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-list.mdx +96 -0
  203. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-remove.mdx +4 -0
  204. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-restore.mdx +4 -0
  205. package/docs/docs/cmd/aad/o365group/o365group-remove.mdx +4 -0
  206. package/docs/docs/cmd/aad/o365group/o365group-renew.mdx +4 -0
  207. package/docs/docs/cmd/aad/o365group/o365group-report-activitycounts.mdx +48 -0
  208. package/docs/docs/cmd/aad/o365group/o365group-report-activitydetail.mdx +60 -0
  209. package/docs/docs/cmd/aad/o365group/o365group-report-activityfilecounts.mdx +46 -0
  210. package/docs/docs/cmd/aad/o365group/o365group-report-activitygroupcounts.mdx +46 -0
  211. package/docs/docs/cmd/aad/o365group/o365group-report-activitystorage.mdx +46 -0
  212. package/docs/docs/cmd/aad/o365group/o365group-set.mdx +4 -0
  213. package/docs/docs/cmd/aad/o365group/o365group-teamify.mdx +4 -0
  214. package/docs/docs/cmd/aad/o365group/o365group-user-add.mdx +4 -0
  215. package/docs/docs/cmd/aad/o365group/o365group-user-list.mdx +56 -0
  216. package/docs/docs/cmd/aad/o365group/o365group-user-remove.mdx +4 -0
  217. package/docs/docs/cmd/aad/o365group/o365group-user-set.mdx +8 -4
  218. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-add.mdx +4 -0
  219. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-list.mdx +59 -0
  220. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-remove.mdx +4 -0
  221. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-set.mdx +4 -0
  222. package/docs/docs/cmd/aad/policy/policy-list.mdx +77 -0
  223. package/docs/docs/cmd/aad/siteclassification/siteclassification-disable.mdx +4 -0
  224. package/docs/docs/cmd/aad/siteclassification/siteclassification-enable.mdx +4 -0
  225. package/docs/docs/cmd/aad/siteclassification/siteclassification-get.mdx +57 -0
  226. package/docs/docs/cmd/aad/siteclassification/siteclassification-set.mdx +4 -0
  227. package/docs/docs/cmd/aad/sp/sp-add.mdx +136 -0
  228. package/docs/docs/cmd/aad/sp/sp-get.mdx +166 -0
  229. package/docs/docs/cmd/aad/sp/sp-list.mdx +162 -0
  230. package/docs/docs/cmd/aad/user/user-get.mdx +75 -0
  231. package/docs/docs/cmd/aad/user/user-guest-add.mdx +23 -0
  232. package/docs/docs/cmd/aad/user/user-hibp.mdx +82 -0
  233. package/docs/docs/cmd/aad/user/user-license-add.mdx +2 -2
  234. package/docs/docs/cmd/aad/user/user-license-remove.mdx +2 -2
  235. package/docs/docs/cmd/aad/user/user-list.mdx +52 -0
  236. package/docs/docs/cmd/aad/user/user-password-validate.mdx +67 -0
  237. package/docs/docs/cmd/aad/user/user-signin-list.mdx +131 -0
  238. package/docs/docs/cmd/flow/flow-list.mdx +15 -0
  239. package/docs/docs/cmd/login.mdx +39 -0
  240. package/docs/docs/cmd/purview/retentionevent/retentionevent-add.mdx +0 -6
  241. package/docs/docs/cmd/purview/retentionevent/retentionevent-get.mdx +0 -6
  242. package/docs/docs/cmd/purview/retentionevent/retentionevent-list.mdx +0 -7
  243. package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.mdx +0 -6
  244. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.mdx +0 -6
  245. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.mdx +0 -6
  246. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.mdx +0 -6
  247. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-remove.mdx +0 -6
  248. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-set.mdx +0 -6
  249. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.mdx +0 -6
  250. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.mdx +0 -6
  251. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.mdx +0 -6
  252. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.mdx +0 -6
  253. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.mdx +0 -6
  254. package/docs/docs/cmd/setup.mdx +2 -0
  255. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx +72 -0
  256. package/docs/docs/cmd/spo/commandset/commandset-set.mdx +12 -3
  257. package/docs/docs/cmd/spo/file/file-checkout-undo.mdx +55 -0
  258. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +1 -1
  259. package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.mdx +1 -1
  260. package/docs/docs/cmd/spo/list/list-sensitivitylabel-ensure.mdx +73 -0
  261. package/docs/docs/cmd/spo/navigation/navigation-node-add.mdx +7 -4
  262. package/docs/docs/cmd/spo/navigation/navigation-node-set.mdx +9 -0
  263. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-set.mdx +81 -0
  264. package/docs/docs/cmd/spo/tenant/tenant-commandset-add.mdx +183 -0
  265. package/docs/docs/cmd/spo/tenant/tenant-commandset-get.mdx +155 -0
  266. package/docs/docs/cmd/spo/tenant/tenant-commandset-list.mdx +114 -0
  267. package/docs/docs/cmd/spo/tenant/tenant-commandset-set.mdx +1 -1
  268. package/docs/docs/cmd/spo/tenant/tenant-settings-set.mdx +6 -0
  269. package/docs/docs/cmd/status.mdx +6 -3
  270. package/docs/docs/cmd/util/accesstoken/accesstoken-get.mdx +12 -2
  271. package/npm-shrinkwrap.json +299 -272
  272. package/package.json +17 -17
  273. package/dist/m365/aad/commands/approleassignment/AppRoleAssignment.js +0 -3
  274. package/dist/m365/aad/commands/approleassignment/ServicePrincipal.js +0 -3
  275. package/dist/m365/aad/commands/groupsetting/GroupSetting.js +0 -3
  276. package/dist/m365/aad/commands/groupsettingtemplate/GroupSettingTemplate.js +0 -3
  277. package/dist/m365/aad/commands/siteclassification/DirectorySetting.js +0 -10
  278. package/dist/m365/aad/commands/siteclassification/DirectorySettingTemplatesRsp.js +0 -3
  279. package/dist/m365/aad/commands/siteclassification/DirectorySettingValue.js +0 -3
  280. package/dist/m365/outlook/Message.js +0 -3
  281. package/dist/m365/spo/commands/site/SitePermission.js +0 -3
  282. package/dist/m365/teams/Channel.js +0 -3
  283. package/dist/m365/teams/ConversationMember.js +0 -3
  284. package/dist/m365/teams/Reply.js +0 -3
  285. package/dist/m365/teams/Tab.js +0 -3
  286. package/dist/m365/teams/Team.js +0 -3
  287. package/dist/m365/teams/TeamsApp.js +0 -3
  288. package/dist/m365/teams/TeamsAppInstallation.js +0 -3
  289. package/dist/m365/teams/TeamsTabConfiguration.js +0 -3
  290. package/dist/m365/teams/commands/Meeting.js +0 -3
@@ -37,14 +37,13 @@ class TeamsTeamGetCommand extends GraphCommand_1.default {
37
37
  __classPrivateFieldGet(this, _TeamsTeamGetCommand_instances, "m", _TeamsTeamGetCommand_initOptionSets).call(this);
38
38
  }
39
39
  getTeamId(args) {
40
- if (args.options.id) {
41
- return Promise.resolve(args.options.id);
42
- }
43
- return aadGroup_1.aadGroup
44
- .getGroupByDisplayName(args.options.name)
45
- .then(group => {
40
+ return __awaiter(this, void 0, void 0, function* () {
41
+ if (args.options.id) {
42
+ return args.options.id;
43
+ }
44
+ const group = yield aadGroup_1.aadGroup.getGroupByDisplayName(args.options.name);
46
45
  if (group.resourceProvisioningOptions.indexOf('Team') === -1) {
47
- return Promise.reject(`The specified team does not exist in the Microsoft Teams`);
46
+ throw 'The specified team does not exist in the Microsoft Teams';
48
47
  }
49
48
  return group.id;
50
49
  });
@@ -59,7 +59,7 @@ class TeamsTeamListCommand extends GraphCommand_1.default {
59
59
  });
60
60
  }
61
61
  getTeamFromGroup(group) {
62
- return new Promise((resolve, reject) => {
62
+ return __awaiter(this, void 0, void 0, function* () {
63
63
  const requestOptions = {
64
64
  url: `${this.resource}/v1.0/teams/${group.id}`,
65
65
  headers: {
@@ -67,24 +67,22 @@ class TeamsTeamListCommand extends GraphCommand_1.default {
67
67
  },
68
68
  responseType: 'json'
69
69
  };
70
- request_1.default
71
- .get(requestOptions)
72
- .then((res) => {
73
- resolve(res);
74
- }, (err) => {
75
- // If the user is not member of the team he/she cannot access it
70
+ try {
71
+ return yield request_1.default.get(requestOptions);
72
+ }
73
+ catch (err) {
76
74
  if (err.statusCode === 403) {
77
- resolve({
75
+ return {
78
76
  id: group.id,
79
77
  displayName: group.displayName,
80
78
  description: group.description,
81
79
  isArchived: undefined
82
- });
80
+ };
83
81
  }
84
82
  else {
85
- reject(err);
83
+ throw err;
86
84
  }
87
- });
85
+ }
88
86
  });
89
87
  }
90
88
  }
@@ -38,14 +38,13 @@ class TeamsTeamRemoveCommand extends GraphCommand_1.default {
38
38
  __classPrivateFieldGet(this, _TeamsTeamRemoveCommand_instances, "m", _TeamsTeamRemoveCommand_initOptionSets).call(this);
39
39
  }
40
40
  getTeamId(args) {
41
- if (args.options.id) {
42
- return Promise.resolve(args.options.id);
43
- }
44
- return aadGroup_1.aadGroup
45
- .getGroupByDisplayName(args.options.name)
46
- .then(group => {
41
+ return __awaiter(this, void 0, void 0, function* () {
42
+ if (args.options.id) {
43
+ return args.options.id;
44
+ }
45
+ const group = yield aadGroup_1.aadGroup.getGroupByDisplayName(args.options.name);
47
46
  if (group.resourceProvisioningOptions.indexOf('Team') === -1) {
48
- return Promise.reject(`The specified team does not exist in the Microsoft Teams`);
47
+ throw `The specified team does not exist in the Microsoft Teams`;
49
48
  }
50
49
  return group.id;
51
50
  });
@@ -36,14 +36,13 @@ class TeamsTeamUnarchiveCommand extends GraphCommand_1.default {
36
36
  __classPrivateFieldGet(this, _TeamsTeamUnarchiveCommand_instances, "m", _TeamsTeamUnarchiveCommand_initOptionSets).call(this);
37
37
  }
38
38
  getTeamId(args) {
39
- if (args.options.id) {
40
- return Promise.resolve(args.options.id);
41
- }
42
- return aadGroup_1.aadGroup
43
- .getGroupByDisplayName(args.options.name)
44
- .then(group => {
39
+ return __awaiter(this, void 0, void 0, function* () {
40
+ if (args.options.id) {
41
+ return args.options.id;
42
+ }
43
+ const group = yield aadGroup_1.aadGroup.getGroupByDisplayName(args.options.name);
45
44
  if (group.resourceProvisioningOptions.indexOf('Team') === -1) {
46
- return Promise.reject(`The specified team does not exist in the Microsoft Teams`);
45
+ throw 'The specified team does not exist in the Microsoft Teams';
47
46
  }
48
47
  return group.id;
49
48
  });
@@ -68,17 +68,19 @@ class TeamsUserAppListCommand extends GraphCommand_1.default {
68
68
  });
69
69
  }
70
70
  getUserId(args) {
71
- if (args.options.userId) {
72
- return Promise.resolve({ value: args.options.userId });
73
- }
74
- const requestOptions = {
75
- url: `${this.resource}/v1.0/users/${formatting_1.formatting.encodeQueryParameter(args.options.userName)}/id`,
76
- headers: {
77
- accept: 'application/json;odata.metadata=none'
78
- },
79
- responseType: 'json'
80
- };
81
- return request_1.default.get(requestOptions);
71
+ return __awaiter(this, void 0, void 0, function* () {
72
+ if (args.options.userId) {
73
+ return { value: args.options.userId };
74
+ }
75
+ const requestOptions = {
76
+ url: `${this.resource}/v1.0/users/${formatting_1.formatting.encodeQueryParameter(args.options.userName)}/id`,
77
+ headers: {
78
+ accept: 'application/json;odata.metadata=none'
79
+ },
80
+ responseType: 'json'
81
+ };
82
+ return request_1.default.get(requestOptions);
83
+ });
82
84
  }
83
85
  }
84
86
  _TeamsUserAppListCommand_instances = new WeakSet(), _TeamsUserAppListCommand_initTelemetry = function _TeamsUserAppListCommand_initTelemetry() {
@@ -54,8 +54,9 @@ class TeamsUserListCommand extends GraphCommand_1.default {
54
54
  });
55
55
  }
56
56
  getOwners(logger, groupId) {
57
- const endpoint = `${this.resource}/v1.0/groups/${groupId}/owners?$select=id,displayName,userPrincipalName,userType`;
58
- return odata_1.odata.getAllItems(endpoint).then((items) => {
57
+ return __awaiter(this, void 0, void 0, function* () {
58
+ const endpoint = `${this.resource}/v1.0/groups/${groupId}/owners?$select=id,displayName,userPrincipalName,userType`;
59
+ const items = yield odata_1.odata.getAllItems(endpoint);
59
60
  this.items = this.items.concat(items);
60
61
  // Currently there is a bug in the Microsoft Graph that returns Owners as
61
62
  // userType 'member'. We therefore update all returned user as owner
@@ -65,8 +66,10 @@ class TeamsUserListCommand extends GraphCommand_1.default {
65
66
  });
66
67
  }
67
68
  getMembersAndGuests(logger, groupId) {
68
- const endpoint = `${this.resource}/v1.0/groups/${groupId}/members?$select=id,displayName,userPrincipalName,userType`;
69
- return odata_1.odata.getAllItems(endpoint);
69
+ return __awaiter(this, void 0, void 0, function* () {
70
+ const endpoint = `${this.resource}/v1.0/groups/${groupId}/members?$select=id,displayName,userPrincipalName,userType`;
71
+ return odata_1.odata.getAllItems(endpoint);
72
+ });
70
73
  }
71
74
  }
72
75
  _TeamsUserListCommand_instances = new WeakSet(), _TeamsUserListCommand_initTelemetry = function _TeamsUserListCommand_initTelemetry() {
@@ -47,36 +47,35 @@ class TenantSecurityAlertsListCommand extends GraphCommand_1.default {
47
47
  });
48
48
  }
49
49
  listAlert(options) {
50
- let queryFilter = '';
51
- if (options.vendor) {
52
- let vendorName = options.vendor;
53
- switch (options.vendor.toLowerCase()) {
54
- case 'azure security center':
55
- vendorName = 'ASC';
56
- break;
57
- case 'microsoft cloud app security':
58
- vendorName = 'MCAS';
59
- break;
60
- case 'azure active directory identity protection':
61
- vendorName = 'IPC';
50
+ return __awaiter(this, void 0, void 0, function* () {
51
+ let queryFilter = '';
52
+ if (options.vendor) {
53
+ let vendorName = options.vendor;
54
+ switch (options.vendor.toLowerCase()) {
55
+ case 'azure security center':
56
+ vendorName = 'ASC';
57
+ break;
58
+ case 'microsoft cloud app security':
59
+ vendorName = 'MCAS';
60
+ break;
61
+ case 'azure active directory identity protection':
62
+ vendorName = 'IPC';
63
+ }
64
+ queryFilter = `?$filter=vendorInformation/provider eq '${formatting_1.formatting.encodeQueryParameter(vendorName)}'`;
62
65
  }
63
- queryFilter = `?$filter=vendorInformation/provider eq '${formatting_1.formatting.encodeQueryParameter(vendorName)}'`;
64
- }
65
- const requestOptions = {
66
- url: `${this.resource}/v1.0/security/alerts${queryFilter}`,
67
- headers: {
68
- accept: 'application/json;odata.metadata=none'
69
- },
70
- responseType: 'json'
71
- };
72
- return request_1.default
73
- .get(requestOptions)
74
- .then(response => {
66
+ const requestOptions = {
67
+ url: `${this.resource}/v1.0/security/alerts${queryFilter}`,
68
+ headers: {
69
+ accept: 'application/json;odata.metadata=none'
70
+ },
71
+ responseType: 'json'
72
+ };
73
+ const response = yield request_1.default.get(requestOptions);
75
74
  const alertList = response.value;
76
75
  if (!alertList) {
77
- return Promise.reject(`Error fetching security alerts`);
76
+ throw `Error fetching security alerts`;
78
77
  }
79
- return Promise.resolve(alertList);
78
+ return alertList;
80
79
  });
81
80
  }
82
81
  }
@@ -37,8 +37,8 @@ class TenantServiceAnnouncementHealthListCommand extends GraphCommand_1.default
37
37
  commandAction(logger, args) {
38
38
  return __awaiter(this, void 0, void 0, function* () {
39
39
  try {
40
- const res = yield this.listServiceHealth(args.options);
41
- logger.log(res);
40
+ const response = yield this.listServiceHealth(args.options);
41
+ logger.log(response);
42
42
  }
43
43
  catch (err) {
44
44
  this.handleRejectedODataJsonPromise(err);
@@ -46,21 +46,20 @@ class TenantServiceAnnouncementHealthListCommand extends GraphCommand_1.default
46
46
  });
47
47
  }
48
48
  listServiceHealth(options) {
49
- const requestOptions = {
50
- url: `${this.resource}/v1.0/admin/serviceAnnouncement/healthOverviews${options.issues && (!options.output || options.output.toLocaleLowerCase() === 'json') ? '?$expand=issues' : ''}`,
51
- headers: {
52
- accept: 'application/json;odata.metadata=none'
53
- },
54
- responseType: 'json'
55
- };
56
- return request_1.default
57
- .get(requestOptions)
58
- .then(response => {
49
+ return __awaiter(this, void 0, void 0, function* () {
50
+ const requestOptions = {
51
+ url: `${this.resource}/v1.0/admin/serviceAnnouncement/healthOverviews${options.issues && (!options.output || options.output.toLocaleLowerCase() === 'json') ? '?$expand=issues' : ''}`,
52
+ headers: {
53
+ accept: 'application/json;odata.metadata=none'
54
+ },
55
+ responseType: 'json'
56
+ };
57
+ const response = yield request_1.default.get(requestOptions);
59
58
  const serviceHealthList = response.value;
60
59
  if (!serviceHealthList) {
61
- return Promise.reject(`Error fetching service health`);
60
+ throw `Error fetching service health`;
62
61
  }
63
- return Promise.resolve(serviceHealthList);
62
+ return serviceHealthList;
64
63
  });
65
64
  }
66
65
  }
@@ -35,42 +35,8 @@ class TodoListRemoveCommand extends GraphCommand_1.default {
35
35
  }
36
36
  commandAction(logger, args) {
37
37
  return __awaiter(this, void 0, void 0, function* () {
38
- const getListId = () => __awaiter(this, void 0, void 0, function* () {
39
- if (args.options.name) {
40
- // Search list by its name
41
- const requestOptions = {
42
- url: `${this.resource}/v1.0/me/todo/lists?$filter=displayName eq '${escape(args.options.name)}'`,
43
- headers: {
44
- accept: "application/json;odata.metadata=none"
45
- },
46
- responseType: 'json'
47
- };
48
- const response = yield request_1.default.get(requestOptions);
49
- return response.value && response.value.length === 1 ? response.value[0].id : null;
50
- }
51
- return args.options.id;
52
- });
53
- const removeList = () => __awaiter(this, void 0, void 0, function* () {
54
- try {
55
- const listId = yield getListId();
56
- if (!listId) {
57
- return Promise.reject(`The list ${args.options.name} cannot be found`);
58
- }
59
- const requestOptions = {
60
- url: `${this.resource}/v1.0/me/todo/lists/${listId}`,
61
- headers: {
62
- accept: "application/json;odata.metadata=none"
63
- },
64
- responseType: 'json'
65
- };
66
- yield request_1.default.delete(requestOptions);
67
- }
68
- catch (err) {
69
- this.handleRejectedODataJsonPromise(err);
70
- }
71
- });
72
38
  if (args.options.confirm) {
73
- yield removeList();
39
+ yield this.removeList(args);
74
40
  }
75
41
  else {
76
42
  const result = yield Cli_1.Cli.prompt({
@@ -80,11 +46,48 @@ class TodoListRemoveCommand extends GraphCommand_1.default {
80
46
  message: `Are you sure you want to remove the task list ${args.options.id || args.options.name}?`
81
47
  });
82
48
  if (result.continue) {
83
- yield removeList();
49
+ yield this.removeList(args);
84
50
  }
85
51
  }
86
52
  });
87
53
  }
54
+ getListId(args) {
55
+ return __awaiter(this, void 0, void 0, function* () {
56
+ if (args.options.id) {
57
+ return args.options.id;
58
+ }
59
+ const requestOptions = {
60
+ url: `${this.resource}/v1.0/me/todo/lists?$filter=displayName eq '${escape(args.options.name)}'`,
61
+ headers: {
62
+ accept: "application/json;odata.metadata=none"
63
+ },
64
+ responseType: 'json'
65
+ };
66
+ const response = yield request_1.default.get(requestOptions);
67
+ return response.value && response.value.length === 1 ? response.value[0].id : null;
68
+ });
69
+ }
70
+ removeList(args) {
71
+ return __awaiter(this, void 0, void 0, function* () {
72
+ try {
73
+ const listId = yield this.getListId(args);
74
+ if (!listId) {
75
+ throw `The list ${args.options.name} cannot be found`;
76
+ }
77
+ const requestOptions = {
78
+ url: `${this.resource}/v1.0/me/todo/lists/${listId}`,
79
+ headers: {
80
+ accept: "application/json;odata.metadata=none"
81
+ },
82
+ responseType: 'json'
83
+ };
84
+ yield request_1.default.delete(requestOptions);
85
+ }
86
+ catch (err) {
87
+ this.handleRejectedODataJsonPromise(err);
88
+ }
89
+ });
90
+ }
88
91
  }
89
92
  _TodoListRemoveCommand_instances = new WeakSet(), _TodoListRemoveCommand_initTelemetry = function _TodoListRemoveCommand_initTelemetry() {
90
93
  this.telemetry.push((args) => {
@@ -60,20 +60,22 @@ class TodoListSetCommand extends GraphCommand_1.default {
60
60
  });
61
61
  }
62
62
  getListId(args) {
63
- const endpoint = `${this.resource}/v1.0`;
64
- if (args.options.id) {
65
- return Promise.resolve(args.options.id);
66
- }
67
- const requestOptions = {
68
- url: `${endpoint}/me/todo/lists?$filter=displayName eq '${escape(args.options.name)}'`,
69
- headers: {
70
- accept: "application/json;odata.metadata=none"
71
- },
72
- responseType: 'json'
73
- };
74
- return request_1.default
75
- .get(requestOptions)
76
- .then((response) => response.value && response.value.length === 1 ? response.value[0].id : null);
63
+ return __awaiter(this, void 0, void 0, function* () {
64
+ const endpoint = `${this.resource}/v1.0`;
65
+ if (args.options.id) {
66
+ return args.options.id;
67
+ }
68
+ const requestOptions = {
69
+ url: `${endpoint}/me/todo/lists?$filter=displayName eq '${escape(args.options.name)}'`,
70
+ headers: {
71
+ accept: "application/json;odata.metadata=none"
72
+ },
73
+ responseType: 'json'
74
+ };
75
+ return request_1.default
76
+ .get(requestOptions)
77
+ .then((response) => response.value && response.value.length === 1 ? response.value[0].id : null);
78
+ });
77
79
  }
78
80
  }
79
81
  _TodoListSetCommand_instances = new WeakSet(), _TodoListSetCommand_initTelemetry = function _TodoListSetCommand_initTelemetry() {
@@ -81,23 +81,23 @@ class TodoTaskAddCommand extends GraphCommand_1.default {
81
81
  };
82
82
  }
83
83
  getTodoListId(args) {
84
- if (args.options.listId) {
85
- return Promise.resolve(args.options.listId);
86
- }
87
- const requestOptions = {
88
- url: `${this.resource}/v1.0/me/todo/lists?$filter=displayName eq '${escape(args.options.listName)}'`,
89
- headers: {
90
- accept: 'application/json;odata.metadata=none'
91
- },
92
- responseType: 'json'
93
- };
94
- return request_1.default.get(requestOptions)
95
- .then(response => {
84
+ return __awaiter(this, void 0, void 0, function* () {
85
+ if (args.options.listId) {
86
+ return args.options.listId;
87
+ }
88
+ const requestOptions = {
89
+ url: `${this.resource}/v1.0/me/todo/lists?$filter=displayName eq '${escape(args.options.listName)}'`,
90
+ headers: {
91
+ accept: 'application/json;odata.metadata=none'
92
+ },
93
+ responseType: 'json'
94
+ };
95
+ const response = yield request_1.default.get(requestOptions);
96
96
  const taskList = response.value[0];
97
97
  if (!taskList) {
98
- return Promise.reject(`The specified task list does not exist`);
98
+ throw `The specified task list does not exist`;
99
99
  }
100
- return Promise.resolve(taskList.id);
100
+ return taskList.id;
101
101
  });
102
102
  }
103
103
  }
@@ -34,15 +34,18 @@ class UtilAccessTokenGetCommand extends Command_1.default {
34
34
  commandAction(logger, args) {
35
35
  return __awaiter(this, void 0, void 0, function* () {
36
36
  let resource = args.options.resource;
37
- if (resource.toLowerCase() === 'sharepoint') {
38
- if (Auth_1.default.service.spoUrl) {
39
- resource = Auth_1.default.service.spoUrl;
37
+ try {
38
+ if (resource.toLowerCase() === 'sharepoint') {
39
+ if (Auth_1.default.service.spoUrl) {
40
+ resource = Auth_1.default.service.spoUrl;
41
+ }
42
+ else {
43
+ throw `SharePoint URL undefined. Use the 'm365 spo set --url https://contoso.sharepoint.com' command to set the URL`;
44
+ }
40
45
  }
41
- else {
42
- throw `SharePoint URL undefined. Use the 'm365 spo set --url https://contoso.sharepoint.com' command to set the URL`;
46
+ else if (resource.toLowerCase() === 'graph') {
47
+ resource = Auth_1.Auth.getEndpointForResource('https://graph.microsoft.com', Auth_1.default.service.cloudType);
43
48
  }
44
- }
45
- try {
46
49
  const accessToken = yield Auth_1.default.ensureAccessToken(resource, logger, this.debug, args.options.new);
47
50
  logger.log(accessToken);
48
51
  }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.browserUtil = void 0;
13
+ exports.browserUtil = {
14
+ /* c8 ignore next 5 */
15
+ open(url) {
16
+ return __awaiter(this, void 0, void 0, function* () {
17
+ const _open = require('open');
18
+ const runningOnWindows = process.platform === 'win32';
19
+ yield _open(url, { wait: runningOnWindows });
20
+ });
21
+ }
22
+ };
23
+ //# sourceMappingURL=browserUtil.js.map
package/dist/utils/md.js CHANGED
@@ -25,9 +25,7 @@ function includeContent(md, rootFolder) {
25
25
  { tag: "<CLISettings />", location: "docs/_clisettings.mdx" }
26
26
  ];
27
27
  mdxImports.forEach(mdxImport => {
28
- md = md.replace(mdxImport.tag, () => {
29
- return fs.readFileSync(path.join(rootFolder, mdxImport.location), 'utf8');
30
- }).replace(/(```\r\n)\r\n(```md defintion-list\r\n)/g, "$1$2");
28
+ md = md.replace(mdxImport.tag, () => fs.readFileSync(path.join(rootFolder, mdxImport.location), 'utf8')).replace(/(```\r\n)\r\n(```md definition-list\r\n)/g, "$1$2");
31
29
  });
32
30
  return md;
33
31
  }
package/dist/utils/spo.js CHANGED
@@ -568,6 +568,66 @@ exports.spo = {
568
568
  const res = yield request_1.default.get(requestOptions);
569
569
  return res.AadObjectId.NameId;
570
570
  });
571
+ },
572
+ /**
573
+ * Retrieves the menu state for the quick launch.
574
+ * @param webUrl Web url
575
+ */
576
+ getQuickLaunchMenuState(webUrl) {
577
+ return __awaiter(this, void 0, void 0, function* () {
578
+ return this.getMenuState(webUrl);
579
+ });
580
+ },
581
+ /**
582
+ * Retrieves the menu state for the top navigation.
583
+ * @param webUrl Web url
584
+ */
585
+ getTopNavigationMenuState(webUrl) {
586
+ return __awaiter(this, void 0, void 0, function* () {
587
+ return this.getMenuState(webUrl, '1002');
588
+ });
589
+ },
590
+ /**
591
+ * Retrieves the menu state.
592
+ * @param webUrl Web url
593
+ * @param menuNodeKey Menu node key
594
+ */
595
+ getMenuState(webUrl, menuNodeKey) {
596
+ return __awaiter(this, void 0, void 0, function* () {
597
+ const requestBody = {
598
+ customProperties: null,
599
+ depth: 10,
600
+ mapProviderName: null,
601
+ menuNodeKey: menuNodeKey || null
602
+ };
603
+ const requestOptions = {
604
+ url: `${webUrl}/_api/navigation/MenuState`,
605
+ headers: {
606
+ accept: 'application/json;odata=nometadata'
607
+ },
608
+ data: requestBody,
609
+ responseType: 'json'
610
+ };
611
+ return request_1.default.post(requestOptions);
612
+ });
613
+ },
614
+ /**
615
+ * Saves the menu state.
616
+ * @param webUrl Web url
617
+ * @param menuState Updated menu state
618
+ */
619
+ saveMenuState(webUrl, menuState) {
620
+ return __awaiter(this, void 0, void 0, function* () {
621
+ const requestOptions = {
622
+ url: `${webUrl}/_api/navigation/SaveMenuState`,
623
+ headers: {
624
+ accept: 'application/json;odata=nometadata'
625
+ },
626
+ data: { menuState: menuState },
627
+ responseType: 'json'
628
+ };
629
+ return request_1.default.post(requestOptions);
630
+ });
571
631
  }
572
632
  };
573
633
  //# sourceMappingURL=spo.js.map