From b17ddbc08d1d6e792ebb030df3a2624014e24fab Mon Sep 17 00:00:00 2001 From: Zwifi Date: Wed, 6 Jan 2021 10:07:15 +0100 Subject: [PATCH] Happy new year ! (#902) --- LICENSE | 2 +- NOTICE-TEMPLATE | 2 +- e2e/browser/IPodServerConfig.ts | 2 +- e2e/browser/ITestConfig.ts | 2 +- e2e/browser/ITestSuiteConfig.ts | 2 +- e2e/browser/helpers/login.ts | 2 +- e2e/browser/page-models/FetchPage.ts | 2 +- e2e/browser/page-models/LoginPage.ts | 2 +- e2e/browser/testSuiteRunner.test.ts | 2 +- packages/browser/NOTICE | 2 +- .../__tests__/ClientAuthentication.spec.ts | 2 +- packages/browser/__tests__/Session.spec.ts | 2 +- .../authenticatedFetch/fetchFactory.spec.ts | 2 +- .../headers/HeadersUtils.spec.ts | 2 +- .../browser/__tests__/defaultSession.spec.ts | 2 +- .../browser/__tests__/dependencies.node.spec.ts | 2 +- packages/browser/__tests__/dependencies.spec.ts | 2 +- packages/browser/__tests__/index.spec.ts | 2 +- .../login/AggregateLoginHandler.spec.ts | 2 +- .../login/oidc/AggregateOidcHandler.spec.ts | 2 +- .../__tests__/login/oidc/ClientRegistrar.spec.ts | 2 +- .../login/oidc/IssuerConfigFetcher.spec.ts | 2 +- .../login/oidc/OidcLoginHandler.spec.ts | 2 +- .../__tests__/login/oidc/Redirector.spec.ts | 2 +- .../__tests__/login/oidc/TokenRequester.spec.ts | 2 +- .../AuthorizationCodeWithPkceOidcHandler.spec.ts | 2 +- .../LegacyImplicitFlowOIDCHandler.spec.ts | 2 +- .../oidcHandlers/OidcHandlerCanHandleTests.ts | 2 +- .../AuthCodeRedirectHandler.spec.ts | 2 +- .../FallbackRedirectHandler.spec.ts | 2 +- .../ImplicitRedirectHandler.spec.ts | 2 +- .../oidc/redirectHandler/TokenSaver.spec.ts | 2 +- .../login/oidc/refresh/TokenRefresher.spec.ts | 2 +- .../login/popUp/PopUpLoginHandler.spec.ts | 2 +- .../logout/GeneralLogoutHandler.spec.ts | 2 +- .../sessionInfo/SessionInfoManager.spec.ts | 2 +- .../browser/__tests__/util/UUIDGenerator.spec.ts | 2 +- .../examples/demoAuthentiationMonitor/index.js | 10 ++++++---- .../examples/demoClientApp/src/DemoClientApp.js | 15 ++++++++------- .../browser/examples/demoClientApp/src/index.js | 2 +- .../browser/examples/multi/bundle/src/App.js | 2 +- .../browser/examples/multi/bundle/src/index.js | 2 +- .../browser/examples/single/bundle/src/App.js | 2 +- .../browser/examples/single/bundle/src/index.js | 2 +- packages/browser/src/ClientAuthentication.ts | 2 +- packages/browser/src/Session.ts | 2 +- packages/browser/src/SessionManager.ts | 2 +- .../src/__mocks__/ClientAuthentication.ts | 2 +- .../src/authenticatedFetch/fetchFactory.ts | 2 +- .../authenticatedFetch/headers/HeadersUtils.ts | 2 +- packages/browser/src/defaultSession.ts | 2 +- packages/browser/src/dependencies.ts | 2 +- packages/browser/src/index.browser.ts | 2 +- packages/browser/src/index.ts | 2 +- .../browser/src/login/AggregateLoginHandler.ts | 2 +- .../browser/src/login/__mocks__/LoginHandler.ts | 2 +- .../src/login/oidc/AggregateOidcHandler.ts | 2 +- .../browser/src/login/oidc/ClientRegistrar.ts | 2 +- .../src/login/oidc/IssuerConfigFetcher.ts | 2 +- .../browser/src/login/oidc/OidcLoginHandler.ts | 2 +- packages/browser/src/login/oidc/Redirector.ts | 2 +- .../browser/src/login/oidc/TokenRequester.ts | 2 +- .../src/login/oidc/__mocks__/ClientRegistrar.ts | 2 +- .../src/login/oidc/__mocks__/IOidcHandler.ts | 2 +- .../src/login/oidc/__mocks__/IOidcOptions.ts | 2 +- .../login/oidc/__mocks__/IssuerConfigFetcher.ts | 2 +- .../src/login/oidc/__mocks__/Redirector.ts | 2 +- .../src/login/oidc/__mocks__/TokenRequester.ts | 2 +- .../oidcHandlers/AuthorizationCodeOidcHandler.ts | 2 +- .../AuthorizationCodeWithPkceOidcHandler.ts | 2 +- .../oidcHandlers/ClientCredentialsOidcHandler.ts | 2 +- .../LegacyImplicitFlowOidcHandler.ts | 2 +- .../oidcHandlers/PrimaryDeviceOidcHandler.ts | 2 +- .../oidc/oidcHandlers/RefreshTokenOidcHandler.ts | 2 +- .../oidcHandlers/SecondaryDeviceOidcHandler.ts | 2 +- .../redirectHandler/AggregateRedirectHandler.ts | 2 +- .../redirectHandler/AuthCodeRedirectHandler.ts | 2 +- .../redirectHandler/FallbackRedirectHandler.ts | 2 +- .../redirectHandler/ImplicitRedirectHandler.ts | 2 +- .../src/login/oidc/redirectHandler/TokenSaver.ts | 2 +- .../redirectHandler/__mocks__/RedirectHandler.ts | 2 +- .../oidc/redirectHandler/__mocks__/TokenSaver.ts | 2 +- .../src/login/oidc/refresh/TokenRefresher.ts | 2 +- .../popUp/AggregatePostPopUpLoginHandler.ts | 2 +- .../browser/src/login/popUp/PopUpLoginHandler.ts | 2 +- .../browser/src/login/webid/WebidLoginHandler.ts | 2 +- .../browser/src/logout/GeneralLogoutHandler.ts | 2 +- .../src/logout/__mocks__/LogoutHandler.ts | 2 +- .../src/sessionInfo/SessionInfoManager.ts | 2 +- .../sessionInfo/__mocks__/SessionInfoManager.ts | 2 +- packages/browser/src/storage/BrowserStorage.ts | 2 +- packages/browser/src/storage/StorageUtility.ts | 2 +- packages/browser/src/util/UuidGenerator.ts | 2 +- .../browser/src/util/__mocks__/UuidGenerator.ts | 2 +- packages/browser/src/util/urlPath.ts | 2 +- packages/core/src/ILoginInputOptions.ts | 2 +- packages/core/src/errors/ConfigurationError.ts | 2 +- packages/core/src/errors/InruptError.test.ts | 2 +- packages/core/src/errors/InruptError.ts | 2 +- packages/core/src/errors/NotImplementedError.ts | 2 +- packages/core/src/errors/errors.spec.ts | 2 +- packages/core/src/index.ts | 2 +- packages/core/src/login/ILoginHandler.ts | 2 +- packages/core/src/login/ILoginOptions.ts | 2 +- packages/core/src/login/oidc/IClient.ts | 2 +- packages/core/src/login/oidc/IClientRegistrar.ts | 2 +- packages/core/src/login/oidc/IIssuerConfig.ts | 2 +- .../core/src/login/oidc/IIssuerConfigFetcher.ts | 2 +- packages/core/src/login/oidc/IOidcHandler.ts | 2 +- packages/core/src/login/oidc/IOidcOptions.ts | 2 +- packages/core/src/login/oidc/IRedirector.ts | 2 +- .../src/login/oidc/__mocks__/IssuerConfig.ts | 2 +- .../login/oidc/__mocks__/IssuerConfigFetcher.ts | 2 +- .../core/src/login/oidc/issuerConfigSchema.ts | 2 +- .../oidc/redirectHandler/IRedirectHandler.ts | 2 +- packages/core/src/logout/ILogoutHandler.ts | 2 +- packages/core/src/sessionInfo/ISessionInfo.ts | 2 +- .../core/src/sessionInfo/ISessionInfoManager.ts | 2 +- packages/core/src/storage/IStorage.ts | 2 +- packages/core/src/storage/IStorageUtility.ts | 2 +- .../core/src/storage/InMemoryStorage.spec.ts | 2 +- packages/core/src/storage/InMemoryStorage.ts | 2 +- packages/core/src/storage/StorageUtility.spec.ts | 2 +- packages/core/src/storage/StorageUtility.ts | 2 +- .../core/src/storage/__mocks__/StorageUtility.ts | 2 +- .../util/handlerPattern/AggregateHandler.spec.ts | 2 +- .../src/util/handlerPattern/AggregateHandler.ts | 2 +- .../core/src/util/handlerPattern/IHandleable.ts | 2 +- packages/core/src/util/validateSchema.spec.ts | 2 +- packages/core/src/util/validateSchema.ts | 2 +- .../example/bootstrappedApp/src/bootstrap.js | 7 +++++-- packages/node/example/demoClientApp/src/index.js | 16 +++++++++------- packages/node/src/ClientAuthentication.spec.ts | 2 +- packages/node/src/ClientAuthentication.ts | 2 +- packages/node/src/Session.spec.ts | 2 +- packages/node/src/Session.ts | 2 +- packages/node/src/SessionManager.ts | 2 +- .../node/src/__mocks__/ClientAuthentication.ts | 2 +- .../src/authenticatedFetch/fetchFactory.spec.ts | 2 +- .../node/src/authenticatedFetch/fetchFactory.ts | 2 +- .../headers/HeadersUtils.spec.ts | 2 +- .../authenticatedFetch/headers/HeadersUtils.ts | 2 +- packages/node/src/dependencies.node.spec.ts | 2 +- packages/node/src/dependencies.ts | 2 +- packages/node/src/e2e/e2e-test.spec.ts | 2 +- packages/node/src/index.spec.ts | 2 +- packages/node/src/index.ts | 2 +- .../node/src/login/AggregateLoginHandler.spec.ts | 2 +- packages/node/src/login/AggregateLoginHandler.ts | 2 +- .../node/src/login/__mocks__/LoginHandler.ts | 2 +- .../src/login/oidc/AggregateOidcHandler.spec.ts | 2 +- .../node/src/login/oidc/AggregateOidcHandler.ts | 2 +- .../node/src/login/oidc/ClientRegistrar.spec.ts | 2 +- packages/node/src/login/oidc/ClientRegistrar.ts | 2 +- .../src/login/oidc/IssuerConfigFetcher.spec.ts | 2 +- .../node/src/login/oidc/IssuerConfigFetcher.ts | 2 +- .../node/src/login/oidc/OidcLoginHandler.spec.ts | 2 +- packages/node/src/login/oidc/OidcLoginHandler.ts | 2 +- packages/node/src/login/oidc/Redirector.spec.ts | 2 +- packages/node/src/login/oidc/Redirector.ts | 2 +- .../node/src/login/oidc/TokenRequester.spec.ts | 2 +- packages/node/src/login/oidc/TokenRequester.ts | 2 +- .../src/login/oidc/__mocks__/ClientRegistrar.ts | 2 +- .../src/login/oidc/__mocks__/IOidcHandler.ts | 2 +- .../src/login/oidc/__mocks__/IOidcOptions.ts | 2 +- .../login/oidc/__mocks__/IssuerConfigFetcher.ts | 2 +- .../node/src/login/oidc/__mocks__/Redirector.ts | 2 +- .../AuthorizationCodeOidcHandler.spec.ts | 2 +- .../oidcHandlers/AuthorizationCodeOidcHandler.ts | 2 +- .../AuthorizationCodeWithPkceOidcHandler.spec.ts | 2 +- .../AuthorizationCodeWithPkceOidcHandler.ts | 2 +- .../ClientCredentialsOidcHandler.spec.ts | 2 +- .../oidcHandlers/ClientCredentialsOidcHandler.ts | 2 +- .../oidcHandlers/OidcHandlerCanHandleTests.ts | 2 +- .../PrimaryDeviceOidcHandler.spec.ts | 2 +- .../oidcHandlers/PrimaryDeviceOidcHandler.ts | 2 +- .../oidcHandlers/RefreshTokenOidcHandler.spec.ts | 2 +- .../oidc/oidcHandlers/RefreshTokenOidcHandler.ts | 2 +- .../SecondaryDeviceOidcHandler.spec.ts | 2 +- .../oidcHandlers/SecondaryDeviceOidcHandler.ts | 2 +- .../redirectHandler/AggregateRedirectHandler.ts | 2 +- .../AuthCodeRedirectHandler.spec.ts | 2 +- .../redirectHandler/AuthCodeRedirectHandler.ts | 2 +- .../FallbackRedirectHandler.spec.ts | 2 +- .../redirectHandler/FallbackRedirectHandler.ts | 2 +- .../redirectHandler/__mocks__/RedirectHandler.ts | 2 +- .../login/oidc/refresh/TokenRefresher.spec.ts | 2 +- .../src/login/oidc/refresh/TokenRefresher.ts | 2 +- .../oidc/refresh/__mocks__/TokenRefresher.ts | 2 +- .../node/src/logout/GeneralLogoutHandler.spec.ts | 2 +- packages/node/src/logout/GeneralLogoutHandler.ts | 2 +- .../node/src/logout/__mocks__/LogoutHandler.ts | 2 +- .../src/sessionInfo/SessionInfoManager.spec.ts | 2 +- .../node/src/sessionInfo/SessionInfoManager.ts | 2 +- .../sessionInfo/__mocks__/SessionInfoManager.ts | 2 +- .../node/src/storage/FileSystemStorage.spec.ts | 2 +- packages/node/src/storage/FileSystemStorage.ts | 2 +- packages/node/src/storage/StorageUtility.ts | 2 +- packages/node/src/util/UUIDGenerator.spec.ts | 2 +- packages/node/src/util/UuidGenerator.ts | 2 +- .../node/src/util/__mocks__/UuidGenerator.ts | 2 +- packages/node/src/util/urlPath.ts | 2 +- packages/oidc/src/cleanup/cleanup.spec.ts | 2 +- packages/oidc/src/cleanup/cleanup.ts | 2 +- packages/oidc/src/common/types.ts | 2 +- packages/oidc/src/dcr/clientRegistrar.spec.ts | 2 +- packages/oidc/src/dcr/clientRegistrar.ts | 2 +- packages/oidc/src/dpop/dpop.spec.ts | 2 +- packages/oidc/src/dpop/dpop.ts | 2 +- packages/oidc/src/dpop/keyGeneration.spec.ts | 2 +- packages/oidc/src/dpop/keyGeneration.ts | 2 +- packages/oidc/src/dpop/tokenExchange.spec.ts | 2 +- packages/oidc/src/dpop/tokenExchange.ts | 2 +- packages/oidc/src/index.ts | 2 +- resources/license-header.js | 2 +- 215 files changed, 239 insertions(+), 231 deletions(-) diff --git a/LICENSE b/LICENSE index 9ce389da1a..5a356f21c4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ Begin license text. -Copyright 2020 Inrupt Inc. +Copyright 2021 Inrupt Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/NOTICE-TEMPLATE b/NOTICE-TEMPLATE index d5801a32e2..f450a3d46d 100644 --- a/NOTICE-TEMPLATE +++ b/NOTICE-TEMPLATE @@ -7,7 +7,7 @@ ############################################################################### Inrupt `solid-client-authn-XXXX` -Copyright 2020 Inrupt Inc. +Copyright 2021 Inrupt Inc. This product includes software developed at Inrupt Inc. (https://inrupt.com/). \ No newline at end of file diff --git a/e2e/browser/IPodServerConfig.ts b/e2e/browser/IPodServerConfig.ts index 8022e0b682..acd511b864 100644 --- a/e2e/browser/IPodServerConfig.ts +++ b/e2e/browser/IPodServerConfig.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/e2e/browser/ITestConfig.ts b/e2e/browser/ITestConfig.ts index c5569f26db..eb97c33c59 100644 --- a/e2e/browser/ITestConfig.ts +++ b/e2e/browser/ITestConfig.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/e2e/browser/ITestSuiteConfig.ts b/e2e/browser/ITestSuiteConfig.ts index 6b92a01a2c..a418cd276e 100644 --- a/e2e/browser/ITestSuiteConfig.ts +++ b/e2e/browser/ITestSuiteConfig.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/e2e/browser/helpers/login.ts b/e2e/browser/helpers/login.ts index a0d8299c36..263fcb3922 100644 --- a/e2e/browser/helpers/login.ts +++ b/e2e/browser/helpers/login.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/e2e/browser/page-models/FetchPage.ts b/e2e/browser/page-models/FetchPage.ts index 95c5103a9d..e7852ea314 100644 --- a/e2e/browser/page-models/FetchPage.ts +++ b/e2e/browser/page-models/FetchPage.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/e2e/browser/page-models/LoginPage.ts b/e2e/browser/page-models/LoginPage.ts index 744e53794b..609a8fb7de 100644 --- a/e2e/browser/page-models/LoginPage.ts +++ b/e2e/browser/page-models/LoginPage.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/e2e/browser/testSuiteRunner.test.ts b/e2e/browser/testSuiteRunner.test.ts index e33b09aa06..a38387135f 100644 --- a/e2e/browser/testSuiteRunner.test.ts +++ b/e2e/browser/testSuiteRunner.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/NOTICE b/packages/browser/NOTICE index 22961590d0..a7c689989b 100644 --- a/packages/browser/NOTICE +++ b/packages/browser/NOTICE @@ -1,5 +1,5 @@ Inrupt `solid-client-authn-core` -Copyright 2020 Inrupt Inc. +Copyright 2021 Inrupt Inc. This product includes software developed at Inrupt Inc. (https://inrupt.com/). \ No newline at end of file diff --git a/packages/browser/__tests__/ClientAuthentication.spec.ts b/packages/browser/__tests__/ClientAuthentication.spec.ts index c5528261b9..3758a3e183 100644 --- a/packages/browser/__tests__/ClientAuthentication.spec.ts +++ b/packages/browser/__tests__/ClientAuthentication.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/Session.spec.ts b/packages/browser/__tests__/Session.spec.ts index b0d27cfe24..26b0db726b 100644 --- a/packages/browser/__tests__/Session.spec.ts +++ b/packages/browser/__tests__/Session.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/authenticatedFetch/fetchFactory.spec.ts b/packages/browser/__tests__/authenticatedFetch/fetchFactory.spec.ts index c9c7f9f342..0859af2411 100644 --- a/packages/browser/__tests__/authenticatedFetch/fetchFactory.spec.ts +++ b/packages/browser/__tests__/authenticatedFetch/fetchFactory.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/authenticatedFetch/headers/HeadersUtils.spec.ts b/packages/browser/__tests__/authenticatedFetch/headers/HeadersUtils.spec.ts index ae31f353a3..15ba1710eb 100644 --- a/packages/browser/__tests__/authenticatedFetch/headers/HeadersUtils.spec.ts +++ b/packages/browser/__tests__/authenticatedFetch/headers/HeadersUtils.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/defaultSession.spec.ts b/packages/browser/__tests__/defaultSession.spec.ts index 94b5499277..f627731583 100644 --- a/packages/browser/__tests__/defaultSession.spec.ts +++ b/packages/browser/__tests__/defaultSession.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/dependencies.node.spec.ts b/packages/browser/__tests__/dependencies.node.spec.ts index 5f76f1ab5e..5a1af42ecc 100644 --- a/packages/browser/__tests__/dependencies.node.spec.ts +++ b/packages/browser/__tests__/dependencies.node.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/dependencies.spec.ts b/packages/browser/__tests__/dependencies.spec.ts index 4534918d1a..911ee15bdb 100644 --- a/packages/browser/__tests__/dependencies.spec.ts +++ b/packages/browser/__tests__/dependencies.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/index.spec.ts b/packages/browser/__tests__/index.spec.ts index 0552c5a312..7b786cf174 100644 --- a/packages/browser/__tests__/index.spec.ts +++ b/packages/browser/__tests__/index.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/AggregateLoginHandler.spec.ts b/packages/browser/__tests__/login/AggregateLoginHandler.spec.ts index eca1d0e780..a817de1305 100644 --- a/packages/browser/__tests__/login/AggregateLoginHandler.spec.ts +++ b/packages/browser/__tests__/login/AggregateLoginHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/AggregateOidcHandler.spec.ts b/packages/browser/__tests__/login/oidc/AggregateOidcHandler.spec.ts index f51a974006..53766e10c5 100644 --- a/packages/browser/__tests__/login/oidc/AggregateOidcHandler.spec.ts +++ b/packages/browser/__tests__/login/oidc/AggregateOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/ClientRegistrar.spec.ts b/packages/browser/__tests__/login/oidc/ClientRegistrar.spec.ts index 5f54181007..65c289c3d4 100644 --- a/packages/browser/__tests__/login/oidc/ClientRegistrar.spec.ts +++ b/packages/browser/__tests__/login/oidc/ClientRegistrar.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/IssuerConfigFetcher.spec.ts b/packages/browser/__tests__/login/oidc/IssuerConfigFetcher.spec.ts index 364ca0f022..248b3c2231 100644 --- a/packages/browser/__tests__/login/oidc/IssuerConfigFetcher.spec.ts +++ b/packages/browser/__tests__/login/oidc/IssuerConfigFetcher.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/OidcLoginHandler.spec.ts b/packages/browser/__tests__/login/oidc/OidcLoginHandler.spec.ts index 49b79a8e85..c532f2df98 100644 --- a/packages/browser/__tests__/login/oidc/OidcLoginHandler.spec.ts +++ b/packages/browser/__tests__/login/oidc/OidcLoginHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/Redirector.spec.ts b/packages/browser/__tests__/login/oidc/Redirector.spec.ts index 6828fba65d..c74ecf8280 100644 --- a/packages/browser/__tests__/login/oidc/Redirector.spec.ts +++ b/packages/browser/__tests__/login/oidc/Redirector.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/TokenRequester.spec.ts b/packages/browser/__tests__/login/oidc/TokenRequester.spec.ts index 2d19333fbc..308e2ef04c 100644 --- a/packages/browser/__tests__/login/oidc/TokenRequester.spec.ts +++ b/packages/browser/__tests__/login/oidc/TokenRequester.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts b/packages/browser/__tests__/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts index 846baf6c5d..62be8604f7 100644 --- a/packages/browser/__tests__/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts +++ b/packages/browser/__tests__/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/oidcHandlers/LegacyImplicitFlowOIDCHandler.spec.ts b/packages/browser/__tests__/login/oidc/oidcHandlers/LegacyImplicitFlowOIDCHandler.spec.ts index 128132c049..ed5bc3768a 100644 --- a/packages/browser/__tests__/login/oidc/oidcHandlers/LegacyImplicitFlowOIDCHandler.spec.ts +++ b/packages/browser/__tests__/login/oidc/oidcHandlers/LegacyImplicitFlowOIDCHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts b/packages/browser/__tests__/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts index 0ef7effc1a..e99a347efb 100644 --- a/packages/browser/__tests__/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts +++ b/packages/browser/__tests__/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts b/packages/browser/__tests__/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts index c1128d3106..09859cb751 100644 --- a/packages/browser/__tests__/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts +++ b/packages/browser/__tests__/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts b/packages/browser/__tests__/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts index eccd762996..67a124ab7c 100644 --- a/packages/browser/__tests__/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts +++ b/packages/browser/__tests__/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/redirectHandler/ImplicitRedirectHandler.spec.ts b/packages/browser/__tests__/login/oidc/redirectHandler/ImplicitRedirectHandler.spec.ts index 34fce803ec..f400d95a4e 100644 --- a/packages/browser/__tests__/login/oidc/redirectHandler/ImplicitRedirectHandler.spec.ts +++ b/packages/browser/__tests__/login/oidc/redirectHandler/ImplicitRedirectHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/redirectHandler/TokenSaver.spec.ts b/packages/browser/__tests__/login/oidc/redirectHandler/TokenSaver.spec.ts index 01f917a6fb..e2499761fa 100644 --- a/packages/browser/__tests__/login/oidc/redirectHandler/TokenSaver.spec.ts +++ b/packages/browser/__tests__/login/oidc/redirectHandler/TokenSaver.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/oidc/refresh/TokenRefresher.spec.ts b/packages/browser/__tests__/login/oidc/refresh/TokenRefresher.spec.ts index ec5c382f34..073a98b963 100644 --- a/packages/browser/__tests__/login/oidc/refresh/TokenRefresher.spec.ts +++ b/packages/browser/__tests__/login/oidc/refresh/TokenRefresher.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/login/popUp/PopUpLoginHandler.spec.ts b/packages/browser/__tests__/login/popUp/PopUpLoginHandler.spec.ts index edf7fef45c..1b99d4614f 100644 --- a/packages/browser/__tests__/login/popUp/PopUpLoginHandler.spec.ts +++ b/packages/browser/__tests__/login/popUp/PopUpLoginHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/logout/GeneralLogoutHandler.spec.ts b/packages/browser/__tests__/logout/GeneralLogoutHandler.spec.ts index 8bd982ea12..d7dcb0be53 100644 --- a/packages/browser/__tests__/logout/GeneralLogoutHandler.spec.ts +++ b/packages/browser/__tests__/logout/GeneralLogoutHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/sessionInfo/SessionInfoManager.spec.ts b/packages/browser/__tests__/sessionInfo/SessionInfoManager.spec.ts index 8cc34fbd28..9e7ec65b91 100644 --- a/packages/browser/__tests__/sessionInfo/SessionInfoManager.spec.ts +++ b/packages/browser/__tests__/sessionInfo/SessionInfoManager.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/__tests__/util/UUIDGenerator.spec.ts b/packages/browser/__tests__/util/UUIDGenerator.spec.ts index 84cb4171f1..6cdc6c759a 100644 --- a/packages/browser/__tests__/util/UUIDGenerator.spec.ts +++ b/packages/browser/__tests__/util/UUIDGenerator.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/examples/demoAuthentiationMonitor/index.js b/packages/browser/examples/demoAuthentiationMonitor/index.js index 8de5785cb9..ecb8da1144 100644 --- a/packages/browser/examples/demoAuthentiationMonitor/index.js +++ b/packages/browser/examples/demoAuthentiationMonitor/index.js @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in @@ -24,7 +24,7 @@ const express = require("express"); const port = 3000; const app = express(); -app.use(express.urlencoded({extended: true})); +app.use(express.urlencoded({ extended: true })); app.use(express.json()); app.get("/", async (req, res) => { @@ -43,11 +43,13 @@ app.post("/register_pod", async (req, res) => { } }); -const server = app.listen(port, () => console.log(`Listening on port: [${port}]...`)); +const server = app.listen(port, () => + console.log(`Listening on port: [${port}]...`) +); process.on("SIGTERM", () => { console.info("SIGTERM signal received, closing HTTP server..."); server.close(() => { - console.log('...HTTP server closed.'); + console.log("...HTTP server closed."); }); }); diff --git a/packages/browser/examples/demoClientApp/src/DemoClientApp.js b/packages/browser/examples/demoClientApp/src/DemoClientApp.js index 171bcbec59..9a88eec29b 100644 --- a/packages/browser/examples/demoClientApp/src/DemoClientApp.js +++ b/packages/browser/examples/demoClientApp/src/DemoClientApp.js @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in @@ -226,8 +226,6 @@ class DemoClientApp extends Component { extractComponentOfWebId(webId, part) { let result; - - switch (part) { case 0: result = webId.substring(0, webId.indexOf(".com/") + 5); @@ -363,9 +361,9 @@ class DemoClientApp extends Component { Your Identity Provider is who you trust to manage your identity.

Hover your mouse over the editbox and click the 'x' on the - right-hand side of the field to clear it, and then use the - 'down arrow' icon to select from various public Identity - Provider options. + right-hand side of the field to clear it, and then use the 'down + arrow' icon to select from various public Identity Provider + options. - {this.extractComponentOfWebId(this.state.sessionInfo.webId, 1)} + {this.extractComponentOfWebId( + this.state.sessionInfo.webId, + 1 + )} {this.extractComponentOfWebId(this.state.sessionInfo.webId, 2)} diff --git a/packages/browser/examples/demoClientApp/src/index.js b/packages/browser/examples/demoClientApp/src/index.js index e5f3dad9bc..1aa24798d0 100644 --- a/packages/browser/examples/demoClientApp/src/index.js +++ b/packages/browser/examples/demoClientApp/src/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/examples/multi/bundle/src/App.js b/packages/browser/examples/multi/bundle/src/App.js index 3cd407aa75..b86d7c6140 100644 --- a/packages/browser/examples/multi/bundle/src/App.js +++ b/packages/browser/examples/multi/bundle/src/App.js @@ -1,5 +1,5 @@ /** - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/examples/multi/bundle/src/index.js b/packages/browser/examples/multi/bundle/src/index.js index fde4d9c5e7..cf4498b65b 100644 --- a/packages/browser/examples/multi/bundle/src/index.js +++ b/packages/browser/examples/multi/bundle/src/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/examples/single/bundle/src/App.js b/packages/browser/examples/single/bundle/src/App.js index 00bd46854e..d7ebd1efbc 100644 --- a/packages/browser/examples/single/bundle/src/App.js +++ b/packages/browser/examples/single/bundle/src/App.js @@ -1,5 +1,5 @@ /** - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/examples/single/bundle/src/index.js b/packages/browser/examples/single/bundle/src/index.js index fde4d9c5e7..cf4498b65b 100644 --- a/packages/browser/examples/single/bundle/src/index.js +++ b/packages/browser/examples/single/bundle/src/index.js @@ -1,5 +1,5 @@ /** - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/ClientAuthentication.ts b/packages/browser/src/ClientAuthentication.ts index 79b5167130..5a4b66bdc2 100644 --- a/packages/browser/src/ClientAuthentication.ts +++ b/packages/browser/src/ClientAuthentication.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/Session.ts b/packages/browser/src/Session.ts index dd585b501b..6b90b8ba3d 100644 --- a/packages/browser/src/Session.ts +++ b/packages/browser/src/Session.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/SessionManager.ts b/packages/browser/src/SessionManager.ts index 0c2f6278c4..ed17f99e5c 100644 --- a/packages/browser/src/SessionManager.ts +++ b/packages/browser/src/SessionManager.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/__mocks__/ClientAuthentication.ts b/packages/browser/src/__mocks__/ClientAuthentication.ts index 51e56b3ac9..692fb5a52c 100644 --- a/packages/browser/src/__mocks__/ClientAuthentication.ts +++ b/packages/browser/src/__mocks__/ClientAuthentication.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/authenticatedFetch/fetchFactory.ts b/packages/browser/src/authenticatedFetch/fetchFactory.ts index 4000483194..aa386ca05a 100644 --- a/packages/browser/src/authenticatedFetch/fetchFactory.ts +++ b/packages/browser/src/authenticatedFetch/fetchFactory.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/authenticatedFetch/headers/HeadersUtils.ts b/packages/browser/src/authenticatedFetch/headers/HeadersUtils.ts index b6d33a7fdf..0e95ed50da 100644 --- a/packages/browser/src/authenticatedFetch/headers/HeadersUtils.ts +++ b/packages/browser/src/authenticatedFetch/headers/HeadersUtils.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/defaultSession.ts b/packages/browser/src/defaultSession.ts index 918c82407e..6452406c24 100644 --- a/packages/browser/src/defaultSession.ts +++ b/packages/browser/src/defaultSession.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/dependencies.ts b/packages/browser/src/dependencies.ts index ccfcb5d012..dd70e91bae 100644 --- a/packages/browser/src/dependencies.ts +++ b/packages/browser/src/dependencies.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/index.browser.ts b/packages/browser/src/index.browser.ts index 510dc891fa..674e396021 100644 --- a/packages/browser/src/index.browser.ts +++ b/packages/browser/src/index.browser.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index a80592337f..d6a4ea8210 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/AggregateLoginHandler.ts b/packages/browser/src/login/AggregateLoginHandler.ts index 64850639e9..b1a9044a56 100644 --- a/packages/browser/src/login/AggregateLoginHandler.ts +++ b/packages/browser/src/login/AggregateLoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/__mocks__/LoginHandler.ts b/packages/browser/src/login/__mocks__/LoginHandler.ts index 29594140f6..33ebc34c14 100644 --- a/packages/browser/src/login/__mocks__/LoginHandler.ts +++ b/packages/browser/src/login/__mocks__/LoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/AggregateOidcHandler.ts b/packages/browser/src/login/oidc/AggregateOidcHandler.ts index a39b6729a1..fa7f619dc8 100644 --- a/packages/browser/src/login/oidc/AggregateOidcHandler.ts +++ b/packages/browser/src/login/oidc/AggregateOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/ClientRegistrar.ts b/packages/browser/src/login/oidc/ClientRegistrar.ts index ea2a0a1502..9acb77982d 100644 --- a/packages/browser/src/login/oidc/ClientRegistrar.ts +++ b/packages/browser/src/login/oidc/ClientRegistrar.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/IssuerConfigFetcher.ts b/packages/browser/src/login/oidc/IssuerConfigFetcher.ts index 5b36a48f4a..73895bf2e9 100644 --- a/packages/browser/src/login/oidc/IssuerConfigFetcher.ts +++ b/packages/browser/src/login/oidc/IssuerConfigFetcher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/OidcLoginHandler.ts b/packages/browser/src/login/oidc/OidcLoginHandler.ts index 72df8dabaa..b09d561687 100644 --- a/packages/browser/src/login/oidc/OidcLoginHandler.ts +++ b/packages/browser/src/login/oidc/OidcLoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/Redirector.ts b/packages/browser/src/login/oidc/Redirector.ts index a8c16f1499..d1b05868a2 100644 --- a/packages/browser/src/login/oidc/Redirector.ts +++ b/packages/browser/src/login/oidc/Redirector.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/TokenRequester.ts b/packages/browser/src/login/oidc/TokenRequester.ts index 3e87c7c17d..65198a4051 100644 --- a/packages/browser/src/login/oidc/TokenRequester.ts +++ b/packages/browser/src/login/oidc/TokenRequester.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/__mocks__/ClientRegistrar.ts b/packages/browser/src/login/oidc/__mocks__/ClientRegistrar.ts index bd42b5d2d7..00835f065e 100644 --- a/packages/browser/src/login/oidc/__mocks__/ClientRegistrar.ts +++ b/packages/browser/src/login/oidc/__mocks__/ClientRegistrar.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/__mocks__/IOidcHandler.ts b/packages/browser/src/login/oidc/__mocks__/IOidcHandler.ts index 11014095db..884500cbf0 100644 --- a/packages/browser/src/login/oidc/__mocks__/IOidcHandler.ts +++ b/packages/browser/src/login/oidc/__mocks__/IOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/__mocks__/IOidcOptions.ts b/packages/browser/src/login/oidc/__mocks__/IOidcOptions.ts index 7d78387352..1e2e044057 100644 --- a/packages/browser/src/login/oidc/__mocks__/IOidcOptions.ts +++ b/packages/browser/src/login/oidc/__mocks__/IOidcOptions.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/__mocks__/IssuerConfigFetcher.ts b/packages/browser/src/login/oidc/__mocks__/IssuerConfigFetcher.ts index 0dccc7f6cb..8563074609 100644 --- a/packages/browser/src/login/oidc/__mocks__/IssuerConfigFetcher.ts +++ b/packages/browser/src/login/oidc/__mocks__/IssuerConfigFetcher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/__mocks__/Redirector.ts b/packages/browser/src/login/oidc/__mocks__/Redirector.ts index aa2e9b9f69..52a5530f67 100644 --- a/packages/browser/src/login/oidc/__mocks__/Redirector.ts +++ b/packages/browser/src/login/oidc/__mocks__/Redirector.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/__mocks__/TokenRequester.ts b/packages/browser/src/login/oidc/__mocks__/TokenRequester.ts index 69885b756d..b0c3fb32d5 100644 --- a/packages/browser/src/login/oidc/__mocks__/TokenRequester.ts +++ b/packages/browser/src/login/oidc/__mocks__/TokenRequester.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts b/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts index e1885e64f1..e2f5a62a20 100644 --- a/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts +++ b/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts b/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts index c877c60bdf..790e6ef3fd 100644 --- a/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts +++ b/packages/browser/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts b/packages/browser/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts index 08c0699d22..36b325da83 100644 --- a/packages/browser/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts +++ b/packages/browser/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/oidcHandlers/LegacyImplicitFlowOidcHandler.ts b/packages/browser/src/login/oidc/oidcHandlers/LegacyImplicitFlowOidcHandler.ts index a1de930548..4bed209dba 100644 --- a/packages/browser/src/login/oidc/oidcHandlers/LegacyImplicitFlowOidcHandler.ts +++ b/packages/browser/src/login/oidc/oidcHandlers/LegacyImplicitFlowOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts b/packages/browser/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts index d4ca6f9009..e3fb3aa544 100644 --- a/packages/browser/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts +++ b/packages/browser/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts b/packages/browser/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts index 3a626b6c38..16a86c1590 100644 --- a/packages/browser/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts +++ b/packages/browser/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts b/packages/browser/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts index bb1a93c8bf..145e77c47c 100644 --- a/packages/browser/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts +++ b/packages/browser/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts b/packages/browser/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts index 6dedbf28f0..4a07d24309 100644 --- a/packages/browser/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts +++ b/packages/browser/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts b/packages/browser/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts index 6f1aa1011d..abe24ded67 100644 --- a/packages/browser/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts +++ b/packages/browser/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts b/packages/browser/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts index 2d050f887b..e09e4f9024 100644 --- a/packages/browser/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts +++ b/packages/browser/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/redirectHandler/ImplicitRedirectHandler.ts b/packages/browser/src/login/oidc/redirectHandler/ImplicitRedirectHandler.ts index 5afa01d80f..3e539a1acb 100644 --- a/packages/browser/src/login/oidc/redirectHandler/ImplicitRedirectHandler.ts +++ b/packages/browser/src/login/oidc/redirectHandler/ImplicitRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/redirectHandler/TokenSaver.ts b/packages/browser/src/login/oidc/redirectHandler/TokenSaver.ts index 5bc4bc35b0..f03e31311b 100644 --- a/packages/browser/src/login/oidc/redirectHandler/TokenSaver.ts +++ b/packages/browser/src/login/oidc/redirectHandler/TokenSaver.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts b/packages/browser/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts index 29ea2c2931..4ab645572b 100644 --- a/packages/browser/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts +++ b/packages/browser/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/redirectHandler/__mocks__/TokenSaver.ts b/packages/browser/src/login/oidc/redirectHandler/__mocks__/TokenSaver.ts index bfbd2a2471..2d252a62fc 100644 --- a/packages/browser/src/login/oidc/redirectHandler/__mocks__/TokenSaver.ts +++ b/packages/browser/src/login/oidc/redirectHandler/__mocks__/TokenSaver.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/oidc/refresh/TokenRefresher.ts b/packages/browser/src/login/oidc/refresh/TokenRefresher.ts index 3223cbb3e1..913ec170a1 100644 --- a/packages/browser/src/login/oidc/refresh/TokenRefresher.ts +++ b/packages/browser/src/login/oidc/refresh/TokenRefresher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/popUp/AggregatePostPopUpLoginHandler.ts b/packages/browser/src/login/popUp/AggregatePostPopUpLoginHandler.ts index 577d767517..e5cf4f06b0 100644 --- a/packages/browser/src/login/popUp/AggregatePostPopUpLoginHandler.ts +++ b/packages/browser/src/login/popUp/AggregatePostPopUpLoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/popUp/PopUpLoginHandler.ts b/packages/browser/src/login/popUp/PopUpLoginHandler.ts index ffd1779c7b..055322051f 100644 --- a/packages/browser/src/login/popUp/PopUpLoginHandler.ts +++ b/packages/browser/src/login/popUp/PopUpLoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/login/webid/WebidLoginHandler.ts b/packages/browser/src/login/webid/WebidLoginHandler.ts index 730c43c345..f989083cfd 100644 --- a/packages/browser/src/login/webid/WebidLoginHandler.ts +++ b/packages/browser/src/login/webid/WebidLoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/logout/GeneralLogoutHandler.ts b/packages/browser/src/logout/GeneralLogoutHandler.ts index ec6cb2aae7..e657266e09 100644 --- a/packages/browser/src/logout/GeneralLogoutHandler.ts +++ b/packages/browser/src/logout/GeneralLogoutHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/logout/__mocks__/LogoutHandler.ts b/packages/browser/src/logout/__mocks__/LogoutHandler.ts index aafe67fe1e..46ebbd7220 100644 --- a/packages/browser/src/logout/__mocks__/LogoutHandler.ts +++ b/packages/browser/src/logout/__mocks__/LogoutHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/sessionInfo/SessionInfoManager.ts b/packages/browser/src/sessionInfo/SessionInfoManager.ts index 6f2f77065c..cc4efb5b8d 100644 --- a/packages/browser/src/sessionInfo/SessionInfoManager.ts +++ b/packages/browser/src/sessionInfo/SessionInfoManager.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/sessionInfo/__mocks__/SessionInfoManager.ts b/packages/browser/src/sessionInfo/__mocks__/SessionInfoManager.ts index b2dd82300d..9975a39cf9 100644 --- a/packages/browser/src/sessionInfo/__mocks__/SessionInfoManager.ts +++ b/packages/browser/src/sessionInfo/__mocks__/SessionInfoManager.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/storage/BrowserStorage.ts b/packages/browser/src/storage/BrowserStorage.ts index e9bcc940dd..c5b118c8ce 100644 --- a/packages/browser/src/storage/BrowserStorage.ts +++ b/packages/browser/src/storage/BrowserStorage.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/storage/StorageUtility.ts b/packages/browser/src/storage/StorageUtility.ts index 9c3d942c8d..a0753bde6b 100644 --- a/packages/browser/src/storage/StorageUtility.ts +++ b/packages/browser/src/storage/StorageUtility.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/util/UuidGenerator.ts b/packages/browser/src/util/UuidGenerator.ts index b716aaa4f6..188500b289 100644 --- a/packages/browser/src/util/UuidGenerator.ts +++ b/packages/browser/src/util/UuidGenerator.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/util/__mocks__/UuidGenerator.ts b/packages/browser/src/util/__mocks__/UuidGenerator.ts index 99de0a7728..915b5f8041 100644 --- a/packages/browser/src/util/__mocks__/UuidGenerator.ts +++ b/packages/browser/src/util/__mocks__/UuidGenerator.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/browser/src/util/urlPath.ts b/packages/browser/src/util/urlPath.ts index d0c4403007..df74773b46 100644 --- a/packages/browser/src/util/urlPath.ts +++ b/packages/browser/src/util/urlPath.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/ILoginInputOptions.ts b/packages/core/src/ILoginInputOptions.ts index fe6d51b1aa..715e3e28e4 100644 --- a/packages/core/src/ILoginInputOptions.ts +++ b/packages/core/src/ILoginInputOptions.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/errors/ConfigurationError.ts b/packages/core/src/errors/ConfigurationError.ts index 2079177788..622a1deecc 100644 --- a/packages/core/src/errors/ConfigurationError.ts +++ b/packages/core/src/errors/ConfigurationError.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/errors/InruptError.test.ts b/packages/core/src/errors/InruptError.test.ts index ed3ceb2435..593683021a 100644 --- a/packages/core/src/errors/InruptError.test.ts +++ b/packages/core/src/errors/InruptError.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/errors/InruptError.ts b/packages/core/src/errors/InruptError.ts index 3011e73199..1e2af31cab 100644 --- a/packages/core/src/errors/InruptError.ts +++ b/packages/core/src/errors/InruptError.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/errors/NotImplementedError.ts b/packages/core/src/errors/NotImplementedError.ts index 070809ed33..8657aedf52 100644 --- a/packages/core/src/errors/NotImplementedError.ts +++ b/packages/core/src/errors/NotImplementedError.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/errors/errors.spec.ts b/packages/core/src/errors/errors.spec.ts index 53e2102e84..cff95d4cd0 100644 --- a/packages/core/src/errors/errors.spec.ts +++ b/packages/core/src/errors/errors.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 03f1bdcd82..6c3f1ab50c 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/ILoginHandler.ts b/packages/core/src/login/ILoginHandler.ts index 781612500c..739f42293c 100644 --- a/packages/core/src/login/ILoginHandler.ts +++ b/packages/core/src/login/ILoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/ILoginOptions.ts b/packages/core/src/login/ILoginOptions.ts index 8ab6d00d89..56691da4c1 100644 --- a/packages/core/src/login/ILoginOptions.ts +++ b/packages/core/src/login/ILoginOptions.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/IClient.ts b/packages/core/src/login/oidc/IClient.ts index 151ea34680..ab0d012e4d 100644 --- a/packages/core/src/login/oidc/IClient.ts +++ b/packages/core/src/login/oidc/IClient.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/IClientRegistrar.ts b/packages/core/src/login/oidc/IClientRegistrar.ts index ecaeedc1a7..cf4d4418bc 100644 --- a/packages/core/src/login/oidc/IClientRegistrar.ts +++ b/packages/core/src/login/oidc/IClientRegistrar.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/IIssuerConfig.ts b/packages/core/src/login/oidc/IIssuerConfig.ts index 89942e0260..7753a616b9 100644 --- a/packages/core/src/login/oidc/IIssuerConfig.ts +++ b/packages/core/src/login/oidc/IIssuerConfig.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/IIssuerConfigFetcher.ts b/packages/core/src/login/oidc/IIssuerConfigFetcher.ts index 6a4f2c8827..6297d40151 100644 --- a/packages/core/src/login/oidc/IIssuerConfigFetcher.ts +++ b/packages/core/src/login/oidc/IIssuerConfigFetcher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/IOidcHandler.ts b/packages/core/src/login/oidc/IOidcHandler.ts index a5240064ca..afdf77afd2 100644 --- a/packages/core/src/login/oidc/IOidcHandler.ts +++ b/packages/core/src/login/oidc/IOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/IOidcOptions.ts b/packages/core/src/login/oidc/IOidcOptions.ts index cdccc65d89..3d4f66ecd2 100644 --- a/packages/core/src/login/oidc/IOidcOptions.ts +++ b/packages/core/src/login/oidc/IOidcOptions.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/IRedirector.ts b/packages/core/src/login/oidc/IRedirector.ts index 4e1e3c4907..a33aa8bf04 100644 --- a/packages/core/src/login/oidc/IRedirector.ts +++ b/packages/core/src/login/oidc/IRedirector.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/__mocks__/IssuerConfig.ts b/packages/core/src/login/oidc/__mocks__/IssuerConfig.ts index a34df6cee4..a66858cf23 100644 --- a/packages/core/src/login/oidc/__mocks__/IssuerConfig.ts +++ b/packages/core/src/login/oidc/__mocks__/IssuerConfig.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/__mocks__/IssuerConfigFetcher.ts b/packages/core/src/login/oidc/__mocks__/IssuerConfigFetcher.ts index ed4c2080a6..1cb92b645c 100644 --- a/packages/core/src/login/oidc/__mocks__/IssuerConfigFetcher.ts +++ b/packages/core/src/login/oidc/__mocks__/IssuerConfigFetcher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/issuerConfigSchema.ts b/packages/core/src/login/oidc/issuerConfigSchema.ts index 2f5f39ebd8..3c2cd2cc18 100644 --- a/packages/core/src/login/oidc/issuerConfigSchema.ts +++ b/packages/core/src/login/oidc/issuerConfigSchema.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/login/oidc/redirectHandler/IRedirectHandler.ts b/packages/core/src/login/oidc/redirectHandler/IRedirectHandler.ts index f31fcdba44..831c112efa 100644 --- a/packages/core/src/login/oidc/redirectHandler/IRedirectHandler.ts +++ b/packages/core/src/login/oidc/redirectHandler/IRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/logout/ILogoutHandler.ts b/packages/core/src/logout/ILogoutHandler.ts index fb69a7563a..3c6dbd19a4 100644 --- a/packages/core/src/logout/ILogoutHandler.ts +++ b/packages/core/src/logout/ILogoutHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/sessionInfo/ISessionInfo.ts b/packages/core/src/sessionInfo/ISessionInfo.ts index b256c45ff3..6626e0a05a 100644 --- a/packages/core/src/sessionInfo/ISessionInfo.ts +++ b/packages/core/src/sessionInfo/ISessionInfo.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/sessionInfo/ISessionInfoManager.ts b/packages/core/src/sessionInfo/ISessionInfoManager.ts index c9646db3d0..9e79992f0f 100644 --- a/packages/core/src/sessionInfo/ISessionInfoManager.ts +++ b/packages/core/src/sessionInfo/ISessionInfoManager.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/storage/IStorage.ts b/packages/core/src/storage/IStorage.ts index f29d2381c8..c55344ff80 100644 --- a/packages/core/src/storage/IStorage.ts +++ b/packages/core/src/storage/IStorage.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/storage/IStorageUtility.ts b/packages/core/src/storage/IStorageUtility.ts index f9ca6b14ee..f0178d56ed 100644 --- a/packages/core/src/storage/IStorageUtility.ts +++ b/packages/core/src/storage/IStorageUtility.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/storage/InMemoryStorage.spec.ts b/packages/core/src/storage/InMemoryStorage.spec.ts index 23d657766d..eea940f606 100644 --- a/packages/core/src/storage/InMemoryStorage.spec.ts +++ b/packages/core/src/storage/InMemoryStorage.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/storage/InMemoryStorage.ts b/packages/core/src/storage/InMemoryStorage.ts index 3155a0c8be..1f7b587c88 100644 --- a/packages/core/src/storage/InMemoryStorage.ts +++ b/packages/core/src/storage/InMemoryStorage.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/storage/StorageUtility.spec.ts b/packages/core/src/storage/StorageUtility.spec.ts index a77811ec7b..e6d4a0a4a0 100644 --- a/packages/core/src/storage/StorageUtility.spec.ts +++ b/packages/core/src/storage/StorageUtility.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/storage/StorageUtility.ts b/packages/core/src/storage/StorageUtility.ts index e305f84c82..85e1f3b999 100644 --- a/packages/core/src/storage/StorageUtility.ts +++ b/packages/core/src/storage/StorageUtility.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/storage/__mocks__/StorageUtility.ts b/packages/core/src/storage/__mocks__/StorageUtility.ts index f2d55d3e97..a0954021d3 100644 --- a/packages/core/src/storage/__mocks__/StorageUtility.ts +++ b/packages/core/src/storage/__mocks__/StorageUtility.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/util/handlerPattern/AggregateHandler.spec.ts b/packages/core/src/util/handlerPattern/AggregateHandler.spec.ts index fa366cd35e..9926d77519 100644 --- a/packages/core/src/util/handlerPattern/AggregateHandler.spec.ts +++ b/packages/core/src/util/handlerPattern/AggregateHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/util/handlerPattern/AggregateHandler.ts b/packages/core/src/util/handlerPattern/AggregateHandler.ts index da20bc7a74..0dc5c6913f 100644 --- a/packages/core/src/util/handlerPattern/AggregateHandler.ts +++ b/packages/core/src/util/handlerPattern/AggregateHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/util/handlerPattern/IHandleable.ts b/packages/core/src/util/handlerPattern/IHandleable.ts index f8b7b6813e..a60ef85638 100644 --- a/packages/core/src/util/handlerPattern/IHandleable.ts +++ b/packages/core/src/util/handlerPattern/IHandleable.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/util/validateSchema.spec.ts b/packages/core/src/util/validateSchema.spec.ts index 4cfacdabae..5bc6e5783c 100644 --- a/packages/core/src/util/validateSchema.spec.ts +++ b/packages/core/src/util/validateSchema.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/core/src/util/validateSchema.ts b/packages/core/src/util/validateSchema.ts index 477481df97..c96d104418 100644 --- a/packages/core/src/util/validateSchema.ts +++ b/packages/core/src/util/validateSchema.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/example/bootstrappedApp/src/bootstrap.js b/packages/node/example/bootstrappedApp/src/bootstrap.js index b8ab637c4c..2f10992dcc 100644 --- a/packages/node/example/bootstrappedApp/src/bootstrap.js +++ b/packages/node/example/bootstrappedApp/src/bootstrap.js @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in @@ -24,7 +24,10 @@ const { Session } = require("../../../dist/Session"); const { InMemoryStorage } = require("@inrupt/solid-client-authn-core"); const argv = require("yargs/yargs")(process.argv.slice(2)) - .describe("oidcIssuer", "The identity provider at which the user should authenticate.") + .describe( + "oidcIssuer", + "The identity provider at which the user should authenticate." + ) .alias("issuer", "oidcIssuer") .describe("clientName", "The name of the bootstrapped app.") .demandOption(["oidcIssuer"]) diff --git a/packages/node/example/demoClientApp/src/index.js b/packages/node/example/demoClientApp/src/index.js index c11d0ee771..98f0ad602b 100644 --- a/packages/node/example/demoClientApp/src/index.js +++ b/packages/node/example/demoClientApp/src/index.js @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in @@ -45,7 +45,8 @@ const markerResourceValueRetrieved = "{{resourceValueRetrieved}}"; const oidcIssuer = "https://broker.demo-ess.inrupt.com/"; -const enterResourceUriMessage = "...but enter any resource URI to attempt to read it..."; +const enterResourceUriMessage = + "...but enter any resource URI to attempt to read it..."; // We expect these values to be overwritten as the users interacts! let loggedOutStatus = ""; @@ -114,7 +115,6 @@ app.get("/redirect", async (req, res) => { loginStatus = `Received another redirect, but we are already handling a previous redirect request - so ignoring this one!`; sendHtmlResponse(res); } else if (info.isLoggedIn) { - // This is deliberately making a big assumption about the structure of // the logged-in WebID, but if the WebID does have a different // structure, which is perfectly valid of course, then this code @@ -144,9 +144,10 @@ app.get("/fetch", async (req, res) => { // Only attempt to fetch if the resource is not our message to enter a URI! if (resourceToFetch === enterResourceUriMessage) { - resourceValueRetrieved = "Please enter a resource URI in the edit box above!"; + resourceValueRetrieved = + "Please enter a resource URI in the edit box above!"; } else { - // Update our state with whatever was in the query param. + // Update our state with whatever was in the query param. resourceToRead = resourceToFetch; try { @@ -174,8 +175,9 @@ app.get("/fetch", async (req, res) => { app.get("/logout", async (_req, res, next) => { try { await session.logout(); - resourceToRead = enterResourceUriMessage - resourceValueRetrieved = "...nothing read yet - click 'Read Pod Resource' button above..."; + resourceToRead = enterResourceUriMessage; + resourceValueRetrieved = + "...nothing read yet - click 'Read Pod Resource' button above..."; loginStatus = `Logged out successfully.`; sendHtmlResponse(res); diff --git a/packages/node/src/ClientAuthentication.spec.ts b/packages/node/src/ClientAuthentication.spec.ts index 7409d12a89..e5b89ed8f2 100644 --- a/packages/node/src/ClientAuthentication.spec.ts +++ b/packages/node/src/ClientAuthentication.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/ClientAuthentication.ts b/packages/node/src/ClientAuthentication.ts index 3f825ce811..e1f5abd2a9 100644 --- a/packages/node/src/ClientAuthentication.ts +++ b/packages/node/src/ClientAuthentication.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/Session.spec.ts b/packages/node/src/Session.spec.ts index 2f7a47d50c..787a80b2f2 100644 --- a/packages/node/src/Session.spec.ts +++ b/packages/node/src/Session.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/Session.ts b/packages/node/src/Session.ts index 9d94b0f679..8d02dd57bf 100644 --- a/packages/node/src/Session.ts +++ b/packages/node/src/Session.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/SessionManager.ts b/packages/node/src/SessionManager.ts index d13db00cce..1de9301776 100644 --- a/packages/node/src/SessionManager.ts +++ b/packages/node/src/SessionManager.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/__mocks__/ClientAuthentication.ts b/packages/node/src/__mocks__/ClientAuthentication.ts index 51e56b3ac9..692fb5a52c 100644 --- a/packages/node/src/__mocks__/ClientAuthentication.ts +++ b/packages/node/src/__mocks__/ClientAuthentication.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/authenticatedFetch/fetchFactory.spec.ts b/packages/node/src/authenticatedFetch/fetchFactory.spec.ts index 464bea54b0..e6ab4b49c1 100644 --- a/packages/node/src/authenticatedFetch/fetchFactory.spec.ts +++ b/packages/node/src/authenticatedFetch/fetchFactory.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/authenticatedFetch/fetchFactory.ts b/packages/node/src/authenticatedFetch/fetchFactory.ts index b94354b6d3..56b75e8412 100644 --- a/packages/node/src/authenticatedFetch/fetchFactory.ts +++ b/packages/node/src/authenticatedFetch/fetchFactory.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/authenticatedFetch/headers/HeadersUtils.spec.ts b/packages/node/src/authenticatedFetch/headers/HeadersUtils.spec.ts index 8f0b4aa5a3..7dfda29894 100644 --- a/packages/node/src/authenticatedFetch/headers/HeadersUtils.spec.ts +++ b/packages/node/src/authenticatedFetch/headers/HeadersUtils.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/authenticatedFetch/headers/HeadersUtils.ts b/packages/node/src/authenticatedFetch/headers/HeadersUtils.ts index 5b803f91c0..9f46764aba 100644 --- a/packages/node/src/authenticatedFetch/headers/HeadersUtils.ts +++ b/packages/node/src/authenticatedFetch/headers/HeadersUtils.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/dependencies.node.spec.ts b/packages/node/src/dependencies.node.spec.ts index d49449d92d..5945ad72bb 100644 --- a/packages/node/src/dependencies.node.spec.ts +++ b/packages/node/src/dependencies.node.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/dependencies.ts b/packages/node/src/dependencies.ts index 3e80a097a7..809651de40 100644 --- a/packages/node/src/dependencies.ts +++ b/packages/node/src/dependencies.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/e2e/e2e-test.spec.ts b/packages/node/src/e2e/e2e-test.spec.ts index cf40606e8d..fe672fb3c4 100644 --- a/packages/node/src/e2e/e2e-test.spec.ts +++ b/packages/node/src/e2e/e2e-test.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/index.spec.ts b/packages/node/src/index.spec.ts index 14483b72df..3c62bb7c2e 100644 --- a/packages/node/src/index.spec.ts +++ b/packages/node/src/index.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/index.ts b/packages/node/src/index.ts index 6c2da4045f..0816fe43f8 100644 --- a/packages/node/src/index.ts +++ b/packages/node/src/index.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/AggregateLoginHandler.spec.ts b/packages/node/src/login/AggregateLoginHandler.spec.ts index 6c6fd88c07..a6c3bda162 100644 --- a/packages/node/src/login/AggregateLoginHandler.spec.ts +++ b/packages/node/src/login/AggregateLoginHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/AggregateLoginHandler.ts b/packages/node/src/login/AggregateLoginHandler.ts index 64850639e9..b1a9044a56 100644 --- a/packages/node/src/login/AggregateLoginHandler.ts +++ b/packages/node/src/login/AggregateLoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/__mocks__/LoginHandler.ts b/packages/node/src/login/__mocks__/LoginHandler.ts index 29594140f6..33ebc34c14 100644 --- a/packages/node/src/login/__mocks__/LoginHandler.ts +++ b/packages/node/src/login/__mocks__/LoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/AggregateOidcHandler.spec.ts b/packages/node/src/login/oidc/AggregateOidcHandler.spec.ts index b4b407e8b1..687922f44a 100644 --- a/packages/node/src/login/oidc/AggregateOidcHandler.spec.ts +++ b/packages/node/src/login/oidc/AggregateOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/AggregateOidcHandler.ts b/packages/node/src/login/oidc/AggregateOidcHandler.ts index a39b6729a1..fa7f619dc8 100644 --- a/packages/node/src/login/oidc/AggregateOidcHandler.ts +++ b/packages/node/src/login/oidc/AggregateOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/ClientRegistrar.spec.ts b/packages/node/src/login/oidc/ClientRegistrar.spec.ts index 7dea8989e8..9d1b038c69 100644 --- a/packages/node/src/login/oidc/ClientRegistrar.spec.ts +++ b/packages/node/src/login/oidc/ClientRegistrar.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/ClientRegistrar.ts b/packages/node/src/login/oidc/ClientRegistrar.ts index cd71c0e78f..d29c6963f5 100644 --- a/packages/node/src/login/oidc/ClientRegistrar.ts +++ b/packages/node/src/login/oidc/ClientRegistrar.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/IssuerConfigFetcher.spec.ts b/packages/node/src/login/oidc/IssuerConfigFetcher.spec.ts index 0ab28c92ff..2cce7512fa 100644 --- a/packages/node/src/login/oidc/IssuerConfigFetcher.spec.ts +++ b/packages/node/src/login/oidc/IssuerConfigFetcher.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/IssuerConfigFetcher.ts b/packages/node/src/login/oidc/IssuerConfigFetcher.ts index 3790de276f..7d5066d534 100644 --- a/packages/node/src/login/oidc/IssuerConfigFetcher.ts +++ b/packages/node/src/login/oidc/IssuerConfigFetcher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/OidcLoginHandler.spec.ts b/packages/node/src/login/oidc/OidcLoginHandler.spec.ts index b35451a05e..61d49b9934 100644 --- a/packages/node/src/login/oidc/OidcLoginHandler.spec.ts +++ b/packages/node/src/login/oidc/OidcLoginHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/OidcLoginHandler.ts b/packages/node/src/login/oidc/OidcLoginHandler.ts index 9281991769..c125131d08 100644 --- a/packages/node/src/login/oidc/OidcLoginHandler.ts +++ b/packages/node/src/login/oidc/OidcLoginHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/Redirector.spec.ts b/packages/node/src/login/oidc/Redirector.spec.ts index 7e1ae7f00d..7f42e3fc4a 100644 --- a/packages/node/src/login/oidc/Redirector.spec.ts +++ b/packages/node/src/login/oidc/Redirector.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/Redirector.ts b/packages/node/src/login/oidc/Redirector.ts index 6457a0a4b6..3de1b7bf0d 100644 --- a/packages/node/src/login/oidc/Redirector.ts +++ b/packages/node/src/login/oidc/Redirector.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/TokenRequester.spec.ts b/packages/node/src/login/oidc/TokenRequester.spec.ts index 63ffa00e03..1409a14386 100644 --- a/packages/node/src/login/oidc/TokenRequester.spec.ts +++ b/packages/node/src/login/oidc/TokenRequester.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/TokenRequester.ts b/packages/node/src/login/oidc/TokenRequester.ts index c8adcbbd29..28caa9e583 100644 --- a/packages/node/src/login/oidc/TokenRequester.ts +++ b/packages/node/src/login/oidc/TokenRequester.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/__mocks__/ClientRegistrar.ts b/packages/node/src/login/oidc/__mocks__/ClientRegistrar.ts index ab28428b04..a7824057b4 100644 --- a/packages/node/src/login/oidc/__mocks__/ClientRegistrar.ts +++ b/packages/node/src/login/oidc/__mocks__/ClientRegistrar.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/__mocks__/IOidcHandler.ts b/packages/node/src/login/oidc/__mocks__/IOidcHandler.ts index 11014095db..884500cbf0 100644 --- a/packages/node/src/login/oidc/__mocks__/IOidcHandler.ts +++ b/packages/node/src/login/oidc/__mocks__/IOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/__mocks__/IOidcOptions.ts b/packages/node/src/login/oidc/__mocks__/IOidcOptions.ts index b714b6b7f3..c57ae8a049 100644 --- a/packages/node/src/login/oidc/__mocks__/IOidcOptions.ts +++ b/packages/node/src/login/oidc/__mocks__/IOidcOptions.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/__mocks__/IssuerConfigFetcher.ts b/packages/node/src/login/oidc/__mocks__/IssuerConfigFetcher.ts index 3ba113007f..66c88689cd 100644 --- a/packages/node/src/login/oidc/__mocks__/IssuerConfigFetcher.ts +++ b/packages/node/src/login/oidc/__mocks__/IssuerConfigFetcher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/__mocks__/Redirector.ts b/packages/node/src/login/oidc/__mocks__/Redirector.ts index 06e2d1172d..153feccd05 100644 --- a/packages/node/src/login/oidc/__mocks__/Redirector.ts +++ b/packages/node/src/login/oidc/__mocks__/Redirector.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.spec.ts b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.spec.ts index 73035d6790..e7ce99c9ca 100644 --- a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.spec.ts +++ b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts index e1885e64f1..e2f5a62a20 100644 --- a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts +++ b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts index 97c62d4c34..36baa551f3 100644 --- a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts +++ b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts index 22fa4f2a14..562950a5a3 100644 --- a/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts +++ b/packages/node/src/login/oidc/oidcHandlers/AuthorizationCodeWithPkceOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.spec.ts b/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.spec.ts index 010d33532b..a12d1d92a8 100644 --- a/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.spec.ts +++ b/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts b/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts index 08c0699d22..36b325da83 100644 --- a/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts +++ b/packages/node/src/login/oidc/oidcHandlers/ClientCredentialsOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts b/packages/node/src/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts index 9bff106534..23943820ae 100644 --- a/packages/node/src/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts +++ b/packages/node/src/login/oidc/oidcHandlers/OidcHandlerCanHandleTests.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.spec.ts b/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.spec.ts index fdcac75df5..564ba48339 100644 --- a/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.spec.ts +++ b/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts b/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts index 843fa3fdaa..7d067b41af 100644 --- a/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts +++ b/packages/node/src/login/oidc/oidcHandlers/PrimaryDeviceOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.spec.ts b/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.spec.ts index bb91aaa731..b46cbadb9f 100644 --- a/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.spec.ts +++ b/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts b/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts index ddd43822fc..7350bb97dc 100644 --- a/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts +++ b/packages/node/src/login/oidc/oidcHandlers/RefreshTokenOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.spec.ts b/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.spec.ts index ef0a8e094c..e94055b5ac 100644 --- a/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.spec.ts +++ b/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts b/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts index bb1a93c8bf..145e77c47c 100644 --- a/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts +++ b/packages/node/src/login/oidc/oidcHandlers/SecondaryDeviceOidcHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts b/packages/node/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts index 6dedbf28f0..4a07d24309 100644 --- a/packages/node/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts +++ b/packages/node/src/login/oidc/redirectHandler/AggregateRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts b/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts index 4b0ac51f6d..c71f4ddc7e 100644 --- a/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts +++ b/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts b/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts index b235305fba..cc33b71433 100644 --- a/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts +++ b/packages/node/src/login/oidc/redirectHandler/AuthCodeRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts b/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts index b29a743ecd..10c2b51ae3 100644 --- a/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts +++ b/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts b/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts index a571f1ac8a..dbe1f055eb 100644 --- a/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts +++ b/packages/node/src/login/oidc/redirectHandler/FallbackRedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts b/packages/node/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts index 29ea2c2931..4ab645572b 100644 --- a/packages/node/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts +++ b/packages/node/src/login/oidc/redirectHandler/__mocks__/RedirectHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/refresh/TokenRefresher.spec.ts b/packages/node/src/login/oidc/refresh/TokenRefresher.spec.ts index 152177a75f..477af45620 100644 --- a/packages/node/src/login/oidc/refresh/TokenRefresher.spec.ts +++ b/packages/node/src/login/oidc/refresh/TokenRefresher.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/refresh/TokenRefresher.ts b/packages/node/src/login/oidc/refresh/TokenRefresher.ts index cbb6954b7e..e7b6b41d9c 100644 --- a/packages/node/src/login/oidc/refresh/TokenRefresher.ts +++ b/packages/node/src/login/oidc/refresh/TokenRefresher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/login/oidc/refresh/__mocks__/TokenRefresher.ts b/packages/node/src/login/oidc/refresh/__mocks__/TokenRefresher.ts index c7c5bf0cf1..590fbe4bbe 100644 --- a/packages/node/src/login/oidc/refresh/__mocks__/TokenRefresher.ts +++ b/packages/node/src/login/oidc/refresh/__mocks__/TokenRefresher.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/logout/GeneralLogoutHandler.spec.ts b/packages/node/src/logout/GeneralLogoutHandler.spec.ts index 78d09227e4..9d784c670f 100644 --- a/packages/node/src/logout/GeneralLogoutHandler.spec.ts +++ b/packages/node/src/logout/GeneralLogoutHandler.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/logout/GeneralLogoutHandler.ts b/packages/node/src/logout/GeneralLogoutHandler.ts index ec6cb2aae7..e657266e09 100644 --- a/packages/node/src/logout/GeneralLogoutHandler.ts +++ b/packages/node/src/logout/GeneralLogoutHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/logout/__mocks__/LogoutHandler.ts b/packages/node/src/logout/__mocks__/LogoutHandler.ts index aafe67fe1e..46ebbd7220 100644 --- a/packages/node/src/logout/__mocks__/LogoutHandler.ts +++ b/packages/node/src/logout/__mocks__/LogoutHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/sessionInfo/SessionInfoManager.spec.ts b/packages/node/src/sessionInfo/SessionInfoManager.spec.ts index f4e58239b2..afac1a6bc6 100644 --- a/packages/node/src/sessionInfo/SessionInfoManager.spec.ts +++ b/packages/node/src/sessionInfo/SessionInfoManager.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/sessionInfo/SessionInfoManager.ts b/packages/node/src/sessionInfo/SessionInfoManager.ts index ea2a387b59..e14e9504d6 100644 --- a/packages/node/src/sessionInfo/SessionInfoManager.ts +++ b/packages/node/src/sessionInfo/SessionInfoManager.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/sessionInfo/__mocks__/SessionInfoManager.ts b/packages/node/src/sessionInfo/__mocks__/SessionInfoManager.ts index b2dd82300d..9975a39cf9 100644 --- a/packages/node/src/sessionInfo/__mocks__/SessionInfoManager.ts +++ b/packages/node/src/sessionInfo/__mocks__/SessionInfoManager.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/storage/FileSystemStorage.spec.ts b/packages/node/src/storage/FileSystemStorage.spec.ts index e0d22c6ebf..215fba5669 100644 --- a/packages/node/src/storage/FileSystemStorage.spec.ts +++ b/packages/node/src/storage/FileSystemStorage.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/storage/FileSystemStorage.ts b/packages/node/src/storage/FileSystemStorage.ts index bb7b5ba36e..5e5a8b2d1d 100644 --- a/packages/node/src/storage/FileSystemStorage.ts +++ b/packages/node/src/storage/FileSystemStorage.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/storage/StorageUtility.ts b/packages/node/src/storage/StorageUtility.ts index 9c3d942c8d..a0753bde6b 100644 --- a/packages/node/src/storage/StorageUtility.ts +++ b/packages/node/src/storage/StorageUtility.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/util/UUIDGenerator.spec.ts b/packages/node/src/util/UUIDGenerator.spec.ts index 777b72833d..cb8d9a9f74 100644 --- a/packages/node/src/util/UUIDGenerator.spec.ts +++ b/packages/node/src/util/UUIDGenerator.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/util/UuidGenerator.ts b/packages/node/src/util/UuidGenerator.ts index b716aaa4f6..188500b289 100644 --- a/packages/node/src/util/UuidGenerator.ts +++ b/packages/node/src/util/UuidGenerator.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/util/__mocks__/UuidGenerator.ts b/packages/node/src/util/__mocks__/UuidGenerator.ts index 99de0a7728..915b5f8041 100644 --- a/packages/node/src/util/__mocks__/UuidGenerator.ts +++ b/packages/node/src/util/__mocks__/UuidGenerator.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/node/src/util/urlPath.ts b/packages/node/src/util/urlPath.ts index 928ac77b09..b5f21ef7f0 100644 --- a/packages/node/src/util/urlPath.ts +++ b/packages/node/src/util/urlPath.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/cleanup/cleanup.spec.ts b/packages/oidc/src/cleanup/cleanup.spec.ts index a3e78b1498..b78b43cc9e 100644 --- a/packages/oidc/src/cleanup/cleanup.spec.ts +++ b/packages/oidc/src/cleanup/cleanup.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/cleanup/cleanup.ts b/packages/oidc/src/cleanup/cleanup.ts index e71c20055f..6219802364 100644 --- a/packages/oidc/src/cleanup/cleanup.ts +++ b/packages/oidc/src/cleanup/cleanup.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/common/types.ts b/packages/oidc/src/common/types.ts index 0a8979ea18..f7f8636f26 100644 --- a/packages/oidc/src/common/types.ts +++ b/packages/oidc/src/common/types.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dcr/clientRegistrar.spec.ts b/packages/oidc/src/dcr/clientRegistrar.spec.ts index ffd87ad2e0..61485ac91c 100644 --- a/packages/oidc/src/dcr/clientRegistrar.spec.ts +++ b/packages/oidc/src/dcr/clientRegistrar.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dcr/clientRegistrar.ts b/packages/oidc/src/dcr/clientRegistrar.ts index 5a188ae938..b6252bbf1c 100644 --- a/packages/oidc/src/dcr/clientRegistrar.ts +++ b/packages/oidc/src/dcr/clientRegistrar.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dpop/dpop.spec.ts b/packages/oidc/src/dpop/dpop.spec.ts index 6f9fd061bb..529565c2c4 100644 --- a/packages/oidc/src/dpop/dpop.spec.ts +++ b/packages/oidc/src/dpop/dpop.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dpop/dpop.ts b/packages/oidc/src/dpop/dpop.ts index c29aa7d953..4487469c14 100644 --- a/packages/oidc/src/dpop/dpop.ts +++ b/packages/oidc/src/dpop/dpop.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dpop/keyGeneration.spec.ts b/packages/oidc/src/dpop/keyGeneration.spec.ts index 5247c9b97b..b3fe1b184b 100644 --- a/packages/oidc/src/dpop/keyGeneration.spec.ts +++ b/packages/oidc/src/dpop/keyGeneration.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dpop/keyGeneration.ts b/packages/oidc/src/dpop/keyGeneration.ts index b35c2b7a61..b8d7dfd8aa 100644 --- a/packages/oidc/src/dpop/keyGeneration.ts +++ b/packages/oidc/src/dpop/keyGeneration.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dpop/tokenExchange.spec.ts b/packages/oidc/src/dpop/tokenExchange.spec.ts index 173a99f675..3e0403b183 100644 --- a/packages/oidc/src/dpop/tokenExchange.spec.ts +++ b/packages/oidc/src/dpop/tokenExchange.spec.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/dpop/tokenExchange.ts b/packages/oidc/src/dpop/tokenExchange.ts index 0c6938ca44..91cfb8219e 100644 --- a/packages/oidc/src/dpop/tokenExchange.ts +++ b/packages/oidc/src/dpop/tokenExchange.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/packages/oidc/src/index.ts b/packages/oidc/src/index.ts index 675cb99ffa..1439121c35 100644 --- a/packages/oidc/src/index.ts +++ b/packages/oidc/src/index.ts @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in diff --git a/resources/license-header.js b/resources/license-header.js index 1eb6ab1216..2e6ea92e16 100644 --- a/resources/license-header.js +++ b/resources/license-header.js @@ -1,5 +1,5 @@ /* - * Copyright 2020 Inrupt Inc. + * Copyright 2021 Inrupt Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal in