@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,2525 @@
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/news/2020-year-in-review/">
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>2020 Year In Review - 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/news/2020-year-in-review/" 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="#2020-year-end-report" 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
+ 2020 Year In Review
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
+
215
+
216
+ <li class="md-nav__item md-nav__item--active">
217
+
218
+ <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
219
+
220
+
221
+
222
+
223
+ <label class="md-nav__link md-nav__link--active" for="__toc">
224
+ 2020 Year In Review
225
+ <span class="md-nav__icon md-icon"></span>
226
+ </label>
227
+
228
+ <a href="./" class="md-nav__link md-nav__link--active">
229
+ 2020 Year In Review
230
+ </a>
231
+
232
+
233
+ <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
234
+
235
+
236
+
237
+
238
+
239
+ <label class="md-nav__title" for="__toc">
240
+ <span class="md-nav__icon md-icon"></span>
241
+ Table of contents
242
+ </label>
243
+ <ul class="md-nav__list" data-md-scrollfix>
244
+
245
+ <li class="md-nav__item">
246
+ <a href="#usage" class="md-nav__link">
247
+ Usage
248
+ </a>
249
+
250
+ </li>
251
+
252
+ <li class="md-nav__item">
253
+ <a href="#releases" class="md-nav__link">
254
+ Releases
255
+ </a>
256
+
257
+ <nav class="md-nav" aria-label="Releases">
258
+ <ul class="md-nav__list">
259
+
260
+ <li class="md-nav__item">
261
+ <a href="#npm-package-download-statistics-pnpsp" class="md-nav__link">
262
+ NPM Package download statistics (@pnp/sp):
263
+ </a>
264
+
265
+ </li>
266
+
267
+ </ul>
268
+ </nav>
269
+
270
+ </li>
271
+
272
+ <li class="md-nav__item">
273
+ <a href="#future-plans" class="md-nav__link">
274
+ Future Plans
275
+ </a>
276
+
277
+ </li>
278
+
279
+ <li class="md-nav__item">
280
+ <a href="#new-lead-maintainer" class="md-nav__link">
281
+ New Lead Maintainer
282
+ </a>
283
+
284
+ </li>
285
+
286
+ <li class="md-nav__item">
287
+ <a href="#contributors" class="md-nav__link">
288
+ Contributors
289
+ </a>
290
+
291
+ </li>
292
+
293
+ <li class="md-nav__item">
294
+ <a href="#sponsors" class="md-nav__link">
295
+ Sponsors
296
+ </a>
297
+
298
+ </li>
299
+
300
+ <li class="md-nav__item">
301
+ <a href="#closing" class="md-nav__link">
302
+ Closing
303
+ </a>
304
+
305
+ </li>
306
+
307
+ </ul>
308
+
309
+ </nav>
310
+
311
+ </li>
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+ <li class="md-nav__item md-nav__item--nested">
320
+
321
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-4" type="checkbox" id="nav-4">
322
+
323
+ <label class="md-nav__link" for="nav-4">
324
+ General
325
+ <span class="md-nav__icon md-icon"></span>
326
+ </label>
327
+ <nav class="md-nav" aria-label="General" data-md-level="1">
328
+ <label class="md-nav__title" for="nav-4">
329
+ <span class="md-nav__icon md-icon"></span>
330
+ General
331
+ </label>
332
+ <ul class="md-nav__list" data-md-scrollfix>
333
+
334
+
335
+
336
+
337
+
338
+
339
+
340
+ <li class="md-nav__item">
341
+ <a href="../../getting-started/" class="md-nav__link">
342
+ Getting Started
343
+ </a>
344
+ </li>
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+ <li class="md-nav__item">
353
+ <a href="../../transition-guide/" class="md-nav__link">
354
+ Transition Guide
355
+ </a>
356
+ </li>
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+ <li class="md-nav__item">
365
+ <a href="../../npm-scripts/" class="md-nav__link">
366
+ Npm Scripts
367
+ </a>
368
+ </li>
369
+
370
+
371
+
372
+
373
+
374
+
375
+
376
+ <li class="md-nav__item">
377
+ <a href="../../SPFx-on-premises/" class="md-nav__link">
378
+ SPFx On-Premises
379
+ </a>
380
+ </li>
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+ <li class="md-nav__item">
389
+ <a href="../../nodejs-support/" class="md-nav__link">
390
+ Working in Nodejs
391
+ </a>
392
+ </li>
393
+
394
+
395
+ </ul>
396
+ </nav>
397
+ </li>
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+ <li class="md-nav__item md-nav__item--nested">
406
+
407
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-5" type="checkbox" id="nav-5">
408
+
409
+ <label class="md-nav__link" for="nav-5">
410
+ Library Concepts
411
+ <span class="md-nav__icon md-icon"></span>
412
+ </label>
413
+ <nav class="md-nav" aria-label="Library Concepts" data-md-level="1">
414
+ <label class="md-nav__title" for="nav-5">
415
+ <span class="md-nav__icon md-icon"></span>
416
+ Library Concepts
417
+ </label>
418
+ <ul class="md-nav__list" data-md-scrollfix>
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+ <li class="md-nav__item">
427
+ <a href="../../concepts/configuration/" class="md-nav__link">
428
+ Configuration
429
+ </a>
430
+ </li>
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+ <li class="md-nav__item">
439
+ <a href="../../concepts/selective-imports/" class="md-nav__link">
440
+ Selective Imports
441
+ </a>
442
+ </li>
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+ <li class="md-nav__item">
451
+ <a href="../../concepts/custom-bundle/" class="md-nav__link">
452
+ Custom Bundle
453
+ </a>
454
+ </li>
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+ <li class="md-nav__item">
463
+ <a href="../../concepts/ie11-mode/" class="md-nav__link">
464
+ IE11 Mode
465
+ </a>
466
+ </li>
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+ <li class="md-nav__item">
475
+ <a href="../../concepts/invokable/" class="md-nav__link">
476
+ Invokables
477
+ </a>
478
+ </li>
479
+
480
+
481
+
482
+
483
+
484
+
485
+
486
+ <li class="md-nav__item">
487
+ <a href="../../concepts/polyfill/" class="md-nav__link">
488
+ Polyfills
489
+ </a>
490
+ </li>
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+ <li class="md-nav__item">
499
+ <a href="../../concepts/settings/" class="md-nav__link">
500
+ Settings
501
+ </a>
502
+ </li>
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+ <li class="md-nav__item">
511
+ <a href="../../concepts/error-handling/" class="md-nav__link">
512
+ Error Handling
513
+ </a>
514
+ </li>
515
+
516
+
517
+
518
+
519
+
520
+
521
+
522
+ <li class="md-nav__item md-nav__item--nested">
523
+
524
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-5-9" type="checkbox" id="nav-5-9">
525
+
526
+ <label class="md-nav__link" for="nav-5-9">
527
+ Authentication
528
+ <span class="md-nav__icon md-icon"></span>
529
+ </label>
530
+ <nav class="md-nav" aria-label="Authentication" data-md-level="2">
531
+ <label class="md-nav__title" for="nav-5-9">
532
+ <span class="md-nav__icon md-icon"></span>
533
+ Authentication
534
+ </label>
535
+ <ul class="md-nav__list" data-md-scrollfix>
536
+
537
+
538
+
539
+
540
+
541
+
542
+
543
+ <li class="md-nav__item">
544
+ <a href="../../authentication/" class="md-nav__link">
545
+ Getting Started
546
+ </a>
547
+ </li>
548
+
549
+
550
+
551
+
552
+
553
+
554
+
555
+ <li class="md-nav__item">
556
+ <a href="../../authentication/client-spfx/" class="md-nav__link">
557
+ SPFx Auth
558
+ </a>
559
+ </li>
560
+
561
+
562
+
563
+
564
+
565
+
566
+
567
+ <li class="md-nav__item">
568
+ <a href="../../authentication/msaljsclient/" class="md-nav__link">
569
+ MSAL Client
570
+ </a>
571
+ </li>
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+ <li class="md-nav__item">
580
+ <a href="../../authentication/adaljsclient/" class="md-nav__link">
581
+ ADAL Client
582
+ </a>
583
+ </li>
584
+
585
+
586
+
587
+
588
+
589
+
590
+
591
+ <li class="md-nav__item">
592
+ <a href="../../authentication/client-spa/" class="md-nav__link">
593
+ SPA Auth
594
+ </a>
595
+ </li>
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+ <li class="md-nav__item">
604
+ <a href="../../authentication/server-nodejs/" class="md-nav__link">
605
+ NodeJS Auth
606
+ </a>
607
+ </li>
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+ <li class="md-nav__item">
616
+ <a href="../../authentication/sp-app-registration/" class="md-nav__link">
617
+ SP App Reg
618
+ </a>
619
+ </li>
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+ <li class="md-nav__item">
628
+ <a href="../../authentication/bearertokenclient/" class="md-nav__link">
629
+ Bearer Token Client
630
+ </a>
631
+ </li>
632
+
633
+
634
+
635
+
636
+
637
+
638
+
639
+ <li class="md-nav__item">
640
+ <a href="../../authentication/lambdaclient/" class="md-nav__link">
641
+ Lambda Token Client
642
+ </a>
643
+ </li>
644
+
645
+
646
+ </ul>
647
+ </nav>
648
+ </li>
649
+
650
+
651
+ </ul>
652
+ </nav>
653
+ </li>
654
+
655
+
656
+
657
+
658
+
659
+
660
+
661
+ <li class="md-nav__item md-nav__item--nested">
662
+
663
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6" type="checkbox" id="nav-6">
664
+
665
+ <label class="md-nav__link" for="nav-6">
666
+ Packages
667
+ <span class="md-nav__icon md-icon"></span>
668
+ </label>
669
+ <nav class="md-nav" aria-label="Packages" data-md-level="1">
670
+ <label class="md-nav__title" for="nav-6">
671
+ <span class="md-nav__icon md-icon"></span>
672
+ Packages
673
+ </label>
674
+ <ul class="md-nav__list" data-md-scrollfix>
675
+
676
+
677
+
678
+
679
+
680
+
681
+
682
+ <li class="md-nav__item">
683
+ <a href="../../packages/" class="md-nav__link">
684
+ Packages
685
+ </a>
686
+ </li>
687
+
688
+
689
+
690
+
691
+
692
+
693
+
694
+ <li class="md-nav__item md-nav__item--nested">
695
+
696
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-2" type="checkbox" id="nav-6-2">
697
+
698
+ <label class="md-nav__link" for="nav-6-2">
699
+ common
700
+ <span class="md-nav__icon md-icon"></span>
701
+ </label>
702
+ <nav class="md-nav" aria-label="common" data-md-level="2">
703
+ <label class="md-nav__title" for="nav-6-2">
704
+ <span class="md-nav__icon md-icon"></span>
705
+ common
706
+ </label>
707
+ <ul class="md-nav__list" data-md-scrollfix>
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+ <li class="md-nav__item">
716
+ <a href="../../common/" class="md-nav__link">
717
+ common
718
+ </a>
719
+ </li>
720
+
721
+
722
+
723
+
724
+
725
+
726
+
727
+ <li class="md-nav__item">
728
+ <a href="../../common/collections/" class="md-nav__link">
729
+ collections
730
+ </a>
731
+ </li>
732
+
733
+
734
+
735
+
736
+
737
+
738
+
739
+ <li class="md-nav__item">
740
+ <a href="../../common/custom-httpclientimpl/" class="md-nav__link">
741
+ Custom HttpClientImpl
742
+ </a>
743
+ </li>
744
+
745
+
746
+
747
+
748
+
749
+
750
+
751
+ <li class="md-nav__item">
752
+ <a href="../../common/libconfig/" class="md-nav__link">
753
+ libconfig
754
+ </a>
755
+ </li>
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+ <li class="md-nav__item">
764
+ <a href="../../common/netutil/" class="md-nav__link">
765
+ netutil
766
+ </a>
767
+ </li>
768
+
769
+
770
+
771
+
772
+
773
+
774
+
775
+ <li class="md-nav__item">
776
+ <a href="../../common/storage/" class="md-nav__link">
777
+ storage
778
+ </a>
779
+ </li>
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+ <li class="md-nav__item">
788
+ <a href="../../common/util/" class="md-nav__link">
789
+ util
790
+ </a>
791
+ </li>
792
+
793
+
794
+ </ul>
795
+ </nav>
796
+ </li>
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+ <li class="md-nav__item md-nav__item--nested">
805
+
806
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-3" type="checkbox" id="nav-6-3">
807
+
808
+ <label class="md-nav__link" for="nav-6-3">
809
+ config-store
810
+ <span class="md-nav__icon md-icon"></span>
811
+ </label>
812
+ <nav class="md-nav" aria-label="config-store" data-md-level="2">
813
+ <label class="md-nav__title" for="nav-6-3">
814
+ <span class="md-nav__icon md-icon"></span>
815
+ config-store
816
+ </label>
817
+ <ul class="md-nav__list" data-md-scrollfix>
818
+
819
+
820
+
821
+
822
+
823
+
824
+
825
+ <li class="md-nav__item">
826
+ <a href="../../config-store/" class="md-nav__link">
827
+ config-store
828
+ </a>
829
+ </li>
830
+
831
+
832
+
833
+
834
+
835
+
836
+
837
+ <li class="md-nav__item">
838
+ <a href="../../config-store/configuration/" class="md-nav__link">
839
+ configuration
840
+ </a>
841
+ </li>
842
+
843
+
844
+
845
+
846
+
847
+
848
+
849
+ <li class="md-nav__item">
850
+ <a href="../../config-store/providers/" class="md-nav__link">
851
+ providers
852
+ </a>
853
+ </li>
854
+
855
+
856
+ </ul>
857
+ </nav>
858
+ </li>
859
+
860
+
861
+
862
+
863
+
864
+
865
+
866
+ <li class="md-nav__item md-nav__item--nested">
867
+
868
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-4" type="checkbox" id="nav-6-4">
869
+
870
+ <label class="md-nav__link" for="nav-6-4">
871
+ graph
872
+ <span class="md-nav__icon md-icon"></span>
873
+ </label>
874
+ <nav class="md-nav" aria-label="graph" data-md-level="2">
875
+ <label class="md-nav__title" for="nav-6-4">
876
+ <span class="md-nav__icon md-icon"></span>
877
+ graph
878
+ </label>
879
+ <ul class="md-nav__list" data-md-scrollfix>
880
+
881
+
882
+
883
+
884
+
885
+
886
+
887
+ <li class="md-nav__item">
888
+ <a href="../../graph/" class="md-nav__link">
889
+ graph
890
+ </a>
891
+ </li>
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+ <li class="md-nav__item">
900
+ <a href="../../graph/groups/" class="md-nav__link">
901
+ groups
902
+ </a>
903
+ </li>
904
+
905
+
906
+
907
+
908
+
909
+
910
+
911
+ <li class="md-nav__item">
912
+ <a href="../../graph/insights/" class="md-nav__link">
913
+ insights
914
+ </a>
915
+ </li>
916
+
917
+
918
+
919
+
920
+
921
+
922
+
923
+ <li class="md-nav__item">
924
+ <a href="../../graph/contacts/" class="md-nav__link">
925
+ contacts
926
+ </a>
927
+ </li>
928
+
929
+
930
+
931
+
932
+
933
+
934
+
935
+ <li class="md-nav__item">
936
+ <a href="../../graph/calendars/" class="md-nav__link">
937
+ calendars
938
+ </a>
939
+ </li>
940
+
941
+
942
+
943
+
944
+
945
+
946
+
947
+ <li class="md-nav__item">
948
+ <a href="../../graph/directoryobjects/" class="md-nav__link">
949
+ directory objects
950
+ </a>
951
+ </li>
952
+
953
+
954
+
955
+
956
+
957
+
958
+
959
+ <li class="md-nav__item">
960
+ <a href="../../graph/invitations/" class="md-nav__link">
961
+ invitations
962
+ </a>
963
+ </li>
964
+
965
+
966
+
967
+
968
+
969
+
970
+
971
+ <li class="md-nav__item">
972
+ <a href="../../graph/onedrive/" class="md-nav__link">
973
+ onedrive
974
+ </a>
975
+ </li>
976
+
977
+
978
+
979
+
980
+
981
+
982
+
983
+ <li class="md-nav__item">
984
+ <a href="../../graph/outlook/" class="md-nav__link">
985
+ outlook
986
+ </a>
987
+ </li>
988
+
989
+
990
+
991
+
992
+
993
+
994
+
995
+ <li class="md-nav__item">
996
+ <a href="../../graph/photos/" class="md-nav__link">
997
+ photos
998
+ </a>
999
+ </li>
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+ <li class="md-nav__item">
1008
+ <a href="../../graph/planner/" class="md-nav__link">
1009
+ planner
1010
+ </a>
1011
+ </li>
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+ <li class="md-nav__item">
1020
+ <a href="../../graph/search/" class="md-nav__link">
1021
+ search
1022
+ </a>
1023
+ </li>
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+ <li class="md-nav__item">
1032
+ <a href="../../graph/subscriptions/" class="md-nav__link">
1033
+ subscriptions
1034
+ </a>
1035
+ </li>
1036
+
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+
1043
+ <li class="md-nav__item">
1044
+ <a href="../../graph/teams/" class="md-nav__link">
1045
+ teams
1046
+ </a>
1047
+ </li>
1048
+
1049
+
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ <li class="md-nav__item">
1056
+ <a href="../../graph/users/" class="md-nav__link">
1057
+ users
1058
+ </a>
1059
+ </li>
1060
+
1061
+
1062
+ </ul>
1063
+ </nav>
1064
+ </li>
1065
+
1066
+
1067
+
1068
+
1069
+
1070
+
1071
+
1072
+ <li class="md-nav__item">
1073
+ <a href="../../logging/" class="md-nav__link">
1074
+ logging
1075
+ </a>
1076
+ </li>
1077
+
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+ <li class="md-nav__item md-nav__item--nested">
1085
+
1086
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-6" type="checkbox" id="nav-6-6">
1087
+
1088
+ <label class="md-nav__link" for="nav-6-6">
1089
+ nodejs
1090
+ <span class="md-nav__icon md-icon"></span>
1091
+ </label>
1092
+ <nav class="md-nav" aria-label="nodejs" data-md-level="2">
1093
+ <label class="md-nav__title" for="nav-6-6">
1094
+ <span class="md-nav__icon md-icon"></span>
1095
+ nodejs
1096
+ </label>
1097
+ <ul class="md-nav__list" data-md-scrollfix>
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+
1104
+
1105
+ <li class="md-nav__item">
1106
+ <a href="../../nodejs/" class="md-nav__link">
1107
+ nodejs
1108
+ </a>
1109
+ </li>
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+ <li class="md-nav__item">
1118
+ <a href="../../nodejs/sp-fetch-client/" class="md-nav__link">
1119
+ SPFetchClient
1120
+ </a>
1121
+ </li>
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+ <li class="md-nav__item">
1130
+ <a href="../../nodejs/adal-fetch-client/" class="md-nav__link">
1131
+ AdalFetchClient
1132
+ </a>
1133
+ </li>
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+ <li class="md-nav__item">
1142
+ <a href="../../nodejs/bearer-token-fetch-client/" class="md-nav__link">
1143
+ BearerTokenFetchClient
1144
+ </a>
1145
+ </li>
1146
+
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+ <li class="md-nav__item">
1154
+ <a href="../../nodejs/provider-hosted-app/" class="md-nav__link">
1155
+ ProviderHostedRequestContext
1156
+ </a>
1157
+ </li>
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+ <li class="md-nav__item">
1166
+ <a href="../../nodejs/sp-extensions/" class="md-nav__link">
1167
+ sp Extensions
1168
+ </a>
1169
+ </li>
1170
+
1171
+
1172
+
1173
+
1174
+
1175
+
1176
+
1177
+ <li class="md-nav__item">
1178
+ <a href="../../nodejs/proxy/" class="md-nav__link">
1179
+ proxy
1180
+ </a>
1181
+ </li>
1182
+
1183
+
1184
+ </ul>
1185
+ </nav>
1186
+ </li>
1187
+
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+ <li class="md-nav__item md-nav__item--nested">
1195
+
1196
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-7" type="checkbox" id="nav-6-7">
1197
+
1198
+ <label class="md-nav__link" for="nav-6-7">
1199
+ odata
1200
+ <span class="md-nav__icon md-icon"></span>
1201
+ </label>
1202
+ <nav class="md-nav" aria-label="odata" data-md-level="2">
1203
+ <label class="md-nav__title" for="nav-6-7">
1204
+ <span class="md-nav__icon md-icon"></span>
1205
+ odata
1206
+ </label>
1207
+ <ul class="md-nav__list" data-md-scrollfix>
1208
+
1209
+
1210
+
1211
+
1212
+
1213
+
1214
+
1215
+ <li class="md-nav__item">
1216
+ <a href="../../odata/" class="md-nav__link">
1217
+ odata
1218
+ </a>
1219
+ </li>
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+ <li class="md-nav__item">
1228
+ <a href="../../odata/caching/" class="md-nav__link">
1229
+ caching
1230
+ </a>
1231
+ </li>
1232
+
1233
+
1234
+
1235
+
1236
+
1237
+
1238
+
1239
+ <li class="md-nav__item">
1240
+ <a href="../../odata/core/" class="md-nav__link">
1241
+ core
1242
+ </a>
1243
+ </li>
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+
1250
+
1251
+ <li class="md-nav__item">
1252
+ <a href="../../odata/odata-batch/" class="md-nav__link">
1253
+ OData Batching
1254
+ </a>
1255
+ </li>
1256
+
1257
+
1258
+
1259
+
1260
+
1261
+
1262
+
1263
+ <li class="md-nav__item">
1264
+ <a href="../../odata/extensions/" class="md-nav__link">
1265
+ Extending an OData library
1266
+ </a>
1267
+ </li>
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+ <li class="md-nav__item">
1276
+ <a href="../../odata/debug/" class="md-nav__link">
1277
+ Debugging Proxy Objects
1278
+ </a>
1279
+ </li>
1280
+
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+
1287
+ <li class="md-nav__item">
1288
+ <a href="../../odata/parsers/" class="md-nav__link">
1289
+ Parsers
1290
+ </a>
1291
+ </li>
1292
+
1293
+
1294
+
1295
+
1296
+
1297
+
1298
+
1299
+ <li class="md-nav__item">
1300
+ <a href="../../odata/pipeline/" class="md-nav__link">
1301
+ Pipeline
1302
+ </a>
1303
+ </li>
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+
1310
+
1311
+ <li class="md-nav__item">
1312
+ <a href="../../odata/queryable/" class="md-nav__link">
1313
+ Queryable
1314
+ </a>
1315
+ </li>
1316
+
1317
+
1318
+ </ul>
1319
+ </nav>
1320
+ </li>
1321
+
1322
+
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+ <li class="md-nav__item md-nav__item--nested">
1329
+
1330
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-8" type="checkbox" id="nav-6-8">
1331
+
1332
+ <label class="md-nav__link" for="nav-6-8">
1333
+ pnpjs
1334
+ <span class="md-nav__icon md-icon"></span>
1335
+ </label>
1336
+ <nav class="md-nav" aria-label="pnpjs" data-md-level="2">
1337
+ <label class="md-nav__title" for="nav-6-8">
1338
+ <span class="md-nav__icon md-icon"></span>
1339
+ pnpjs
1340
+ </label>
1341
+ <ul class="md-nav__list" data-md-scrollfix>
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+ <li class="md-nav__item">
1350
+ <a href="../../pnpjs/" class="md-nav__link">
1351
+ pnpjs
1352
+ </a>
1353
+ </li>
1354
+
1355
+
1356
+ </ul>
1357
+ </nav>
1358
+ </li>
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+ <li class="md-nav__item md-nav__item--nested">
1367
+
1368
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-9" type="checkbox" id="nav-6-9">
1369
+
1370
+ <label class="md-nav__link" for="nav-6-9">
1371
+ sp
1372
+ <span class="md-nav__icon md-icon"></span>
1373
+ </label>
1374
+ <nav class="md-nav" aria-label="sp" data-md-level="2">
1375
+ <label class="md-nav__title" for="nav-6-9">
1376
+ <span class="md-nav__icon md-icon"></span>
1377
+ sp
1378
+ </label>
1379
+ <ul class="md-nav__list" data-md-scrollfix>
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+ <li class="md-nav__item">
1388
+ <a href="../../sp/" class="md-nav__link">
1389
+ sp
1390
+ </a>
1391
+ </li>
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+ <li class="md-nav__item">
1400
+ <a href="../../sp/alias-parameters/" class="md-nav__link">
1401
+ Alias Parameters
1402
+ </a>
1403
+ </li>
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+ <li class="md-nav__item">
1412
+ <a href="../../sp/alm/" class="md-nav__link">
1413
+ ALM api
1414
+ </a>
1415
+ </li>
1416
+
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+
1423
+ <li class="md-nav__item">
1424
+ <a href="../../sp/attachments/" class="md-nav__link">
1425
+ Attachments
1426
+ </a>
1427
+ </li>
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+ <li class="md-nav__item">
1436
+ <a href="../../sp/clientside-pages/" class="md-nav__link">
1437
+ Client-side Pages
1438
+ </a>
1439
+ </li>
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+
1446
+
1447
+ <li class="md-nav__item">
1448
+ <a href="../../sp/column-defaults/" class="md-nav__link">
1449
+ Column Defaults
1450
+ </a>
1451
+ </li>
1452
+
1453
+
1454
+
1455
+
1456
+
1457
+
1458
+
1459
+ <li class="md-nav__item">
1460
+ <a href="../../sp/comments-likes/" class="md-nav__link">
1461
+ Comments and Likes
1462
+ </a>
1463
+ </li>
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+ <li class="md-nav__item">
1472
+ <a href="../../sp/content-types/" class="md-nav__link">
1473
+ Content Types
1474
+ </a>
1475
+ </li>
1476
+
1477
+
1478
+
1479
+
1480
+
1481
+
1482
+
1483
+ <li class="md-nav__item">
1484
+ <a href="../../sp/entity-merging/" class="md-nav__link">
1485
+ Entity Merging
1486
+ </a>
1487
+ </li>
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+ <li class="md-nav__item">
1496
+ <a href="../../sp/features/" class="md-nav__link">
1497
+ Features
1498
+ </a>
1499
+ </li>
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+
1506
+
1507
+ <li class="md-nav__item">
1508
+ <a href="../../sp/fields/" class="md-nav__link">
1509
+ Fields
1510
+ </a>
1511
+ </li>
1512
+
1513
+
1514
+
1515
+
1516
+
1517
+
1518
+
1519
+ <li class="md-nav__item">
1520
+ <a href="../../sp/files/" class="md-nav__link">
1521
+ Files
1522
+ </a>
1523
+ </li>
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+
1530
+
1531
+ <li class="md-nav__item">
1532
+ <a href="../../sp/folders/" class="md-nav__link">
1533
+ Folders
1534
+ </a>
1535
+ </li>
1536
+
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+
1543
+ <li class="md-nav__item">
1544
+ <a href="../../sp/forms/" class="md-nav__link">
1545
+ Forms
1546
+ </a>
1547
+ </li>
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+
1555
+ <li class="md-nav__item">
1556
+ <a href="../../sp/hubsites/" class="md-nav__link">
1557
+ Hubsites
1558
+ </a>
1559
+ </li>
1560
+
1561
+
1562
+
1563
+
1564
+
1565
+
1566
+
1567
+ <li class="md-nav__item">
1568
+ <a href="../../sp/items/" class="md-nav__link">
1569
+ List Items
1570
+ </a>
1571
+ </li>
1572
+
1573
+
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+ <li class="md-nav__item">
1580
+ <a href="../../sp/lists/" class="md-nav__link">
1581
+ Lists
1582
+ </a>
1583
+ </li>
1584
+
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+
1591
+ <li class="md-nav__item">
1592
+ <a href="../../sp/navigation/" class="md-nav__link">
1593
+ Navigation
1594
+ </a>
1595
+ </li>
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+ <li class="md-nav__item">
1604
+ <a href="../../sp/permissions/" class="md-nav__link">
1605
+ Permissions
1606
+ </a>
1607
+ </li>
1608
+
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+
1615
+ <li class="md-nav__item">
1616
+ <a href="../../sp/profiles/" class="md-nav__link">
1617
+ Profiles
1618
+ </a>
1619
+ </li>
1620
+
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+
1627
+ <li class="md-nav__item">
1628
+ <a href="../../sp/regional-settings/" class="md-nav__link">
1629
+ Regional Settings
1630
+ </a>
1631
+ </li>
1632
+
1633
+
1634
+
1635
+
1636
+
1637
+
1638
+
1639
+ <li class="md-nav__item">
1640
+ <a href="../../sp/related-items/" class="md-nav__link">
1641
+ Related Items
1642
+ </a>
1643
+ </li>
1644
+
1645
+
1646
+
1647
+
1648
+
1649
+
1650
+
1651
+ <li class="md-nav__item">
1652
+ <a href="../../sp/search/" class="md-nav__link">
1653
+ Search
1654
+ </a>
1655
+ </li>
1656
+
1657
+
1658
+
1659
+
1660
+
1661
+
1662
+
1663
+ <li class="md-nav__item">
1664
+ <a href="../../sp/security/" class="md-nav__link">
1665
+ Security
1666
+ </a>
1667
+ </li>
1668
+
1669
+
1670
+
1671
+
1672
+
1673
+
1674
+
1675
+ <li class="md-nav__item">
1676
+ <a href="../../sp/sharing/" class="md-nav__link">
1677
+ Sharing
1678
+ </a>
1679
+ </li>
1680
+
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+
1687
+ <li class="md-nav__item">
1688
+ <a href="../../sp/site-designs/" class="md-nav__link">
1689
+ Site Designs
1690
+ </a>
1691
+ </li>
1692
+
1693
+
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+ <li class="md-nav__item">
1700
+ <a href="../../sp/site-groups/" class="md-nav__link">
1701
+ Site Groups
1702
+ </a>
1703
+ </li>
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+
1711
+ <li class="md-nav__item">
1712
+ <a href="../../sp/site-scripts/" class="md-nav__link">
1713
+ Site Scripts
1714
+ </a>
1715
+ </li>
1716
+
1717
+
1718
+
1719
+
1720
+
1721
+
1722
+
1723
+ <li class="md-nav__item">
1724
+ <a href="../../sp/site-users/" class="md-nav__link">
1725
+ Site Users
1726
+ </a>
1727
+ </li>
1728
+
1729
+
1730
+
1731
+
1732
+
1733
+
1734
+
1735
+ <li class="md-nav__item">
1736
+ <a href="../../sp/sites/" class="md-nav__link">
1737
+ Sites
1738
+ </a>
1739
+ </li>
1740
+
1741
+
1742
+
1743
+
1744
+
1745
+
1746
+
1747
+ <li class="md-nav__item">
1748
+ <a href="../../sp/social/" class="md-nav__link">
1749
+ Social
1750
+ </a>
1751
+ </li>
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1759
+ <li class="md-nav__item">
1760
+ <a href="../../sp/sp-utilities-utility/" class="md-nav__link">
1761
+ SP.Utilities.Utility
1762
+ </a>
1763
+ </li>
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+ <li class="md-nav__item">
1772
+ <a href="../../sp/subscriptions/" class="md-nav__link">
1773
+ Subscriptions
1774
+ </a>
1775
+ </li>
1776
+
1777
+
1778
+
1779
+
1780
+
1781
+
1782
+
1783
+ <li class="md-nav__item">
1784
+ <a href="../../sp/taxonomy/" class="md-nav__link">
1785
+ Taxonomy
1786
+ </a>
1787
+ </li>
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+
1794
+
1795
+ <li class="md-nav__item">
1796
+ <a href="../../sp/tenant-properties/" class="md-nav__link">
1797
+ Tenant Properties
1798
+ </a>
1799
+ </li>
1800
+
1801
+
1802
+
1803
+
1804
+
1805
+
1806
+
1807
+ <li class="md-nav__item">
1808
+ <a href="../../sp/user-custom-actions/" class="md-nav__link">
1809
+ User custom actions
1810
+ </a>
1811
+ </li>
1812
+
1813
+
1814
+
1815
+
1816
+
1817
+
1818
+
1819
+ <li class="md-nav__item">
1820
+ <a href="../../sp/views/" class="md-nav__link">
1821
+ Views
1822
+ </a>
1823
+ </li>
1824
+
1825
+
1826
+
1827
+
1828
+
1829
+
1830
+
1831
+ <li class="md-nav__item">
1832
+ <a href="../../sp/webs/" class="md-nav__link">
1833
+ Webs
1834
+ </a>
1835
+ </li>
1836
+
1837
+
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+ <li class="md-nav__item">
1844
+ <a href="../../sp/custom-irequestclient/" class="md-nav__link">
1845
+ Custom Request Client
1846
+ </a>
1847
+ </li>
1848
+
1849
+
1850
+ </ul>
1851
+ </nav>
1852
+ </li>
1853
+
1854
+
1855
+
1856
+
1857
+
1858
+
1859
+
1860
+ <li class="md-nav__item md-nav__item--nested">
1861
+
1862
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-6-10" type="checkbox" id="nav-6-10">
1863
+
1864
+ <label class="md-nav__link" for="nav-6-10">
1865
+ sp-addinhelpers
1866
+ <span class="md-nav__icon md-icon"></span>
1867
+ </label>
1868
+ <nav class="md-nav" aria-label="sp-addinhelpers" data-md-level="2">
1869
+ <label class="md-nav__title" for="nav-6-10">
1870
+ <span class="md-nav__icon md-icon"></span>
1871
+ sp-addinhelpers
1872
+ </label>
1873
+ <ul class="md-nav__list" data-md-scrollfix>
1874
+
1875
+
1876
+
1877
+
1878
+
1879
+
1880
+
1881
+ <li class="md-nav__item">
1882
+ <a href="../../sp-addinhelpers/" class="md-nav__link">
1883
+ sp-addinhelpers
1884
+ </a>
1885
+ </li>
1886
+
1887
+
1888
+
1889
+
1890
+
1891
+
1892
+
1893
+ <li class="md-nav__item">
1894
+ <a href="../../sp-addinhelpers/sp-request-executor-client/" class="md-nav__link">
1895
+ SPRequestExecutorClient
1896
+ </a>
1897
+ </li>
1898
+
1899
+
1900
+
1901
+
1902
+
1903
+
1904
+
1905
+ <li class="md-nav__item">
1906
+ <a href="../../sp-addinhelpers/sp-rest-addin/" class="md-nav__link">
1907
+ SPRestAddIn
1908
+ </a>
1909
+ </li>
1910
+
1911
+
1912
+ </ul>
1913
+ </nav>
1914
+ </li>
1915
+
1916
+
1917
+ </ul>
1918
+ </nav>
1919
+ </li>
1920
+
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+
1927
+ <li class="md-nav__item md-nav__item--nested">
1928
+
1929
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-7" type="checkbox" id="nav-7">
1930
+
1931
+ <label class="md-nav__link" for="nav-7">
1932
+ Contributing
1933
+ <span class="md-nav__icon md-icon"></span>
1934
+ </label>
1935
+ <nav class="md-nav" aria-label="Contributing" data-md-level="1">
1936
+ <label class="md-nav__title" for="nav-7">
1937
+ <span class="md-nav__icon md-icon"></span>
1938
+ Contributing
1939
+ </label>
1940
+ <ul class="md-nav__list" data-md-scrollfix>
1941
+
1942
+
1943
+
1944
+
1945
+
1946
+
1947
+
1948
+ <li class="md-nav__item">
1949
+ <a href="../../contributing/" class="md-nav__link">
1950
+ Contributing
1951
+ </a>
1952
+ </li>
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+
1959
+
1960
+ <li class="md-nav__item">
1961
+ <a href="../../contributing/setup-dev-machine/" class="md-nav__link">
1962
+ Setup Dev Machine
1963
+ </a>
1964
+ </li>
1965
+
1966
+
1967
+
1968
+
1969
+
1970
+
1971
+
1972
+ <li class="md-nav__item">
1973
+ <a href="../../contributing/local-debug-configuration/" class="md-nav__link">
1974
+ Local Debug Configuration
1975
+ </a>
1976
+ </li>
1977
+
1978
+
1979
+
1980
+
1981
+
1982
+
1983
+
1984
+ <li class="md-nav__item">
1985
+ <a href="../../contributing/debugging/" class="md-nav__link">
1986
+ Debugging
1987
+ </a>
1988
+ </li>
1989
+
1990
+
1991
+
1992
+
1993
+
1994
+
1995
+
1996
+ <li class="md-nav__item">
1997
+ <a href="../../contributing/extending-the-library/" class="md-nav__link">
1998
+ Extending the library
1999
+ </a>
2000
+ </li>
2001
+
2002
+
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+ <li class="md-nav__item">
2009
+ <a href="../../contributing/debug-tests/" class="md-nav__link">
2010
+ Writing Tests
2011
+ </a>
2012
+ </li>
2013
+
2014
+
2015
+
2016
+
2017
+
2018
+
2019
+
2020
+ <li class="md-nav__item">
2021
+ <a href="../../contributing/documentation/" class="md-nav__link">
2022
+ Update Documentation
2023
+ </a>
2024
+ </li>
2025
+
2026
+
2027
+
2028
+
2029
+
2030
+
2031
+
2032
+ <li class="md-nav__item">
2033
+ <a href="../../contributing/pull-requests/" class="md-nav__link">
2034
+ Submit a Pull Request
2035
+ </a>
2036
+ </li>
2037
+
2038
+
2039
+ </ul>
2040
+ </nav>
2041
+ </li>
2042
+
2043
+
2044
+
2045
+
2046
+
2047
+
2048
+
2049
+ <li class="md-nav__item md-nav__item--nested">
2050
+
2051
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-8" type="checkbox" id="nav-8">
2052
+
2053
+ <label class="md-nav__link" for="nav-8">
2054
+ Version 1 Docs
2055
+ <span class="md-nav__icon md-icon"></span>
2056
+ </label>
2057
+ <nav class="md-nav" aria-label="Version 1 Docs" data-md-level="1">
2058
+ <label class="md-nav__title" for="nav-8">
2059
+ <span class="md-nav__icon md-icon"></span>
2060
+ Version 1 Docs
2061
+ </label>
2062
+ <ul class="md-nav__list" data-md-scrollfix>
2063
+
2064
+
2065
+
2066
+
2067
+
2068
+
2069
+
2070
+ <li class="md-nav__item">
2071
+ <a href="../../v1/" class="md-nav__link">
2072
+ Home
2073
+ </a>
2074
+ </li>
2075
+
2076
+
2077
+ </ul>
2078
+ </nav>
2079
+ </li>
2080
+
2081
+
2082
+
2083
+
2084
+
2085
+
2086
+
2087
+ <li class="md-nav__item md-nav__item--nested">
2088
+
2089
+ <input class="md-nav__toggle md-toggle" data-md-toggle="nav-9" type="checkbox" id="nav-9">
2090
+
2091
+ <label class="md-nav__link" for="nav-9">
2092
+ Version 2 Docs
2093
+ <span class="md-nav__icon md-icon"></span>
2094
+ </label>
2095
+ <nav class="md-nav" aria-label="Version 2 Docs" data-md-level="1">
2096
+ <label class="md-nav__title" for="nav-9">
2097
+ <span class="md-nav__icon md-icon"></span>
2098
+ Version 2 Docs
2099
+ </label>
2100
+ <ul class="md-nav__list" data-md-scrollfix>
2101
+
2102
+
2103
+
2104
+
2105
+
2106
+
2107
+
2108
+ <li class="md-nav__item">
2109
+ <a href="../../v2/index.html" class="md-nav__link">
2110
+ Home
2111
+ </a>
2112
+ </li>
2113
+
2114
+
2115
+ </ul>
2116
+ </nav>
2117
+ </li>
2118
+
2119
+
2120
+ </ul>
2121
+ </nav>
2122
+ </div>
2123
+ </div>
2124
+ </div>
2125
+
2126
+
2127
+ <div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
2128
+ <div class="md-sidebar__scrollwrap">
2129
+ <div class="md-sidebar__inner">
2130
+
2131
+ <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
2132
+
2133
+
2134
+
2135
+
2136
+
2137
+ <label class="md-nav__title" for="__toc">
2138
+ <span class="md-nav__icon md-icon"></span>
2139
+ Table of contents
2140
+ </label>
2141
+ <ul class="md-nav__list" data-md-scrollfix>
2142
+
2143
+ <li class="md-nav__item">
2144
+ <a href="#usage" class="md-nav__link">
2145
+ Usage
2146
+ </a>
2147
+
2148
+ </li>
2149
+
2150
+ <li class="md-nav__item">
2151
+ <a href="#releases" class="md-nav__link">
2152
+ Releases
2153
+ </a>
2154
+
2155
+ <nav class="md-nav" aria-label="Releases">
2156
+ <ul class="md-nav__list">
2157
+
2158
+ <li class="md-nav__item">
2159
+ <a href="#npm-package-download-statistics-pnpsp" class="md-nav__link">
2160
+ NPM Package download statistics (@pnp/sp):
2161
+ </a>
2162
+
2163
+ </li>
2164
+
2165
+ </ul>
2166
+ </nav>
2167
+
2168
+ </li>
2169
+
2170
+ <li class="md-nav__item">
2171
+ <a href="#future-plans" class="md-nav__link">
2172
+ Future Plans
2173
+ </a>
2174
+
2175
+ </li>
2176
+
2177
+ <li class="md-nav__item">
2178
+ <a href="#new-lead-maintainer" class="md-nav__link">
2179
+ New Lead Maintainer
2180
+ </a>
2181
+
2182
+ </li>
2183
+
2184
+ <li class="md-nav__item">
2185
+ <a href="#contributors" class="md-nav__link">
2186
+ Contributors
2187
+ </a>
2188
+
2189
+ </li>
2190
+
2191
+ <li class="md-nav__item">
2192
+ <a href="#sponsors" class="md-nav__link">
2193
+ Sponsors
2194
+ </a>
2195
+
2196
+ </li>
2197
+
2198
+ <li class="md-nav__item">
2199
+ <a href="#closing" class="md-nav__link">
2200
+ Closing
2201
+ </a>
2202
+
2203
+ </li>
2204
+
2205
+ </ul>
2206
+
2207
+ </nav>
2208
+ </div>
2209
+ </div>
2210
+ </div>
2211
+
2212
+
2213
+ <div class="md-content">
2214
+ <article class="md-content__inner md-typeset">
2215
+
2216
+
2217
+ <a href="https://github.com/pnp/pnpjs/tree/version-2/docs/news/2020-year-in-review.md" title="Edit this page" class="md-content__button md-icon">
2218
+ <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>
2219
+ </a>
2220
+
2221
+
2222
+ <h1 id="2020-year-end-report">2020 Year End Report<a class="headerlink" href="#2020-year-end-report" title="Permanent link">&para;</a></h1>
2223
+ <p>Welcome to our first year in review report for PnPjs. This year has marked usage milestones, seen more contributors than ever, and expanded the core maintainers team. But none of this would be possible without everyones support and participation - so we start by saying Thank You! We deeply appreciate everyone that has used, helped us grow, and improved the library over the last year.</p>
2224
+ <p>This year we introduced MSAL clients for node and browser, improved our testing/local development plumbing, and updated the libraries to work with the node 15 module resolution rules.</p>
2225
+ <p>We fixed 43 reported bugs, answered 131 questions, and made 55 suggested enhancements to the library - all driven by feedback from users and the community.</p>
2226
+ <p>Planned for release in January 2021 we also undertook the work to enable isolated runtimes, a long requested feature. This allows you to operate on multiple independently configured "roots" such as "sp" or "graph" from the same application. Previously the library was configured globally, so this opens new possibilities for both client and server side scenarios.</p>
2227
+ <p>Finally we made many tooling and project improvements such as moving to GitHub actions, updating the tests to use MSAL, and exploring ways to enhance the developer experience.</p>
2228
+ <h2 id="usage">Usage<a class="headerlink" href="#usage" title="Permanent link">&para;</a></h2>
2229
+ <p>In 2020 we tracked steady month/month growth in raw usage measured by requests as well as in the number of tenants deploying the library. Starting the year we were used in 14605 tenants and by December that number grew to 21,227.</p>
2230
+ <p>These tenants generated 6.1 billion requests to the service in January growing to 9.2 billion by December, peaking at 10.1 billion requests in November.</p>
2231
+ <p><img alt="Graph showing requests and tenants/month for @pnp/sp" src="../../img/usage-2020-eoy.png" /></p>
2232
+ <blockquote>
2233
+ <p>1) There was a data glitch in October so the numbers do not fully represent usage. 2) These numbers only include public cloud SPO usage, true usage is higher than we can track due to on-premesis and gov/sovereign clouds</p>
2234
+ </blockquote>
2235
+ <h2 id="releases">Releases<a class="headerlink" href="#releases" title="Permanent link">&para;</a></h2>
2236
+ <p>We continued our monthly release cadence as it represents a good pace for addressing issues while not expecting folks to update too often and keeping each update to a reasonable size. All changes can be tracked in our <a href="https://github.com/pnp/pnpjs/blob/version-2/CHANGELOG.md">change log</a>, updated with each release. You can check our scheduled releases through <a href="https://github.com/pnp/pnpjs/milestones">project milestones</a>, understanding there are occasionally delays. Monthly releases allows us to ensure bugs do not linger and we continually improve and expand the capabilities of the libraries.</p>
2237
+ <h3 id="npm-package-download-statistics-pnpsp">NPM Package download statistics (@pnp/sp):<a class="headerlink" href="#npm-package-download-statistics-pnpsp" title="Permanent link">&para;</a></h3>
2238
+ <table>
2239
+ <thead>
2240
+ <tr>
2241
+ <th>Month</th>
2242
+ <th>Count</th>
2243
+ <th>*</th>
2244
+ <th>Month</th>
2245
+ <th>Count</th>
2246
+ </tr>
2247
+ </thead>
2248
+ <tbody>
2249
+ <tr>
2250
+ <td>January</td>
2251
+ <td>100,686</td>
2252
+ <td>*</td>
2253
+ <td>July</td>
2254
+ <td>36,805</td>
2255
+ </tr>
2256
+ <tr>
2257
+ <td>February</td>
2258
+ <td>34,437</td>
2259
+ <td>*</td>
2260
+ <td>August</td>
2261
+ <td>38,897</td>
2262
+ </tr>
2263
+ <tr>
2264
+ <td>March</td>
2265
+ <td>34,574</td>
2266
+ <td>*</td>
2267
+ <td>September</td>
2268
+ <td>45,968</td>
2269
+ </tr>
2270
+ <tr>
2271
+ <td>April</td>
2272
+ <td>32,436</td>
2273
+ <td>*</td>
2274
+ <td>October</td>
2275
+ <td>46,655</td>
2276
+ </tr>
2277
+ <tr>
2278
+ <td>May</td>
2279
+ <td>34,482</td>
2280
+ <td>*</td>
2281
+ <td>November</td>
2282
+ <td>45,511</td>
2283
+ </tr>
2284
+ <tr>
2285
+ <td>June</td>
2286
+ <td>34,408</td>
2287
+ <td>*</td>
2288
+ <td>December</td>
2289
+ <td>58,977</td>
2290
+ </tr>
2291
+ <tr>
2292
+ <td></td>
2293
+ <td></td>
2294
+ <td></td>
2295
+ <td></td>
2296
+ <td></td>
2297
+ </tr>
2298
+ <tr>
2299
+ <td></td>
2300
+ <td></td>
2301
+ <td></td>
2302
+ <td>Grand Total</td>
2303
+ <td>543,836</td>
2304
+ </tr>
2305
+ </tbody>
2306
+ </table>
2307
+ <p>With 2020 our total all time downloads of @pnp/sp is now at: 949,638</p>
2308
+ <blockquote>
2309
+ <p>Stats from https://npm-stat.com/</p>
2310
+ </blockquote>
2311
+ <h2 id="future-plans">Future Plans<a class="headerlink" href="#future-plans" title="Permanent link">&para;</a></h2>
2312
+ <p>Looking to the future we will continue to actively grow and improve v2 of the library, guided by feedback and reported issues. Additionally, we are beginning to discuss v3 and doing initial planning and prototyping. The v3 work will continue through 2021 with no currently set release date, though we will keep everyone up to date.</p>
2313
+ <p>Additionally in 2021 there will be a general focus on improving not just the code but our tooling, build pipeline, and library contributor experience. We will also look at automatic canary releases with each merge, and other improvements.</p>
2314
+ <h2 id="new-lead-maintainer">New Lead Maintainer<a class="headerlink" href="#new-lead-maintainer" title="Permanent link">&para;</a></h2>
2315
+ <p>With the close of 2020 we are very excited to announce a new lead maintainer for PnPjs, <a href="https://github.com/juliemturner">Julie Turner</a>! Julie brings deep expertise with SharePoint Framework, TypeScript, and SharePoint development to the team, coupled with dedication and care in the work.</p>
2316
+ <p>Over the last year she has gotten more involved with handling releases, responding to issues, and helping to keep the code updated and clean.</p>
2317
+ <p>We are very lucky to have her working on the project and look forward to seeing her lead the growth and direction for years to come.</p>
2318
+ <h2 id="contributors">Contributors<a class="headerlink" href="#contributors" title="Permanent link">&para;</a></h2>
2319
+ <p>As always we have abundant thanks and appreciation for your contributors. Taking your time to help improve PnPjs for the community is massive and valuable to ensure our sustainability. Thank you for all your help in 2020! If you are interested in becoming a contributor <a href="../../contributing/">check out our guide</a> on ways to get started.</p>
2320
+ <p><a href="https://github.com/AJIXuMuK" style="margin:10px" title=AJIXuMuK>
2321
+ <img src="https://avatars3.githubusercontent.com/u/17036219?v=4" alt="AJIXuMuK" width="50" height="50" />
2322
+ </a><a href="https://github.com/Ashikpaul" style="margin:10px" title=Ashikpaul>
2323
+ <img src="https://avatars2.githubusercontent.com/u/17526871?v=4" alt="Ashikpaul" width="50" height="50" />
2324
+ </a><a href="https://github.com/cesarhoeflich" style="margin:10px" title=cesarhoeflich>
2325
+ <img src="https://avatars0.githubusercontent.com/u/6339165?v=4" alt="cesarhoeflich" width="50" height="50" />
2326
+ </a><a href="https://github.com/dcashpeterson" style="margin:10px" title=dcashpeterson>
2327
+ <img src="https://avatars2.githubusercontent.com/u/45491456?v=4" alt="dcashpeterson" width="50" height="50" />
2328
+ </a><a href="https://github.com/apps/dependabot" style="margin:10px" title=dependabot[bot]>
2329
+ <img src="https://avatars0.githubusercontent.com/in/29110?v=4" alt="dependabot[bot]" width="50" height="50" />
2330
+ </a><a href="https://github.com/derhallim" style="margin:10px" title=derhallim>
2331
+ <img src="https://avatars1.githubusercontent.com/u/7239963?v=4" alt="derhallim" width="50" height="50" />
2332
+ </a><a href="https://github.com/DRamalho92" style="margin:10px" title=DRamalho92>
2333
+ <img src="https://avatars1.githubusercontent.com/u/40799678?v=4" alt="DRamalho92" width="50" height="50" />
2334
+ </a><a href="https://github.com/f1nzer" style="margin:10px" title=f1nzer>
2335
+ <img src="https://avatars3.githubusercontent.com/u/1970236?v=4" alt="f1nzer" width="50" height="50" />
2336
+ </a><a href="https://github.com/Harshagracy" style="margin:10px" title=Harshagracy>
2337
+ <img src="https://avatars3.githubusercontent.com/u/14230498?v=4" alt="Harshagracy" width="50" height="50" />
2338
+ </a><a href="https://github.com/holylander" style="margin:10px" title=holylander>
2339
+ <img src="https://avatars1.githubusercontent.com/u/2032683?v=4" alt="holylander" width="50" height="50" />
2340
+ </a><a href="https://github.com/hugoabernier" style="margin:10px" title=hugoabernier>
2341
+ <img src="https://avatars2.githubusercontent.com/u/13972467?v=4" alt="hugoabernier" width="50" height="50" />
2342
+ </a><a href="https://github.com/JakeStanger" style="margin:10px" title=JakeStanger>
2343
+ <img src="https://avatars0.githubusercontent.com/u/5057870?v=4" alt="JakeStanger" width="50" height="50" />
2344
+ </a><a href="https://github.com/jaywellings" style="margin:10px" title=jaywellings>
2345
+ <img src="https://avatars2.githubusercontent.com/u/1410735?v=4" alt="jaywellings" width="50" height="50" />
2346
+ </a><a href="https://github.com/JMTeamway" style="margin:10px" title=JMTeamway>
2347
+ <img src="https://avatars2.githubusercontent.com/u/42567407?v=4" alt="JMTeamway" width="50" height="50" />
2348
+ </a><a href="https://github.com/joelfmrodrigues" style="margin:10px" title=joelfmrodrigues>
2349
+ <img src="https://avatars3.githubusercontent.com/u/19577724?v=4" alt="joelfmrodrigues" width="50" height="50" />
2350
+ </a><a href="https://github.com/juliemturner" style="margin:10px" title=juliemturner>
2351
+ <img src="https://avatars0.githubusercontent.com/u/7570936?v=4" alt="juliemturner" width="50" height="50" />
2352
+ </a><a href="https://github.com/jusper-dk" style="margin:10px" title=jusper-dk>
2353
+ <img src="https://avatars0.githubusercontent.com/u/27721442?v=4" alt="jusper-dk" width="50" height="50" />
2354
+ </a><a href="https://github.com/KEMiCZA" style="margin:10px" title=KEMiCZA>
2355
+ <img src="https://avatars2.githubusercontent.com/u/3862716?v=4" alt="KEMiCZA" width="50" height="50" />
2356
+ </a><a href="https://github.com/koltyakov" style="margin:10px" title=koltyakov>
2357
+ <img src="https://avatars2.githubusercontent.com/u/7816483?v=4" alt="koltyakov" width="50" height="50" />
2358
+ </a><a href="https://github.com/kunj-sangani" style="margin:10px" title=kunj-sangani>
2359
+ <img src="https://avatars3.githubusercontent.com/u/25693207?v=4" alt="kunj-sangani" width="50" height="50" />
2360
+ </a><a href="https://github.com/MarkyDeParky" style="margin:10px" title=MarkyDeParky>
2361
+ <img src="https://avatars1.githubusercontent.com/u/16799069?v=4" alt="MarkyDeParky" width="50" height="50" />
2362
+ </a><a href="https://github.com/mikezimm" style="margin:10px" title=mikezimm>
2363
+ <img src="https://avatars1.githubusercontent.com/u/49648086?v=4" alt="mikezimm" width="50" height="50" />
2364
+ </a><a href="https://github.com/mrebuffet" style="margin:10px" title=mrebuffet>
2365
+ <img src="https://avatars0.githubusercontent.com/u/3445077?v=4" alt="mrebuffet" width="50" height="50" />
2366
+ </a><a href="https://github.com/naugtur" style="margin:10px" title=naugtur>
2367
+ <img src="https://avatars1.githubusercontent.com/u/509375?v=4" alt="naugtur" width="50" height="50" />
2368
+ </a><a href="https://github.com/NZainchkovskiy" style="margin:10px" title=NZainchkovskiy>
2369
+ <img src="https://avatars0.githubusercontent.com/u/19357901?v=4" alt="NZainchkovskiy" width="50" height="50" />
2370
+ </a><a href="https://github.com/PaoloPia" style="margin:10px" title=PaoloPia>
2371
+ <img src="https://avatars2.githubusercontent.com/u/7582026?v=4" alt="PaoloPia" width="50" height="50" />
2372
+ </a><a href="https://github.com/patrick-rodgers" style="margin:10px" title=patrick-rodgers>
2373
+ <img src="https://avatars3.githubusercontent.com/u/13154702?v=4" alt="patrick-rodgers" width="50" height="50" />
2374
+ </a><a href="https://github.com/ravichandran-blog" style="margin:10px" title=ravichandran-blog>
2375
+ <img src="https://avatars2.githubusercontent.com/u/21125180?v=4" alt="ravichandran-blog" width="50" height="50" />
2376
+ </a><a href="https://github.com/RoelVB" style="margin:10px" title=RoelVB>
2377
+ <img src="https://avatars3.githubusercontent.com/u/10999128?v=4" alt="RoelVB" width="50" height="50" />
2378
+ </a><a href="https://github.com/siddharth-vaghasia" style="margin:10px" title=siddharth-vaghasia>
2379
+ <img src="https://avatars0.githubusercontent.com/u/9557557?v=4" alt="siddharth-vaghasia" width="50" height="50" />
2380
+ </a><a href="https://github.com/simonagren" style="margin:10px" title=simonagren>
2381
+ <img src="https://avatars0.githubusercontent.com/u/16558321?v=4" alt="simonagren" width="50" height="50" />
2382
+ </a><a href="https://github.com/tavikukko" style="margin:10px" title=tavikukko>
2383
+ <img src="https://avatars0.githubusercontent.com/u/2223355?v=4" alt="tavikukko" width="50" height="50" />
2384
+ </a><a href="https://github.com/ValerasNarbutas" style="margin:10px" title=ValerasNarbutas>
2385
+ <img src="https://avatars0.githubusercontent.com/u/16476453?v=4" alt="ValerasNarbutas" width="50" height="50" />
2386
+ </a></p>
2387
+ <h2 id="sponsors">Sponsors<a class="headerlink" href="#sponsors" title="Permanent link">&para;</a></h2>
2388
+ <p>We want to thank our sponsors for their support in 2020! This year we put the money towards helping offset the cost and shipping of hoodies to contributors and sponsors. Your continued generosity makes a big difference in our ability to recognize and reward the folks building PnPjs.</p>
2389
+ <p><strong>Thank You</strong></p>
2390
+ <p><a href="https://github.com/KEMiCZA" style="margin:20px" title="KEMiCZA">
2391
+ <img src="https://avatars0.githubusercontent.com/u/3862716?v=4" alt="KEMiCZA" width="100" height="100" />
2392
+ </a><a href="https://github.com/Sympraxis-Consulting" style="margin:20px" title="Sympraxis Consulting">
2393
+ <img src="https://avatars3.githubusercontent.com/u/19271832?v=4" alt="Sympraxis Consulting" width="100" height="100" />
2394
+ </a><a href="https://github.com/thechriskent" style="margin:20px" title="thechriskent">
2395
+ <img src="https://avatars0.githubusercontent.com/u/8364109?v=4" alt="thechriskent" width="100" height="100" />
2396
+ </a><a href="https://github.com/erwinvanhunen" style="margin:20px" title="erwinvanhunen">
2397
+ <img src="https://avatars0.githubusercontent.com/u/7666381?v=4" alt="erwinvanhunen" width="100" height="100" />
2398
+ </a><a href="https://github.com/PopWarner" style="margin:20px" title="PopWarner">
2399
+ <img src="https://avatars0.githubusercontent.com/u/10676147?v=4" alt="PopWarner" width="100" height="100" />
2400
+ </a><a href="https://github.com/VesaJuvonen" style="margin:20px" title="VesaJuvonen">
2401
+ <img src="https://avatars0.githubusercontent.com/u/7446437?v=4" alt="VesaJuvonen" width="100" height="100" />
2402
+ </a><a href="https://github.com/LauraKokkarinen" style="margin:20px" title="LauraKokkarinen">
2403
+ <img src="https://avatars0.githubusercontent.com/u/41330990?v=4" alt="LauraKokkarinen" width="100" height="100" />
2404
+ </a><a href="https://github.com/ricardocarneiro" style="margin:20px" title="ricardocarneiro">
2405
+ <img src="https://avatars0.githubusercontent.com/u/4666947?v=4" alt="ricardocarneiro" width="100" height="100" />
2406
+ </a><a href="https://github.com/andrewconnell" style="margin:20px" title="andrewconnell">
2407
+ <img src="https://avatars0.githubusercontent.com/u/2068657?v=4" alt="andrewconnell" width="100" height="100" />
2408
+ </a></p>
2409
+ <h2 id="closing">Closing<a class="headerlink" href="#closing" title="Permanent link">&para;</a></h2>
2410
+ <p>In closing we want say <em>Thank You</em> to everyone who uses, contributes to, and participates in PnPjs and the SharePoint Patterns and Practices program.</p>
2411
+ <p>Wishing you the very best for 2021,</p>
2412
+ <p>The PnPjs Team</p>
2413
+
2414
+
2415
+
2416
+
2417
+
2418
+
2419
+
2420
+ </article>
2421
+ </div>
2422
+ </div>
2423
+ </main>
2424
+
2425
+
2426
+ <footer class="md-footer">
2427
+
2428
+ <div class="md-footer-nav">
2429
+ <nav class="md-footer-nav__inner md-grid" aria-label="Footer">
2430
+
2431
+ <a href="../../getting-started/" class="md-footer-nav__link md-footer-nav__link--prev" rel="prev">
2432
+ <div class="md-footer-nav__button md-icon">
2433
+ <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>
2434
+ </div>
2435
+ <div class="md-footer-nav__title">
2436
+ <div class="md-ellipsis">
2437
+ <span class="md-footer-nav__direction">
2438
+ Previous
2439
+ </span>
2440
+ Getting Started
2441
+ </div>
2442
+ </div>
2443
+ </a>
2444
+
2445
+
2446
+ <a href="../../getting-started/" class="md-footer-nav__link md-footer-nav__link--next" rel="next">
2447
+ <div class="md-footer-nav__title">
2448
+ <div class="md-ellipsis">
2449
+ <span class="md-footer-nav__direction">
2450
+ Next
2451
+ </span>
2452
+ Getting Started
2453
+ </div>
2454
+ </div>
2455
+ <div class="md-footer-nav__button md-icon">
2456
+ <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>
2457
+ </div>
2458
+ </a>
2459
+
2460
+ </nav>
2461
+ </div>
2462
+
2463
+ <div class="md-footer-meta md-typeset">
2464
+ <div class="md-footer-meta__inner md-grid">
2465
+ <div class="md-footer-copyright">
2466
+
2467
+ Made with
2468
+ <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
2469
+ Material for MkDocs
2470
+ </a>
2471
+ </div>
2472
+
2473
+ <div class="md-footer-social">
2474
+
2475
+
2476
+
2477
+
2478
+
2479
+
2480
+ <a href="https://twitter.com/m365pnpjs" target="_blank" rel="noopener" title="twitter.com" class="md-footer-social__link">
2481
+ <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>
2482
+ </a>
2483
+
2484
+
2485
+
2486
+
2487
+
2488
+
2489
+ <a href="http://aka.ms/sppnp-videos" target="_blank" rel="noopener" title="aka.ms" class="md-footer-social__link">
2490
+ <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>
2491
+ </a>
2492
+
2493
+
2494
+
2495
+
2496
+
2497
+
2498
+ <a href="https://aka.ms/sppnp" target="_blank" rel="noopener" title="aka.ms" class="md-footer-social__link">
2499
+ <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>
2500
+ </a>
2501
+
2502
+ </div>
2503
+
2504
+ </div>
2505
+ </div>
2506
+ </footer>
2507
+
2508
+ </div>
2509
+
2510
+ <script src="../../assets/javascripts/vendor.77e55a48.min.js"></script>
2511
+ <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>
2512
+
2513
+ <script>
2514
+ app = initialize({
2515
+ base: "../..",
2516
+ features: [],
2517
+ search: Object.assign({
2518
+ worker: "../../assets/javascripts/worker/search.4ac00218.min.js"
2519
+ }, typeof search !== "undefined" && search)
2520
+ })
2521
+ </script>
2522
+
2523
+
2524
+ </body>
2525
+ </html>