├── .gitignore ├── README.md ├── app ├── @microsoft │ ├── microsoft-graph-client │ │ ├── Client.d.ts │ │ ├── Constants.d.ts │ │ ├── CustomAuthenticationProvider.d.ts │ │ ├── GraphError.d.ts │ │ ├── GraphErrorHandler.d.ts │ │ ├── GraphRequest.d.ts │ │ ├── GraphRequestUtil.d.ts │ │ ├── GraphResponseHandler.d.ts │ │ ├── HTTPClient.d.ts │ │ ├── HTTPClientFactory.d.ts │ │ ├── IAuthProvider.d.ts │ │ ├── IAuthProviderCallback.d.ts │ │ ├── IAuthenticationProvider.d.ts │ │ ├── IAuthenticationProviderOptions.d.ts │ │ ├── IClientOptions.d.ts │ │ ├── IContext.d.ts │ │ ├── IFetchOptions.d.ts │ │ ├── IGraphRequestCallback.d.ts │ │ ├── IOptions.d.ts │ │ ├── ImplicitMSALAuthenticationProvider.d.ts │ │ ├── MSALAuthenticationProviderOptions.d.ts │ │ ├── Range.d.ts │ │ ├── RequestMethod.d.ts │ │ ├── ResponseType.d.ts │ │ ├── ValidatePolyFilling.d.ts │ │ ├── Version.d.ts │ │ ├── browser │ │ │ ├── ImplicitMSALAuthenticationProvider.d.ts │ │ │ └── index.d.ts │ │ ├── content │ │ │ ├── BatchRequestContent.d.ts │ │ │ └── BatchResponseContent.d.ts │ │ ├── index.d.ts │ │ ├── middleware │ │ │ ├── AuthenticationHandler.d.ts │ │ │ ├── ChaosHandler.d.ts │ │ │ ├── HTTPMessageHandler.d.ts │ │ │ ├── IMiddleware.d.ts │ │ │ ├── MiddlewareControl.d.ts │ │ │ ├── MiddlewareFactory.d.ts │ │ │ ├── MiddlewareUtil.d.ts │ │ │ ├── RedirectHandler.d.ts │ │ │ ├── RetryHandler.d.ts │ │ │ ├── TelemetryHandler.d.ts │ │ │ └── options │ │ │ │ ├── AuthenticationHandlerOptions.d.ts │ │ │ │ ├── ChaosHandlerData.d.ts │ │ │ │ ├── ChaosHandlerOptions.d.ts │ │ │ │ ├── ChaosStrategy.d.ts │ │ │ │ ├── IMiddlewareOptions.d.ts │ │ │ │ ├── RedirectHandlerOptions.d.ts │ │ │ │ ├── RetryHandlerOptions.d.ts │ │ │ │ └── TelemetryHandlerOptions.d.ts │ │ ├── src │ │ │ ├── Client.d.ts │ │ │ ├── Constants.d.ts │ │ │ ├── CustomAuthenticationProvider.d.ts │ │ │ ├── GraphClientError.d.ts │ │ │ ├── GraphError.d.ts │ │ │ ├── GraphErrorHandler.d.ts │ │ │ ├── GraphRequest.d.ts │ │ │ ├── GraphRequestUtil.d.ts │ │ │ ├── GraphResponseHandler.d.ts │ │ │ ├── HTTPClient.d.ts │ │ │ ├── HTTPClientFactory.d.ts │ │ │ ├── IAuthProvider.d.ts │ │ │ ├── IAuthProviderCallback.d.ts │ │ │ ├── IAuthenticationProvider.d.ts │ │ │ ├── IAuthenticationProviderOptions.d.ts │ │ │ ├── IClientOptions.d.ts │ │ │ ├── IContext.d.ts │ │ │ ├── IFetchOptions.d.ts │ │ │ ├── IGraphRequestCallback.d.ts │ │ │ ├── IOptions.d.ts │ │ │ ├── RequestMethod.d.ts │ │ │ ├── ResponseType.d.ts │ │ │ ├── ValidatePolyFilling.d.ts │ │ │ ├── Version.d.ts │ │ │ ├── authentication │ │ │ │ ├── azureTokenCredentials │ │ │ │ │ ├── ITokenCredentialAuthenticationProviderOptions.d.ts │ │ │ │ │ └── TokenCredentialAuthenticationProvider.d.ts │ │ │ │ ├── msal-browser │ │ │ │ │ └── AuthCodeMSALBrowserAuthenticationProvider.d.ts │ │ │ │ └── msalOptions │ │ │ │ │ └── MSALAuthenticationProviderOptions.d.ts │ │ │ ├── browser │ │ │ │ └── index.d.ts │ │ │ ├── content │ │ │ │ ├── BatchRequestContent.d.ts │ │ │ │ └── BatchResponseContent.d.ts │ │ │ ├── index.d.ts │ │ │ ├── middleware │ │ │ │ ├── AuthenticationHandler.d.ts │ │ │ │ ├── ChaosHandler.d.ts │ │ │ │ ├── HTTPMessageHandler.d.ts │ │ │ │ ├── IMiddleware.d.ts │ │ │ │ ├── MiddlewareControl.d.ts │ │ │ │ ├── MiddlewareFactory.d.ts │ │ │ │ ├── MiddlewareUtil.d.ts │ │ │ │ ├── RedirectHandler.d.ts │ │ │ │ ├── RetryHandler.d.ts │ │ │ │ ├── TelemetryHandler.d.ts │ │ │ │ └── options │ │ │ │ │ ├── AuthenticationHandlerOptions.d.ts │ │ │ │ │ ├── ChaosHandlerData.d.ts │ │ │ │ │ ├── ChaosHandlerOptions.d.ts │ │ │ │ │ ├── ChaosStrategy.d.ts │ │ │ │ │ ├── IMiddlewareOptions.d.ts │ │ │ │ │ ├── RedirectHandlerOptions.d.ts │ │ │ │ │ ├── RetryHandlerOptions.d.ts │ │ │ │ │ └── TelemetryHandlerOptions.d.ts │ │ │ └── tasks │ │ │ │ ├── FileUploadTask │ │ │ │ ├── FileObjectClasses │ │ │ │ │ ├── FileUpload.d.ts │ │ │ │ │ └── StreamUpload.d.ts │ │ │ │ ├── Interfaces │ │ │ │ │ └── IUploadEventHandlers.d.ts │ │ │ │ ├── Range.d.ts │ │ │ │ └── UploadResult.d.ts │ │ │ │ ├── LargeFileUploadTask.d.ts │ │ │ │ ├── OneDriveLargeFileUploadTask.d.ts │ │ │ │ ├── OneDriveLargeFileUploadTaskUtil.d.ts │ │ │ │ └── PageIterator.d.ts │ │ └── tasks │ │ │ ├── LargeFileUploadTask.d.ts │ │ │ ├── OneDriveLargeFileUploadTask.d.ts │ │ │ ├── OneDriveLargeFileUploadTaskUtil.d.ts │ │ │ └── PageIterator.d.ts │ ├── microsoft-graph-types.d.ts │ └── microsoft-graph-types │ │ └── microsoft-graph.d.ts ├── @pnp │ ├── adaljsclient.d.ts │ ├── adaljsclient │ │ └── index.d.ts │ ├── common.d.ts │ ├── common │ │ ├── collections.d.ts │ │ ├── index.d.ts │ │ ├── libconfig.d.ts │ │ ├── net.d.ts │ │ ├── safe-global.d.ts │ │ ├── spfxContextInterface.d.ts │ │ ├── storage.d.ts │ │ └── util.d.ts │ ├── config-store.d.ts │ ├── config-store │ │ ├── configuration.d.ts │ │ ├── index.d.ts │ │ └── providers │ │ │ ├── cachingConfigurationProvider.d.ts │ │ │ ├── index.d.ts │ │ │ └── spListConfigurationProvider.d.ts │ ├── graph.d.ts │ ├── graph │ │ ├── attachments │ │ │ ├── conversations.d.ts │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── batch.d.ts │ │ ├── calendars │ │ │ ├── funcs.d.ts │ │ │ ├── groups.d.ts │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── cloud-communications │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── contacts │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── conversations │ │ │ ├── groups.d.ts │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── decorators.d.ts │ │ ├── directory-objects │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── graphhttpclient.d.ts │ │ ├── graphlibconfig.d.ts │ │ ├── graphqueryable.d.ts │ │ ├── groups │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── index.d.ts │ │ ├── insights │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── invitations │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── members │ │ │ ├── groups.d.ts │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── messages │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── onedrive │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── onenote │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── operations.d.ts │ │ ├── outlook │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── photos │ │ │ ├── groups.d.ts │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── planner │ │ │ ├── groups.d.ts │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── presets │ │ │ └── all.d.ts │ │ ├── rest.d.ts │ │ ├── search │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── sites │ │ │ ├── group.d.ts │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── subscriptions │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ ├── teams │ │ │ ├── index.d.ts │ │ │ ├── types.d.ts │ │ │ └── users.d.ts │ │ ├── types.d.ts │ │ ├── users │ │ │ ├── index.d.ts │ │ │ └── types.d.ts │ │ └── utils │ │ │ ├── toabsoluteurl.d.ts │ │ │ └── type.d.ts │ ├── logging.d.ts │ ├── logging │ │ ├── index.d.ts │ │ ├── listeners.d.ts │ │ └── logger.d.ts │ ├── odata.d.ts │ ├── odata │ │ ├── add-prop.d.ts │ │ ├── batch.d.ts │ │ ├── caching.d.ts │ │ ├── debug.d.ts │ │ ├── index.d.ts │ │ ├── invokable-binder.d.ts │ │ ├── invokable-extensions.d.ts │ │ ├── parsers.d.ts │ │ ├── pipeline-binder.d.ts │ │ ├── pipeline.d.ts │ │ ├── queryable.d.ts │ │ └── request-builders.d.ts │ ├── pnpjs.d.ts │ ├── pnpjs │ │ ├── graph-ns.d.ts │ │ ├── index.d.ts │ │ ├── pnplibconfig.d.ts │ │ └── sp-ns.d.ts │ ├── sp-addinhelpers.d.ts │ ├── sp-addinhelpers │ │ ├── index.d.ts │ │ ├── sprequestexecutorclient.d.ts │ │ └── sprestaddin.d.ts │ ├── sp-clientsvc.d.ts │ ├── sp-clientsvc │ │ ├── batch.d.ts │ │ ├── clientsvc.d.ts │ │ ├── clintsvcqueryable.d.ts │ │ ├── objectpath.d.ts │ │ ├── opactionbuilders.d.ts │ │ ├── opbuilders.d.ts │ │ ├── parsers.d.ts │ │ ├── types.d.ts │ │ └── utils.d.ts │ ├── sp-taxonomy.d.ts │ ├── sp-taxonomy │ │ ├── labels.d.ts │ │ ├── session.d.ts │ │ ├── taxonomy.d.ts │ │ ├── termgroup.d.ts │ │ ├── terms.d.ts │ │ ├── termsets.d.ts │ │ ├── termstores.d.ts │ │ ├── types.d.ts │ │ └── utilities.d.ts │ ├── sp.d.ts │ └── sp │ │ ├── appcatalog │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── attachments │ │ ├── index.d.ts │ │ ├── item.d.ts │ │ └── types.d.ts │ │ ├── batch.d.ts │ │ ├── clientside-pages │ │ ├── funcs.d.ts │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── column-defaults │ │ ├── folder.d.ts │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ └── types.d.ts │ │ ├── comments │ │ ├── clientside-page.d.ts │ │ ├── index.d.ts │ │ ├── item.d.ts │ │ └── types.d.ts │ │ ├── content-types │ │ ├── index.d.ts │ │ ├── item.d.ts │ │ ├── list.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── decorators.d.ts │ │ ├── features │ │ ├── index.d.ts │ │ ├── site.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── fields │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── files │ │ ├── folder.d.ts │ │ ├── index.d.ts │ │ ├── item.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── folders │ │ ├── index.d.ts │ │ ├── item.d.ts │ │ ├── list.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── forms │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ └── types.d.ts │ │ ├── hubsites │ │ ├── index.d.ts │ │ ├── site.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── index.d.ts │ │ ├── items │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ └── types.d.ts │ │ ├── lists │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── navigation │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── odata.d.ts │ │ ├── operations.d.ts │ │ ├── presets │ │ ├── all.d.ts │ │ └── core.d.ts │ │ ├── profiles │ │ ├── index.d.ts │ │ └── types.d.ts │ │ ├── regional-settings │ │ ├── content-type.d.ts │ │ ├── field.d.ts │ │ ├── funcs.d.ts │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ ├── types.d.ts │ │ ├── user-custom-actions.d.ts │ │ └── web.d.ts │ │ ├── related-items │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── rest.d.ts │ │ ├── search │ │ ├── index.d.ts │ │ ├── query.d.ts │ │ ├── suggest.d.ts │ │ └── types.d.ts │ │ ├── security │ │ ├── funcs.d.ts │ │ ├── index.d.ts │ │ ├── item.d.ts │ │ ├── list.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── sharepointqueryable.d.ts │ │ ├── sharing │ │ ├── file.d.ts │ │ ├── folder.d.ts │ │ ├── funcs.d.ts │ │ ├── index.d.ts │ │ ├── item.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── site-designs │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── site-groups │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── site-scripts │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── site-users │ │ ├── index.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── sites │ │ ├── index.d.ts │ │ └── types.d.ts │ │ ├── social │ │ ├── index.d.ts │ │ └── types.d.ts │ │ ├── sphttpclient.d.ts │ │ ├── splibconfig.d.ts │ │ ├── sputilities │ │ ├── index.d.ts │ │ └── types.d.ts │ │ ├── subscriptions │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ └── types.d.ts │ │ ├── taxonomy │ │ ├── index.d.ts │ │ └── types.d.ts │ │ ├── telemetry.d.ts │ │ ├── types.d.ts │ │ ├── user-custom-actions │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ ├── site.d.ts │ │ ├── types.d.ts │ │ └── web.d.ts │ │ ├── utils │ │ ├── escapeQueryStrValue.d.ts │ │ ├── extractweburl.d.ts │ │ ├── file-names.d.ts │ │ ├── metadata.d.ts │ │ ├── objectToSPKeyValueCollection.d.ts │ │ ├── toResourcePath.d.ts │ │ └── toabsoluteurl.d.ts │ │ ├── views │ │ ├── index.d.ts │ │ ├── list.d.ts │ │ └── types.d.ts │ │ ├── webparts │ │ ├── file.d.ts │ │ ├── index.d.ts │ │ └── types.d.ts │ │ └── webs │ │ ├── index.d.ts │ │ └── types.d.ts ├── background.js ├── content.js ├── css │ ├── alertify.css │ ├── awesome.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── font-awesome-animations.css │ ├── pageeditor.css │ ├── popup.css │ └── simple-sidebar.css ├── event.js ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ └── MSSignInButton.svg ├── js │ ├── adaljsclient.es5.umd.bundle.js │ ├── alertify.js │ ├── bootstrap.min.js │ ├── common.es5.umd.bundle.js │ ├── config-store.es5.umd.bundle.js │ ├── getContext.js │ ├── graph-sdk.es5.umd.bundle.js │ ├── graph.es5.umd.bundle.js │ ├── jquery-1.11.0.js │ ├── jszip.min.js │ ├── logging.es5.umd.bundle.js │ ├── msal.js │ ├── msal2.js │ ├── odata.es5.umd.bundle.js │ ├── pnpjs.es5.umd.bundle.js │ ├── riot.js │ ├── sp-addinhelpers.es5.umd.bundle.js │ ├── sp-clientsvc.es5.umd.bundle.js │ ├── sp-taxonomy.es5.umd.bundle.js │ ├── sp.es5.umd.bundle.js │ └── system.js ├── monaco-editor │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ThirdPartyNotices.txt │ ├── min-maps │ │ └── vs │ │ │ ├── base │ │ │ └── worker │ │ │ │ └── workerMain.js.map │ │ │ ├── editor │ │ │ ├── editor.main.js.map │ │ │ ├── editor.main.nls.de.js.map │ │ │ ├── editor.main.nls.es.js.map │ │ │ ├── editor.main.nls.fr.js.map │ │ │ ├── editor.main.nls.it.js.map │ │ │ ├── editor.main.nls.ja.js.map │ │ │ ├── editor.main.nls.js.map │ │ │ ├── editor.main.nls.ko.js.map │ │ │ ├── editor.main.nls.ru.js.map │ │ │ ├── editor.main.nls.zh-cn.js.map │ │ │ └── editor.main.nls.zh-tw.js.map │ │ │ └── loader.js.map │ ├── min │ │ └── vs │ │ │ ├── base │ │ │ ├── browser │ │ │ │ └── ui │ │ │ │ │ └── codicons │ │ │ │ │ └── codicon │ │ │ │ │ └── codicon.ttf │ │ │ └── worker │ │ │ │ └── workerMain.js │ │ │ ├── basic-languages │ │ │ ├── abap │ │ │ │ └── abap.js │ │ │ ├── apex │ │ │ │ └── apex.js │ │ │ ├── azcli │ │ │ │ └── azcli.js │ │ │ ├── bat │ │ │ │ └── bat.js │ │ │ ├── bicep │ │ │ │ └── bicep.js │ │ │ ├── cameligo │ │ │ │ └── cameligo.js │ │ │ ├── clojure │ │ │ │ └── clojure.js │ │ │ ├── coffee │ │ │ │ └── coffee.js │ │ │ ├── cpp │ │ │ │ └── cpp.js │ │ │ ├── csharp │ │ │ │ └── csharp.js │ │ │ ├── csp │ │ │ │ └── csp.js │ │ │ ├── css │ │ │ │ └── css.js │ │ │ ├── dart │ │ │ │ └── dart.js │ │ │ ├── dockerfile │ │ │ │ └── dockerfile.js │ │ │ ├── ecl │ │ │ │ └── ecl.js │ │ │ ├── elixir │ │ │ │ └── elixir.js │ │ │ ├── flow9 │ │ │ │ └── flow9.js │ │ │ ├── fsharp │ │ │ │ └── fsharp.js │ │ │ ├── go │ │ │ │ └── go.js │ │ │ ├── graphql │ │ │ │ └── graphql.js │ │ │ ├── handlebars │ │ │ │ └── handlebars.js │ │ │ ├── hcl │ │ │ │ └── hcl.js │ │ │ ├── html │ │ │ │ └── html.js │ │ │ ├── ini │ │ │ │ └── ini.js │ │ │ ├── java │ │ │ │ └── java.js │ │ │ ├── javascript │ │ │ │ └── javascript.js │ │ │ ├── julia │ │ │ │ └── julia.js │ │ │ ├── kotlin │ │ │ │ └── kotlin.js │ │ │ ├── less │ │ │ │ └── less.js │ │ │ ├── lexon │ │ │ │ └── lexon.js │ │ │ ├── liquid │ │ │ │ └── liquid.js │ │ │ ├── lua │ │ │ │ └── lua.js │ │ │ ├── m3 │ │ │ │ └── m3.js │ │ │ ├── markdown │ │ │ │ └── markdown.js │ │ │ ├── mips │ │ │ │ └── mips.js │ │ │ ├── msdax │ │ │ │ └── msdax.js │ │ │ ├── mysql │ │ │ │ └── mysql.js │ │ │ ├── objective-c │ │ │ │ └── objective-c.js │ │ │ ├── pascal │ │ │ │ └── pascal.js │ │ │ ├── pascaligo │ │ │ │ └── pascaligo.js │ │ │ ├── perl │ │ │ │ └── perl.js │ │ │ ├── pgsql │ │ │ │ └── pgsql.js │ │ │ ├── php │ │ │ │ └── php.js │ │ │ ├── pla │ │ │ │ └── pla.js │ │ │ ├── postiats │ │ │ │ └── postiats.js │ │ │ ├── powerquery │ │ │ │ └── powerquery.js │ │ │ ├── powershell │ │ │ │ └── powershell.js │ │ │ ├── protobuf │ │ │ │ └── protobuf.js │ │ │ ├── pug │ │ │ │ └── pug.js │ │ │ ├── python │ │ │ │ └── python.js │ │ │ ├── qsharp │ │ │ │ └── qsharp.js │ │ │ ├── r │ │ │ │ └── r.js │ │ │ ├── razor │ │ │ │ └── razor.js │ │ │ ├── redis │ │ │ │ └── redis.js │ │ │ ├── redshift │ │ │ │ └── redshift.js │ │ │ ├── restructuredtext │ │ │ │ └── restructuredtext.js │ │ │ ├── ruby │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ └── rust.js │ │ │ ├── sb │ │ │ │ └── sb.js │ │ │ ├── scala │ │ │ │ └── scala.js │ │ │ ├── scheme │ │ │ │ └── scheme.js │ │ │ ├── scss │ │ │ │ └── scss.js │ │ │ ├── shell │ │ │ │ └── shell.js │ │ │ ├── solidity │ │ │ │ └── solidity.js │ │ │ ├── sophia │ │ │ │ └── sophia.js │ │ │ ├── sparql │ │ │ │ └── sparql.js │ │ │ ├── sql │ │ │ │ └── sql.js │ │ │ ├── st │ │ │ │ └── st.js │ │ │ ├── swift │ │ │ │ └── swift.js │ │ │ ├── systemverilog │ │ │ │ └── systemverilog.js │ │ │ ├── tcl │ │ │ │ └── tcl.js │ │ │ ├── twig │ │ │ │ └── twig.js │ │ │ ├── typescript │ │ │ │ └── typescript.js │ │ │ ├── vb │ │ │ │ └── vb.js │ │ │ ├── xml │ │ │ │ └── xml.js │ │ │ └── yaml │ │ │ │ └── yaml.js │ │ │ ├── editor │ │ │ ├── editor.main.css │ │ │ ├── editor.main.js │ │ │ ├── editor.main.nls.de.js │ │ │ ├── editor.main.nls.es.js │ │ │ ├── editor.main.nls.fr.js │ │ │ ├── editor.main.nls.it.js │ │ │ ├── editor.main.nls.ja.js │ │ │ ├── editor.main.nls.js │ │ │ ├── editor.main.nls.ko.js │ │ │ ├── editor.main.nls.ru.js │ │ │ ├── editor.main.nls.zh-cn.js │ │ │ └── editor.main.nls.zh-tw.js │ │ │ ├── language │ │ │ ├── css │ │ │ │ ├── cssMode.js │ │ │ │ └── cssWorker.js │ │ │ ├── html │ │ │ │ ├── htmlMode.js │ │ │ │ └── htmlWorker.js │ │ │ ├── json │ │ │ │ ├── jsonMode.js │ │ │ │ └── jsonWorker.js │ │ │ └── typescript │ │ │ │ ├── tsMode.js │ │ │ │ └── tsWorker.js │ │ │ └── loader.js │ ├── monaco.d.ts │ └── package.json ├── msal │ ├── Account.d.ts │ ├── AuthResponse.d.ts │ ├── AuthenticationParameters.d.ts │ ├── ClientInfo.d.ts │ ├── Configuration.d.ts │ ├── IUri.d.ts │ ├── IdToken.d.ts │ ├── Logger.d.ts │ ├── MsalTypes.d.ts │ ├── ScopeSet.d.ts │ ├── ServerRequestParameters.d.ts │ ├── UserAgentApplication.d.ts │ ├── XHRClient.d.ts │ ├── authority │ │ ├── Authority.d.ts │ │ ├── AuthorityFactory.d.ts │ │ ├── ITenantDiscoveryResponse.d.ts │ │ └── TrustedAuthority.d.ts │ ├── cache │ │ ├── AccessTokenCacheItem.d.ts │ │ ├── AccessTokenKey.d.ts │ │ ├── AccessTokenValue.d.ts │ │ ├── AuthCache.d.ts │ │ └── BrowserStorage.d.ts │ ├── error │ │ ├── AuthError.d.ts │ │ ├── ClientAuthError.d.ts │ │ ├── ClientConfigurationError.d.ts │ │ ├── InteractionRequiredAuthError.d.ts │ │ └── ServerError.d.ts │ ├── index.d.ts │ ├── packageMetadata.d.ts │ ├── telemetry │ │ ├── ApiEvent.d.ts │ │ ├── DefaultEvent.d.ts │ │ ├── HttpEvent.d.ts │ │ ├── TelemetryConstants.d.ts │ │ ├── TelemetryEvent.d.ts │ │ ├── TelemetryManager.d.ts │ │ ├── TelemetryTypes.d.ts │ │ └── TelemetryUtils.d.ts │ └── utils │ │ ├── AuthCacheUtils.d.ts │ │ ├── Constants.d.ts │ │ ├── CryptoUtils.d.ts │ │ ├── RequestUtils.d.ts │ │ ├── ResponseUtils.d.ts │ │ ├── StringUtils.d.ts │ │ ├── TimeUtils.d.ts │ │ ├── TokenUtils.d.ts │ │ ├── UrlUtils.d.ts │ │ └── WindowUtils.d.ts ├── panel.html ├── panel.js ├── panelspqueries.js ├── popup.html ├── popup.js ├── snippets.js └── tags │ ├── about.js │ ├── appcatalog.js │ ├── fileeditor.js │ ├── files.js │ ├── graphman.js │ ├── graphsdkconsole.js │ ├── listproperties.js │ ├── modernproperties.js │ ├── pageeditor.js │ ├── pnpjsconsole.js │ ├── save.js │ ├── scriptlinks.js │ ├── search.js │ ├── sidebar.js │ ├── sitedesigns.js │ ├── sitescripts.js │ ├── webhooks.js │ └── webproperties.js ├── devtools.html ├── docs ├── README.md └── _config.yml ├── gulpfile.js ├── icons ├── SP-editor-app-icon.png ├── icon-video.png ├── icon128.png ├── icon16.png ├── icon32.png ├── icon48.png ├── icon96.png └── pnp-js-console.gif ├── manifest.json ├── package.json ├── pnpjs-sources ├── index-adaljsclient.ts ├── index-common.ts ├── index-config-store.ts ├── index-graph-sdk.ts ├── index-graph.ts ├── index-logging.ts ├── index-odata.ts ├── index-pnpjs.ts ├── index-sp-addinhelpers.ts └── index-sp.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.db 3 | node_modules 4 | dist 5 | build 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/README.md -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/Client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/Client.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/Constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/Constants.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/CustomAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/CustomAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/GraphError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/GraphError.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/GraphErrorHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/GraphErrorHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/GraphRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/GraphRequest.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/GraphRequestUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/GraphRequestUtil.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/GraphResponseHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/GraphResponseHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/HTTPClient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/HTTPClient.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/HTTPClientFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/HTTPClientFactory.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IAuthProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IAuthProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IAuthProviderCallback.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IAuthProviderCallback.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IAuthenticationProviderOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IAuthenticationProviderOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IClientOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IClientOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IContext.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IFetchOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IFetchOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IGraphRequestCallback.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IGraphRequestCallback.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/IOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/IOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/ImplicitMSALAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/ImplicitMSALAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/MSALAuthenticationProviderOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/MSALAuthenticationProviderOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/Range.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/Range.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/RequestMethod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/RequestMethod.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/ResponseType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/ResponseType.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/ValidatePolyFilling.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/ValidatePolyFilling.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/Version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/Version.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/browser/ImplicitMSALAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/browser/ImplicitMSALAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/browser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/browser/index.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/content/BatchRequestContent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/content/BatchRequestContent.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/content/BatchResponseContent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/content/BatchResponseContent.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/index.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/AuthenticationHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/AuthenticationHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/ChaosHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/ChaosHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/HTTPMessageHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/HTTPMessageHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/IMiddleware.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/IMiddleware.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/MiddlewareControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/MiddlewareControl.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/MiddlewareFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/MiddlewareFactory.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/MiddlewareUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/MiddlewareUtil.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/RedirectHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/RedirectHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/RetryHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/RetryHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/TelemetryHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/TelemetryHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/AuthenticationHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/AuthenticationHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/ChaosHandlerData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/ChaosHandlerData.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/ChaosHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/ChaosHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/ChaosStrategy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/ChaosStrategy.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/IMiddlewareOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/IMiddlewareOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/RedirectHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/RedirectHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/RetryHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/RetryHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/middleware/options/TelemetryHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/middleware/options/TelemetryHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/Client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/Client.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/Constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/Constants.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/CustomAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/CustomAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/GraphClientError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/GraphClientError.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/GraphError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/GraphError.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/GraphErrorHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/GraphErrorHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/GraphRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/GraphRequest.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/GraphRequestUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/GraphRequestUtil.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/GraphResponseHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/GraphResponseHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/HTTPClient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/HTTPClient.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/HTTPClientFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/HTTPClientFactory.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IAuthProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IAuthProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IAuthProviderCallback.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IAuthProviderCallback.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IAuthenticationProviderOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IAuthenticationProviderOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IClientOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IClientOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IContext.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IFetchOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IFetchOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IGraphRequestCallback.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IGraphRequestCallback.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/IOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/IOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/RequestMethod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/RequestMethod.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/ResponseType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/ResponseType.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/ValidatePolyFilling.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/ValidatePolyFilling.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/Version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/Version.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/authentication/azureTokenCredentials/ITokenCredentialAuthenticationProviderOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/authentication/azureTokenCredentials/ITokenCredentialAuthenticationProviderOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/authentication/azureTokenCredentials/TokenCredentialAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/authentication/azureTokenCredentials/TokenCredentialAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/authentication/msal-browser/AuthCodeMSALBrowserAuthenticationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/authentication/msal-browser/AuthCodeMSALBrowserAuthenticationProvider.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/authentication/msalOptions/MSALAuthenticationProviderOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/authentication/msalOptions/MSALAuthenticationProviderOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/browser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/browser/index.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/content/BatchRequestContent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/content/BatchRequestContent.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/content/BatchResponseContent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/content/BatchResponseContent.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/index.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/AuthenticationHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/AuthenticationHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/ChaosHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/ChaosHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/HTTPMessageHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/HTTPMessageHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/IMiddleware.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/IMiddleware.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/MiddlewareControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/MiddlewareControl.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/MiddlewareFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/MiddlewareFactory.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/MiddlewareUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/MiddlewareUtil.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/RedirectHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/RedirectHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/RetryHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/RetryHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/TelemetryHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/TelemetryHandler.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/AuthenticationHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/AuthenticationHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/ChaosHandlerData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/ChaosHandlerData.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/ChaosHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/ChaosHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/ChaosStrategy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/ChaosStrategy.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/IMiddlewareOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/IMiddlewareOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/RedirectHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/RedirectHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/RetryHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/RetryHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/middleware/options/TelemetryHandlerOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/middleware/options/TelemetryHandlerOptions.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/FileObjectClasses/FileUpload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/FileObjectClasses/FileUpload.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/FileObjectClasses/StreamUpload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/FileObjectClasses/StreamUpload.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/Interfaces/IUploadEventHandlers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/Interfaces/IUploadEventHandlers.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/Range.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/Range.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/UploadResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/FileUploadTask/UploadResult.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/LargeFileUploadTask.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/LargeFileUploadTask.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/OneDriveLargeFileUploadTask.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/OneDriveLargeFileUploadTask.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/OneDriveLargeFileUploadTaskUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/OneDriveLargeFileUploadTaskUtil.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/src/tasks/PageIterator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/src/tasks/PageIterator.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/tasks/LargeFileUploadTask.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/tasks/LargeFileUploadTask.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/tasks/OneDriveLargeFileUploadTask.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/tasks/OneDriveLargeFileUploadTask.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/tasks/OneDriveLargeFileUploadTaskUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/tasks/OneDriveLargeFileUploadTaskUtil.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-client/tasks/PageIterator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-client/tasks/PageIterator.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-types.d.ts -------------------------------------------------------------------------------- /app/@microsoft/microsoft-graph-types/microsoft-graph.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@microsoft/microsoft-graph-types/microsoft-graph.d.ts -------------------------------------------------------------------------------- /app/@pnp/adaljsclient.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./adaljsclient/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/adaljsclient/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/adaljsclient/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/common.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./common/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/common/collections.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/collections.d.ts -------------------------------------------------------------------------------- /app/@pnp/common/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/common/libconfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/libconfig.d.ts -------------------------------------------------------------------------------- /app/@pnp/common/net.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/net.d.ts -------------------------------------------------------------------------------- /app/@pnp/common/safe-global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/safe-global.d.ts -------------------------------------------------------------------------------- /app/@pnp/common/spfxContextInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/spfxContextInterface.d.ts -------------------------------------------------------------------------------- /app/@pnp/common/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/storage.d.ts -------------------------------------------------------------------------------- /app/@pnp/common/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/common/util.d.ts -------------------------------------------------------------------------------- /app/@pnp/config-store.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./config-store/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/config-store/configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/config-store/configuration.d.ts -------------------------------------------------------------------------------- /app/@pnp/config-store/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/config-store/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/config-store/providers/cachingConfigurationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/config-store/providers/cachingConfigurationProvider.d.ts -------------------------------------------------------------------------------- /app/@pnp/config-store/providers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/config-store/providers/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/config-store/providers/spListConfigurationProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/config-store/providers/spListConfigurationProvider.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./graph/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/graph/attachments/conversations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/attachments/conversations.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/attachments/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/attachments/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/attachments/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/attachments/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/batch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/batch.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/calendars/funcs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/calendars/funcs.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/calendars/groups.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/calendars/groups.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/calendars/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/calendars/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/calendars/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/calendars/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/calendars/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/calendars/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/cloud-communications/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/cloud-communications/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/cloud-communications/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/cloud-communications/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/cloud-communications/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/cloud-communications/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/contacts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/contacts/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/contacts/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/contacts/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/contacts/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/contacts/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/conversations/groups.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/conversations/groups.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/conversations/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/conversations/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/conversations/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/conversations/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/decorators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/decorators.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/directory-objects/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/directory-objects/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/directory-objects/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/directory-objects/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/graphhttpclient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/graphhttpclient.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/graphlibconfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/graphlibconfig.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/graphqueryable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/graphqueryable.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/groups/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/groups/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/groups/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/groups/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/insights/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/insights/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/insights/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/insights/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/insights/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/insights/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/invitations/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/invitations/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/invitations/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/invitations/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/members/groups.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/members/groups.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/members/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/members/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/members/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/members/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/messages/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/messages/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/messages/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/messages/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/messages/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/messages/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/onedrive/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/onedrive/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/onedrive/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/onedrive/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/onedrive/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/onedrive/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/onenote/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/onenote/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/onenote/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/onenote/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/onenote/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/onenote/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/operations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/operations.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/outlook/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/outlook/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/outlook/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/outlook/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/outlook/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/outlook/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/photos/groups.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/photos/groups.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/photos/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/photos/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/photos/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/photos/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/photos/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/photos/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/planner/groups.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/planner/groups.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/planner/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/planner/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/planner/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/planner/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/planner/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/planner/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/presets/all.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/presets/all.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/rest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/rest.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/search/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/search/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/search/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/search/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/sites/group.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/sites/group.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/sites/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/sites/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/sites/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/sites/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/subscriptions/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/subscriptions/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/subscriptions/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/subscriptions/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/teams/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/teams/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/teams/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/teams/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/teams/users.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/teams/users.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/users/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/users/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/users/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/users/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/utils/toabsoluteurl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/utils/toabsoluteurl.d.ts -------------------------------------------------------------------------------- /app/@pnp/graph/utils/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/graph/utils/type.d.ts -------------------------------------------------------------------------------- /app/@pnp/logging.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./logging/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/logging/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/logging/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/logging/listeners.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/logging/listeners.d.ts -------------------------------------------------------------------------------- /app/@pnp/logging/logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/logging/logger.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./odata/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/odata/add-prop.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/add-prop.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/batch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/batch.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/caching.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/caching.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/debug.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/debug.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/invokable-binder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/invokable-binder.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/invokable-extensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/invokable-extensions.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/parsers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/parsers.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/pipeline-binder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/pipeline-binder.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/pipeline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/pipeline.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/queryable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/queryable.d.ts -------------------------------------------------------------------------------- /app/@pnp/odata/request-builders.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/odata/request-builders.d.ts -------------------------------------------------------------------------------- /app/@pnp/pnpjs.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./pnpjs/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/pnpjs/graph-ns.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/pnpjs/graph-ns.d.ts -------------------------------------------------------------------------------- /app/@pnp/pnpjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/pnpjs/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/pnpjs/pnplibconfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/pnpjs/pnplibconfig.d.ts -------------------------------------------------------------------------------- /app/@pnp/pnpjs/sp-ns.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/pnpjs/sp-ns.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-addinhelpers.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./sp-addinhelpers/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/sp-addinhelpers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-addinhelpers/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-addinhelpers/sprequestexecutorclient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-addinhelpers/sprequestexecutorclient.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-addinhelpers/sprestaddin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-addinhelpers/sprestaddin.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/batch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/batch.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/clientsvc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/clientsvc.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/clintsvcqueryable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/clintsvcqueryable.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/objectpath.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/objectpath.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/opactionbuilders.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/opactionbuilders.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/opbuilders.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/opbuilders.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/parsers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/parsers.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-clientsvc/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-clientsvc/utils.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/labels.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/labels.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/session.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/session.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/taxonomy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/taxonomy.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/termgroup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/termgroup.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/terms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/terms.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/termsets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/termsets.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/termstores.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/termstores.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp-taxonomy/utilities.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp-taxonomy/utilities.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./sp/index"; 2 | -------------------------------------------------------------------------------- /app/@pnp/sp/appcatalog/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/appcatalog/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/appcatalog/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/appcatalog/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/appcatalog/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/appcatalog/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/attachments/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/attachments/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/attachments/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/attachments/item.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/attachments/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/attachments/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/batch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/batch.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/clientside-pages/funcs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/clientside-pages/funcs.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/clientside-pages/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/clientside-pages/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/clientside-pages/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/clientside-pages/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/clientside-pages/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/clientside-pages/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/column-defaults/folder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/column-defaults/folder.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/column-defaults/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/column-defaults/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/column-defaults/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/column-defaults/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/column-defaults/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/column-defaults/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/comments/clientside-page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/comments/clientside-page.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/comments/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/comments/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/comments/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/comments/item.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/comments/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/comments/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/content-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/content-types/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/content-types/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/content-types/item.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/content-types/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/content-types/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/content-types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/content-types/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/content-types/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/content-types/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/decorators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/decorators.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/features/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/features/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/features/site.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/features/site.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/features/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/features/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/features/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/features/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/fields/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/fields/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/fields/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/fields/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/fields/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/fields/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/fields/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/fields/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/files/folder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/files/folder.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/files/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/files/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/files/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/files/item.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/files/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/files/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/files/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/files/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/folders/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/folders/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/folders/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/folders/item.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/folders/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/folders/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/folders/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/folders/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/folders/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/folders/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/forms/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/forms/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/forms/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/forms/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/forms/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/forms/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/hubsites/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/hubsites/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/hubsites/site.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/hubsites/site.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/hubsites/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/hubsites/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/hubsites/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/hubsites/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/items/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/items/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/items/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/items/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/items/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/items/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/lists/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/lists/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/lists/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/lists/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/lists/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/lists/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/navigation/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/navigation/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/navigation/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/navigation/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/navigation/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/navigation/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/odata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/odata.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/operations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/operations.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/presets/all.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/presets/all.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/presets/core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/presets/core.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/profiles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/profiles/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/profiles/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/profiles/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/content-type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/content-type.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/field.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/field.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/funcs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/funcs.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/user-custom-actions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/user-custom-actions.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/regional-settings/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/regional-settings/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/related-items/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/related-items/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/related-items/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/related-items/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/related-items/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/related-items/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/rest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/rest.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/search/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/search/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/search/query.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/search/query.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/search/suggest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/search/suggest.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/search/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/search/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/security/funcs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/security/funcs.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/security/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/security/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/security/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/security/item.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/security/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/security/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/security/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/security/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/security/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/security/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharepointqueryable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharepointqueryable.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharing/file.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharing/file.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharing/folder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharing/folder.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharing/funcs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharing/funcs.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharing/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharing/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharing/item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharing/item.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharing/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharing/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sharing/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sharing/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-designs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-designs/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-designs/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-designs/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-designs/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-designs/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-groups/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-groups/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-groups/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-groups/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-groups/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-groups/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-scripts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-scripts/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-scripts/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-scripts/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-scripts/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-scripts/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-scripts/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-scripts/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-users/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-users/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-users/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-users/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/site-users/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/site-users/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sites/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sites/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sites/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sites/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/social/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/social/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/social/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/social/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sphttpclient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sphttpclient.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/splibconfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/splibconfig.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sputilities/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sputilities/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/sputilities/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/sputilities/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/subscriptions/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/subscriptions/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/subscriptions/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/subscriptions/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/subscriptions/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/subscriptions/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/taxonomy/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/taxonomy/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/taxonomy/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/taxonomy/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/telemetry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/telemetry.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/user-custom-actions/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/user-custom-actions/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/user-custom-actions/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/user-custom-actions/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/user-custom-actions/site.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/user-custom-actions/site.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/user-custom-actions/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/user-custom-actions/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/user-custom-actions/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/user-custom-actions/web.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/utils/escapeQueryStrValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/utils/escapeQueryStrValue.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/utils/extractweburl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/utils/extractweburl.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/utils/file-names.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/utils/file-names.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/utils/metadata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/utils/metadata.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/utils/objectToSPKeyValueCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/utils/objectToSPKeyValueCollection.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/utils/toResourcePath.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/utils/toResourcePath.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/utils/toabsoluteurl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/utils/toabsoluteurl.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/views/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/views/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/views/list.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/views/list.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/views/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/views/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/webparts/file.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/webparts/file.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/webparts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/webparts/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/webparts/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/webparts/types.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/webs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/webs/index.d.ts -------------------------------------------------------------------------------- /app/@pnp/sp/webs/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/@pnp/sp/webs/types.d.ts -------------------------------------------------------------------------------- /app/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/background.js -------------------------------------------------------------------------------- /app/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/content.js -------------------------------------------------------------------------------- /app/css/alertify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/alertify.css -------------------------------------------------------------------------------- /app/css/awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/awesome.css -------------------------------------------------------------------------------- /app/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/bootstrap.css -------------------------------------------------------------------------------- /app/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/css/font-awesome-animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/font-awesome-animations.css -------------------------------------------------------------------------------- /app/css/pageeditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/pageeditor.css -------------------------------------------------------------------------------- /app/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/popup.css -------------------------------------------------------------------------------- /app/css/simple-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/css/simple-sidebar.css -------------------------------------------------------------------------------- /app/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/event.js -------------------------------------------------------------------------------- /app/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/img/MSSignInButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/img/MSSignInButton.svg -------------------------------------------------------------------------------- /app/js/adaljsclient.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/adaljsclient.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/alertify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/alertify.js -------------------------------------------------------------------------------- /app/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/js/common.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/common.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/config-store.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/config-store.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/getContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/getContext.js -------------------------------------------------------------------------------- /app/js/graph-sdk.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/graph-sdk.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/graph.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/graph.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/jquery-1.11.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/jquery-1.11.0.js -------------------------------------------------------------------------------- /app/js/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/jszip.min.js -------------------------------------------------------------------------------- /app/js/logging.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/logging.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/msal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/msal.js -------------------------------------------------------------------------------- /app/js/msal2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/msal2.js -------------------------------------------------------------------------------- /app/js/odata.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/odata.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/pnpjs.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/pnpjs.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/riot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/riot.js -------------------------------------------------------------------------------- /app/js/sp-addinhelpers.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/sp-addinhelpers.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/sp-clientsvc.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/sp-clientsvc.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/sp-taxonomy.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/sp-taxonomy.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/sp.es5.umd.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/sp.es5.umd.bundle.js -------------------------------------------------------------------------------- /app/js/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/js/system.js -------------------------------------------------------------------------------- /app/monaco-editor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/CHANGELOG.md -------------------------------------------------------------------------------- /app/monaco-editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/LICENSE -------------------------------------------------------------------------------- /app/monaco-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/README.md -------------------------------------------------------------------------------- /app/monaco-editor/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/base/worker/workerMain.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/base/worker/workerMain.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.de.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.de.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.es.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.es.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.fr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.fr.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.it.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.it.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.ja.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.ja.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.ko.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.ko.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.ru.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.ru.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.zh-cn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.zh-cn.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/editor/editor.main.nls.zh-tw.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/editor/editor.main.nls.zh-tw.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min-maps/vs/loader.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min-maps/vs/loader.js.map -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/base/worker/workerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/base/worker/workerMain.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/abap/abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/abap/abap.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/apex/apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/apex/apex.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/azcli/azcli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/azcli/azcli.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/bat/bat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/bat/bat.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/bicep/bicep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/bicep/bicep.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/cameligo/cameligo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/cameligo/cameligo.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/clojure/clojure.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/coffee/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/coffee/coffee.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/cpp/cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/cpp/cpp.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/csharp/csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/csharp/csharp.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/csp/csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/csp/csp.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/css/css.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/dart/dart.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/dockerfile/dockerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/dockerfile/dockerfile.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/ecl/ecl.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/elixir/elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/elixir/elixir.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/flow9/flow9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/flow9/flow9.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/fsharp/fsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/fsharp/fsharp.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/go/go.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/graphql/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/graphql/graphql.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/handlebars/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/handlebars/handlebars.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/hcl/hcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/hcl/hcl.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/html/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/html/html.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/ini/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/ini/ini.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/java/java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/java/java.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/javascript/javascript.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/julia/julia.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/kotlin/kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/kotlin/kotlin.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/less/less.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/lexon/lexon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/lexon/lexon.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/liquid/liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/liquid/liquid.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/lua/lua.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/m3/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/m3/m3.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/markdown/markdown.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/mips/mips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/mips/mips.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/msdax/msdax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/msdax/msdax.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/mysql/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/mysql/mysql.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/objective-c/objective-c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/objective-c/objective-c.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/pascal/pascal.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/pascaligo/pascaligo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/pascaligo/pascaligo.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/perl/perl.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/pgsql/pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/pgsql/pgsql.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/php/php.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/pla/pla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/pla/pla.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/postiats/postiats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/postiats/postiats.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/powerquery/powerquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/powerquery/powerquery.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/powershell/powershell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/powershell/powershell.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/protobuf/protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/protobuf/protobuf.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/pug/pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/pug/pug.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/python/python.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/qsharp/qsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/qsharp/qsharp.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/r/r.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/razor/razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/razor/razor.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/redis/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/redis/redis.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/redshift/redshift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/redshift/redshift.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/restructuredtext/restructuredtext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/restructuredtext/restructuredtext.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/ruby/ruby.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/rust/rust.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/sb/sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/sb/sb.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/scala/scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/scala/scala.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/scheme/scheme.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/scss/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/scss/scss.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/shell/shell.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/solidity/solidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/solidity/solidity.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/sophia/sophia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/sophia/sophia.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/sparql/sparql.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/sql/sql.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/st/st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/st/st.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/swift/swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/swift/swift.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/systemverilog/systemverilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/systemverilog/systemverilog.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/tcl/tcl.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/twig/twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/twig/twig.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/typescript/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/typescript/typescript.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/vb/vb.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/xml/xml.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/basic-languages/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/basic-languages/yaml/yaml.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.css -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.de.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.es.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.fr.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.it.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.ja.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.ko.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.ru.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.zh-cn.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/editor/editor.main.nls.zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/editor/editor.main.nls.zh-tw.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/css/cssMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/css/cssMode.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/css/cssWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/css/cssWorker.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/html/htmlMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/html/htmlMode.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/html/htmlWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/html/htmlWorker.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/json/jsonMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/json/jsonMode.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/json/jsonWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/json/jsonWorker.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/typescript/tsMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/typescript/tsMode.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/language/typescript/tsWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/language/typescript/tsWorker.js -------------------------------------------------------------------------------- /app/monaco-editor/min/vs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/min/vs/loader.js -------------------------------------------------------------------------------- /app/monaco-editor/monaco.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/monaco.d.ts -------------------------------------------------------------------------------- /app/monaco-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/monaco-editor/package.json -------------------------------------------------------------------------------- /app/msal/Account.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/Account.d.ts -------------------------------------------------------------------------------- /app/msal/AuthResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/AuthResponse.d.ts -------------------------------------------------------------------------------- /app/msal/AuthenticationParameters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/AuthenticationParameters.d.ts -------------------------------------------------------------------------------- /app/msal/ClientInfo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/ClientInfo.d.ts -------------------------------------------------------------------------------- /app/msal/Configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/Configuration.d.ts -------------------------------------------------------------------------------- /app/msal/IUri.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/IUri.d.ts -------------------------------------------------------------------------------- /app/msal/IdToken.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/IdToken.d.ts -------------------------------------------------------------------------------- /app/msal/Logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/Logger.d.ts -------------------------------------------------------------------------------- /app/msal/MsalTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/MsalTypes.d.ts -------------------------------------------------------------------------------- /app/msal/ScopeSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/ScopeSet.d.ts -------------------------------------------------------------------------------- /app/msal/ServerRequestParameters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/ServerRequestParameters.d.ts -------------------------------------------------------------------------------- /app/msal/UserAgentApplication.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/UserAgentApplication.d.ts -------------------------------------------------------------------------------- /app/msal/XHRClient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/XHRClient.d.ts -------------------------------------------------------------------------------- /app/msal/authority/Authority.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/authority/Authority.d.ts -------------------------------------------------------------------------------- /app/msal/authority/AuthorityFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/authority/AuthorityFactory.d.ts -------------------------------------------------------------------------------- /app/msal/authority/ITenantDiscoveryResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/authority/ITenantDiscoveryResponse.d.ts -------------------------------------------------------------------------------- /app/msal/authority/TrustedAuthority.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/authority/TrustedAuthority.d.ts -------------------------------------------------------------------------------- /app/msal/cache/AccessTokenCacheItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/cache/AccessTokenCacheItem.d.ts -------------------------------------------------------------------------------- /app/msal/cache/AccessTokenKey.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/cache/AccessTokenKey.d.ts -------------------------------------------------------------------------------- /app/msal/cache/AccessTokenValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/cache/AccessTokenValue.d.ts -------------------------------------------------------------------------------- /app/msal/cache/AuthCache.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/cache/AuthCache.d.ts -------------------------------------------------------------------------------- /app/msal/cache/BrowserStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/cache/BrowserStorage.d.ts -------------------------------------------------------------------------------- /app/msal/error/AuthError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/error/AuthError.d.ts -------------------------------------------------------------------------------- /app/msal/error/ClientAuthError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/error/ClientAuthError.d.ts -------------------------------------------------------------------------------- /app/msal/error/ClientConfigurationError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/error/ClientConfigurationError.d.ts -------------------------------------------------------------------------------- /app/msal/error/InteractionRequiredAuthError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/error/InteractionRequiredAuthError.d.ts -------------------------------------------------------------------------------- /app/msal/error/ServerError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/error/ServerError.d.ts -------------------------------------------------------------------------------- /app/msal/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/index.d.ts -------------------------------------------------------------------------------- /app/msal/packageMetadata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/packageMetadata.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/ApiEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/ApiEvent.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/DefaultEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/DefaultEvent.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/HttpEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/HttpEvent.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/TelemetryConstants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/TelemetryConstants.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/TelemetryEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/TelemetryEvent.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/TelemetryManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/TelemetryManager.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/TelemetryTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/TelemetryTypes.d.ts -------------------------------------------------------------------------------- /app/msal/telemetry/TelemetryUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/telemetry/TelemetryUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/AuthCacheUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/AuthCacheUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/Constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/Constants.d.ts -------------------------------------------------------------------------------- /app/msal/utils/CryptoUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/CryptoUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/RequestUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/RequestUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/ResponseUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/ResponseUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/StringUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/StringUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/TimeUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/TimeUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/TokenUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/TokenUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/UrlUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/UrlUtils.d.ts -------------------------------------------------------------------------------- /app/msal/utils/WindowUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/msal/utils/WindowUtils.d.ts -------------------------------------------------------------------------------- /app/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/panel.html -------------------------------------------------------------------------------- /app/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/panel.js -------------------------------------------------------------------------------- /app/panelspqueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/panelspqueries.js -------------------------------------------------------------------------------- /app/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/popup.html -------------------------------------------------------------------------------- /app/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/popup.js -------------------------------------------------------------------------------- /app/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/snippets.js -------------------------------------------------------------------------------- /app/tags/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/about.js -------------------------------------------------------------------------------- /app/tags/appcatalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/appcatalog.js -------------------------------------------------------------------------------- /app/tags/fileeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/fileeditor.js -------------------------------------------------------------------------------- /app/tags/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/files.js -------------------------------------------------------------------------------- /app/tags/graphman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/graphman.js -------------------------------------------------------------------------------- /app/tags/graphsdkconsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/graphsdkconsole.js -------------------------------------------------------------------------------- /app/tags/listproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/listproperties.js -------------------------------------------------------------------------------- /app/tags/modernproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/modernproperties.js -------------------------------------------------------------------------------- /app/tags/pageeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/pageeditor.js -------------------------------------------------------------------------------- /app/tags/pnpjsconsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/pnpjsconsole.js -------------------------------------------------------------------------------- /app/tags/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/save.js -------------------------------------------------------------------------------- /app/tags/scriptlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/scriptlinks.js -------------------------------------------------------------------------------- /app/tags/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/search.js -------------------------------------------------------------------------------- /app/tags/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/sidebar.js -------------------------------------------------------------------------------- /app/tags/sitedesigns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/sitedesigns.js -------------------------------------------------------------------------------- /app/tags/sitescripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/sitescripts.js -------------------------------------------------------------------------------- /app/tags/webhooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/webhooks.js -------------------------------------------------------------------------------- /app/tags/webproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/app/tags/webproperties.js -------------------------------------------------------------------------------- /devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/devtools.html -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/gulpfile.js -------------------------------------------------------------------------------- /icons/SP-editor-app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/SP-editor-app-icon.png -------------------------------------------------------------------------------- /icons/icon-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/icon-video.png -------------------------------------------------------------------------------- /icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/icon128.png -------------------------------------------------------------------------------- /icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/icon16.png -------------------------------------------------------------------------------- /icons/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/icon32.png -------------------------------------------------------------------------------- /icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/icon48.png -------------------------------------------------------------------------------- /icons/icon96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/icon96.png -------------------------------------------------------------------------------- /icons/pnp-js-console.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/icons/pnp-js-console.gif -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/package.json -------------------------------------------------------------------------------- /pnpjs-sources/index-adaljsclient.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/adaljsclient" 2 | -------------------------------------------------------------------------------- /pnpjs-sources/index-common.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/common" 2 | -------------------------------------------------------------------------------- /pnpjs-sources/index-config-store.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/config-store" 2 | -------------------------------------------------------------------------------- /pnpjs-sources/index-graph-sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/pnpjs-sources/index-graph-sdk.ts -------------------------------------------------------------------------------- /pnpjs-sources/index-graph.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/graph/presets/all"; 2 | -------------------------------------------------------------------------------- /pnpjs-sources/index-logging.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/logging" 2 | -------------------------------------------------------------------------------- /pnpjs-sources/index-odata.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/odata" 2 | -------------------------------------------------------------------------------- /pnpjs-sources/index-pnpjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/pnpjs-sources/index-pnpjs.ts -------------------------------------------------------------------------------- /pnpjs-sources/index-sp-addinhelpers.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/sp-addinhelpers"; 2 | -------------------------------------------------------------------------------- /pnpjs-sources/index-sp.ts: -------------------------------------------------------------------------------- 1 | export * from "../node_modules/@pnp/sp/presets/all" 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavikukko/Chrome-SP-Editor/HEAD/webpack.config.js --------------------------------------------------------------------------------