@zxncij2390/monorepo3 3.18.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (921) hide show
  1. package/.eslintignore +16 -0
  2. package/.eslintrc.cjs +150 -0
  3. package/.github/ISSUE_TEMPLATE/bug-report.yml +178 -0
  4. package/.github/ISSUE_TEMPLATE/enhancement.yml +99 -0
  5. package/.github/ISSUE_TEMPLATE/question.yml +72 -0
  6. package/.github/ISSUE_TEMPLATE.md +39 -0
  7. package/.github/PULL_REQUEST_TEMPLATE.md +24 -0
  8. package/.github/workflows/lock.yml +18 -0
  9. package/.github/workflows/publish-buildsystem.yml +34 -0
  10. package/.github/workflows/publish-docs.yml +21 -0
  11. package/.github/workflows/publish.yml +40 -0
  12. package/.github/workflows/pull_request.yaml +28 -0
  13. package/.github/workflows/push.yaml +32 -0
  14. package/.github/workflows/v3-nightly.yml +40 -0
  15. package/.mocharc.cjs +68 -0
  16. package/.vscode/launch.json +103 -0
  17. package/.vscode/settings.json +17 -0
  18. package/.vscode/tasks.json +124 -0
  19. package/AUTHORS +13 -0
  20. package/CHANGELOG.md +33 -0
  21. package/CODE_OF_CONDUCT.md +6 -0
  22. package/CONTRIBUTING.md +9 -0
  23. package/LICENSE +25 -0
  24. package/README.md +66 -0
  25. package/buildsystem-config.ts +146 -0
  26. package/debug/launch/graph.ts +20 -0
  27. package/debug/launch/main.ts +38 -0
  28. package/debug/launch/setup.ts +50 -0
  29. package/debug/launch/sp.ts +21 -0
  30. package/debug/launch/tsconfig.json +27 -0
  31. package/debug/serve/main.ts +47 -0
  32. package/debug/serve/plumbing/local-module-resolver-plugin.ts +68 -0
  33. package/debug/serve/plumbing/run.ts +24 -0
  34. package/debug/serve/plumbing/serve.ts +27 -0
  35. package/debug/serve/plumbing/webpack.config.ts +43 -0
  36. package/debug/serve/spa.html +12 -0
  37. package/debug/serve/tsconfig.json +15 -0
  38. package/debug/spfx/.eslintrc.js +352 -0
  39. package/debug/spfx/README.md +73 -0
  40. package/debug/spfx/package-lock.json +57299 -0
  41. package/debug/spfx/package.json +38 -0
  42. package/debug/spfx/pnpjs-local-debug-start.js +19 -0
  43. package/debug/spfx/teams/f4c0e5ff-c402-46b7-8073-8cc506808d06_color.png +0 -0
  44. package/debug/spfx/teams/f4c0e5ff-c402-46b7-8073-8cc506808d06_outline.png +0 -0
  45. package/docs/_theme/main.html +5 -0
  46. package/docs/azidjsclient/index.md +36 -0
  47. package/docs/concepts/adv-clientside-pages.md +169 -0
  48. package/docs/concepts/auth-browser.md +42 -0
  49. package/docs/concepts/auth-nodejs.md +101 -0
  50. package/docs/concepts/auth-spfx.md +76 -0
  51. package/docs/concepts/authentication.md +42 -0
  52. package/docs/concepts/batching-caching.md +77 -0
  53. package/docs/concepts/batching.md +257 -0
  54. package/docs/concepts/calling-other-endpoints.md +213 -0
  55. package/docs/concepts/custom-bundle.md +15 -0
  56. package/docs/concepts/error-handling.md +245 -0
  57. package/docs/concepts/invokable.md +7 -0
  58. package/docs/concepts/nightly-builds.md +19 -0
  59. package/docs/concepts/project-preset.md +123 -0
  60. package/docs/concepts/selective-imports.md +106 -0
  61. package/docs/concepts/typings.md +23 -0
  62. package/docs/contributing/debug-tests.md +76 -0
  63. package/docs/contributing/debugging.md +135 -0
  64. package/docs/contributing/documentation.md +34 -0
  65. package/docs/contributing/extending-the-library.md +223 -0
  66. package/docs/contributing/index.md +22 -0
  67. package/docs/contributing/local-debug-configuration.md +28 -0
  68. package/docs/contributing/npm-scripts.md +148 -0
  69. package/docs/contributing/pull-requests.md +27 -0
  70. package/docs/contributing/settings.md +98 -0
  71. package/docs/contributing/setup-dev-machine.md +36 -0
  72. package/docs/core/behavior-recipes.md +199 -0
  73. package/docs/core/behaviors.md +179 -0
  74. package/docs/core/moments.md +215 -0
  75. package/docs/core/observers.md +100 -0
  76. package/docs/core/storage.md +90 -0
  77. package/docs/core/timeline.md +190 -0
  78. package/docs/core/util.md +191 -0
  79. package/docs/css/extra.css +33 -0
  80. package/docs/getting-started.md +361 -0
  81. package/docs/graph/behaviors.md +267 -0
  82. package/docs/graph/bookings.md +180 -0
  83. package/docs/graph/calendars.md +270 -0
  84. package/docs/graph/cloud-communications.md +40 -0
  85. package/docs/graph/columns.md +125 -0
  86. package/docs/graph/contacts.md +298 -0
  87. package/docs/graph/content-types.md +193 -0
  88. package/docs/graph/directoryobjects.md +106 -0
  89. package/docs/graph/groups.md +164 -0
  90. package/docs/graph/insights.md +151 -0
  91. package/docs/graph/invitations.md +22 -0
  92. package/docs/graph/items.md +38 -0
  93. package/docs/graph/lists.md +87 -0
  94. package/docs/graph/messages.md +20 -0
  95. package/docs/graph/onedrive.md +614 -0
  96. package/docs/graph/outlook.md +82 -0
  97. package/docs/graph/photos.md +71 -0
  98. package/docs/graph/planner.md +249 -0
  99. package/docs/graph/search.md +25 -0
  100. package/docs/graph/shares.md +44 -0
  101. package/docs/graph/sites.md +47 -0
  102. package/docs/graph/subscriptions.md +79 -0
  103. package/docs/graph/teams.md +293 -0
  104. package/docs/graph/users.md +134 -0
  105. package/docs/img/ConsoleListenerColors.png +0 -0
  106. package/docs/img/Logo.png +0 -0
  107. package/docs/img/PnPJS_FluentAPI.gif +0 -0
  108. package/docs/img/SPFx-On-Premesis-2016-1.png +0 -0
  109. package/docs/img/TimelineArchitecture.jpg +0 -0
  110. package/docs/img/csp_copyccvalue.png +0 -0
  111. package/docs/img/csp_networktab.png +0 -0
  112. package/docs/img/office365-header-icon.png +0 -0
  113. package/docs/img/usage-2020-eoy.png +0 -0
  114. package/docs/img/usage-2021-eoy.png +0 -0
  115. package/docs/img/usage-2022-eoy.png +0 -0
  116. package/docs/index.md +56 -0
  117. package/docs/logging/index.md +262 -0
  118. package/docs/msaljsclient/index.md +33 -0
  119. package/docs/news/2020-year-in-review.md +162 -0
  120. package/docs/news/2021-year-in-review.md +148 -0
  121. package/docs/news/2022-year-in-review.md +122 -0
  122. package/docs/nodejs/behaviors.md +164 -0
  123. package/docs/nodejs/sp-extensions.md +99 -0
  124. package/docs/packages.md +53 -0
  125. package/docs/queryable/behaviors.md +496 -0
  126. package/docs/queryable/extensions.md +204 -0
  127. package/docs/queryable/queryable.md +385 -0
  128. package/docs/sp/alias-parameters.md +76 -0
  129. package/docs/sp/alm.md +139 -0
  130. package/docs/sp/attachments.md +157 -0
  131. package/docs/sp/behaviors.md +142 -0
  132. package/docs/sp/clientside-pages.md +1048 -0
  133. package/docs/sp/column-defaults.md +241 -0
  134. package/docs/sp/comments-likes.md +302 -0
  135. package/docs/sp/content-types.md +131 -0
  136. package/docs/sp/context-info.md +67 -0
  137. package/docs/sp/favorites.md +91 -0
  138. package/docs/sp/features.md +83 -0
  139. package/docs/sp/fields.md +668 -0
  140. package/docs/sp/files.md +559 -0
  141. package/docs/sp/folders.md +532 -0
  142. package/docs/sp/forms.md +22 -0
  143. package/docs/sp/groupSiteManager.md +40 -0
  144. package/docs/sp/hubsites.md +140 -0
  145. package/docs/sp/items.md +601 -0
  146. package/docs/sp/lists.md +572 -0
  147. package/docs/sp/navigation.md +171 -0
  148. package/docs/sp/permissions.md +82 -0
  149. package/docs/sp/profiles.md +407 -0
  150. package/docs/sp/publishing-sitepageservice.md +16 -0
  151. package/docs/sp/recycle-bin.md +72 -0
  152. package/docs/sp/regional-settings.md +108 -0
  153. package/docs/sp/related-items.md +136 -0
  154. package/docs/sp/search.md +207 -0
  155. package/docs/sp/security.md +196 -0
  156. package/docs/sp/sharing.md +273 -0
  157. package/docs/sp/site-designs.md +117 -0
  158. package/docs/sp/site-groups.md +144 -0
  159. package/docs/sp/site-scripts.md +123 -0
  160. package/docs/sp/site-users.md +211 -0
  161. package/docs/sp/sites.md +269 -0
  162. package/docs/sp/social.md +182 -0
  163. package/docs/sp/sp-utilities-utility.md +159 -0
  164. package/docs/sp/subscriptions.md +79 -0
  165. package/docs/sp/taxonomy.md +470 -0
  166. package/docs/sp/tenant-properties.md +55 -0
  167. package/docs/sp/user-custom-actions.md +95 -0
  168. package/docs/sp/views.md +226 -0
  169. package/docs/sp/webs.md +947 -0
  170. package/docs/sp-admin/index.md +139 -0
  171. package/docs/transition-guide.md +87 -0
  172. package/docs/v1/404.html +1611 -0
  173. package/docs/v1/assets/fonts/font-awesome.css +4 -0
  174. package/docs/v1/assets/fonts/material-icons.css +13 -0
  175. package/docs/v1/assets/fonts/specimen/FontAwesome.ttf +0 -0
  176. package/docs/v1/assets/fonts/specimen/FontAwesome.woff +0 -0
  177. package/docs/v1/assets/fonts/specimen/FontAwesome.woff2 +0 -0
  178. package/docs/v1/assets/fonts/specimen/MaterialIcons-Regular.ttf +0 -0
  179. package/docs/v1/assets/fonts/specimen/MaterialIcons-Regular.woff +0 -0
  180. package/docs/v1/assets/fonts/specimen/MaterialIcons-Regular.woff2 +0 -0
  181. package/docs/v1/assets/images/favicon.png +0 -0
  182. package/docs/v1/assets/images/icons/bitbucket.1b09e088.svg +20 -0
  183. package/docs/v1/assets/images/icons/github.f0b8504a.svg +18 -0
  184. package/docs/v1/assets/images/icons/gitlab.6dd19c00.svg +38 -0
  185. package/docs/v1/assets/javascripts/application.583bbe55.js +1 -0
  186. package/docs/v1/assets/javascripts/lunr/lunr.da.js +1 -0
  187. package/docs/v1/assets/javascripts/lunr/lunr.de.js +1 -0
  188. package/docs/v1/assets/javascripts/lunr/lunr.du.js +1 -0
  189. package/docs/v1/assets/javascripts/lunr/lunr.es.js +1 -0
  190. package/docs/v1/assets/javascripts/lunr/lunr.fi.js +1 -0
  191. package/docs/v1/assets/javascripts/lunr/lunr.fr.js +1 -0
  192. package/docs/v1/assets/javascripts/lunr/lunr.hu.js +1 -0
  193. package/docs/v1/assets/javascripts/lunr/lunr.it.js +1 -0
  194. package/docs/v1/assets/javascripts/lunr/lunr.jp.js +1 -0
  195. package/docs/v1/assets/javascripts/lunr/lunr.multi.js +1 -0
  196. package/docs/v1/assets/javascripts/lunr/lunr.no.js +1 -0
  197. package/docs/v1/assets/javascripts/lunr/lunr.pt.js +1 -0
  198. package/docs/v1/assets/javascripts/lunr/lunr.ro.js +1 -0
  199. package/docs/v1/assets/javascripts/lunr/lunr.ru.js +1 -0
  200. package/docs/v1/assets/javascripts/lunr/lunr.stemmer.support.js +1 -0
  201. package/docs/v1/assets/javascripts/lunr/lunr.sv.js +1 -0
  202. package/docs/v1/assets/javascripts/lunr/lunr.tr.js +1 -0
  203. package/docs/v1/assets/javascripts/lunr/tinyseg.js +1 -0
  204. package/docs/v1/assets/javascripts/modernizr.1aa3b519.js +1 -0
  205. package/docs/v1/assets/stylesheets/application-palette.22915126.css +1176 -0
  206. package/docs/v1/assets/stylesheets/application.451f80e5.css +2552 -0
  207. package/docs/v1/common/docs/adalclient/index.html +1994 -0
  208. package/docs/v1/common/docs/collections/index.html +1786 -0
  209. package/docs/v1/common/docs/custom-httpclientimpl/index.html +1798 -0
  210. package/docs/v1/common/docs/index.html +1787 -0
  211. package/docs/v1/common/docs/libconfig/index.html +1930 -0
  212. package/docs/v1/common/docs/netutil/index.html +1860 -0
  213. package/docs/v1/common/docs/storage/index.html +1850 -0
  214. package/docs/v1/common/docs/util/index.html +2058 -0
  215. package/docs/v1/config-store/docs/configuration/index.html +1730 -0
  216. package/docs/v1/config-store/docs/index.html +1761 -0
  217. package/docs/v1/config-store/docs/providers/index.html +1782 -0
  218. package/docs/v1/documentation/SPFx-On-Premesis-2016/index.html +1720 -0
  219. package/docs/v1/documentation/beta-versions/index.html +1742 -0
  220. package/docs/v1/documentation/css/extra.css +33 -0
  221. package/docs/v1/documentation/debugging/index.html +2098 -0
  222. package/docs/v1/documentation/deployment/index.html +1972 -0
  223. package/docs/v1/documentation/documentation/index.html +1760 -0
  224. package/docs/v1/documentation/getting-started/index.html +2280 -0
  225. package/docs/v1/documentation/getting-started-dev/index.html +1799 -0
  226. package/docs/v1/documentation/gulp-commands/index.html +2100 -0
  227. package/docs/v1/documentation/img/Logo.png +0 -0
  228. package/docs/v1/documentation/img/PnPJS_FluentAPI.gif +0 -0
  229. package/docs/v1/documentation/img/SPFx-On-Premesis-2016-1.png +0 -0
  230. package/docs/v1/documentation/img/office365-header-icon.png +0 -0
  231. package/docs/v1/documentation/img/pnpjs-common-uml.svg +220 -0
  232. package/docs/v1/documentation/img/pnpjs-config-store-uml.svg +56 -0
  233. package/docs/v1/documentation/img/pnpjs-graph-uml.svg +602 -0
  234. package/docs/v1/documentation/img/pnpjs-logging-uml.svg +59 -0
  235. package/docs/v1/documentation/img/pnpjs-nodejs-uml.svg +85 -0
  236. package/docs/v1/documentation/img/pnpjs-odata-uml.svg +253 -0
  237. package/docs/v1/documentation/img/pnpjs-sp-addinhelpers-uml.svg +48 -0
  238. package/docs/v1/documentation/img/pnpjs-sp-clientsvc-uml.svg +167 -0
  239. package/docs/v1/documentation/img/pnpjs-sp-taxonomy-uml.svg +458 -0
  240. package/docs/v1/documentation/img/pnpjs-sp-uml.svg +2833 -0
  241. package/docs/v1/documentation/package-structure/index.html +1875 -0
  242. package/docs/v1/documentation/packages/index.html +1741 -0
  243. package/docs/v1/documentation/polyfill/index.html +1877 -0
  244. package/docs/v1/documentation/theme/main.html +5 -0
  245. package/docs/v1/documentation/transition-guide/index.html +1977 -0
  246. package/docs/v1/graph/docs/contacts/index.html +2080 -0
  247. package/docs/v1/graph/docs/directoryobjects/index.html +1865 -0
  248. package/docs/v1/graph/docs/index.html +1858 -0
  249. package/docs/v1/graph/docs/insights/index.html +1698 -0
  250. package/docs/v1/graph/docs/invitations/index.html +1742 -0
  251. package/docs/v1/graph/docs/onedrive/index.html +2086 -0
  252. package/docs/v1/graph/docs/people/index.html +1664 -0
  253. package/docs/v1/graph/docs/planner/index.html +2097 -0
  254. package/docs/v1/graph/docs/security/index.html +1692 -0
  255. package/docs/v1/graph/docs/sites/index.html +2043 -0
  256. package/docs/v1/graph/docs/subscriptions/index.html +1835 -0
  257. package/docs/v1/graph/docs/teams/index.html +2097 -0
  258. package/docs/v1/index.html +1889 -0
  259. package/docs/v1/logging/docs/index.html +2045 -0
  260. package/docs/v1/nodejs/docs/adal-certificate-fetch-client/index.html +1676 -0
  261. package/docs/v1/nodejs/docs/adal-fetch-client/index.html +1713 -0
  262. package/docs/v1/nodejs/docs/bearer-token-fetch-client/index.html +1712 -0
  263. package/docs/v1/nodejs/docs/index.html +1764 -0
  264. package/docs/v1/nodejs/docs/provider-hosted-app/index.html +1725 -0
  265. package/docs/v1/nodejs/docs/proxy/index.html +1699 -0
  266. package/docs/v1/nodejs/docs/sp-fetch-client/index.html +1895 -0
  267. package/docs/v1/odata/docs/caching/index.html +1988 -0
  268. package/docs/v1/odata/docs/core/index.html +1829 -0
  269. package/docs/v1/odata/docs/index.html +1781 -0
  270. package/docs/v1/odata/docs/odata-batch/index.html +1755 -0
  271. package/docs/v1/odata/docs/parsers/index.html +1862 -0
  272. package/docs/v1/odata/docs/pipeline/index.html +1811 -0
  273. package/docs/v1/odata/docs/queryable/index.html +1967 -0
  274. package/docs/v1/pnpjs/docs/index.html +1814 -0
  275. package/docs/v1/search/search_index.json +1 -0
  276. package/docs/v1/sitemap.xml +428 -0
  277. package/docs/v1/sitemap.xml.gz +0 -0
  278. package/docs/v1/sp/docs/alias-parameters/index.html +1830 -0
  279. package/docs/v1/sp/docs/alm/index.html +1920 -0
  280. package/docs/v1/sp/docs/attachments/index.html +1998 -0
  281. package/docs/v1/sp/docs/client-side-pages/index.html +2031 -0
  282. package/docs/v1/sp/docs/comments-likes/index.html +1958 -0
  283. package/docs/v1/sp/docs/content-types/index.html +1758 -0
  284. package/docs/v1/sp/docs/entity-merging/index.html +1838 -0
  285. package/docs/v1/sp/docs/features/index.html +1824 -0
  286. package/docs/v1/sp/docs/fields/index.html +2031 -0
  287. package/docs/v1/sp/docs/files/index.html +2178 -0
  288. package/docs/v1/sp/docs/index.html +1894 -0
  289. package/docs/v1/sp/docs/items/index.html +2362 -0
  290. package/docs/v1/sp/docs/navigation-service/index.html +1791 -0
  291. package/docs/v1/sp/docs/permissions/index.html +1860 -0
  292. package/docs/v1/sp/docs/profiles/index.html +1794 -0
  293. package/docs/v1/sp/docs/related-items/index.html +1886 -0
  294. package/docs/v1/sp/docs/search/index.html +1830 -0
  295. package/docs/v1/sp/docs/sharing/index.html +2058 -0
  296. package/docs/v1/sp/docs/sitedesigns/index.html +1851 -0
  297. package/docs/v1/sp/docs/sites/index.html +2186 -0
  298. package/docs/v1/sp/docs/social/index.html +2011 -0
  299. package/docs/v1/sp/docs/sp-utilities-utility/index.html +2061 -0
  300. package/docs/v1/sp/docs/tenant-properties/index.html +1795 -0
  301. package/docs/v1/sp/docs/views/index.html +1869 -0
  302. package/docs/v1/sp/docs/webs/index.html +1972 -0
  303. package/docs/v1/sp-addinhelpers/docs/index.html +1771 -0
  304. package/docs/v1/sp-addinhelpers/docs/sp-request-executor-client/index.html +1760 -0
  305. package/docs/v1/sp-addinhelpers/docs/sp-rest-addin/index.html +1711 -0
  306. package/docs/v1/sp-clientsvc/docs/index.html +1736 -0
  307. package/docs/v1/sp-taxonomy/docs/index.html +1887 -0
  308. package/docs/v1/sp-taxonomy/docs/labels/index.html +1827 -0
  309. package/docs/v1/sp-taxonomy/docs/term-groups/index.html +1875 -0
  310. package/docs/v1/sp-taxonomy/docs/term-sets/index.html +1946 -0
  311. package/docs/v1/sp-taxonomy/docs/term-stores/index.html +2111 -0
  312. package/docs/v1/sp-taxonomy/docs/terms/index.html +2036 -0
  313. package/docs/v1/sp-taxonomy/docs/utilities/index.html +1783 -0
  314. package/docs/v2/404.html +2108 -0
  315. package/docs/v2/SPFx-on-premises/index.html +2278 -0
  316. package/docs/v2/_theme/main.html +5 -0
  317. package/docs/v2/adaljsclient/adalclient/index.html +15 -0
  318. package/docs/v2/adaljsclient/index.html +15 -0
  319. package/docs/v2/assets/images/favicon.png +0 -0
  320. package/docs/v2/assets/javascripts/bundle.9554a270.min.js +2 -0
  321. package/docs/v2/assets/javascripts/bundle.9554a270.min.js.map +1 -0
  322. package/docs/v2/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
  323. package/docs/v2/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
  324. package/docs/v2/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
  325. package/docs/v2/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
  326. package/docs/v2/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
  327. package/docs/v2/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
  328. package/docs/v2/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
  329. package/docs/v2/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
  330. package/docs/v2/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
  331. package/docs/v2/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
  332. package/docs/v2/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
  333. package/docs/v2/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
  334. package/docs/v2/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
  335. package/docs/v2/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
  336. package/docs/v2/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
  337. package/docs/v2/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
  338. package/docs/v2/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
  339. package/docs/v2/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
  340. package/docs/v2/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
  341. package/docs/v2/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
  342. package/docs/v2/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
  343. package/docs/v2/assets/javascripts/lunr/tinyseg.min.js +1 -0
  344. package/docs/v2/assets/javascripts/vendor.77e55a48.min.js +30 -0
  345. package/docs/v2/assets/javascripts/vendor.77e55a48.min.js.map +1 -0
  346. package/docs/v2/assets/javascripts/worker/search.4ac00218.min.js +59 -0
  347. package/docs/v2/assets/javascripts/worker/search.4ac00218.min.js.map +1 -0
  348. package/docs/v2/assets/stylesheets/main.38780c08.min.css +3 -0
  349. package/docs/v2/assets/stylesheets/main.38780c08.min.css.map +1 -0
  350. package/docs/v2/assets/stylesheets/palette.3f72e892.min.css +3 -0
  351. package/docs/v2/assets/stylesheets/palette.3f72e892.min.css.map +1 -0
  352. package/docs/v2/authentication/adaljsclient/index.html +2510 -0
  353. package/docs/v2/authentication/bearertokenclient/index.html +2251 -0
  354. package/docs/v2/authentication/client-spa/index.html +2206 -0
  355. package/docs/v2/authentication/client-spfx/index.html +2397 -0
  356. package/docs/v2/authentication/index.html +2307 -0
  357. package/docs/v2/authentication/lambdaclient/index.html +2304 -0
  358. package/docs/v2/authentication/msaljsclient/index.html +2413 -0
  359. package/docs/v2/authentication/server-nodejs/index.html +2404 -0
  360. package/docs/v2/authentication/sp-app-registration/index.html +2273 -0
  361. package/docs/v2/common/collections/index.html +2277 -0
  362. package/docs/v2/common/custom-httpclientimpl/index.html +2300 -0
  363. package/docs/v2/common/index.html +2262 -0
  364. package/docs/v2/common/libconfig/index.html +2413 -0
  365. package/docs/v2/common/netutil/index.html +2350 -0
  366. package/docs/v2/common/storage/index.html +2339 -0
  367. package/docs/v2/common/util/index.html +2638 -0
  368. package/docs/v2/concepts/configuration/index.html +2685 -0
  369. package/docs/v2/concepts/custom-bundle/index.html +2279 -0
  370. package/docs/v2/concepts/error-handling/index.html +2539 -0
  371. package/docs/v2/concepts/ie11-mode/index.html +2278 -0
  372. package/docs/v2/concepts/invokable/index.html +2254 -0
  373. package/docs/v2/concepts/polyfill/index.html +2401 -0
  374. package/docs/v2/concepts/selective-imports/index.html +2360 -0
  375. package/docs/v2/concepts/settings/index.html +2551 -0
  376. package/docs/v2/config-store/configuration/index.html +2226 -0
  377. package/docs/v2/config-store/index.html +2239 -0
  378. package/docs/v2/config-store/providers/index.html +2275 -0
  379. package/docs/v2/contributing/debug-tests/index.html +2323 -0
  380. package/docs/v2/contributing/debugging/index.html +2514 -0
  381. package/docs/v2/contributing/documentation/index.html +2291 -0
  382. package/docs/v2/contributing/extending-the-library/index.html +2521 -0
  383. package/docs/v2/contributing/index.html +2270 -0
  384. package/docs/v2/contributing/local-debug-configuration/index.html +2284 -0
  385. package/docs/v2/contributing/pull-requests/index.html +2261 -0
  386. package/docs/v2/contributing/setup-dev-machine/index.html +2284 -0
  387. package/docs/v2/css/extra.css +33 -0
  388. package/docs/v2/debug-tests/index.html +15 -0
  389. package/docs/v2/debugging/index.html +15 -0
  390. package/docs/v2/documentation/index.html +15 -0
  391. package/docs/v2/getting-started/index.html +2789 -0
  392. package/docs/v2/getting-started-dev/index.html +15 -0
  393. package/docs/v2/graph/calendars/index.html +2569 -0
  394. package/docs/v2/graph/contacts/index.html +2673 -0
  395. package/docs/v2/graph/directoryobjects/index.html +2402 -0
  396. package/docs/v2/graph/groups/index.html +2488 -0
  397. package/docs/v2/graph/index.html +2333 -0
  398. package/docs/v2/graph/insights/index.html +2478 -0
  399. package/docs/v2/graph/invitations/index.html +2273 -0
  400. package/docs/v2/graph/onedrive/index.html +2617 -0
  401. package/docs/v2/graph/outlook/index.html +2363 -0
  402. package/docs/v2/graph/photos/index.html +2351 -0
  403. package/docs/v2/graph/planner/index.html +2628 -0
  404. package/docs/v2/graph/search/index.html +2264 -0
  405. package/docs/v2/graph/subscriptions/index.html +2333 -0
  406. package/docs/v2/graph/teams/index.html +2619 -0
  407. package/docs/v2/graph/users/index.html +2461 -0
  408. package/docs/v2/img/ConsoleListenerColors.png +0 -0
  409. package/docs/v2/img/Logo.png +0 -0
  410. package/docs/v2/img/PnPJS_FluentAPI.gif +0 -0
  411. package/docs/v2/img/SPFx-On-Premesis-2016-1.png +0 -0
  412. package/docs/v2/img/office365-header-icon.png +0 -0
  413. package/docs/v2/img/usage-2020-eoy.png +0 -0
  414. package/docs/v2/index.html +2410 -0
  415. package/docs/v2/logging/index.html +2622 -0
  416. package/docs/v2/news/2020-year-in-review/index.html +2525 -0
  417. package/docs/v2/nodejs/adal-fetch-client/index.html +2204 -0
  418. package/docs/v2/nodejs/bearer-token-fetch-client/index.html +2203 -0
  419. package/docs/v2/nodejs/index.html +2261 -0
  420. package/docs/v2/nodejs/provider-hosted-app/index.html +2220 -0
  421. package/docs/v2/nodejs/proxy/index.html +2238 -0
  422. package/docs/v2/nodejs/sp-extensions/index.html +2362 -0
  423. package/docs/v2/nodejs/sp-fetch-client/index.html +2294 -0
  424. package/docs/v2/nodejs-support/index.html +2398 -0
  425. package/docs/v2/npm-scripts/index.html +2521 -0
  426. package/docs/v2/odata/caching/index.html +2465 -0
  427. package/docs/v2/odata/core/index.html +2322 -0
  428. package/docs/v2/odata/debug/index.html +2358 -0
  429. package/docs/v2/odata/extensions/index.html +2581 -0
  430. package/docs/v2/odata/index.html +2259 -0
  431. package/docs/v2/odata/odata-batch/index.html +2250 -0
  432. package/docs/v2/odata/parsers/index.html +2355 -0
  433. package/docs/v2/odata/pipeline/index.html +2297 -0
  434. package/docs/v2/odata/queryable/index.html +2455 -0
  435. package/docs/v2/packages/index.html +2251 -0
  436. package/docs/v2/pnpjs/index.html +2281 -0
  437. package/docs/v2/search/search_index.json +1 -0
  438. package/docs/v2/sitemap.xml +483 -0
  439. package/docs/v2/sitemap.xml.gz +0 -0
  440. package/docs/v2/sp/alias-parameters/index.html +2330 -0
  441. package/docs/v2/sp/alm/index.html +2433 -0
  442. package/docs/v2/sp/attachments/index.html +2504 -0
  443. package/docs/v2/sp/clientside-pages/index.html +3477 -0
  444. package/docs/v2/sp/column-defaults/index.html +2540 -0
  445. package/docs/v2/sp/comments-likes/index.html +2646 -0
  446. package/docs/v2/sp/content-types/index.html +2462 -0
  447. package/docs/v2/sp/custom-irequestclient/index.html +2339 -0
  448. package/docs/v2/sp/entity-merging/index.html +2325 -0
  449. package/docs/v2/sp/features/index.html +2440 -0
  450. package/docs/v2/sp/fields/index.html +3103 -0
  451. package/docs/v2/sp/files/index.html +2949 -0
  452. package/docs/v2/sp/folders/index.html +2968 -0
  453. package/docs/v2/sp/forms/index.html +2289 -0
  454. package/docs/v2/sp/hubsites/index.html +2485 -0
  455. package/docs/v2/sp/index.html +2328 -0
  456. package/docs/v2/sp/items/index.html +2974 -0
  457. package/docs/v2/sp/lists/index.html +3387 -0
  458. package/docs/v2/sp/navigation/index.html +2535 -0
  459. package/docs/v2/sp/permissions/index.html +2338 -0
  460. package/docs/v2/sp/profiles/index.html +2806 -0
  461. package/docs/v2/sp/regional-settings/index.html +2394 -0
  462. package/docs/v2/sp/related-items/index.html +2417 -0
  463. package/docs/v2/sp/search/index.html +2474 -0
  464. package/docs/v2/sp/security/index.html +2432 -0
  465. package/docs/v2/sp/sharing/index.html +2589 -0
  466. package/docs/v2/sp/site-designs/index.html +2414 -0
  467. package/docs/v2/sp/site-groups/index.html +2504 -0
  468. package/docs/v2/sp/site-scripts/index.html +2433 -0
  469. package/docs/v2/sp/site-users/index.html +2641 -0
  470. package/docs/v2/sp/sites/index.html +2727 -0
  471. package/docs/v2/sp/social/index.html +2517 -0
  472. package/docs/v2/sp/sp-utilities-utility/index.html +2460 -0
  473. package/docs/v2/sp/subscriptions/index.html +2395 -0
  474. package/docs/v2/sp/taxonomy/index.html +2565 -0
  475. package/docs/v2/sp/tenant-properties/index.html +2286 -0
  476. package/docs/v2/sp/user-custom-actions/index.html +2424 -0
  477. package/docs/v2/sp/views/index.html +2652 -0
  478. package/docs/v2/sp/webs/index.html +4190 -0
  479. package/docs/v2/sp-addinhelpers/index.html +2274 -0
  480. package/docs/v2/sp-addinhelpers/sp-request-executor-client/index.html +2253 -0
  481. package/docs/v2/sp-addinhelpers/sp-rest-addin/index.html +2206 -0
  482. package/docs/v2/transition-guide/index.html +2435 -0
  483. package/mkdocs-requirements.txt +2 -0
  484. package/mkdocs.yml +188 -0
  485. package/package.json +96 -0
  486. package/packages/azidjsclient/index.ts +68 -0
  487. package/packages/azidjsclient/package.json +13 -0
  488. package/packages/azidjsclient/tsconfig.json +12 -0
  489. package/packages/core/behaviors/assign-from.ts +17 -0
  490. package/packages/core/behaviors/copy-from.ts +58 -0
  491. package/packages/core/extendable.ts +193 -0
  492. package/packages/core/index.ts +11 -0
  493. package/packages/core/moments.ts +117 -0
  494. package/packages/core/package.json +10 -0
  495. package/packages/core/storage.ts +274 -0
  496. package/packages/core/timeline.ts +387 -0
  497. package/packages/core/tsconfig.json +10 -0
  498. package/packages/core/util.ts +169 -0
  499. package/packages/graph/attachments/conversations.ts +14 -0
  500. package/packages/graph/attachments/index.ts +8 -0
  501. package/packages/graph/attachments/types.ts +37 -0
  502. package/packages/graph/batching.ts +408 -0
  503. package/packages/graph/behaviors/consistency-level.ts +17 -0
  504. package/packages/graph/behaviors/defaults.ts +41 -0
  505. package/packages/graph/behaviors/endpoint.ts +22 -0
  506. package/packages/graph/behaviors/graphbrowser.ts +38 -0
  507. package/packages/graph/behaviors/paged.ts +109 -0
  508. package/packages/graph/behaviors/spfx.ts +46 -0
  509. package/packages/graph/behaviors/telemetry.ts +19 -0
  510. package/packages/graph/bookings/funcs.ts +18 -0
  511. package/packages/graph/bookings/index.ts +62 -0
  512. package/packages/graph/bookings/types.ts +352 -0
  513. package/packages/graph/calendars/funcs.ts +58 -0
  514. package/packages/graph/calendars/groups.ts +19 -0
  515. package/packages/graph/calendars/index.ts +18 -0
  516. package/packages/graph/calendars/types.ts +73 -0
  517. package/packages/graph/calendars/users.ts +28 -0
  518. package/packages/graph/cloud-communications/index.ts +24 -0
  519. package/packages/graph/cloud-communications/types.ts +32 -0
  520. package/packages/graph/cloud-communications/users.ts +15 -0
  521. package/packages/graph/columns/addColumns.ts +28 -0
  522. package/packages/graph/columns/content-types.ts +44 -0
  523. package/packages/graph/columns/index.ts +14 -0
  524. package/packages/graph/columns/lists.ts +33 -0
  525. package/packages/graph/columns/sites.ts +32 -0
  526. package/packages/graph/columns/types.ts +24 -0
  527. package/packages/graph/contacts/index.ts +14 -0
  528. package/packages/graph/contacts/types.ts +126 -0
  529. package/packages/graph/contacts/users.ts +17 -0
  530. package/packages/graph/content-types/index.ts +11 -0
  531. package/packages/graph/content-types/lists.ts +44 -0
  532. package/packages/graph/content-types/sites.ts +70 -0
  533. package/packages/graph/content-types/types.ts +112 -0
  534. package/packages/graph/conversations/groups.ts +20 -0
  535. package/packages/graph/conversations/index.ts +19 -0
  536. package/packages/graph/conversations/types.ts +147 -0
  537. package/packages/graph/decorators.ts +164 -0
  538. package/packages/graph/directory-objects/index.ts +24 -0
  539. package/packages/graph/directory-objects/types.ts +94 -0
  540. package/packages/graph/fi.ts +46 -0
  541. package/packages/graph/graphqueryable.ts +193 -0
  542. package/packages/graph/groups/index.ts +25 -0
  543. package/packages/graph/groups/types.ts +130 -0
  544. package/packages/graph/index.ts +21 -0
  545. package/packages/graph/insights/index.ts +20 -0
  546. package/packages/graph/insights/types.ts +105 -0
  547. package/packages/graph/insights/users.ts +14 -0
  548. package/packages/graph/invitations/index.ts +22 -0
  549. package/packages/graph/invitations/types.ts +41 -0
  550. package/packages/graph/lists/drive.ts +21 -0
  551. package/packages/graph/lists/index.ts +10 -0
  552. package/packages/graph/lists/sites.ts +16 -0
  553. package/packages/graph/lists/types.ts +47 -0
  554. package/packages/graph/members/groups.ts +17 -0
  555. package/packages/graph/members/index.ts +8 -0
  556. package/packages/graph/members/types.ts +40 -0
  557. package/packages/graph/messages/index.ts +14 -0
  558. package/packages/graph/messages/types.ts +46 -0
  559. package/packages/graph/messages/users.ts +27 -0
  560. package/packages/graph/onedrive/funcs.ts +40 -0
  561. package/packages/graph/onedrive/groups.ts +33 -0
  562. package/packages/graph/onedrive/index.ts +48 -0
  563. package/packages/graph/onedrive/sites.ts +35 -0
  564. package/packages/graph/onedrive/types.ts +482 -0
  565. package/packages/graph/onedrive/users.ts +56 -0
  566. package/packages/graph/onenote/index.ts +16 -0
  567. package/packages/graph/onenote/types.ts +119 -0
  568. package/packages/graph/onenote/users.ts +14 -0
  569. package/packages/graph/operations.ts +22 -0
  570. package/packages/graph/outlook/index.ts +11 -0
  571. package/packages/graph/outlook/types.ts +58 -0
  572. package/packages/graph/outlook/users.ts +14 -0
  573. package/packages/graph/package.json +16 -0
  574. package/packages/graph/photos/groups.ts +14 -0
  575. package/packages/graph/photos/index.ts +7 -0
  576. package/packages/graph/photos/types.ts +33 -0
  577. package/packages/graph/photos/users.ts +14 -0
  578. package/packages/graph/planner/groups.ts +14 -0
  579. package/packages/graph/planner/index.ts +42 -0
  580. package/packages/graph/planner/types.ts +213 -0
  581. package/packages/graph/planner/users.ts +14 -0
  582. package/packages/graph/post-install.cjs +20 -0
  583. package/packages/graph/presets/all.ts +42 -0
  584. package/packages/graph/search/index.ts +18 -0
  585. package/packages/graph/search/types.ts +20 -0
  586. package/packages/graph/shares/index.ts +23 -0
  587. package/packages/graph/shares/types.ts +47 -0
  588. package/packages/graph/sites/group.ts +14 -0
  589. package/packages/graph/sites/index.ts +25 -0
  590. package/packages/graph/sites/types.ts +45 -0
  591. package/packages/graph/subscriptions/index.ts +24 -0
  592. package/packages/graph/subscriptions/types.ts +59 -0
  593. package/packages/graph/teams/index.ts +68 -0
  594. package/packages/graph/teams/types.ts +333 -0
  595. package/packages/graph/teams/users.ts +14 -0
  596. package/packages/graph/tsconfig.json +16 -0
  597. package/packages/graph/users/index.ts +34 -0
  598. package/packages/graph/users/types.ts +56 -0
  599. package/packages/graph/utils/type.ts +3 -0
  600. package/packages/logging/index.ts +145 -0
  601. package/packages/logging/listeners.ts +134 -0
  602. package/packages/logging/package.json +10 -0
  603. package/packages/logging/tsconfig.json +7 -0
  604. package/packages/msaljsclient/index.ts +40 -0
  605. package/packages/msaljsclient/package.json +12 -0
  606. package/packages/msaljsclient/tsconfig.json +12 -0
  607. package/packages/nodejs/behaviors/fetch.ts +130 -0
  608. package/packages/nodejs/behaviors/graphdefault.ts +50 -0
  609. package/packages/nodejs/behaviors/msal.ts +24 -0
  610. package/packages/nodejs/behaviors/spdefault.ts +45 -0
  611. package/packages/nodejs/behaviors/stream-parse.ts +7 -0
  612. package/packages/nodejs/index.ts +33 -0
  613. package/packages/nodejs/package.json +17 -0
  614. package/packages/nodejs/sp-extensions/stream.ts +136 -0
  615. package/packages/nodejs/tsconfig.json +28 -0
  616. package/packages/queryable/add-prop.ts +18 -0
  617. package/packages/queryable/behaviors/bearer-token.ts +15 -0
  618. package/packages/queryable/behaviors/browser-fetch.ts +131 -0
  619. package/packages/queryable/behaviors/caching-pessimistic.ts +67 -0
  620. package/packages/queryable/behaviors/caching.ts +149 -0
  621. package/packages/queryable/behaviors/cancelable.ts +264 -0
  622. package/packages/queryable/behaviors/inject-headers.ts +23 -0
  623. package/packages/queryable/behaviors/parsers.ts +134 -0
  624. package/packages/queryable/behaviors/resolvers.ts +28 -0
  625. package/packages/queryable/behaviors/timeout.ts +24 -0
  626. package/packages/queryable/index.ts +19 -0
  627. package/packages/queryable/invokable.ts +42 -0
  628. package/packages/queryable/operations.ts +32 -0
  629. package/packages/queryable/package.json +11 -0
  630. package/packages/queryable/queryable-factory.ts +19 -0
  631. package/packages/queryable/queryable.ts +239 -0
  632. package/packages/queryable/request-builders.ts +20 -0
  633. package/packages/queryable/tsconfig.json +11 -0
  634. package/packages/readme.md +21 -0
  635. package/packages/sp/appcatalog/index.ts +35 -0
  636. package/packages/sp/appcatalog/types.ts +176 -0
  637. package/packages/sp/appcatalog/web.ts +19 -0
  638. package/packages/sp/attachments/index.ts +11 -0
  639. package/packages/sp/attachments/item.ts +17 -0
  640. package/packages/sp/attachments/types.ts +95 -0
  641. package/packages/sp/batching.ts +483 -0
  642. package/packages/sp/behaviors/defaults.ts +38 -0
  643. package/packages/sp/behaviors/request-digest.ts +78 -0
  644. package/packages/sp/behaviors/spbrowser.ts +40 -0
  645. package/packages/sp/behaviors/spfx.ts +83 -0
  646. package/packages/sp/behaviors/telemetry.ts +35 -0
  647. package/packages/sp/clientside-pages/funcs.ts +27 -0
  648. package/packages/sp/clientside-pages/index.ts +27 -0
  649. package/packages/sp/clientside-pages/types.ts +1661 -0
  650. package/packages/sp/clientside-pages/web.ts +93 -0
  651. package/packages/sp/column-defaults/folder.ts +89 -0
  652. package/packages/sp/column-defaults/index.ts +8 -0
  653. package/packages/sp/column-defaults/list.ts +219 -0
  654. package/packages/sp/column-defaults/types.ts +19 -0
  655. package/packages/sp/comments/clientside-page.ts +120 -0
  656. package/packages/sp/comments/index.ts +14 -0
  657. package/packages/sp/comments/item.ts +77 -0
  658. package/packages/sp/comments/types.ts +160 -0
  659. package/packages/sp/content-types/index.ts +17 -0
  660. package/packages/sp/content-types/item.ts +17 -0
  661. package/packages/sp/content-types/list.ts +17 -0
  662. package/packages/sp/content-types/types.ts +181 -0
  663. package/packages/sp/content-types/web.ts +17 -0
  664. package/packages/sp/context-info/index.ts +40 -0
  665. package/packages/sp/decorators.ts +18 -0
  666. package/packages/sp/favorites/index.ts +32 -0
  667. package/packages/sp/favorites/types.ts +187 -0
  668. package/packages/sp/features/index.ts +11 -0
  669. package/packages/sp/features/site.ts +17 -0
  670. package/packages/sp/features/types.ts +73 -0
  671. package/packages/sp/features/web.ts +17 -0
  672. package/packages/sp/fi.ts +46 -0
  673. package/packages/sp/fields/index.ts +22 -0
  674. package/packages/sp/fields/list.ts +17 -0
  675. package/packages/sp/fields/types.ts +648 -0
  676. package/packages/sp/fields/web.ts +23 -0
  677. package/packages/sp/files/folder.ts +17 -0
  678. package/packages/sp/files/index.ts +25 -0
  679. package/packages/sp/files/item.ts +17 -0
  680. package/packages/sp/files/readable-file.ts +40 -0
  681. package/packages/sp/files/types.ts +771 -0
  682. package/packages/sp/files/web.ts +46 -0
  683. package/packages/sp/folders/index.ts +19 -0
  684. package/packages/sp/folders/item.ts +16 -0
  685. package/packages/sp/folders/list.ts +17 -0
  686. package/packages/sp/folders/types.ts +439 -0
  687. package/packages/sp/folders/web.ts +50 -0
  688. package/packages/sp/forms/index.ts +9 -0
  689. package/packages/sp/forms/list.ts +14 -0
  690. package/packages/sp/forms/types.ts +41 -0
  691. package/packages/sp/groupsitemanager/index.ts +18 -0
  692. package/packages/sp/groupsitemanager/types.ts +433 -0
  693. package/packages/sp/hubsites/index.ts +31 -0
  694. package/packages/sp/hubsites/site.ts +43 -0
  695. package/packages/sp/hubsites/types.ts +71 -0
  696. package/packages/sp/hubsites/web.ts +38 -0
  697. package/packages/sp/index.ts +24 -0
  698. package/packages/sp/items/get-all.ts +52 -0
  699. package/packages/sp/items/index.ts +18 -0
  700. package/packages/sp/items/list.ts +14 -0
  701. package/packages/sp/items/types.ts +405 -0
  702. package/packages/sp/lists/index.ts +23 -0
  703. package/packages/sp/lists/types.ts +851 -0
  704. package/packages/sp/lists/web.ts +68 -0
  705. package/packages/sp/navigation/index.ts +35 -0
  706. package/packages/sp/navigation/types.ts +243 -0
  707. package/packages/sp/navigation/web.ts +19 -0
  708. package/packages/sp/operations.ts +33 -0
  709. package/packages/sp/package.json +15 -0
  710. package/packages/sp/post-install.cjs +20 -0
  711. package/packages/sp/presets/all.ts +75 -0
  712. package/packages/sp/profiles/index.ts +30 -0
  713. package/packages/sp/profiles/types.ts +595 -0
  714. package/packages/sp/publishing-sitepageservice/index.ts +22 -0
  715. package/packages/sp/publishing-sitepageservice/types.ts +18 -0
  716. package/packages/sp/recycle-bin/index.ts +36 -0
  717. package/packages/sp/recycle-bin/types.ts +113 -0
  718. package/packages/sp/regional-settings/content-type.ts +11 -0
  719. package/packages/sp/regional-settings/field.ts +11 -0
  720. package/packages/sp/regional-settings/funcs.ts +10 -0
  721. package/packages/sp/regional-settings/index.ts +18 -0
  722. package/packages/sp/regional-settings/list.ts +11 -0
  723. package/packages/sp/regional-settings/types.ts +159 -0
  724. package/packages/sp/regional-settings/user-custom-actions.ts +11 -0
  725. package/packages/sp/regional-settings/web.ts +21 -0
  726. package/packages/sp/related-items/index.ts +7 -0
  727. package/packages/sp/related-items/types.ts +194 -0
  728. package/packages/sp/related-items/web.ts +22 -0
  729. package/packages/sp/search/index.ts +48 -0
  730. package/packages/sp/search/query.ts +254 -0
  731. package/packages/sp/search/suggest.ts +130 -0
  732. package/packages/sp/search/types.ts +480 -0
  733. package/packages/sp/security/funcs.ts +94 -0
  734. package/packages/sp/security/index.ts +21 -0
  735. package/packages/sp/security/item.ts +29 -0
  736. package/packages/sp/security/list.ts +29 -0
  737. package/packages/sp/security/types.ts +440 -0
  738. package/packages/sp/security/web.ts +34 -0
  739. package/packages/sp/sharing/file.ts +75 -0
  740. package/packages/sp/sharing/folder.ts +69 -0
  741. package/packages/sp/sharing/funcs.ts +258 -0
  742. package/packages/sp/sharing/index.ts +27 -0
  743. package/packages/sp/sharing/item.ts +53 -0
  744. package/packages/sp/sharing/types.ts +626 -0
  745. package/packages/sp/sharing/web.ts +109 -0
  746. package/packages/sp/site-designs/index.ts +29 -0
  747. package/packages/sp/site-designs/types.ts +456 -0
  748. package/packages/sp/site-designs/web.ts +41 -0
  749. package/packages/sp/site-groups/index.ts +11 -0
  750. package/packages/sp/site-groups/types.ts +133 -0
  751. package/packages/sp/site-groups/web.ts +73 -0
  752. package/packages/sp/site-scripts/index.ts +27 -0
  753. package/packages/sp/site-scripts/list.ts +27 -0
  754. package/packages/sp/site-scripts/types.ts +243 -0
  755. package/packages/sp/site-scripts/web.ts +24 -0
  756. package/packages/sp/site-users/index.ts +12 -0
  757. package/packages/sp/site-users/types.ts +195 -0
  758. package/packages/sp/site-users/web.ts +56 -0
  759. package/packages/sp/sites/index.ts +26 -0
  760. package/packages/sp/sites/types.ts +422 -0
  761. package/packages/sp/social/index.ts +33 -0
  762. package/packages/sp/social/types.ts +381 -0
  763. package/packages/sp/spqueryable.ts +244 -0
  764. package/packages/sp/sputilities/index.ts +23 -0
  765. package/packages/sp/sputilities/types.ts +197 -0
  766. package/packages/sp/subscriptions/index.ts +10 -0
  767. package/packages/sp/subscriptions/list.ts +18 -0
  768. package/packages/sp/subscriptions/types.ts +107 -0
  769. package/packages/sp/taxonomy/index.ts +50 -0
  770. package/packages/sp/taxonomy/types.ts +508 -0
  771. package/packages/sp/tsconfig.json +16 -0
  772. package/packages/sp/types.ts +283 -0
  773. package/packages/sp/user-custom-actions/index.ts +15 -0
  774. package/packages/sp/user-custom-actions/list.ts +18 -0
  775. package/packages/sp/user-custom-actions/site.ts +18 -0
  776. package/packages/sp/user-custom-actions/types.ts +133 -0
  777. package/packages/sp/user-custom-actions/web.ts +21 -0
  778. package/packages/sp/utils/encode-path-str.ts +29 -0
  779. package/packages/sp/utils/extract-web-url.ts +21 -0
  780. package/packages/sp/utils/file-names.ts +35 -0
  781. package/packages/sp/utils/metadata.ts +5 -0
  782. package/packages/sp/utils/odata-url-from.ts +42 -0
  783. package/packages/sp/utils/to-resource-path.ts +9 -0
  784. package/packages/sp/views/index.ts +14 -0
  785. package/packages/sp/views/list.ts +33 -0
  786. package/packages/sp/views/types.ts +210 -0
  787. package/packages/sp/webparts/file.ts +21 -0
  788. package/packages/sp/webparts/index.ts +11 -0
  789. package/packages/sp/webparts/types.ts +141 -0
  790. package/packages/sp/webs/index.ts +32 -0
  791. package/packages/sp/webs/types.ts +350 -0
  792. package/packages/sp-admin/index.ts +46 -0
  793. package/packages/sp-admin/office-tenant.ts +567 -0
  794. package/packages/sp-admin/package.json +13 -0
  795. package/packages/sp-admin/site-properties.ts +45 -0
  796. package/packages/sp-admin/tenant.ts +595 -0
  797. package/packages/sp-admin/tsconfig.json +20 -0
  798. package/packages/sp-admin/types.ts +1679 -0
  799. package/packages/tsconfig-watch.json +9 -0
  800. package/packages/tsconfig.json +37 -0
  801. package/pre-install.cjs +1 -0
  802. package/samples/custom-bundle-webpack/index.ts +33 -0
  803. package/samples/custom-bundle-webpack/package-lock.json +4601 -0
  804. package/samples/custom-bundle-webpack/package.json +18 -0
  805. package/samples/custom-bundle-webpack/readme.md +102 -0
  806. package/samples/custom-bundle-webpack/tsconfig.json +12 -0
  807. package/samples/custom-bundle-webpack/webpack.config.js +27 -0
  808. package/samples/nodejs-app/.vscode/launch.json +27 -0
  809. package/samples/nodejs-app/.vscode/settings.json +10 -0
  810. package/samples/nodejs-app/.vscode/tasks.json +22 -0
  811. package/samples/nodejs-app/index.ts +63 -0
  812. package/samples/nodejs-app/package-lock.json +259 -0
  813. package/samples/nodejs-app/package.json +21 -0
  814. package/samples/nodejs-app/readme.md +140 -0
  815. package/samples/nodejs-app/tsconfig.json +14 -0
  816. package/samples/nodejs-commonjs/package-lock.json +702 -0
  817. package/samples/nodejs-commonjs/package.json +21 -0
  818. package/samples/nodejs-commonjs/readme.md +58 -0
  819. package/samples/nodejs-commonjs/src/index.ts +23 -0
  820. package/samples/nodejs-commonjs/src/settings.ts +35 -0
  821. package/samples/nodejs-commonjs/tsconfig.json +35 -0
  822. package/samples/project-preset/README.md +73 -0
  823. package/samples/project-preset/package-lock.json +21097 -0
  824. package/samples/project-preset/package.json +29 -0
  825. package/samples/project-preset/teams/4530a515-8ba7-45bb-9a27-be06b33c59d4_color.png +0 -0
  826. package/samples/project-preset/teams/4530a515-8ba7-45bb-9a27-be06b33c59d4_outline.png +0 -0
  827. package/samples/readme.md +16 -0
  828. package/settings.example.js +57 -0
  829. package/test/args.ts +107 -0
  830. package/test/clean-subsite.ts +36 -0
  831. package/test/core/assumptions.ts +99 -0
  832. package/test/core/storage.ts +60 -0
  833. package/test/core/timeline.ts +205 -0
  834. package/test/core/util.ts +205 -0
  835. package/test/graph/assets/testconvert.docx +0 -0
  836. package/test/graph/batch.ts +125 -0
  837. package/test/graph/calendars.ts +234 -0
  838. package/test/graph/columns.ts +247 -0
  839. package/test/graph/contacts.ts +254 -0
  840. package/test/graph/content-types.ts +206 -0
  841. package/test/graph/directoryobjects.ts +115 -0
  842. package/test/graph/groups.ts +130 -0
  843. package/test/graph/lists.ts +72 -0
  844. package/test/graph/onedrive.ts +365 -0
  845. package/test/graph/outlook.ts +95 -0
  846. package/test/graph/paging.ts +91 -0
  847. package/test/graph/planner.ts +160 -0
  848. package/test/graph/querable.ts +97 -0
  849. package/test/graph/search.ts +4 -0
  850. package/test/graph/shares.ts +26 -0
  851. package/test/graph/sites.ts +40 -0
  852. package/test/graph/teams.ts +76 -0
  853. package/test/graph/utilities/getTestingGraphSPSite.ts +27 -0
  854. package/test/graph/utilities/getValidUser.ts +37 -0
  855. package/test/load-settings.ts +103 -0
  856. package/test/logging/logging.ts +86 -0
  857. package/test/mocha-root-hooks.ts +227 -0
  858. package/test/nodejs/sp-extensions.ts +86 -0
  859. package/test/pnp-test.ts +60 -0
  860. package/test/queryable/add-prop.ts +24 -0
  861. package/test/queryable/behaviors.ts +188 -0
  862. package/test/queryable/invokable.ts +35 -0
  863. package/test/queryable/queryable.ts +118 -0
  864. package/test/sp/alias.ts +46 -0
  865. package/test/sp/appcatalog.ts +142 -0
  866. package/test/sp/assets/helloworld.sppkg +0 -0
  867. package/test/sp/assets/sample_file.jpg +0 -0
  868. package/test/sp/attachments.ts +134 -0
  869. package/test/sp/batch.ts +362 -0
  870. package/test/sp/clientside-pages.ts +426 -0
  871. package/test/sp/column-defaults.ts +225 -0
  872. package/test/sp/comments.ts +202 -0
  873. package/test/sp/content-types.ts +68 -0
  874. package/test/sp/favorites.ts +2 -0
  875. package/test/sp/features.ts +201 -0
  876. package/test/sp/fields.ts +396 -0
  877. package/test/sp/files.ts +338 -0
  878. package/test/sp/folders.ts +242 -0
  879. package/test/sp/forms.ts +22 -0
  880. package/test/sp/groupsitemanager.ts +88 -0
  881. package/test/sp/hubsites.ts +41 -0
  882. package/test/sp/items.ts +179 -0
  883. package/test/sp/lists.ts +319 -0
  884. package/test/sp/navigation.ts +167 -0
  885. package/test/sp/profiles.ts +2 -0
  886. package/test/sp/query-escaping.ts +94 -0
  887. package/test/sp/recycle-bin.ts +1 -0
  888. package/test/sp/regional-settings.ts +58 -0
  889. package/test/sp/related-items.ts +94 -0
  890. package/test/sp/search.ts +39 -0
  891. package/test/sp/security.ts +90 -0
  892. package/test/sp/sharing.ts +313 -0
  893. package/test/sp/site-designs.ts +224 -0
  894. package/test/sp/site-groups.ts +98 -0
  895. package/test/sp/site-scripts.ts +162 -0
  896. package/test/sp/site-users.ts +93 -0
  897. package/test/sp/sites.ts +156 -0
  898. package/test/sp/social.ts +2 -0
  899. package/test/sp/spfx.ts +52 -0
  900. package/test/sp/sputilities.ts +78 -0
  901. package/test/sp/subscriptions.ts +64 -0
  902. package/test/sp/taxonomy.ts +178 -0
  903. package/test/sp/user-custom-actions.ts +31 -0
  904. package/test/sp/views.ts +117 -0
  905. package/test/sp/webparts.ts +38 -0
  906. package/test/sp/webs.ts +249 -0
  907. package/test/test-invokable-props.ts +35 -0
  908. package/test/test-props.ts +90 -0
  909. package/test/test-recording.ts +171 -0
  910. package/test/tsconfig.json +18 -0
  911. package/tools/buildsystem/package-lock.json +4404 -0
  912. package/tools/buildsystem/package.json +56 -0
  913. package/tools/buildsystem/readme.md +23 -0
  914. package/tools/config.js +34 -0
  915. package/tools/local-module-resolver/cjs.ts +33 -0
  916. package/tools/local-module-resolver/esm-debug.ts +2 -0
  917. package/tools/local-module-resolver/esm-test.ts +2 -0
  918. package/tools/local-module-resolver/esm.ts +112 -0
  919. package/tools/local-module-resolver/readme.md +8 -0
  920. package/tsconfig.buildsystem.json +17 -0
  921. package/tsconfig.json +42 -0
