@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,4190 @@
1
+
2
+ <!doctype html>
3
+ <html lang="en" class="no-js">
4
+ <head>
5
+
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width,initial-scale=1">
8
+
9
+
10
+ <link rel="canonical" href="https://pnp.github.io/pnpjs/sp/webs/">
11
+
12
+
13
+ <link rel="shortcut icon" href="../../assets/images/favicon.png">
14
+ <meta name="generator" content="mkdocs-1.1.2, mkdocs-material-6.0.2">
15
+
16
+
17
+
18
+ <title>Webs - PnP/PnPjs</title>
19
+
20
+
21
+
22
+ <link rel="stylesheet" href="../../assets/stylesheets/main.38780c08.min.css">
23
+
24
+
25
+ <link rel="stylesheet" href="../../assets/stylesheets/palette.3f72e892.min.css">
26
+
27
+
28
+
29
+ <meta name="theme-color" content="#2094f3">
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+ <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
38
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback">
39
+ <style>body,input{font-family:"Roboto",-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono",SFMono-Regular,Consolas,Menlo,monospace}</style>
40
+
41
+
42
+
43
+
44
+ <link rel="stylesheet" href="../../css/extra.css">
45
+
46
+
47
+ <img src="https://telemetry.sharepointpnp.com/@pnp/pnpjs/ghpages/pnpjs/sp/webs/" alt="spacer" width="1" height="1" />
48
+
49
+
50
+ </head>
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+ <body dir="ltr" data-md-color-scheme="" data-md-color-primary="blue" data-md-color-accent="">
59
+
60
+
61
+ <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
62
+ <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
63
+ <label class="md-overlay" for="__drawer"></label>
64
+ <div data-md-component="skip">
65
+
66
+
67
+ <a href="#pnpspwebs" class="md-skip">
68
+ Skip to content
69
+ </a>
70
+
71
+ </div>
72
+ <div data-md-component="announce">
73
+
74
+ </div>
75
+
76
+ <header class="md-header" data-md-component="header">
77
+ <nav class="md-header-nav md-grid" aria-label="Header">
78
+ <a href="https://pnp.github.io/pnpjs/" title="PnP/PnPjs" class="md-header-nav__button md-logo" aria-label="PnP/PnPjs">
79
+
80
+ <img src="../../img/Logo.png" alt="logo">
81
+
82
+ </a>
83
+ <label class="md-header-nav__button md-icon" for="__drawer">
84
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2z"/></svg>
85
+ </label>
86
+ <div class="md-header-nav__title" data-md-component="header-title">
87
+
88
+ <div class="md-header-nav__ellipsis">
89
+ <span class="md-header-nav__topic md-ellipsis">
90
+ PnP/PnPjs
91
+ </span>
92
+ <span class="md-header-nav__topic md-ellipsis">
93
+
94
+ Webs
95
+
96
+ </span>
97
+ </div>
98
+
99
+ </div>
100
+
101
+ <label class="md-header-nav__button md-icon" for="__search">
102
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0116 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 019.5 16 6.5 6.5 0 013 9.5 6.5 6.5 0 019.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg>
103
+ </label>
104
+
105
+ <div class="md-search" data-md-component="search" role="dialog">
106
+ <label class="md-search__overlay" for="__search"></label>
107
+ <div class="md-search__inner" role="search">
108
+ <form class="md-search__form" name="search">
109
+ <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" data-md-state="active">
110
+ <label class="md-search__icon md-icon" for="__search">
111
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0116 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 019.5 16 6.5 6.5 0 013 9.5 6.5 6.5 0 019.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg>
112
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg>
113
+ </label>
114
+ <button type="reset" class="md-search__icon md-icon" aria-label="Clear" data-md-component="search-reset" tabindex="-1">
115
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>
116
+ </button>
117
+ </form>
118
+ <div class="md-search__output">
119
+ <div class="md-search__scrollwrap" data-md-scrollfix>
120
+ <div class="md-search-result" data-md-component="search-result">
121
+ <div class="md-search-result__meta">
122
+ Initializing search
123
+ </div>
124
+ <ol class="md-search-result__list"></ol>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ </div>
130
+
131
+
132
+ <div class="md-header-nav__source">
133
+
134
+ <a href="https://github.com/pnp/pnpjs/" title="Go to repository" class="md-source">
135
+ <div class="md-source__icon md-icon">
136
+
137
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05L244 40.45a28.87 28.87 0 00-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 01-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 000 40.81l195.61 195.6a28.86 28.86 0 0040.8 0l194.69-194.69a28.86 28.86 0 000-40.81z"/></svg>
138
+ </div>
139
+ <div class="md-source__repository">
140
+ GitHub
141
+ </div>
142
+ </a>
143
+ </div>
144
+
145
+ </nav>
146
+ </header>
147
+
148
+ <div class="md-container" data-md-component="container">
149
+
150
+
151
+
152
+
153
+ <main class="md-main" data-md-component="main">
154
+ <div class="md-main__inner md-grid">
155
+
156
+
157
+ <div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
158
+ <div class="md-sidebar__scrollwrap">
159
+ <div class="md-sidebar__inner">
160
+ <nav class="md-nav md-nav--primary" aria-label="Navigation" data-md-level="0">
161
+ <label class="md-nav__title" for="__drawer">
162
+ <a href="https://pnp.github.io/pnpjs/" title="PnP/PnPjs" class="md-nav__button md-logo" aria-label="PnP/PnPjs">
163
+
164
+ <img src="../../img/Logo.png" alt="logo">
165
+
166
+ </a>
167
+ PnP/PnPjs
168
+ </label>
169
+
170
+ <div class="md-nav__source">
171
+
172
+ <a href="https://github.com/pnp/pnpjs/" title="Go to repository" class="md-source">
173
+ <div class="md-source__icon md-icon">
174
+
175
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05L244 40.45a28.87 28.87 0 00-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 01-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 000 40.81l195.61 195.6a28.86 28.86 0 0040.8 0l194.69-194.69a28.86 28.86 0 000-40.81z"/></svg>
176
+ </div>
177
+ <div class="md-source__repository">
178
+ GitHub
179
+ </div>
180
+ </a>
181
+ </div>
182
+
183
+ <ul class="md-nav__list" data-md-scrollfix>
184
+
185
+
186
+
187
+
188
+
189
+
190
+ <li class="md-nav__item">
191
+ <a href="../.." class="md-nav__link">
192
+ Home
193
+ </a>
194
+ </li>
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+ <li class="md-nav__item">
203
+ <a href="../../getting-started/" class="md-nav__link">
204
+ Getting Started
205
+ </a>
206
+ </li>
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+ <li class="md-nav__item">
215
+ <a href="../../news/2020-year-in-review/" class="md-nav__link">
216
+ 2020 Year In Review
217
+ </a>
218
+ </li>
219
+
220
+
221
+
222
+
223
+
224
+
225
+
226
+ <li class="md-nav__item md-nav__item--nested">
227
+
228
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-4" type="checkbox" id="nav-4">
229
+
230
+ <label class="md-nav__link" for="nav-4">
231
+ General
232
+ <span class="md-nav__icon md-icon"></span>
233
+ </label>
234
+ <nav class="md-nav" aria-label="General" data-md-level="1">
235
+ <label class="md-nav__title" for="nav-4">
236
+ <span class="md-nav__icon md-icon"></span>
237
+ General
238
+ </label>
239
+ <ul class="md-nav__list" data-md-scrollfix>
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+ <li class="md-nav__item">
248
+ <a href="../../getting-started/" class="md-nav__link">
249
+ Getting Started
250
+ </a>
251
+ </li>
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+ <li class="md-nav__item">
260
+ <a href="../../transition-guide/" class="md-nav__link">
261
+ Transition Guide
262
+ </a>
263
+ </li>
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+ <li class="md-nav__item">
272
+ <a href="../../npm-scripts/" class="md-nav__link">
273
+ Npm Scripts
274
+ </a>
275
+ </li>
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+ <li class="md-nav__item">
284
+ <a href="../../SPFx-on-premises/" class="md-nav__link">
285
+ SPFx On-Premises
286
+ </a>
287
+ </li>
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+ <li class="md-nav__item">
296
+ <a href="../../nodejs-support/" class="md-nav__link">
297
+ Working in Nodejs
298
+ </a>
299
+ </li>
300
+
301
+
302
+ </ul>
303
+ </nav>
304
+ </li>
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+ <li class="md-nav__item md-nav__item--nested">
313
+
314
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-5" type="checkbox" id="nav-5">
315
+
316
+ <label class="md-nav__link" for="nav-5">
317
+ Library Concepts
318
+ <span class="md-nav__icon md-icon"></span>
319
+ </label>
320
+ <nav class="md-nav" aria-label="Library Concepts" data-md-level="1">
321
+ <label class="md-nav__title" for="nav-5">
322
+ <span class="md-nav__icon md-icon"></span>
323
+ Library Concepts
324
+ </label>
325
+ <ul class="md-nav__list" data-md-scrollfix>
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+ <li class="md-nav__item">
334
+ <a href="../../concepts/configuration/" class="md-nav__link">
335
+ Configuration
336
+ </a>
337
+ </li>
338
+
339
+
340
+
341
+
342
+
343
+
344
+
345
+ <li class="md-nav__item">
346
+ <a href="../../concepts/selective-imports/" class="md-nav__link">
347
+ Selective Imports
348
+ </a>
349
+ </li>
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+ <li class="md-nav__item">
358
+ <a href="../../concepts/custom-bundle/" class="md-nav__link">
359
+ Custom Bundle
360
+ </a>
361
+ </li>
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+ <li class="md-nav__item">
370
+ <a href="../../concepts/ie11-mode/" class="md-nav__link">
371
+ IE11 Mode
372
+ </a>
373
+ </li>
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+ <li class="md-nav__item">
382
+ <a href="../../concepts/invokable/" class="md-nav__link">
383
+ Invokables
384
+ </a>
385
+ </li>
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+ <li class="md-nav__item">
394
+ <a href="../../concepts/polyfill/" class="md-nav__link">
395
+ Polyfills
396
+ </a>
397
+ </li>
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+ <li class="md-nav__item">
406
+ <a href="../../concepts/settings/" class="md-nav__link">
407
+ Settings
408
+ </a>
409
+ </li>
410
+
411
+
412
+
413
+
414
+
415
+
416
+
417
+ <li class="md-nav__item">
418
+ <a href="../../concepts/error-handling/" class="md-nav__link">
419
+ Error Handling
420
+ </a>
421
+ </li>
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+ <li class="md-nav__item md-nav__item--nested">
430
+
431
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-5-9" type="checkbox" id="nav-5-9">
432
+
433
+ <label class="md-nav__link" for="nav-5-9">
434
+ Authentication
435
+ <span class="md-nav__icon md-icon"></span>
436
+ </label>
437
+ <nav class="md-nav" aria-label="Authentication" data-md-level="2">
438
+ <label class="md-nav__title" for="nav-5-9">
439
+ <span class="md-nav__icon md-icon"></span>
440
+ Authentication
441
+ </label>
442
+ <ul class="md-nav__list" data-md-scrollfix>
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+ <li class="md-nav__item">
451
+ <a href="../../authentication/" class="md-nav__link">
452
+ Getting Started
453
+ </a>
454
+ </li>
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+ <li class="md-nav__item">
463
+ <a href="../../authentication/client-spfx/" class="md-nav__link">
464
+ SPFx Auth
465
+ </a>
466
+ </li>
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+ <li class="md-nav__item">
475
+ <a href="../../authentication/msaljsclient/" class="md-nav__link">
476
+ MSAL Client
477
+ </a>
478
+ </li>
479
+
480
+
481
+
482
+
483
+
484
+
485
+
486
+ <li class="md-nav__item">
487
+ <a href="../../authentication/adaljsclient/" class="md-nav__link">
488
+ ADAL Client
489
+ </a>
490
+ </li>
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+ <li class="md-nav__item">
499
+ <a href="../../authentication/client-spa/" class="md-nav__link">
500
+ SPA Auth
501
+ </a>
502
+ </li>
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+ <li class="md-nav__item">
511
+ <a href="../../authentication/server-nodejs/" class="md-nav__link">
512
+ NodeJS Auth
513
+ </a>
514
+ </li>
515
+
516
+
517
+
518
+
519
+
520
+
521
+
522
+ <li class="md-nav__item">
523
+ <a href="../../authentication/sp-app-registration/" class="md-nav__link">
524
+ SP App Reg
525
+ </a>
526
+ </li>
527
+
528
+
529
+
530
+
531
+
532
+
533
+
534
+ <li class="md-nav__item">
535
+ <a href="../../authentication/bearertokenclient/" class="md-nav__link">
536
+ Bearer Token Client
537
+ </a>
538
+ </li>
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+ <li class="md-nav__item">
547
+ <a href="../../authentication/lambdaclient/" class="md-nav__link">
548
+ Lambda Token Client
549
+ </a>
550
+ </li>
551
+
552
+
553
+ </ul>
554
+ </nav>
555
+ </li>
556
+
557
+
558
+ </ul>
559
+ </nav>
560
+ </li>
561
+
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+ <li class="md-nav__item md-nav__item--active md-nav__item--nested">
571
+
572
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6" type="checkbox" id="nav-6" checked>
573
+
574
+ <label class="md-nav__link" for="nav-6">
575
+ Packages
576
+ <span class="md-nav__icon md-icon"></span>
577
+ </label>
578
+ <nav class="md-nav" aria-label="Packages" data-md-level="1">
579
+ <label class="md-nav__title" for="nav-6">
580
+ <span class="md-nav__icon md-icon"></span>
581
+ Packages
582
+ </label>
583
+ <ul class="md-nav__list" data-md-scrollfix>
584
+
585
+
586
+
587
+
588
+
589
+
590
+
591
+ <li class="md-nav__item">
592
+ <a href="../../packages/" class="md-nav__link">
593
+ Packages
594
+ </a>
595
+ </li>
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+ <li class="md-nav__item md-nav__item--nested">
604
+
605
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-2" type="checkbox" id="nav-6-2">
606
+
607
+ <label class="md-nav__link" for="nav-6-2">
608
+ common
609
+ <span class="md-nav__icon md-icon"></span>
610
+ </label>
611
+ <nav class="md-nav" aria-label="common" data-md-level="2">
612
+ <label class="md-nav__title" for="nav-6-2">
613
+ <span class="md-nav__icon md-icon"></span>
614
+ common
615
+ </label>
616
+ <ul class="md-nav__list" data-md-scrollfix>
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+ <li class="md-nav__item">
625
+ <a href="../../common/" class="md-nav__link">
626
+ common
627
+ </a>
628
+ </li>
629
+
630
+
631
+
632
+
633
+
634
+
635
+
636
+ <li class="md-nav__item">
637
+ <a href="../../common/collections/" class="md-nav__link">
638
+ collections
639
+ </a>
640
+ </li>
641
+
642
+
643
+
644
+
645
+
646
+
647
+
648
+ <li class="md-nav__item">
649
+ <a href="../../common/custom-httpclientimpl/" class="md-nav__link">
650
+ Custom HttpClientImpl
651
+ </a>
652
+ </li>
653
+
654
+
655
+
656
+
657
+
658
+
659
+
660
+ <li class="md-nav__item">
661
+ <a href="../../common/libconfig/" class="md-nav__link">
662
+ libconfig
663
+ </a>
664
+ </li>
665
+
666
+
667
+
668
+
669
+
670
+
671
+
672
+ <li class="md-nav__item">
673
+ <a href="../../common/netutil/" class="md-nav__link">
674
+ netutil
675
+ </a>
676
+ </li>
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+ <li class="md-nav__item">
685
+ <a href="../../common/storage/" class="md-nav__link">
686
+ storage
687
+ </a>
688
+ </li>
689
+
690
+
691
+
692
+
693
+
694
+
695
+
696
+ <li class="md-nav__item">
697
+ <a href="../../common/util/" class="md-nav__link">
698
+ util
699
+ </a>
700
+ </li>
701
+
702
+
703
+ </ul>
704
+ </nav>
705
+ </li>
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+ <li class="md-nav__item md-nav__item--nested">
714
+
715
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-3" type="checkbox" id="nav-6-3">
716
+
717
+ <label class="md-nav__link" for="nav-6-3">
718
+ config-store
719
+ <span class="md-nav__icon md-icon"></span>
720
+ </label>
721
+ <nav class="md-nav" aria-label="config-store" data-md-level="2">
722
+ <label class="md-nav__title" for="nav-6-3">
723
+ <span class="md-nav__icon md-icon"></span>
724
+ config-store
725
+ </label>
726
+ <ul class="md-nav__list" data-md-scrollfix>
727
+
728
+
729
+
730
+
731
+
732
+
733
+
734
+ <li class="md-nav__item">
735
+ <a href="../../config-store/" class="md-nav__link">
736
+ config-store
737
+ </a>
738
+ </li>
739
+
740
+
741
+
742
+
743
+
744
+
745
+
746
+ <li class="md-nav__item">
747
+ <a href="../../config-store/configuration/" class="md-nav__link">
748
+ configuration
749
+ </a>
750
+ </li>
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+ <li class="md-nav__item">
759
+ <a href="../../config-store/providers/" class="md-nav__link">
760
+ providers
761
+ </a>
762
+ </li>
763
+
764
+
765
+ </ul>
766
+ </nav>
767
+ </li>
768
+
769
+
770
+
771
+
772
+
773
+
774
+
775
+ <li class="md-nav__item md-nav__item--nested">
776
+
777
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-4" type="checkbox" id="nav-6-4">
778
+
779
+ <label class="md-nav__link" for="nav-6-4">
780
+ graph
781
+ <span class="md-nav__icon md-icon"></span>
782
+ </label>
783
+ <nav class="md-nav" aria-label="graph" data-md-level="2">
784
+ <label class="md-nav__title" for="nav-6-4">
785
+ <span class="md-nav__icon md-icon"></span>
786
+ graph
787
+ </label>
788
+ <ul class="md-nav__list" data-md-scrollfix>
789
+
790
+
791
+
792
+
793
+
794
+
795
+
796
+ <li class="md-nav__item">
797
+ <a href="../../graph/" class="md-nav__link">
798
+ graph
799
+ </a>
800
+ </li>
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+ <li class="md-nav__item">
809
+ <a href="../../graph/groups/" class="md-nav__link">
810
+ groups
811
+ </a>
812
+ </li>
813
+
814
+
815
+
816
+
817
+
818
+
819
+
820
+ <li class="md-nav__item">
821
+ <a href="../../graph/insights/" class="md-nav__link">
822
+ insights
823
+ </a>
824
+ </li>
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+ <li class="md-nav__item">
833
+ <a href="../../graph/contacts/" class="md-nav__link">
834
+ contacts
835
+ </a>
836
+ </li>
837
+
838
+
839
+
840
+
841
+
842
+
843
+
844
+ <li class="md-nav__item">
845
+ <a href="../../graph/calendars/" class="md-nav__link">
846
+ calendars
847
+ </a>
848
+ </li>
849
+
850
+
851
+
852
+
853
+
854
+
855
+
856
+ <li class="md-nav__item">
857
+ <a href="../../graph/directoryobjects/" class="md-nav__link">
858
+ directory objects
859
+ </a>
860
+ </li>
861
+
862
+
863
+
864
+
865
+
866
+
867
+
868
+ <li class="md-nav__item">
869
+ <a href="../../graph/invitations/" class="md-nav__link">
870
+ invitations
871
+ </a>
872
+ </li>
873
+
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item">
881
+ <a href="../../graph/onedrive/" class="md-nav__link">
882
+ onedrive
883
+ </a>
884
+ </li>
885
+
886
+
887
+
888
+
889
+
890
+
891
+
892
+ <li class="md-nav__item">
893
+ <a href="../../graph/outlook/" class="md-nav__link">
894
+ outlook
895
+ </a>
896
+ </li>
897
+
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../../graph/photos/" class="md-nav__link">
906
+ photos
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+ <li class="md-nav__item">
917
+ <a href="../../graph/planner/" class="md-nav__link">
918
+ planner
919
+ </a>
920
+ </li>
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <li class="md-nav__item">
929
+ <a href="../../graph/search/" class="md-nav__link">
930
+ search
931
+ </a>
932
+ </li>
933
+
934
+
935
+
936
+
937
+
938
+
939
+
940
+ <li class="md-nav__item">
941
+ <a href="../../graph/subscriptions/" class="md-nav__link">
942
+ subscriptions
943
+ </a>
944
+ </li>
945
+
946
+
947
+
948
+
949
+
950
+
951
+
952
+ <li class="md-nav__item">
953
+ <a href="../../graph/teams/" class="md-nav__link">
954
+ teams
955
+ </a>
956
+ </li>
957
+
958
+
959
+
960
+
961
+
962
+
963
+
964
+ <li class="md-nav__item">
965
+ <a href="../../graph/users/" class="md-nav__link">
966
+ users
967
+ </a>
968
+ </li>
969
+
970
+
971
+ </ul>
972
+ </nav>
973
+ </li>
974
+
975
+
976
+
977
+
978
+
979
+
980
+
981
+ <li class="md-nav__item">
982
+ <a href="../../logging/" class="md-nav__link">
983
+ logging
984
+ </a>
985
+ </li>
986
+
987
+
988
+
989
+
990
+
991
+
992
+
993
+ <li class="md-nav__item md-nav__item--nested">
994
+
995
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-6" type="checkbox" id="nav-6-6">
996
+
997
+ <label class="md-nav__link" for="nav-6-6">
998
+ nodejs
999
+ <span class="md-nav__icon md-icon"></span>
1000
+ </label>
1001
+ <nav class="md-nav" aria-label="nodejs" data-md-level="2">
1002
+ <label class="md-nav__title" for="nav-6-6">
1003
+ <span class="md-nav__icon md-icon"></span>
1004
+ nodejs
1005
+ </label>
1006
+ <ul class="md-nav__list" data-md-scrollfix>
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+ <li class="md-nav__item">
1015
+ <a href="../../nodejs/" class="md-nav__link">
1016
+ nodejs
1017
+ </a>
1018
+ </li>
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+ <li class="md-nav__item">
1027
+ <a href="../../nodejs/sp-fetch-client/" class="md-nav__link">
1028
+ SPFetchClient
1029
+ </a>
1030
+ </li>
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+ <li class="md-nav__item">
1039
+ <a href="../../nodejs/adal-fetch-client/" class="md-nav__link">
1040
+ AdalFetchClient
1041
+ </a>
1042
+ </li>
1043
+
1044
+
1045
+
1046
+
1047
+
1048
+
1049
+
1050
+ <li class="md-nav__item">
1051
+ <a href="../../nodejs/bearer-token-fetch-client/" class="md-nav__link">
1052
+ BearerTokenFetchClient
1053
+ </a>
1054
+ </li>
1055
+
1056
+
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+ <li class="md-nav__item">
1063
+ <a href="../../nodejs/provider-hosted-app/" class="md-nav__link">
1064
+ ProviderHostedRequestContext
1065
+ </a>
1066
+ </li>
1067
+
1068
+
1069
+
1070
+
1071
+
1072
+
1073
+
1074
+ <li class="md-nav__item">
1075
+ <a href="../../nodejs/sp-extensions/" class="md-nav__link">
1076
+ sp Extensions
1077
+ </a>
1078
+ </li>
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+ <li class="md-nav__item">
1087
+ <a href="../../nodejs/proxy/" class="md-nav__link">
1088
+ proxy
1089
+ </a>
1090
+ </li>
1091
+
1092
+
1093
+ </ul>
1094
+ </nav>
1095
+ </li>
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+ <li class="md-nav__item md-nav__item--nested">
1104
+
1105
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-7" type="checkbox" id="nav-6-7">
1106
+
1107
+ <label class="md-nav__link" for="nav-6-7">
1108
+ odata
1109
+ <span class="md-nav__icon md-icon"></span>
1110
+ </label>
1111
+ <nav class="md-nav" aria-label="odata" data-md-level="2">
1112
+ <label class="md-nav__title" for="nav-6-7">
1113
+ <span class="md-nav__icon md-icon"></span>
1114
+ odata
1115
+ </label>
1116
+ <ul class="md-nav__list" data-md-scrollfix>
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+ <li class="md-nav__item">
1125
+ <a href="../../odata/" class="md-nav__link">
1126
+ odata
1127
+ </a>
1128
+ </li>
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+ <li class="md-nav__item">
1137
+ <a href="../../odata/caching/" class="md-nav__link">
1138
+ caching
1139
+ </a>
1140
+ </li>
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+ <li class="md-nav__item">
1149
+ <a href="../../odata/core/" class="md-nav__link">
1150
+ core
1151
+ </a>
1152
+ </li>
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+
1159
+
1160
+ <li class="md-nav__item">
1161
+ <a href="../../odata/odata-batch/" class="md-nav__link">
1162
+ OData Batching
1163
+ </a>
1164
+ </li>
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+ <li class="md-nav__item">
1173
+ <a href="../../odata/extensions/" class="md-nav__link">
1174
+ Extending an OData library
1175
+ </a>
1176
+ </li>
1177
+
1178
+
1179
+
1180
+
1181
+
1182
+
1183
+
1184
+ <li class="md-nav__item">
1185
+ <a href="../../odata/debug/" class="md-nav__link">
1186
+ Debugging Proxy Objects
1187
+ </a>
1188
+ </li>
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+ <li class="md-nav__item">
1197
+ <a href="../../odata/parsers/" class="md-nav__link">
1198
+ Parsers
1199
+ </a>
1200
+ </li>
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+
1207
+
1208
+ <li class="md-nav__item">
1209
+ <a href="../../odata/pipeline/" class="md-nav__link">
1210
+ Pipeline
1211
+ </a>
1212
+ </li>
1213
+
1214
+
1215
+
1216
+
1217
+
1218
+
1219
+
1220
+ <li class="md-nav__item">
1221
+ <a href="../../odata/queryable/" class="md-nav__link">
1222
+ Queryable
1223
+ </a>
1224
+ </li>
1225
+
1226
+
1227
+ </ul>
1228
+ </nav>
1229
+ </li>
1230
+
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+
1237
+ <li class="md-nav__item md-nav__item--nested">
1238
+
1239
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-8" type="checkbox" id="nav-6-8">
1240
+
1241
+ <label class="md-nav__link" for="nav-6-8">
1242
+ pnpjs
1243
+ <span class="md-nav__icon md-icon"></span>
1244
+ </label>
1245
+ <nav class="md-nav" aria-label="pnpjs" data-md-level="2">
1246
+ <label class="md-nav__title" for="nav-6-8">
1247
+ <span class="md-nav__icon md-icon"></span>
1248
+ pnpjs
1249
+ </label>
1250
+ <ul class="md-nav__list" data-md-scrollfix>
1251
+
1252
+
1253
+
1254
+
1255
+
1256
+
1257
+
1258
+ <li class="md-nav__item">
1259
+ <a href="../../pnpjs/" class="md-nav__link">
1260
+ pnpjs
1261
+ </a>
1262
+ </li>
1263
+
1264
+
1265
+ </ul>
1266
+ </nav>
1267
+ </li>
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+ <li class="md-nav__item md-nav__item--active md-nav__item--nested">
1278
+
1279
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-9" type="checkbox" id="nav-6-9" checked>
1280
+
1281
+ <label class="md-nav__link" for="nav-6-9">
1282
+ sp
1283
+ <span class="md-nav__icon md-icon"></span>
1284
+ </label>
1285
+ <nav class="md-nav" aria-label="sp" data-md-level="2">
1286
+ <label class="md-nav__title" for="nav-6-9">
1287
+ <span class="md-nav__icon md-icon"></span>
1288
+ sp
1289
+ </label>
1290
+ <ul class="md-nav__list" data-md-scrollfix>
1291
+
1292
+
1293
+
1294
+
1295
+
1296
+
1297
+
1298
+ <li class="md-nav__item">
1299
+ <a href="../" class="md-nav__link">
1300
+ sp
1301
+ </a>
1302
+ </li>
1303
+
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+
1310
+ <li class="md-nav__item">
1311
+ <a href="../alias-parameters/" class="md-nav__link">
1312
+ Alias Parameters
1313
+ </a>
1314
+ </li>
1315
+
1316
+
1317
+
1318
+
1319
+
1320
+
1321
+
1322
+ <li class="md-nav__item">
1323
+ <a href="../alm/" class="md-nav__link">
1324
+ ALM api
1325
+ </a>
1326
+ </li>
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+ <li class="md-nav__item">
1335
+ <a href="../attachments/" class="md-nav__link">
1336
+ Attachments
1337
+ </a>
1338
+ </li>
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+ <li class="md-nav__item">
1347
+ <a href="../clientside-pages/" class="md-nav__link">
1348
+ Client-side Pages
1349
+ </a>
1350
+ </li>
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+ <li class="md-nav__item">
1359
+ <a href="../column-defaults/" class="md-nav__link">
1360
+ Column Defaults
1361
+ </a>
1362
+ </li>
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+ <li class="md-nav__item">
1371
+ <a href="../comments-likes/" class="md-nav__link">
1372
+ Comments and Likes
1373
+ </a>
1374
+ </li>
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+ <li class="md-nav__item">
1383
+ <a href="../content-types/" class="md-nav__link">
1384
+ Content Types
1385
+ </a>
1386
+ </li>
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+ <li class="md-nav__item">
1395
+ <a href="../entity-merging/" class="md-nav__link">
1396
+ Entity Merging
1397
+ </a>
1398
+ </li>
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+ <li class="md-nav__item">
1407
+ <a href="../features/" class="md-nav__link">
1408
+ Features
1409
+ </a>
1410
+ </li>
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+ <li class="md-nav__item">
1419
+ <a href="../fields/" class="md-nav__link">
1420
+ Fields
1421
+ </a>
1422
+ </li>
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+
1430
+ <li class="md-nav__item">
1431
+ <a href="../files/" class="md-nav__link">
1432
+ Files
1433
+ </a>
1434
+ </li>
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+ <li class="md-nav__item">
1443
+ <a href="../folders/" class="md-nav__link">
1444
+ Folders
1445
+ </a>
1446
+ </li>
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+ <li class="md-nav__item">
1455
+ <a href="../forms/" class="md-nav__link">
1456
+ Forms
1457
+ </a>
1458
+ </li>
1459
+
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+ <li class="md-nav__item">
1467
+ <a href="../hubsites/" class="md-nav__link">
1468
+ Hubsites
1469
+ </a>
1470
+ </li>
1471
+
1472
+
1473
+
1474
+
1475
+
1476
+
1477
+
1478
+ <li class="md-nav__item">
1479
+ <a href="../items/" class="md-nav__link">
1480
+ List Items
1481
+ </a>
1482
+ </li>
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+ <li class="md-nav__item">
1491
+ <a href="../lists/" class="md-nav__link">
1492
+ Lists
1493
+ </a>
1494
+ </li>
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+ <li class="md-nav__item">
1503
+ <a href="../navigation/" class="md-nav__link">
1504
+ Navigation
1505
+ </a>
1506
+ </li>
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+
1514
+ <li class="md-nav__item">
1515
+ <a href="../permissions/" class="md-nav__link">
1516
+ Permissions
1517
+ </a>
1518
+ </li>
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+ <li class="md-nav__item">
1527
+ <a href="../profiles/" class="md-nav__link">
1528
+ Profiles
1529
+ </a>
1530
+ </li>
1531
+
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+ <li class="md-nav__item">
1539
+ <a href="../regional-settings/" class="md-nav__link">
1540
+ Regional Settings
1541
+ </a>
1542
+ </li>
1543
+
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+ <li class="md-nav__item">
1551
+ <a href="../related-items/" class="md-nav__link">
1552
+ Related Items
1553
+ </a>
1554
+ </li>
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+ <li class="md-nav__item">
1563
+ <a href="../search/" class="md-nav__link">
1564
+ Search
1565
+ </a>
1566
+ </li>
1567
+
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+ <li class="md-nav__item">
1575
+ <a href="../security/" class="md-nav__link">
1576
+ Security
1577
+ </a>
1578
+ </li>
1579
+
1580
+
1581
+
1582
+
1583
+
1584
+
1585
+
1586
+ <li class="md-nav__item">
1587
+ <a href="../sharing/" class="md-nav__link">
1588
+ Sharing
1589
+ </a>
1590
+ </li>
1591
+
1592
+
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+ <li class="md-nav__item">
1599
+ <a href="../site-designs/" class="md-nav__link">
1600
+ Site Designs
1601
+ </a>
1602
+ </li>
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+ <li class="md-nav__item">
1611
+ <a href="../site-groups/" class="md-nav__link">
1612
+ Site Groups
1613
+ </a>
1614
+ </li>
1615
+
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+ <li class="md-nav__item">
1623
+ <a href="../site-scripts/" class="md-nav__link">
1624
+ Site Scripts
1625
+ </a>
1626
+ </li>
1627
+
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+
1634
+ <li class="md-nav__item">
1635
+ <a href="../site-users/" class="md-nav__link">
1636
+ Site Users
1637
+ </a>
1638
+ </li>
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+
1646
+ <li class="md-nav__item">
1647
+ <a href="../sites/" class="md-nav__link">
1648
+ Sites
1649
+ </a>
1650
+ </li>
1651
+
1652
+
1653
+
1654
+
1655
+
1656
+
1657
+
1658
+ <li class="md-nav__item">
1659
+ <a href="../social/" class="md-nav__link">
1660
+ Social
1661
+ </a>
1662
+ </li>
1663
+
1664
+
1665
+
1666
+
1667
+
1668
+
1669
+
1670
+ <li class="md-nav__item">
1671
+ <a href="../sp-utilities-utility/" class="md-nav__link">
1672
+ SP.Utilities.Utility
1673
+ </a>
1674
+ </li>
1675
+
1676
+
1677
+
1678
+
1679
+
1680
+
1681
+
1682
+ <li class="md-nav__item">
1683
+ <a href="../subscriptions/" class="md-nav__link">
1684
+ Subscriptions
1685
+ </a>
1686
+ </li>
1687
+
1688
+
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+ <li class="md-nav__item">
1695
+ <a href="../taxonomy/" class="md-nav__link">
1696
+ Taxonomy
1697
+ </a>
1698
+ </li>
1699
+
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+ <li class="md-nav__item">
1707
+ <a href="../tenant-properties/" class="md-nav__link">
1708
+ Tenant Properties
1709
+ </a>
1710
+ </li>
1711
+
1712
+
1713
+
1714
+
1715
+
1716
+
1717
+
1718
+ <li class="md-nav__item">
1719
+ <a href="../user-custom-actions/" class="md-nav__link">
1720
+ User custom actions
1721
+ </a>
1722
+ </li>
1723
+
1724
+
1725
+
1726
+
1727
+
1728
+
1729
+
1730
+ <li class="md-nav__item">
1731
+ <a href="../views/" class="md-nav__link">
1732
+ Views
1733
+ </a>
1734
+ </li>
1735
+
1736
+
1737
+
1738
+
1739
+
1740
+
1741
+
1742
+
1743
+
1744
+ <li class="md-nav__item md-nav__item--active">
1745
+
1746
+ <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
1747
+
1748
+
1749
+
1750
+
1751
+ <label class="md-nav__link md-nav__link--active" for="__toc">
1752
+ Webs
1753
+ <span class="md-nav__icon md-icon"></span>
1754
+ </label>
1755
+
1756
+ <a href="./" class="md-nav__link md-nav__link--active">
1757
+ Webs
1758
+ </a>
1759
+
1760
+
1761
+ <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+ <label class="md-nav__title" for="__toc">
1768
+ <span class="md-nav__icon md-icon"></span>
1769
+ Table of contents
1770
+ </label>
1771
+ <ul class="md-nav__list" data-md-scrollfix>
1772
+
1773
+ <li class="md-nav__item">
1774
+ <a href="#iwebs" class="md-nav__link">
1775
+ IWebs
1776
+ </a>
1777
+
1778
+ <nav class="md-nav" aria-label="IWebs">
1779
+ <ul class="md-nav__list">
1780
+
1781
+ <li class="md-nav__item">
1782
+ <a href="#add-web" class="md-nav__link">
1783
+ Add Web
1784
+ </a>
1785
+
1786
+ </li>
1787
+
1788
+ </ul>
1789
+ </nav>
1790
+
1791
+ </li>
1792
+
1793
+ <li class="md-nav__item">
1794
+ <a href="#iweb" class="md-nav__link">
1795
+ IWeb
1796
+ </a>
1797
+
1798
+ <nav class="md-nav" aria-label="IWeb">
1799
+ <ul class="md-nav__list">
1800
+
1801
+ <li class="md-nav__item">
1802
+ <a href="#access-a-web" class="md-nav__link">
1803
+ Access a Web
1804
+ </a>
1805
+
1806
+ </li>
1807
+
1808
+ <li class="md-nav__item">
1809
+ <a href="#webs" class="md-nav__link">
1810
+ webs
1811
+ </a>
1812
+
1813
+ </li>
1814
+
1815
+ <li class="md-nav__item">
1816
+ <a href="#get-a-webs-properties" class="md-nav__link">
1817
+ Get A Web's properties
1818
+ </a>
1819
+
1820
+ </li>
1821
+
1822
+ <li class="md-nav__item">
1823
+ <a href="#getparentweb" class="md-nav__link">
1824
+ getParentWeb
1825
+ </a>
1826
+
1827
+ </li>
1828
+
1829
+ <li class="md-nav__item">
1830
+ <a href="#getsubwebsfilteredforcurrentuser" class="md-nav__link">
1831
+ getSubwebsFilteredForCurrentUser
1832
+ </a>
1833
+
1834
+ </li>
1835
+
1836
+ <li class="md-nav__item">
1837
+ <a href="#allproperties" class="md-nav__link">
1838
+ allProperties
1839
+ </a>
1840
+
1841
+ </li>
1842
+
1843
+ <li class="md-nav__item">
1844
+ <a href="#webinfos" class="md-nav__link">
1845
+ webinfos
1846
+ </a>
1847
+
1848
+ </li>
1849
+
1850
+ <li class="md-nav__item">
1851
+ <a href="#update" class="md-nav__link">
1852
+ update
1853
+ </a>
1854
+
1855
+ </li>
1856
+
1857
+ <li class="md-nav__item">
1858
+ <a href="#delete-a-web" class="md-nav__link">
1859
+ Delete a Web
1860
+ </a>
1861
+
1862
+ </li>
1863
+
1864
+ <li class="md-nav__item">
1865
+ <a href="#applytheme" class="md-nav__link">
1866
+ applyTheme
1867
+ </a>
1868
+
1869
+ </li>
1870
+
1871
+ <li class="md-nav__item">
1872
+ <a href="#applywebtemplate-availablewebtemplates" class="md-nav__link">
1873
+ applyWebTemplate &amp; availableWebTemplates
1874
+ </a>
1875
+
1876
+ </li>
1877
+
1878
+ <li class="md-nav__item">
1879
+ <a href="#getchanges" class="md-nav__link">
1880
+ getChanges
1881
+ </a>
1882
+
1883
+ </li>
1884
+
1885
+ <li class="md-nav__item">
1886
+ <a href="#maptoicon" class="md-nav__link">
1887
+ mapToIcon
1888
+ </a>
1889
+
1890
+ </li>
1891
+
1892
+ <li class="md-nav__item">
1893
+ <a href="#storage-entities" class="md-nav__link">
1894
+ storage entities
1895
+ </a>
1896
+
1897
+ </li>
1898
+
1899
+ </ul>
1900
+ </nav>
1901
+
1902
+ </li>
1903
+
1904
+ <li class="md-nav__item">
1905
+ <a href="#appcatalog-imports" class="md-nav__link">
1906
+ appcatalog imports
1907
+ </a>
1908
+
1909
+ <nav class="md-nav" aria-label="appcatalog imports">
1910
+ <ul class="md-nav__list">
1911
+
1912
+ <li class="md-nav__item">
1913
+ <a href="#getappcatalog" class="md-nav__link">
1914
+ getAppCatalog
1915
+ </a>
1916
+
1917
+ </li>
1918
+
1919
+ </ul>
1920
+ </nav>
1921
+
1922
+ </li>
1923
+
1924
+ <li class="md-nav__item">
1925
+ <a href="#client-side-pages-imports" class="md-nav__link">
1926
+ client-side-pages imports
1927
+ </a>
1928
+
1929
+ </li>
1930
+
1931
+ <li class="md-nav__item">
1932
+ <a href="#content-type-imports" class="md-nav__link">
1933
+ content-type imports
1934
+ </a>
1935
+
1936
+ <nav class="md-nav" aria-label="content-type imports">
1937
+ <ul class="md-nav__list">
1938
+
1939
+ <li class="md-nav__item">
1940
+ <a href="#contenttypes" class="md-nav__link">
1941
+ contentTypes
1942
+ </a>
1943
+
1944
+ </li>
1945
+
1946
+ </ul>
1947
+ </nav>
1948
+
1949
+ </li>
1950
+
1951
+ <li class="md-nav__item">
1952
+ <a href="#features-imports" class="md-nav__link">
1953
+ features imports
1954
+ </a>
1955
+
1956
+ <nav class="md-nav" aria-label="features imports">
1957
+ <ul class="md-nav__list">
1958
+
1959
+ <li class="md-nav__item">
1960
+ <a href="#features" class="md-nav__link">
1961
+ features
1962
+ </a>
1963
+
1964
+ </li>
1965
+
1966
+ </ul>
1967
+ </nav>
1968
+
1969
+ </li>
1970
+
1971
+ <li class="md-nav__item">
1972
+ <a href="#fields-imports" class="md-nav__link">
1973
+ fields imports
1974
+ </a>
1975
+
1976
+ <nav class="md-nav" aria-label="fields imports">
1977
+ <ul class="md-nav__list">
1978
+
1979
+ <li class="md-nav__item">
1980
+ <a href="#fields" class="md-nav__link">
1981
+ fields
1982
+ </a>
1983
+
1984
+ </li>
1985
+
1986
+ </ul>
1987
+ </nav>
1988
+
1989
+ </li>
1990
+
1991
+ <li class="md-nav__item">
1992
+ <a href="#files-imports" class="md-nav__link">
1993
+ files imports
1994
+ </a>
1995
+
1996
+ <nav class="md-nav" aria-label="files imports">
1997
+ <ul class="md-nav__list">
1998
+
1999
+ <li class="md-nav__item">
2000
+ <a href="#getfilebyserverrelativeurl" class="md-nav__link">
2001
+ getFileByServerRelativeUrl
2002
+ </a>
2003
+
2004
+ </li>
2005
+
2006
+ <li class="md-nav__item">
2007
+ <a href="#getfilebyserverrelativepath" class="md-nav__link">
2008
+ getFileByServerRelativePath
2009
+ </a>
2010
+
2011
+ </li>
2012
+
2013
+ </ul>
2014
+ </nav>
2015
+
2016
+ </li>
2017
+
2018
+ <li class="md-nav__item">
2019
+ <a href="#folders-imports" class="md-nav__link">
2020
+ folders imports
2021
+ </a>
2022
+
2023
+ <nav class="md-nav" aria-label="folders imports">
2024
+ <ul class="md-nav__list">
2025
+
2026
+ <li class="md-nav__item">
2027
+ <a href="#folders" class="md-nav__link">
2028
+ folders
2029
+ </a>
2030
+
2031
+ </li>
2032
+
2033
+ <li class="md-nav__item">
2034
+ <a href="#rootfolder" class="md-nav__link">
2035
+ rootFolder
2036
+ </a>
2037
+
2038
+ </li>
2039
+
2040
+ <li class="md-nav__item">
2041
+ <a href="#getfolderbyserverrelativeurl" class="md-nav__link">
2042
+ getFolderByServerRelativeUrl
2043
+ </a>
2044
+
2045
+ </li>
2046
+
2047
+ <li class="md-nav__item">
2048
+ <a href="#getfolderbyserverrelativepath" class="md-nav__link">
2049
+ getFolderByServerRelativePath
2050
+ </a>
2051
+
2052
+ </li>
2053
+
2054
+ </ul>
2055
+ </nav>
2056
+
2057
+ </li>
2058
+
2059
+ <li class="md-nav__item">
2060
+ <a href="#hubsites-imports" class="md-nav__link">
2061
+ hubsites imports
2062
+ </a>
2063
+
2064
+ <nav class="md-nav" aria-label="hubsites imports">
2065
+ <ul class="md-nav__list">
2066
+
2067
+ <li class="md-nav__item">
2068
+ <a href="#hubsitedata" class="md-nav__link">
2069
+ hubSiteData
2070
+ </a>
2071
+
2072
+ </li>
2073
+
2074
+ <li class="md-nav__item">
2075
+ <a href="#synchubsitetheme" class="md-nav__link">
2076
+ syncHubSiteTheme
2077
+ </a>
2078
+
2079
+ </li>
2080
+
2081
+ </ul>
2082
+ </nav>
2083
+
2084
+ </li>
2085
+
2086
+ <li class="md-nav__item">
2087
+ <a href="#lists-imports" class="md-nav__link">
2088
+ lists imports
2089
+ </a>
2090
+
2091
+ <nav class="md-nav" aria-label="lists imports">
2092
+ <ul class="md-nav__list">
2093
+
2094
+ <li class="md-nav__item">
2095
+ <a href="#lists" class="md-nav__link">
2096
+ lists
2097
+ </a>
2098
+
2099
+ </li>
2100
+
2101
+ <li class="md-nav__item">
2102
+ <a href="#siteuserinfolist" class="md-nav__link">
2103
+ siteUserInfoList
2104
+ </a>
2105
+
2106
+ </li>
2107
+
2108
+ <li class="md-nav__item">
2109
+ <a href="#defaultdocumentlibrary" class="md-nav__link">
2110
+ defaultDocumentLibrary
2111
+ </a>
2112
+
2113
+ </li>
2114
+
2115
+ <li class="md-nav__item">
2116
+ <a href="#customlisttemplates" class="md-nav__link">
2117
+ customListTemplates
2118
+ </a>
2119
+
2120
+ </li>
2121
+
2122
+ <li class="md-nav__item">
2123
+ <a href="#getlist" class="md-nav__link">
2124
+ getList
2125
+ </a>
2126
+
2127
+ </li>
2128
+
2129
+ <li class="md-nav__item">
2130
+ <a href="#getcatalog" class="md-nav__link">
2131
+ getCatalog
2132
+ </a>
2133
+
2134
+ </li>
2135
+
2136
+ </ul>
2137
+ </nav>
2138
+
2139
+ </li>
2140
+
2141
+ <li class="md-nav__item">
2142
+ <a href="#navigation-imports" class="md-nav__link">
2143
+ navigation imports
2144
+ </a>
2145
+
2146
+ <nav class="md-nav" aria-label="navigation imports">
2147
+ <ul class="md-nav__list">
2148
+
2149
+ <li class="md-nav__item">
2150
+ <a href="#navigation" class="md-nav__link">
2151
+ navigation
2152
+ </a>
2153
+
2154
+ </li>
2155
+
2156
+ </ul>
2157
+ </nav>
2158
+
2159
+ </li>
2160
+
2161
+ <li class="md-nav__item">
2162
+ <a href="#regional-settings-imports" class="md-nav__link">
2163
+ regional-settings imports
2164
+ </a>
2165
+
2166
+ </li>
2167
+
2168
+ <li class="md-nav__item">
2169
+ <a href="#related-items-imports" class="md-nav__link">
2170
+ related-items imports
2171
+ </a>
2172
+
2173
+ </li>
2174
+
2175
+ <li class="md-nav__item">
2176
+ <a href="#security-imports" class="md-nav__link">
2177
+ security imports
2178
+ </a>
2179
+
2180
+ </li>
2181
+
2182
+ <li class="md-nav__item">
2183
+ <a href="#sharing-imports" class="md-nav__link">
2184
+ sharing imports
2185
+ </a>
2186
+
2187
+ </li>
2188
+
2189
+ <li class="md-nav__item">
2190
+ <a href="#site-groups-imports" class="md-nav__link">
2191
+ site-groups imports
2192
+ </a>
2193
+
2194
+ <nav class="md-nav" aria-label="site-groups imports">
2195
+ <ul class="md-nav__list">
2196
+
2197
+ <li class="md-nav__item">
2198
+ <a href="#sitegroups" class="md-nav__link">
2199
+ siteGroups
2200
+ </a>
2201
+
2202
+ </li>
2203
+
2204
+ <li class="md-nav__item">
2205
+ <a href="#associatedownergroup" class="md-nav__link">
2206
+ associatedOwnerGroup
2207
+ </a>
2208
+
2209
+ </li>
2210
+
2211
+ <li class="md-nav__item">
2212
+ <a href="#associatedmembergroup" class="md-nav__link">
2213
+ associatedMemberGroup
2214
+ </a>
2215
+
2216
+ </li>
2217
+
2218
+ <li class="md-nav__item">
2219
+ <a href="#associatedvisitorgroup" class="md-nav__link">
2220
+ associatedVisitorGroup
2221
+ </a>
2222
+
2223
+ </li>
2224
+
2225
+ <li class="md-nav__item">
2226
+ <a href="#createdefaultassociatedgroups" class="md-nav__link">
2227
+ createDefaultAssociatedGroups
2228
+ </a>
2229
+
2230
+ </li>
2231
+
2232
+ </ul>
2233
+ </nav>
2234
+
2235
+ </li>
2236
+
2237
+ <li class="md-nav__item">
2238
+ <a href="#site-users-imports" class="md-nav__link">
2239
+ site-users imports
2240
+ </a>
2241
+
2242
+ <nav class="md-nav" aria-label="site-users imports">
2243
+ <ul class="md-nav__list">
2244
+
2245
+ <li class="md-nav__item">
2246
+ <a href="#siteusers" class="md-nav__link">
2247
+ siteUsers
2248
+ </a>
2249
+
2250
+ </li>
2251
+
2252
+ <li class="md-nav__item">
2253
+ <a href="#currentuser" class="md-nav__link">
2254
+ currentUser
2255
+ </a>
2256
+
2257
+ </li>
2258
+
2259
+ <li class="md-nav__item">
2260
+ <a href="#ensureuser" class="md-nav__link">
2261
+ ensureUser
2262
+ </a>
2263
+
2264
+ </li>
2265
+
2266
+ <li class="md-nav__item">
2267
+ <a href="#getuserbyid" class="md-nav__link">
2268
+ getUserById
2269
+ </a>
2270
+
2271
+ </li>
2272
+
2273
+ </ul>
2274
+ </nav>
2275
+
2276
+ </li>
2277
+
2278
+ <li class="md-nav__item">
2279
+ <a href="#user-custom-actions-imports" class="md-nav__link">
2280
+ user-custom-actions imports
2281
+ </a>
2282
+
2283
+ </li>
2284
+
2285
+ <li class="md-nav__item">
2286
+ <a href="#usercustomactions" class="md-nav__link">
2287
+ userCustomActions
2288
+ </a>
2289
+
2290
+ </li>
2291
+
2292
+ <li class="md-nav__item">
2293
+ <a href="#iwebinfosdata" class="md-nav__link">
2294
+ IWebInfosData
2295
+ </a>
2296
+
2297
+ </li>
2298
+
2299
+ </ul>
2300
+
2301
+ </nav>
2302
+
2303
+ </li>
2304
+
2305
+
2306
+
2307
+
2308
+
2309
+
2310
+
2311
+ <li class="md-nav__item">
2312
+ <a href="../custom-irequestclient/" class="md-nav__link">
2313
+ Custom Request Client
2314
+ </a>
2315
+ </li>
2316
+
2317
+
2318
+ </ul>
2319
+ </nav>
2320
+ </li>
2321
+
2322
+
2323
+
2324
+
2325
+
2326
+
2327
+
2328
+ <li class="md-nav__item md-nav__item--nested">
2329
+
2330
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-10" type="checkbox" id="nav-6-10">
2331
+
2332
+ <label class="md-nav__link" for="nav-6-10">
2333
+ sp-addinhelpers
2334
+ <span class="md-nav__icon md-icon"></span>
2335
+ </label>
2336
+ <nav class="md-nav" aria-label="sp-addinhelpers" data-md-level="2">
2337
+ <label class="md-nav__title" for="nav-6-10">
2338
+ <span class="md-nav__icon md-icon"></span>
2339
+ sp-addinhelpers
2340
+ </label>
2341
+ <ul class="md-nav__list" data-md-scrollfix>
2342
+
2343
+
2344
+
2345
+
2346
+
2347
+
2348
+
2349
+ <li class="md-nav__item">
2350
+ <a href="../../sp-addinhelpers/" class="md-nav__link">
2351
+ sp-addinhelpers
2352
+ </a>
2353
+ </li>
2354
+
2355
+
2356
+
2357
+
2358
+
2359
+
2360
+
2361
+ <li class="md-nav__item">
2362
+ <a href="../../sp-addinhelpers/sp-request-executor-client/" class="md-nav__link">
2363
+ SPRequestExecutorClient
2364
+ </a>
2365
+ </li>
2366
+
2367
+
2368
+
2369
+
2370
+
2371
+
2372
+
2373
+ <li class="md-nav__item">
2374
+ <a href="../../sp-addinhelpers/sp-rest-addin/" class="md-nav__link">
2375
+ SPRestAddIn
2376
+ </a>
2377
+ </li>
2378
+
2379
+
2380
+ </ul>
2381
+ </nav>
2382
+ </li>
2383
+
2384
+
2385
+ </ul>
2386
+ </nav>
2387
+ </li>
2388
+
2389
+
2390
+
2391
+
2392
+
2393
+
2394
+
2395
+ <li class="md-nav__item md-nav__item--nested">
2396
+
2397
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-7" type="checkbox" id="nav-7">
2398
+
2399
+ <label class="md-nav__link" for="nav-7">
2400
+ Contributing
2401
+ <span class="md-nav__icon md-icon"></span>
2402
+ </label>
2403
+ <nav class="md-nav" aria-label="Contributing" data-md-level="1">
2404
+ <label class="md-nav__title" for="nav-7">
2405
+ <span class="md-nav__icon md-icon"></span>
2406
+ Contributing
2407
+ </label>
2408
+ <ul class="md-nav__list" data-md-scrollfix>
2409
+
2410
+
2411
+
2412
+
2413
+
2414
+
2415
+
2416
+ <li class="md-nav__item">
2417
+ <a href="../../contributing/" class="md-nav__link">
2418
+ Contributing
2419
+ </a>
2420
+ </li>
2421
+
2422
+
2423
+
2424
+
2425
+
2426
+
2427
+
2428
+ <li class="md-nav__item">
2429
+ <a href="../../contributing/setup-dev-machine/" class="md-nav__link">
2430
+ Setup Dev Machine
2431
+ </a>
2432
+ </li>
2433
+
2434
+
2435
+
2436
+
2437
+
2438
+
2439
+
2440
+ <li class="md-nav__item">
2441
+ <a href="../../contributing/local-debug-configuration/" class="md-nav__link">
2442
+ Local Debug Configuration
2443
+ </a>
2444
+ </li>
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+
2451
+
2452
+ <li class="md-nav__item">
2453
+ <a href="../../contributing/debugging/" class="md-nav__link">
2454
+ Debugging
2455
+ </a>
2456
+ </li>
2457
+
2458
+
2459
+
2460
+
2461
+
2462
+
2463
+
2464
+ <li class="md-nav__item">
2465
+ <a href="../../contributing/extending-the-library/" class="md-nav__link">
2466
+ Extending the library
2467
+ </a>
2468
+ </li>
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+
2475
+
2476
+ <li class="md-nav__item">
2477
+ <a href="../../contributing/debug-tests/" class="md-nav__link">
2478
+ Writing Tests
2479
+ </a>
2480
+ </li>
2481
+
2482
+
2483
+
2484
+
2485
+
2486
+
2487
+
2488
+ <li class="md-nav__item">
2489
+ <a href="../../contributing/documentation/" class="md-nav__link">
2490
+ Update Documentation
2491
+ </a>
2492
+ </li>
2493
+
2494
+
2495
+
2496
+
2497
+
2498
+
2499
+
2500
+ <li class="md-nav__item">
2501
+ <a href="../../contributing/pull-requests/" class="md-nav__link">
2502
+ Submit a Pull Request
2503
+ </a>
2504
+ </li>
2505
+
2506
+
2507
+ </ul>
2508
+ </nav>
2509
+ </li>
2510
+
2511
+
2512
+
2513
+
2514
+
2515
+
2516
+
2517
+ <li class="md-nav__item md-nav__item--nested">
2518
+
2519
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-8" type="checkbox" id="nav-8">
2520
+
2521
+ <label class="md-nav__link" for="nav-8">
2522
+ Version 1 Docs
2523
+ <span class="md-nav__icon md-icon"></span>
2524
+ </label>
2525
+ <nav class="md-nav" aria-label="Version 1 Docs" data-md-level="1">
2526
+ <label class="md-nav__title" for="nav-8">
2527
+ <span class="md-nav__icon md-icon"></span>
2528
+ Version 1 Docs
2529
+ </label>
2530
+ <ul class="md-nav__list" data-md-scrollfix>
2531
+
2532
+
2533
+
2534
+
2535
+
2536
+
2537
+
2538
+ <li class="md-nav__item">
2539
+ <a href="../../v1/" class="md-nav__link">
2540
+ Home
2541
+ </a>
2542
+ </li>
2543
+
2544
+
2545
+ </ul>
2546
+ </nav>
2547
+ </li>
2548
+
2549
+
2550
+
2551
+
2552
+
2553
+
2554
+
2555
+ <li class="md-nav__item md-nav__item--nested">
2556
+
2557
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-9" type="checkbox" id="nav-9">
2558
+
2559
+ <label class="md-nav__link" for="nav-9">
2560
+ Version 2 Docs
2561
+ <span class="md-nav__icon md-icon"></span>
2562
+ </label>
2563
+ <nav class="md-nav" aria-label="Version 2 Docs" data-md-level="1">
2564
+ <label class="md-nav__title" for="nav-9">
2565
+ <span class="md-nav__icon md-icon"></span>
2566
+ Version 2 Docs
2567
+ </label>
2568
+ <ul class="md-nav__list" data-md-scrollfix>
2569
+
2570
+
2571
+
2572
+
2573
+
2574
+
2575
+
2576
+ <li class="md-nav__item">
2577
+ <a href="../../v2/index.html" class="md-nav__link">
2578
+ Home
2579
+ </a>
2580
+ </li>
2581
+
2582
+
2583
+ </ul>
2584
+ </nav>
2585
+ </li>
2586
+
2587
+
2588
+ </ul>
2589
+ </nav>
2590
+ </div>
2591
+ </div>
2592
+ </div>
2593
+
2594
+
2595
+ <div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
2596
+ <div class="md-sidebar__scrollwrap">
2597
+ <div class="md-sidebar__inner">
2598
+
2599
+ <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
2600
+
2601
+
2602
+
2603
+
2604
+
2605
+ <label class="md-nav__title" for="__toc">
2606
+ <span class="md-nav__icon md-icon"></span>
2607
+ Table of contents
2608
+ </label>
2609
+ <ul class="md-nav__list" data-md-scrollfix>
2610
+
2611
+ <li class="md-nav__item">
2612
+ <a href="#iwebs" class="md-nav__link">
2613
+ IWebs
2614
+ </a>
2615
+
2616
+ <nav class="md-nav" aria-label="IWebs">
2617
+ <ul class="md-nav__list">
2618
+
2619
+ <li class="md-nav__item">
2620
+ <a href="#add-web" class="md-nav__link">
2621
+ Add Web
2622
+ </a>
2623
+
2624
+ </li>
2625
+
2626
+ </ul>
2627
+ </nav>
2628
+
2629
+ </li>
2630
+
2631
+ <li class="md-nav__item">
2632
+ <a href="#iweb" class="md-nav__link">
2633
+ IWeb
2634
+ </a>
2635
+
2636
+ <nav class="md-nav" aria-label="IWeb">
2637
+ <ul class="md-nav__list">
2638
+
2639
+ <li class="md-nav__item">
2640
+ <a href="#access-a-web" class="md-nav__link">
2641
+ Access a Web
2642
+ </a>
2643
+
2644
+ </li>
2645
+
2646
+ <li class="md-nav__item">
2647
+ <a href="#webs" class="md-nav__link">
2648
+ webs
2649
+ </a>
2650
+
2651
+ </li>
2652
+
2653
+ <li class="md-nav__item">
2654
+ <a href="#get-a-webs-properties" class="md-nav__link">
2655
+ Get A Web's properties
2656
+ </a>
2657
+
2658
+ </li>
2659
+
2660
+ <li class="md-nav__item">
2661
+ <a href="#getparentweb" class="md-nav__link">
2662
+ getParentWeb
2663
+ </a>
2664
+
2665
+ </li>
2666
+
2667
+ <li class="md-nav__item">
2668
+ <a href="#getsubwebsfilteredforcurrentuser" class="md-nav__link">
2669
+ getSubwebsFilteredForCurrentUser
2670
+ </a>
2671
+
2672
+ </li>
2673
+
2674
+ <li class="md-nav__item">
2675
+ <a href="#allproperties" class="md-nav__link">
2676
+ allProperties
2677
+ </a>
2678
+
2679
+ </li>
2680
+
2681
+ <li class="md-nav__item">
2682
+ <a href="#webinfos" class="md-nav__link">
2683
+ webinfos
2684
+ </a>
2685
+
2686
+ </li>
2687
+
2688
+ <li class="md-nav__item">
2689
+ <a href="#update" class="md-nav__link">
2690
+ update
2691
+ </a>
2692
+
2693
+ </li>
2694
+
2695
+ <li class="md-nav__item">
2696
+ <a href="#delete-a-web" class="md-nav__link">
2697
+ Delete a Web
2698
+ </a>
2699
+
2700
+ </li>
2701
+
2702
+ <li class="md-nav__item">
2703
+ <a href="#applytheme" class="md-nav__link">
2704
+ applyTheme
2705
+ </a>
2706
+
2707
+ </li>
2708
+
2709
+ <li class="md-nav__item">
2710
+ <a href="#applywebtemplate-availablewebtemplates" class="md-nav__link">
2711
+ applyWebTemplate &amp; availableWebTemplates
2712
+ </a>
2713
+
2714
+ </li>
2715
+
2716
+ <li class="md-nav__item">
2717
+ <a href="#getchanges" class="md-nav__link">
2718
+ getChanges
2719
+ </a>
2720
+
2721
+ </li>
2722
+
2723
+ <li class="md-nav__item">
2724
+ <a href="#maptoicon" class="md-nav__link">
2725
+ mapToIcon
2726
+ </a>
2727
+
2728
+ </li>
2729
+
2730
+ <li class="md-nav__item">
2731
+ <a href="#storage-entities" class="md-nav__link">
2732
+ storage entities
2733
+ </a>
2734
+
2735
+ </li>
2736
+
2737
+ </ul>
2738
+ </nav>
2739
+
2740
+ </li>
2741
+
2742
+ <li class="md-nav__item">
2743
+ <a href="#appcatalog-imports" class="md-nav__link">
2744
+ appcatalog imports
2745
+ </a>
2746
+
2747
+ <nav class="md-nav" aria-label="appcatalog imports">
2748
+ <ul class="md-nav__list">
2749
+
2750
+ <li class="md-nav__item">
2751
+ <a href="#getappcatalog" class="md-nav__link">
2752
+ getAppCatalog
2753
+ </a>
2754
+
2755
+ </li>
2756
+
2757
+ </ul>
2758
+ </nav>
2759
+
2760
+ </li>
2761
+
2762
+ <li class="md-nav__item">
2763
+ <a href="#client-side-pages-imports" class="md-nav__link">
2764
+ client-side-pages imports
2765
+ </a>
2766
+
2767
+ </li>
2768
+
2769
+ <li class="md-nav__item">
2770
+ <a href="#content-type-imports" class="md-nav__link">
2771
+ content-type imports
2772
+ </a>
2773
+
2774
+ <nav class="md-nav" aria-label="content-type imports">
2775
+ <ul class="md-nav__list">
2776
+
2777
+ <li class="md-nav__item">
2778
+ <a href="#contenttypes" class="md-nav__link">
2779
+ contentTypes
2780
+ </a>
2781
+
2782
+ </li>
2783
+
2784
+ </ul>
2785
+ </nav>
2786
+
2787
+ </li>
2788
+
2789
+ <li class="md-nav__item">
2790
+ <a href="#features-imports" class="md-nav__link">
2791
+ features imports
2792
+ </a>
2793
+
2794
+ <nav class="md-nav" aria-label="features imports">
2795
+ <ul class="md-nav__list">
2796
+
2797
+ <li class="md-nav__item">
2798
+ <a href="#features" class="md-nav__link">
2799
+ features
2800
+ </a>
2801
+
2802
+ </li>
2803
+
2804
+ </ul>
2805
+ </nav>
2806
+
2807
+ </li>
2808
+
2809
+ <li class="md-nav__item">
2810
+ <a href="#fields-imports" class="md-nav__link">
2811
+ fields imports
2812
+ </a>
2813
+
2814
+ <nav class="md-nav" aria-label="fields imports">
2815
+ <ul class="md-nav__list">
2816
+
2817
+ <li class="md-nav__item">
2818
+ <a href="#fields" class="md-nav__link">
2819
+ fields
2820
+ </a>
2821
+
2822
+ </li>
2823
+
2824
+ </ul>
2825
+ </nav>
2826
+
2827
+ </li>
2828
+
2829
+ <li class="md-nav__item">
2830
+ <a href="#files-imports" class="md-nav__link">
2831
+ files imports
2832
+ </a>
2833
+
2834
+ <nav class="md-nav" aria-label="files imports">
2835
+ <ul class="md-nav__list">
2836
+
2837
+ <li class="md-nav__item">
2838
+ <a href="#getfilebyserverrelativeurl" class="md-nav__link">
2839
+ getFileByServerRelativeUrl
2840
+ </a>
2841
+
2842
+ </li>
2843
+
2844
+ <li class="md-nav__item">
2845
+ <a href="#getfilebyserverrelativepath" class="md-nav__link">
2846
+ getFileByServerRelativePath
2847
+ </a>
2848
+
2849
+ </li>
2850
+
2851
+ </ul>
2852
+ </nav>
2853
+
2854
+ </li>
2855
+
2856
+ <li class="md-nav__item">
2857
+ <a href="#folders-imports" class="md-nav__link">
2858
+ folders imports
2859
+ </a>
2860
+
2861
+ <nav class="md-nav" aria-label="folders imports">
2862
+ <ul class="md-nav__list">
2863
+
2864
+ <li class="md-nav__item">
2865
+ <a href="#folders" class="md-nav__link">
2866
+ folders
2867
+ </a>
2868
+
2869
+ </li>
2870
+
2871
+ <li class="md-nav__item">
2872
+ <a href="#rootfolder" class="md-nav__link">
2873
+ rootFolder
2874
+ </a>
2875
+
2876
+ </li>
2877
+
2878
+ <li class="md-nav__item">
2879
+ <a href="#getfolderbyserverrelativeurl" class="md-nav__link">
2880
+ getFolderByServerRelativeUrl
2881
+ </a>
2882
+
2883
+ </li>
2884
+
2885
+ <li class="md-nav__item">
2886
+ <a href="#getfolderbyserverrelativepath" class="md-nav__link">
2887
+ getFolderByServerRelativePath
2888
+ </a>
2889
+
2890
+ </li>
2891
+
2892
+ </ul>
2893
+ </nav>
2894
+
2895
+ </li>
2896
+
2897
+ <li class="md-nav__item">
2898
+ <a href="#hubsites-imports" class="md-nav__link">
2899
+ hubsites imports
2900
+ </a>
2901
+
2902
+ <nav class="md-nav" aria-label="hubsites imports">
2903
+ <ul class="md-nav__list">
2904
+
2905
+ <li class="md-nav__item">
2906
+ <a href="#hubsitedata" class="md-nav__link">
2907
+ hubSiteData
2908
+ </a>
2909
+
2910
+ </li>
2911
+
2912
+ <li class="md-nav__item">
2913
+ <a href="#synchubsitetheme" class="md-nav__link">
2914
+ syncHubSiteTheme
2915
+ </a>
2916
+
2917
+ </li>
2918
+
2919
+ </ul>
2920
+ </nav>
2921
+
2922
+ </li>
2923
+
2924
+ <li class="md-nav__item">
2925
+ <a href="#lists-imports" class="md-nav__link">
2926
+ lists imports
2927
+ </a>
2928
+
2929
+ <nav class="md-nav" aria-label="lists imports">
2930
+ <ul class="md-nav__list">
2931
+
2932
+ <li class="md-nav__item">
2933
+ <a href="#lists" class="md-nav__link">
2934
+ lists
2935
+ </a>
2936
+
2937
+ </li>
2938
+
2939
+ <li class="md-nav__item">
2940
+ <a href="#siteuserinfolist" class="md-nav__link">
2941
+ siteUserInfoList
2942
+ </a>
2943
+
2944
+ </li>
2945
+
2946
+ <li class="md-nav__item">
2947
+ <a href="#defaultdocumentlibrary" class="md-nav__link">
2948
+ defaultDocumentLibrary
2949
+ </a>
2950
+
2951
+ </li>
2952
+
2953
+ <li class="md-nav__item">
2954
+ <a href="#customlisttemplates" class="md-nav__link">
2955
+ customListTemplates
2956
+ </a>
2957
+
2958
+ </li>
2959
+
2960
+ <li class="md-nav__item">
2961
+ <a href="#getlist" class="md-nav__link">
2962
+ getList
2963
+ </a>
2964
+
2965
+ </li>
2966
+
2967
+ <li class="md-nav__item">
2968
+ <a href="#getcatalog" class="md-nav__link">
2969
+ getCatalog
2970
+ </a>
2971
+
2972
+ </li>
2973
+
2974
+ </ul>
2975
+ </nav>
2976
+
2977
+ </li>
2978
+
2979
+ <li class="md-nav__item">
2980
+ <a href="#navigation-imports" class="md-nav__link">
2981
+ navigation imports
2982
+ </a>
2983
+
2984
+ <nav class="md-nav" aria-label="navigation imports">
2985
+ <ul class="md-nav__list">
2986
+
2987
+ <li class="md-nav__item">
2988
+ <a href="#navigation" class="md-nav__link">
2989
+ navigation
2990
+ </a>
2991
+
2992
+ </li>
2993
+
2994
+ </ul>
2995
+ </nav>
2996
+
2997
+ </li>
2998
+
2999
+ <li class="md-nav__item">
3000
+ <a href="#regional-settings-imports" class="md-nav__link">
3001
+ regional-settings imports
3002
+ </a>
3003
+
3004
+ </li>
3005
+
3006
+ <li class="md-nav__item">
3007
+ <a href="#related-items-imports" class="md-nav__link">
3008
+ related-items imports
3009
+ </a>
3010
+
3011
+ </li>
3012
+
3013
+ <li class="md-nav__item">
3014
+ <a href="#security-imports" class="md-nav__link">
3015
+ security imports
3016
+ </a>
3017
+
3018
+ </li>
3019
+
3020
+ <li class="md-nav__item">
3021
+ <a href="#sharing-imports" class="md-nav__link">
3022
+ sharing imports
3023
+ </a>
3024
+
3025
+ </li>
3026
+
3027
+ <li class="md-nav__item">
3028
+ <a href="#site-groups-imports" class="md-nav__link">
3029
+ site-groups imports
3030
+ </a>
3031
+
3032
+ <nav class="md-nav" aria-label="site-groups imports">
3033
+ <ul class="md-nav__list">
3034
+
3035
+ <li class="md-nav__item">
3036
+ <a href="#sitegroups" class="md-nav__link">
3037
+ siteGroups
3038
+ </a>
3039
+
3040
+ </li>
3041
+
3042
+ <li class="md-nav__item">
3043
+ <a href="#associatedownergroup" class="md-nav__link">
3044
+ associatedOwnerGroup
3045
+ </a>
3046
+
3047
+ </li>
3048
+
3049
+ <li class="md-nav__item">
3050
+ <a href="#associatedmembergroup" class="md-nav__link">
3051
+ associatedMemberGroup
3052
+ </a>
3053
+
3054
+ </li>
3055
+
3056
+ <li class="md-nav__item">
3057
+ <a href="#associatedvisitorgroup" class="md-nav__link">
3058
+ associatedVisitorGroup
3059
+ </a>
3060
+
3061
+ </li>
3062
+
3063
+ <li class="md-nav__item">
3064
+ <a href="#createdefaultassociatedgroups" class="md-nav__link">
3065
+ createDefaultAssociatedGroups
3066
+ </a>
3067
+
3068
+ </li>
3069
+
3070
+ </ul>
3071
+ </nav>
3072
+
3073
+ </li>
3074
+
3075
+ <li class="md-nav__item">
3076
+ <a href="#site-users-imports" class="md-nav__link">
3077
+ site-users imports
3078
+ </a>
3079
+
3080
+ <nav class="md-nav" aria-label="site-users imports">
3081
+ <ul class="md-nav__list">
3082
+
3083
+ <li class="md-nav__item">
3084
+ <a href="#siteusers" class="md-nav__link">
3085
+ siteUsers
3086
+ </a>
3087
+
3088
+ </li>
3089
+
3090
+ <li class="md-nav__item">
3091
+ <a href="#currentuser" class="md-nav__link">
3092
+ currentUser
3093
+ </a>
3094
+
3095
+ </li>
3096
+
3097
+ <li class="md-nav__item">
3098
+ <a href="#ensureuser" class="md-nav__link">
3099
+ ensureUser
3100
+ </a>
3101
+
3102
+ </li>
3103
+
3104
+ <li class="md-nav__item">
3105
+ <a href="#getuserbyid" class="md-nav__link">
3106
+ getUserById
3107
+ </a>
3108
+
3109
+ </li>
3110
+
3111
+ </ul>
3112
+ </nav>
3113
+
3114
+ </li>
3115
+
3116
+ <li class="md-nav__item">
3117
+ <a href="#user-custom-actions-imports" class="md-nav__link">
3118
+ user-custom-actions imports
3119
+ </a>
3120
+
3121
+ </li>
3122
+
3123
+ <li class="md-nav__item">
3124
+ <a href="#usercustomactions" class="md-nav__link">
3125
+ userCustomActions
3126
+ </a>
3127
+
3128
+ </li>
3129
+
3130
+ <li class="md-nav__item">
3131
+ <a href="#iwebinfosdata" class="md-nav__link">
3132
+ IWebInfosData
3133
+ </a>
3134
+
3135
+ </li>
3136
+
3137
+ </ul>
3138
+
3139
+ </nav>
3140
+ </div>
3141
+ </div>
3142
+ </div>
3143
+
3144
+
3145
+ <div class="md-content">
3146
+ <article class="md-content__inner md-typeset">
3147
+
3148
+
3149
+ <a href="https://github.com/pnp/pnpjs/tree/version-2/docs/sp/webs.md" title="Edit this page" class="md-content__button md-icon">
3150
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75L3 17.25z"/></svg>
3151
+ </a>
3152
+
3153
+
3154
+ <h1 id="pnpspwebs">@pnp/sp/webs<a class="headerlink" href="#pnpspwebs" title="Permanent link">&para;</a></h1>
3155
+ <p>Webs are one of the fundamental entry points when working with SharePoint. Webs serve as a container for lists, features, sub-webs, and all of the entity types.</p>
3156
+ <h2 id="iwebs">IWebs<a class="headerlink" href="#iwebs" title="Permanent link">&para;</a></h2>
3157
+ <p><a href="../../concepts/invokable/"><img alt="Invokable Banner" src="https://img.shields.io/badge/Invokable-informational.svg" /></a> <a href="../../concepts/selective-imports/"><img alt="Selective Imports Banner" src="https://img.shields.io/badge/Selective%20Imports-informational.svg" /></a> </p>
3158
+ <table>
3159
+ <thead>
3160
+ <tr>
3161
+ <th>Scenario</th>
3162
+ <th>Import Statement</th>
3163
+ </tr>
3164
+ </thead>
3165
+ <tbody>
3166
+ <tr>
3167
+ <td>Selective 1</td>
3168
+ <td>import { sp } from "@pnp/sp";<br />import { Webs, IWebs } from "@pnp/sp/webs";</td>
3169
+ </tr>
3170
+ <tr>
3171
+ <td>Selective 2</td>
3172
+ <td>import { sp } from "@pnp/sp";<br />import "@pnp/sp/webs";</td>
3173
+ </tr>
3174
+ <tr>
3175
+ <td>Preset: All</td>
3176
+ <td>import { sp, Webs, IWebs } from "@pnp/sp/presets/all";</td>
3177
+ </tr>
3178
+ <tr>
3179
+ <td>Preset: Core</td>
3180
+ <td>import { sp, Webs, IWebs } from "@pnp/sp/presets/core";</td>
3181
+ </tr>
3182
+ </tbody>
3183
+ </table>
3184
+ <h3 id="add-web">Add Web<a class="headerlink" href="#add-web" title="Permanent link">&para;</a></h3>
3185
+ <p>Using the library you can add a web to another web's collection of subwebs. The simplest usage requires only a title and url. This will result in a team site with all of the default settings. You can also provide other settings such as description, template, language, and inherit permissions.</p>
3186
+ <pre><code class="language-TypeScript">import { sp } from &quot;@pnp/sp&quot;;
3187
+ import { IWebAddResult } from &quot;@pnp/sp/webs&quot;;
3188
+
3189
+ const result = await sp.web.webs.add(&quot;title&quot;, &quot;subweb1&quot;);
3190
+
3191
+ // show the response from the server when adding the web
3192
+ console.log(result.data);
3193
+
3194
+ // we can immediately operate on the new web
3195
+ result.web.select(&quot;Title&quot;)().then((w: IWebAddResult) =&gt; {
3196
+
3197
+ // show our title
3198
+ console.log(w.Title);
3199
+ });
3200
+ </code></pre>
3201
+ <pre><code class="language-TypeScript">import { sp } from &quot;@pnp/sp&quot;;
3202
+ import { IWebAddResult } from &quot;@pnp/sp/webs&quot;;
3203
+
3204
+ // create a German language wiki site with title, url, description, which does not inherit permissions
3205
+ sp.web.webs.add(&quot;wiki&quot;, &quot;subweb2&quot;, &quot;a wiki web&quot;, &quot;WIKI#0&quot;, 1031, false).then((w: IWebAddResult) =&gt; {
3206
+
3207
+ // ...
3208
+ });
3209
+ </code></pre>
3210
+ <h2 id="iweb">IWeb<a class="headerlink" href="#iweb" title="Permanent link">&para;</a></h2>
3211
+ <p><a href="../../concepts/invokable/"><img alt="Invokable Banner" src="https://img.shields.io/badge/Invokable-informational.svg" /></a> <a href="../../concepts/selective-imports/"><img alt="Selective Imports Banner" src="https://img.shields.io/badge/Selective%20Imports-informational.svg" /></a> </p>
3212
+ <table>
3213
+ <thead>
3214
+ <tr>
3215
+ <th>Scenario</th>
3216
+ <th>Import Statement</th>
3217
+ </tr>
3218
+ </thead>
3219
+ <tbody>
3220
+ <tr>
3221
+ <td>Selective 1</td>
3222
+ <td>import { sp } from "@pnp/sp";<br />import { Web, IWeb } from "@pnp/sp/webs";</td>
3223
+ </tr>
3224
+ <tr>
3225
+ <td>Selective 2</td>
3226
+ <td>import { sp } from "@pnp/sp";<br />import "@pnp/sp/webs";</td>
3227
+ </tr>
3228
+ <tr>
3229
+ <td>Preset: All</td>
3230
+ <td>import { sp, Web, IWeb } from "@pnp/sp/presets/all";</td>
3231
+ </tr>
3232
+ <tr>
3233
+ <td>Preset: Core</td>
3234
+ <td>import { sp, Web, IWeb } from "@pnp/sp/presets/core";</td>
3235
+ </tr>
3236
+ </tbody>
3237
+ </table>
3238
+ <h3 id="access-a-web">Access a Web<a class="headerlink" href="#access-a-web" title="Permanent link">&para;</a></h3>
3239
+ <p>There are several ways to access a web instance, each of these methods is equivalent in that you will have an IWeb instance to work with. All of the examples below use a variable named "web" which represents an IWeb instance - regardless of how it was initially accessed.</p>
3240
+ <p><strong>Access the web from the imported "sp" object using selective import:</strong></p>
3241
+ <pre><code class="language-TypeScript">import { sp } from &quot;@pnp/sp&quot;;
3242
+ import &quot;@pnp/sp/webs&quot;;
3243
+
3244
+ const r = await sp.web();
3245
+ </code></pre>
3246
+ <p><strong>Access the web from the imported "sp" using the 'all' preset</strong></p>
3247
+ <pre><code class="language-TypeScript">import { sp } from &quot;@pnp/sp/presets/all&quot;;
3248
+
3249
+ const r = await sp.web();
3250
+ </code></pre>
3251
+ <p><strong>Access the web from the imported "sp" using the 'core' preset</strong></p>
3252
+ <pre><code class="language-TypeScript">import { sp } from &quot;@pnp/sp/presets/core&quot;;
3253
+
3254
+ const r = await sp.web();
3255
+ </code></pre>
3256
+ <p><strong>Create a web instance using the factory function</strong></p>
3257
+ <pre><code class="language-TypeScript">import { Web } from &quot;@pnp/sp/webs&quot;;
3258
+
3259
+ const web = Web(&quot;https://something.sharepoint.com/sites/dev&quot;);
3260
+ const r = await web();
3261
+ </code></pre>
3262
+ <h3 id="webs">webs<a class="headerlink" href="#webs" title="Permanent link">&para;</a></h3>
3263
+ <p>Access the child <a href="#Webs%20Collection">webs collection</a> of this web</p>
3264
+ <pre><code class="language-TypeScript">const webs = web.webs();
3265
+ </code></pre>
3266
+ <h3 id="get-a-webs-properties">Get A Web's properties<a class="headerlink" href="#get-a-webs-properties" title="Permanent link">&para;</a></h3>
3267
+ <pre><code class="language-TypeScript">// basic get of the webs properties
3268
+ const props = await web();
3269
+
3270
+ // use odata operators to get specific fields
3271
+ const props2 = await web.select(&quot;Title&quot;)();
3272
+
3273
+ // type the result to match what you are requesting
3274
+ const props3 = await web.select(&quot;Title&quot;)&lt;{ Title: string }&gt;();
3275
+ </code></pre>
3276
+ <h3 id="getparentweb">getParentWeb<a class="headerlink" href="#getparentweb" title="Permanent link">&para;</a></h3>
3277
+ <p>Get the data and IWeb instance for the parent web for the given web instance</p>
3278
+ <pre><code class="language-TypeScript">import { IOpenWebByIdResult } from &quot;@pnp/sp/sites&quot;;
3279
+ const web: IOpenWebByIdResult = web.getParentWeb();
3280
+ </code></pre>
3281
+ <h3 id="getsubwebsfilteredforcurrentuser">getSubwebsFilteredForCurrentUser<a class="headerlink" href="#getsubwebsfilteredforcurrentuser" title="Permanent link">&para;</a></h3>
3282
+ <p>Returns a collection of objects that contain metadata about subsites of the current site in which the current user is a member.</p>
3283
+ <pre><code class="language-TypeScript">const subWebs = await web.getSubwebsFilteredForCurrentUser()();
3284
+
3285
+ // apply odata operations to the collection
3286
+ const subWebs2 = await sp.web.getSubwebsFilteredForCurrentUser().select(&quot;Title&quot;, &quot;Language&quot;).orderBy(&quot;Created&quot;, true)();
3287
+ </code></pre>
3288
+ <blockquote>
3289
+ <p>Note: getSubwebsFilteredForCurrentUser returns <a href="#IWebInfosData">IWebInfosData</a> which is a subset of all the available fields on IWebInfo.</p>
3290
+ </blockquote>
3291
+ <h3 id="allproperties">allProperties<a class="headerlink" href="#allproperties" title="Permanent link">&para;</a></h3>
3292
+ <p>Allows access to the web's all properties collection. This is readonly in REST.</p>
3293
+ <pre><code class="language-TypeScript">const props = await web.allProperties();
3294
+
3295
+ // select certain props
3296
+ const props2 = await web.allProperties.select(&quot;prop1&quot;, &quot;prop2&quot;)();
3297
+ </code></pre>
3298
+ <h3 id="webinfos">webinfos<a class="headerlink" href="#webinfos" title="Permanent link">&para;</a></h3>
3299
+ <p>Gets a collection of WebInfos for this web's subwebs</p>
3300
+ <pre><code class="language-TypeScript">const infos = await web.webinfos();
3301
+
3302
+ // or select certain fields
3303
+ const infos2 = await web.webinfos.select(&quot;Title&quot;, &quot;Description&quot;)();
3304
+
3305
+ // or filter
3306
+ const infos3 = await web.webinfos.filter(&quot;Title eq 'MyWebTitle'&quot;)();
3307
+
3308
+ // or both
3309
+ const infos4 = await web.webinfos.select(&quot;Title&quot;, &quot;Description&quot;).filter(&quot;Title eq 'MyWebTitle'&quot;)();
3310
+
3311
+ // get the top 4 ordered by Title
3312
+ const infos5 = await web.webinfos.top(4).orderBy(&quot;Title&quot;)();
3313
+ </code></pre>
3314
+ <blockquote>
3315
+ <p>Note: webinfos returns <a href="#IWebInfosData">IWebInfosData</a> which is a subset of all the available fields on IWebInfo.</p>
3316
+ </blockquote>
3317
+ <h3 id="update">update<a class="headerlink" href="#update" title="Permanent link">&para;</a></h3>
3318
+ <p>Updates this web instance with the supplied properties</p>
3319
+ <pre><code class="language-TypeScript">
3320
+ // update the web's title and description
3321
+ const result = await web.update({
3322
+ Title: &quot;New Title&quot;,
3323
+ Description: &quot;My new description&quot;,
3324
+ });
3325
+
3326
+ // a project implementation could wrap the update to provide type information for your expected fields:
3327
+ import { IWebUpdateResult } from &quot;@pnp/sp/webs&quot;;
3328
+
3329
+ interface IWebUpdateProps {
3330
+ Title: string;
3331
+ Description: string;
3332
+ }
3333
+
3334
+ function updateWeb(props: IWebUpdateProps): Promise&lt;IWebUpdateResult&gt; {
3335
+ web.update(props);
3336
+ }
3337
+ </code></pre>
3338
+ <h3 id="delete-a-web">Delete a Web<a class="headerlink" href="#delete-a-web" title="Permanent link">&para;</a></h3>
3339
+ <pre><code class="language-TypeScript">await web.delete();
3340
+ </code></pre>
3341
+ <h3 id="applytheme">applyTheme<a class="headerlink" href="#applytheme" title="Permanent link">&para;</a></h3>
3342
+ <p>Applies the theme specified by the contents of each of the files specified in the arguments to the site</p>
3343
+ <pre><code class="language-TypeScript">import { combine } from &quot;@pnp/core&quot;;
3344
+
3345
+ // we are going to apply the theme to this sub web as an example
3346
+ const web = Web(&quot;https://{tenant}.sharepoint.com/sites/dev/subweb&quot;);
3347
+
3348
+ // the urls to the color and font need to both be from the catalog at the root
3349
+ // these urls can be constants or calculated from existing urls
3350
+ const colorUrl = combine(&quot;/&quot;, &quot;sites/dev&quot;, &quot;_catalogs/theme/15/palette011.spcolor&quot;);
3351
+ // this gives us the same result
3352
+ const fontUrl = &quot;/sites/dev/_catalogs/theme/15/fontscheme007.spfont&quot;;
3353
+
3354
+ // apply the font and color, no background image, and don't share this theme
3355
+ await web.applyTheme(colorUrl, fontUrl, &quot;&quot;, false);
3356
+ </code></pre>
3357
+ <h3 id="applywebtemplate-availablewebtemplates">applyWebTemplate &amp; availableWebTemplates<a class="headerlink" href="#applywebtemplate-availablewebtemplates" title="Permanent link">&para;</a></h3>
3358
+ <p>Applies the specified site definition or site template to the Web site that has no template applied to it. This is seldom used outside provisioning scenarios.</p>
3359
+ <pre><code class="language-TypeScript">const templates = (await web.availableWebTemplates().select(&quot;Name&quot;)&lt;{ Name: string }[]&gt;()).filter(t =&gt; /ENTERWIKI#0/i.test(t.Name));
3360
+
3361
+ // apply the wiki template
3362
+ const template = templates.length &gt; 0 ? templates[0].Name : &quot;STS#0&quot;;
3363
+
3364
+ await web.applyWebTemplate(template);
3365
+ </code></pre>
3366
+ <h3 id="getchanges">getChanges<a class="headerlink" href="#getchanges" title="Permanent link">&para;</a></h3>
3367
+ <p>Returns the collection of changes from the change log that have occurred within the web, based on the specified query.</p>
3368
+ <pre><code class="language-TypeScript">// get the web changes including add, update, and delete
3369
+ const changes = await web.getChanges({
3370
+ Add: true,
3371
+ ChangeTokenEnd: null,
3372
+ ChangeTokenStart: null,
3373
+ DeleteObject: true,
3374
+ Update: true,
3375
+ Web: true,
3376
+ });
3377
+ </code></pre>
3378
+ <h3 id="maptoicon">mapToIcon<a class="headerlink" href="#maptoicon" title="Permanent link">&para;</a></h3>
3379
+ <p>Returns the name of the image file for the icon that is used to represent the specified file</p>
3380
+ <pre><code class="language-TypeScript">import { combine } from &quot;@pnp/core&quot;;
3381
+
3382
+ const iconFileName = await web.mapToIcon(&quot;test.docx&quot;);
3383
+ // iconPath === &quot;icdocx.png&quot;
3384
+ // which you can need to map to a real url
3385
+ const iconFullPath = `https://{tenant}.sharepoint.com/sites/dev/_layouts/images/${iconFileName}`;
3386
+
3387
+ // OR dynamically
3388
+ const webData = await sp.web.select(&quot;Url&quot;)();
3389
+ const iconFullPath2 = combine(webData.Url, &quot;_layouts&quot;, &quot;images&quot;, iconFileName);
3390
+
3391
+ // OR within SPFx using the context
3392
+ const iconFullPath3 = combine(this.context.pageContext.web.absoluteUrl, &quot;_layouts&quot;, &quot;images&quot;, iconFileName);
3393
+
3394
+ // You can also set size
3395
+ // 16x16 pixels = 0, 32x32 pixels = 1
3396
+ const icon32FileName = await web.mapToIcon(&quot;test.docx&quot;, 1);
3397
+ </code></pre>
3398
+ <h3 id="storage-entities">storage entities<a class="headerlink" href="#storage-entities" title="Permanent link">&para;</a></h3>
3399
+ <pre><code class="language-TypeScript">import { sp } from &quot;@pnp/sp&quot;;
3400
+ import &quot;@pnp/sp/appcatalog&quot;;
3401
+ import { IStorageEntity } from &quot;@pnp/sp/webs&quot;;
3402
+
3403
+ // needs to be unique, GUIDs are great
3404
+ const key = &quot;my-storage-key&quot;;
3405
+
3406
+ // read an existing entity
3407
+ const entity: IStorageEntity = await web.getStorageEntity(key);
3408
+
3409
+ // setStorageEntity and removeStorageEntity must be called in the context of the tenant app catalog site
3410
+ // you can get the tenant app catalog using the getTenantAppCatalogWeb
3411
+ const tenantAppCatalogWeb = await sp.getTenantAppCatalogWeb();
3412
+
3413
+ tenantAppCatalogWeb.setStorageEntity(key, &quot;new value&quot;);
3414
+
3415
+ // set other properties
3416
+ tenantAppCatalogWeb.setStorageEntity(key, &quot;another value&quot;, &quot;description&quot;, &quot;comments&quot;);
3417
+
3418
+ const entity2: IStorageEntity = await web.getStorageEntity(key);
3419
+ /*
3420
+ entity2 === {
3421
+ Value: &quot;another value&quot;,
3422
+ Comment: &quot;comments&quot;;
3423
+ Description: &quot;description&quot;,
3424
+ };
3425
+ */
3426
+
3427
+ // you can also remove a storage entity
3428
+ await tenantAppCatalogWeb.removeStorageEntity(key);
3429
+ </code></pre>
3430
+ <h2 id="appcatalog-imports">appcatalog imports<a class="headerlink" href="#appcatalog-imports" title="Permanent link">&para;</a></h2>
3431
+ <table>
3432
+ <thead>
3433
+ <tr>
3434
+ <th>Scenario</th>
3435
+ <th>Import Statement</th>
3436
+ </tr>
3437
+ </thead>
3438
+ <tbody>
3439
+ <tr>
3440
+ <td>Selective 1</td>
3441
+ <td>import "@pnp/sp/appcatalog";</td>
3442
+ </tr>
3443
+ <tr>
3444
+ <td>Selective 2</td>
3445
+ <td>import "@pnp/sp/appcatalog/web";</td>
3446
+ </tr>
3447
+ <tr>
3448
+ <td>Preset: All</td>
3449
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3450
+ </tr>
3451
+ </tbody>
3452
+ </table>
3453
+ <h3 id="getappcatalog">getAppCatalog<a class="headerlink" href="#getappcatalog" title="Permanent link">&para;</a></h3>
3454
+ <p>Returns this web as an IAppCatalog instance or creates a new IAppCatalog instance from the provided url.</p>
3455
+ <pre><code class="language-TypeScript">import { IApp } from &quot;@pnp/sp/appcatalog&quot;;
3456
+
3457
+ const appWeb = web.getAppCatalog();
3458
+ // appWeb url === web url
3459
+
3460
+ const app: IApp = appWeb.getAppById(&quot;{your app id}&quot;);
3461
+
3462
+ const appWeb2 = web.getAppCatalog(&quot;https://tenant.sharepoing.com/sites/someappcatalog&quot;);
3463
+ // appWeb2 url === &quot;https://tenant.sharepoing.com/sites/someappcatalog&quot;
3464
+ </code></pre>
3465
+ <h2 id="client-side-pages-imports">client-side-pages imports<a class="headerlink" href="#client-side-pages-imports" title="Permanent link">&para;</a></h2>
3466
+ <table>
3467
+ <thead>
3468
+ <tr>
3469
+ <th>Scenario</th>
3470
+ <th>Import Statement</th>
3471
+ </tr>
3472
+ </thead>
3473
+ <tbody>
3474
+ <tr>
3475
+ <td>Selective 1</td>
3476
+ <td>import "@pnp/sp/client-side-pages";</td>
3477
+ </tr>
3478
+ <tr>
3479
+ <td>Selective 2</td>
3480
+ <td>import "@pnp/sp/client-side-pages/web";</td>
3481
+ </tr>
3482
+ <tr>
3483
+ <td>Preset: All</td>
3484
+ <td>import { sp, Web, IWeb } from "@pnp/sp/presets/all";</td>
3485
+ </tr>
3486
+ </tbody>
3487
+ </table>
3488
+ <p>You can create and load clientside page instances directly from a web. More details on <a href="../clientside-pages/">working with clientside pages</a> are available in the dedicated article.</p>
3489
+ <pre><code class="language-TypeScript">import { sp } from &quot;@pnp/sp&quot;;
3490
+ import &quot;@pnp/sp/webs&quot;;
3491
+ import &quot;@pnp/sp/clientside-pages/web&quot;;
3492
+
3493
+ // simplest add a page example
3494
+ const page = await sp.web.addClientsidePage(&quot;mypage1&quot;);
3495
+
3496
+ // simplest load a page example
3497
+ const page = await sp.web.loadClientsidePage(&quot;/sites/dev/sitepages/mypage3.aspx&quot;);
3498
+ </code></pre>
3499
+ <h2 id="content-type-imports">content-type imports<a class="headerlink" href="#content-type-imports" title="Permanent link">&para;</a></h2>
3500
+ <table>
3501
+ <thead>
3502
+ <tr>
3503
+ <th>Scenario</th>
3504
+ <th>Import Statement</th>
3505
+ </tr>
3506
+ </thead>
3507
+ <tbody>
3508
+ <tr>
3509
+ <td>Selective 1</td>
3510
+ <td>import "@pnp/sp/content-types";</td>
3511
+ </tr>
3512
+ <tr>
3513
+ <td>Selective 2</td>
3514
+ <td>import "@pnp/sp/content-types/web";</td>
3515
+ </tr>
3516
+ <tr>
3517
+ <td>Preset: All</td>
3518
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3519
+ </tr>
3520
+ </tbody>
3521
+ </table>
3522
+ <h3 id="contenttypes">contentTypes<a class="headerlink" href="#contenttypes" title="Permanent link">&para;</a></h3>
3523
+ <p>Allows access to the collection of content types in this web.</p>
3524
+ <pre><code class="language-TypeScript">const cts = await web.contentTypes();
3525
+
3526
+ // you can also select fields and use other odata operators
3527
+ const cts2 = await web.contentTypes.select(&quot;Name&quot;)();
3528
+ </code></pre>
3529
+ <h2 id="features-imports">features imports<a class="headerlink" href="#features-imports" title="Permanent link">&para;</a></h2>
3530
+ <table>
3531
+ <thead>
3532
+ <tr>
3533
+ <th>Scenario</th>
3534
+ <th>Import Statement</th>
3535
+ </tr>
3536
+ </thead>
3537
+ <tbody>
3538
+ <tr>
3539
+ <td>Selective 1</td>
3540
+ <td>import "@pnp/sp/features";</td>
3541
+ </tr>
3542
+ <tr>
3543
+ <td>Selective 2</td>
3544
+ <td>import "@pnp/sp/features/web";</td>
3545
+ </tr>
3546
+ <tr>
3547
+ <td>Preset: All</td>
3548
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3549
+ </tr>
3550
+ </tbody>
3551
+ </table>
3552
+ <h3 id="features">features<a class="headerlink" href="#features" title="Permanent link">&para;</a></h3>
3553
+ <p>Allows access to the collection of content types in this web.</p>
3554
+ <pre><code class="language-TypeScript">const features = await web.features();
3555
+ </code></pre>
3556
+ <h2 id="fields-imports">fields imports<a class="headerlink" href="#fields-imports" title="Permanent link">&para;</a></h2>
3557
+ <table>
3558
+ <thead>
3559
+ <tr>
3560
+ <th>Scenario</th>
3561
+ <th>Import Statement</th>
3562
+ </tr>
3563
+ </thead>
3564
+ <tbody>
3565
+ <tr>
3566
+ <td>Selective 1</td>
3567
+ <td>import "@pnp/sp/fields";</td>
3568
+ </tr>
3569
+ <tr>
3570
+ <td>Selective 2</td>
3571
+ <td>import "@pnp/sp/fields/web";</td>
3572
+ </tr>
3573
+ <tr>
3574
+ <td>Preset: All</td>
3575
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3576
+ </tr>
3577
+ </tbody>
3578
+ </table>
3579
+ <h3 id="fields">fields<a class="headerlink" href="#fields" title="Permanent link">&para;</a></h3>
3580
+ <p>Allows access to the collection of fields in this web.</p>
3581
+ <pre><code class="language-TypeScript">const fields = await web.fields();
3582
+ </code></pre>
3583
+ <h2 id="files-imports">files imports<a class="headerlink" href="#files-imports" title="Permanent link">&para;</a></h2>
3584
+ <table>
3585
+ <thead>
3586
+ <tr>
3587
+ <th>Scenario</th>
3588
+ <th>Import Statement</th>
3589
+ </tr>
3590
+ </thead>
3591
+ <tbody>
3592
+ <tr>
3593
+ <td>Selective 1</td>
3594
+ <td>import "@pnp/sp/files";</td>
3595
+ </tr>
3596
+ <tr>
3597
+ <td>Selective 2</td>
3598
+ <td>import "@pnp/sp/files/web";</td>
3599
+ </tr>
3600
+ <tr>
3601
+ <td>Preset: All</td>
3602
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3603
+ </tr>
3604
+ </tbody>
3605
+ </table>
3606
+ <h3 id="getfilebyserverrelativeurl">getFileByServerRelativeUrl<a class="headerlink" href="#getfilebyserverrelativeurl" title="Permanent link">&para;</a></h3>
3607
+ <p>Gets a file by server relative url</p>
3608
+ <pre><code class="language-TypeScript">import { IFile } from &quot;@pnp/sp/files&quot;;
3609
+
3610
+ const file: IFile = web.getFileByServerRelativeUrl(&quot;/sites/dev/library/myfile.docx&quot;);
3611
+ </code></pre>
3612
+ <h3 id="getfilebyserverrelativepath">getFileByServerRelativePath<a class="headerlink" href="#getfilebyserverrelativepath" title="Permanent link">&para;</a></h3>
3613
+ <p>Gets a file by server relative url if your file name contains # and % characters</p>
3614
+ <pre><code class="language-TypeScript">import { IFile } from &quot;@pnp/sp/files&quot;;
3615
+
3616
+ const file: IFile = web.getFileByServerRelativePath(&quot;/sites/dev/library/my # file%.docx&quot;);
3617
+ </code></pre>
3618
+ <h2 id="folders-imports">folders imports<a class="headerlink" href="#folders-imports" title="Permanent link">&para;</a></h2>
3619
+ <table>
3620
+ <thead>
3621
+ <tr>
3622
+ <th>Scenario</th>
3623
+ <th>Import Statement</th>
3624
+ </tr>
3625
+ </thead>
3626
+ <tbody>
3627
+ <tr>
3628
+ <td>Selective 1</td>
3629
+ <td>import "@pnp/sp/folders";</td>
3630
+ </tr>
3631
+ <tr>
3632
+ <td>Selective 2</td>
3633
+ <td>import "@pnp/sp/folders/web";</td>
3634
+ </tr>
3635
+ <tr>
3636
+ <td>Preset: All</td>
3637
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3638
+ </tr>
3639
+ </tbody>
3640
+ </table>
3641
+ <h3 id="folders">folders<a class="headerlink" href="#folders" title="Permanent link">&para;</a></h3>
3642
+ <p>Gets the collection of folders in this web</p>
3643
+ <pre><code class="language-TypeScript">const folders = await web.folders();
3644
+
3645
+ // you can also filter and select as with any collection
3646
+ const folders2 = await web.folders.select(&quot;ServerRelativeUrl&quot;, &quot;TimeLastModified&quot;).filter(&quot;ItemCount gt 0&quot;)();
3647
+
3648
+ // or get the most recently modified folder
3649
+ const folders2 = await web.folders.orderBy(&quot;TimeLastModified&quot;).top(1)();
3650
+ </code></pre>
3651
+ <h3 id="rootfolder">rootFolder<a class="headerlink" href="#rootfolder" title="Permanent link">&para;</a></h3>
3652
+ <p>Gets the root folder of the web</p>
3653
+ <pre><code class="language-TypeScript">const folder = await web.rootFolder();
3654
+ </code></pre>
3655
+ <h3 id="getfolderbyserverrelativeurl">getFolderByServerRelativeUrl<a class="headerlink" href="#getfolderbyserverrelativeurl" title="Permanent link">&para;</a></h3>
3656
+ <p>Gets a folder by server relative url</p>
3657
+ <pre><code class="language-TypeScript">import { IFolder } from &quot;@pnp/sp/folders&quot;;
3658
+
3659
+ const folder: IFolder = web.getFolderByServerRelativeUrl(&quot;/sites/dev/library&quot;);
3660
+ </code></pre>
3661
+ <h3 id="getfolderbyserverrelativepath">getFolderByServerRelativePath<a class="headerlink" href="#getfolderbyserverrelativepath" title="Permanent link">&para;</a></h3>
3662
+ <p>Gets a folder by server relative url if your folder name contains # and % characters</p>
3663
+ <pre><code class="language-TypeScript">import { IFolder } from &quot;@pnp/sp/folders&quot;;
3664
+
3665
+ const folder: IFolder = web.getFolderByServerRelativePath(&quot;/sites/dev/library/my # folder%/&quot;);
3666
+ </code></pre>
3667
+ <h2 id="hubsites-imports">hubsites imports<a class="headerlink" href="#hubsites-imports" title="Permanent link">&para;</a></h2>
3668
+ <table>
3669
+ <thead>
3670
+ <tr>
3671
+ <th>Scenario</th>
3672
+ <th>Import Statement</th>
3673
+ </tr>
3674
+ </thead>
3675
+ <tbody>
3676
+ <tr>
3677
+ <td>Selective 1</td>
3678
+ <td>import "@pnp/sp/hubsites";</td>
3679
+ </tr>
3680
+ <tr>
3681
+ <td>Selective 2</td>
3682
+ <td>import "@pnp/sp/hubsites/web";</td>
3683
+ </tr>
3684
+ <tr>
3685
+ <td>Preset: All</td>
3686
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3687
+ </tr>
3688
+ </tbody>
3689
+ </table>
3690
+ <h3 id="hubsitedata">hubSiteData<a class="headerlink" href="#hubsitedata" title="Permanent link">&para;</a></h3>
3691
+ <p>Gets hub site data for the current web</p>
3692
+ <pre><code class="language-TypeScript">import { IHubSiteWebData } from &quot;@pnp/sp/hubsites&quot;;
3693
+
3694
+ // get the data and force a refresh
3695
+ const data: IHubSiteWebData = await web.hubSiteData(true);
3696
+ </code></pre>
3697
+ <h3 id="synchubsitetheme">syncHubSiteTheme<a class="headerlink" href="#synchubsitetheme" title="Permanent link">&para;</a></h3>
3698
+ <p>Applies theme updates from the parent hub site collection</p>
3699
+ <pre><code class="language-TypeScript">await web.syncHubSiteTheme();
3700
+ </code></pre>
3701
+ <h2 id="lists-imports">lists imports<a class="headerlink" href="#lists-imports" title="Permanent link">&para;</a></h2>
3702
+ <table>
3703
+ <thead>
3704
+ <tr>
3705
+ <th>Scenario</th>
3706
+ <th>Import Statement</th>
3707
+ </tr>
3708
+ </thead>
3709
+ <tbody>
3710
+ <tr>
3711
+ <td>Selective 1</td>
3712
+ <td>import "@pnp/sp/lists";</td>
3713
+ </tr>
3714
+ <tr>
3715
+ <td>Selective 2</td>
3716
+ <td>import "@pnp/sp/lists/web";</td>
3717
+ </tr>
3718
+ <tr>
3719
+ <td>Preset: All</td>
3720
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3721
+ </tr>
3722
+ <tr>
3723
+ <td>Preset: Core</td>
3724
+ <td>import { sp } from "@pnp/sp/presets/core";</td>
3725
+ </tr>
3726
+ </tbody>
3727
+ </table>
3728
+ <h3 id="lists">lists<a class="headerlink" href="#lists" title="Permanent link">&para;</a></h3>
3729
+ <p>Gets the collection of all lists that are contained in the Web site</p>
3730
+ <pre><code class="language-TypeScript">import { ILists } from &quot;@pnp/sp/lists&quot;;
3731
+
3732
+ const lists: ILists = web.lists;
3733
+
3734
+ // you can always order the lists and select properties
3735
+ const data = await lists.select(&quot;Title&quot;).orderBy(&quot;Title&quot;)();
3736
+
3737
+ // and use other odata operators as well
3738
+ const data2 = await web.lists.top(3).orderBy(&quot;LastItemModifiedDate&quot;)();
3739
+ </code></pre>
3740
+ <h3 id="siteuserinfolist">siteUserInfoList<a class="headerlink" href="#siteuserinfolist" title="Permanent link">&para;</a></h3>
3741
+ <p>Gets the UserInfo list of the site collection that contains the Web site</p>
3742
+ <pre><code class="language-TypeScript">import { IList } from &quot;@pnp/sp/lists&quot;;
3743
+
3744
+ const list: IList = web.siteUserInfoList;
3745
+
3746
+ const data = await list();
3747
+
3748
+ // or chain off that list to get additional details
3749
+ const items = await list.items.top(2)();
3750
+ </code></pre>
3751
+ <h3 id="defaultdocumentlibrary">defaultDocumentLibrary<a class="headerlink" href="#defaultdocumentlibrary" title="Permanent link">&para;</a></h3>
3752
+ <p>Get a reference the default documents library of a web</p>
3753
+ <pre><code class="language-TypeScript">import { IList } from &quot;@pnp/sp/lists&quot;;
3754
+
3755
+ const list: IList = web.defaultDocumentLibrary;
3756
+ </code></pre>
3757
+ <h3 id="customlisttemplates">customListTemplates<a class="headerlink" href="#customlisttemplates" title="Permanent link">&para;</a></h3>
3758
+ <p>Gets the collection of all list definitions and list templates that are available</p>
3759
+ <pre><code class="language-TypeScript">import { IList } from &quot;@pnp/sp/lists&quot;;
3760
+
3761
+ const templates = await web.customListTemplates();
3762
+
3763
+ // odata operators chain off the collection as expected
3764
+ const templates2 = await web.customListTemplates.select(&quot;Title&quot;)();
3765
+ </code></pre>
3766
+ <h3 id="getlist">getList<a class="headerlink" href="#getlist" title="Permanent link">&para;</a></h3>
3767
+ <p>Gets a list by server relative url (list's root folder)</p>
3768
+ <pre><code class="language-TypeScript">import { IList } from &quot;@pnp/sp/lists&quot;;
3769
+
3770
+ const list: IList = web.getList(&quot;/sites/dev/lists/test&quot;);
3771
+
3772
+ const listData = list();
3773
+ </code></pre>
3774
+ <h3 id="getcatalog">getCatalog<a class="headerlink" href="#getcatalog" title="Permanent link">&para;</a></h3>
3775
+ <p>Returns the list gallery on the site</p>
3776
+ <table>
3777
+ <thead>
3778
+ <tr>
3779
+ <th>Name</th>
3780
+ <th>Value</th>
3781
+ </tr>
3782
+ </thead>
3783
+ <tbody>
3784
+ <tr>
3785
+ <td>WebTemplateCatalog</td>
3786
+ <td>111</td>
3787
+ </tr>
3788
+ <tr>
3789
+ <td>WebPartCatalog</td>
3790
+ <td>113</td>
3791
+ </tr>
3792
+ <tr>
3793
+ <td>ListTemplateCatalog</td>
3794
+ <td>114</td>
3795
+ </tr>
3796
+ <tr>
3797
+ <td>MasterPageCatalog</td>
3798
+ <td>116</td>
3799
+ </tr>
3800
+ <tr>
3801
+ <td>SolutionCatalog</td>
3802
+ <td>121</td>
3803
+ </tr>
3804
+ <tr>
3805
+ <td>ThemeCatalog</td>
3806
+ <td>123</td>
3807
+ </tr>
3808
+ <tr>
3809
+ <td>DesignCatalog</td>
3810
+ <td>124</td>
3811
+ </tr>
3812
+ <tr>
3813
+ <td>AppDataCatalog</td>
3814
+ <td>125</td>
3815
+ </tr>
3816
+ </tbody>
3817
+ </table>
3818
+ <pre><code class="language-TypeScript">import { IList } from &quot;@pnp/sp/lists&quot;;
3819
+
3820
+ const templateCatalog: IList = await web.getCatalog(111);
3821
+
3822
+ const themeCatalog: IList = await web.getCatalog(123);
3823
+ </code></pre>
3824
+ <h2 id="navigation-imports">navigation imports<a class="headerlink" href="#navigation-imports" title="Permanent link">&para;</a></h2>
3825
+ <table>
3826
+ <thead>
3827
+ <tr>
3828
+ <th>Scenario</th>
3829
+ <th>Import Statement</th>
3830
+ </tr>
3831
+ </thead>
3832
+ <tbody>
3833
+ <tr>
3834
+ <td>Selective 1</td>
3835
+ <td>import "@pnp/sp/navigation";</td>
3836
+ </tr>
3837
+ <tr>
3838
+ <td>Selective 2</td>
3839
+ <td>import "@pnp/sp/navigation/web";</td>
3840
+ </tr>
3841
+ <tr>
3842
+ <td>Preset: All</td>
3843
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3844
+ </tr>
3845
+ </tbody>
3846
+ </table>
3847
+ <h3 id="navigation">navigation<a class="headerlink" href="#navigation" title="Permanent link">&para;</a></h3>
3848
+ <p>Gets a navigation object that represents navigation on the Web site, including the Quick Launch area and the top navigation bar</p>
3849
+ <pre><code class="language-TypeScript">import { INavigation } from &quot;@pnp/sp/navigation&quot;;
3850
+
3851
+ const nav: INavigation = web.navigation;
3852
+
3853
+ const navData = await nav();
3854
+ </code></pre>
3855
+ <h2 id="regional-settings-imports">regional-settings imports<a class="headerlink" href="#regional-settings-imports" title="Permanent link">&para;</a></h2>
3856
+ <table>
3857
+ <thead>
3858
+ <tr>
3859
+ <th>Scenario</th>
3860
+ <th>Import Statement</th>
3861
+ </tr>
3862
+ </thead>
3863
+ <tbody>
3864
+ <tr>
3865
+ <td>Selective 1</td>
3866
+ <td>import "@pnp/sp/regional-settings";</td>
3867
+ </tr>
3868
+ <tr>
3869
+ <td>Selective 2</td>
3870
+ <td>import "@pnp/sp/regional-settings/web";</td>
3871
+ </tr>
3872
+ <tr>
3873
+ <td>Preset: All</td>
3874
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3875
+ </tr>
3876
+ </tbody>
3877
+ </table>
3878
+ <pre><code class="language-TypeScript">import { IRegionalSettings } from &quot;@pnp/sp/navigation&quot;;
3879
+
3880
+ const settings: IRegionalSettings = web.regionalSettings;
3881
+
3882
+ const settingsData = await settings();
3883
+ </code></pre>
3884
+ <h2 id="related-items-imports">related-items imports<a class="headerlink" href="#related-items-imports" title="Permanent link">&para;</a></h2>
3885
+ <table>
3886
+ <thead>
3887
+ <tr>
3888
+ <th>Scenario</th>
3889
+ <th>Import Statement</th>
3890
+ </tr>
3891
+ </thead>
3892
+ <tbody>
3893
+ <tr>
3894
+ <td>Selective 1</td>
3895
+ <td>import "@pnp/sp/related-items";</td>
3896
+ </tr>
3897
+ <tr>
3898
+ <td>Selective 2</td>
3899
+ <td>import "@pnp/sp/related-items/web";</td>
3900
+ </tr>
3901
+ <tr>
3902
+ <td>Preset: All</td>
3903
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3904
+ </tr>
3905
+ </tbody>
3906
+ </table>
3907
+ <pre><code class="language-TypeScript">import { IRelatedItemManager, IRelatedItem } from &quot;@pnp/sp/related-items&quot;;
3908
+
3909
+ const manager: IRelatedItemManager = web.relatedItems;
3910
+
3911
+ const data: IRelatedItem[] = await manager.getRelatedItems(&quot;{list name}&quot;, 4);
3912
+ </code></pre>
3913
+ <h2 id="security-imports">security imports<a class="headerlink" href="#security-imports" title="Permanent link">&para;</a></h2>
3914
+ <p>Please see information around the available security methods in the <a href="../security/">security article</a>.</p>
3915
+ <h2 id="sharing-imports">sharing imports<a class="headerlink" href="#sharing-imports" title="Permanent link">&para;</a></h2>
3916
+ <p>Please see information around the available sharing methods in the <a href="../sharing/">sharing article</a>.</p>
3917
+ <h2 id="site-groups-imports">site-groups imports<a class="headerlink" href="#site-groups-imports" title="Permanent link">&para;</a></h2>
3918
+ <table>
3919
+ <thead>
3920
+ <tr>
3921
+ <th>Scenario</th>
3922
+ <th>Import Statement</th>
3923
+ </tr>
3924
+ </thead>
3925
+ <tbody>
3926
+ <tr>
3927
+ <td>Selective 1</td>
3928
+ <td>import "@pnp/sp/site-groups";</td>
3929
+ </tr>
3930
+ <tr>
3931
+ <td>Selective 2</td>
3932
+ <td>import "@pnp/sp/site-groups/web";</td>
3933
+ </tr>
3934
+ <tr>
3935
+ <td>Preset: All</td>
3936
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3937
+ </tr>
3938
+ </tbody>
3939
+ </table>
3940
+ <h3 id="sitegroups">siteGroups<a class="headerlink" href="#sitegroups" title="Permanent link">&para;</a></h3>
3941
+ <p>The site groups</p>
3942
+ <pre><code class="language-TypeScript">const groups = await web.siteGroups();
3943
+
3944
+ const groups2 = await web.siteGroups.top(2)();
3945
+ </code></pre>
3946
+ <h3 id="associatedownergroup">associatedOwnerGroup<a class="headerlink" href="#associatedownergroup" title="Permanent link">&para;</a></h3>
3947
+ <p>The web's owner group</p>
3948
+ <pre><code class="language-TypeScript">const group = await web.associatedOwnerGroup();
3949
+
3950
+ const users = await web.associatedOwnerGroup.users();
3951
+ </code></pre>
3952
+ <h3 id="associatedmembergroup">associatedMemberGroup<a class="headerlink" href="#associatedmembergroup" title="Permanent link">&para;</a></h3>
3953
+ <p>The web's member group</p>
3954
+ <pre><code class="language-TypeScript">const group = await web.associatedMemberGroup();
3955
+
3956
+ const users = await web.associatedMemberGroup.users();
3957
+ </code></pre>
3958
+ <h3 id="associatedvisitorgroup">associatedVisitorGroup<a class="headerlink" href="#associatedvisitorgroup" title="Permanent link">&para;</a></h3>
3959
+ <p>The web's visitor group</p>
3960
+ <pre><code class="language-TypeScript">const group = await web.associatedVisitorGroup();
3961
+
3962
+ const users = await web.associatedVisitorGroup.users();
3963
+ </code></pre>
3964
+ <h3 id="createdefaultassociatedgroups">createDefaultAssociatedGroups<a class="headerlink" href="#createdefaultassociatedgroups" title="Permanent link">&para;</a></h3>
3965
+ <p>Creates the default associated groups (Members, Owners, Visitors) and gives them the default permissions on the site. The target site must have unique permissions and no associated members / owners / visitors groups</p>
3966
+ <pre><code class="language-TypeScript">await web.createDefaultAssociatedGroups(&quot;Contoso&quot;, &quot;{first owner login}&quot;);
3967
+
3968
+ // copy the role assignments
3969
+ await web.createDefaultAssociatedGroups(&quot;Contoso&quot;, &quot;{first owner login}&quot;, true);
3970
+
3971
+ // don't clear sub assignments
3972
+ await web.createDefaultAssociatedGroups(&quot;Contoso&quot;, &quot;{first owner login}&quot;, false, false);
3973
+
3974
+ // specify secondary owner, don't copy permissions, clear sub scopes
3975
+ await web.createDefaultAssociatedGroups(&quot;Contoso&quot;, &quot;{first owner login}&quot;, false, true, &quot;{second owner login}&quot;);
3976
+ </code></pre>
3977
+ <h2 id="site-users-imports">site-users imports<a class="headerlink" href="#site-users-imports" title="Permanent link">&para;</a></h2>
3978
+ <table>
3979
+ <thead>
3980
+ <tr>
3981
+ <th>Scenario</th>
3982
+ <th>Import Statement</th>
3983
+ </tr>
3984
+ </thead>
3985
+ <tbody>
3986
+ <tr>
3987
+ <td>Selective 1</td>
3988
+ <td>import "@pnp/sp/site-users";</td>
3989
+ </tr>
3990
+ <tr>
3991
+ <td>Selective 2</td>
3992
+ <td>import "@pnp/sp/site-users/web";</td>
3993
+ </tr>
3994
+ <tr>
3995
+ <td>Preset: All</td>
3996
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
3997
+ </tr>
3998
+ </tbody>
3999
+ </table>
4000
+ <h3 id="siteusers">siteUsers<a class="headerlink" href="#siteusers" title="Permanent link">&para;</a></h3>
4001
+ <p>The site users</p>
4002
+ <pre><code class="language-TypeScript">const users = await web.siteUsers();
4003
+
4004
+ const users2 = await web.siteUsers.top(5)();
4005
+
4006
+ const users3 = await web.siteUsers.filter(`startswith(LoginName, '${encodeURIComponent(&quot;i:0#.f|m&quot;)}')`)();
4007
+ </code></pre>
4008
+ <h3 id="currentuser">currentUser<a class="headerlink" href="#currentuser" title="Permanent link">&para;</a></h3>
4009
+ <p>Information on the current user</p>
4010
+ <pre><code class="language-TypeScript">const user = await web.currentUser();
4011
+
4012
+ // check the login name of the current user
4013
+ const user2 = await web.currentUser.select(&quot;LoginName&quot;)();
4014
+ </code></pre>
4015
+ <h3 id="ensureuser">ensureUser<a class="headerlink" href="#ensureuser" title="Permanent link">&para;</a></h3>
4016
+ <p>Checks whether the specified login name belongs to a valid user in the web. If the user doesn't exist, adds the user to the web</p>
4017
+ <pre><code class="language-TypeScript">import { IWebEnsureUserResult } from &quot;@pnp/sp/site-users/&quot;;
4018
+
4019
+ const result: IWebEnsureUserResult = await web.ensureUser(&quot;i:0#.f|membership|user@domain.onmicrosoft.com&quot;);
4020
+ </code></pre>
4021
+ <h3 id="getuserbyid">getUserById<a class="headerlink" href="#getuserbyid" title="Permanent link">&para;</a></h3>
4022
+ <p>Returns the user corresponding to the specified member identifier for the current web</p>
4023
+ <pre><code class="language-TypeScript">import { ISiteUser } from &quot;@pnp/sp/site-users/&quot;;
4024
+
4025
+ const user: ISiteUser = web.getUserById(23);
4026
+
4027
+ const userData = await user();
4028
+
4029
+ const userData2 = await user.select(&quot;LoginName&quot;)();
4030
+ </code></pre>
4031
+ <h2 id="user-custom-actions-imports">user-custom-actions imports<a class="headerlink" href="#user-custom-actions-imports" title="Permanent link">&para;</a></h2>
4032
+ <table>
4033
+ <thead>
4034
+ <tr>
4035
+ <th>Scenario</th>
4036
+ <th>Import Statement</th>
4037
+ </tr>
4038
+ </thead>
4039
+ <tbody>
4040
+ <tr>
4041
+ <td>Selective 1</td>
4042
+ <td>import "@pnp/sp/user-custom-actions";</td>
4043
+ </tr>
4044
+ <tr>
4045
+ <td>Selective 2</td>
4046
+ <td>import "@pnp/sp/user-custom-actions/web";</td>
4047
+ </tr>
4048
+ <tr>
4049
+ <td>Preset: All</td>
4050
+ <td>import { sp } from "@pnp/sp/presets/all";</td>
4051
+ </tr>
4052
+ </tbody>
4053
+ </table>
4054
+ <h2 id="usercustomactions">userCustomActions<a class="headerlink" href="#usercustomactions" title="Permanent link">&para;</a></h2>
4055
+ <p>Gets a newly refreshed collection of the SPWeb's SPUserCustomActionCollection</p>
4056
+ <pre><code class="language-TypeScript">import { IUserCustomActions } from &quot;@pnp/sp/user-custom-actions&quot;;
4057
+
4058
+ const actions: IUserCustomActions = web.userCustomActions;
4059
+
4060
+ const actionsData = await actions();
4061
+ </code></pre>
4062
+ <h2 id="iwebinfosdata">IWebInfosData<a class="headerlink" href="#iwebinfosdata" title="Permanent link">&para;</a></h2>
4063
+ <p>Some web operations return a subset of web information defined by the IWebInfosData interface, shown below. In those cases only these fields are available for select, orderby, and other odata operations.</p>
4064
+ <pre><code class="language-TypeScript">interface IWebInfosData {
4065
+ Configuration: number;
4066
+ Created: string;
4067
+ Description: string;
4068
+ Id: string;
4069
+ Language: number;
4070
+ LastItemModifiedDate: string;
4071
+ LastItemUserModifiedDate: string;
4072
+ ServerRelativeUrl: string;
4073
+ Title: string;
4074
+ WebTemplate: string;
4075
+ WebTemplateId: number;
4076
+ }
4077
+ </code></pre>
4078
+
4079
+
4080
+
4081
+
4082
+
4083
+
4084
+
4085
+ </article>
4086
+ </div>
4087
+ </div>
4088
+ </main>
4089
+
4090
+
4091
+ <footer class="md-footer">
4092
+
4093
+ <div class="md-footer-nav">
4094
+ <nav class="md-footer-nav__inner md-grid" aria-label="Footer">
4095
+
4096
+ <a href="../views/" class="md-footer-nav__link md-footer-nav__link--prev" rel="prev">
4097
+ <div class="md-footer-nav__button md-icon">
4098
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg>
4099
+ </div>
4100
+ <div class="md-footer-nav__title">
4101
+ <div class="md-ellipsis">
4102
+ <span class="md-footer-nav__direction">
4103
+ Previous
4104
+ </span>
4105
+ Views
4106
+ </div>
4107
+ </div>
4108
+ </a>
4109
+
4110
+
4111
+ <a href="../custom-irequestclient/" class="md-footer-nav__link md-footer-nav__link--next" rel="next">
4112
+ <div class="md-footer-nav__title">
4113
+ <div class="md-ellipsis">
4114
+ <span class="md-footer-nav__direction">
4115
+ Next
4116
+ </span>
4117
+ Custom Request Client
4118
+ </div>
4119
+ </div>
4120
+ <div class="md-footer-nav__button md-icon">
4121
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z"/></svg>
4122
+ </div>
4123
+ </a>
4124
+
4125
+ </nav>
4126
+ </div>
4127
+
4128
+ <div class="md-footer-meta md-typeset">
4129
+ <div class="md-footer-meta__inner md-grid">
4130
+ <div class="md-footer-copyright">
4131
+
4132
+ Made with
4133
+ <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
4134
+ Material for MkDocs
4135
+ </a>
4136
+ </div>
4137
+
4138
+ <div class="md-footer-social">
4139
+
4140
+
4141
+
4142
+
4143
+
4144
+
4145
+ <a href="https://twitter.com/m365pnpjs" target="_blank" rel="noopener" title="twitter.com" class="md-footer-social__link">
4146
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
4147
+ </a>
4148
+
4149
+
4150
+
4151
+
4152
+
4153
+
4154
+ <a href="http://aka.ms/sppnp-videos" target="_blank" rel="noopener" title="aka.ms" class="md-footer-social__link">
4155
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
4156
+ </a>
4157
+
4158
+
4159
+
4160
+
4161
+
4162
+
4163
+ <a href="https://aka.ms/sppnp" target="_blank" rel="noopener" title="aka.ms" class="md-footer-social__link">
4164
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"/></svg>
4165
+ </a>
4166
+
4167
+ </div>
4168
+
4169
+ </div>
4170
+ </div>
4171
+ </footer>
4172
+
4173
+ </div>
4174
+
4175
+ <script src="../../assets/javascripts/vendor.77e55a48.min.js"></script>
4176
+ <script src="../../assets/javascripts/bundle.9554a270.min.js"></script><script id="__lang" type="application/json">{"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing"}</script>
4177
+
4178
+ <script>
4179
+ app = initialize({
4180
+ base: "../..",
4181
+ features: [],
4182
+ search: Object.assign({
4183
+ worker: "../../assets/javascripts/worker/search.4ac00218.min.js"
4184
+ }, typeof search !== "undefined" && search)
4185
+ })
4186
+ </script>
4187
+
4188
+
4189
+ </body>
4190
+ </html>