@@ -0,0 +1,1679 @@
1
+
2
+ import { IResourcePath } from "@pnp/sp";
3
+
4
+ export interface IOffice365TenantInfo {
5
+ /**
6
+ * Gets a value to specify what external sharing capabilities are available. Modifying this property
7
+ * does not impact any settings stored on individual site collections. This property has no impact on Partner
8
+ * users (users added via a support partner).
9
+ */
10
+ SharingCapability: SharingCapabilities;
11
+ /**
12
+ * Gets a value to specify what external sharing capabilities are available in ODB. Modifying this property
13
+ * will impact settings stored on individual site collections.
14
+ */
15
+ ODBSharingCapability: SharingCapabilities;
16
+ /**
17
+ * Gets a value to specify if user accepting invitation must use the same email address invitation was sent to.
18
+ */
19
+ RequireAcceptingAccountMatchInvitedAccount: boolean;
20
+ /**
21
+ * Gets a bool value that if user checks generate mobile friendly Urls setting
22
+ */
23
+ MobileFriendlyUrlEnabled: boolean;
24
+ /**
25
+ * Gets a value to handle the tenant who can share settings
26
+ */
27
+ WhoCanShareAllowList: string;
28
+ /**
29
+ * Gets a value to handle guest sharing group's allow list
30
+ */
31
+ AllowSelectSGsInODBList: string[];
32
+ /**
33
+ * Gets a value to handle email attestation.
34
+ */
35
+ EmailAttestationEnabled: boolean;
36
+ /**
37
+ * Gets a value to handle guest sharing group's allow list
38
+ */
39
+ GuestSharingGroupAllowList: string;
40
+ /**
41
+ * Gets a value to handle guest user sharing to users not in guest user site collection
42
+ */
43
+ AllowGuestUserShareToUsersNotInSiteCollection: boolean;
44
+ /**
45
+ * Gets a Boolean value that specifies whether tenant users see the "Start a fresh site" menu option
46
+ */
47
+ DisplayStartASiteOption: boolean;
48
+ /**
49
+ * Gets a string which specifies the URL of the form to load in the Start a Site dialog
50
+ */
51
+ StartASiteFormUrl: string;
52
+ /**
53
+ * Gets a Boolean value that specifies whether external services are enabled for the tenancy
54
+ */
55
+ ExternalServicesEnabled: boolean;
56
+ /**
57
+ * Gets a Boolean value that specifies whether all users' My Sites are public by default
58
+ */
59
+ MySitesPublicEnabled: boolean;
60
+ /**
61
+ * Gets a Boolean value that specifies whether Everyone is visible in people picker dialogs
62
+ */
63
+ ShowEveryoneClaim: boolean;
64
+ /**
65
+ * Gets a Boolean value that specifies whether AllUsers is visible in people picker dialogs
66
+ */
67
+ ShowAllUsersClaim: boolean;
68
+ /**
69
+ * Gets a Boolean value that specifies whether EveryoneExceptExternalUsers is visible in people picker dialogs
70
+ */
71
+ ShowEveryoneExceptExternalUsersClaim: boolean;
72
+ /**
73
+ * Gets a Boolean value that specifies whether EveryoneExceptExternalUsers is allowed in people picker dialogs for private group site
74
+ */
75
+ AllowEveryoneExceptExternalUsersClaimInPrivateSite: boolean;
76
+ /**
77
+ * Gets a Boolean value that specifies whether Search and Resolve Operations in people picker dialogs do an exact match against UPN/Email
78
+ * Default behavior is doing startswith match against common properties
79
+ */
80
+ SearchResolveExactEmailOrUPN: boolean;
81
+ /**
82
+ * Gets a Boolean value that specifies whether the ML Capture settings should be shown
83
+ */
84
+ MachineLearningCaptureEnabled: boolean;
85
+ /**
86
+ * Gets a SiteInfoForSitePicker instance that represents a site that tenant has opted-in as default Content Center site
87
+ */
88
+ DefaultContentCenterSite: ISiteInfoForSitePicker;
89
+ /**
90
+ * Gets a Boolean value that specifies whether the AIBuilder features should be shown
91
+ */
92
+ AIBuilderEnabled: boolean;
93
+ /**
94
+ * Gets the default PowerApps environment in which SharePoint Syntex form processing feature will create model
95
+ */
96
+ AIBuilderDefaultPowerAppsEnvironment: string;
97
+ /**
98
+ * Gets a collection value that specifies the sites for AIBuilderEnabled features
99
+ */
100
+ AIBuilderSiteList: string[];
101
+ /**
102
+ * Gets name of the file which contains the list of AIBuilder enabled sites
103
+ */
104
+ AIBuilderSiteListFileName: string;
105
+ /**
106
+ * Gets a collection value that specifies the sites for AIBuilderEnabled features
107
+ */
108
+ AIBuilderSiteInfoList: ISiteInfoForSitePicker[];
109
+ /**
110
+ * Gets Syntex consumption billing settings
111
+ */
112
+ SyntexBillingSubscriptionSettings: ISyntexBillingContext;
113
+ /**
114
+ * Gets a status value that specifies the image tagging option
115
+ */
116
+ ImageTaggingOption: ImageTaggingChoice;
117
+ /**
118
+ * Gets a status value that specifies whether admin is done with the configuration setup
119
+ */
120
+ HasAdminCompletedCUConfiguration: boolean;
121
+ /**
122
+ * Gets a Boolean value that specifies whether ADAL is disabled or not
123
+ */
124
+ OfficeClientADALDisabled: boolean;
125
+ /**
126
+ * Gets a Boolean value that specifies whether legacy auth protocols are enabled. These include MsoFba and IDCRL.
127
+ */
128
+ LegacyAuthProtocolsEnabled: boolean;
129
+ /**
130
+ * Gets a Boolean value that specifies whether ACS app only token are blocked.
131
+ */
132
+ DisableCustomAppAuthentication: boolean;
133
+ /**
134
+ * Gets the link to organization help page in case of access denied due to conditional access policy
135
+ */
136
+ ConditionalAccessPolicyErrorHelpLink: string;
137
+ /**
138
+ * Gets a Boolean value that specifies whether the following policy is enabled
139
+ */
140
+ BlockDownloadOfViewableFilesOnUnmanagedDevices: boolean;
141
+ /**
142
+ * Gets a Boolean value that specifies whether the following policy is enabled
143
+ */
144
+ BlockDownloadOfAllFilesOnUnmanagedDevices: boolean;
145
+ /**
146
+ * Gets a Boolean value that specifies whether the following access setting is enabled
147
+ */
148
+ BlockAccessOnUnmanagedDevices: boolean;
149
+ /**
150
+ * Gets a Boolean value that specifies whether the following access setting is enabled
151
+ */
152
+ AllowLimitedAccessOnUnmanagedDevices: boolean;
153
+ /**
154
+ * Gets a Boolean value that specifies whether the following policy is enabled
155
+ */
156
+ BlockDownloadOfViewableFilesForGuests: boolean;
157
+ /**
158
+ * Gets a Boolean value that specifies whether the following policy is enabled
159
+ */
160
+ BlockDownloadOfAllFilesForGuests: boolean;
161
+ /**
162
+ * Gets whether ODB sites should have the Shared with Everyone folder automatically provisioned or not
163
+ */
164
+ ProvisionSharedWithEveryoneFolder: boolean;
165
+ /**
166
+ * Gets the domain to which to accelerate the sign-in experience to. i.e. by skipping the OrgID/EvoSTS sign-in page for end-user
167
+ */
168
+ SignInAccelerationDomain: string;
169
+ /**
170
+ * Gets a value to force auto-acceleration sign-in on the tenant regardless of its external sharing status
171
+ */
172
+ EnableGuestSignInAcceleration: boolean;
173
+ /**
174
+ * Gets a Boolean value that specifies whether ExplorerView feature uses persistent cookies
175
+ */
176
+ UsePersistentCookiesForExplorerView: boolean;
177
+ /**
178
+ * Gets a value to specify if external users can reshare regardless of Members Can Share state
179
+ */
180
+ PreventExternalUsersFromResharing: boolean;
181
+ /**
182
+ * A list of site templates that tenant has opted-in/opted-out to sync Content types
183
+ */
184
+ ContentTypeSyncSiteTemplatesList: string[];
185
+ /**
186
+ * Gets a value to specify if BCC functionality is enabled for external invitations
187
+ */
188
+ BccExternalSharingInvitations: boolean;
189
+ /**
190
+ * Gets list of recipients to be BCC'ed on all external sharing invitations
191
+ */
192
+ BccExternalSharingInvitationsList: string;
193
+ /**
194
+ * Gets a value to specify if User Voice for customer feedback is enabled
195
+ */
196
+ UserVoiceForFeedbackEnabled: boolean;
197
+ /**
198
+ * Gets a value to specify if External Image Search is enabled on the File Picker
199
+ */
200
+ FilePickerExternalImageSearchEnabled: boolean;
201
+ /**
202
+ * Gets a all Organization Assets libraries
203
+ */
204
+ GetOrgAssets: ISPOrgAssets;
205
+ /**
206
+ * Gets whether Email Attestation is enabled
207
+ */
208
+ EmailAttestationRequired: boolean;
209
+ /**
210
+ * Gets the number of days between reattestation
211
+ */
212
+ EmailAttestationReAuthDays: number;
213
+ /**
214
+ * Gets whether external user expiration is enabled
215
+ */
216
+ ExternalUserExpirationRequired: boolean;
217
+ /**
218
+ * Gets the number of days before external user expiration if not individually extended
219
+ */
220
+ ExternalUserExpireInDays: number;
221
+ /**
222
+ * Gets whether or not the synced tenant properties will be updated on the next request
223
+ */
224
+ SyncPrivacyProfileProperties: boolean;
225
+ /**
226
+ * Gets whether or not the AAD B2B management policy will be synced on the next request
227
+ */
228
+ SyncAadB2BManagementPolicy: boolean;
229
+ /**
230
+ * Gets the Stream Launch Config stat
231
+ */
232
+ StreamLaunchConfig: number;
233
+ /**
234
+ * Gets the Stream Launch Config Last Updated value
235
+ */
236
+ StreamLaunchConfigLastUpdated: Date;
237
+ /**
238
+ * Gets the Stream Launch Config update count
239
+ */
240
+ StreamLaunchConfigUpdateCount: number;
241
+ /**
242
+ * Gets the Auth Context Resilient Mode
243
+ */
244
+ AuthContextResilienceMode: SPResilienceModeType;
245
+ /**
246
+ * Gets a value to specify the number of days that anonymous links expire
247
+ */
248
+ RequireAnonymousLinksExpireInDays: number;
249
+ /**
250
+ * Gets a value to specify a space separated list of allowed domain names
251
+ */
252
+ SharingAllowedDomainList: string;
253
+ /**
254
+ * Gets a value to specify a space separated list of blocked domain names
255
+ */
256
+ SharingBlockedDomainList: string;
257
+ /**
258
+ * Gets a value to specify the restriction mode
259
+ */
260
+ SharingDomainRestrictionMode: SharingDomainRestrictionModes;
261
+ /**
262
+ * Gets a value that allows members to search all existing guest users in the directory
263
+ */
264
+ ShowPeoplePickerSuggestionsForGuestUsers: boolean;
265
+ /**
266
+ * Gets default sharing link type
267
+ */
268
+ DefaultSharingLinkType: SharingLinkType;
269
+ /**
270
+ * Gets file anonymous link type
271
+ */
272
+ FileAnonymousLinkType: AnonymousLinkType;
273
+ /**
274
+ * Gets folder anonymous link type
275
+ */
276
+ FolderAnonymousLinkType: AnonymousLinkType;
277
+ /**
278
+ * Gets ODBMCS
279
+ */
280
+ ODBMembersCanShare: string;
281
+ /**
282
+ * Gets ODBAccessRequests
283
+ */
284
+ ODBAccessRequests: SharingState;
285
+ /**
286
+ * Gets a value to specify if site owner will get email notification if the user shared an item with external user
287
+ */
288
+ NotifyOwnersWhenItemsReshared: boolean;
289
+ /**
290
+ * Gets a value to specify if site owner will get email notification if the external user accepts the invitation
291
+ */
292
+ NotifyOwnersWhenInvitationsAccepted: boolean;
293
+ /**
294
+ * Gets a value to specify if site owner will get notification if the user created/updated an anonymous link in ODB
295
+ */
296
+ OwnerAnonymousNotification: boolean;
297
+ /**
298
+ * Gets a value to enable or disable push notifications in OneDrive
299
+ */
300
+ NotificationsInOneDriveForBusinessEnabled: boolean;
301
+ /**
302
+ * Gets a value to enable or disable push notifications in SharePoint
303
+ */
304
+ NotificationsInSharePointEnabled: boolean;
305
+ /**
306
+ * Whether comments on site pages are disabled or not
307
+ */
308
+ CommentsOnSitePagesDisabled: boolean;
309
+ /**
310
+ * Whether comments on files are disabled or not
311
+ */
312
+ CommentsOnFilesDisabled: boolean;
313
+ /**
314
+ * Whether comments on list items are disabled or not
315
+ */
316
+ CommentsOnListItemsDisabled: boolean;
317
+ /**
318
+ * Whether viewers commenting on media items is disabled or not
319
+ */
320
+ ViewersCanCommentOnMediaDisabled: boolean;
321
+ /**
322
+ * Whether social bar on site pages is enabled or not
323
+ */
324
+ SocialBarOnSitePagesDisabled: boolean;
325
+ /**
326
+ * Gets default link permission
327
+ */
328
+ DefaultLinkPermission: SharingLinkType;
329
+ BlockDownloadLinksFileType: BlockDownloadLinksFileTypes;
330
+ /**
331
+ * Gets a value to specify whether anyone links should track link users
332
+ */
333
+ AnyoneLinkTrackUsers: boolean;
334
+ /**
335
+ * Gets collaboration type for fluid on OneDrive partition
336
+ */
337
+ OneDriveLoopSharingCapability: SharingCapabilities;
338
+ /**
339
+ * Gets default share link scope for fluid on OneDrive partition
340
+ */
341
+ OneDriveLoopDefaultSharingLinkScope: SharingScope;
342
+ /**
343
+ * Gets default share link role for fluid on OneDrive partition
344
+ */
345
+ OneDriveLoopDefaultSharingLinkRole: number;
346
+ /**
347
+ * Gets request files link enabled on OneDrive partition
348
+ */
349
+ OneDriveRequestFilesLinkEnabled: boolean;
350
+ /**
351
+ * Gets request files link expiration days on OneDrive partition
352
+ */
353
+ OneDriveRequestFilesLinkExpirationInDays: number;
354
+ /**
355
+ * Gets collaboration type for fluid on core partition
356
+ */
357
+ CoreLoopSharingCapability: SharingCapabilities;
358
+ /**
359
+ * Gets default share link scope for fluid on core partition
360
+ */
361
+ CoreLoopDefaultSharingLinkScope: SharingScope;
362
+ /**
363
+ * Gets default share link role for fluid on core partition
364
+ */
365
+ CoreLoopDefaultSharingLinkRole: number;
366
+ /**
367
+ * Gets collaboration type on core partition
368
+ */
369
+ CoreSharingCapability: SharingCapabilities;
370
+ /**
371
+ * Gets request files link enabled on core partition
372
+ */
373
+ CoreRequestFilesLinkEnabled: boolean;
374
+ /**
375
+ * Gets request files link expiration days on core partition
376
+ */
377
+ CoreRequestFilesLinkExpirationInDays: number;
378
+ /**
379
+ * Gets a value to indicate whether to allow anonymous meeting participants to access whiteboards
380
+ */
381
+ AllowAnonymousMeetingParticipantsToAccessWhiteboards: SharingState;
382
+ /**
383
+ * Gets address bar link permission
384
+ */
385
+ AddressbarLinkPermission: number;
386
+ /**
387
+ * Gets a value to specify whether Auto news digest is enabled
388
+ */
389
+ EnableAutoNewsDigest: boolean;
390
+ /**
391
+ * Gets customized external sharing service Url
392
+ */
393
+ CustomizedExternalSharingServiceUrl: string;
394
+ /**
395
+ * Gets a value to specify whether AAD B2B integration is enabled
396
+ */
397
+ EnableAzureADB2BIntegration: boolean;
398
+ /**
399
+ * Gets a value to specify whether Add To OneDrive is disabled
400
+ */
401
+ DisableAddToOneDrive: boolean;
402
+ /**
403
+ * Gets a value to specify whether to include at a glance in the sharing emails
404
+ */
405
+ IncludeAtAGlanceInShareEmails: boolean;
406
+ /**
407
+ * Get status of feature sync client restriction allowed
408
+ */
409
+ IsUnmanagedSyncClientRestrictionFlightEnabled: boolean;
410
+ /**
411
+ * Get sync client restrictions
412
+ */
413
+ IsUnmanagedSyncClientForTenantRestricted: boolean;
414
+ /**
415
+ * Get sync client trusted domain guids
416
+ */
417
+ AllowedDomainListForSyncClient: string[];
418
+ /**
419
+ * Get whether Mac clients should be blocked from sync
420
+ */
421
+ BlockMacSync: boolean;
422
+ /**
423
+ * Get sync client excluded file extensions
424
+ */
425
+ ExcludedFileExtensionsForSyncClient: string[];
426
+ /**
427
+ * Gets whether to hide the sync button on OneDrive for Business sites
428
+ */
429
+ HideSyncButtonOnODB: boolean;
430
+ /**
431
+ * Gets whether the sync button should use the Next-Generation Sync Client on OneDrive for Business sites
432
+ */
433
+ ShowNGSCDialogForSyncOnODB: boolean;
434
+ /**
435
+ * Gets whether Nucleus should be disabled for List Sync
436
+ */
437
+ DisableListSync: boolean;
438
+ /**
439
+ * Gets a value to enable or disable comment text contents in email
440
+ */
441
+ AllowCommentsTextOnEmailEnabled: boolean;
442
+ /**
443
+ * Gets whether Onedrive creation for guest users is enabled in the tenancy
444
+ */
445
+ OneDriveForGuestsEnabled: boolean;
446
+ /**
447
+ * IPAddressEnforcement for tenancy
448
+ */
449
+ IPAddressEnforcement: boolean;
450
+ /**
451
+ * Gets the IPAddress range that is allowed to access the tenancy, CIDR range that looks like 10.12.30/4. Also note: IPAddressEnforcement needs to be true
452
+ */
453
+ IPAddressAllowList: string;
454
+ /**
455
+ * Gets the WAC Token lifetime if tenant opted for IPAddressEnforcement
456
+ */
457
+ IPAddressWACTokenLifetime: number;
458
+ /**
459
+ * Gets whether Hashed Proof Token IP binding is enabled
460
+ */
461
+ ReduceTempTokenLifetimeEnabled: boolean;
462
+ /**
463
+ * Determines the grace period for Hashed Proof Tokens from an IP address that doesn't match the
464
+ * IP address in the token, when the IP policy is not enabled and IP Binding is enabled
465
+ */
466
+ ReduceTempTokenLifetimeValue: number;
467
+ /**
468
+ * Gets whether EWS FindPeople with ABPs is enabled in PeoplePicker
469
+ */
470
+ UseFindPeopleInPeoplePicker: boolean;
471
+ /**
472
+ * Gets conditional access policy type
473
+ */
474
+ ConditionalAccessPolicy: SPOConditionalAccessPolicyType;
475
+ /**
476
+ * Gets the advanced setting of SPO conditional access policy
477
+ */
478
+ AllowDownloadingNonWebViewableFiles: boolean;
479
+ /**
480
+ * Gets limited access file type
481
+ */
482
+ LimitedAccessFileType: SPOLimitedAccessFileType;
483
+ /**
484
+ * Gets the advanced setting of SPO conditional access policy, A boolean value that specifies whether to allow editing in WAC
485
+ */
486
+ AllowEditing: boolean;
487
+ /**
488
+ * Gets the setting of whether app-enforced restrictions apply to TOAA users
489
+ */
490
+ ApplyAppEnforcedRestrictionsToAdHocRecipients: boolean;
491
+ /**
492
+ * Gets whether to show promoted file handlers
493
+ */
494
+ EnablePromotedFileHandlers: boolean;
495
+ /**
496
+ * Gets whether 2013 workflows are configured and enabled for the tenant
497
+ */
498
+ Workflows2013State: Workflows2013State;
499
+ /**
500
+ * Gets whether 2010 workflows are enabled for the tenant
501
+ */
502
+ Workflow2010Disabled: boolean;
503
+ /**
504
+ * Gets whether new 2010 workflows can be created for the tenant
505
+ */
506
+ StopNew2010Workflows: boolean;
507
+ /**
508
+ * Gets whether new 2013 workflows can be created for the tenant
509
+ */
510
+ StopNew2013Workflows: boolean;
511
+ /**
512
+ * Gets whether back to classic link is disabled in Modern UX
513
+ */
514
+ DisableBackToClassic: boolean;
515
+ /**
516
+ * Gets IBImplicitGroupBased value
517
+ */
518
+ IBImplicitGroupBased: boolean;
519
+ /**
520
+ * Gets InformationBarriersSuspension value
521
+ */
522
+ InformationBarriersSuspension: boolean;
523
+ /**
524
+ * Gets DefaultODBMode value
525
+ */
526
+ DefaultODBMode: string;
527
+ /**
528
+ * Gets a value to specify BlockUserInfoVisibilityInOneDrive
529
+ */
530
+ BlockUserInfoVisibilityInOneDrive: TenantBrowseUserInfoPolicyValue;
531
+ /**
532
+ * Gets a value to specify BlockUserInfoVisibilityInSharePoint
533
+ */
534
+ BlockUserInfoVisibilityInSharePoint: TenantBrowseUserInfoPolicyValue;
535
+ /**
536
+ * Gets AllowOverrideForBlockUserInfoVisibility value
537
+ */
538
+ AllowOverrideForBlockUserInfoVisibility: boolean;
539
+ /**
540
+ * Indicates whether personal list creation is disabled or not on the tenant
541
+ */
542
+ DisablePersonalListCreation: boolean;
543
+ /**
544
+ * Collection of modern list template ids which are disabled on the tenant
545
+ */
546
+ DisabledModernListTemplateIds: string[];
547
+ /**
548
+ * Indicates whether activating spaces is disabled or not on the tenant
549
+ */
550
+ DisableSpacesActivation: boolean;
551
+ /**
552
+ * Gets a value to specify whether the sync button on team sites and other ODBs is hidden.
553
+ * (Basically this hides the sync button on all document libraries except the ODB that the user owns.)
554
+ */
555
+ HideSyncButtonOnDocLib: boolean;
556
+ /**
557
+ * Indicates whether Outlook PST version trimming is disabled or not on the tenant
558
+ */
559
+ DisableOutlookPSTVersionTrimming: boolean;
560
+ /**
561
+ * Gets MediaTranscription value
562
+ */
563
+ MediaTranscription: MediaTranscriptionPolicyType;
564
+ /**
565
+ * Gets the value of the setting which enables users to view files in Explorer
566
+ */
567
+ ViewInFileExplorerEnabled: boolean;
568
+ /**
569
+ * Gets whether Open In Desktop should be enabled
570
+ */
571
+ ShowOpenInDesktopOptionForSyncedFiles: boolean;
572
+ /**
573
+ * Gets a value to handle showing group suggestions for IB in PeoplePicker
574
+ */
575
+ ShowPeoplePickerGroupSuggestionsForIB: boolean;
576
+ }
577
+
578
+ export enum SharingCapabilities {
579
+ /**
580
+ * External user sharing (share by email) and guest link sharing are both disabled for all site collections
581
+ * in the tenancy. No new external user invitations or sharing links can be created, and any content previously
582
+ * shared becomes inaccessible to external users.
583
+ */
584
+ Disabled = 0,
585
+ /**
586
+ * External user sharing is enabled for the tenancy, but guest link sharing is disabled. Each individual
587
+ * site collection's sharing properties govern whether the site collection has sharing disabled or allows
588
+ * external user sharing, but a site collection cannot enable guest link sharing.
589
+ */
590
+ ExternalUserSharingOnly,
591
+ /**
592
+ * External user sharing and guest link sharing are enabled for the tenancy. Each individual site
593
+ * collection's sharing properties govern whether the site collection has sharing disabled, allows external user
594
+ * sharing only, or allows both external user sharing and guest link sharing.
595
+ */
596
+ ExternalUserAndGuestSharing,
597
+ /**
598
+ * External user sharing and guest link sharing are both disabled for the tenancy, but AllowGuestUserSignIn is enabled.
599
+ * Each individual site collection's sharing properties govern whether the site collection has sharing disabled or allows
600
+ * existing external user signing in, but a site collection cannot enable guest link sharing and cannot share with new external users.
601
+ */
602
+ ExistingExternalUserSharingOnly
603
+ }
604
+
605
+ export interface ISiteInfoForSitePicker {
606
+ SiteId: string;
607
+ Url: string;
608
+ SiteName: string;
609
+ Error: string;
610
+ }
611
+
612
+ export enum ImageTaggingChoice {
613
+ Disabled = 1,
614
+ Basic = 2,
615
+ Enhanced = 3,
616
+ }
617
+
618
+ export interface ISPOrgAssets {
619
+ WebId: string;
620
+ SiteId: string;
621
+ Url: IResourcePath;
622
+ Domain: IResourcePath;
623
+ }
624
+
625
+ export enum AzureSubscriptionState {
626
+ Unknown = 0,
627
+ Active = 1,
628
+ Deleted = 2,
629
+ Disabled = 3,
630
+ Expired = 4,
631
+ PastDue = 5,
632
+ Warned = 6,
633
+ }
634
+
635
+ export interface ISyntexBillingContext {
636
+ AzureResourceId: string;
637
+ AzureSubscriptionState: AzureSubscriptionState;
638
+ Location: string;
639
+ Updated: Date;
640
+ }
641
+
642
+ export enum SPResilienceModeType {
643
+ DefaultAAD = 0,
644
+ Enabled = 1,
645
+ Disabled = 2,
646
+ }
647
+
648
+ export enum SharingDomainRestrictionModes {
649
+ None = 0,
650
+ AllowList = 1,
651
+ BlockList = 2,
652
+ }
653
+ export enum SharingLinkType {
654
+ View,
655
+ Edit,
656
+ Review,
657
+ Embed,
658
+ BlocksDownload,
659
+ CreateOnly,
660
+ AddressBar,
661
+ AdminDefault,
662
+ Unknown,
663
+ }
664
+
665
+ export enum AnonymousLinkType {
666
+ None,
667
+ View,
668
+ Edit
669
+ }
670
+
671
+ export enum SharingState {
672
+ Unspecified,
673
+ On,
674
+ Off
675
+ }
676
+
677
+ export enum BlockDownloadLinksFileTypes {
678
+ WebPreviewableFiles = 1,
679
+ ServerRenderedFilesOnly = 2
680
+ }
681
+
682
+ export enum SharingScope {
683
+ Anyone = 0,
684
+ Organization = 1,
685
+ SpecificPeople = 2,
686
+ }
687
+
688
+ export enum SPOConditionalAccessPolicyType {
689
+ AllowFullAccess = 0,
690
+ AllowLimitedAccess,
691
+ BlockAccess,
692
+ AuthenticationContext,
693
+ }
694
+
695
+ export enum SPOLimitedAccessFileType {
696
+ OfficeOnlineFilesOnly = 0,
697
+ WebPreviewableFiles,
698
+ OtherFiles,
699
+ }
700
+
701
+ export enum Workflows2013State {
702
+ Disabled,
703
+ Configuring,
704
+ Enabled,
705
+ }
706
+
707
+ export enum TenantBrowseUserInfoPolicyValue {
708
+ ApplyToNoUsers = 0,
709
+ ApplyToGuestAndExternalUsers = 1,
710
+ ApplyToInternalUsers = 2,
711
+ ApplyToAllUsers = 3,
712
+ }
713
+
714
+ export enum MediaTranscriptionPolicyType {
715
+ Enabled = 0,
716
+ Disabled = 1,
717
+ }
718
+
719
+ export enum SPOTenantCdnType {
720
+ Public,
721
+ Private,
722
+ }
723
+
724
+ export enum SPOrgAssetType {
725
+ // The flag for Undefined is 0000.
726
+ Undefined = 0x00,
727
+ // The flag for ImageDocumentLibrary is 0001.
728
+ ImageDocumentLibrary = 0x01,
729
+ // The flag for OfficeTemplateLibrary is 0010.
730
+ OfficeTemplateLibrary = 0x02,
731
+ // The flag for OfficeFontLibrary is 0100.
732
+ OfficeFontLibrary = 0x04,
733
+ }
734
+
735
+ export enum SPOTenantCdnPolicyType {
736
+ IncludeFileExtensions,
737
+ ExcludeRestrictedSiteClassifications,
738
+ ExcludeIfNoScriptDisabled,
739
+ ExcludeRestrictedSiteClassificationsFileExtensions
740
+ }
741
+
742
+ export interface IThemeProperties {
743
+ Name: string;
744
+ Palette: Record<string, string>;
745
+ IsInverted: boolean;
746
+ }
747
+
748
+ export interface IGetExternalUsersResults {
749
+ UserCollectionPosition: number;
750
+ TotalUserCount: number;
751
+ ExternalUserCollection: IExternalUser[];
752
+ }
753
+
754
+ export interface IExternalUser {
755
+ AcceptedAs: string;
756
+ DisplayName: string;
757
+ InvitedAs: string;
758
+ InvitedBy: string | null;
759
+ IsCrossTenant: boolean;
760
+ LoginName: string;
761
+ UniqueId: string;
762
+ UserId: number;
763
+ WhenCreated: string;
764
+ }
765
+
766
+ export enum SortOrder {
767
+ Ascending,
768
+ Descending,
769
+ }
770
+
771
+ export interface IRemoveExternalUsersResults {
772
+ RemoveFailed: string[];
773
+ RemoveSucceeded: string[];
774
+ }
775
+
776
+ export enum ImportProfilePropertiesUserIdTypes {
777
+ Email,
778
+ CloudId,
779
+ PrincipalName,
780
+ }
781
+
782
+ export interface IImportProfilePropertiesJobInfo {
783
+ JobId: string;
784
+ State: ImportProfilePropertiesJobState;
785
+ SourceUri: string;
786
+ ImportProfilePropertiesJobError: any;
787
+ ErrorMessage: string;
788
+ LogFolderUri: string;
789
+ }
790
+
791
+ export enum ImportProfilePropertiesJobState {
792
+ Unknown = 0,
793
+ Submitted = 1,
794
+ Processing = 2,
795
+ Queued = 3,
796
+ Succeeded = 4,
797
+ Error = 5,
798
+ }
799
+
800
+ export interface ISPOUserSessionRevocationResult {
801
+ State: SPOUserSessionRevocationState;
802
+ }
803
+
804
+ export enum SPOUserSessionRevocationState {
805
+ FeatureDisabled = 0,
806
+ UserNotFound = 1,
807
+ Failure = 2,
808
+ NonInstantaneousSuccess = 3,
809
+ InstantaneousSuccess = 4,
810
+ }
811
+
812
+ export interface IGroupCreationParams {
813
+ Description: string;
814
+ Owners: string[];
815
+ CreationOptions: string[];
816
+ Classification: string;
817
+ }
818
+
819
+ export interface ITenantSitePropertiesInfo {
820
+ /**
821
+ * The Url of the site
822
+ */
823
+ Url: string;
824
+ /**
825
+ * The status of the site
826
+ */
827
+ Status: string;
828
+ /**
829
+ * The TimeZone ID
830
+ */
831
+ TimeZoneId: number;
832
+ /**
833
+ * The last time content was modified on the site
834
+ */
835
+ LastContentModifiedDate: string;
836
+ /**
837
+ * A description of the lock issue
838
+ */
839
+ LockIssue: string;
840
+ /**
841
+ * The average usuage of resources by user code
842
+ */
843
+ AverageResourceUsage: number;
844
+ /**
845
+ * The current usuage of resources by user code
846
+ */
847
+ CurrentResourceUsage: number;
848
+ /**
849
+ * The current usage of storage for the site
850
+ */
851
+ StorageUsage: number;
852
+ /**
853
+ * The number of SPWebs in the site
854
+ */
855
+ WebsCount: number;
856
+ /**
857
+ * The compatibility leve of this site
858
+ */
859
+ CompatibilityLevel: number;
860
+ /**
861
+ * The email address of the site owner
862
+ */
863
+ OwnerEmail: string;
864
+ /**
865
+ * The HubSiteId of the HubSite this site is associated with
866
+ */
867
+ HubSiteId: string;
868
+ /**
869
+ * Whether or not this site is a HubSite
870
+ */
871
+ IsHubSite: boolean;
872
+ /**
873
+ * The GroupId of the group this site is associated with
874
+ */
875
+ RelatedGroupId: string;
876
+ /**
877
+ * The GroupId of the site
878
+ */
879
+ GroupId: string;
880
+ /**
881
+ * Site's description
882
+ */
883
+ Description: string;
884
+ /**
885
+ * Gets if the site is connected to a team in Microsoft Teams
886
+ */
887
+ IsTeamsConnected: boolean;
888
+ /**
889
+ * Gets if the site is connected to a team channel in Microsoft Teams
890
+ */
891
+ IsTeamsChannelConnected: boolean;
892
+ /**
893
+ * When the site is connected to a team channel in Microsoft Teams, gets the type of channel the site is connected to
894
+ */
895
+ TeamsChannelType: TeamsChannelTypeValue;
896
+ /**
897
+ * The Storage Quota
898
+ */
899
+ StorageMaximumLevel: number;
900
+ /**
901
+ * The warning level for storage usage
902
+ */
903
+ StorageWarningLevel: number;
904
+ /**
905
+ * The storage quota type for the site
906
+ */
907
+ StorageQuotaType: string;
908
+ /**
909
+ * Title Translations for the site
910
+ */
911
+ TitleTranslations: string[];
912
+ /**
913
+ * The maximum amount of machine resources that can be used by user code
914
+ */
915
+ UserCodeMaximumLevel: number;
916
+ /**
917
+ * The amount of machine resources used by user code which triggers warning
918
+ */
919
+ UserCodeWarningLevel: number;
920
+ /**
921
+ * The site's title
922
+ */
923
+ Title: string;
924
+ /**
925
+ * Flag that indicates a site has Holds
926
+ */
927
+ HasHolds: boolean;
928
+ /**
929
+ * The decoded login name of the site owner
930
+ */
931
+ Owner: string;
932
+ /**
933
+ * The encoded login name of the site owner Example: i:0#.f|membership|admin@thing.domain.net
934
+ */
935
+ OwnerLoginName: string;
936
+ /**
937
+ * The login name of the group owner
938
+ */
939
+ GroupOwnerLoginName: string;
940
+ /**
941
+ * Whether group owner is site admin
942
+ */
943
+ IsGroupOwnerSiteAdmin: boolean;
944
+ /**
945
+ * Whether update secondary admin during setting primary admin
946
+ */
947
+ SetOwnerWithoutUpdatingSecondaryAdmin: boolean;
948
+ /**
949
+ * The site owner name
950
+ */
951
+ OwnerName: string;
952
+ /**
953
+ * The site's web template name
954
+ */
955
+ Template: string;
956
+ /**
957
+ * The Locale ID of the site
958
+ */
959
+ Lcid: number;
960
+ /**
961
+ * Flag that indicates is a site supports self-service upgrade
962
+ */
963
+ AllowSelfServiceUpgrade: boolean;
964
+ /**
965
+ * A string representing the lock state of the site
966
+ */
967
+ LockState: string;
968
+ /**
969
+ * Determines whether the site has AddAndCustomizePages denied
970
+ */
971
+ DenyAddAndCustomizePages: DenyAddAndCustomizePagesStatus;
972
+ /**
973
+ * Determines whether the site is resticted to a specific geo location
974
+ */
975
+ RestrictedToRegion: RestrictedToRegion;
976
+ /**
977
+ * Determines whether PWA is enabled for the site
978
+ */
979
+ PWAEnabled: PWAEnabledStatus;
980
+ /**
981
+ *
982
+ */
983
+ SharingCapability: SharingCapabilities;
984
+ /**
985
+ *
986
+ */
987
+ SiteDefinedSharingCapability: SharingCapabilities;
988
+ /**
989
+ * Indicates whether company wide sharing links are disabled in all the webs of this site
990
+ */
991
+ DisableCompanyWideSharingLinks: CompanyWideSharingLinksPolicy;
992
+ /**
993
+ * Flag that controls allowing members to search guest users in the directory
994
+ */
995
+ ShowPeoplePickerSuggestionsForGuestUsers: boolean;
996
+ /**
997
+ * Indicates what this site's domain restriction mode is
998
+ */
999
+ SharingDomainRestrictionMode: SharingDomainRestrictionModes;
1000
+ /**
1001
+ * A list of allowed domain names for this site
1002
+ */
1003
+ SharingAllowedDomainList: string;
1004
+ /**
1005
+ * A list of blocked domain names for this site
1006
+ */
1007
+ SharingBlockedDomainList: string;
1008
+ /**
1009
+ * Flag that controls access from devices that aren't compliant or joined to a domain to have limited access (web-only, without the Download, Print, and Sync commands)
1010
+ */
1011
+ ConditionalAccessPolicy: SPOConditionalAccessPolicyType;
1012
+ /**
1013
+ * Indicates whether end users can download non-viewable files (e.g. zip)
1014
+ */
1015
+ AllowDownloadingNonWebViewableFiles: boolean;
1016
+ /**
1017
+ * Specifies what files can be viewed when ConditionalAccessPolicy is set to AllowLimitedAccess
1018
+ */
1019
+ LimitedAccessFileType: SPOLimitedAccessFileType;
1020
+ /**
1021
+ * Indicates whether WAC files should be open in Edit mode.
1022
+ */
1023
+ AllowEditing: boolean;
1024
+ /**
1025
+ * The Guid of an Information Protection label
1026
+ */
1027
+ SensitivityLabel: string;
1028
+ /**
1029
+ * The Guid of an Information Protection label (2)
1030
+ */
1031
+ SensitivityLabel2: string;
1032
+ /**
1033
+ * Indicates whether app views are disabled in all the webs of this site
1034
+ */
1035
+ DisableAppViews: AppViewsPolicy;
1036
+ /**
1037
+ * Indicates whether flows are disabled in all the webs of this site
1038
+ */
1039
+ DisableFlows: FlowsPolicy;
1040
+ /**
1041
+ * Gets the authentication context strength for this site for (deprecated, use AuthenticationContextName)
1042
+ */
1043
+ AuthContextStrength: string;
1044
+ /**
1045
+ * Gets the authentication context for this site for all the webs
1046
+ */
1047
+ AuthenticationContextName: string;
1048
+ /**
1049
+ * Whether comments on site pages are disabled or not
1050
+ */
1051
+ CommentsOnSitePagesDisabled: boolean;
1052
+ /**
1053
+ * Whether social bar on site pages is enabled or not
1054
+ */
1055
+ SocialBarOnSitePagesDisabled: boolean;
1056
+ /**
1057
+ * The default link type for this site
1058
+ */
1059
+ DefaultSharingLinkType: SharingLinkType;
1060
+ /**
1061
+ * The default link permission for this site
1062
+ */
1063
+ DefaultLinkPermission: SharingPermissionType;
1064
+ /**
1065
+ *
1066
+ */
1067
+ BlockDownloadLinksFileType: BlockDownloadLinksFileTypes;
1068
+ /**
1069
+ *
1070
+ */
1071
+ OverrideBlockUserInfoVisibility: SiteUserInfoVisibilityPolicyValue;
1072
+ /**
1073
+ * The default link to existing access for this site
1074
+ */
1075
+ DefaultLinkToExistingAccess: boolean;
1076
+ /**
1077
+ * This is to reset default link to existing access for this site. After resetting, the value will be default (false) or respect the higher level value
1078
+ */
1079
+ DefaultLinkToExistingAccessReset: boolean;
1080
+ /**
1081
+ *
1082
+ */
1083
+ AnonymousLinkExpirationInDays: number;
1084
+ /**
1085
+ *
1086
+ */
1087
+ OverrideTenantAnonymousLinkExpirationPolicy: boolean;
1088
+ /**
1089
+ *
1090
+ */
1091
+ ExternalUserExpirationInDays: number;
1092
+ /**
1093
+ *
1094
+ */
1095
+ OverrideTenantExternalUserExpirationPolicy: boolean;
1096
+ /**
1097
+ *
1098
+ */
1099
+ SharingLockDownEnabled: boolean;
1100
+ /**
1101
+ *
1102
+ */
1103
+ SharingLockDownCanBeCleared: boolean;
1104
+ /**
1105
+ * The collaboration type for fluid
1106
+ */
1107
+ LoopSharingCapability: SharingCapabilities;
1108
+ /**
1109
+ * Boolean whether collaboration type for fluid can superseed that on partition level
1110
+ */
1111
+ LoopOverrideSharingCapability: boolean;
1112
+ /**
1113
+ * Default share link scope for fluid
1114
+ */
1115
+ LoopDefaultSharingLinkScope: boolean;
1116
+ /**
1117
+ * Default share link role for fluid
1118
+ */
1119
+ LoopDefaultSharingLinkRole: number;
1120
+ /**
1121
+ * Gets request files link enabled
1122
+ */
1123
+ RequestFilesLinkEnabled: boolean;
1124
+ /**
1125
+ * Gets request files link expiration days
1126
+ */
1127
+ RequestFilesLinkExpirationInDays: number;
1128
+ /**
1129
+ * Gets the IB segment GUIDs
1130
+ */
1131
+ IBSegments: string[];
1132
+ /**
1133
+ * IBMode
1134
+ */
1135
+ IBMode: string;
1136
+ /**
1137
+ * Gets the media transcription policy
1138
+ */
1139
+ MediaTranscription: MediaTranscriptionPolicyType;
1140
+ /**
1141
+ * Gets the Block download policy flag
1142
+ */
1143
+ BlockDownloadPolicy: boolean;
1144
+ /**
1145
+ * Gets the Block download policy enforced Microsoft365 group GUIDs
1146
+ */
1147
+ BlockDownloadMicrosoft365GroupIds: string[];
1148
+ /**
1149
+ * Gets the Microsoft365 group GUIDs that are excluded from Block download policy
1150
+ */
1151
+ ExcludedBlockDownloadGroupIds: string[];
1152
+ /**
1153
+ * Gets the Read only access policy flag
1154
+ */
1155
+ ReadOnlyAccessPolicy: boolean;
1156
+ /**
1157
+ * Gets the Read only access for unmanaged devices policy flag
1158
+ */
1159
+ ReadOnlyForUnmanagedDevices: boolean;
1160
+ }
1161
+
1162
+ export enum SpoSiteLockState {
1163
+ Unlock,
1164
+ NoAdditions,
1165
+ ReadOnly,
1166
+ NoAccess,
1167
+ }
1168
+
1169
+ export enum TeamsChannelTypeValue {
1170
+ None = 0,
1171
+ PrivateChannel = 1,
1172
+ SharedChannel = 2,
1173
+ StandardChannel = 3,
1174
+ }
1175
+
1176
+ export enum DenyAddAndCustomizePagesStatus {
1177
+ Unknown,
1178
+ Disabled,
1179
+ Enabled,
1180
+ }
1181
+
1182
+ export enum RestrictedToRegion {
1183
+ NoRestriction,
1184
+ BlockMoveOnly,
1185
+ BlockFull,
1186
+ Unknown,
1187
+ }
1188
+
1189
+ export enum PWAEnabledStatus {
1190
+ Unknown,
1191
+ Disabled,
1192
+ Enabled
1193
+ }
1194
+
1195
+ export enum CompanyWideSharingLinksPolicy {
1196
+ Unknown = 0,
1197
+ Disabled = 1,
1198
+ NotDisabled = 2,
1199
+ }
1200
+
1201
+ export enum AppViewsPolicy {
1202
+ Unknown = 0,
1203
+ Disabled = 1,
1204
+ NotDisabled = 2,
1205
+ }
1206
+
1207
+ export enum FlowsPolicy {
1208
+ Unknown = 0,
1209
+ Disabled = 1,
1210
+ NotDisabled = 2,
1211
+ }
1212
+
1213
+ export enum SharingPermissionType {
1214
+ None,
1215
+ View,
1216
+ Edit,
1217
+ }
1218
+
1219
+ export enum SiteUserInfoVisibilityPolicyValue {
1220
+ OrganizationDefault = 0,
1221
+ ApplyToNoUsers = 1,
1222
+ ApplyToGuestAndExternalUsers = 2,
1223
+ ApplyToInternalUsers = 3,
1224
+ ApplyToAllUsers = 4,
1225
+ }
1226
+
1227
+ export interface ITenantInfo {
1228
+ /**
1229
+ * Storage quota that is available for all sites in the tenant
1230
+ */
1231
+ StorageQuota: number;
1232
+ /**
1233
+ * Storage quota that is allocated for all sites in the tenant
1234
+ */
1235
+ StorageQuotaAllocated: number;
1236
+ /**
1237
+ * The resource quota for the tenant
1238
+ */
1239
+ ResourceQuota: number;
1240
+ /**
1241
+ * The resource quota allocated to all sites in the tenant
1242
+ */
1243
+ ResourceQuotaAllocated: number;
1244
+ /**
1245
+ * Determines which compatibility range is available for new
1246
+ * site collections.
1247
+ */
1248
+ CompatibilityRange: string;
1249
+ /**
1250
+ * When a site in the tenancy is locked it is redirected to this Url.
1251
+ */
1252
+ NoAccessRedirectUrl: string;
1253
+ /**
1254
+ * The tenant's root site url
1255
+ */
1256
+ RootSiteUrl: string;
1257
+ /**
1258
+ * Get status of feature sync client restriction allowed
1259
+ */
1260
+ IsUnmanagedSyncClientRestrictionFlightEnabled: boolean;
1261
+ /**
1262
+ * Get/Set sync client restrictions
1263
+ */
1264
+ IsUnmanagedSyncClientForTenantRestricted: boolean;
1265
+ /**
1266
+ * Get/Set sync client trusted domain guids
1267
+ */
1268
+ AllowedDomainListForSyncClient: string[];
1269
+ /**
1270
+ * Get/Set whether Mac clients should be blocked from sync
1271
+ */
1272
+ BlockMacSync: boolean;
1273
+ /**
1274
+ * Get/Set whether to hide the sync button on OneDrive for Business sites
1275
+ */
1276
+ HideSyncButtonOnODB: boolean;
1277
+ /**
1278
+ * Get/Set whether the sync button should use the Next-Generation Sync Client on OneDrive for Business sites
1279
+ */
1280
+ ShowNGSCDialogForSyncOnODB: boolean;
1281
+ /**
1282
+ * Get/Set whether Nucleus Sync should be disabled for Lists
1283
+ */
1284
+ DisableListSync: boolean;
1285
+ /**
1286
+ * Get/Set whether Groove clients should be blocked
1287
+ */
1288
+ OptOutOfGrooveBlock: boolean;
1289
+ /**
1290
+ * Get/Set whether Groove clients should be soft blocked
1291
+ */
1292
+ OptOutOfGrooveSoftBlock: boolean;
1293
+ /**
1294
+ * Get/Set excluded file extensions for sync client
1295
+ */
1296
+ ExcludedFileExtensionsForSyncClient: string[];
1297
+ /**
1298
+ * Gets or sets a value to specify whether Public CDN feature is enabled or disabled for the tenant.
1299
+ */
1300
+ PublicCdnEnabled: boolean;
1301
+ /**
1302
+ * Gets or sets a value to specify what file types can be exposed through Public CDN.
1303
+ */
1304
+ PublicCdnAllowedFileTypes: string;
1305
+ /**
1306
+ * Gets a list of the Public CDN origins.
1307
+ */
1308
+ PublicCdnOrigins: string[];
1309
+ /**
1310
+ * Get/Set whether Open In Desktop should be enabled
1311
+ */
1312
+ ShowOpenInDesktopOptionForSyncedFiles: boolean;
1313
+ /**
1314
+ *
1315
+ */
1316
+ IsMnAFlightEnabled: boolean;
1317
+ /**
1318
+ *
1319
+ */
1320
+ PermissiveBrowserFileHandlingOverride: boolean;
1321
+ /**
1322
+ *
1323
+ */
1324
+ DisallowInfectedFileDownload: boolean;
1325
+ /**
1326
+ * Disable sync client report problem dialog
1327
+ */
1328
+ DisableReportProblemDialog: boolean;
1329
+ /**
1330
+ *
1331
+ */
1332
+ SpecialCharactersStateInFileFolderNames: SpecialCharactersState;
1333
+ /**
1334
+ * Whether comments on site pages are disabled or not.
1335
+ */
1336
+ CommentsOnSitePagesDisabled: boolean;
1337
+ /**
1338
+ * Whether comments on files are disabled or not.
1339
+ */
1340
+ CommentsOnFilesDisabled: boolean;
1341
+ /**
1342
+ * Whether comments on list items are disabled or not.
1343
+ */
1344
+ CommentsOnListItemsDisabled: boolean;
1345
+ /**
1346
+ * Whether viewers commenting on media items is disabled or not.
1347
+ */
1348
+ ViewersCanCommentOnMediaDisabled: boolean;
1349
+ /**
1350
+ * Whether social bar on site pages is enabled or not.
1351
+ */
1352
+ SocialBarOnSitePagesDisabled: boolean;
1353
+ /**
1354
+ * Gets or sets the MarkNewFilesSensitiveByDefault property
1355
+ */
1356
+ MarkNewFilesSensitiveByDefault: SensitiveByDefaultState;
1357
+ /**
1358
+ * Gets or sets the BlockSendLabelMismatchEmail property
1359
+ */
1360
+ BlockSendLabelMismatchEmail: boolean;
1361
+ /**
1362
+ * Gets or sets the LabelMismatchEmailHelpLink property
1363
+ */
1364
+ LabelMismatchEmailHelpLink: string;
1365
+ /**
1366
+ *
1367
+ */
1368
+ EnabledFlightAllowAADB2BSkipCheckingOTP: boolean;
1369
+ /**
1370
+ * Determines whether Hashed Proof Token IP Binding is enabled.
1371
+ */
1372
+ ReduceTempTokenLifetimeEnabled: boolean;
1373
+ /**
1374
+ * Determines the grace period for Hashed Proof Tokens from an IP address that doesn't match the
1375
+ * IP address in the token, when the IP policy is not enabled and IP Binding is enabled.
1376
+ */
1377
+ ReduceTempTokenLifetimeValue: number;
1378
+
1379
+
1380
+ /**
1381
+ * rest of props from selecting *
1382
+ */
1383
+ AIBuilderDefaultPowerAppsEnvironment: string;
1384
+ AIBuilderEnabled: boolean;
1385
+ AIBuilderSiteListFileName: string;
1386
+ AllowAnonymousMeetingParticipantsToAccessWhiteboards: number;
1387
+ AllowCommentsTextOnEmailEnabled: boolean;
1388
+ AllowDownloadingNonWebViewableFiles: boolean;
1389
+ AllowEditing: boolean;
1390
+ AllowEveryoneExceptExternalUsersClaimInPrivateSite: boolean;
1391
+ AllowGuestUserShareToUsersNotInSiteCollection: boolean;
1392
+ AllowLimitedAccessOnUnmanagedDevices: boolean;
1393
+ AllowOverrideForBlockUserInfoVisibility: boolean;
1394
+ AllowSelectSGsInODBListInTenant: boolean | null;
1395
+ AnyoneLinkTrackUsers: boolean;
1396
+ ApplyAppEnforcedRestrictionsToAdHocRecipients: boolean;
1397
+ AuthContextResilienceMode: number;
1398
+ BccExternalSharingInvitations: boolean;
1399
+ BccExternalSharingInvitationsList: string[];
1400
+ BlockAccessOnUnmanagedDevices: boolean;
1401
+ BlockDownloadLinksFileType: number;
1402
+ BlockDownloadOfAllFilesForGuests: boolean;
1403
+ BlockDownloadOfAllFilesOnUnmanagedDevices: boolean;
1404
+ BlockDownloadOfViewableFilesForGuests: boolean;
1405
+ BlockDownloadOfViewableFilesOnUnmanagedDevices: boolean;
1406
+ BlockUserInfoVisibility: string;
1407
+ BlockUserInfoVisibilityInOneDrive: number;
1408
+ BlockUserInfoVisibilityInSharePoint: number;
1409
+ ConditionalAccessPolicy: number;
1410
+ ConditionalAccessPolicyErrorHelpLink: string;
1411
+ ContentTypeSyncSiteTemplatesList: string[];
1412
+ CoreLoopDefaultSharingLinkRole: number;
1413
+ CoreLoopDefaultSharingLinkScope: number;
1414
+ CoreLoopSharingCapability: number;
1415
+ CoreRequestFilesLinkEnabled: boolean;
1416
+ CoreRequestFilesLinkExpirationInDays: number;
1417
+ CoreSharingCapability: number;
1418
+ CustomizedExternalSharingServiceUrl: string;
1419
+ DefaultContentCenterSite: string;
1420
+ DefaultLinkPermission: number;
1421
+ DefaultODBMode: string;
1422
+ DefaultSharingLinkType: number;
1423
+ DisableAddToOneDrive: boolean;
1424
+ DisableBackToClassic: boolean;
1425
+ DisableCustomAppAuthentication: boolean;
1426
+ DisabledModernListTemplateIds: string[];
1427
+ DisabledWebPartIds: string[];
1428
+ DisableOutlookPSTVersionTrimming: boolean;
1429
+ DisablePersonalListCreation: boolean;
1430
+ DisableSpacesActivation: boolean;
1431
+ DisplayNamesOfFileViewers: boolean;
1432
+ DisplayNamesOfFileViewersInSpo: boolean;
1433
+ DisplayStartASiteOption: boolean;
1434
+ EmailAttestationEnabled: boolean;
1435
+ EmailAttestationReAuthDays: number;
1436
+ EmailAttestationRequired: boolean;
1437
+ EnableAIPIntegration: boolean;
1438
+ EnableAutoNewsDigest: boolean;
1439
+ EnableAzureADB2BIntegration: boolean;
1440
+ EnableGuestSignInAcceleration: boolean;
1441
+ EnableMinimumVersionRequirement: boolean;
1442
+ EnableMipSiteLabel: boolean;
1443
+ EnablePromotedFileHandlers: boolean;
1444
+ ExternalServicesEnabled: boolean;
1445
+ ExternalUserExpirationRequired: boolean;
1446
+ ExternalUserExpireInDays: number;
1447
+ FileAnonymousLinkType: number;
1448
+ FilePickerExternalImageSearchEnabled: boolean;
1449
+ FolderAnonymousLinkType: number;
1450
+ GuestSharingGroupAllowListInTenant: string;
1451
+ GuestSharingGroupAllowListInTenantByPrincipalIdentity: any;
1452
+ HasAdminCompletedCUConfiguration: boolean;
1453
+ HasIntelligentContentServicesCapability: boolean;
1454
+ HasTopicExperiencesCapability: boolean;
1455
+ HideSyncButtonOnDocLib: boolean;
1456
+ IBImplicitGroupBased: boolean;
1457
+ ImageTaggingOption: number;
1458
+ IncludeAtAGlanceInShareEmails: boolean;
1459
+ InformationBarriersSuspension: boolean;
1460
+ IPAddressAllowList: string;
1461
+ IPAddressEnforcement: boolean;
1462
+ IPAddressWACTokenLifetime: number;
1463
+ IsAppBarTemporarilyDisabled: boolean;
1464
+ IsCollabMeetingNotesFluidEnabled: boolean;
1465
+ IsFluidEnabled: boolean;
1466
+ IsHubSitesMultiGeoFlightEnabled: boolean;
1467
+ IsLoopEnabled: boolean;
1468
+ IsMultiGeo: boolean;
1469
+ IsMultipleHomeSitesFlightEnabled: boolean;
1470
+ IsWBFluidEnabled: boolean;
1471
+ LegacyAuthProtocolsEnabled: boolean;
1472
+ LimitedAccessFileType: number;
1473
+ MachineLearningCaptureEnabled: boolean;
1474
+ MediaTranscription: number;
1475
+ MobileFriendlyUrlEnabledInTenant: boolean;
1476
+ NotificationsInOneDriveForBusinessEnabled: boolean;
1477
+ NotificationsInSharePointEnabled: boolean;
1478
+ NotifyOwnersWhenInvitationsAccepted: boolean;
1479
+ NotifyOwnersWhenItemsReshared: boolean;
1480
+ ODBAccessRequests: number;
1481
+ ODBMembersCanShare: number;
1482
+ ODBSharingCapability: number;
1483
+ OfficeClientADALDisabled: boolean;
1484
+ OneDriveForGuestsEnabled: boolean;
1485
+ OneDriveLoopDefaultSharingLinkRole: number;
1486
+ OneDriveLoopDefaultSharingLinkScope: number;
1487
+ OneDriveLoopSharingCapability: number;
1488
+ OneDriveRequestFilesLinkEnabled: boolean;
1489
+ OneDriveRequestFilesLinkExpirationInDays: number;
1490
+ OneDriveStorageQuota: string;
1491
+ OrgNewsSiteUrl: string;
1492
+ OrphanedPersonalSitesRetentionPeriod: number;
1493
+ OwnerAnonymousNotification: boolean;
1494
+ PreventExternalUsersFromResharing: boolean;
1495
+ ProvisionSharedWithEveryoneFolder: boolean;
1496
+ RequireAcceptingAccountMatchInvitedAccount: boolean;
1497
+ RequireAnonymousLinksExpireInDays: number;
1498
+ RestrictedOneDriveLicense: boolean;
1499
+ SearchResolveExactEmailOrUPN: boolean;
1500
+ SharingAllowedDomainList: string[];
1501
+ SharingBlockedDomainList: string[];
1502
+ SharingCapability: number;
1503
+ SharingDomainRestrictionMode: number;
1504
+ ShowAllUsersClaim: boolean;
1505
+ ShowEveryoneClaim: boolean;
1506
+ ShowEveryoneExceptExternalUsersClaim: boolean;
1507
+ ShowPeoplePickerGroupSuggestionsForIB: boolean;
1508
+ ShowPeoplePickerSuggestionsForGuestUsers: boolean;
1509
+ SignInAccelerationDomain: string;
1510
+ StartASiteFormUrl: string;
1511
+ StopNew2010Workflows: boolean;
1512
+ StopNew2013Workflows: boolean;
1513
+ StreamLaunchConfig: number;
1514
+ StreamLaunchConfigLastUpdated: string;
1515
+ StreamLaunchConfigUpdateCount: number;
1516
+ SyncAadB2BManagementPolicy: boolean;
1517
+ SyncPrivacyProfileProperties: boolean;
1518
+ UseFindPeopleInPeoplePicker: boolean;
1519
+ UsePersistentCookiesForExplorerView: boolean;
1520
+ UserVoiceForFeedbackEnabled: boolean;
1521
+ ViewInFileExplorerEnabled: boolean;
1522
+ WhoCanShareAllowListInTenant: string;
1523
+ WhoCanShareAllowListInTenantByPrincipalIdentity: any;
1524
+ Workflow2010Disabled: boolean;
1525
+ Workflows2013State: number;
1526
+ }
1527
+
1528
+ export enum SpecialCharactersState {
1529
+ NoPreference,
1530
+ Allowed,
1531
+ Disallowed,
1532
+ }
1533
+
1534
+ export enum SensitiveByDefaultState {
1535
+ AllowExternalSharing,
1536
+ BlockExternalSharing,
1537
+ }
1538
+
1539
+ export interface ISitePropertiesEnumerableFilter {
1540
+ Filter: string;
1541
+ StartIndex: string;
1542
+ IncludeDetail: boolean;
1543
+ Template: string;
1544
+ IncludePersonalSite: PersonalSiteFilter;
1545
+ GroupIdDefined: number;
1546
+ }
1547
+
1548
+ export enum PersonalSiteFilter {
1549
+ UseServerDefault = 0, // default value for enum variables
1550
+ Include = 1,
1551
+ Exclude = 2,
1552
+ }
1553
+
1554
+ /**
1555
+ * Basically useless from REST
1556
+ */
1557
+ export interface ISPOOperation {
1558
+ HasTimedout: boolean;
1559
+ PollingInterval: number;
1560
+ IsComplete: boolean;
1561
+ }
1562
+
1563
+ export interface ISiteCreationProps {
1564
+ Url: string;
1565
+ Owner: string;
1566
+ Title?: string;
1567
+ Template?: string;
1568
+ Lcid?: number;
1569
+ CompatibilityLevel?: number;
1570
+ StorageMaximumLevel?: number;
1571
+ StorageWarningLevel?: number;
1572
+ UserCodeMaximumLevel?: number;
1573
+ UserCodeWarningLevel?: number;
1574
+ TimeZoneId?: number;
1575
+ }
1576
+
1577
+ export interface ISPOWebTemplatesInfo {
1578
+ Items: {
1579
+ CompatibilityLevel: number;
1580
+ Description: string;
1581
+ DisplayCategory: string | null;
1582
+ Id: number;
1583
+ Lcid: string;
1584
+ Name: string;
1585
+ Title: string;
1586
+ }[];
1587
+ }
1588
+
1589
+ export interface IUpdateGroupSiteProperties {
1590
+ storageMaximumLevel: number;
1591
+ storageWarningLevel: number;
1592
+ }
1593
+
1594
+ export interface ISPOSiteCreationSource {
1595
+ DisplayName: string;
1596
+ Id: string;
1597
+ Name: string;
1598
+ }
1599
+
1600
+ export interface IPortalHealthStatus {
1601
+ Status: ResultStatus;
1602
+ Details: {
1603
+ PortalHealthErrorCode: any;
1604
+ Status: ResultStatus;
1605
+ ErrorReason: string;
1606
+ HelpLink: string;
1607
+ }[];
1608
+ }
1609
+
1610
+ export enum ResultStatus {
1611
+ Success = 0,
1612
+ Warning = 1,
1613
+ Error = 2,
1614
+ }
1615
+
1616
+ export interface IPowerAppsEnvironment {
1617
+ DisplayName: string;
1618
+ Name: string;
1619
+ IsDefault: boolean;
1620
+ AllocatedAICredits: number;
1621
+ PurchasedAICredits: number;
1622
+ }
1623
+
1624
+ export interface ISiteUserGroupsData {
1625
+ siteId: string;
1626
+ owners: IUserInfo[];
1627
+ members: IUserInfo[];
1628
+ visitors: IUserInfo[];
1629
+ }
1630
+
1631
+ export interface IUserInfo {
1632
+ Email: string;
1633
+ DisplayName?: string;
1634
+ UserPrincipalName: string;
1635
+ }
1636
+
1637
+ export interface ISiteAdministratorsFieldsData {
1638
+ siteId: string;
1639
+ siteAdministrators: string[];
1640
+ }
1641
+
1642
+ export interface ISiteAdminsInfo {
1643
+ email: string;
1644
+ name: string;
1645
+ userPrincipalName: string;
1646
+ loginName: string;
1647
+ }
1648
+
1649
+ export interface ISPHubSiteCreationInfo {
1650
+ Title: string;
1651
+ SiteId: string;
1652
+ TenantInstanceId: string;
1653
+ SiteUrl: string;
1654
+ LogoUrl: string;
1655
+ Description: string;
1656
+ Targets: string;
1657
+ SiteDesignId: string;
1658
+ RequiresJoinApproval: boolean;
1659
+ HideNameInNavigation: boolean;
1660
+ ParentHubSiteId: string;
1661
+ EnablePermissionsSync: boolean;
1662
+ EnforcedECTs: string;
1663
+ PermissionsSyncTag: number;
1664
+ EnforcedECTsVersion: number;
1665
+ }
1666
+
1667
+ export enum SPOHubSiteUserRights {
1668
+ None = 0,
1669
+ Join = 1,
1670
+ }
1671
+
1672
+ export interface IHomeSitesDetails {
1673
+ SiteId: string;
1674
+ WebId: string;
1675
+ Audiences: string[];
1676
+ Url: string;
1677
+ Title: string;
1678
+ MatchingAudiences: string[];
1679
+ }