diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000000..14db0c5cf7
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,193 @@
+path = require('path');
+module.exports = {
+ root: true,
+ ignorePatterns: [
+ 'projects/**/*',
+ '**/node_modules/**/*',
+ 'lib/cli/node_modules/**/*',
+ '**/node_modules',
+ '**/docker',
+ '**/assets',
+ '**/scripts',
+ '**/docs'
+ ],
+ overrides: [
+ {
+ files: [
+ '*.ts'
+ ],
+ parserOptions: {
+ project: [
+ path.join(__dirname, 'tsconfig.json'),
+ path.join(__dirname, 'e2e/tsconfig.e2e.json')
+ ],
+ createDefaultProgram: true
+ },
+ extends: [
+ 'plugin:@angular-eslint/ng-cli-compat',
+ 'plugin:@angular-eslint/ng-cli-compat--formatting-add-on',
+ 'plugin:@angular-eslint/template/process-inline-templates'
+ ],
+ plugins: [
+ 'eslint-plugin-unicorn',
+ 'eslint-plugin-rxjs',
+ 'ban',
+ 'license-header'
+ ],
+ rules: {
+ 'ban/ban': [
+ 'error',
+ { name: 'eval', message: 'Calls to eval is not allowed.' },
+ { name: 'fdescribe', message: 'Calls to fdescribe is not allowed' },
+ { name: 'fit', message: 'Calls to fit is not allowed' },
+ { name: 'xit', message: 'Calls to xit is not allowed' },
+ { name: 'xdescribe', message: 'Calls to xdescribe is not allowed' },
+ { name: ['test', 'only'], message: 'Calls to test.only is not allowed' },
+ { name: ['describe', 'only'], message: 'Calls to describe.only is not allowed' }
+ ],
+ '@angular-eslint/component-selector': [
+ 'error',
+ {
+ type: 'element',
+ prefix: [
+ 'adf',
+ 'app'
+ ],
+ style: 'kebab-case'
+ }
+ ],
+ '@angular-eslint/directive-selector': [
+ 'error',
+ {
+ type: [
+ 'element',
+ 'attribute'
+ ],
+ prefix: [
+ 'adf',
+ 'app'
+ ],
+ style: 'kebab-case'
+ }
+ ],
+ '@angular-eslint/no-host-metadata-property': 'off',
+ '@angular-eslint/no-input-prefix': 'error',
+ '@typescript-eslint/consistent-type-definitions': 'error',
+ '@typescript-eslint/dot-notation': 'off',
+ '@typescript-eslint/explicit-member-accessibility': [
+ 'off',
+ {
+ accessibility: 'explicit'
+ }
+ ],
+ '@typescript-eslint/no-inferrable-types': 'off',
+ '@typescript-eslint/no-require-imports': 'off',
+ '@typescript-eslint/no-var-requires': 'error',
+ '@typescript-eslint/naming-convention': [
+ 'error',
+ {
+ selector: [
+ 'classProperty',
+ 'objectLiteralProperty',
+ 'typeProperty',
+ 'classMethod',
+ 'objectLiteralMethod',
+ 'typeMethod',
+ 'accessor',
+ 'enumMember'
+ ],
+ format: null,
+ modifiers: ['requiresQuotes']
+ }
+ ],
+ '@typescript-eslint/member-ordering': 'off',
+ 'prefer-arrow/prefer-arrow-functions': 'off',
+
+ 'brace-style': [
+ 'error',
+ '1tbs'
+ ],
+ 'comma-dangle': 'error',
+ 'default-case': 'error',
+ 'import/order': 'off',
+ 'max-len': [
+ 'error',
+ {
+ code: 240
+ }
+ ],
+ 'no-bitwise': 'off',
+ 'no-console': [
+ 'error',
+ {
+ allow: [
+ 'warn',
+ 'dir',
+ 'timeLog',
+ 'assert',
+ 'clear',
+ 'count',
+ 'countReset',
+ 'group',
+ 'groupEnd',
+ 'table',
+ 'dirxml',
+ 'error',
+ 'groupCollapsed',
+ 'Console',
+ 'profile',
+ 'profileEnd',
+ 'timeStamp',
+ 'context'
+ ]
+ }
+ ],
+ 'no-duplicate-imports': 'error',
+ 'no-multiple-empty-lines': 'error',
+ 'no-redeclare': 'error',
+ 'no-return-await': 'error',
+ 'rxjs/no-create': 'error',
+ 'rxjs/no-subject-unsubscribe': 'error',
+ 'rxjs/no-subject-value': 'error',
+ 'rxjs/no-unsafe-takeuntil': 'error',
+ 'unicorn/filename-case': 'error',
+ '@typescript-eslint/no-unused-expressions': [
+ 'error',
+ {
+ allowShortCircuit: true,
+ allowTernary: true
+ }
+ ],
+ 'license-header/header': ['error',
+ [
+ '/*!',
+ ' * @license',
+ ' * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.',
+ ' *',
+ ' * Licensed under the Apache License, Version 2.0 (the \"License\");',
+ ' * you may not use this file except in compliance with the License.',
+ ' * You may obtain a copy of the License at',
+ ' *',
+ ' * http://www.apache.org/licenses/LICENSE-2.0',
+ ' *',
+ ' * Unless required by applicable law or agreed to in writing, software',
+ ' * distributed under the License is distributed on an \"AS IS\" BASIS,',
+ ' * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.',
+ ' * See the License for the specific language governing permissions and',
+ ' * limitations under the License.',
+ ' */'
+ ]
+ ]
+ }
+ },
+ {
+ files: [
+ '*.html'
+ ],
+ extends: [
+ 'plugin:@angular-eslint/template/recommended'
+ ],
+ rules: {}
+ }
+ ]
+}
diff --git a/.eslintrc.json b/.eslintrc.json
deleted file mode 100644
index e881d667cc..0000000000
--- a/.eslintrc.json
+++ /dev/null
@@ -1,173 +0,0 @@
-{
- "root": true,
- "ignorePatterns": [
- "projects/**/*",
- "**/node_modules/**/*",
- "lib/cli/node_modules/**/*",
- "**/node_modules",
- "**/docker",
- "**/assets",
- "**/scripts",
- "**/docs"
- ],
- "overrides": [
- {
- "files": [
- "*.ts"
- ],
- "parserOptions": {
- "project": [
- "tsconfig.json",
- "e2e/tsconfig.e2e.json"
- ],
- "createDefaultProgram": true
- },
- "extends": [
- "plugin:@angular-eslint/ng-cli-compat",
- "plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
- "plugin:@angular-eslint/template/process-inline-templates"
- ],
- "plugins": [
- "eslint-plugin-unicorn",
- "eslint-plugin-rxjs",
- "ban",
- "license-header"
- ],
- "rules": {
- "ban/ban": [
- "error",
- { "name": "eval", "message": "Calls to eval is not allowed." },
- { "name": "fdescribe", "message": "Calls to fdescribe is not allowed" },
- { "name": "fit", "message": "Calls to fit is not allowed" },
- { "name": "xit", "message": "Calls to xit is not allowed" },
- { "name": "xdescribe", "message": "Calls to xdescribe is not allowed" },
- { "name": ["test", "only"], "message": "Calls to test.only is not allowed" },
- { "name": ["describe", "only"], "message": "Calls to describe.only is not allowed" }
- ],
- "@angular-eslint/component-selector": [
- "error",
- {
- "type": "element",
- "prefix": [
- "adf",
- "app"
- ],
- "style": "kebab-case"
- }
- ],
- "@angular-eslint/directive-selector": [
- "error",
- {
- "type": [
- "element",
- "attribute"
- ],
- "prefix": [
- "adf",
- "app"
- ],
- "style": "kebab-case"
- }
- ],
- "@angular-eslint/no-host-metadata-property": "off",
- "@angular-eslint/no-input-prefix": "error",
- "@typescript-eslint/consistent-type-definitions": "error",
- "@typescript-eslint/dot-notation": "off",
- "@typescript-eslint/explicit-member-accessibility": [
- "off",
- {
- "accessibility": "explicit"
- }
- ],
- "@typescript-eslint/no-inferrable-types": "off",
- "@typescript-eslint/no-require-imports": "off",
- "@typescript-eslint/no-var-requires": "error",
- "@typescript-eslint/naming-convention": [
- "error",
- {
- "selector": [
- "classProperty",
- "objectLiteralProperty",
- "typeProperty",
- "classMethod",
- "objectLiteralMethod",
- "typeMethod",
- "accessor",
- "enumMember"
- ],
- "format": null,
- "modifiers": ["requiresQuotes"]
- }
- ],
- "@typescript-eslint/member-ordering": "off",
- "prefer-arrow/prefer-arrow-functions": "off",
-
- "brace-style": [
- "error",
- "1tbs"
- ],
- "comma-dangle": "error",
- "default-case": "error",
- "import/order": "off",
- "max-len": [
- "error",
- {
- "code": 240
- }
- ],
- "no-bitwise": "off",
- "no-console": [
- "error",
- {
- "allow": [
- "warn",
- "dir",
- "timeLog",
- "assert",
- "clear",
- "count",
- "countReset",
- "group",
- "groupEnd",
- "table",
- "dirxml",
- "error",
- "groupCollapsed",
- "Console",
- "profile",
- "profileEnd",
- "timeStamp",
- "context"
- ]
- }
- ],
- "no-duplicate-imports": "error",
- "no-multiple-empty-lines": "error",
- "no-redeclare": "error",
- "no-return-await": "error",
- "rxjs/no-create": "error",
- "rxjs/no-subject-unsubscribe": "error",
- "rxjs/no-subject-value": "error",
- "rxjs/no-unsafe-takeuntil": "error",
- "unicorn/filename-case": "error",
- "@typescript-eslint/no-unused-expressions": [
- "error",
- {
- "allowShortCircuit": true,
- "allowTernary": true
- }
- ],
- "license-header/header": ["error", "./license-community.txt"]
- }
- },
- {
- "files": [
- "*.html"
- ],
- "extends": [
- "plugin:@angular-eslint/template/recommended"
- ],
- "rules": {}
- }
- ]
-}
diff --git a/cspell.json b/cspell.json
index 49b9e5cbac..15a46bcc35 100644
--- a/cspell.json
+++ b/cspell.json
@@ -62,6 +62,7 @@
"hardend",
"highlightable",
"hotfix",
+ "Hyland",
"imgpreview",
"Inplace",
"intitem",
diff --git a/demo-shell/.eslintrc.js b/demo-shell/.eslintrc.js
new file mode 100644
index 0000000000..ed1de7b4c4
--- /dev/null
+++ b/demo-shell/.eslintrc.js
@@ -0,0 +1,95 @@
+path = require('path');
+module.exports = {
+ extends: '../.eslintrc.js',
+ ignorePatterns: [
+ '!**/*'
+ ],
+ overrides: [
+ {
+ files: [
+ '*.ts'
+ ],
+ parserOptions: {
+ project: [
+ path.join(__dirname, 'tsconfig.app.json'),
+ path.join(__dirname, 'src/tsconfig.spec.json'),
+ path.join(__dirname, 'e2e/tsconfig.e2e.json')
+ ],
+ createDefaultProgram: true
+ },
+ plugins: [
+ 'eslint-plugin-unicorn',
+ 'eslint-plugin-rxjs'
+ ],
+ rules: {
+ '@angular-eslint/component-selector': [
+ 'error',
+ {
+ type: 'element',
+ prefix: [
+ 'adf',
+ 'app'
+ ],
+ style: 'kebab-case'
+ }
+ ],
+ '@angular-eslint/directive-selector': [
+ 'error',
+ {
+ type: [
+ 'element',
+ 'attribute'
+ ],
+ prefix: [
+ 'adf',
+ 'app'
+ ],
+ style: 'kebab-case'
+ }
+ ],
+ '@angular-eslint/no-host-metadata-property': 'off',
+ '@angular-eslint/no-input-prefix': 'error',
+ '@typescript-eslint/consistent-type-definitions': 'error',
+ '@typescript-eslint/dot-notation': 'off',
+ '@typescript-eslint/explicit-member-accessibility': [
+ 'off',
+ {
+ accessibility: 'explicit'
+ }
+ ],
+ '@typescript-eslint/no-inferrable-types': 'off',
+ '@typescript-eslint/no-require-imports': 'off',
+ '@typescript-eslint/no-var-requires': 'error',
+ 'brace-style': [
+ 'error',
+ '1tbs'
+ ],
+ 'comma-dangle': 'error',
+ 'default-case': 'error',
+ 'import/order': 'off',
+ 'max-len': [
+ 'error',
+ {
+ code: 240
+ }
+ ],
+ 'no-bitwise': 'off',
+ 'no-duplicate-imports': 'error',
+ 'no-multiple-empty-lines': 'error',
+ 'no-redeclare': 'error',
+ 'no-return-await': 'error',
+ 'rxjs/no-create': 'error',
+ 'rxjs/no-subject-unsubscribe': 'error',
+ 'rxjs/no-subject-value': 'error',
+ 'rxjs/no-unsafe-takeuntil': 'error',
+ 'unicorn/filename-case': 'error'
+ }
+ },
+ {
+ files: [
+ '*.html'
+ ],
+ rules: {}
+ }
+ ]
+}
diff --git a/demo-shell/.eslintrc.json b/demo-shell/.eslintrc.json
deleted file mode 100644
index 2173f15d66..0000000000
--- a/demo-shell/.eslintrc.json
+++ /dev/null
@@ -1,94 +0,0 @@
-{
- "extends": "../.eslintrc.json",
- "ignorePatterns": [
- "!**/*"
- ],
- "overrides": [
- {
- "files": [
- "*.ts"
- ],
- "parserOptions": {
- "project": [
- "demo-shell/tsconfig.app.json",
- "demo-shell/src/tsconfig.spec.json",
- "demo-shell/e2e/tsconfig.e2e.json"
- ],
- "createDefaultProgram": true
- },
- "plugins": [
- "eslint-plugin-unicorn",
- "eslint-plugin-rxjs"
- ],
- "rules": {
- "@angular-eslint/component-selector": [
- "error",
- {
- "type": "element",
- "prefix": [
- "adf",
- "app"
- ],
- "style": "kebab-case"
- }
- ],
- "@angular-eslint/directive-selector": [
- "error",
- {
- "type": [
- "element",
- "attribute"
- ],
- "prefix": [
- "adf",
- "app"
- ],
- "style": "kebab-case"
- }
- ],
- "@angular-eslint/no-host-metadata-property": "off",
- "@angular-eslint/no-input-prefix": "error",
- "@typescript-eslint/consistent-type-definitions": "error",
- "@typescript-eslint/dot-notation": "off",
- "@typescript-eslint/explicit-member-accessibility": [
- "off",
- {
- "accessibility": "explicit"
- }
- ],
- "@typescript-eslint/no-inferrable-types": "off",
- "@typescript-eslint/no-require-imports": "off",
- "@typescript-eslint/no-var-requires": "error",
- "brace-style": [
- "error",
- "1tbs"
- ],
- "comma-dangle": "error",
- "default-case": "error",
- "import/order": "off",
- "max-len": [
- "error",
- {
- "code": 240
- }
- ],
- "no-bitwise": "off",
- "no-duplicate-imports": "error",
- "no-multiple-empty-lines": "error",
- "no-redeclare": "error",
- "no-return-await": "error",
- "rxjs/no-create": "error",
- "rxjs/no-subject-unsubscribe": "error",
- "rxjs/no-subject-value": "error",
- "rxjs/no-unsafe-takeuntil": "error",
- "unicorn/filename-case": "error"
- }
- },
- {
- "files": [
- "*.html"
- ],
- "rules": {}
- }
- ]
-}
diff --git a/demo-shell/e2e/app.e2e-spec.e2e.ts b/demo-shell/e2e/app.e2e-spec.e2e.ts
index 92c6c0630a..e411de897b 100644
--- a/demo-shell/e2e/app.e2e-spec.e2e.ts
+++ b/demo-shell/e2e/app.e2e-spec.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/e2e/app.po.ts b/demo-shell/e2e/app.po.ts
index 4498ecf801..c6b0a2e213 100644
--- a/demo-shell/e2e/app.po.ts
+++ b/demo-shell/e2e/app.po.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/package.json b/demo-shell/package.json
index 97dbde878a..32673a5ad7 100644
--- a/demo-shell/package.json
+++ b/demo-shell/package.json
@@ -2,7 +2,7 @@
"name": "Alfresco-ADF-Angular-Demo",
"description": "Demo shell for Alfresco Angular components",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/demo-shell/src/app.config.json b/demo-shell/src/app.config.json
index 6a8abf7e33..1fb923074c 100644
--- a/demo-shell/src/app.config.json
+++ b/demo-shell/src/app.config.json
@@ -34,7 +34,7 @@
"application": {
"storagePrefix": "ADF",
"name": "Alfresco ADF Application",
- "copyright": "© 2016 - 2021 Alfresco Software, Inc. All Rights Reserved."
+ "copyright": "© 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved."
},
"notifications": true,
"search": [{
diff --git a/demo-shell/src/app/app.component.ts b/demo-shell/src/app/app.component.ts
index b7f088aea7..416e56d109 100644
--- a/demo-shell/src/app/app.component.ts
+++ b/demo-shell/src/app/app.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/app.module.ts b/demo-shell/src/app/app.module.ts
index 73476a11cd..dddf2906e6 100644
--- a/demo-shell/src/app/app.module.ts
+++ b/demo-shell/src/app/app.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/app.routes.ts b/demo-shell/src/app/app.routes.ts
index 938eaf8711..0f3612b8cd 100644
--- a/demo-shell/src/app/app.routes.ts
+++ b/demo-shell/src/app/app.routes.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/about/about.component.ts b/demo-shell/src/app/components/about/about.component.ts
index bb590f868b..9d06115765 100644
--- a/demo-shell/src/app/components/about/about.component.ts
+++ b/demo-shell/src/app/components/about/about.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/about/about.module.ts b/demo-shell/src/app/components/about/about.module.ts
index 08295a3849..604f426100 100644
--- a/demo-shell/src/app/components/about/about.module.ts
+++ b/demo-shell/src/app/components/about/about.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/app-layout/app-layout.component.ts b/demo-shell/src/app/components/app-layout/app-layout.component.ts
index 7a3c0ec586..fb8d0b0f43 100644
--- a/demo-shell/src/app/components/app-layout/app-layout.component.ts
+++ b/demo-shell/src/app/components/app-layout/app-layout.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.ts b/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.ts
index 1701bf8d11..7114f27434 100644
--- a/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.ts
+++ b/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/app-layout/user-info/user-info.component.ts b/demo-shell/src/app/components/app-layout/user-info/user-info.component.ts
index 74b7ab9483..4d29c42294 100644
--- a/demo-shell/src/app/components/app-layout/user-info/user-info.component.ts
+++ b/demo-shell/src/app/components/app-layout/user-info/user-info.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.ts b/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.ts
index 766cced546..cd0ffe3480 100644
--- a/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.ts
+++ b/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.ts b/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.ts
index 77cb914295..928f679d68 100644
--- a/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.ts
+++ b/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.module.ts b/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.module.ts
index 8e398f20a5..e7b1affecc 100644
--- a/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.module.ts
+++ b/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/card-view/card-view.component.ts b/demo-shell/src/app/components/card-view/card-view.component.ts
index 6d4448b575..b015868636 100644
--- a/demo-shell/src/app/components/card-view/card-view.component.ts
+++ b/demo-shell/src/app/components/card-view/card-view.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/card-view/card-view.module.ts b/demo-shell/src/app/components/card-view/card-view.module.ts
index 8a1ca570a8..f1383fb2dd 100644
--- a/demo-shell/src/app/components/card-view/card-view.module.ts
+++ b/demo-shell/src/app/components/card-view/card-view.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/apps-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/apps-cloud-demo.component.ts
index f78e92f483..60985a2e80 100644
--- a/demo-shell/src/app/components/cloud/apps-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/apps-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/cloud-breadcrumb-component.ts b/demo-shell/src/app/components/cloud/cloud-breadcrumb-component.ts
index f932b77160..450559d526 100644
--- a/demo-shell/src/app/components/cloud/cloud-breadcrumb-component.ts
+++ b/demo-shell/src/app/components/cloud/cloud-breadcrumb-component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/cloud-filters-demo.component.ts b/demo-shell/src/app/components/cloud/cloud-filters-demo.component.ts
index 9e8bb3d277..9aa6e39aa0 100644
--- a/demo-shell/src/app/components/cloud/cloud-filters-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/cloud-filters-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/cloud-layout.component.ts b/demo-shell/src/app/components/cloud/cloud-layout.component.ts
index fd9269202e..998f8ab107 100644
--- a/demo-shell/src/app/components/cloud/cloud-layout.component.ts
+++ b/demo-shell/src/app/components/cloud/cloud-layout.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/cloud-viewer.component.ts b/demo-shell/src/app/components/cloud/cloud-viewer.component.ts
index 7512eaadbc..b038b66328 100644
--- a/demo-shell/src/app/components/cloud/cloud-viewer.component.ts
+++ b/demo-shell/src/app/components/cloud/cloud-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-cloud.component.ts b/demo-shell/src/app/components/cloud/community/community-cloud.component.ts
index 7cb11c2bbd..632cf990c3 100644
--- a/demo-shell/src/app/components/cloud/community/community-cloud.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-filters.component.ts b/demo-shell/src/app/components/cloud/community/community-filters.component.ts
index ea998d5703..b55dfb5181 100644
--- a/demo-shell/src/app/components/cloud/community/community-filters.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-filters.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-process-details-cloud.component.ts b/demo-shell/src/app/components/cloud/community/community-process-details-cloud.component.ts
index d8b1ccc56a..2140a308cd 100644
--- a/demo-shell/src/app/components/cloud/community/community-process-details-cloud.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-process-details-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-processes-cloud.component.ts b/demo-shell/src/app/components/cloud/community/community-processes-cloud.component.ts
index a0cee63eb8..af7790d3ff 100644
--- a/demo-shell/src/app/components/cloud/community/community-processes-cloud.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-processes-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-start-process-cloud.component.ts b/demo-shell/src/app/components/cloud/community/community-start-process-cloud.component.ts
index f4412033ab..b9331547e2 100644
--- a/demo-shell/src/app/components/cloud/community/community-start-process-cloud.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-start-process-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-start-task-cloud.component.ts b/demo-shell/src/app/components/cloud/community/community-start-task-cloud.component.ts
index 68c28fe204..58853869af 100644
--- a/demo-shell/src/app/components/cloud/community/community-start-task-cloud.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-start-task-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-task-cloud.component.ts b/demo-shell/src/app/components/cloud/community/community-task-cloud.component.ts
index 7e4f4ac592..360c3d1ba4 100644
--- a/demo-shell/src/app/components/cloud/community/community-task-cloud.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-task-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community-task-details-cloud.component.ts b/demo-shell/src/app/components/cloud/community/community-task-details-cloud.component.ts
index 521b24e240..e1bc2ec187 100644
--- a/demo-shell/src/app/components/cloud/community/community-task-details-cloud.component.ts
+++ b/demo-shell/src/app/components/cloud/community/community-task-details-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/community/community.module.ts b/demo-shell/src/app/components/cloud/community/community.module.ts
index 7b12398c0e..f92617b4cd 100644
--- a/demo-shell/src/app/components/cloud/community/community.module.ts
+++ b/demo-shell/src/app/components/cloud/community/community.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/custom-form-components/custom-editor.component.ts b/demo-shell/src/app/components/cloud/custom-form-components/custom-editor.component.ts
index e81fe92613..afabfad8bb 100644
--- a/demo-shell/src/app/components/cloud/custom-form-components/custom-editor.component.ts
+++ b/demo-shell/src/app/components/cloud/custom-form-components/custom-editor.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/people-groups-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/people-groups-cloud-demo.component.ts
index 041e20faeb..ad1c0760e7 100644
--- a/demo-shell/src/app/components/cloud/people-groups-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/people-groups-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/process-cloud-layout.component.ts b/demo-shell/src/app/components/cloud/process-cloud-layout.component.ts
index 40491fa6f4..c145232b8b 100644
--- a/demo-shell/src/app/components/cloud/process-cloud-layout.component.ts
+++ b/demo-shell/src/app/components/cloud/process-cloud-layout.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/process-details-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/process-details-cloud-demo.component.ts
index faa9f1daaa..3abb8e9268 100644
--- a/demo-shell/src/app/components/cloud/process-details-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/process-details-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/processes-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/processes-cloud-demo.component.ts
index 2310f06226..5a6c41c6aa 100644
--- a/demo-shell/src/app/components/cloud/processes-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/processes-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/service-task-list-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/service-task-list-cloud-demo.component.ts
index 3d9379eab7..594b474982 100644
--- a/demo-shell/src/app/components/cloud/service-task-list-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/service-task-list-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/services/cloud-layout.service.ts b/demo-shell/src/app/components/cloud/services/cloud-layout.service.ts
index 8c5ff0dc60..5d2267ec03 100644
--- a/demo-shell/src/app/components/cloud/services/cloud-layout.service.ts
+++ b/demo-shell/src/app/components/cloud/services/cloud-layout.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/services/cloud-process-filters.service.ts b/demo-shell/src/app/components/cloud/services/cloud-process-filters.service.ts
index 8aafd259db..1df0d68e67 100644
--- a/demo-shell/src/app/components/cloud/services/cloud-process-filters.service.ts
+++ b/demo-shell/src/app/components/cloud/services/cloud-process-filters.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/shared/cloud-settings.component.ts b/demo-shell/src/app/components/cloud/shared/cloud-settings.component.ts
index 84975332e6..cd51e926c2 100644
--- a/demo-shell/src/app/components/cloud/shared/cloud-settings.component.ts
+++ b/demo-shell/src/app/components/cloud/shared/cloud-settings.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/shared/cloud.shared.module.ts b/demo-shell/src/app/components/cloud/shared/cloud.shared.module.ts
index 7f91f3a014..d0020a2106 100644
--- a/demo-shell/src/app/components/cloud/shared/cloud.shared.module.ts
+++ b/demo-shell/src/app/components/cloud/shared/cloud.shared.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/start-process-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/start-process-cloud-demo.component.ts
index 1b531ede2e..a59b14db1a 100644
--- a/demo-shell/src/app/components/cloud/start-process-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/start-process-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/start-task-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/start-task-cloud-demo.component.ts
index cd7f94422e..9fe1e14da9 100644
--- a/demo-shell/src/app/components/cloud/start-task-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/start-task-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/task-details-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/task-details-cloud-demo.component.ts
index fc4aaac19f..ee0af477a1 100644
--- a/demo-shell/src/app/components/cloud/task-details-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/task-details-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/task-header-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/task-header-cloud-demo.component.ts
index 70de9c463c..164b2e9f2a 100644
--- a/demo-shell/src/app/components/cloud/task-header-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/task-header-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts b/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts
index 74b396277e..2e502896c3 100644
--- a/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts
+++ b/demo-shell/src/app/components/cloud/tasks-cloud-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/config-editor/config-editor.component.ts b/demo-shell/src/app/components/config-editor/config-editor.component.ts
index 1572f4e2c5..4442eab6e1 100644
--- a/demo-shell/src/app/components/config-editor/config-editor.component.ts
+++ b/demo-shell/src/app/components/config-editor/config-editor.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/config-editor/config-editor.module.ts b/demo-shell/src/app/components/config-editor/config-editor.module.ts
index 0eeae9cb32..af76851960 100644
--- a/demo-shell/src/app/components/config-editor/config-editor.module.ts
+++ b/demo-shell/src/app/components/config-editor/config-editor.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/confirm-dialog/confirm-dialog-example.component.ts b/demo-shell/src/app/components/confirm-dialog/confirm-dialog-example.component.ts
index 3aa6c53609..b1d2b2175b 100644
--- a/demo-shell/src/app/components/confirm-dialog/confirm-dialog-example.component.ts
+++ b/demo-shell/src/app/components/confirm-dialog/confirm-dialog-example.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts b/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts
index 1abfb900ed..de2a912184 100644
--- a/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts
+++ b/demo-shell/src/app/components/content-node-selector/content-node-selector.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/content-node-selector/content-node-selector.module.ts b/demo-shell/src/app/components/content-node-selector/content-node-selector.module.ts
index ce4fca91c7..21169c3145 100644
--- a/demo-shell/src/app/components/content-node-selector/content-node-selector.module.ts
+++ b/demo-shell/src/app/components/content-node-selector/content-node-selector.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/datatable/copy-content/datatable.component.ts b/demo-shell/src/app/components/datatable/copy-content/datatable.component.ts
index 9b486aa3ab..c7eaa16355 100644
--- a/demo-shell/src/app/components/datatable/copy-content/datatable.component.ts
+++ b/demo-shell/src/app/components/datatable/copy-content/datatable.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/datatable/copy-content/datatable.module.ts b/demo-shell/src/app/components/datatable/copy-content/datatable.module.ts
index a0c4bf999a..45b4aab199 100644
--- a/demo-shell/src/app/components/datatable/copy-content/datatable.module.ts
+++ b/demo-shell/src/app/components/datatable/copy-content/datatable.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/datatable/datatable.component.ts b/demo-shell/src/app/components/datatable/datatable.component.ts
index f65d888c03..902823dd85 100644
--- a/demo-shell/src/app/components/datatable/datatable.component.ts
+++ b/demo-shell/src/app/components/datatable/datatable.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/datatable/datatable.module.ts b/demo-shell/src/app/components/datatable/datatable.module.ts
index 7dc75d0299..d55c2b616e 100644
--- a/demo-shell/src/app/components/datatable/datatable.module.ts
+++ b/demo-shell/src/app/components/datatable/datatable.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.component.ts b/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.component.ts
index 0392f9c502..e491135fc8 100644
--- a/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.component.ts
+++ b/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.module.ts b/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.module.ts
index 846b7b668c..60db99479d 100644
--- a/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.module.ts
+++ b/demo-shell/src/app/components/datatable/drag-and-drop/datatable-dnd.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/document-list/extension-presets/extension-presets.component.ts b/demo-shell/src/app/components/document-list/extension-presets/extension-presets.component.ts
index 66ff5207e5..697a555304 100644
--- a/demo-shell/src/app/components/document-list/extension-presets/extension-presets.component.ts
+++ b/demo-shell/src/app/components/document-list/extension-presets/extension-presets.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/document-list/extension-presets/extension-presets.module.ts b/demo-shell/src/app/components/document-list/extension-presets/extension-presets.module.ts
index d6227617df..e17b6ae0fb 100644
--- a/demo-shell/src/app/components/document-list/extension-presets/extension-presets.module.ts
+++ b/demo-shell/src/app/components/document-list/extension-presets/extension-presets.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/document-list/extension-presets/name-column/name-column.component.ts b/demo-shell/src/app/components/document-list/extension-presets/name-column/name-column.component.ts
index 1ac355741c..c1201c2321 100644
--- a/demo-shell/src/app/components/document-list/extension-presets/name-column/name-column.component.ts
+++ b/demo-shell/src/app/components/document-list/extension-presets/name-column/name-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/error/demo-error.component.ts b/demo-shell/src/app/components/error/demo-error.component.ts
index 7439582378..a2a3bfa1ef 100644
--- a/demo-shell/src/app/components/error/demo-error.component.ts
+++ b/demo-shell/src/app/components/error/demo-error.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/file-view/file-view.component.ts b/demo-shell/src/app/components/file-view/file-view.component.ts
index 3f7f910a16..b4e9c3e91f 100644
--- a/demo-shell/src/app/components/file-view/file-view.component.ts
+++ b/demo-shell/src/app/components/file-view/file-view.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/file-view/file-view.module.ts b/demo-shell/src/app/components/file-view/file-view.module.ts
index ef3110df1d..e7852d6999 100644
--- a/demo-shell/src/app/components/file-view/file-view.module.ts
+++ b/demo-shell/src/app/components/file-view/file-view.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/files/custom-sources.component.ts b/demo-shell/src/app/components/files/custom-sources.component.ts
index bae5e7cee8..37ad8e4aac 100644
--- a/demo-shell/src/app/components/files/custom-sources.component.ts
+++ b/demo-shell/src/app/components/files/custom-sources.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/files/custom-sources.module.ts b/demo-shell/src/app/components/files/custom-sources.module.ts
index 08c13f57fc..9dbd9194c8 100644
--- a/demo-shell/src/app/components/files/custom-sources.module.ts
+++ b/demo-shell/src/app/components/files/custom-sources.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/files/files.component.ts b/demo-shell/src/app/components/files/files.component.ts
index 570f16e3ad..27f27c2a2c 100644
--- a/demo-shell/src/app/components/files/files.component.ts
+++ b/demo-shell/src/app/components/files/files.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/files/filtered-search.component.ts b/demo-shell/src/app/components/files/filtered-search.component.ts
index 3624e9d438..79b3912444 100644
--- a/demo-shell/src/app/components/files/filtered-search.component.ts
+++ b/demo-shell/src/app/components/files/filtered-search.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/files/metadata-dialog-adapter.component.ts b/demo-shell/src/app/components/files/metadata-dialog-adapter.component.ts
index 10c35001e8..62cdb886c0 100644
--- a/demo-shell/src/app/components/files/metadata-dialog-adapter.component.ts
+++ b/demo-shell/src/app/components/files/metadata-dialog-adapter.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/files/version-manager-dialog-adapter.component.ts b/demo-shell/src/app/components/files/version-manager-dialog-adapter.component.ts
index 828a11bf25..10d2801219 100644
--- a/demo-shell/src/app/components/files/version-manager-dialog-adapter.component.ts
+++ b/demo-shell/src/app/components/files/version-manager-dialog-adapter.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/form/fake-tak-form.service.ts b/demo-shell/src/app/components/form/fake-tak-form.service.ts
index 72269df6be..016a99c5b2 100644
--- a/demo-shell/src/app/components/form/fake-tak-form.service.ts
+++ b/demo-shell/src/app/components/form/fake-tak-form.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/form/form-list.component.ts b/demo-shell/src/app/components/form/form-list.component.ts
index cc1c178fb9..26c11e808e 100644
--- a/demo-shell/src/app/components/form/form-list.component.ts
+++ b/demo-shell/src/app/components/form/form-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/form/form-loading.component.ts b/demo-shell/src/app/components/form/form-loading.component.ts
index 905d8e71f8..e9d7f4d8f4 100644
--- a/demo-shell/src/app/components/form/form-loading.component.ts
+++ b/demo-shell/src/app/components/form/form-loading.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/form/form.component.ts b/demo-shell/src/app/components/form/form.component.ts
index 11046a854c..bbf711dfae 100644
--- a/demo-shell/src/app/components/form/form.component.ts
+++ b/demo-shell/src/app/components/form/form.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/header-data/header-data.component.ts b/demo-shell/src/app/components/header-data/header-data.component.ts
index 7201c72805..94c9b569b6 100644
--- a/demo-shell/src/app/components/header-data/header-data.component.ts
+++ b/demo-shell/src/app/components/header-data/header-data.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/header-data/header-data.module.ts b/demo-shell/src/app/components/header-data/header-data.module.ts
index b7ecc81371..d0cd09200e 100644
--- a/demo-shell/src/app/components/header-data/header-data.module.ts
+++ b/demo-shell/src/app/components/header-data/header-data.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/header-data/header-data.service.ts b/demo-shell/src/app/components/header-data/header-data.service.ts
index 0904e0b60e..113182da04 100644
--- a/demo-shell/src/app/components/header-data/header-data.service.ts
+++ b/demo-shell/src/app/components/header-data/header-data.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/home/home.component.ts b/demo-shell/src/app/components/home/home.component.ts
index 0d3dc96983..42a373e187 100644
--- a/demo-shell/src/app/components/home/home.component.ts
+++ b/demo-shell/src/app/components/home/home.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/icons/icons.component.ts b/demo-shell/src/app/components/icons/icons.component.ts
index ef2b81a8dd..b6b3a3fa24 100644
--- a/demo-shell/src/app/components/icons/icons.component.ts
+++ b/demo-shell/src/app/components/icons/icons.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/icons/icons.module.ts b/demo-shell/src/app/components/icons/icons.module.ts
index 746a4deee5..f4b36b6a3c 100644
--- a/demo-shell/src/app/components/icons/icons.module.ts
+++ b/demo-shell/src/app/components/icons/icons.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/lazy-loading/lazy-loading.component.ts b/demo-shell/src/app/components/lazy-loading/lazy-loading.component.ts
index 90acd39cdb..127a05fb43 100644
--- a/demo-shell/src/app/components/lazy-loading/lazy-loading.component.ts
+++ b/demo-shell/src/app/components/lazy-loading/lazy-loading.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/lazy-loading/lazy-loading.module.ts b/demo-shell/src/app/components/lazy-loading/lazy-loading.module.ts
index 9274891199..bf15ace8de 100644
--- a/demo-shell/src/app/components/lazy-loading/lazy-loading.module.ts
+++ b/demo-shell/src/app/components/lazy-loading/lazy-loading.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/lazy-loading/lazy-loading.routes.ts b/demo-shell/src/app/components/lazy-loading/lazy-loading.routes.ts
index 069b781720..4886dc1eb0 100644
--- a/demo-shell/src/app/components/lazy-loading/lazy-loading.routes.ts
+++ b/demo-shell/src/app/components/lazy-loading/lazy-loading.routes.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/log/log.component.ts b/demo-shell/src/app/components/log/log.component.ts
index a86105c665..2399609070 100644
--- a/demo-shell/src/app/components/log/log.component.ts
+++ b/demo-shell/src/app/components/log/log.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/login/login.component.ts b/demo-shell/src/app/components/login/login.component.ts
index 4cda6d3ec7..4425474dfc 100644
--- a/demo-shell/src/app/components/login/login.component.ts
+++ b/demo-shell/src/app/components/login/login.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/login/login.module.ts b/demo-shell/src/app/components/login/login.module.ts
index 274553be9a..e0478a86e3 100644
--- a/demo-shell/src/app/components/login/login.module.ts
+++ b/demo-shell/src/app/components/login/login.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/logout/logout.component.ts b/demo-shell/src/app/components/logout/logout.component.ts
index 581a604c45..2a41c6ab94 100644
--- a/demo-shell/src/app/components/logout/logout.component.ts
+++ b/demo-shell/src/app/components/logout/logout.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/notifications/notifications.component.ts b/demo-shell/src/app/components/notifications/notifications.component.ts
index 285491408f..cc6d313641 100644
--- a/demo-shell/src/app/components/notifications/notifications.component.ts
+++ b/demo-shell/src/app/components/notifications/notifications.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/notifications/notifications.module.ts b/demo-shell/src/app/components/notifications/notifications.module.ts
index c499b158b6..667e5cd902 100644
--- a/demo-shell/src/app/components/notifications/notifications.module.ts
+++ b/demo-shell/src/app/components/notifications/notifications.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/overlay-viewer/overlay-viewer.component.ts b/demo-shell/src/app/components/overlay-viewer/overlay-viewer.component.ts
index fe8eb1a272..877d2a7ba1 100644
--- a/demo-shell/src/app/components/overlay-viewer/overlay-viewer.component.ts
+++ b/demo-shell/src/app/components/overlay-viewer/overlay-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/permissions/demo-permissions.component.ts b/demo-shell/src/app/components/permissions/demo-permissions.component.ts
index 476dec9a5f..0db2bcd9dd 100644
--- a/demo-shell/src/app/components/permissions/demo-permissions.component.ts
+++ b/demo-shell/src/app/components/permissions/demo-permissions.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/pipes/pipes.component.ts b/demo-shell/src/app/components/pipes/pipes.component.ts
index ae72009494..7e3f7b1199 100644
--- a/demo-shell/src/app/components/pipes/pipes.component.ts
+++ b/demo-shell/src/app/components/pipes/pipes.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/pipes/pipes.module.ts b/demo-shell/src/app/components/pipes/pipes.module.ts
index f2be0d4a00..ef451164d4 100644
--- a/demo-shell/src/app/components/pipes/pipes.module.ts
+++ b/demo-shell/src/app/components/pipes/pipes.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts b/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts
index ce39b418b5..061d530efb 100644
--- a/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts
+++ b/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-list-demo/process-list.module.ts b/demo-shell/src/app/components/process-list-demo/process-list.module.ts
index d1a46d6775..8242d64f66 100644
--- a/demo-shell/src/app/components/process-list-demo/process-list.module.ts
+++ b/demo-shell/src/app/components/process-list-demo/process-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/apps-view.component.ts b/demo-shell/src/app/components/process-service/apps-view.component.ts
index 61f661a544..69d9186b64 100644
--- a/demo-shell/src/app/components/process-service/apps-view.component.ts
+++ b/demo-shell/src/app/components/process-service/apps-view.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/custom-editor/custom-editor.component.ts b/demo-shell/src/app/components/process-service/custom-editor/custom-editor.component.ts
index 8ad9a5f867..ca9316bafb 100644
--- a/demo-shell/src/app/components/process-service/custom-editor/custom-editor.component.ts
+++ b/demo-shell/src/app/components/process-service/custom-editor/custom-editor.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/demo-field-validator.ts b/demo-shell/src/app/components/process-service/demo-field-validator.ts
index 5886603067..76ac227e51 100644
--- a/demo-shell/src/app/components/process-service/demo-field-validator.ts
+++ b/demo-shell/src/app/components/process-service/demo-field-validator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/form-node-viewer.component.ts b/demo-shell/src/app/components/process-service/form-node-viewer.component.ts
index 245dd835d0..03ef8568e1 100644
--- a/demo-shell/src/app/components/process-service/form-node-viewer.component.ts
+++ b/demo-shell/src/app/components/process-service/form-node-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/form-viewer.component.ts b/demo-shell/src/app/components/process-service/form-viewer.component.ts
index 5818d8f9da..28eb3bed76 100644
--- a/demo-shell/src/app/components/process-service/form-viewer.component.ts
+++ b/demo-shell/src/app/components/process-service/form-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/process-attachments.component.ts b/demo-shell/src/app/components/process-service/process-attachments.component.ts
index 02982347cd..c882e510cc 100644
--- a/demo-shell/src/app/components/process-service/process-attachments.component.ts
+++ b/demo-shell/src/app/components/process-service/process-attachments.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/process-service.component.ts b/demo-shell/src/app/components/process-service/process-service.component.ts
index e89d0d8b5e..fdadce4496 100644
--- a/demo-shell/src/app/components/process-service/process-service.component.ts
+++ b/demo-shell/src/app/components/process-service/process-service.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/show-diagram.component.ts b/demo-shell/src/app/components/process-service/show-diagram.component.ts
index 232b8114f0..da2433fd68 100644
--- a/demo-shell/src/app/components/process-service/show-diagram.component.ts
+++ b/demo-shell/src/app/components/process-service/show-diagram.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/process-service/task-attachments.component.ts b/demo-shell/src/app/components/process-service/task-attachments.component.ts
index 564e8a13e6..ddd4c3c361 100644
--- a/demo-shell/src/app/components/process-service/task-attachments.component.ts
+++ b/demo-shell/src/app/components/process-service/task-attachments.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/rich-text-editor/rich-text-editor.component.ts b/demo-shell/src/app/components/rich-text-editor/rich-text-editor.component.ts
index 4e5f83c7a2..4cc7579b27 100644
--- a/demo-shell/src/app/components/rich-text-editor/rich-text-editor.component.ts
+++ b/demo-shell/src/app/components/rich-text-editor/rich-text-editor.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/rich-text-editor/rich-text-editor.module.ts b/demo-shell/src/app/components/rich-text-editor/rich-text-editor.module.ts
index bf1d17764f..4ee0f10319 100644
--- a/demo-shell/src/app/components/rich-text-editor/rich-text-editor.module.ts
+++ b/demo-shell/src/app/components/rich-text-editor/rich-text-editor.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/search/search-bar.component.ts b/demo-shell/src/app/components/search/search-bar.component.ts
index b270769db1..25335eb56a 100644
--- a/demo-shell/src/app/components/search/search-bar.component.ts
+++ b/demo-shell/src/app/components/search/search-bar.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/search/search-config-test.service.ts b/demo-shell/src/app/components/search/search-config-test.service.ts
index 08c76b35da..3b6e97fb05 100644
--- a/demo-shell/src/app/components/search/search-config-test.service.ts
+++ b/demo-shell/src/app/components/search/search-config-test.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/search/search-extended.component.ts b/demo-shell/src/app/components/search/search-extended.component.ts
index e066709c2d..29332607c6 100644
--- a/demo-shell/src/app/components/search/search-extended.component.ts
+++ b/demo-shell/src/app/components/search/search-extended.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/search/search-filter-chips.component.ts b/demo-shell/src/app/components/search/search-filter-chips.component.ts
index e864c7c913..ac1101664a 100644
--- a/demo-shell/src/app/components/search/search-filter-chips.component.ts
+++ b/demo-shell/src/app/components/search/search-filter-chips.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/search/search-result.component.ts b/demo-shell/src/app/components/search/search-result.component.ts
index 58160a38b8..fbfdffe01f 100644
--- a/demo-shell/src/app/components/search/search-result.component.ts
+++ b/demo-shell/src/app/components/search/search-result.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/settings/host-settings.component.ts b/demo-shell/src/app/components/settings/host-settings.component.ts
index 1d6b98f241..0df6c574ac 100644
--- a/demo-shell/src/app/components/settings/host-settings.component.ts
+++ b/demo-shell/src/app/components/settings/host-settings.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/settings/settings.component.ts b/demo-shell/src/app/components/settings/settings.component.ts
index 137caf0779..6d4642a9e9 100644
--- a/demo-shell/src/app/components/settings/settings.component.ts
+++ b/demo-shell/src/app/components/settings/settings.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/settings/settings.module.ts b/demo-shell/src/app/components/settings/settings.module.ts
index dcdde067c8..796d4c95f4 100644
--- a/demo-shell/src/app/components/settings/settings.module.ts
+++ b/demo-shell/src/app/components/settings/settings.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/shared-link-view/shared-link-view.component.ts b/demo-shell/src/app/components/shared-link-view/shared-link-view.component.ts
index df63a87129..af3a5d063e 100644
--- a/demo-shell/src/app/components/shared-link-view/shared-link-view.component.ts
+++ b/demo-shell/src/app/components/shared-link-view/shared-link-view.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/sites/sites.component.ts b/demo-shell/src/app/components/sites/sites.component.ts
index 7f2ba532ee..6d1e5a6aa1 100644
--- a/demo-shell/src/app/components/sites/sites.component.ts
+++ b/demo-shell/src/app/components/sites/sites.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/sites/sites.module.ts b/demo-shell/src/app/components/sites/sites.module.ts
index 29a2f3b354..fd0f5b61f0 100644
--- a/demo-shell/src/app/components/sites/sites.module.ts
+++ b/demo-shell/src/app/components/sites/sites.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/social/social.component.ts b/demo-shell/src/app/components/social/social.component.ts
index e51a3219aa..5cc2669665 100644
--- a/demo-shell/src/app/components/social/social.component.ts
+++ b/demo-shell/src/app/components/social/social.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/social/social.module.ts b/demo-shell/src/app/components/social/social.module.ts
index a448e20941..93c69b554a 100644
--- a/demo-shell/src/app/components/social/social.module.ts
+++ b/demo-shell/src/app/components/social/social.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/tag/tag.component.ts b/demo-shell/src/app/components/tag/tag.component.ts
index b96112e7a8..33203fd141 100644
--- a/demo-shell/src/app/components/tag/tag.component.ts
+++ b/demo-shell/src/app/components/tag/tag.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/tag/tag.module.ts b/demo-shell/src/app/components/tag/tag.module.ts
index 39d7e2adb3..bc81a2f8f6 100644
--- a/demo-shell/src/app/components/tag/tag.module.ts
+++ b/demo-shell/src/app/components/tag/tag.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts b/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts
index 60321284d9..e9ef24b3fc 100644
--- a/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts
+++ b/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/task-list-demo/task-list.module.ts b/demo-shell/src/app/components/task-list-demo/task-list.module.ts
index 805bad189a..55b5b199fd 100644
--- a/demo-shell/src/app/components/task-list-demo/task-list.module.ts
+++ b/demo-shell/src/app/components/task-list-demo/task-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/template-list/template-demo.component.ts b/demo-shell/src/app/components/template-list/template-demo.component.ts
index 3c88569744..18190d641e 100644
--- a/demo-shell/src/app/components/template-list/template-demo.component.ts
+++ b/demo-shell/src/app/components/template-list/template-demo.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/theme-picker/style-manager/style-manager.ts b/demo-shell/src/app/components/theme-picker/style-manager/style-manager.ts
index bdbf485bea..a200d58f65 100644
--- a/demo-shell/src/app/components/theme-picker/style-manager/style-manager.ts
+++ b/demo-shell/src/app/components/theme-picker/style-manager/style-manager.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/theme-picker/theme-picker.ts b/demo-shell/src/app/components/theme-picker/theme-picker.ts
index 8938ac17e6..5add8fc638 100644
--- a/demo-shell/src/app/components/theme-picker/theme-picker.ts
+++ b/demo-shell/src/app/components/theme-picker/theme-picker.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/theme-picker/theme-storage/theme-storage.ts b/demo-shell/src/app/components/theme-picker/theme-storage/theme-storage.ts
index cd4d0b758a..0bd744a033 100644
--- a/demo-shell/src/app/components/theme-picker/theme-storage/theme-storage.ts
+++ b/demo-shell/src/app/components/theme-picker/theme-storage/theme-storage.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/trashcan/trashcan.component.ts b/demo-shell/src/app/components/trashcan/trashcan.component.ts
index b4a9b6e8f6..0d91ee00af 100644
--- a/demo-shell/src/app/components/trashcan/trashcan.component.ts
+++ b/demo-shell/src/app/components/trashcan/trashcan.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/trashcan/trashcan.module.ts b/demo-shell/src/app/components/trashcan/trashcan.module.ts
index d47d9f03e5..33eb711d13 100644
--- a/demo-shell/src/app/components/trashcan/trashcan.module.ts
+++ b/demo-shell/src/app/components/trashcan/trashcan.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/tree-view/tree-view-sample.component.ts b/demo-shell/src/app/components/tree-view/tree-view-sample.component.ts
index 879720a511..78d07071db 100644
--- a/demo-shell/src/app/components/tree-view/tree-view-sample.component.ts
+++ b/demo-shell/src/app/components/tree-view/tree-view-sample.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/webscript/webscript.component.ts b/demo-shell/src/app/components/webscript/webscript.component.ts
index af516f11d3..d723dd81c5 100644
--- a/demo-shell/src/app/components/webscript/webscript.component.ts
+++ b/demo-shell/src/app/components/webscript/webscript.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/components/webscript/webscript.module.ts b/demo-shell/src/app/components/webscript/webscript.module.ts
index a16d3fefae..ff06ce2e1c 100644
--- a/demo-shell/src/app/components/webscript/webscript.module.ts
+++ b/demo-shell/src/app/components/webscript/webscript.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/material.module.ts b/demo-shell/src/app/material.module.ts
index 4cd8463eed..550114010c 100644
--- a/demo-shell/src/app/material.module.ts
+++ b/demo-shell/src/app/material.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/services/app-notifications-factory.ts b/demo-shell/src/app/services/app-notifications-factory.ts
index 71ff181e6a..01a0efdbe0 100644
--- a/demo-shell/src/app/services/app-notifications-factory.ts
+++ b/demo-shell/src/app/services/app-notifications-factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/services/app-notifications.service.ts b/demo-shell/src/app/services/app-notifications.service.ts
index 56910b5718..6796638d51 100644
--- a/demo-shell/src/app/services/app-notifications.service.ts
+++ b/demo-shell/src/app/services/app-notifications.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/services/in-memory-form.service.ts b/demo-shell/src/app/services/in-memory-form.service.ts
index 1e9ee878b7..823f34f0aa 100644
--- a/demo-shell/src/app/services/in-memory-form.service.ts
+++ b/demo-shell/src/app/services/in-memory-form.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/app/services/preview.service.ts b/demo-shell/src/app/services/preview.service.ts
index aa9dfc057d..0158024984 100644
--- a/demo-shell/src/app/services/preview.service.ts
+++ b/demo-shell/src/app/services/preview.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/environments/environment.canary.ts b/demo-shell/src/environments/environment.canary.ts
index 42556b88a6..c79d2da963 100644
--- a/demo-shell/src/environments/environment.canary.ts
+++ b/demo-shell/src/environments/environment.canary.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/environments/environment.e2e.ts b/demo-shell/src/environments/environment.e2e.ts
index 0529498e74..b3a31788f0 100644
--- a/demo-shell/src/environments/environment.e2e.ts
+++ b/demo-shell/src/environments/environment.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/environments/environment.prod.ts b/demo-shell/src/environments/environment.prod.ts
index 3c4cf0fd7b..bbcded0a5f 100644
--- a/demo-shell/src/environments/environment.prod.ts
+++ b/demo-shell/src/environments/environment.prod.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/environments/environment.ts b/demo-shell/src/environments/environment.ts
index e305cf8648..4b8b88cb00 100644
--- a/demo-shell/src/environments/environment.ts
+++ b/demo-shell/src/environments/environment.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/main.ts b/demo-shell/src/main.ts
index 0ec9ee3b02..b5e47c36da 100644
--- a/demo-shell/src/main.ts
+++ b/demo-shell/src/main.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/polyfills.ts b/demo-shell/src/polyfills.ts
index b31c92476c..004894f9e0 100644
--- a/demo-shell/src/polyfills.ts
+++ b/demo-shell/src/polyfills.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/test.ts b/demo-shell/src/test.ts
index b4f5f1fe3b..7fb3c55912 100644
--- a/demo-shell/src/test.ts
+++ b/demo-shell/src/test.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/demo-shell/src/typings.d.ts b/demo-shell/src/typings.d.ts
index 951fe407dc..1071374cd0 100644
--- a/demo-shell/src/typings.d.ts
+++ b/demo-shell/src/typings.d.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/docs/tutorials/using-components.md b/docs/tutorials/using-components.md
index 59ad37587a..6c8bdddda2 100644
--- a/docs/tutorials/using-components.md
+++ b/docs/tutorials/using-components.md
@@ -38,7 +38,7 @@ Open the `src/app/login/login.component.html` file. The contents will look like
```html
```
@@ -49,7 +49,7 @@ Looking at the documentation, we can see that the `` component has a
```
@@ -80,7 +80,7 @@ Open `src/app/login/login.component.html` and add `(executeSubmit)="myExecuteSub
[showRememberMe]="false"
[showLoginActions]="false"
(executeSubmit)="myExecuteSubmitMethod($event)"
- copyrightText="© 2017 Alfresco Software, Inc. All Rights Reserved."
+ copyrightText="© 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved."
successRoute="/documentlist">
```
@@ -147,7 +147,7 @@ Let's add a simple Hello World message in the footer. Open the template `src/app
[showRememberMe]="false"
[showLoginActions]="false"
(executeSubmit)="myExecuteSubmitMethod($event)"
- copyrightText="© 2017 Alfresco Software, Inc. All Rights Reserved."
+ copyrightText="© 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved."
successRoute="/documentlist">
diff --git a/e2e-playwright/models/component-titles.model.ts b/e2e-playwright/models/component-titles.model.ts
index b1564d559c..a9d5ae77f2 100644
--- a/e2e-playwright/models/component-titles.model.ts
+++ b/e2e-playwright/models/component-titles.model.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
export enum ComponentTitles {
diff --git a/e2e-playwright/page-object/components/base.component.ts b/e2e-playwright/page-object/components/base.component.ts
index 44589a2c1f..c03ca9602a 100644
--- a/e2e-playwright/page-object/components/base.component.ts
+++ b/e2e-playwright/page-object/components/base.component.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Locator, Page } from '@playwright/test';
@@ -20,6 +29,7 @@ export abstract class BaseComponent extends PlaywrightBase {
/**
* Method which should be used across the repository, while creating
* reference to elements, which are in root element of component.
+ *
* @param cssLocator css selector as String. Need to be in the tree under the root element
* @param options if you want to localize it by text, then provide an optional hasText
* @returns Locator object
diff --git a/e2e-playwright/page-object/components/basic/error.component.ts b/e2e-playwright/page-object/components/basic/error.component.ts
index 70621df917..508e750c6c 100644
--- a/e2e-playwright/page-object/components/basic/error.component.ts
+++ b/e2e-playwright/page-object/components/basic/error.component.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Page } from '@playwright/test';
diff --git a/e2e-playwright/page-object/components/basic/index.ts b/e2e-playwright/page-object/components/basic/index.ts
index 9a04e8aa58..0a69fa2196 100644
--- a/e2e-playwright/page-object/components/basic/index.ts
+++ b/e2e-playwright/page-object/components/basic/index.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
export * from './error.component';
diff --git a/e2e-playwright/page-object/components/basic/listbox.component.ts b/e2e-playwright/page-object/components/basic/listbox.component.ts
index 5da7ff2381..09990629cb 100644
--- a/e2e-playwright/page-object/components/basic/listbox.component.ts
+++ b/e2e-playwright/page-object/components/basic/listbox.component.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Page } from '@playwright/test';
diff --git a/e2e-playwright/page-object/components/basic/validation.component.ts b/e2e-playwright/page-object/components/basic/validation.component.ts
index 2c21b3a30f..e861871ee9 100644
--- a/e2e-playwright/page-object/components/basic/validation.component.ts
+++ b/e2e-playwright/page-object/components/basic/validation.component.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Page } from '@playwright/test';
diff --git a/e2e-playwright/page-object/components/index.ts b/e2e-playwright/page-object/components/index.ts
index 722a5a0749..95ca067018 100644
--- a/e2e-playwright/page-object/components/index.ts
+++ b/e2e-playwright/page-object/components/index.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
export * from './basic';
diff --git a/e2e-playwright/page-object/index.ts b/e2e-playwright/page-object/index.ts
index d0980467f3..62588642db 100644
--- a/e2e-playwright/page-object/index.ts
+++ b/e2e-playwright/page-object/index.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
export * from './components';
diff --git a/e2e-playwright/page-object/playwright-base.ts b/e2e-playwright/page-object/playwright-base.ts
index f7f3884348..5063ab2c30 100644
--- a/e2e-playwright/page-object/playwright-base.ts
+++ b/e2e-playwright/page-object/playwright-base.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Page } from '@playwright/test';
diff --git a/e2e-playwright/page-object/stories/base.stories.ts b/e2e-playwright/page-object/stories/base.stories.ts
index ec1d87d1db..b00cf70c3b 100644
--- a/e2e-playwright/page-object/stories/base.stories.ts
+++ b/e2e-playwright/page-object/stories/base.stories.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Page } from '@playwright/test';
diff --git a/e2e-playwright/playwright.config.ts b/e2e-playwright/playwright.config.ts
index bf230183e7..ac0d0b83b0 100644
--- a/e2e-playwright/playwright.config.ts
+++ b/e2e-playwright/playwright.config.ts
@@ -1,12 +1,21 @@
-/* eslint-disable @typescript-eslint/no-unused-expressions */
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
+/* eslint-disable @typescript-eslint/no-unused-expressions */
import { PlaywrightTestConfig, ReporterDescription } from '@playwright/test';
import { dotenvConfig } from '../lib/cli/tooling';
import { paths } from './utils/paths';
diff --git a/e2e-playwright/process-services-cloud/components/group.component.ts b/e2e-playwright/process-services-cloud/components/group.component.ts
index 07bb03aee5..d1161bf099 100644
--- a/e2e-playwright/process-services-cloud/components/group.component.ts
+++ b/e2e-playwright/process-services-cloud/components/group.component.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Page } from '@playwright/test';
diff --git a/e2e-playwright/process-services-cloud/components/people.component.ts b/e2e-playwright/process-services-cloud/components/people.component.ts
index 04e05d2b62..0b0ae1c7b0 100644
--- a/e2e-playwright/process-services-cloud/components/people.component.ts
+++ b/e2e-playwright/process-services-cloud/components/people.component.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { Page } from '@playwright/test';
diff --git a/e2e-playwright/process-services-cloud/fixtures/page-initialization.ts b/e2e-playwright/process-services-cloud/fixtures/page-initialization.ts
index 2071e4bacf..3d9c845752 100644
--- a/e2e-playwright/process-services-cloud/fixtures/page-initialization.ts
+++ b/e2e-playwright/process-services-cloud/fixtures/page-initialization.ts
@@ -1,12 +1,21 @@
-/* eslint-disable brace-style */
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
+/* eslint-disable brace-style */
import { test as base } from '@playwright/test';
import { BaseStories } from '../../page-object';
import { ComponentTitles } from '../../models/component-titles.model';
diff --git a/e2e-playwright/process-services-cloud/specs/groups-cloud.e2e.ts b/e2e-playwright/process-services-cloud/specs/groups-cloud.e2e.ts
index bbd72aab7a..65ae9bbcbc 100644
--- a/e2e-playwright/process-services-cloud/specs/groups-cloud.e2e.ts
+++ b/e2e-playwright/process-services-cloud/specs/groups-cloud.e2e.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { test, expect } from '../fixtures/page-initialization';
diff --git a/e2e-playwright/process-services-cloud/specs/people-cloud.e2e.ts b/e2e-playwright/process-services-cloud/specs/people-cloud.e2e.ts
index 7ac7664cf9..b8508a6f13 100644
--- a/e2e-playwright/process-services-cloud/specs/people-cloud.e2e.ts
+++ b/e2e-playwright/process-services-cloud/specs/people-cloud.e2e.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
import { test, expect } from '../fixtures/page-initialization';
diff --git a/e2e-playwright/utils/paths.ts b/e2e-playwright/utils/paths.ts
index 08a7fb6fe0..0a81aedeb6 100644
--- a/e2e-playwright/utils/paths.ts
+++ b/e2e-playwright/utils/paths.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
const rootFolder = 'e2e-output/playwright-data';
diff --git a/e2e-playwright/utils/timeouts.ts b/e2e-playwright/utils/timeouts.ts
index d5d822993f..d6ee9fa1ae 100644
--- a/e2e-playwright/utils/timeouts.ts
+++ b/e2e-playwright/utils/timeouts.ts
@@ -1,9 +1,18 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
export const timeouts = {
diff --git a/e2e/content-services/components/comment-component.e2e.ts b/e2e/content-services/components/comment-component.e2e.ts
index de34eb76b3..35b39c1fde 100644
--- a/e2e/content-services/components/comment-component.e2e.ts
+++ b/e2e/content-services/components/comment-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,7 +42,7 @@ describe('Comment', () => {
const apiService = createApiService();
const commentsApi = new CommentsApi(apiService.getInstance());
- let userFullName, nodeId;
+ let userFullName; let nodeId;
let acsUser: UserModel;
const pngFileModel = new FileModel({
diff --git a/e2e/content-services/components/lock-file.e2e.ts b/e2e/content-services/components/lock-file.e2e.ts
index bfc4287909..d8eae33dc0 100644
--- a/e2e/content-services/components/lock-file.e2e.ts
+++ b/e2e/content-services/components/lock-file.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@ describe('Lock File', () => {
location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_path
});
- let site, documentLibrary;
+ let site; let documentLibrary;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/components/permissions-component.e2e.ts b/e2e/content-services/components/permissions-component.e2e.ts
index efc0700a78..7694844f5c 100644
--- a/e2e/content-services/components/permissions-component.e2e.ts
+++ b/e2e/content-services/components/permissions-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/components/share-file.e2e.ts b/e2e/content-services/components/share-file.e2e.ts
index 8802f0ce6a..0886e47144 100644
--- a/e2e/content-services/components/share-file.e2e.ts
+++ b/e2e/content-services/components/share-file.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,9 +61,7 @@ describe('Share file', () => {
const waitForShareLink = async (nodeIdSharedFile: string) => {
const predicate = (sharedLinkPaging: SharedLinkPaging) => {
- const sharedLink = sharedLinkPaging.list.entries.find((sharedLinkEntry: SharedLinkEntry) => {
- return sharedLinkEntry.entry.nodeId === nodeIdSharedFile;
- });
+ const sharedLink = sharedLinkPaging.list.entries.find((sharedLinkEntry: SharedLinkEntry) => sharedLinkEntry.entry.nodeId === nodeIdSharedFile);
return !!sharedLink;
};
diff --git a/e2e/content-services/components/site-permissions.e2e.ts b/e2e/content-services/components/site-permissions.e2e.ts
index 3049fc287d..eb4b73c566 100644
--- a/e2e/content-services/components/site-permissions.e2e.ts
+++ b/e2e/content-services/components/site-permissions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/components/social.component.e2e.ts b/e2e/content-services/components/social.component.e2e.ts
index cac4c0703f..0b425e4ecd 100644
--- a/e2e/content-services/components/social.component.e2e.ts
+++ b/e2e/content-services/components/social.component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -53,8 +53,8 @@ describe('Social component', () => {
let emptyFile;
const emptyFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path
});
beforeAll(async () => {
diff --git a/e2e/content-services/components/tag-component.e2e.ts b/e2e/content-services/components/tag-component.e2e.ts
index fe9b7313f4..57b5d00713 100644
--- a/e2e/content-services/components/tag-component.e2e.ts
+++ b/e2e/content-services/components/tag-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@ describe('Tag component', () => {
{ tag: 'test-tag-06' }, { tag: 'test-tag-07' }, { tag: 'test-tag-08' }, { tag: 'test-tag-09' }, { tag: 'test-tag-10' },
{ tag: 'test-tag-11' }];
- let pdfUploadedFile, nodeId;
+ let pdfUploadedFile; let nodeId;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/components/tree-view-component.e2e.ts b/e2e/content-services/components/tree-view-component.e2e.ts
index 5819e25721..0615b7a01e 100644
--- a/e2e/content-services/components/tree-view-component.e2e.ts
+++ b/e2e/content-services/components/tree-view-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@ describe('Tree View Component', () => {
const uploadActions = new UploadActions(apiService);
const nodesApi = new NodesApi(apiService.getInstance());
- let treeFolder, secondTreeFolder, thirdTreeFolder;
+ let treeFolder; let secondTreeFolder; let thirdTreeFolder;
const nodeNames = {
folder: 'Folder1',
diff --git a/e2e/content-services/components/unshare-file.e2e.ts b/e2e/content-services/components/unshare-file.e2e.ts
index bd0d3723e4..d85cd9a67f 100644
--- a/e2e/content-services/components/unshare-file.e2e.ts
+++ b/e2e/content-services/components/unshare-file.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -52,7 +52,7 @@ describe('Unshare file', () => {
const siteName = `PRIVATE-TEST-SITE-${StringUtil.generateRandomString(5)}`;
let acsUser: UserModel;
- let nodeBody, shareFilesSite;
+ let nodeBody; let shareFilesSite;
let pngUploadedFile: NodeEntry;
const pngFileModel = new FileModel({
diff --git a/e2e/content-services/directives/create-folder-directive.e2e.ts b/e2e/content-services/directives/create-folder-directive.e2e.ts
index dc40961a82..da71be377c 100644
--- a/e2e/content-services/directives/create-folder-directive.e2e.ts
+++ b/e2e/content-services/directives/create-folder-directive.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/directives/create-library-directive.e2e.ts b/e2e/content-services/directives/create-library-directive.e2e.ts
index 61bfd18d9b..a38ba26bde 100644
--- a/e2e/content-services/directives/create-library-directive.e2e.ts
+++ b/e2e/content-services/directives/create-library-directive.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -214,7 +214,7 @@ describe('Create library directive', () => {
await createLibraryDialog.libraryIdField.typeText(libraryId);
await createLibraryDialog.errorMessage.waitVisible(60000);
- await expect(await createLibraryDialog.errorMessage.getText()).toMatch("Library name can't contain only spaces");
+ await expect(await createLibraryDialog.errorMessage.getText()).toMatch('Library name can\'t contain only spaces');
});
it('[C290177] Should not accept a duplicate Library Id', async () => {
@@ -231,7 +231,7 @@ describe('Create library directive', () => {
await createLibraryDialog.libraryNameField.typeText(name);
await createLibraryDialog.libraryIdField.typeText(libraryId);
await createLibraryDialog.errorMessage.waitVisible(60000);
- await expect(await createLibraryDialog.errorMessage.getText()).toMatch("This Library ID isn't available. Try a different Library ID.");
+ await expect(await createLibraryDialog.errorMessage.getText()).toMatch('This Library ID isn\'t available. Try a different Library ID.');
});
it('[C290178] Should accept the same library name but different Library Ids', async () => {
diff --git a/e2e/content-services/directives/delete-directive.e2e.ts b/e2e/content-services/directives/delete-directive.e2e.ts
index ce5f5aabda..7c2c426e7b 100644
--- a/e2e/content-services/directives/delete-directive.e2e.ts
+++ b/e2e/content-services/directives/delete-directive.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -210,7 +210,7 @@ describe('Delete Directive', () => {
describe('when user does not have `delete` permission', () => {
let createdSite = null;
- let fileTxt, filePdf, folderA, folderB;
+ let fileTxt; let filePdf; let folderA; let folderB;
beforeAll(async () => {
await apiService.login(acsUser.username, acsUser.password);
diff --git a/e2e/content-services/directives/download-directive.e2e.ts b/e2e/content-services/directives/download-directive.e2e.ts
index 3a5fc629ad..f6898f3eb7 100644
--- a/e2e/content-services/directives/download-directive.e2e.ts
+++ b/e2e/content-services/directives/download-directive.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/directives/edit-folder-directive.e2e.ts b/e2e/content-services/directives/edit-folder-directive.e2e.ts
index cc8382a050..ad62f6adf8 100644
--- a/e2e/content-services/directives/edit-folder-directive.e2e.ts
+++ b/e2e/content-services/directives/edit-folder-directive.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -52,7 +52,7 @@ describe('Edit folder directive', () => {
const uploadActions = new UploadActions(apiService);
const updateFolderName = StringUtil.generateRandomString(5);
- let editFolder, anotherFolder, filePdfNode, subFolder;
+ let editFolder; let anotherFolder; let filePdfNode; let subFolder;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/directives/favorite-directive.e2e.ts b/e2e/content-services/directives/favorite-directive.e2e.ts
index c51aeba522..bd0c291240 100644
--- a/e2e/content-services/directives/favorite-directive.e2e.ts
+++ b/e2e/content-services/directives/favorite-directive.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@ describe('Favorite directive', () => {
});
const uploadActions = new UploadActions(apiService);
- let testFolder1, testFolder2, testFolder3, testFolder4, testFile;
+ let testFolder1; let testFolder2; let testFolder3; let testFolder4; let testFile;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/directives/restore-content-directive.e2e.ts b/e2e/content-services/directives/restore-content-directive.e2e.ts
index e82b32c263..151b965e33 100644
--- a/e2e/content-services/directives/restore-content-directive.e2e.ts
+++ b/e2e/content-services/directives/restore-content-directive.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@ describe('Restore content directive', () => {
let testFolder: NodeEntry;
const uploadActions = new UploadActions(apiService);
- let folderWithContent, folderWithFolder, subFolder, subFile, testFile;
+ let folderWithContent; let folderWithFolder; let subFolder; let subFile; let testFile;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
@@ -223,7 +223,7 @@ describe('Restore content directive', () => {
});
describe('Restore with folder hierarchies', () => {
- let parentFolder, folderWithin, pdfFile, pngFile, mainFile, mainFolder;
+ let parentFolder; let folderWithin; let pdfFile; let pngFile; let mainFile; let mainFolder;
beforeAll(async () => {
await apiService.login(anotherAcsUser.username, anotherAcsUser.password);
diff --git a/e2e/content-services/directives/sso-download-directive-component.e2e.ts b/e2e/content-services/directives/sso-download-directive-component.e2e.ts
index de857fc629..6a817c2ed2 100644
--- a/e2e/content-services/directives/sso-download-directive-component.e2e.ts
+++ b/e2e/content-services/directives/sso-download-directive-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,16 +45,16 @@ describe('SSO in ADF using ACS and AIS, Download Directive, Viewer, DocumentList
const usersActions = new UsersActions(apiService);
const firstPdfFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_path
});
const pngFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
- let pdfUploadedFile, pngUploadedFile, folder, acsUser;
+ let pdfUploadedFile; let pngUploadedFile; let folder; let acsUser;
const folderName = StringUtil.generateRandomString(5);
beforeAll(async () => {
diff --git a/e2e/content-services/document-list/document-list-actions.e2e.ts b/e2e/content-services/document-list/document-list-actions.e2e.ts
index 38a860f861..355a8bc9c0 100644
--- a/e2e/content-services/document-list/document-list-actions.e2e.ts
+++ b/e2e/content-services/document-list/document-list-actions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,7 +42,7 @@ describe('Document List Component - Actions', () => {
const uploadActions = new UploadActions(apiService);
describe('Document List Component - Check Actions', () => {
- let uploadedFolder, secondUploadedFolder;
+ let uploadedFolder; let secondUploadedFolder;
let acsUser = null;
let pdfUploadedNode;
let folderName;
diff --git a/e2e/content-services/document-list/document-list-component.e2e.ts b/e2e/content-services/document-list/document-list-component.e2e.ts
index 7bc6028e29..5023f2fd42 100644
--- a/e2e/content-services/document-list/document-list-component.e2e.ts
+++ b/e2e/content-services/document-list/document-list-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ import { NavigationBarPage } from '../../core/pages/navigation-bar.page';
describe('Document List Component', () => {
- let uploadedFolder, uploadedFolderExtra;
+ let uploadedFolder; let uploadedFolderExtra;
const loginPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
@@ -35,7 +35,7 @@ describe('Document List Component', () => {
const uploadActions = new UploadActions(apiService);
let acsUser = null;
- let testFileNode, pdfBFileNode;
+ let testFileNode; let pdfBFileNode;
afterEach(async () => {
await apiService.loginWithProfile('admin');
@@ -76,7 +76,7 @@ describe('Document List Component', () => {
location: browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_path
});
- let pdfUploadedNode, docxUploadedNode, timeAgoUploadedNode, mediumDateUploadedNode;
+ let pdfUploadedNode; let docxUploadedNode; let timeAgoUploadedNode; let mediumDateUploadedNode;
beforeAll(async () => {
/* cspell:disable-next-line */
@@ -168,7 +168,7 @@ describe('Document List Component', () => {
location: browser.params.resources.Files.ADF_DOCUMENTS.TEST.file_path
});
- let fileANode, fileBNode, fileCNode;
+ let fileANode; let fileBNode; let fileCNode;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/document-list/document-list-copy-move-actions.e2e.ts b/e2e/content-services/document-list/document-list-copy-move-actions.e2e.ts
index f2d1793359..f13da2e2bf 100644
--- a/e2e/content-services/document-list/document-list-copy-move-actions.e2e.ts
+++ b/e2e/content-services/document-list/document-list-copy-move-actions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,11 +45,11 @@ describe('Document List Component', () => {
const nodesApi = new NodesApi(apiService.getInstance());
const uploadActions = new UploadActions(apiService);
- let uploadedFolder, uploadedFile, sourceFolder, destinationFolder, subFolder, subFolder2, copyFolder, subFile,
- duplicateFolderName;
+ let uploadedFolder; let uploadedFile; let sourceFolder; let destinationFolder; let subFolder; let subFolder2; let copyFolder; let subFile;
+ let duplicateFolderName;
const acsUser = new UserModel();
const anotherAcsUser = new UserModel();
- let folderName, sameNameFolder, site;
+ let folderName; let sameNameFolder; let site;
const pdfFileModel = new FileModel({
name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
diff --git a/e2e/content-services/document-list/document-list-folder-actions.e2e.ts b/e2e/content-services/document-list/document-list-folder-actions.e2e.ts
index 2222fcf60c..fe675aaa52 100644
--- a/e2e/content-services/document-list/document-list-folder-actions.e2e.ts
+++ b/e2e/content-services/document-list/document-list-folder-actions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@ describe('Document List Component - Actions', () => {
const folderModel5 = new FolderModel({ name: StringUtil.generateRandomString() });
const folderModel6 = new FolderModel({ name: StringUtil.generateRandomString() });
- let folder1, folder2, folder3, folder4, folder5, folder6;
+ let folder1; let folder2; let folder3; let folder4; let folder5; let folder6;
let folders;
const contentServicesUser = new UserModel();
diff --git a/e2e/content-services/document-list/document-list-gallery.e2e.ts b/e2e/content-services/document-list/document-list-gallery.e2e.ts
index 0d5c55c912..097df78aa5 100644
--- a/e2e/content-services/document-list/document-list-gallery.e2e.ts
+++ b/e2e/content-services/document-list/document-list-gallery.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@ describe('Document List Component', () => {
location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_path
});
const folderName = `MEESEEKS_${StringUtil.generateRandomString(5)}_LOOK_AT_ME`;
- let filePdfNode, fileTestNode, fileDocxNode, folderNode, filePDFSubNode;
+ let filePdfNode; let fileTestNode; let fileDocxNode; let folderNode; let filePDFSubNode;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/document-list/document-list-pagination.e2e.ts b/e2e/content-services/document-list/document-list-pagination.e2e.ts
index 2e067eb2b4..4b71a10dde 100644
--- a/e2e/content-services/document-list/document-list-pagination.e2e.ts
+++ b/e2e/content-services/document-list/document-list-pagination.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -66,8 +66,8 @@ describe('Document List - Pagination', () => {
const uploadActions = new UploadActions(apiService);
const docxFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_location
});
beforeAll(async () => {
diff --git a/e2e/content-services/document-list/document-list-permissions.e2e.ts b/e2e/content-services/document-list/document-list-permissions.e2e.ts
index 69595b590e..dffdd453ec 100644
--- a/e2e/content-services/document-list/document-list-permissions.e2e.ts
+++ b/e2e/content-services/document-list/document-list-permissions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/document-list/document-list-properties.e2e.ts b/e2e/content-services/document-list/document-list-properties.e2e.ts
index 0b53d3def5..8ba2ec3958 100644
--- a/e2e/content-services/document-list/document-list-properties.e2e.ts
+++ b/e2e/content-services/document-list/document-list-properties.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ describe('Document List Component - Properties', () => {
const contentServicesPage = new ContentServicesPage();
const navigationBar = new NavigationBarPage();
- let subFolder, parentFolder;
+ let subFolder; let parentFolder;
const apiService = createApiService();
const uploadActions = new UploadActions(apiService);
let acsUser = null;
diff --git a/e2e/content-services/document-list/document-list-selection.e2e.ts b/e2e/content-services/document-list/document-list-selection.e2e.ts
index 7a50a9932b..6d652c7bc3 100644
--- a/e2e/content-services/document-list/document-list-selection.e2e.ts
+++ b/e2e/content-services/document-list/document-list-selection.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -32,8 +32,8 @@ describe('Document List - Selection', () => {
let acsUser: UserModel;
const folderModel = new FolderModel({ name: 'folder' });
const docxFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_location
});
const displayColumnName = 'Display name';
const apiService = createApiService();
diff --git a/e2e/content-services/document-list/document-list-thumbnails-tooltips.e2e.ts b/e2e/content-services/document-list/document-list-thumbnails-tooltips.e2e.ts
index cfaeb6b8e1..ac75a81767 100644
--- a/e2e/content-services/document-list/document-list-thumbnails-tooltips.e2e.ts
+++ b/e2e/content-services/document-list/document-list-thumbnails-tooltips.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -25,12 +25,12 @@ describe('Document List Component', () => {
const loginPage = new LoginPage();
const contentServicesPage = new ContentServicesPage();
- let uploadedFolder, uploadedFolderExtra;
+ let uploadedFolder; let uploadedFolderExtra;
const apiService = createApiService();
const uploadActions = new UploadActions(apiService);
let acsUser = null;
- let testFileNode, pdfBFileNode;
+ let testFileNode; let pdfBFileNode;
const navigationBarPage = new NavigationBarPage();
const usersActions = new UsersActions(apiService);
@@ -70,7 +70,7 @@ describe('Document List Component', () => {
location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_path
});
const folderName = `MEESEEKS_${StringUtil.generateRandomString(5)}_LOOK_AT_ME`;
- let filePdfNode, fileTestNode, fileDocxNode, folderNode;
+ let filePdfNode; let fileTestNode; let fileDocxNode; let folderNode;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/metadata/aspect-oriented-config.e2e.ts b/e2e/content-services/metadata/aspect-oriented-config.e2e.ts
index b2f68f5cc6..4b1cdc92a5 100644
--- a/e2e/content-services/metadata/aspect-oriented-config.e2e.ts
+++ b/e2e/content-services/metadata/aspect-oriented-config.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -38,8 +38,8 @@ describe('Aspect oriented config', () => {
const metadataViewPage = new MetadataViewPage();
const navigationBarPage = new NavigationBarPage();
const contentServicesPage = new ContentServicesPage();
- const modelOneName = 'modelOne', emptyAspectName = 'emptyAspect';
- const defaultModel = 'cm', defaultEmptyPropertiesAspect = 'taggable', aspectName = 'Taggable';
+ const modelOneName = 'modelOne'; const emptyAspectName = 'emptyAspect';
+ const defaultModel = 'cm'; const defaultEmptyPropertiesAspect = 'taggable'; const aspectName = 'Taggable';
const apiService = createApiService();
const usersActions = new UsersActions(apiService);
diff --git a/e2e/content-services/metadata/metadata-content-type.e2e.ts b/e2e/content-services/metadata/metadata-content-type.e2e.ts
index 7096b42323..c3647fc851 100644
--- a/e2e/content-services/metadata/metadata-content-type.e2e.ts
+++ b/e2e/content-services/metadata/metadata-content-type.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/metadata/metadata-permissions.e2e.ts b/e2e/content-services/metadata/metadata-permissions.e2e.ts
index 103636e102..6884b1b8b0 100644
--- a/e2e/content-services/metadata/metadata-permissions.e2e.ts
+++ b/e2e/content-services/metadata/metadata-permissions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/metadata/metadata-properties.e2e.ts b/e2e/content-services/metadata/metadata-properties.e2e.ts
index 47113821d5..502e7721a8 100644
--- a/e2e/content-services/metadata/metadata-properties.e2e.ts
+++ b/e2e/content-services/metadata/metadata-properties.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/metadata/metadata-smoke-tests.e2e.ts b/e2e/content-services/metadata/metadata-smoke-tests.e2e.ts
index c071a5632d..8de3740a56 100644
--- a/e2e/content-services/metadata/metadata-smoke-tests.e2e.ts
+++ b/e2e/content-services/metadata/metadata-smoke-tests.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/pages/lock-file.page.ts b/e2e/content-services/pages/lock-file.page.ts
index a5a32fb2f7..8a3354b918 100644
--- a/e2e/content-services/pages/lock-file.page.ts
+++ b/e2e/content-services/pages/lock-file.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/pages/permissions.page.ts b/e2e/content-services/pages/permissions.page.ts
index 8a71964ab1..7c5fd4725c 100644
--- a/e2e/content-services/pages/permissions.page.ts
+++ b/e2e/content-services/pages/permissions.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -33,7 +33,7 @@ export class PermissionsPage {
inheritedButton = '[data-automation-id="adf-inherit-toggle-button"]';
errorElement = TestElement.byId('adf-permission-manager-error');
localPermissionList = TestElement.byCss('[data-automation-id="adf-locally-set-permission"]');
- addPermissionButton = TestElement.byCss("button[data-automation-id='adf-add-permission-button']");
+ addPermissionButton = TestElement.byCss('button[data-automation-id=\'adf-add-permission-button\']');
async changePermission(name: string, role: string): Promise {
await browser.sleep(1000);
diff --git a/e2e/content-services/pages/social.page.ts b/e2e/content-services/pages/social.page.ts
index 9fde52f873..c6e2e31c7b 100644
--- a/e2e/content-services/pages/social.page.ts
+++ b/e2e/content-services/pages/social.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/pages/tag.page.ts b/e2e/content-services/pages/tag.page.ts
index 5f81e224d3..1322e685ad 100644
--- a/e2e/content-services/pages/tag.page.ts
+++ b/e2e/content-services/pages/tag.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/pages/tree-view.page.ts b/e2e/content-services/pages/tree-view.page.ts
index 83bb935ad9..290c435df3 100644
--- a/e2e/content-services/pages/tree-view.page.ts
+++ b/e2e/content-services/pages/tree-view.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/content-services/upload/cancel-upload.e2e.ts b/e2e/content-services/upload/cancel-upload.e2e.ts
index f9c4bc40de..996ff6f578 100644
--- a/e2e/content-services/upload/cancel-upload.e2e.ts
+++ b/e2e/content-services/upload/cancel-upload.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -35,18 +35,18 @@ describe('Upload component', async () => {
let acsUser: UserModel;
const pngFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
});
const mediumFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.MEDIUM_FILE.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.MEDIUM_FILE.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.MEDIUM_FILE.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.MEDIUM_FILE.file_location
});
const largeFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_location
});
beforeAll(async () => {
@@ -58,7 +58,7 @@ describe('Upload component', async () => {
await contentServicesPage.goToDocumentList();
});
- const deleteNodesInCurrentPage = async function () {
+ const deleteNodesInCurrentPage = async function() {
const nodeList = await contentServicesPage.getElementsDisplayedId();
for (const node of nodeList) {
diff --git a/e2e/content-services/upload/excluded-file.e2e.ts b/e2e/content-services/upload/excluded-file.e2e.ts
index f46e84d52a..ad79d89352 100644
--- a/e2e/content-services/upload/excluded-file.e2e.ts
+++ b/e2e/content-services/upload/excluded-file.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,23 +43,23 @@ describe('Upload component - Excluded Files', () => {
let acsUser: UserModel;
const iniExcludedFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.INI.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.INI.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.INI.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.INI.file_location
});
const txtFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_location
});
const pngFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
});
const folderUpload = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_location
});
const acceptedFileInsideFolder = new FolderModel({
@@ -114,7 +114,7 @@ describe('Upload component - Excluded Files', () => {
it('[C212862] Should not allow upload file excluded in the files extension of app.config.json', async () => {
await LocalStorageUtil.setConfigField('files', JSON.stringify({
excluded: ['.DS_Store', 'desktop.ini', '*.txt'],
- 'match-options': { 'nocase': true }
+ 'match-options': { nocase: true }
}));
await contentServicesPage.goToDocumentList();
@@ -128,7 +128,7 @@ describe('Upload component - Excluded Files', () => {
it('[C260125] Should not upload excluded file when they are in a Folder', async () => {
await LocalStorageUtil.setConfigField('files', JSON.stringify({
excluded: ['*.cpio'],
- 'match-options': { 'nocase': true }
+ 'match-options': { nocase: true }
}));
await uploadToggles.enableFolderUpload();
@@ -147,7 +147,7 @@ describe('Upload component - Excluded Files', () => {
it('[C274688] Should extension type added as excluded and accepted not be uploaded', async () => {
await LocalStorageUtil.setConfigField('files', JSON.stringify({
excluded: ['.DS_Store', 'desktop.ini', '*.png'],
- 'match-options': { 'nocase': true }
+ 'match-options': { nocase: true }
}));
await contentServicesPage.goToDocumentList();
diff --git a/e2e/content-services/upload/upload-dialog.e2e.ts b/e2e/content-services/upload/upload-dialog.e2e.ts
index 027d830a4f..6640b58253 100644
--- a/e2e/content-services/upload/upload-dialog.e2e.ts
+++ b/e2e/content-services/upload/upload-dialog.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -40,24 +40,24 @@ describe('Upload component', () => {
const FILES = browser.params.resources.Files;
const firstPdfFileModel = new FileModel({
- 'name': FILES.ADF_DOCUMENTS.PDF_B.file_name,
- 'location': FILES.ADF_DOCUMENTS.PDF_B.file_location
+ name: FILES.ADF_DOCUMENTS.PDF_B.file_name,
+ location: FILES.ADF_DOCUMENTS.PDF_B.file_location
});
const docxFileModel = new FileModel({
- 'name': FILES.ADF_DOCUMENTS.DOCX.file_name,
- 'location': FILES.ADF_DOCUMENTS.DOCX.file_location
+ name: FILES.ADF_DOCUMENTS.DOCX.file_name,
+ location: FILES.ADF_DOCUMENTS.DOCX.file_location
});
const pdfFileModel = new FileModel({
- 'name': FILES.ADF_DOCUMENTS.PDF.file_name,
- 'location': FILES.ADF_DOCUMENTS.PDF.file_location
+ name: FILES.ADF_DOCUMENTS.PDF.file_name,
+ location: FILES.ADF_DOCUMENTS.PDF.file_location
});
const pngFileModelTwo = new FileModel({
- 'name': FILES.ADF_DOCUMENTS.PNG_B.file_name,
- 'location': FILES.ADF_DOCUMENTS.PNG_B.file_location
+ name: FILES.ADF_DOCUMENTS.PNG_B.file_name,
+ location: FILES.ADF_DOCUMENTS.PNG_B.file_location
});
const pngFileModel = new FileModel({
- 'name': FILES.ADF_DOCUMENTS.PNG.file_name,
- 'location': FILES.ADF_DOCUMENTS.PNG.file_location
+ name: FILES.ADF_DOCUMENTS.PNG.file_name,
+ location: FILES.ADF_DOCUMENTS.PNG.file_location
});
const filesLocation = [pdfFileModel.location, docxFileModel.location, pngFileModel.location, firstPdfFileModel.location];
const filesName = [pdfFileModel.name, docxFileModel.name, pngFileModel.name, firstPdfFileModel.name];
diff --git a/e2e/content-services/upload/uploader-component.e2e.ts b/e2e/content-services/upload/uploader-component.e2e.ts
index 88c037d1d4..d627fa368b 100644
--- a/e2e/content-services/upload/uploader-component.e2e.ts
+++ b/e2e/content-services/upload/uploader-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -46,28 +46,28 @@ describe('Upload component', () => {
let acsUser: UserModel;
const firstPdfFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PDF_B.file_path
});
const docxFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_location
});
const pdfFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_location
});
const pngFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
});
const fileWithSpecificSize = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT_400B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_400B.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT_400B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_400B.file_location
});
const emptyFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_location
});
beforeAll(async () => {
diff --git a/e2e/content-services/upload/user-permission.e2e.ts b/e2e/content-services/upload/user-permission.e2e.ts
index 813a15495b..31a1fb0691 100644
--- a/e2e/content-services/upload/user-permission.e2e.ts
+++ b/e2e/content-services/upload/user-permission.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -35,21 +35,21 @@ describe('Upload - User permission', () => {
const usersActions = new UsersActions(apiService);
const emptyFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_location
});
const pngFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
});
const pdfFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_location
});
- let acsUser, acsUserTwo, consumerSite, managerSite;
+ let acsUser; let acsUserTwo; let consumerSite; let managerSite;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/content-services/upload/version-actions.e2e.ts b/e2e/content-services/upload/version-actions.e2e.ts
index 1c95392df5..043cb68d0d 100644
--- a/e2e/content-services/upload/version-actions.e2e.ts
+++ b/e2e/content-services/upload/version-actions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -46,19 +46,19 @@ describe('Version component actions', () => {
let acsUser: UserModel;
const txtFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
});
const fileModelVersionTwo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_location
});
let uploadActions;
const bigFileToCancel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.LARGE_FILE.file_location
});
beforeAll(async () => {
diff --git a/e2e/content-services/upload/version-permissions.e2e.ts b/e2e/content-services/upload/version-permissions.e2e.ts
index 50a280a29a..8cfb93448c 100644
--- a/e2e/content-services/upload/version-permissions.e2e.ts
+++ b/e2e/content-services/upload/version-permissions.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,18 +54,18 @@ describe('Version component permissions', () => {
const nodesApi = new NodesApi(apiService.getInstance());
const newVersionFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_location
});
const lockFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_path
});
const differentCreatorFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_path
});
const uploadActions = new UploadActions(apiService);
@@ -133,8 +133,8 @@ describe('Version component permissions', () => {
describe('Manager', () => {
const sameCreatorFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
beforeAll(async () => {
@@ -205,8 +205,8 @@ describe('Version component permissions', () => {
describe('Contributor', () => {
const sameCreatorFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
beforeAll(async () => {
@@ -260,8 +260,8 @@ describe('Version component permissions', () => {
describe('Collaborator', () => {
const sameCreatorFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
beforeAll(async () => {
diff --git a/e2e/content-services/upload/version-properties.e2e.ts b/e2e/content-services/upload/version-properties.e2e.ts
index f9ec61172c..726fbc2ee0 100644
--- a/e2e/content-services/upload/version-properties.e2e.ts
+++ b/e2e/content-services/upload/version-properties.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,13 +42,13 @@ describe('Version Properties', () => {
let acsUser: UserModel;
const txtFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path
});
const fileModelVersionTwo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
});
const uploadActions = new UploadActions(apiService);
diff --git a/e2e/content-services/upload/version-smoke-tests.e2e.ts b/e2e/content-services/upload/version-smoke-tests.e2e.ts
index 8913dabbd8..c6f5439b09 100644
--- a/e2e/content-services/upload/version-smoke-tests.e2e.ts
+++ b/e2e/content-services/upload/version-smoke-tests.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -36,28 +36,28 @@ describe('Version component', () => {
let acsUser: UserModel;
const txtFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
});
const fileModelVersionTwo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
});
const fileModelVersionThree = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_location
});
const fileModelVersionFor = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_C.file_location
});
const fileModelVersionFive = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_location
});
const uploadActions = new UploadActions(apiService);
diff --git a/e2e/core/datatable/data-table-component-selection.e2e.ts b/e2e/core/datatable/data-table-component-selection.e2e.ts
index 869cbb8aa1..489ac797fb 100644
--- a/e2e/core/datatable/data-table-component-selection.e2e.ts
+++ b/e2e/core/datatable/data-table-component-selection.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/datatable/data-table-component.e2e.ts b/e2e/core/datatable/data-table-component.e2e.ts
index 054acd424e..2b29f2ee5b 100644
--- a/e2e/core/datatable/data-table-component.e2e.ts
+++ b/e2e/core/datatable/data-table-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -35,8 +35,8 @@ describe('Datatable component', () => {
const navigationBarPage = new NavigationBarPage();
const notificationHistoryPage = new NotificationHistoryPage();
const pngFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location
});
const apiService = createApiService();
diff --git a/e2e/core/infinite-scrolling.e2e.ts b/e2e/core/infinite-scrolling.e2e.ts
index e7570a268c..ad298b05af 100644
--- a/e2e/core/infinite-scrolling.e2e.ts
+++ b/e2e/core/infinite-scrolling.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@ describe('Enable infinite scrolling', () => {
const usersActions = new UsersActions(apiService);
const acsUser = new UserModel();
- const folderModel = new FolderModel({ 'name': 'folderOne' });
+ const folderModel = new FolderModel({ name: 'folderOne' });
let fileNames = [];
const nrOfFiles = 30;
diff --git a/e2e/core/login/login-component.e2e.ts b/e2e/core/login/login-component.e2e.ts
index e8001821d9..d049ba143a 100644
--- a/e2e/core/login/login-component.e2e.ts
+++ b/e2e/core/login/login-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/login/login-sso/login-sso.e2e.ts b/e2e/core/login/login-sso/login-sso.e2e.ts
index 264a2dc978..7612e40f51 100644
--- a/e2e/core/login/login-sso/login-sso.e2e.ts
+++ b/e2e/core/login/login-sso/login-sso.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/login/login-sso/logout-sso.e2e.ts b/e2e/core/login/login-sso/logout-sso.e2e.ts
index 480918e77a..24a54dc238 100644
--- a/e2e/core/login/login-sso/logout-sso.e2e.ts
+++ b/e2e/core/login/login-sso/logout-sso.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/login/remember-me.e2e.ts b/e2e/core/login/remember-me.e2e.ts
index 5c52502aa1..76065ba967 100644
--- a/e2e/core/login/remember-me.e2e.ts
+++ b/e2e/core/login/remember-me.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/notifications-component.e2e.ts b/e2e/core/notifications-component.e2e.ts
index 2f8a4a6378..e067546942 100644
--- a/e2e/core/notifications-component.e2e.ts
+++ b/e2e/core/notifications-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/card-view-component.page.ts b/e2e/core/pages/card-view-component.page.ts
index 9b63b895e1..7a9e155746 100644
--- a/e2e/core/pages/card-view-component.page.ts
+++ b/e2e/core/pages/card-view-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/comments.page.ts b/e2e/core/pages/comments.page.ts
index fc1e6db10a..017a416805 100644
--- a/e2e/core/pages/comments.page.ts
+++ b/e2e/core/pages/comments.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ export class CommentsPage {
commentMessage = $$('.adf-comment-message');
commentTime = $$('.adf-comment-message-time');
commentInput = $('#comment-input');
- addCommentButton = $("[data-automation-id='comments-input-add']");
+ addCommentButton = $('[data-automation-id=\'comments-input-add\']');
async getTotalNumberOfComments(text: string): Promise {
await BrowserVisibility.waitUntilElementHasText(this.numberOfComments, text);
diff --git a/e2e/core/pages/content-services.page.ts b/e2e/core/pages/content-services.page.ts
index 288a573971..d5cbfcb56e 100644
--- a/e2e/core/pages/content-services.page.ts
+++ b/e2e/core/pages/content-services.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/custom-sources.page.ts b/e2e/core/pages/custom-sources.page.ts
index e3d3562db5..e709b322fb 100644
--- a/e2e/core/pages/custom-sources.page.ts
+++ b/e2e/core/pages/custom-sources.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/data-table.page.ts b/e2e/core/pages/data-table.page.ts
index 1e277a922b..dbe61c31da 100644
--- a/e2e/core/pages/data-table.page.ts
+++ b/e2e/core/pages/data-table.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/dialog/create-library-dialog.page.ts b/e2e/core/pages/dialog/create-library-dialog.page.ts
index dcb29b7465..3bceefc009 100644
--- a/e2e/core/pages/dialog/create-library-dialog.page.ts
+++ b/e2e/core/pages/dialog/create-library-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/dialog/folder-dialog.page.ts b/e2e/core/pages/dialog/folder-dialog.page.ts
index 06afce1f8c..00960c5dba 100644
--- a/e2e/core/pages/dialog/folder-dialog.page.ts
+++ b/e2e/core/pages/dialog/folder-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/dialog/share-dialog.page.ts b/e2e/core/pages/dialog/share-dialog.page.ts
index af92b6cc9a..d7e38d5b54 100644
--- a/e2e/core/pages/dialog/share-dialog.page.ts
+++ b/e2e/core/pages/dialog/share-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/dialog/upload-dialog.page.ts b/e2e/core/pages/dialog/upload-dialog.page.ts
index 1e69ee46ff..6ab54c162a 100644
--- a/e2e/core/pages/dialog/upload-dialog.page.ts
+++ b/e2e/core/pages/dialog/upload-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/dialog/upload-toggles.page.ts b/e2e/core/pages/dialog/upload-toggles.page.ts
index ec368049b6..c80d10c6e5 100644
--- a/e2e/core/pages/dialog/upload-toggles.page.ts
+++ b/e2e/core/pages/dialog/upload-toggles.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/icons.page.ts b/e2e/core/pages/icons.page.ts
index 9fa0bfed38..3f287664ce 100644
--- a/e2e/core/pages/icons.page.ts
+++ b/e2e/core/pages/icons.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/infinite-pagination.page.ts b/e2e/core/pages/infinite-pagination.page.ts
index cab608b2ce..0225f96c95 100644
--- a/e2e/core/pages/infinite-pagination.page.ts
+++ b/e2e/core/pages/infinite-pagination.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/login-shell.page.ts b/e2e/core/pages/login-shell.page.ts
index c596439de6..e326d45899 100644
--- a/e2e/core/pages/login-shell.page.ts
+++ b/e2e/core/pages/login-shell.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/logout.page.ts b/e2e/core/pages/logout.page.ts
index bdfaec629b..388ca36b5b 100644
--- a/e2e/core/pages/logout.page.ts
+++ b/e2e/core/pages/logout.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/metadata-view.page.ts b/e2e/core/pages/metadata-view.page.ts
index fab2de84a4..03e8326928 100644
--- a/e2e/core/pages/metadata-view.page.ts
+++ b/e2e/core/pages/metadata-view.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/navigation-bar.page.ts b/e2e/core/pages/navigation-bar.page.ts
index 13cf085a99..f6a83307b2 100644
--- a/e2e/core/pages/navigation-bar.page.ts
+++ b/e2e/core/pages/navigation-bar.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/notification.page.ts b/e2e/core/pages/notification.page.ts
index eb71401773..bb70e77eae 100644
--- a/e2e/core/pages/notification.page.ts
+++ b/e2e/core/pages/notification.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/trashcan.page.ts b/e2e/core/pages/trashcan.page.ts
index 8f7d463274..e939487a3a 100644
--- a/e2e/core/pages/trashcan.page.ts
+++ b/e2e/core/pages/trashcan.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pages/version-manager.page.ts b/e2e/core/pages/version-manager.page.ts
index c0fdcfde30..c8a3498502 100644
--- a/e2e/core/pages/version-manager.page.ts
+++ b/e2e/core/pages/version-manager.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/pagination-empty-current-page.e2e.ts b/e2e/core/pagination-empty-current-page.e2e.ts
index 449cc611d5..b5c93e06cf 100644
--- a/e2e/core/pagination-empty-current-page.e2e.ts
+++ b/e2e/core/pagination-empty-current-page.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -41,8 +41,8 @@ describe('Pagination - returns to previous page when current is empty', () => {
const usersActions = new UsersActions(apiService);
const acsUser = new UserModel();
- const folderModel = new FolderModel({ 'name': 'folderOne' });
- const parentFolderModel = new FolderModel({ 'name': 'parentFolder' });
+ const folderModel = new FolderModel({ name: 'folderOne' });
+ const parentFolderModel = new FolderModel({ name: 'parentFolder' });
let fileNames = [];
const nrOfFiles = 6;
@@ -63,8 +63,8 @@ describe('Pagination - returns to previous page when current is empty', () => {
};
const pngFileInfo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
beforeAll(async () => {
diff --git a/e2e/core/user-info-component-cloud.e2e.ts b/e2e/core/user-info-component-cloud.e2e.ts
index a2d966a066..107717274b 100644
--- a/e2e/core/user-info-component-cloud.e2e.ts
+++ b/e2e/core/user-info-component-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/core/viewer/file-extensions/viewer-archive.component.e2e.ts b/e2e/core/viewer/file-extensions/viewer-archive.component.e2e.ts
index 53424bb191..88476ce8dc 100644
--- a/e2e/core/viewer/file-extensions/viewer-archive.component.e2e.ts
+++ b/e2e/core/viewer/file-extensions/viewer-archive.component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,8 +45,8 @@ describe('Viewer', () => {
const uploadActions = new UploadActions(apiService);
const archiveFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.ARCHIVE_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.ARCHIVE_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.ARCHIVE_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.ARCHIVE_FOLDER.folder_path
});
beforeAll(async () => {
diff --git a/e2e/core/viewer/file-extensions/viewer-component.e2e.ts b/e2e/core/viewer/file-extensions/viewer-component.e2e.ts
index d8c54a50b0..e78c3a2bf2 100644
--- a/e2e/core/viewer/file-extensions/viewer-component.e2e.ts
+++ b/e2e/core/viewer/file-extensions/viewer-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,13 +47,13 @@ describe('Viewer', () => {
let pngFileUploaded;
const pngFileInfo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
const otherFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.OTHER_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.OTHER_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.OTHER_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.OTHER_FOLDER.folder_path
});
beforeAll(async () => {
diff --git a/e2e/core/viewer/file-extensions/viewer-excel.component.e2e.ts b/e2e/core/viewer/file-extensions/viewer-excel.component.e2e.ts
index 62d333d6e3..809793149c 100644
--- a/e2e/core/viewer/file-extensions/viewer-excel.component.e2e.ts
+++ b/e2e/core/viewer/file-extensions/viewer-excel.component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -38,8 +38,8 @@ describe('Viewer', () => {
const acsUser = new UserModel();
const excelFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.EXCEL_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.EXCEL_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.EXCEL_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.EXCEL_FOLDER.folder_path
});
const apiService = createApiService();
diff --git a/e2e/core/viewer/file-extensions/viewer-image.component.e2e.ts b/e2e/core/viewer/file-extensions/viewer-image.component.e2e.ts
index 12b6b1a0bf..c1e5b26c03 100644
--- a/e2e/core/viewer/file-extensions/viewer-image.component.e2e.ts
+++ b/e2e/core/viewer/file-extensions/viewer-image.component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,13 +43,13 @@ describe('Viewer', () => {
const acsUser = new UserModel();
const imgFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.IMG_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.IMG_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.IMG_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.IMG_FOLDER.folder_path
});
const imgRenditionFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.IMG_RENDITION_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.IMG_RENDITION_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.IMG_RENDITION_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.IMG_RENDITION_FOLDER.folder_path
});
beforeAll(async () => {
@@ -79,8 +79,8 @@ describe('Viewer', () => {
});
describe('Image Folder Uploaded', () => {
- let uploadedImages, uploadedImgRenditionFolderInfo;
- let imgFolderUploaded, imgFolderRenditionUploaded;
+ let uploadedImages; let uploadedImgRenditionFolderInfo;
+ let imgFolderUploaded; let imgFolderRenditionUploaded;
beforeAll(async () => {
imgFolderUploaded = await uploadActions.createFolder(imgFolderInfo.name, '-my-');
diff --git a/e2e/core/viewer/file-extensions/viewer-powerpoint.component.e2e.ts b/e2e/core/viewer/file-extensions/viewer-powerpoint.component.e2e.ts
index 4d1478b5bd..d1c2a6e8b5 100644
--- a/e2e/core/viewer/file-extensions/viewer-powerpoint.component.e2e.ts
+++ b/e2e/core/viewer/file-extensions/viewer-powerpoint.component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,8 +42,8 @@ describe('Viewer', () => {
const acsUser = new UserModel();
const pptFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PPT_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PPT_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PPT_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PPT_FOLDER.folder_path
});
let site;
diff --git a/e2e/core/viewer/file-extensions/viewer-text.component.e2e.ts b/e2e/core/viewer/file-extensions/viewer-text.component.e2e.ts
index d83d9e8558..086a22b95c 100644
--- a/e2e/core/viewer/file-extensions/viewer-text.component.e2e.ts
+++ b/e2e/core/viewer/file-extensions/viewer-text.component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,8 +42,8 @@ describe('Viewer', () => {
const acsUser = new UserModel();
const textFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TEXT_FOLDER.folder_path
});
beforeAll(async () => {
diff --git a/e2e/core/viewer/file-extensions/viewer-word.component.e2e.ts b/e2e/core/viewer/file-extensions/viewer-word.component.e2e.ts
index 43eb2ade4a..d56c20bf0b 100644
--- a/e2e/core/viewer/file-extensions/viewer-word.component.e2e.ts
+++ b/e2e/core/viewer/file-extensions/viewer-word.component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,8 +44,8 @@ describe('Viewer', () => {
const acsUser = new UserModel();
const wordFolderInfo = new FolderModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.WORD_FOLDER.folder_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.WORD_FOLDER.folder_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.WORD_FOLDER.folder_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.WORD_FOLDER.folder_path
});
beforeAll(async () => {
diff --git a/e2e/core/viewer/viewer-content-services-component.e2e.ts b/e2e/core/viewer/viewer-content-services-component.e2e.ts
index 82358014e6..429467809e 100644
--- a/e2e/core/viewer/viewer-content-services-component.e2e.ts
+++ b/e2e/core/viewer/viewer-content-services-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,44 +42,44 @@ describe('Content Services Viewer', () => {
let zoom;
const pdfFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
- 'firstPageText': browser.params.resources.Files.ADF_DOCUMENTS.PDF.first_page_text,
- 'secondPageText': browser.params.resources.Files.ADF_DOCUMENTS.PDF.second_page_text,
- 'lastPageNumber': browser.params.resources.Files.ADF_DOCUMENTS.PDF.last_page_number
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
+ firstPageText: browser.params.resources.Files.ADF_DOCUMENTS.PDF.first_page_text,
+ secondPageText: browser.params.resources.Files.ADF_DOCUMENTS.PDF.second_page_text,
+ lastPageNumber: browser.params.resources.Files.ADF_DOCUMENTS.PDF.last_page_number
});
const protectedFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.file_name,
- 'firstPageText': browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.first_page_text,
- 'secondPageText': browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.second_page_text,
- 'lastPageNumber': browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.last_page_number,
- 'password': browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.password,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.file_name,
+ firstPageText: browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.first_page_text,
+ secondPageText: browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.second_page_text,
+ lastPageNumber: browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.last_page_number,
+ password: browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.password,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PDF_PROTECTED.file_path
});
const docxFile = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_path,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
- 'firstPageText': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.first_page_text
+ location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_path,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
+ firstPageText: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.first_page_text
});
const jpgFile = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_name
+ location: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_name
});
const mp4File = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.MP4.file_path,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.MP4.file_name
+ location: browser.params.resources.Files.ADF_DOCUMENTS.MP4.file_path,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.MP4.file_name
});
const unsupportedFile = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_path,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name
+ location: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_path,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name
});
const unsupportedFileByLocation = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_location,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name
+ location: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_location,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name
});
const pptFile = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PPT.file_path,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PPT.file_name,
- 'firstPageText': browser.params.resources.Files.ADF_DOCUMENTS.PPT.first_page_text
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PPT.file_path,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PPT.file_name,
+ firstPageText: browser.params.resources.Files.ADF_DOCUMENTS.PPT.first_page_text
});
const apiService = createApiService();
diff --git a/e2e/core/viewer/viewer-custom-toolbar-info-drawer.e2e.ts b/e2e/core/viewer/viewer-custom-toolbar-info-drawer.e2e.ts
index a181006c1f..083a3d419d 100644
--- a/e2e/core/viewer/viewer-custom-toolbar-info-drawer.e2e.ts
+++ b/e2e/core/viewer/viewer-custom-toolbar-info-drawer.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -38,13 +38,13 @@ describe('Viewer', () => {
let txtFileUploaded;
const txtFileInfo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
});
const fileModelVersionTwo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_location
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_location
});
beforeAll(async () => {
diff --git a/e2e/core/viewer/viewer-properties.e2e.ts b/e2e/core/viewer/viewer-properties.e2e.ts
index 39025d8ce4..4c3b0161c4 100644
--- a/e2e/core/viewer/viewer-properties.e2e.ts
+++ b/e2e/core/viewer/viewer-properties.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -38,13 +38,13 @@ describe('Viewer', () => {
const dataTable = new DataTableComponentPage();
const pngFile = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
const fileForOverlay = new FileModel({
- 'name': 'fileForOverlay.png',
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: 'fileForOverlay.png',
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
const apiService = createApiService();
const usersActions = new UsersActions(apiService);
diff --git a/e2e/core/viewer/viewer-share-content.ts b/e2e/core/viewer/viewer-share-content.ts
index 4dc3b083e0..fa561db0e3 100644
--- a/e2e/core/viewer/viewer-share-content.ts
+++ b/e2e/core/viewer/viewer-share-content.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -51,16 +51,16 @@ describe('Viewer', () => {
const contentList = contentServicesPage.getDocumentList();
const pngFileInfo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
const wordFileInfo = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_path
});
- let pngFileShared, wordFileUploaded;
+ let pngFileShared; let wordFileUploaded;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
@@ -86,7 +86,7 @@ describe('Viewer', () => {
wordFileUploaded = await uploadActions.uploadFile(wordFileInfo.location, wordFileInfo.name, '-my-');
- pngFileShared = await sharedlinksApi.createSharedLink({ 'nodeId': pngFileUploaded.entry.id });
+ pngFileShared = await sharedlinksApi.createSharedLink({ nodeId: pngFileUploaded.entry.id });
});
afterAll(async () => {
diff --git a/e2e/insights/analytics-component.e2e.ts b/e2e/insights/analytics-component.e2e.ts
index bc5a8ad34f..fdb809fb9a 100644
--- a/e2e/insights/analytics-component.e2e.ts
+++ b/e2e/insights/analytics-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/ACS/contentModel.js b/e2e/models/ACS/contentModel.js
index 1390aa72df..ea02eaa5a7 100644
--- a/e2e/models/ACS/contentModel.js
+++ b/e2e/models/ACS/contentModel.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/ACS/contentProperties.js b/e2e/models/ACS/contentProperties.js
index 23bcca23d5..349a02f3ce 100644
--- a/e2e/models/ACS/contentProperties.js
+++ b/e2e/models/ACS/contentProperties.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/ACS/created-by-model.ts b/e2e/models/ACS/created-by-model.ts
index 773d2fe6b6..32286addd4 100644
--- a/e2e/models/ACS/created-by-model.ts
+++ b/e2e/models/ACS/created-by-model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/ACS/file.model.ts b/e2e/models/ACS/file.model.ts
index 5986a7caf0..5009bc12b3 100644
--- a/e2e/models/ACS/file.model.ts
+++ b/e2e/models/ACS/file.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/ACS/folder.model.ts b/e2e/models/ACS/folder.model.ts
index 0c4f59e7e4..7766f29278 100644
--- a/e2e/models/ACS/folder.model.ts
+++ b/e2e/models/ACS/folder.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/APS/AppPublish.js b/e2e/models/APS/AppPublish.js
index 8902942626..a705a55bb7 100644
--- a/e2e/models/APS/AppPublish.js
+++ b/e2e/models/APS/AppPublish.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/APS/FormDefinitionFieldModel.js b/e2e/models/APS/FormDefinitionFieldModel.js
index d4d8f8814c..aa9cd114ae 100644
--- a/e2e/models/APS/FormDefinitionFieldModel.js
+++ b/e2e/models/APS/FormDefinitionFieldModel.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/APS/FormDefinitionModel.js b/e2e/models/APS/FormDefinitionModel.js
index 7ac41615d0..82fb6b3430 100644
--- a/e2e/models/APS/FormDefinitionModel.js
+++ b/e2e/models/APS/FormDefinitionModel.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/APS/FormModel.js b/e2e/models/APS/FormModel.js
index f8e0a7855e..93672388e0 100644
--- a/e2e/models/APS/FormModel.js
+++ b/e2e/models/APS/FormModel.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/APS/Task.js b/e2e/models/APS/Task.js
index 02f922ff03..e7a0019622 100644
--- a/e2e/models/APS/Task.js
+++ b/e2e/models/APS/Task.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/APS/TaskAssigneeModel.js b/e2e/models/APS/TaskAssigneeModel.js
index 9c1de7670a..c5442c9446 100644
--- a/e2e/models/APS/TaskAssigneeModel.js
+++ b/e2e/models/APS/TaskAssigneeModel.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/models/APS/TaskModel.js b/e2e/models/APS/TaskModel.js
index d8f22b55f7..5ad5d2193d 100644
--- a/e2e/models/APS/TaskModel.js
+++ b/e2e/models/APS/TaskModel.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/access/user-access-cloud.e2e.ts b/e2e/process-services-cloud/access/user-access-cloud.e2e.ts
index 8f685aef9e..0ba37ce618 100644
--- a/e2e/process-services-cloud/access/user-access-cloud.e2e.ts
+++ b/e2e/process-services-cloud/access/user-access-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/config/edit-process-filter.config.ts b/e2e/process-services-cloud/config/edit-process-filter.config.ts
index fa5ac1322e..b80580d803 100644
--- a/e2e/process-services-cloud/config/edit-process-filter.config.ts
+++ b/e2e/process-services-cloud/config/edit-process-filter.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ export class EditProcessFilterConfiguration {
getConfiguration() {
return {
- 'filterProperties':
+ filterProperties:
[
'appName',
'status',
@@ -32,7 +32,7 @@ export class EditProcessFilterConfiguration {
'processDefinitionId',
'processDefinitionKey'
],
- 'sortProperties':
+ sortProperties:
[
'id',
'name',
@@ -44,7 +44,7 @@ export class EditProcessFilterConfiguration {
'startDate',
'businessKey'
],
- 'actions':
+ actions:
[
'save',
'saveAs',
diff --git a/e2e/process-services-cloud/config/process-list-cloud.config.ts b/e2e/process-services-cloud/config/process-list-cloud.config.ts
index c8388f5c93..f6e21120d3 100644
--- a/e2e/process-services-cloud/config/process-list-cloud.config.ts
+++ b/e2e/process-services-cloud/config/process-list-cloud.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,68 +19,68 @@ export class ProcessListCloudConfiguration {
getConfiguration() {
return {
- 'presets': {
- 'default': [
+ presets: {
+ default: [
{
- 'key': 'id',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.ID',
- 'sortable': true
+ key: 'id',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.ID',
+ sortable: true
},
{
- 'key': 'name',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.NAME',
- 'sortable': true
+ key: 'name',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.NAME',
+ sortable: true
},
{
- 'key': 'status',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.STATUS',
- 'sortable': true
+ key: 'status',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.STATUS',
+ sortable: true
},
{
- 'key': 'startDate',
- 'type': 'date',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.START_DATE',
- 'sortable': true,
- 'format': 'timeAgo'
+ key: 'startDate',
+ type: 'date',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.START_DATE',
+ sortable: true,
+ format: 'timeAgo'
},
{
- 'key': 'appName',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.APP_NAME',
- 'sortable': true
+ key: 'appName',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.APP_NAME',
+ sortable: true
},
{
- 'key': 'businessKey',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.BUSINESS_KEY',
- 'sortable': true
+ key: 'businessKey',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.BUSINESS_KEY',
+ sortable: true
},
{
- 'key': 'initiator',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.STARTED_BY',
- 'sortable': true
+ key: 'initiator',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.STARTED_BY',
+ sortable: true
},
{
- 'key': 'lastModified',
- 'type': 'date',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.LAST_MODIFIED',
- 'sortable': true
+ key: 'lastModified',
+ type: 'date',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.LAST_MODIFIED',
+ sortable: true
},
{
- 'key': 'processDefinitionId',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_ID',
- 'sortable': true
+ key: 'processDefinitionId',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_ID',
+ sortable: true
},
{
- 'key': 'processDefinitionKey',
- 'type': 'text',
- 'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_KEY',
- 'sortable': true
+ key: 'processDefinitionKey',
+ type: 'text',
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_KEY',
+ sortable: true
}
]
}
diff --git a/e2e/process-services-cloud/config/start-process-cloud.config.ts b/e2e/process-services-cloud/config/start-process-cloud.config.ts
index d68a38773e..87a2b74da7 100644
--- a/e2e/process-services-cloud/config/start-process-cloud.config.ts
+++ b/e2e/process-services-cloud/config/start-process-cloud.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,20 +19,20 @@ export class StartProcessCloudConfiguration {
getConfiguration() {
return {
- 'name': 'processwithstarteventform',
- 'values': [
+ name: 'processwithstarteventform',
+ values: [
{
- 'name': 'FirstName',
- 'value': 'sample name'
+ name: 'FirstName',
+ value: 'sample name'
},
{
- 'name': 'Number07vyx9',
- 'value': 17
+ name: 'Number07vyx9',
+ value: 17
}
],
- 'variable': {
- 'mykey1': 'myvalue',
- 'mykey2': 'myvalue2'
+ variable: {
+ mykey1: 'myvalue',
+ mykey2: 'myvalue2'
}
};
}
diff --git a/e2e/process-services-cloud/config/task-filter.config.ts b/e2e/process-services-cloud/config/task-filter.config.ts
index af93a39aa9..7964773eab 100644
--- a/e2e/process-services-cloud/config/task-filter.config.ts
+++ b/e2e/process-services-cloud/config/task-filter.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,7 +16,7 @@
*/
export const taskFilterConfiguration = {
- 'filterProperties': [
+ filterProperties: [
'taskId',
'appName',
'status',
@@ -32,7 +32,7 @@ export const taskFilterConfiguration = {
'sort',
'order'
],
- 'sortProperties': [
+ sortProperties: [
'id',
'name',
'createdDate',
@@ -45,7 +45,7 @@ export const taskFilterConfiguration = {
'owner',
'assignee'
],
- 'actions': [
+ actions: [
'save',
'saveAs',
'delete'
diff --git a/e2e/process-services-cloud/config/task-list-cloud.config.ts b/e2e/process-services-cloud/config/task-list-cloud.config.ts
index 45ebe7bfb7..96b9e70b8e 100644
--- a/e2e/process-services-cloud/config/task-list-cloud.config.ts
+++ b/e2e/process-services-cloud/config/task-list-cloud.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,90 +22,90 @@ export class TaskListCloudConfiguration {
getConfiguration() {
return {
- 'presets': {
- 'default': [
+ presets: {
+ default: [
{
- 'key': 'id',
- 'type': 'text',
- 'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.ID',
- 'sortable': true
+ key: 'id',
+ type: 'text',
+ title: 'ADF_CLOUD_TASK_LIST.PROPERTIES.ID',
+ sortable: true
},
{
- 'key': 'name',
- 'type': 'text',
- 'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.NAME',
- 'sortable': true,
- 'cssClass': 'full-width name-column ellipsis-cell'
+ key: 'name',
+ type: 'text',
+ title: 'ADF_CLOUD_TASK_LIST.PROPERTIES.NAME',
+ sortable: true,
+ cssClass: 'full-width name-column ellipsis-cell'
},
{
- 'key': 'processDefinitionId',
- 'type': 'text',
- 'title': 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PROCESS_DEF_ID',
- 'sortable': true,
- 'cssClass': 'full-width name-column ellipsis-cell'
+ key: 'processDefinitionId',
+ type: 'text',
+ title: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PROCESS_DEF_ID',
+ sortable: true,
+ cssClass: 'full-width name-column ellipsis-cell'
},
{
- 'key': 'processInstanceId',
- 'type': 'text',
- 'title': 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PROCESS_INSTANCE_ID',
- 'sortable': true,
- 'cssClass': 'full-width name-column ellipsis-cell'
+ key: 'processInstanceId',
+ type: 'text',
+ title: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PROCESS_INSTANCE_ID',
+ sortable: true,
+ cssClass: 'full-width name-column ellipsis-cell'
},
{
- 'key': 'status',
- 'type': 'text',
- 'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.STATUS',
- 'sortable': true
+ key: 'status',
+ type: 'text',
+ title: 'ADF_CLOUD_TASK_LIST.PROPERTIES.STATUS',
+ sortable: true
},
{
- 'key': 'priority',
- 'type': 'text',
- 'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.PRIORITY',
- 'sortable': true
+ key: 'priority',
+ type: 'text',
+ title: 'ADF_CLOUD_TASK_LIST.PROPERTIES.PRIORITY',
+ sortable: true
},
{
- 'key': 'createdDate',
- 'type': 'date',
- 'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.CREATED_DATE',
- 'sortable': true,
- 'format': 'timeAgo'
+ key: 'createdDate',
+ type: 'date',
+ title: 'ADF_CLOUD_TASK_LIST.PROPERTIES.CREATED_DATE',
+ sortable: true,
+ format: 'timeAgo'
},
{
- 'key': 'lastModified',
- 'type': 'date',
- 'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.LAST_MODIFIED',
- 'sortable': true,
- 'format': 'timeAgo'
+ key: 'lastModified',
+ type: 'date',
+ title: 'ADF_CLOUD_TASK_LIST.PROPERTIES.LAST_MODIFIED',
+ sortable: true,
+ format: 'timeAgo'
},
{
- 'key': 'assignee',
- 'type': 'text',
- 'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.ASSIGNEE',
- 'sortable': true
+ key: 'assignee',
+ type: 'text',
+ title: 'ADF_CLOUD_TASK_LIST.PROPERTIES.ASSIGNEE',
+ sortable: true
},
{
- 'key': 'parentTaskId',
- 'type': 'text',
- 'title': 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PARENT_TASK_ID',
- 'sortable': true
+ key: 'parentTaskId',
+ type: 'text',
+ title: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PARENT_TASK_ID',
+ sortable: true
},
{
- 'key': 'priority',
- 'type': 'text',
- 'title': 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PRIORITY',
- 'sortable': true
+ key: 'priority',
+ type: 'text',
+ title: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.PRIORITY',
+ sortable: true
},
{
- 'key': 'standalone',
- 'type': 'text',
- 'title': 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.STAND_ALONE',
- 'sortable': true
+ key: 'standalone',
+ type: 'text',
+ title: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.STAND_ALONE',
+ sortable: true
},
{
- 'key': 'owner',
- 'type': 'text',
- 'title': 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.OWNER',
- 'sortable': true
+ key: 'owner',
+ type: 'text',
+ title: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.OWNER',
+ sortable: true
}
]
}
diff --git a/e2e/process-services-cloud/form-field/dropdown-widget.e2e.ts b/e2e/process-services-cloud/form-field/dropdown-widget.e2e.ts
index 24b7ae019b..7d01e2a8ca 100644
--- a/e2e/process-services-cloud/form-field/dropdown-widget.e2e.ts
+++ b/e2e/process-services-cloud/form-field/dropdown-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@ describe('Form Field Component - Dropdown Widget', () => {
const dropdown = widget.dropdown();
- let testUser: { idIdentityService: string, username: string, password: string };
+ let testUser: { idIdentityService: string; username: string; password: string };
const runningTasks = {};
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
diff --git a/e2e/process-services-cloud/form-field/json-widget.e2e.ts b/e2e/process-services-cloud/form-field/json-widget.e2e.ts
index 88cf885472..f74aa1b689 100644
--- a/e2e/process-services-cloud/form-field/json-widget.e2e.ts
+++ b/e2e/process-services-cloud/form-field/json-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -71,7 +71,7 @@ describe('Form Field Component - JSON Widget', () => {
const formId = await formCloudService.getIdByFormName(simpleApp, formWithJson.name);
- await tasksService.createStandaloneTaskWithForm(taskName, simpleApp, formId, { 'assignee': testUser.username });
+ await tasksService.createStandaloneTaskWithForm(taskName, simpleApp, formId, { assignee: testUser.username });
await loginSSOPage.login(testUser.username, testUser.password);
});
diff --git a/e2e/process-services-cloud/form-field/people-group-of-people.e2e.ts b/e2e/process-services-cloud/form-field/people-group-of-people.e2e.ts
index 2a2c9d33d1..344c413ce0 100644
--- a/e2e/process-services-cloud/form-field/people-group-of-people.e2e.ts
+++ b/e2e/process-services-cloud/form-field/people-group-of-people.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/form-field/task-visibility-condition.e2e.ts b/e2e/process-services-cloud/form-field/task-visibility-condition.e2e.ts
index 698efce513..0578f3034a 100644
--- a/e2e/process-services-cloud/form-field/task-visibility-condition.e2e.ts
+++ b/e2e/process-services-cloud/form-field/task-visibility-condition.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@ describe('Task cloud visibility', async () => {
const standaloneTaskName = StringUtil.generateRandomString(5);
const processName = StringUtil.generateRandomString(5);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
diff --git a/e2e/process-services-cloud/form-field/visibility-condition-tabs.e2e.ts b/e2e/process-services-cloud/form-field/visibility-condition-tabs.e2e.ts
index ff83eb6e34..224757fb10 100644
--- a/e2e/process-services-cloud/form-field/visibility-condition-tabs.e2e.ts
+++ b/e2e/process-services-cloud/form-field/visibility-condition-tabs.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/form-field/visibility-condition.e2e.ts b/e2e/process-services-cloud/form-field/visibility-condition.e2e.ts
index 0cd222506a..a92f755cf9 100644
--- a/e2e/process-services-cloud/form-field/visibility-condition.e2e.ts
+++ b/e2e/process-services-cloud/form-field/visibility-condition.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -190,7 +190,7 @@ describe('Visibility conditions - cloud', () => {
});
it('[C309650] Should be able to see Checkbox widget when has multiple visibility conditions and next condition operators', async () => {
- let text1, text2;
+ let text1; let text2;
await formCloudDemoPage.setConfigToEditor(multipleVisibilityFormJson);
await widget.textWidget().isWidgetVisible(widgets.textOneId);
diff --git a/e2e/process-services-cloud/pages/people-group-cloud-component.page.ts b/e2e/process-services-cloud/pages/people-group-cloud-component.page.ts
index 6ad827fe6b..aab68c23af 100644
--- a/e2e/process-services-cloud/pages/people-group-cloud-component.page.ts
+++ b/e2e/process-services-cloud/pages/people-group-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/pages/process-cloud-demo.page.ts b/e2e/process-services-cloud/pages/process-cloud-demo.page.ts
index dd222fb2c6..c8fa14529b 100644
--- a/e2e/process-services-cloud/pages/process-cloud-demo.page.ts
+++ b/e2e/process-services-cloud/pages/process-cloud-demo.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/pages/process-details-cloud-demo.page.ts b/e2e/process-services-cloud/pages/process-details-cloud-demo.page.ts
index 083bd8bc69..98e6074eb9 100644
--- a/e2e/process-services-cloud/pages/process-details-cloud-demo.page.ts
+++ b/e2e/process-services-cloud/pages/process-details-cloud-demo.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/pages/service-task-list.page.ts b/e2e/process-services-cloud/pages/service-task-list.page.ts
index 882471a689..529e014ece 100644
--- a/e2e/process-services-cloud/pages/service-task-list.page.ts
+++ b/e2e/process-services-cloud/pages/service-task-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/pages/tasks-cloud-demo.page.ts b/e2e/process-services-cloud/pages/tasks-cloud-demo.page.ts
index d7f9f047fa..a98fc3d3b8 100644
--- a/e2e/process-services-cloud/pages/tasks-cloud-demo.page.ts
+++ b/e2e/process-services-cloud/pages/tasks-cloud-demo.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -36,8 +36,8 @@ export class TasksCloudDemoPage {
contextMenuToggle = $('mat-slide-toggle[data-automation-id="contextmenu"]');
multiSelectionToggle = $('mat-slide-toggle[data-automation-id="multiSelection"]');
testingModeToggle = $('mat-slide-toggle[data-automation-id="testingMode"]');
- selectedRows = element(by.xpath("//div[text()=' Selected Rows: ']"));
- noOfSelectedRows = element.all(by.xpath("//div[text()=' Selected Rows: ']//li"));
+ selectedRows = element(by.xpath('//div[text()=\' Selected Rows: \']'));
+ noOfSelectedRows = element.all(by.xpath('//div[text()=\' Selected Rows: \']//li'));
addActionTitle = element(by.cssContainingText('.mat-card-title', 'Add Action'));
keyInputField = TestElement.byCss('input[data-placeholder="Key"]');
titleInputField = TestElement.byCss('input[data-placeholder="Title"]');
diff --git a/e2e/process-services-cloud/people/people-group-cloud-component.e2e.ts b/e2e/process-services-cloud/people/people-group-cloud-component.e2e.ts
index f26c06f5cc..3e3b0cb59f 100644
--- a/e2e/process-services-cloud/people/people-group-cloud-component.e2e.ts
+++ b/e2e/process-services-cloud/people/people-group-cloud-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/people/people-group-cloud-filter-component.e2e.ts b/e2e/process-services-cloud/people/people-group-cloud-filter-component.e2e.ts
index 99a86b1edb..9c9b6d5919 100644
--- a/e2e/process-services-cloud/people/people-group-cloud-filter-component.e2e.ts
+++ b/e2e/process-services-cloud/people/people-group-cloud-filter-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/process/process-custom-filters.e2e.ts b/e2e/process-services-cloud/process/process-custom-filters.e2e.ts
index 32e210ba0d..edfe057b92 100644
--- a/e2e/process-services-cloud/process/process-custom-filters.e2e.ts
+++ b/e2e/process-services-cloud/process/process-custom-filters.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -77,8 +77,8 @@ describe('Process list cloud', () => {
const processListCloudConfigFile = processListCloudConfiguration.getConfiguration();
const editProcessFilterConfigFile = editProcessFilterConfiguration.getConfiguration();
- let completedProcess, runningProcessInstance, switchProcessInstance, noOfApps, testUser, groupInfo,
- anotherProcessInstance;
+ let completedProcess; let runningProcessInstance; let switchProcessInstance; let noOfApps; let testUser; let groupInfo;
+ let anotherProcessInstance;
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
beforeAll(async () => {
@@ -99,23 +99,23 @@ describe('Process list cloud', () => {
await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp);
runningProcessInstance = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
anotherProcessInstance = await processInstancesService.createProcessInstance(anotherProcessDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
switchProcessInstance = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
completedProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
const task = await queryService.getProcessInstanceTasks(completedProcess.entry.id, candidateBaseApp);
diff --git a/e2e/process-services-cloud/process/process-filter-results.e2e.ts b/e2e/process-services-cloud/process/process-filter-results.e2e.ts
index fa4663c664..526b76fa00 100644
--- a/e2e/process-services-cloud/process/process-filter-results.e2e.ts
+++ b/e2e/process-services-cloud/process/process-filter-results.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -74,12 +74,19 @@ describe('Process filters cloud', () => {
const processListCloudConfigFile = processListCloudConfiguration.getConfiguration();
const editProcessFilterConfigFile = editProcessFilterConfiguration.getConfiguration();
- let completedProcess, runningProcessInstance, suspendProcessInstance, testUser, anotherUser, groupInfo,
- anotherProcessInstance, processDefinition, anotherProcessDefinition,
- differentAppUserProcessInstance, simpleAppProcessDefinition;
+ let completedProcess; let runningProcessInstance; let suspendProcessInstance; let testUser; let anotherUser; let groupInfo;
+ let anotherProcessInstance; let processDefinition; let anotherProcessDefinition;
+ let differentAppUserProcessInstance; let simpleAppProcessDefinition;
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
+ const setProcessName = async (propertyValue: string, propertyName = 'lastModifiedTo') => {
+ await editProcessFilter.openFilter();
+ await editProcessFilter.setProperty(propertyName, propertyValue);
+ await processList.getDataTable().waitTillContentLoaded();
+ await editProcessFilter.setProcessName(runningProcessInstance.entry.name);
+ };
+
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
@@ -95,8 +102,8 @@ describe('Process filters cloud', () => {
.getProcessDefinitionByName(browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.processes.simpleProcess, simpleApp);
differentAppUserProcessInstance = await processInstancesService.createProcessInstance(simpleAppProcessDefinition.entry.key, simpleApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
await apiService.login(testUser.username, testUser.password);
@@ -107,24 +114,24 @@ describe('Process filters cloud', () => {
.getProcessDefinitionByName(browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.processes.anotherCandidateGroupProcess, candidateBaseApp);
runningProcessInstance = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
anotherProcessInstance = await processInstancesService.createProcessInstance(anotherProcessDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
suspendProcessInstance = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
await processInstancesService.suspendProcessInstance(suspendProcessInstance.entry.id, candidateBaseApp);
completedProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
const task = await queryService.getProcessInstanceTasks(completedProcess.entry.id, candidateBaseApp);
@@ -308,18 +315,12 @@ describe('Process filters cloud', () => {
});
it('[C311318] Should be able to filter by lastModifiedFrom - displays record when date = currentDate', async () => {
- await editProcessFilter.openFilter();
- await editProcessFilter.setProperty('lastModifiedFrom', currentDate);
- await processList.getDataTable().waitTillContentLoaded();
- await editProcessFilter.setProcessName(runningProcessInstance.entry.name);
+ await setProcessName(currentDate, 'lastModifiedFrom');
await processList.checkContentIsDisplayedByName(runningProcessInstance.entry.name);
});
it('[C311318] Should be able to filter by lastModifiedFrom - displays record when date = beforeDate', async () => {
- await editProcessFilter.openFilter();
- await editProcessFilter.setProperty('lastModifiedFrom', beforeDate);
- await processList.getDataTable().waitTillContentLoaded();
- await editProcessFilter.setProcessName(runningProcessInstance.entry.name);
+ await setProcessName(beforeDate, 'lastModifiedFrom');
await processList.checkContentIsDisplayedByName(runningProcessInstance.entry.name);
});
@@ -332,18 +333,12 @@ describe('Process filters cloud', () => {
});
it('[C311319] Should be able to filter by lastModifiedTo - displays record when date = currentDate', async () => {
- await editProcessFilter.openFilter();
- await editProcessFilter.setProperty('lastModifiedTo', currentDate);
- await processList.getDataTable().waitTillContentLoaded();
- await editProcessFilter.setProcessName(runningProcessInstance.entry.name);
+ await setProcessName(currentDate);
await processList.checkContentIsDisplayedByName(runningProcessInstance.entry.name);
});
it('[C311319] Should be able to filter by lastModifiedTo - does not display record when date = beforeDate', async () => {
- await editProcessFilter.openFilter();
- await editProcessFilter.setProperty('lastModifiedTo', beforeDate);
- await processList.getDataTable().waitTillContentLoaded();
- await editProcessFilter.setProcessName(runningProcessInstance.entry.name);
+ await setProcessName(beforeDate);
await processList.checkContentIsNotDisplayedByName(runningProcessInstance.entry.name);
});
diff --git a/e2e/process-services-cloud/process/process-filter-task.e2e.ts b/e2e/process-services-cloud/process/process-filter-task.e2e.ts
index fbb629008d..0216786be2 100644
--- a/e2e/process-services-cloud/process/process-filter-task.e2e.ts
+++ b/e2e/process-services-cloud/process/process-filter-task.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/process/process-filters-cloud.e2e.ts b/e2e/process-services-cloud/process/process-filters-cloud.e2e.ts
index 61ee5ef947..ee098121e2 100644
--- a/e2e/process-services-cloud/process/process-filters-cloud.e2e.ts
+++ b/e2e/process-services-cloud/process/process-filters-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ describe('Process filters cloud', () => {
const tasksService = new TasksService(apiService);
const processInstancesService = new ProcessInstancesService(apiService);
- let runningProcess, completedProcess, testUser, groupInfo;
+ let runningProcess; let completedProcess; let testUser; let groupInfo;
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
const PROCESSES = CONSTANTS.PROCESS_FILTERS;
@@ -68,13 +68,13 @@ describe('Process filters cloud', () => {
.getProcessDefinitionByName(browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.processes.candidateGroupProcess, candidateBaseApp);
runningProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
completedProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
const task = await queryService.getProcessInstanceTasks(completedProcess.entry.id, candidateBaseApp);
diff --git a/e2e/process-services-cloud/process/process-header-cloud.e2e.ts b/e2e/process-services-cloud/process/process-header-cloud.e2e.ts
index 06d73faf5e..3e1924d883 100644
--- a/e2e/process-services-cloud/process/process-header-cloud.e2e.ts
+++ b/e2e/process-services-cloud/process/process-header-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,9 +55,9 @@ describe('Process Header cloud component', () => {
const processInstancesService = new ProcessInstancesService(apiService);
const queryService = new QueryService(apiService);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
- let runningProcess, runningCreatedDate, parentCompleteProcess, childCompleteProcess, completedCreatedDate;
+ let runningProcess; let runningCreatedDate; let parentCompleteProcess; let childCompleteProcess; let completedCreatedDate;
const PROCESSES = CONSTANTS.PROCESS_FILTERS;
beforeAll(async () => {
@@ -92,7 +92,7 @@ describe('Process Header cloud component', () => {
await LocalStorageUtil.setConfigField('adf-edit-process-filter', JSON.stringify(editProcessFilterConfigFile));
});
- afterAll(async() => {
+ afterAll(async () => {
await apiService.loginWithProfile('identityAdmin');
await identityService.deleteIdentityUser(testUser.idIdentityService);
});
diff --git a/e2e/process-services-cloud/process/process-list-selection-cloud.e2e.ts b/e2e/process-services-cloud/process/process-list-selection-cloud.e2e.ts
index efb6cd80d7..3bf70b4c1d 100644
--- a/e2e/process-services-cloud/process/process-list-selection-cloud.e2e.ts
+++ b/e2e/process-services-cloud/process/process-list-selection-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -48,7 +48,7 @@ describe('Process list cloud', () => {
const processDefinitionService = new ProcessDefinitionsService(apiService);
const processInstancesService = new ProcessInstancesService(apiService);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
const noOfProcesses = 3;
const processInstances = [];
@@ -56,6 +56,18 @@ describe('Process list cloud', () => {
const editProcessFilterConfigFile = editProcessFilterConfiguration.getConfiguration();
const PROCESSES = CONSTANTS.PROCESS_FILTERS;
+ const checkRowIsSelectedById = async (mode = 'Single') => {
+ await tasksCloudDemoPage.clickSettingsButton();
+ await tasksCloudDemoPage.selectSelectionMode(mode);
+ await tasksCloudDemoPage.clickAppButton();
+ await processFilter.isProcessFiltersListVisible();
+ await expect(await processFilter.getActiveFilterName()).toEqual(PROCESSES.RUNNING);
+ await editProcessFilter.setFilter({ initiator: `${testUser.firstName} ${testUser.lastName}`});
+ await processList.getDataTable().waitTillContentLoaded();
+ await processList.selectRowById(processInstances[0]);
+ await processList.checkRowIsSelectedById(processInstances[0]);
+ };
+
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
@@ -76,7 +88,7 @@ describe('Process list cloud', () => {
await LocalStorageUtil.setConfigField('adf-edit-process-filter', JSON.stringify(editProcessFilterConfigFile));
});
- afterAll(async() => {
+ afterAll(async () => {
await apiService.loginWithProfile('identityAdmin');
await identityService.deleteIdentityUser(testUser.idIdentityService);
});
@@ -108,16 +120,7 @@ describe('Process list cloud', () => {
});
it('[C297468] Should be able to select only one process when settings are set to Single', async () => {
- await tasksCloudDemoPage.clickSettingsButton();
- await tasksCloudDemoPage.selectSelectionMode('Single');
- await tasksCloudDemoPage.clickAppButton();
- await processFilter.isProcessFiltersListVisible();
- await expect(await processFilter.getActiveFilterName()).toEqual(PROCESSES.RUNNING);
-
- await editProcessFilter.setFilter({ 'initiator': `${testUser.firstName} ${testUser.lastName}`});
- await processList.getDataTable().waitTillContentLoaded();
- await processList.selectRowById(processInstances[0]);
- await processList.checkRowIsSelectedById(processInstances[0]);
+ await checkRowIsSelectedById();
await expect(await processList.getDataTable().getNumberOfSelectedRows()).toEqual(1);
await processList.selectRowById(processInstances[1]);
await processList.checkRowIsSelectedById(processInstances[1]);
@@ -125,15 +128,7 @@ describe('Process list cloud', () => {
});
it('[C297470] Should be able to select multiple processes using keyboard', async () => {
- await tasksCloudDemoPage.clickSettingsButton();
- await tasksCloudDemoPage.selectSelectionMode('Multiple');
- await tasksCloudDemoPage.clickAppButton();
- await processFilter.isProcessFiltersListVisible();
- await expect(await processFilter.getActiveFilterName()).toEqual(PROCESSES.RUNNING);
- await editProcessFilter.setFilter({ 'initiator': `${testUser.firstName} ${testUser.lastName}`});
- await processList.getDataTable().waitTillContentLoaded();
- await processList.selectRowById(processInstances[0]);
- await processList.checkRowIsSelectedById(processInstances[0]);
+ await checkRowIsSelectedById('Multiple');
await processList.selectRowWithKeyboard(processInstances[1]);
await processList.checkRowIsSelectedById(processInstances[0]);
await processList.checkRowIsSelectedById(processInstances[1]);
@@ -147,7 +142,7 @@ describe('Process list cloud', () => {
await tasksCloudDemoPage.clickAppButton();
await processFilter.isProcessFiltersListVisible();
await expect(await processFilter.getActiveFilterName()).toEqual(PROCESSES.RUNNING);
- await editProcessFilter.setFilter({ 'initiator': `${testUser.firstName} ${testUser.lastName}`});
+ await editProcessFilter.setFilter({ initiator: `${testUser.firstName} ${testUser.lastName}`});
await processList.getDataTable().waitTillContentLoaded();
await processList.checkCheckboxById(processInstances[0]);
await processList.checkRowIsCheckedById(processInstances[0]);
@@ -164,7 +159,7 @@ describe('Process list cloud', () => {
await tasksCloudDemoPage.enableMultiSelection();
await tasksCloudDemoPage.clickAppButton();
await processFilter.isProcessFiltersListVisible();
- await editProcessFilter.setFilter({ 'initiator': `${testUser.firstName} ${testUser.lastName}`});
+ await editProcessFilter.setFilter({ initiator: `${testUser.firstName} ${testUser.lastName}`});
await processList.getDataTable().waitTillContentLoaded();
await expect(await processFilter.getActiveFilterName()).toEqual(PROCESSES.RUNNING);
await browser.sleep(1000);
@@ -188,7 +183,7 @@ describe('Process list cloud', () => {
await tasksCloudDemoPage.clickAppButton();
await processFilter.isProcessFiltersListVisible();
await expect(await processFilter.getActiveFilterName()).toEqual(PROCESSES.RUNNING);
- await editProcessFilter.setFilter({ 'initiator': `${testUser.firstName} ${testUser.lastName}`});
+ await editProcessFilter.setFilter({ initiator: `${testUser.firstName} ${testUser.lastName}`});
await processList.getDataTable().waitTillContentLoaded();
await processList.checkCheckboxById(processInstances[0]);
await processList.checkRowIsCheckedById(processInstances[0]);
diff --git a/e2e/process-services-cloud/process/process-task-attach-content-file-cloud.e2e.ts b/e2e/process-services-cloud/process/process-task-attach-content-file-cloud.e2e.ts
index a8ba18e6d7..07169f9db4 100644
--- a/e2e/process-services-cloud/process/process-task-attach-content-file-cloud.e2e.ts
+++ b/e2e/process-services-cloud/process/process-task-attach-content-file-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -77,13 +77,13 @@ describe('Process Task - Attach content file', () => {
let groupInfo: any;
const pdfFileOne = {
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
};
const pdfFileTwo = {
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_B.file_path
};
beforeAll(async () => {
diff --git a/e2e/process-services-cloud/start-task/start-process-cloud.e2e.ts b/e2e/process-services-cloud/start-task/start-process-cloud.e2e.ts
index 2800dcb9fa..fae196df76 100644
--- a/e2e/process-services-cloud/start-task/start-process-cloud.e2e.ts
+++ b/e2e/process-services-cloud/start-task/start-process-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@ describe('Start Process', () => {
const lengthValidationError = 'Length exceeded, 255 characters max.';
const requiredError = 'Process Name is required';
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
- let testUser, groupInfo;
+ let testUser; let groupInfo;
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
diff --git a/e2e/process-services-cloud/start-task/start-task-custom-app-cloud.e2e.ts b/e2e/process-services-cloud/start-task/start-task-custom-app-cloud.e2e.ts
index 00d33f06d7..f1f114eba9 100644
--- a/e2e/process-services-cloud/start-task/start-task-custom-app-cloud.e2e.ts
+++ b/e2e/process-services-cloud/start-task/start-task-custom-app-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@ describe('Start Task', () => {
const lengthValidationError = 'Length exceeded, 255 characters max.';
const requiredError = 'Field required';
const dateValidationError = 'Date format DD/MM/YYYY';
- let apsUser, testUser, activitiUser, groupInfo;
+ let apsUser; let testUser; let activitiUser; let groupInfo;
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
diff --git a/e2e/process-services-cloud/start-task/start-task-form-cloud.e2e.ts b/e2e/process-services-cloud/start-task/start-task-form-cloud.e2e.ts
index 6aabdeb43e..da1f7dbea5 100644
--- a/e2e/process-services-cloud/start-task/start-task-form-cloud.e2e.ts
+++ b/e2e/process-services-cloud/start-task/start-task-form-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -83,20 +83,20 @@ describe('Start Task Form', () => {
const standaloneTaskName = StringUtil.generateRandomString(5);
const startEventFormProcess = StringUtil.generateRandomString(5);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
let processDefinitionService: ProcessDefinitionsService;
let processInstancesService: ProcessInstancesService;
- let processDefinition, uploadLocalFileProcess, uploadContentFileProcess, uploadDefaultFileProcess,
- cancelUploadFileProcess, completeUploadFileProcess, downloadContentFileProcess;
+ let processDefinition; let uploadLocalFileProcess; let uploadContentFileProcess; let uploadDefaultFileProcess;
+ let cancelUploadFileProcess; let completeUploadFileProcess; let downloadContentFileProcess;
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
- const pdfFile = new FileModel({ 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name });
+ const pdfFile = new FileModel({ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name });
const pdfFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_path
});
const testFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TEST.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TEST.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TEST.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TEST.file_path
});
const folderName = StringUtil.generateRandomString(5);
@@ -118,35 +118,35 @@ describe('Start Task Form', () => {
await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp);
uploadLocalFileProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
uploadContentFileProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
const task = await queryService.getProcessInstanceTasks(uploadContentFileProcess.entry.id, candidateBaseApp);
await tasksService.claimTask(task.list.entries[0].entry.id, candidateBaseApp);
uploadDefaultFileProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
cancelUploadFileProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
completeUploadFileProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
downloadContentFileProcess = await processInstancesService.createProcessInstance(processDefinition.entry.key, candidateBaseApp, {
- 'name': StringUtil.generateRandomString(),
- 'businessKey': StringUtil.generateRandomString()
+ name: StringUtil.generateRandomString(),
+ businessKey: StringUtil.generateRandomString()
});
await apiService.login(testUser.username, testUser.password);
diff --git a/e2e/process-services-cloud/start-task/start-task-group-cloud.e2e.ts b/e2e/process-services-cloud/start-task/start-task-group-cloud.e2e.ts
index e7c4234f1f..880f965183 100644
--- a/e2e/process-services-cloud/start-task/start-task-group-cloud.e2e.ts
+++ b/e2e/process-services-cloud/start-task/start-task-group-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ describe('Start Task - Group Cloud Component', () => {
const bothGroupsTaskName = StringUtil.generateRandomString(5);
const oneGroupTaskName = StringUtil.generateRandomString(5);
- let apsUser, testUser, hrGroup, testGroup;
+ let apsUser; let testUser; let hrGroup; let testGroup;
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
diff --git a/e2e/process-services-cloud/task-list/apps-section-cloud.e2e.ts b/e2e/process-services-cloud/task-list/apps-section-cloud.e2e.ts
index 8145ee4d3e..5c9998df74 100644
--- a/e2e/process-services-cloud/task-list/apps-section-cloud.e2e.ts
+++ b/e2e/process-services-cloud/task-list/apps-section-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/task-list/edit-process-filters-component.e2e.ts b/e2e/process-services-cloud/task-list/edit-process-filters-component.e2e.ts
index 1f0d549497..16ae77536a 100644
--- a/e2e/process-services-cloud/task-list/edit-process-filters-component.e2e.ts
+++ b/e2e/process-services-cloud/task-list/edit-process-filters-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Edit process filters cloud', () => {
const identityService = new IdentityService(apiService);
const groupIdentityService = new GroupIdentityService(apiService);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
const PROCESSES = CONSTANTS.PROCESS_FILTERS;
diff --git a/e2e/process-services-cloud/task-list/edit-task-filters-component.e2e.ts b/e2e/process-services-cloud/task-list/edit-task-filters-component.e2e.ts
index 4a41336134..a4eb1b20a6 100644
--- a/e2e/process-services-cloud/task-list/edit-task-filters-component.e2e.ts
+++ b/e2e/process-services-cloud/task-list/edit-task-filters-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,10 +44,10 @@ describe('Edit task filters cloud', () => {
const groupIdentityService = new GroupIdentityService(apiService);
const tasksService = new TasksService(apiService);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
- const completedTaskName = StringUtil.generateRandomString(),
- assignedTaskName = StringUtil.generateRandomString();
+ const completedTaskName = StringUtil.generateRandomString();
+ const assignedTaskName = StringUtil.generateRandomString();
async function clickTaskFilter(name: string) {
await taskFilter.clickTaskFilter(name);
diff --git a/e2e/process-services-cloud/task-list/task-counters-cloud.e2e.ts b/e2e/process-services-cloud/task-list/task-counters-cloud.e2e.ts
index e0a6e6b57d..80ff0165ea 100644
--- a/e2e/process-services-cloud/task-list/task-counters-cloud.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-counters-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -52,7 +52,7 @@ describe('Task counters cloud', () => {
const processInstancesService = new ProcessInstancesService(apiService);
const queryService = new QueryService(apiService);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
const createdTaskName = StringUtil.generateRandomString();
@@ -83,7 +83,7 @@ describe('Task counters cloud', () => {
await expect(await taskFilter.getTaskFilterCounter('my-tasks')).toBe('0');
const processDefinition = await processDefinitionService.getProcessDefinitionByName(browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.processes.uploadSingleMultipleFiles, simpleApp);
- const processInstance = await processInstancesService.createProcessInstance(processDefinition.entry.key, simpleApp, { 'name': StringUtil.generateRandomString() });
+ const processInstance = await processInstancesService.createProcessInstance(processDefinition.entry.key, simpleApp, { name: StringUtil.generateRandomString() });
const task = await queryService.getProcessInstanceTasks(processInstance.entry.id, simpleApp);
await tasksService.claimTask(task.list.entries[0].entry.id, simpleApp);
diff --git a/e2e/process-services-cloud/task-list/task-filters-cloud.e2e.ts b/e2e/process-services-cloud/task-list/task-filters-cloud.e2e.ts
index 42bb7c935c..b9b47f74ac 100644
--- a/e2e/process-services-cloud/task-list/task-filters-cloud.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-filters-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,9 +47,9 @@ describe('Task filters cloud', () => {
const groupIdentityService = new GroupIdentityService(apiService);
const tasksService = new TasksService(apiService);
- let testUser, groupInfo;
+ let testUser; let groupInfo;
- const newTask = StringUtil.generateRandomString(5), completedTask = StringUtil.generateRandomString(5);
+ const newTask = StringUtil.generateRandomString(5); const completedTask = StringUtil.generateRandomString(5);
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
diff --git a/e2e/process-services-cloud/task-list/task-form-cloud-component-tab.e2e.ts b/e2e/process-services-cloud/task-list/task-form-cloud-component-tab.e2e.ts
index 77c40a30b0..a00d6a29e7 100644
--- a/e2e/process-services-cloud/task-list/task-form-cloud-component-tab.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-form-cloud-component-tab.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -46,10 +46,10 @@ describe('Task form cloud component', () => {
let processInstancesService: ProcessInstancesService;
let identityService: IdentityService;
- let completedTask, assigneeTask, toBeCompletedTask, formValidationsTask, testUser;
+ let completedTask; let assigneeTask; let toBeCompletedTask; let formValidationsTask; let testUser;
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
- const completedTaskName = StringUtil.generateRandomString(), assignedTaskName = StringUtil.generateRandomString();
+ const completedTaskName = StringUtil.generateRandomString(); const assignedTaskName = StringUtil.generateRandomString();
const apiService = createApiService();
const apiServiceHrUser = createApiService();
diff --git a/e2e/process-services-cloud/task-list/task-form-cloud-component.e2e.ts b/e2e/process-services-cloud/task-list/task-form-cloud-component.e2e.ts
index 478f68f808..35b3c3f88b 100644
--- a/e2e/process-services-cloud/task-list/task-form-cloud-component.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-form-cloud-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@ describe('Task form cloud component', () => {
const processInstancesService = new ProcessInstancesService(apiService);
const formCloudService = new FormCloudService(apiService);
- const completedTaskName = StringUtil.generateRandomString(), assignedTaskName = StringUtil.generateRandomString();
+ const completedTaskName = StringUtil.generateRandomString(); const assignedTaskName = StringUtil.generateRandomString();
const myTasksFilter = 'my-tasks';
const completedTasksFilter = 'completed-tasks';
const dateFieldId = 'Date0rzbb6';
@@ -69,8 +69,8 @@ describe('Task form cloud component', () => {
const changedDate = '2020-07-10';
const dropdownFieldId = 'DropdownOptions';
- let completedTask, createdTask, assigneeTask, toBeCompletedTask, formValidationsTask, formTaskId, assigneeTaskId, assigneeReleaseTask, candidateUsersTask ;
- let dateTimerTaskId, dateTimerTask, dateTimerChangedTaskId, dateTimerChangedTask, dropdownOptionsTask;
+ let completedTask; let createdTask; let assigneeTask; let toBeCompletedTask; let formValidationsTask; let formTaskId; let assigneeTaskId; let assigneeReleaseTask; let candidateUsersTask ;
+ let dateTimerTaskId; let dateTimerTask; let dateTimerChangedTaskId; let dateTimerChangedTask; let dropdownOptionsTask;
beforeAll(async () => {
try {
diff --git a/e2e/process-services-cloud/task-list/task-header-cloud.e2e.ts b/e2e/process-services-cloud/task-list/task-header-cloud.e2e.ts
index 1b20699c44..0fb3b41541 100644
--- a/e2e/process-services-cloud/task-list/task-header-cloud.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-header-cloud.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,9 +31,7 @@ import { TasksCloudDemoPage } from './../pages/tasks-cloud-demo.page';
import { NavigationBarPage } from '../../core/pages/navigation-bar.page';
import * as moment from 'moment';
-const isValueInvalid = (value: any): boolean => {
- return value === null || value === undefined;
-};
+const isValueInvalid = (value: any): boolean => value === null || value === undefined;
describe('Task Header cloud component', () => {
@@ -75,21 +73,21 @@ describe('Task Header cloud component', () => {
const formatDate = 'MMM D, YYYY';
const dateTimeFormat = 'MMM D, Y, H:mm';
- const createCompletedTask = async function () {
+ const createCompletedTask = async function() {
const completedTaskId = await tasksService.createStandaloneTask(completedTaskName,
- simpleApp, { priority: priority, description: description, dueDate: basicCreatedTask.entry.createdDate });
+ simpleApp, { priority, description, dueDate: basicCreatedTask.entry.createdDate });
await tasksService.claimTask(completedTaskId.entry.id, simpleApp);
await tasksService.completeTask(completedTaskId.entry.id, simpleApp);
return tasksService.getTask(completedTaskId.entry.id, simpleApp);
};
- const createSubTask = async function (createdTaskId) {
+ const createSubTask = async function(createdTaskId) {
const subTaskId = await tasksService.createStandaloneSubtask(createdTaskId.entry.id, simpleApp, StringUtil.generateRandomString());
await tasksService.claimTask(subTaskId.entry.id, simpleApp);
return tasksService.getTask(subTaskId.entry.id, simpleApp);
};
- const createTask = async function () {
+ const createTask = async function() {
const createdTaskId = await tasksService.createStandaloneTask(basicCreatedTaskName, simpleApp);
await tasksService.claimTask(createdTaskId.entry.id, simpleApp);
basicCreatedTask = await tasksService.getTask(createdTaskId.entry.id, simpleApp);
diff --git a/e2e/process-services-cloud/task-list/task-list-properties-sort.e2e.ts b/e2e/process-services-cloud/task-list/task-list-properties-sort.e2e.ts
index 49f86057d2..bed2f5f76b 100644
--- a/e2e/process-services-cloud/task-list/task-list-properties-sort.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-list-properties-sort.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,8 +47,8 @@ describe('Edit task filters and task list properties', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
- let createdTask, notDisplayedTask, noPriorityTask, lowPriorityTask, normalPriorityTask, hightPriorityTask, subTask,
- otherOwnerTask, testUser, groupInfo;
+ let createdTask; let notDisplayedTask; let noPriorityTask; let lowPriorityTask; let normalPriorityTask; let hightPriorityTask; let subTask;
+ let otherOwnerTask; let testUser; let groupInfo;
beforeAll(async () => {
await apiService.loginWithProfile('identityAdmin');
@@ -78,7 +78,7 @@ describe('Edit task filters and task list properties', () => {
notDisplayedTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), candidateBaseApp);
await tasksService.claimTask(notDisplayedTask.entry.id, candidateBaseApp);
- subTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp, { 'parentTaskId': createdTask.entry.id });
+ subTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp, { parentTaskId: createdTask.entry.id });
await tasksService.claimTask(subTask.entry.id, simpleApp);
const jsonFile = new TaskListCloudConfiguration().getConfiguration();
@@ -86,7 +86,7 @@ describe('Edit task filters and task list properties', () => {
await loginSSOPage.login(testUser.username, testUser.password);
await LocalStorageUtil.setConfigField('adf-cloud-task-list', JSON.stringify(jsonFile));
await LocalStorageUtil.setConfigField('adf-edit-task-filter', JSON.stringify({
- 'filterProperties': [
+ filterProperties: [
'taskId',
'appName',
'status',
@@ -102,7 +102,7 @@ describe('Edit task filters and task list properties', () => {
'sort',
'order'
],
- 'sortProperties': [
+ sortProperties: [
'id',
'name',
'createdDate',
@@ -115,7 +115,7 @@ describe('Edit task filters and task list properties', () => {
'owner',
'assignee'
],
- 'actions': [
+ actions: [
'save',
'saveAs',
'delete'
diff --git a/e2e/process-services-cloud/task-list/task-list-properties.e2e.ts b/e2e/process-services-cloud/task-list/task-list-properties.e2e.ts
index 9f34906d5a..3eb6e8ff8c 100644
--- a/e2e/process-services-cloud/task-list/task-list-properties.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-list-properties.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -50,8 +50,8 @@ describe('Edit task filters and task list properties', () => {
const processInstancesService = new ProcessInstancesService(apiService);
const noTasksFoundMessage = 'No Tasks Found';
- let createdTask, notAssigned, notDisplayedTask, processDefinition, processInstance, priorityTask, subTask,
- otherOwnerTask, testUser, groupInfo, simpleTask;
+ let createdTask; let notAssigned; let notDisplayedTask; let processDefinition; let processInstance; let priorityTask; let subTask;
+ let otherOwnerTask; let testUser; let groupInfo; let simpleTask;
const priority = 1;
const beforeDate = moment().add(-1, 'days').format('DD/MM/YYYY');
@@ -76,7 +76,7 @@ describe('Edit task filters and task list properties', () => {
simpleTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp);
notAssigned = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp);
- priorityTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp, { priority: priority });
+ priorityTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp, { priority });
await tasksService.claimTask(priorityTask.entry.id, simpleApp);
notDisplayedTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), candidateBaseApp);
@@ -87,7 +87,7 @@ describe('Edit task filters and task list properties', () => {
processInstance = await processInstancesService.createProcessInstance(processDefinition.entry.key, simpleApp);
- subTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp, { 'parentTaskId': createdTask.entry.id });
+ subTask = await tasksService.createStandaloneTask(StringUtil.generateRandomString(), simpleApp, { parentTaskId: createdTask.entry.id });
await tasksService.claimTask(subTask.entry.id, simpleApp);
const jsonFile = new TaskListCloudConfiguration().getConfiguration();
diff --git a/e2e/process-services-cloud/task-list/task-list-selection.e2e.ts b/e2e/process-services-cloud/task-list/task-list-selection.e2e.ts
index 9288359c4e..c7ffeb874c 100644
--- a/e2e/process-services-cloud/task-list/task-list-selection.e2e.ts
+++ b/e2e/process-services-cloud/task-list/task-list-selection.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,7 +45,7 @@ describe('Task list cloud - selection', () => {
const tasksService = new TasksService(apiService);
const noOfTasks = 3;
- let response, testUser, groupInfo;
+ let response; let testUser; let groupInfo;
const tasks = [];
beforeAll(async () => {
diff --git a/e2e/process-services-cloud/task-list/tasks-claim-release.e2e.ts b/e2e/process-services-cloud/task-list/tasks-claim-release.e2e.ts
index 7ac87a8492..b3e85c6de2 100644
--- a/e2e/process-services-cloud/task-list/tasks-claim-release.e2e.ts
+++ b/e2e/process-services-cloud/task-list/tasks-claim-release.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services-cloud/task-list/tasks-custom-filters.e2e.ts b/e2e/process-services-cloud/task-list/tasks-custom-filters.e2e.ts
index 4f933455e2..3ef94796b4 100644
--- a/e2e/process-services-cloud/task-list/tasks-custom-filters.e2e.ts
+++ b/e2e/process-services-cloud/task-list/tasks-custom-filters.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -52,10 +52,10 @@ describe('Task filters cloud', () => {
const processInstancesService = new ProcessInstancesService(apiService);
const queryService = new QueryService(apiService);
- const createdTaskName = StringUtil.generateRandomString(),
- completedTaskName = StringUtil.generateRandomString(),
- assignedTaskName = StringUtil.generateRandomString(), deletedTaskName = StringUtil.generateRandomString();
- let assignedTask, deletedTask, testUser, groupInfo;
+ const createdTaskName = StringUtil.generateRandomString();
+ const completedTaskName = StringUtil.generateRandomString();
+ const assignedTaskName = StringUtil.generateRandomString(); const deletedTaskName = StringUtil.generateRandomString();
+ let assignedTask; let deletedTask; let testUser; let groupInfo;
const orderByNameAndPriority = ['cCreatedTask', 'dCreatedTask', 'eCreatedTask'];
let priority = 1;
const nrOfTasks = 3;
@@ -77,7 +77,7 @@ describe('Task filters cloud', () => {
deletedTask = await tasksService.createStandaloneTask(deletedTaskName, simpleApp);
await tasksService.deleteTask(deletedTask.entry.id, simpleApp);
for (let i = 0; i < nrOfTasks; i++) {
- await tasksService.createStandaloneTask(orderByNameAndPriority[i], simpleApp, { priority: priority });
+ await tasksService.createStandaloneTask(orderByNameAndPriority[i], simpleApp, { priority });
priority = priority + 1;
}
diff --git a/e2e/process-services/config/task.config.ts b/e2e/process-services/config/task.config.ts
index d8ea1ce218..47fd3e9824 100644
--- a/e2e/process-services/config/task.config.ts
+++ b/e2e/process-services/config/task.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,8 +16,8 @@
*/
export const infoDrawerConfiguration = {
- 'presets': {
- 'properties': [
+ presets: {
+ properties: [
'assignee',
'status',
'priority',
diff --git a/e2e/process-services/form/apps-section.e2e.ts b/e2e/process-services/form/apps-section.e2e.ts
index 15ac536c90..642aa4af3e 100644
--- a/e2e/process-services/form/apps-section.e2e.ts
+++ b/e2e/process-services/form/apps-section.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@ describe('Modify applications', () => {
const applicationService = new ApplicationsUtil(apiService);
const appsApi = new AppDefinitionsApi(apiService.getInstance());
- let firstApp, appVersionToBeDeleted;
+ let firstApp; let appVersionToBeDeleted;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/process-services/form/attach-file-content-service.e2e.ts b/e2e/process-services/form/attach-file-content-service.e2e.ts
index 554887c646..1fdf34283d 100644
--- a/e2e/process-services/form/attach-file-content-service.e2e.ts
+++ b/e2e/process-services/form/attach-file-content-service.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/form/attach-file-widget-start-task-app.e2e.ts b/e2e/process-services/form/attach-file-widget-start-task-app.e2e.ts
index 4531db5469..742d31433a 100644
--- a/e2e/process-services/form/attach-file-widget-start-task-app.e2e.ts
+++ b/e2e/process-services/form/attach-file-widget-start-task-app.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Start Task - Task App', () => {
const applicationService = new ApplicationsUtil(apiService);
let user: UserModel;
- const pdfFile = new FileModel({ 'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name });
+ const pdfFile = new FileModel({ name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name });
const wordFile = new FileModel({
name: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_name,
location: browser.params.resources.Files.ADF_DOCUMENTS.DOCX.file_path
diff --git a/e2e/process-services/form/attach-folder.e2e.ts b/e2e/process-services/form/attach-folder.e2e.ts
index 74a7b8593f..bd2dd86b89 100644
--- a/e2e/process-services/form/attach-folder.e2e.ts
+++ b/e2e/process-services/form/attach-folder.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/form/attach-form-component.e2e.ts b/e2e/process-services/form/attach-form-component.e2e.ts
index f15096c479..3a8af98428 100644
--- a/e2e/process-services/form/attach-form-component.e2e.ts
+++ b/e2e/process-services/form/attach-form-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,7 +47,7 @@ describe('Attach Form Component', () => {
const modelsActions = new ModelsActions(apiService);
const formTextField = app.form_fields.form_fieldId;
- let user, tenantId, appModel;
+ let user; let tenantId; let appModel;
const testNames = {
taskName: 'Test Task',
diff --git a/e2e/process-services/form/checklist-component.e2e.ts b/e2e/process-services/form/checklist-component.e2e.ts
index abb44d59ea..2ddb1934ab 100644
--- a/e2e/process-services/form/checklist-component.e2e.ts
+++ b/e2e/process-services/form/checklist-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/form/dynamic-table-date-picker.e2e.ts b/e2e/process-services/form/dynamic-table-date-picker.e2e.ts
index e356e1ce40..541c589077 100644
--- a/e2e/process-services/form/dynamic-table-date-picker.e2e.ts
+++ b/e2e/process-services/form/dynamic-table-date-picker.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@ describe('Dynamic Table', () => {
const usersActions = new UsersActions(apiService);
const modelsActions = new ModelsActions(apiService);
- let user, tenantId, appId;
+ let user; let tenantId; let appId;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/process-services/form/form-component.e2e.ts b/e2e/process-services/form/form-component.e2e.ts
index ddb3884fb1..538d05fbec 100644
--- a/e2e/process-services/form/form-component.e2e.ts
+++ b/e2e/process-services/form/form-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@ describe('Form Component', () => {
const apiService = createApiService();
const usersActions = new UsersActions(apiService);
- let tenantId, user;
+ let tenantId; let user;
const fields = {
dateWidgetId: 'label7',
diff --git a/e2e/process-services/form/form-people-widget.e2e.ts b/e2e/process-services/form/form-people-widget.e2e.ts
index df4bba2fe6..4002512b6d 100644
--- a/e2e/process-services/form/form-people-widget.e2e.ts
+++ b/e2e/process-services/form/form-people-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/form/form-widgets-component.e2e.ts b/e2e/process-services/form/form-widgets-component.e2e.ts
index 709fda3c6e..249d4b0149 100644
--- a/e2e/process-services/form/form-widgets-component.e2e.ts
+++ b/e2e/process-services/form/form-widgets-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/form/people-component.e2e.ts b/e2e/process-services/form/people-component.e2e.ts
index b93a981316..a46d3cdf9c 100644
--- a/e2e/process-services/form/people-component.e2e.ts
+++ b/e2e/process-services/form/people-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -36,7 +36,7 @@ describe('People component', () => {
const taskUtil = new TaskUtil(apiService);
const applicationUtil = new ApplicationsUtil(apiService);
- let processUserModel, assigneeUserModel, secondAssigneeUserModel;
+ let processUserModel; let assigneeUserModel; let secondAssigneeUserModel;
const peopleTitle = 'People this task is shared with ';
const tasks = ['no people involved task', 'remove people task', 'can not complete task', 'multiple users', 'completed filter'];
diff --git a/e2e/process-services/form/stencil.e2e.ts b/e2e/process-services/form/stencil.e2e.ts
index 788751f249..854bc84aca 100644
--- a/e2e/process-services/form/stencil.e2e.ts
+++ b/e2e/process-services/form/stencil.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/analytics.page.ts b/e2e/process-services/pages/analytics.page.ts
index c23981127b..c77d2af0c8 100644
--- a/e2e/process-services/pages/analytics.page.ts
+++ b/e2e/process-services/pages/analytics.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/attach-form.page.ts b/e2e/process-services/pages/attach-form.page.ts
index 86576a81cd..eefa85b660 100644
--- a/e2e/process-services/pages/attach-form.page.ts
+++ b/e2e/process-services/pages/attach-form.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/attachment-list.page.ts b/e2e/process-services/pages/attachment-list.page.ts
index 28ab6e47e7..0c2e9ebde8 100644
--- a/e2e/process-services/pages/attachment-list.page.ts
+++ b/e2e/process-services/pages/attachment-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -21,12 +21,12 @@ import { BrowserVisibility, BrowserActions } from '@alfresco/adf-testing';
export class AttachmentListPage {
- attachFileButton = $("input[type='file']");
- buttonMenu = $("button[data-automation-id='action_menu_0']");
- viewButton = $("button[data-automation-id*='MENU_ACTIONS.VIEW_CONTENT']");
- removeButton = $("button[data-automation-id*='MENU_ACTIONS.REMOVE_CONTENT']");
- downloadButton = $("button[data-automation-id*='MENU_ACTIONS.DOWNLOAD_CONTENT']");
- noContentContainer = $("div[class*='adf-no-content-container']");
+ attachFileButton = $('input[type=\'file\']');
+ buttonMenu = $('button[data-automation-id=\'action_menu_0\']');
+ viewButton = $('button[data-automation-id*=\'MENU_ACTIONS.VIEW_CONTENT\']');
+ removeButton = $('button[data-automation-id*=\'MENU_ACTIONS.REMOVE_CONTENT\']');
+ downloadButton = $('button[data-automation-id*=\'MENU_ACTIONS.DOWNLOAD_CONTENT\']');
+ noContentContainer = $('div[class*=\'adf-no-content-container\']');
async checkEmptyAttachmentList(): Promise {
await BrowserVisibility.waitUntilElementIsVisible(this.noContentContainer);
diff --git a/e2e/process-services/pages/dialog/app-settings-toggles.page.ts b/e2e/process-services/pages/dialog/app-settings-toggles.page.ts
index a38cdb97fb..f8881c942e 100644
--- a/e2e/process-services/pages/dialog/app-settings-toggles.page.ts
+++ b/e2e/process-services/pages/dialog/app-settings-toggles.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/dialog/create-checklist-dialog.page.ts b/e2e/process-services/pages/dialog/create-checklist-dialog.page.ts
index db0e2ce12c..15a51d5c8e 100644
--- a/e2e/process-services/pages/dialog/create-checklist-dialog.page.ts
+++ b/e2e/process-services/pages/dialog/create-checklist-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/dialog/start-task-dialog.page.ts b/e2e/process-services/pages/dialog/start-task-dialog.page.ts
index 0f0ecbd98e..a5dd5fd550 100644
--- a/e2e/process-services/pages/dialog/start-task-dialog.page.ts
+++ b/e2e/process-services/pages/dialog/start-task-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/filters.page.ts b/e2e/process-services/pages/filters.page.ts
index 6a55175a54..e9fe36717b 100644
--- a/e2e/process-services/pages/filters.page.ts
+++ b/e2e/process-services/pages/filters.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/form-demo.page.ts b/e2e/process-services/pages/form-demo.page.ts
index e5e8d1badb..96ad0afe37 100644
--- a/e2e/process-services/pages/form-demo.page.ts
+++ b/e2e/process-services/pages/form-demo.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/process-details.page.ts b/e2e/process-services/pages/process-details.page.ts
index 57096c2ed7..72ee942115 100644
--- a/e2e/process-services/pages/process-details.page.ts
+++ b/e2e/process-services/pages/process-details.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/process-filters.page.ts b/e2e/process-services/pages/process-filters.page.ts
index 539a0552d1..5b7df6f1b6 100644
--- a/e2e/process-services/pages/process-filters.page.ts
+++ b/e2e/process-services/pages/process-filters.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/process-list-demo.page.ts b/e2e/process-services/pages/process-list-demo.page.ts
index d7c22b7154..11be7fdf13 100644
--- a/e2e/process-services/pages/process-list-demo.page.ts
+++ b/e2e/process-services/pages/process-list-demo.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/process-list.page.ts b/e2e/process-services/pages/process-list.page.ts
index f064071d74..a29d790b1e 100644
--- a/e2e/process-services/pages/process-list.page.ts
+++ b/e2e/process-services/pages/process-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/process-service-tab-bar.page.ts b/e2e/process-services/pages/process-service-tab-bar.page.ts
index c6d797ad47..12c97f2a49 100644
--- a/e2e/process-services/pages/process-service-tab-bar.page.ts
+++ b/e2e/process-services/pages/process-service-tab-bar.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/process-services.page.ts b/e2e/process-services/pages/process-services.page.ts
index 6f622936e8..8bb0a02377 100644
--- a/e2e/process-services/pages/process-services.page.ts
+++ b/e2e/process-services/pages/process-services.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/task-details.page.ts b/e2e/process-services/pages/task-details.page.ts
index 64badebf48..a2236e863e 100644
--- a/e2e/process-services/pages/task-details.page.ts
+++ b/e2e/process-services/pages/task-details.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -253,12 +253,12 @@ export class TaskDetailsPage {
}
async selectActivityTab(): Promise {
- const tabsPage: TabsPage = new TabsPage;
+ const tabsPage: TabsPage = new TabsPage();
await tabsPage.clickTabByTitle('Activity');
}
async selectDetailsTab(): Promise {
- const tabsPage: TabsPage = new TabsPage;
+ const tabsPage: TabsPage = new TabsPage();
await tabsPage.clickTabByTitle('Details');
}
diff --git a/e2e/process-services/pages/task-filters-demo.page.ts b/e2e/process-services/pages/task-filters-demo.page.ts
index c2f99c8a52..91d2d74761 100644
--- a/e2e/process-services/pages/task-filters-demo.page.ts
+++ b/e2e/process-services/pages/task-filters-demo.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/task-filters.page.ts b/e2e/process-services/pages/task-filters.page.ts
index 3b53f4764f..fcd69d4d06 100644
--- a/e2e/process-services/pages/task-filters.page.ts
+++ b/e2e/process-services/pages/task-filters.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/task-list-demo.page.ts b/e2e/process-services/pages/task-list-demo.page.ts
index bc0a68a4bb..ce5fc7e847 100644
--- a/e2e/process-services/pages/task-list-demo.page.ts
+++ b/e2e/process-services/pages/task-list-demo.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,20 +22,20 @@ import { TasksListPage } from './tasks-list.page';
export class TaskListDemoPage {
taskListPage = new TasksListPage();
- appId = $("input[data-automation-id='appId input']");
- itemsPerPage = $("input[data-automation-id='items per page']");
- itemsPerPageForm = $("mat-form-field[data-automation-id='items per page']");
- processDefinitionId = $("input[data-automation-id='process definition id']");
- processInstanceId = $("input[data-automation-id='process instance id']");
- page = $("input[data-automation-id='page']");
- pageForm = $("mat-form-field[data-automation-id='page']");
- taskName = $("input[data-automation-id='task name']");
+ appId = $('input[data-automation-id=\'appId input\']');
+ itemsPerPage = $('input[data-automation-id=\'items per page\']');
+ itemsPerPageForm = $('mat-form-field[data-automation-id=\'items per page\']');
+ processDefinitionId = $('input[data-automation-id=\'process definition id\']');
+ processInstanceId = $('input[data-automation-id=\'process instance id\']');
+ page = $('input[data-automation-id=\'page\']');
+ pageForm = $('mat-form-field[data-automation-id=\'page\']');
+ taskName = $('input[data-automation-id=\'task name\']');
resetButton = $('.app-reset-button button');
- dueBefore = $("input[data-automation-id='due before']");
- dueAfter = $("input[data-automation-id='due after']");
- taskId = $("input[data-automation-id='task id']");
+ dueBefore = $('input[data-automation-id=\'due before\']');
+ dueAfter = $('input[data-automation-id=\'due after\']');
+ taskId = $('input[data-automation-id=\'task id\']');
- stateDropDownArrow = $("mat-form-field[data-automation-id='state']");
+ stateDropDownArrow = $('mat-form-field[data-automation-id=\'state\']');
stateDropdown = new DropdownPage(this.stateDropDownArrow);
taskList(): TasksListPage {
diff --git a/e2e/process-services/pages/tasks-list.page.ts b/e2e/process-services/pages/tasks-list.page.ts
index 35af6209d4..c91ae063e2 100644
--- a/e2e/process-services/pages/tasks-list.page.ts
+++ b/e2e/process-services/pages/tasks-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/pages/tasks.page.ts b/e2e/process-services/pages/tasks.page.ts
index 506f1050e1..2284ab7e69 100644
--- a/e2e/process-services/pages/tasks.page.ts
+++ b/e2e/process-services/pages/tasks.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/process/comment-component-processes.e2e.ts b/e2e/process-services/process/comment-component-processes.e2e.ts
index 7dfb156535..5bdd1bcfd7 100644
--- a/e2e/process-services/process/comment-component-processes.e2e.ts
+++ b/e2e/process-services/process/comment-component-processes.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@ describe('Comment component for Processes', () => {
const commentsApi = new ActivitiCommentsApi(apiService.getInstance());
const taskApi = new TasksApi(apiService.getInstance());
- let user, appId, processInstanceId, addedComment;
+ let user; let appId; let processInstanceId; let addedComment;
const processName = 'Comment APS';
beforeAll(async () => {
@@ -76,7 +76,7 @@ describe('Comment component for Processes', () => {
await processFiltersPage.clickRunningFilterButton();
await processFiltersPage.selectFromProcessList(processName);
- addedComment = await commentsApi.getProcessInstanceComments(processInstanceId, { 'latestFirst': true });
+ addedComment = await commentsApi.getProcessInstanceComments(processInstanceId, { latestFirst: true });
await commentsPage.checkUserIconIsDisplayed();
@@ -94,16 +94,16 @@ describe('Comment component for Processes', () => {
await processFiltersPage.clickRunningFilterButton();
await processFiltersPage.selectFromProcessList(processName);
- const taskQuery = await taskApi.listTasks({ processInstanceId: processInstanceId });
+ const taskQuery = await taskApi.listTasks({ processInstanceId });
const taskId = taskQuery.data[0].id;
- const taskComments = await commentsApi.getTaskComments(taskId, { 'latestFirst': true });
+ const taskComments = await commentsApi.getTaskComments(taskId, { latestFirst: true });
await expect(taskComments.total).toEqual(0);
});
it('[C260466] Should be able to display comments from Task on the related Process', async () => {
- const taskQuery = await taskApi.listTasks({ processInstanceId: processInstanceId });
+ const taskQuery = await taskApi.listTasks({ processInstanceId });
const taskId = taskQuery.data[0].id;
@@ -114,7 +114,7 @@ describe('Comment component for Processes', () => {
await processFiltersPage.clickRunningFilterButton();
await processFiltersPage.selectFromProcessList(processName);
- const addedTaskComment = await commentsApi.getProcessInstanceComments(processInstanceId, { 'latestFirst': true });
+ const addedTaskComment = await commentsApi.getProcessInstanceComments(processInstanceId, { latestFirst: true });
await commentsPage.checkUserIconIsDisplayed();
diff --git a/e2e/process-services/process/custom-process-filters-sorting.e2e.ts b/e2e/process-services/process/custom-process-filters-sorting.e2e.ts
index 3470f07e6d..51105f2b1c 100644
--- a/e2e/process-services/process/custom-process-filters-sorting.e2e.ts
+++ b/e2e/process-services/process/custom-process-filters-sorting.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/process/custom-process-filters.e2e.ts b/e2e/process-services/process/custom-process-filters.e2e.ts
index f1f3cdf537..f77acf3457 100644
--- a/e2e/process-services/process/custom-process-filters.e2e.ts
+++ b/e2e/process-services/process/custom-process-filters.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -34,7 +34,7 @@ describe('New Process Filters', () => {
const usersActions = new UsersActions(apiService);
const userFiltersApi = new UserFiltersApi(apiService.getInstance());
- let tenantId, user, filterId, customProcessFilter;
+ let tenantId; let user; let filterId; let customProcessFilter;
const processFilter = {
running: 'Running',
@@ -74,10 +74,10 @@ describe('New Process Filters', () => {
it('[C260473] Should be able to create a new filter on APS and display it on ADF', async () => {
customProcessFilter = await userFiltersApi.createUserProcessInstanceFilter({
- 'appId': null,
- 'name': processFilter.new_filter,
- 'icon': 'glyphicon-random',
- 'filter': { 'sort': 'created-desc', 'name': '', 'state': 'running' }
+ appId: null,
+ name: processFilter.new_filter,
+ icon: 'glyphicon-random',
+ filter: { sort: 'created-desc', name: '', state: 'running' }
});
filterId = customProcessFilter.id;
@@ -89,10 +89,10 @@ describe('New Process Filters', () => {
it('[C286450] Should display the process filter icon when a custom filter is added', async () => {
customProcessFilter = await userFiltersApi.createUserProcessInstanceFilter({
- 'appId': null,
- 'name': processFilter.new_icon,
- 'icon': 'glyphicon-cloud',
- 'filter': { 'sort': 'created-desc', 'name': '', 'state': 'running' }
+ appId: null,
+ name: processFilter.new_icon,
+ icon: 'glyphicon-cloud',
+ filter: { sort: 'created-desc', name: '', state: 'running' }
});
filterId = customProcessFilter.id;
@@ -111,19 +111,19 @@ describe('New Process Filters', () => {
it('[C260474] Should be able to edit a filter on APS and check it on ADF', async () => {
customProcessFilter = await userFiltersApi.createUserProcessInstanceFilter({
- 'appId': null,
- 'name': processFilter.new_icon,
- 'icon': 'glyphicon-cloud',
- 'filter': { 'sort': 'created-desc', 'name': '', 'state': 'running' }
+ appId: null,
+ name: processFilter.new_icon,
+ icon: 'glyphicon-cloud',
+ filter: { sort: 'created-desc', name: '', state: 'running' }
});
filterId = customProcessFilter.id;
await userFiltersApi.updateUserProcessInstanceFilter(filterId, {
- 'appId': null,
- 'name': processFilter.edited,
- 'icon': 'glyphicon-random',
- 'filter': { 'sort': 'created-desc', 'name': '', 'state': 'running' }
+ appId: null,
+ name: processFilter.edited,
+ icon: 'glyphicon-random',
+ filter: { sort: 'created-desc', name: '', state: 'running' }
});
await (await (await navigationBarPage.navigateToProcessServicesPage()).goToTaskApp()).clickProcessButton();
@@ -133,10 +133,10 @@ describe('New Process Filters', () => {
it('[C286451] Should display changes on a process filter when this filter icon is edited', async () => {
customProcessFilter = await userFiltersApi.createUserProcessInstanceFilter({
- 'appId': null,
- 'name': processFilter.edit_icon,
- 'icon': 'glyphicon-random',
- 'filter': { 'sort': 'created-desc', 'name': '', 'state': 'running' }
+ appId: null,
+ name: processFilter.edit_icon,
+ icon: 'glyphicon-random',
+ filter: { sort: 'created-desc', name: '', state: 'running' }
});
filterId = customProcessFilter.id;
@@ -146,10 +146,10 @@ describe('New Process Filters', () => {
await processFiltersPage.checkFilterIsDisplayed(processFilter.edit_icon);
await userFiltersApi.updateUserProcessInstanceFilter(filterId, {
- 'appId': null,
- 'name': processFilter.edit_icon,
- 'icon': 'glyphicon-cloud',
- 'filter': { 'sort': 'created-desc', 'name': '', 'state': 'running' }
+ appId: null,
+ name: processFilter.edit_icon,
+ icon: 'glyphicon-cloud',
+ filter: { sort: 'created-desc', name: '', state: 'running' }
});
await (await (await navigationBarPage.navigateToProcessServicesPage()).goToTaskApp()).clickProcessButton();
@@ -178,10 +178,10 @@ describe('New Process Filters', () => {
it('[C260475] Should be able to delete a filter on APS and check it on ADF', async () => {
customProcessFilter = await userFiltersApi.createUserProcessInstanceFilter({
- 'appId': null,
- 'name': processFilter.deleted,
- 'icon': 'glyphicon-random',
- 'filter': { 'sort': 'created-desc', 'name': '', 'state': 'running' }
+ appId: null,
+ name: processFilter.deleted,
+ icon: 'glyphicon-random',
+ filter: { sort: 'created-desc', name: '', state: 'running' }
});
filterId = customProcessFilter.id;
diff --git a/e2e/process-services/process/empty-process-list-component.e2e.ts b/e2e/process-services/process/empty-process-list-component.e2e.ts
index dcdeee2482..0012143984 100644
--- a/e2e/process-services/process/empty-process-list-component.e2e.ts
+++ b/e2e/process-services/process/empty-process-list-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/process/pagination-processlist-adding-processes.e2e.ts b/e2e/process-services/process/pagination-processlist-adding-processes.e2e.ts
index fd2a5abec0..2bed00d8d3 100644
--- a/e2e/process-services/process/pagination-processlist-adding-processes.e2e.ts
+++ b/e2e/process-services/process/pagination-processlist-adding-processes.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/process/process-attachment-list-action-menu.e2e.ts b/e2e/process-services/process/process-attachment-list-action-menu.e2e.ts
index c5a98405e5..189a08f744 100644
--- a/e2e/process-services/process/process-attachment-list-action-menu.e2e.ts
+++ b/e2e/process-services/process/process-attachment-list-action-menu.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -53,7 +53,7 @@ describe('Attachment list action menu for processes', () => {
});
const downloadedPngFile = pngFile.name;
- let tenantId, appId;
+ let tenantId; let appId;
const processName = {
active: 'Active Process',
completed: 'Completed Process',
diff --git a/e2e/process-services/process/process-filters-component.e2e.ts b/e2e/process-services/process/process-filters-component.e2e.ts
index 631ce214da..c813e85770 100644
--- a/e2e/process-services/process/process-filters-component.e2e.ts
+++ b/e2e/process-services/process/process-filters-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -53,7 +53,7 @@ describe('Process Filters Test', () => {
const userFiltersApi = new UserFiltersApi(apiService.getInstance());
const appsApi = new RuntimeAppDefinitionsApi(apiService.getInstance());
- let appModel, user;
+ let appModel; let user;
const processTitle = {
running: 'Test_running',
diff --git a/e2e/process-services/process/process-instance-details.e2e.ts b/e2e/process-services/process/process-instance-details.e2e.ts
index e681222e16..0bdde9da89 100644
--- a/e2e/process-services/process/process-instance-details.e2e.ts
+++ b/e2e/process-services/process/process-instance-details.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -48,7 +48,7 @@ describe('Process Instance Details', () => {
const modelsActions = new ModelsActions(apiService);
const processApi = new ProcessInstancesApi(apiService.getInstance());
- let appModel, process, user;
+ let appModel; let process; let user;
const PROCESS_DATE_FORMAT = 'll';
beforeAll(async () => {
diff --git a/e2e/process-services/process/process-list-component.e2e.ts b/e2e/process-services/process/process-list-component.e2e.ts
index eb8b618f2e..64f48cd3dd 100644
--- a/e2e/process-services/process/process-list-component.e2e.ts
+++ b/e2e/process-services/process/process-list-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@ describe('Process List Test', () => {
const modelsActions = new ModelsActions(apiService);
const taskFormsApi = new TaskFormsApi(apiService.getInstance());
- let appDateModel, appUserWidgetModel, user;
+ let appDateModel; let appUserWidgetModel; let user;
const processList = ['Process With Date', 'Process With Date 2', 'Process With User Widget', 'Process With User Widget 2'];
@@ -57,7 +57,7 @@ describe('Process List Test', () => {
};
let appWithDateFieldId;
- let procWithDate, completedProcWithDate, completedProcWithUserWidget;
+ let procWithDate; let completedProcWithDate; let completedProcWithUserWidget;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/process-services/process/processlist-pagination.e2e.ts b/e2e/process-services/process/processlist-pagination.e2e.ts
index 4203166d83..bb2ad41740 100644
--- a/e2e/process-services/process/processlist-pagination.e2e.ts
+++ b/e2e/process-services/process/processlist-pagination.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/process/start-process-component.e2e.ts b/e2e/process-services/process/start-process-component.e2e.ts
index f60c189869..cdd7f35cdc 100644
--- a/e2e/process-services/process/start-process-component.e2e.ts
+++ b/e2e/process-services/process/start-process-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -69,7 +69,7 @@ describe('Start Process Component', () => {
let procUserModel: UserModel;
let secondProcUserModel: UserModel;
- let appCreated, simpleAppCreated, dateFormAppCreated;
+ let appCreated; let simpleAppCreated; let dateFormAppCreated;
const processName255Characters = StringUtil.generateRandomString(255);
const processNameBiggerThen255Characters = StringUtil.generateRandomString(256);
@@ -79,8 +79,8 @@ describe('Start Process Component', () => {
const auditLogFile = 'Audit.pdf';
const jpgFile = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_location,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_name
+ location: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_location,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_name
});
describe('Provider: BPM', () => {
@@ -476,8 +476,8 @@ describe('Start Process Component', () => {
const uploadDialog = new UploadDialogPage();
let processUserModel;
const imageUploaded = new FileModel({
- 'name': browser.params.resources.Files.PROFILE_IMAGES.ECM.file_name,
- 'location': browser.params.resources.Files.PROFILE_IMAGES.ECM.file_location
+ name: browser.params.resources.Files.PROFILE_IMAGES.ECM.file_name,
+ location: browser.params.resources.Files.PROFILE_IMAGES.ECM.file_location
});
beforeAll(async () => {
diff --git a/e2e/process-services/tasks/comment-component-tasks.e2e.ts b/e2e/process-services/tasks/comment-component-tasks.e2e.ts
index f061a73acb..bbc2a88a37 100644
--- a/e2e/process-services/tasks/comment-component-tasks.e2e.ts
+++ b/e2e/process-services/tasks/comment-component-tasks.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,7 +47,7 @@ describe('Comment component for Processes', () => {
const activitiCommentsApi = new ActivitiCommentsApi(apiService.getInstance());
const taskActionsApi = new TaskActionsApi(apiService.getInstance());
- let user, appId, secondUser;
+ let user; let appId; let secondUser;
const taskName = {
completed_task: 'Test Completed',
@@ -106,7 +106,7 @@ describe('Comment component for Processes', () => {
await taskPage.tasksListPage().selectRow(taskName.multiple_users);
await taskPage.taskDetails().selectActivityTab();
- const totalCommentsLatest = await activitiCommentsApi.getTaskComments(newTask.id, { 'latestFirst': true });
+ const totalCommentsLatest = await activitiCommentsApi.getTaskComments(newTask.id, { latestFirst: true });
const thirdTaskComment = { message: 'Third Task Comment' };
@@ -135,7 +135,7 @@ describe('Comment component for Processes', () => {
await taskPage.tasksListPage().selectRow(taskName.multiple_users);
await taskPage.taskDetails().selectActivityTab();
- const totalComments = await activitiCommentsApi.getTaskComments(newTask.id, { 'latestFirst': true });
+ const totalComments = await activitiCommentsApi.getTaskComments(newTask.id, { latestFirst: true });
await commentsPage.checkUserIconIsDisplayed();
await commentsPage.checkUserIconIsDisplayed();
diff --git a/e2e/process-services/tasks/custom-tasks-filters.e2e.ts b/e2e/process-services/tasks/custom-tasks-filters.e2e.ts
index 6b5b731bcd..d7a403c0b7 100644
--- a/e2e/process-services/tasks/custom-tasks-filters.e2e.ts
+++ b/e2e/process-services/tasks/custom-tasks-filters.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -50,14 +50,14 @@ describe('Start Task - Custom App', () => {
const tasksApi = new TasksApi(apiService.getInstance());
let processUserModel;
- let appRuntime, secondAppRuntime;
+ let appRuntime; let secondAppRuntime;
let appModel;
const completedTasks = [];
const paginationTasksName = ['t01', 't02', 't03', 't04', 't05', 't06', 't07', 't08', 't09', 't10', 't11', 't12', 't13', 'taskOne', 'taskTwo', 'taskOne'];
const completedTasksName = ['completed01', 'completed02', 'completed03'];
const allTasksName = ['t01', 'taskOne', 'taskTwo', 'taskOne', 't13', 't12', 't11', 't10', 't09', 't08', 't07', 't06', 't05', 't04', 't03', 't02',
'User Task', 'User Task', 'User Task', 'User Task'];
- const invalidAppId = '1234567890', invalidName = 'invalidName', invalidTaskId = '0000';
+ const invalidAppId = '1234567890'; const invalidName = 'invalidName'; const invalidTaskId = '0000';
const noTasksFoundMessage = 'No Tasks Found';
const nrOfTasks = 20;
let currentPage = 1;
@@ -107,15 +107,15 @@ describe('Start Task - Custom App', () => {
for (let i = 0; i < 3; i++) {
completedTasks[i] = await tasksApi.createNewTask(new TaskRepresentation({
- 'name': completedTasksName[i],
- 'dueDate': DateUtil.formatDate('YYYY-MM-DDTHH:mm:ss.SSSZ', new Date(), i + 2)
+ name: completedTasksName[i],
+ dueDate: DateUtil.formatDate('YYYY-MM-DDTHH:mm:ss.SSSZ', new Date(), i + 2)
}));
await taskActionsApi.completeTask(completedTasks[i].id);
}
taskWithDueDate = await tasksApi.createNewTask(new TaskRepresentation({
- 'name': paginationTasksName[0],
- 'dueDate': currentDateStandardFormat
+ name: paginationTasksName[0],
+ dueDate: currentDateStandardFormat
}));
await loginPage.login(processUserModel.username, processUserModel.password);
diff --git a/e2e/process-services/tasks/info-drawer.e2e.ts b/e2e/process-services/tasks/info-drawer.e2e.ts
index 14fe46b70c..79f8cefa4b 100644
--- a/e2e/process-services/tasks/info-drawer.e2e.ts
+++ b/e2e/process-services/tasks/info-drawer.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/tasks/pagination-tasklist-adding-tasks.e2e.ts b/e2e/process-services/tasks/pagination-tasklist-adding-tasks.e2e.ts
index aeb0593dc2..af073ed952 100644
--- a/e2e/process-services/tasks/pagination-tasklist-adding-tasks.e2e.ts
+++ b/e2e/process-services/tasks/pagination-tasklist-adding-tasks.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/tasks/sort-tasklist-pagination.e2e.ts b/e2e/process-services/tasks/sort-tasklist-pagination.e2e.ts
index 0d52df4b61..3ecb650af3 100644
--- a/e2e/process-services/tasks/sort-tasklist-pagination.e2e.ts
+++ b/e2e/process-services/tasks/sort-tasklist-pagination.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/tasks/standalone-task.e2e.ts b/e2e/process-services/tasks/standalone-task.e2e.ts
index de3ceeec39..e5fe8f51c1 100644
--- a/e2e/process-services/tasks/standalone-task.e2e.ts
+++ b/e2e/process-services/tasks/standalone-task.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@ describe('Start Task - Task App', () => {
const taskPage = new TasksPage();
const widget = new Widget();
- let processUserModel, anotherUser;
+ let processUserModel; let anotherUser;
const noFormMessage = 'No forms attached';
const apiService = createApiService();
diff --git a/e2e/process-services/tasks/start-task-custom-app.e2e.ts b/e2e/process-services/tasks/start-task-custom-app.e2e.ts
index cb99a536a6..f1e1c28c1e 100644
--- a/e2e/process-services/tasks/start-task-custom-app.e2e.ts
+++ b/e2e/process-services/tasks/start-task-custom-app.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -38,17 +38,17 @@ describe('Start Task - Custom App', () => {
const usersActions = new UsersActions(apiService);
const applicationsService = new ApplicationsUtil(apiService);
- let processUserModel, assigneeUserModel;
+ let processUserModel; let assigneeUserModel;
const formTextField = app.form_fields.form_fieldId;
const formFieldValue = 'First value ';
const taskPage = new TasksPage();
- const firstComment = 'comm1', firstChecklist = 'checklist1';
+ const firstComment = 'comm1'; const firstChecklist = 'checklist1';
const tasks = ['Modifying task', 'Information box', 'No form', 'Not Created', 'Refreshing form', 'Assignee task', 'Attach File', 'Spinner'];
const showHeaderTask = 'Show Header';
let appModel;
const pngFile = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_location,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name
});
beforeAll(async () => {
diff --git a/e2e/process-services/tasks/start-task-task-app.e2e.ts b/e2e/process-services/tasks/start-task-task-app.e2e.ts
index 9c7bf9ce65..654176075d 100644
--- a/e2e/process-services/tasks/start-task-task-app.e2e.ts
+++ b/e2e/process-services/tasks/start-task-task-app.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -46,19 +46,19 @@ describe('Start Task - Task App', () => {
const taskUtil = new TaskUtil(apiService);
const applicationsUtil = new ApplicationsUtil(apiService);
- let processUserModel, assigneeUserModel;
+ let processUserModel; let assigneeUserModel;
const formTextField = app.form_fields.form_fieldId;
const formFieldValue = 'First value ';
const taskPage = new TasksPage();
- const firstComment = 'comm1', firstChecklist = 'checklist1';
+ const firstComment = 'comm1'; const firstChecklist = 'checklist1';
const taskName255Characters = StringUtil.generateRandomString(255);
const taskNameBiggerThen255Characters = StringUtil.generateRandomString(256);
const lengthValidationError = 'Length exceeded, 255 characters max.';
const tasks = ['Modifying task', 'Information box', 'No form', 'Not Created', 'Refreshing form', 'Assignee task', 'Attach File'];
const showHeaderTask = 'Show Header';
const jpgFile = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_location,
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_name
+ location: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_location,
+ name: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_name
});
beforeAll(async () => {
diff --git a/e2e/process-services/tasks/task-assignee.e2e.ts b/e2e/process-services/tasks/task-assignee.e2e.ts
index 3e6f00db75..ffa35fc33b 100644
--- a/e2e/process-services/tasks/task-assignee.e2e.ts
+++ b/e2e/process-services/tasks/task-assignee.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -67,9 +67,9 @@ describe('Task Assignee', () => {
try {// creates group if not available
await adminGroupsApi.createNewGroup({
- 'name': app.candidateGroup,
- 'tenantId': user.tenantId,
- 'type': 1
+ name: app.candidateGroup,
+ tenantId: user.tenantId,
+ type: 1
});
} catch (e) {
}
@@ -134,7 +134,7 @@ describe('Task Assignee', () => {
candidate2 = await usersActions.createUser(new UserModel({ tenantId: user.tenantId }));
const adminGroup = await adminGroupsApi.createNewGroup(
- { 'name': app.adminGroup, 'tenantId': user.tenantId }
+ { name: app.adminGroup, tenantId: user.tenantId }
);
await adminGroupsApi.addGroupMember(adminGroup.id, user.id);
@@ -142,7 +142,7 @@ describe('Task Assignee', () => {
await adminGroupsApi.addGroupCapabilities(adminGroup.id, { capabilities: app.adminCapabilities });
const candidateGroup = await adminGroupsApi.createNewGroup(
- { 'name': app.candidateGroup, 'tenantId': user.tenantId, 'type': 1 }
+ { name: app.candidateGroup, tenantId: user.tenantId, type: 1 }
);
await adminGroupsApi.addGroupMember(candidateGroup.id, candidate1.id);
diff --git a/e2e/process-services/tasks/task-attachment-list-action-menu.e2e.ts b/e2e/process-services/tasks/task-attachment-list-action-menu.e2e.ts
index 34b29be593..60c0610d58 100644
--- a/e2e/process-services/tasks/task-attachment-list-action-menu.e2e.ts
+++ b/e2e/process-services/tasks/task-attachment-list-action-menu.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@ describe('Attachment list action menu for tasks', () => {
name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name
});
const downloadedPngFile = pngFile.name;
- let tenantId, appId, relatedContent, relatedContentId;
+ let tenantId; let appId; let relatedContent; let relatedContentId;
const taskName = {
active: 'Active Task',
completed: 'Completed Task',
@@ -175,7 +175,7 @@ describe('Attachment list action menu for tasks', () => {
const filePath = path.join(browser.params.testConfig.main.rootPath + pngFile.location);
const file = fs.createReadStream(filePath);
- relatedContent = await contentApi.createRelatedContentOnTask(newTaskId, file, { 'isRelatedContent': true });
+ relatedContent = await contentApi.createRelatedContentOnTask(newTaskId, file, { isRelatedContent: true });
relatedContentId = relatedContent.id;
await (await (await navigationBarPage.navigateToProcessServicesPage()).goToTaskApp()).clickTasksButton();
diff --git a/e2e/process-services/tasks/task-audit.e2e.ts b/e2e/process-services/tasks/task-audit.e2e.ts
index 938bde3c79..2e318359b0 100644
--- a/e2e/process-services/tasks/task-audit.e2e.ts
+++ b/e2e/process-services/tasks/task-audit.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/tasks/task-details-form.e2e.ts b/e2e/process-services/tasks/task-details-form.e2e.ts
index f4d077454c..780f0cb355 100644
--- a/e2e/process-services/tasks/task-details-form.e2e.ts
+++ b/e2e/process-services/tasks/task-details-form.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,26 +56,26 @@ describe('Task Details - Form', () => {
const taskActionsApi = new TaskActionsApi(apiService.getInstance());
const tasksApi = new TasksApi(apiService.getInstance());
- let task, otherTask, user, newForm, attachedForm, otherAttachedForm;
+ let task; let otherTask; let user; let newForm; let attachedForm; let otherAttachedForm;
beforeAll(async () => {
const attachedFormModel = {
- 'name': StringUtil.generateRandomString(),
- 'description': '',
- 'modelType': 2,
- 'stencilSet': 0
+ name: StringUtil.generateRandomString(),
+ description: '',
+ modelType: 2,
+ stencilSet: 0
};
const otherAttachedFormModel = {
- 'name': StringUtil.generateRandomString(),
- 'description': '',
- 'modelType': 2,
- 'stencilSet': 0
+ name: StringUtil.generateRandomString(),
+ description: '',
+ modelType: 2,
+ stencilSet: 0
};
const newFormModel = {
- 'name': StringUtil.generateRandomString(),
- 'description': '',
- 'modelType': 2,
- 'stencilSet': 0
+ name: StringUtil.generateRandomString(),
+ description: '',
+ modelType: 2,
+ stencilSet: 0
};
await apiService.loginWithProfile('admin');
@@ -89,7 +89,7 @@ describe('Task Details - Form', () => {
otherAttachedForm = await modelsActions.modelsApi.createModel(otherAttachedFormModel);
- await taskActionsApi.attachForm(otherEmptyTask.id, { 'formId': otherAttachedForm.id });
+ await taskActionsApi.attachForm(otherEmptyTask.id, { formId: otherAttachedForm.id });
otherTask = await tasksApi.getTask(otherEmptyTask.id);
await loginPage.login(user.username, user.password);
@@ -102,7 +102,7 @@ describe('Task Details - Form', () => {
beforeEach(async () => {
const emptyTask = await taskUtil.createStandaloneTask();
- await taskActionsApi.attachForm(emptyTask.id, { 'formId': attachedForm.id });
+ await taskActionsApi.attachForm(emptyTask.id, { formId: attachedForm.id });
task = await tasksApi.getTask(emptyTask.id);
await (await new NavigationBarPage().navigateToProcessServicesPage()).goToTaskApp();
await tasksListPage.checkTaskListIsLoaded();
@@ -183,7 +183,7 @@ describe('Task Details - Form', () => {
tabFieldVar: 'tabBasicFieldVar'
};
- let newTask, appModel;
+ let newTask; let appModel;
beforeAll(async () => {
appModel = await applicationsService.importPublishDeployApp(app.file_path);
@@ -192,7 +192,7 @@ describe('Task Details - Form', () => {
beforeEach(async () => {
newTask = await taskUtil.createStandaloneTask();
const form = await formActions.getFormByName(app.visibilityProcess.formName);
- await taskActionsApi.attachForm(newTask.id, { 'formId': form.id });
+ await taskActionsApi.attachForm(newTask.id, { formId: form.id });
await browser.refresh();
await (await new NavigationBarPage().navigateToProcessServicesPage()).goToTaskApp();
diff --git a/e2e/process-services/tasks/task-details-no-form.e2e.ts b/e2e/process-services/tasks/task-details-no-form.e2e.ts
index 49635bf8e9..9c0f57ab84 100644
--- a/e2e/process-services/tasks/task-details-no-form.e2e.ts
+++ b/e2e/process-services/tasks/task-details-no-form.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/tasks/task-details.e2e.ts b/e2e/process-services/tasks/task-details.e2e.ts
index 69b408190a..867fcb114b 100644
--- a/e2e/process-services/tasks/task-details.e2e.ts
+++ b/e2e/process-services/tasks/task-details.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -49,16 +49,16 @@ describe('Task Details component', () => {
const taskActionsApi = new TaskActionsApi(apiService.getInstance());
const taskFormsApi = new TaskFormsApi(apiService.getInstance());
- let processUserModel, appModel;
+ let processUserModel; let appModel;
const tasks = ['Modifying task', 'Information box', 'No form', 'Not Created', 'Refreshing form', 'Assignee task', 'Attach File'];
const TASK_DATE_FORMAT = 'll';
let formModel;
const taskFormModel = {
- 'name': StringUtil.generateRandomString(),
- 'description': '',
- 'modelType': 2,
- 'stencilSet': 0
+ name: StringUtil.generateRandomString(),
+ description: '',
+ modelType: 2,
+ stencilSet: 0
};
beforeAll(async () => {
@@ -315,7 +315,7 @@ describe('Task Details component', () => {
const form = await modelsActions.modelsApi.createModel(taskFormModel);
const task = await taskUtil.createStandaloneTask(taskName);
- await taskActionsApi.attachForm(task.id, { 'formId': form.id });
+ await taskActionsApi.attachForm(task.id, { formId: form.id });
await taskFormsApi.completeTaskForm(task.id, { values: { label: null } });
await (await processServices.goToTaskApp()).clickTasksButton();
diff --git a/e2e/process-services/tasks/task-filters-component.e2e.ts b/e2e/process-services/tasks/task-filters-component.e2e.ts
index c8dbc6194b..cdca37b69a 100644
--- a/e2e/process-services/tasks/task-filters-component.e2e.ts
+++ b/e2e/process-services/tasks/task-filters-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ describe('Task', () => {
const usersActions = new UsersActions(apiService);
const modelsActions = new ModelsActions(apiService);
- let appId: number, user: UserModel;
+ let appId: number; let user: UserModel;
beforeEach(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/process-services/tasks/task-filters-sorting.e2e.ts b/e2e/process-services/tasks/task-filters-sorting.e2e.ts
index 4b19bd35ae..860b135831 100644
--- a/e2e/process-services/tasks/task-filters-sorting.e2e.ts
+++ b/e2e/process-services/tasks/task-filters-sorting.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/tasks/task-list-pagination.e2e.ts b/e2e/process-services/tasks/task-list-pagination.e2e.ts
index ccbe86110e..10b56eb77c 100644
--- a/e2e/process-services/tasks/task-list-pagination.e2e.ts
+++ b/e2e/process-services/tasks/task-list-pagination.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/process-services/widgets/amount-widget.e2e.ts b/e2e/process-services/widgets/amount-widget.e2e.ts
index bf25105883..b43ca54f50 100644
--- a/e2e/process-services/widgets/amount-widget.e2e.ts
+++ b/e2e/process-services/widgets/amount-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -29,7 +29,7 @@ describe('Amount Widget', () => {
const widget = new Widget();
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
const apiService = createApiService();
@@ -51,7 +51,7 @@ describe('Amount Widget', () => {
await loginPage.login(processUserModel.username, processUserModel.password);
});
- beforeEach(async() => {
+ beforeEach(async () => {
const urlToNavigateTo = `${browser.baseUrl}/activiti/apps/${deployedAppId}/tasks/`;
await BrowserActions.getUrl(urlToNavigateTo);
await taskPage.tasksListPage().checkTaskListIsLoaded();
diff --git a/e2e/process-services/widgets/attach-file-widget.e2e.ts b/e2e/process-services/widgets/attach-file-widget.e2e.ts
index c28a8c2f25..53fe959f0c 100644
--- a/e2e/process-services/widgets/attach-file-widget.e2e.ts
+++ b/e2e/process-services/widgets/attach-file-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@ describe('Attach widget - File', () => {
const applicationsService = new ApplicationsUtil(apiService);
let processUserModel;
- const pdfFile = new FileModel({'name': browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name});
+ const pdfFile = new FileModel({name: browser.params.resources.Files.ADF_DOCUMENTS.PDF.file_name});
const appFields = app.form_fields;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/attach-folder-widget.e2e.ts b/e2e/process-services/widgets/attach-folder-widget.e2e.ts
index 0f65bebb64..b0f1ec1059 100644
--- a/e2e/process-services/widgets/attach-folder-widget.e2e.ts
+++ b/e2e/process-services/widgets/attach-folder-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -38,7 +38,7 @@ describe('Attach Folder widget', () => {
const navigationBarPage = new NavigationBarPage();
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
const apiService = createApiService();
diff --git a/e2e/process-services/widgets/checkbox-widget.e2e.ts b/e2e/process-services/widgets/checkbox-widget.e2e.ts
index 0a0c8be5b7..03fce090b3 100644
--- a/e2e/process-services/widgets/checkbox-widget.e2e.ts
+++ b/e2e/process-services/widgets/checkbox-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -37,7 +37,7 @@ describe('Checkbox Widget', () => {
let processUserModel;
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
const apiService = createApiService();
const usersActions = new UsersActions(apiService);
diff --git a/e2e/process-services/widgets/date-time-widget.e2e.ts b/e2e/process-services/widgets/date-time-widget.e2e.ts
index e91b7c41b4..d6772c3e4b 100644
--- a/e2e/process-services/widgets/date-time-widget.e2e.ts
+++ b/e2e/process-services/widgets/date-time-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@ describe('Date and time widget', () => {
let processUserModel;
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/process-services/widgets/date-widget.e2e.ts b/e2e/process-services/widgets/date-widget.e2e.ts
index 43e8b99c86..c0b756d313 100644
--- a/e2e/process-services/widgets/date-widget.e2e.ts
+++ b/e2e/process-services/widgets/date-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@ describe('Date widget', () => {
const dateWidget = widget.dateWidget();
let appModel;
let processUserModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
const apiService = createApiService();
const usersActions = new UsersActions(apiService);
diff --git a/e2e/process-services/widgets/document-template-widget.e2e.ts b/e2e/process-services/widgets/document-template-widget.e2e.ts
index 4b69a39599..9c8efabf43 100644
--- a/e2e/process-services/widgets/document-template-widget.e2e.ts
+++ b/e2e/process-services/widgets/document-template-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Document Template widget', () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/dropdown-widget.e2e.ts b/e2e/process-services/widgets/dropdown-widget.e2e.ts
index 98755dbe02..372a16dc8c 100644
--- a/e2e/process-services/widgets/dropdown-widget.e2e.ts
+++ b/e2e/process-services/widgets/dropdown-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,7 +42,7 @@ describe('Dropdown widget', () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/dynamic-table-widget.e2e.ts b/e2e/process-services/widgets/dynamic-table-widget.e2e.ts
index 8d95cc6816..f861bba51a 100644
--- a/e2e/process-services/widgets/dynamic-table-widget.e2e.ts
+++ b/e2e/process-services/widgets/dynamic-table-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@ describe('Dynamic Table widget ', () => {
const processUtil = new ProcessUtil(apiService);
let processUserModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
describe('with Date Time Widget App', () => {
const app = browser.params.resources.Files.WIDGET_CHECK_APP.DYNAMIC_TABLE;
diff --git a/e2e/process-services/widgets/header-widget.e2e.ts b/e2e/process-services/widgets/header-widget.e2e.ts
index 5e82a18f2a..db153133da 100644
--- a/e2e/process-services/widgets/header-widget.e2e.ts
+++ b/e2e/process-services/widgets/header-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Header widget', async () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/hyperlink-widget.e2e.ts b/e2e/process-services/widgets/hyperlink-widget.e2e.ts
index 26ecad5d94..285e1e9751 100644
--- a/e2e/process-services/widgets/hyperlink-widget.e2e.ts
+++ b/e2e/process-services/widgets/hyperlink-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@ describe('Hyperlink widget', () => {
let appModel;
let processUserModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/process-services/widgets/multi-line-widget.e2e.ts b/e2e/process-services/widgets/multi-line-widget.e2e.ts
index 2e82d84e7f..091ee0a894 100644
--- a/e2e/process-services/widgets/multi-line-widget.e2e.ts
+++ b/e2e/process-services/widgets/multi-line-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Multi-line Widget', () => {
let appModel;
let processUserModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
diff --git a/e2e/process-services/widgets/number-widget.e2e.ts b/e2e/process-services/widgets/number-widget.e2e.ts
index be588d042b..2c52a14abd 100644
--- a/e2e/process-services/widgets/number-widget.e2e.ts
+++ b/e2e/process-services/widgets/number-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Number widget', () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/people-group-widget.e2e.ts b/e2e/process-services/widgets/people-group-widget.e2e.ts
index 12e3cd4882..57904e4380 100644
--- a/e2e/process-services/widgets/people-group-widget.e2e.ts
+++ b/e2e/process-services/widgets/people-group-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -121,14 +121,14 @@ describe('People and Group widget', () => {
const userCreated = await Promise.all(app.groupUser.map(usersToCreate =>
usersActions.createUser(new UserModel({
- tenantId: tenantId,
+ tenantId,
firstName: usersToCreate.firstName,
lastName: usersToCreate.lastName
}))
));
const subgroupUser = await usersActions.createUser(new UserModel({
- tenantId: tenantId, firstName: app.subGroupUser.firstName, lastName: app.subGroupUser.lastName
+ tenantId, firstName: app.subGroupUser.firstName, lastName: app.subGroupUser.lastName
}));
const group = await adminGroupsApi.createNewGroup({
diff --git a/e2e/process-services/widgets/people-widget.e2e.ts b/e2e/process-services/widgets/people-widget.e2e.ts
index 38e9a34ae3..fe18cc6a00 100644
--- a/e2e/process-services/widgets/people-widget.e2e.ts
+++ b/e2e/process-services/widgets/people-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('People widget', () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/radio-buttons-widget.e2e.ts b/e2e/process-services/widgets/radio-buttons-widget.e2e.ts
index 321127359a..2727f67d65 100644
--- a/e2e/process-services/widgets/radio-buttons-widget.e2e.ts
+++ b/e2e/process-services/widgets/radio-buttons-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Radio Buttons Widget', () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let appId, process;
+ let appId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/text-widget.e2e.ts b/e2e/process-services/widgets/text-widget.e2e.ts
index 2e75a0870b..6e22b17c0b 100644
--- a/e2e/process-services/widgets/text-widget.e2e.ts
+++ b/e2e/process-services/widgets/text-widget.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ describe('Text widget', () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/process-services/widgets/widget-visibility-condition.e2e.ts b/e2e/process-services/widgets/widget-visibility-condition.e2e.ts
index 3558fa1ca3..45e2c3da18 100644
--- a/e2e/process-services/widgets/widget-visibility-condition.e2e.ts
+++ b/e2e/process-services/widgets/widget-visibility-condition.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@ describe('Process-Services - Visibility conditions', () => {
const processUtil = new ProcessUtil(apiService);
let appModel;
- let deployedAppId, process;
+ let deployedAppId; let process;
let processUserModel;
beforeAll(async () => {
diff --git a/e2e/resources/forms/checkbox-visibility-condition.ts b/e2e/resources/forms/checkbox-visibility-condition.ts
index f90ef8f571..5759490420 100644
--- a/e2e/resources/forms/checkbox-visibility-condition.ts
+++ b/e2e/resources/forms/checkbox-visibility-condition.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/resources/forms/custom-date-form.ts b/e2e/resources/forms/custom-date-form.ts
index 68c7a36d98..0b118bb8e4 100644
--- a/e2e/resources/forms/custom-date-form.ts
+++ b/e2e/resources/forms/custom-date-form.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/resources/forms/display-value-visibility-conditions.ts b/e2e/resources/forms/display-value-visibility-conditions.ts
index 639f1f6aca..caac4735be 100644
--- a/e2e/resources/forms/display-value-visibility-conditions.ts
+++ b/e2e/resources/forms/display-value-visibility-conditions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/resources/forms/dropdown-visibility-condition.ts b/e2e/resources/forms/dropdown-visibility-condition.ts
index 7abb69b666..0538759bb2 100644
--- a/e2e/resources/forms/dropdown-visibility-condition.ts
+++ b/e2e/resources/forms/dropdown-visibility-condition.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -149,104 +149,104 @@ export const dropdownVisibilityFormFieldJson = {
};
export const dropdownVisibilityFormVariableJson = {
- 'formRepresentation': {
- 'id': 'form-8fe70790-ba51-4c46-8ef0-efc9044ed51c',
- 'name': 'SampleDropdown',
- 'description': '',
- 'version': 0,
- 'formDefinition': {
- 'tabs': [],
- 'fields': [{
- 'id': 'fde2c0bd-dbd6-4946-945e-4ab20aa1633a',
- 'name': 'Label',
- 'type': 'container',
- 'tab': null,
- 'numberOfColumns': 2,
- 'fields': {
- '1': [{
- 'id': 'dropdownOne',
- 'name': 'Dropdown',
- 'type': 'dropdown',
- 'required': false,
- 'colspan': 1,
- 'optionType': 'manual',
- 'options': [{
- 'id': 'empty',
- 'name': 'Choose one...'
+ formRepresentation: {
+ id: 'form-8fe70790-ba51-4c46-8ef0-efc9044ed51c',
+ name: 'SampleDropdown',
+ description: '',
+ version: 0,
+ formDefinition: {
+ tabs: [],
+ fields: [{
+ id: 'fde2c0bd-dbd6-4946-945e-4ab20aa1633a',
+ name: 'Label',
+ type: 'container',
+ tab: null,
+ numberOfColumns: 2,
+ fields: {
+ 1: [{
+ id: 'dropdownOne',
+ name: 'Dropdown',
+ type: 'dropdown',
+ required: false,
+ colspan: 1,
+ optionType: 'manual',
+ options: [{
+ id: 'empty',
+ name: 'Choose one...'
}, {
- 'id': 'option_2',
- 'name': '1'
+ id: 'option_2',
+ name: '1'
}, {
- 'id': 'option_3',
- 'name': '2'
+ id: 'option_3',
+ name: '2'
}],
- 'restUrl': null,
- 'restResponsePath': null,
- 'restIdProperty': null,
- 'restLabelProperty': null,
- 'visibilityCondition': {
- 'leftType': 'variable',
- 'leftValue': 'name',
- 'operator': '==',
- 'rightValue': 'value1',
- 'rightType': 'value',
- 'nextConditionOperator': 'and',
- 'nextCondition': {
- 'leftType': 'variable',
- 'leftValue': 'number',
- 'operator': '==',
- 'rightValue': 11,
- 'rightType': 'value',
- 'nextConditionOperator': 'and',
- 'nextCondition': {
- 'leftType': 'variable',
- 'leftValue': 'yesOrNo',
- 'operator': '==',
- 'rightValue': 'true',
- 'rightType': 'value',
- 'nextConditionOperator': 'and',
- 'nextCondition': {
- 'leftType': 'variable',
- 'leftValue': 'today',
- 'operator': '!=',
- 'rightValue': '2019-08-06',
- 'rightType': 'value',
- 'nextConditionOperator': '',
- 'nextCondition': null
+ restUrl: null,
+ restResponsePath: null,
+ restIdProperty: null,
+ restLabelProperty: null,
+ visibilityCondition: {
+ leftType: 'variable',
+ leftValue: 'name',
+ operator: '==',
+ rightValue: 'value1',
+ rightType: 'value',
+ nextConditionOperator: 'and',
+ nextCondition: {
+ leftType: 'variable',
+ leftValue: 'number',
+ operator: '==',
+ rightValue: 11,
+ rightType: 'value',
+ nextConditionOperator: 'and',
+ nextCondition: {
+ leftType: 'variable',
+ leftValue: 'yesOrNo',
+ operator: '==',
+ rightValue: 'true',
+ rightType: 'value',
+ nextConditionOperator: 'and',
+ nextCondition: {
+ leftType: 'variable',
+ leftValue: 'today',
+ operator: '!=',
+ rightValue: '2019-08-06',
+ rightType: 'value',
+ nextConditionOperator: '',
+ nextCondition: null
}
}
}
},
- 'params': {
- 'existingColspan': 1,
- 'maxColspan': 2
+ params: {
+ existingColspan: 1,
+ maxColspan: 2
}
}],
- '2': []
+ 2: []
}
}],
- 'outcomes': [],
- 'metadata': {},
- 'variables': [{
- 'id': '74cdd5d3-120b-4926-995e-89e929a16c8f',
- 'name': 'name',
- 'type': 'string',
- 'value': 'value1'
+ outcomes: [],
+ metadata: {},
+ variables: [{
+ id: '74cdd5d3-120b-4926-995e-89e929a16c8f',
+ name: 'name',
+ type: 'string',
+ value: 'value1'
}, {
- 'id': '4a46531a-c217-4c08-99bb-c510b7c18e63',
- 'name': 'number',
- 'type': 'integer',
- 'value': 11
+ id: '4a46531a-c217-4c08-99bb-c510b7c18e63',
+ name: 'number',
+ type: 'integer',
+ value: 11
}, {
- 'id': 'c469fbce-4039-4817-9d1c-5102ccc2bd26',
- 'name': 'yesOrNo',
- 'type': 'boolean',
- 'value': true
+ id: 'c469fbce-4039-4817-9d1c-5102ccc2bd26',
+ name: 'yesOrNo',
+ type: 'boolean',
+ value: true
}, {
- 'id': '36aa1031-3bbe-48f2-9d5d-465bf4158cb9',
- 'name': 'today',
- 'type': 'date',
- 'value': '2019-05-13'
+ id: '36aa1031-3bbe-48f2-9d5d-465bf4158cb9',
+ name: 'today',
+ type: 'date',
+ value: '2019-05-13'
}]
}
}
diff --git a/e2e/resources/forms/multiple-visibility-conditions.ts b/e2e/resources/forms/multiple-visibility-conditions.ts
index cdcf42bbb4..43e9e4dddb 100644
--- a/e2e/resources/forms/multiple-visibility-conditions.ts
+++ b/e2e/resources/forms/multiple-visibility-conditions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/resources/forms/people-group-formwidget-mocks.ts b/e2e/resources/forms/people-group-formwidget-mocks.ts
index bccb10c07a..21f7bc0e5d 100644
--- a/e2e/resources/forms/people-group-formwidget-mocks.ts
+++ b/e2e/resources/forms/people-group-formwidget-mocks.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/resources/forms/tab-visibility-conditions.ts b/e2e/resources/forms/tab-visibility-conditions.ts
index 1edb6caedf..e45a648716 100644
--- a/e2e/resources/forms/tab-visibility-conditions.ts
+++ b/e2e/resources/forms/tab-visibility-conditions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,545 +15,91 @@
* limitations under the License.
*/
-export const tabFieldValueVisibilityJson = {
- formRepresentation: {
- id: 'form-3aff57d3-62af-4adf-9b14-1d8f44a28077',
- name: 'tabvisibility',
- description: '',
- version: 0,
- standalone: true,
- formDefinition: {
- tabs: [
- {
- id: '71da814d-5580-4f1f-972a-8089253aeded',
- title: 'tabBasicFieldValue',
- visibilityCondition: {
- leftType: 'field',
- leftValue: 'TextOne',
- operator: '==',
- rightValue: 'showTab',
- rightType: 'value',
- nextConditionOperator: '',
- nextCondition: null
- }
- },
- {
- id: '442eea0b-65f9-484e-b37f-f5a91d5e1f21',
- title: 'tabWithFields',
- visibilityCondition: null
- }
- ],
- fields: [
- {
- id: 'dcde7e13-2444-48bc-ab30-32902cea549e',
- name: 'Label',
- type: 'container',
- tab: '71da814d-5580-4f1f-972a-8089253aeded',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextTwo',
- name: 'TextTwo',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- },
- {
- id: 'df452297-d0e8-4406-b9d3-10842033549d',
- name: 'Label',
- type: 'container',
- tab: '442eea0b-65f9-484e-b37f-f5a91d5e1f21',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextOne',
- name: 'TextOne',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- }
- ],
- outcomes: [],
- metadata: {},
- variables: []
- }
+const createField = (id = 'TextTwo', name = 'TextTwo') => ({
+ id,
+ name,
+ type: 'text',
+ required: false,
+ colspan: 1,
+ placeholder: null,
+ minLength: 0,
+ maxLength: 0,
+ regexPattern: null,
+ visibilityCondition: null,
+ params: {
+ existingColspan: 1,
+ maxColspan: 2
}
-};
+});
-export const tabVarValueVisibilityJson = {
- formRepresentation: {
- id: 'form-3aff57d3-62af-4adf-9b14-1d8f44a28077',
- name: 'tabvisibility',
- description: '',
- version: 0,
- standalone: true,
- formDefinition: {
- tabs: [
- {
- id: '71da814d-5580-4f1f-972a-8089253aeded',
- title: 'tabBasicVarValue',
- visibilityCondition: {
- leftType: 'variable',
- leftValue: 'stringVar',
- operator: '==',
- rightValue: 'showTab',
- rightType: 'value',
- nextConditionOperator: ''
- }
- }
- ],
- fields: [
- {
- id: 'dcde7e13-2444-48bc-ab30-32902cea549e',
- name: 'Label',
- type: 'container',
- tab: '71da814d-5580-4f1f-972a-8089253aeded',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextTwo',
- name: 'TextTwo',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- }
- ],
- outcomes: [],
- metadata: {},
- variables: [
- {
- id: "803269e6-a568-40e2-aec3-75ad2f411688",
- name: "stringVar",
- type: "string",
- value: "showTab"
- }
- ]
- }
- }
-};
+const createFieldDefinition = (id = 'dcde7e13-2444-48bc-ab30-32902cea549e', tabName = '71da814d-5580-4f1f-972a-8089253aeded', fields = {
+ 1: [createField()],
+ 2: []
+}) => ({
+ id,
+ name: 'Label',
+ type: 'container',
+ tab: tabName,
+ numberOfColumns: 2,
+ fields
+});
-export const tabVarFieldVisibilityJson = {
- formRepresentation: {
- id: 'form-3aff57d3-62af-4adf-9b14-1d8f44a28077',
- name: 'tabvisibility',
- description: '',
- version: 0,
- standalone: true,
- formDefinition: {
- tabs: [
- {
- id: '71da814d-5580-4f1f-972a-8089253aeded',
- title: 'tabBasicVarField',
- visibilityCondition: {
- leftType: 'variable',
- leftValue: 'stringVar',
- operator: '==',
- rightValue: 'TextOne',
- rightType: 'field',
- nextConditionOperator: ''
- }
- },
- {
- id: '0e538a28-f8d6-4cb8-ae93-dbfb2efdf3b1',
- title: 'tabWithFields',
- visibilityCondition: null
- }
- ],
- fields: [
- {
- id: 'dcde7e13-2444-48bc-ab30-32902cea549e',
- name: 'Label',
- type: 'container',
- tab: '71da814d-5580-4f1f-972a-8089253aeded',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextTwo',
- name: 'TextTwo',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- },
- {
- id: '1308e433-08ce-4448-a62a-0accc1187d15',
- name: 'Label',
- type: 'container',
- tab: '0e538a28-f8d6-4cb8-ae93-dbfb2efdf3b1',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextOne',
- name: 'TextOne',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- }
- ],
- outcomes: [],
- metadata: {},
- variables: [
- {
- id: "803269e6-a568-40e2-aec3-75ad2f411688",
- name: "stringVar",
- type: "string",
- value: "showTab"
- }
- ]
- }
- }
-};
+const fieldDefinition1 = createFieldDefinition();
+const fieldDefinition2 = createFieldDefinition('1308e433-08ce-4448-a62a-0accc1187d15', '0e538a28-f8d6-4cb8-ae93-dbfb2efdf3b1', {
+ 1: [createField('TextOne', 'TextOne')],
+ 2: []
+});
+const fieldDefinition3 = createFieldDefinition('df452297-d0e8-4406-b9d3-10842033549d', '442eea0b-65f9-484e-b37f-f5a91d5e1f21', {
+ 1: [createField('TextOne', 'TextOne')],
+ 2: [createField('TextThree', 'TextThree')]
+});
-export const tabFieldFieldVisibilityJson = {
- formRepresentation: {
- id: 'form-3aff57d3-62af-4adf-9b14-1d8f44a28077',
- name: 'tabvisibility',
- description: '',
- version: 0,
- standalone: true,
- formDefinition: {
- tabs: [
- {
- id: '71da814d-5580-4f1f-972a-8089253aeded',
- title: 'tabBasicFieldField',
- visibilityCondition: {
- leftType: 'field',
- leftValue: 'TextThree',
- operator: '==',
- rightValue: 'TextOne',
- rightType: 'field',
- nextConditionOperator: ''
- }
- },
- {
- id: '442eea0b-65f9-484e-b37f-f5a91d5e1f21',
- title: 'tabWithFields',
- visibilityCondition: null
- }
- ],
- fields: [
- {
- id: 'dcde7e13-2444-48bc-ab30-32902cea549e',
- name: 'Label',
- type: 'container',
- tab: '71da814d-5580-4f1f-972a-8089253aeded',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextTwo',
- name: 'TextTwo',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- },
- {
- id: 'df452297-d0e8-4406-b9d3-10842033549d',
- name: 'Label',
- type: 'container',
- tab: '442eea0b-65f9-484e-b37f-f5a91d5e1f21',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextOne',
- name: 'TextOne',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: [
- {
- id: 'TextThree',
- name: 'TextThree',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ]
- }
- }
- ],
- outcomes: [],
- metadata: {},
- variables: []
- }
- }
-};
+const fieldsDefinitions1 = [fieldDefinition1, fieldDefinition2];
+const fieldsDefinitions2 = [fieldDefinition1, fieldDefinition3];
-export const tabFieldVarVisibilityJson = {
- formRepresentation: {
- id: 'form-3aff57d3-62af-4adf-9b14-1d8f44a28077',
- name: 'tabvisibility',
- description: '',
- version: 0,
- standalone: true,
- formDefinition: {
- tabs: [
- {
- id: '71da814d-5580-4f1f-972a-8089253aeded',
- title: 'tabBasicVarField',
- visibilityCondition: {
- leftType: 'field',
- leftValue: 'TextOne',
- operator: '==',
- rightValue: 'stringVar',
- rightType: 'variable',
- nextConditionOperator: ''
- }
- },
- {
- id: '0e538a28-f8d6-4cb8-ae93-dbfb2efdf3b1',
- title: 'tabWithFields',
- visibilityCondition: null
- }
- ],
- fields: [
- {
- id: 'dcde7e13-2444-48bc-ab30-32902cea549e',
- name: 'Label',
- type: 'container',
- tab: '71da814d-5580-4f1f-972a-8089253aeded',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextTwo',
- name: 'TextTwo',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- },
- {
- id: '1308e433-08ce-4448-a62a-0accc1187d15',
- name: 'Label',
- type: 'container',
- tab: '0e538a28-f8d6-4cb8-ae93-dbfb2efdf3b1',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextOne',
- name: 'TextOne',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- }
- ],
- outcomes: [],
- metadata: {},
- variables: [
- {
- id: "803269e6-a568-40e2-aec3-75ad2f411688",
- name: "stringVar",
- type: "string",
- value: "showTab"
- }
- ]
- }
- }
-};
+const createVisibilityCondition = (leftType = 'field', leftValue = 'TextOne', nextCondition?: any, rightValue = 'showTab', rightType = 'value', operator = '==') => ({
+ leftType,
+ leftValue,
+ operator,
+ rightValue,
+ rightType,
+ nextConditionOperator: nextCondition ? 'and' : '',
+ nextCondition
+});
-export const tabVarVarVisibilityJson = {
- formRepresentation: {
- id: 'form-3aff57d3-62af-4adf-9b14-1d8f44a28077',
- name: 'tabvisibility',
- description: '',
- version: 0,
- standalone: true,
- formDefinition: {
- tabs: [
- {
- id: 'ef512cb3-0c41-4d12-84ef-a7ef8f0b111a',
- title: 'tabBasicVarVar',
- visibilityCondition: {
- leftType: 'variable',
- leftValue: 'showTabOne',
- operator: '==',
- rightValue: 'showTabTwo',
- rightType: 'variable',
- nextConditionOperator: ''
- }
- }
- ],
- fields: [
- {
- id: '6eeb9e54-e51d-44f3-9557-503308f07361',
- name: 'Label',
- type: 'container',
- tab: 'ef512cb3-0c41-4d12-84ef-a7ef8f0b111a',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextOne',
- name: 'TextOne',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- }
- ],
- outcomes: [],
- metadata: {},
- variables: [
- {
- id: "b116df99-f6b5-45f8-b48c-15b74f7f1c92",
- name: "showTabOne",
- type: "string",
- value: "showTab"
- },
- {
- id: "6e3e88ab-848c-4f48-8326-a404d1427f60",
- name: "showTabTwo",
- type: "string",
- value: "showTab"
- }
- ]
- }
- }
-};
+const createTab = (id = '71da814d-5580-4f1f-972a-8089253aeded', title = 'tabBasicFieldValue', visibilityCondition = createVisibilityCondition('field', 'TextOne', null)) => ({
+ id,
+ title,
+ visibilityCondition
+});
-export const tabNextOperatorsVisibilityJson = {
+const createTabVisibilityJson = (tabs = [
+ createTab(),
+ createTab('442eea0b-65f9-484e-b37f-f5a91d5e1f21', 'tabWithFields', null)
+], fields = [
+ createFieldDefinition(),
+ createFieldDefinition('df452297-d0e8-4406-b9d3-10842033549d', '442eea0b-65f9-484e-b37f-f5a91d5e1f21', {
+ 1: [
+ {
+ id: 'TextOne',
+ name: 'TextOne',
+ type: 'text',
+ required: false,
+ colspan: 1,
+ placeholder: null,
+ minLength: 0,
+ maxLength: 0,
+ regexPattern: null,
+ visibilityCondition: null,
+ params: {
+ existingColspan: 1,
+ maxColspan: 2
+ }
+ }
+ ],
+ 2: []
+ })
+], variables = []) => ({
formRepresentation: {
id: 'form-3aff57d3-62af-4adf-9b14-1d8f44a28077',
name: 'tabvisibility',
@@ -561,112 +107,100 @@ export const tabNextOperatorsVisibilityJson = {
version: 0,
standalone: true,
formDefinition: {
- tabs: [
- {
- id: '71da814d-5580-4f1f-972a-8089253aeded',
- title: 'tabNextOperators',
- visibilityCondition: {
- leftType: 'field',
- leftValue: 'TextOne',
- operator: '==',
- rightValue: 'showTab',
- rightType: 'value',
- nextConditionOperator: 'and',
- nextCondition: {
- leftType: 'field',
- leftValue: 'TextThree',
- operator: '!=',
- rightValue: 'showTab',
- rightType: 'value',
- nextConditionOperator: '',
- nextCondition: null
- }
- }
- },
- {
- id: '442eea0b-65f9-484e-b37f-f5a91d5e1f21',
- title: 'tabWithFields',
- visibilityCondition: null
- }
- ],
- fields: [
- {
- id: 'dcde7e13-2444-48bc-ab30-32902cea549e',
- name: 'Label',
- type: 'container',
- tab: '71da814d-5580-4f1f-972a-8089253aeded',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextTwo',
- name: 'TextTwo',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: []
- }
- },
- {
- id: 'df452297-d0e8-4406-b9d3-10842033549d',
- name: 'Label',
- type: 'container',
- tab: '442eea0b-65f9-484e-b37f-f5a91d5e1f21',
- numberOfColumns: 2,
- fields: {
- 1: [
- {
- id: 'TextOne',
- name: 'TextOne',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ],
- 2: [
- {
- id: 'TextThree',
- name: 'TextThree',
- type: 'text',
- required: false,
- colspan: 1,
- placeholder: null,
- minLength: 0,
- maxLength: 0,
- regexPattern: null,
- visibilityCondition: null,
- params: {
- existingColspan: 1,
- maxColspan: 2
- }
- }
- ]
- }
- }
- ],
+ tabs,
+ fields,
outcomes: [],
metadata: {},
- variables: []
+ variables
}
}
-};
+});
+
+export const tabFieldValueVisibilityJson = createTabVisibilityJson();
+
+export const tabVarValueVisibilityJson = createTabVisibilityJson([
+ createTab('71da814d-5580-4f1f-972a-8089253aeded', 'tabBasicVarValue', createVisibilityCondition('variable', 'stringVar'))
+], [fieldDefinition1], [
+ {
+ id: '803269e6-a568-40e2-aec3-75ad2f411688',
+ name: 'stringVar',
+ type: 'string',
+ value: 'showTab'
+ }
+]);
+
+export const tabVarFieldVisibilityJson = createTabVisibilityJson([
+ createTab(
+ '71da814d-5580-4f1f-972a-8089253aeded',
+ 'tabBasicVarField',
+ createVisibilityCondition('variable', 'stringVar', undefined, 'TextOne', 'field')
+ ),
+ createTab('0e538a28-f8d6-4cb8-ae93-dbfb2efdf3b1', 'tabWithFields', null)
+], fieldsDefinitions1, [
+ {
+ id: '803269e6-a568-40e2-aec3-75ad2f411688',
+ name: 'stringVar',
+ type: 'string',
+ value: 'showTab'
+ }
+]);
+
+export const tabFieldFieldVisibilityJson = createTabVisibilityJson([
+ createTab(
+ '71da814d-5580-4f1f-972a-8089253aeded',
+ 'tabBasicFieldField',
+ createVisibilityCondition('field', 'TextThree', undefined, 'TextOne', 'field')
+ ),
+ createTab('442eea0b-65f9-484e-b37f-f5a91d5e1f21', 'tabWithFields', null)
+], fieldsDefinitions2);
+
+export const tabFieldVarVisibilityJson = createTabVisibilityJson([
+ createTab(
+ '71da814d-5580-4f1f-972a-8089253aeded',
+ 'tabBasicVarField',
+ createVisibilityCondition('field', 'TextOne', undefined, 'stringVar', 'variable')
+ ),
+ createTab('0e538a28-f8d6-4cb8-ae93-dbfb2efdf3b1', 'tabWithFields', null)
+], fieldsDefinitions1, [
+ {
+ id: '803269e6-a568-40e2-aec3-75ad2f411688',
+ name: 'stringVar',
+ type: 'string',
+ value: 'showTab'
+ }
+]);
+
+export const tabVarVarVisibilityJson = createTabVisibilityJson([
+ createTab(
+ 'ef512cb3-0c41-4d12-84ef-a7ef8f0b111a',
+ 'tabBasicVarVar',
+ createVisibilityCondition('variable', 'showTabOne', undefined, 'showTabTwo', 'variable')
+ )
+], [
+ createFieldDefinition('6eeb9e54-e51d-44f3-9557-503308f07361', 'ef512cb3-0c41-4d12-84ef-a7ef8f0b111a', {
+ 1: [createField('TextOne', 'TextOne')],
+ 2: []
+ })
+], [
+ {
+ id: 'b116df99-f6b5-45f8-b48c-15b74f7f1c92',
+ name: 'showTabOne',
+ type: 'string',
+ value: 'showTab'
+ },
+ {
+ id: '6e3e88ab-848c-4f48-8326-a404d1427f60',
+ name: 'showTabTwo',
+ type: 'string',
+ value: 'showTab'
+ }
+]);
+
+export const tabNextOperatorsVisibilityJson = createTabVisibilityJson([
+ createTab(
+ '71da814d-5580-4f1f-972a-8089253aeded',
+ 'tabNextOperators',
+ createVisibilityCondition('field', 'TextOne', createVisibilityCondition('field', 'TextThree', null, 'showTab', 'value', '!='))
+ ),
+ createTab('442eea0b-65f9-484e-b37f-f5a91d5e1f21', 'tabWithFields', null)
+], fieldsDefinitions2);
diff --git a/e2e/search/components/search-check-list.e2e.ts b/e2e/search/components/search-check-list.e2e.ts
index eefcfb3794..edcee25705 100644
--- a/e2e/search/components/search-check-list.e2e.ts
+++ b/e2e/search/components/search-check-list.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@ describe('Search Checklist Component', () => {
folder: `${randomName}Folder`
};
- let createdFile, createdFolder;
+ let createdFile; let createdFolder;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
@@ -152,8 +152,8 @@ describe('Search Checklist Component', () => {
for (let numberOfOptions = 0; numberOfOptions < 8; numberOfOptions++) {
jsonFile.categories[1].component.settings.options.push({
- 'name': 'Folder',
- 'value': "TYPE:'cm:folder'"
+ name: 'Folder',
+ value: 'TYPE:\'cm:folder\''
});
}
@@ -192,8 +192,8 @@ describe('Search Checklist Component', () => {
for (let numberOfOptions = 0; numberOfOptions < 8; numberOfOptions++) {
jsonFile.categories[1].component.settings.options.push({
- 'name': 'Folder',
- 'value': "TYPE:'cm:folder'"
+ name: 'Folder',
+ value: 'TYPE:\'cm:folder\''
});
}
@@ -249,8 +249,8 @@ describe('Search Checklist Component', () => {
for (let numberOfOptions = 0; numberOfOptions < 8; numberOfOptions++) {
jsonFile.categories[1].component.settings.options.push({
- 'name': 'Folder',
- 'value': "TYPE:'cm:folder'"
+ name: 'Folder',
+ value: 'TYPE:\'cm:folder\''
});
}
@@ -339,8 +339,8 @@ describe('Search Checklist Component', () => {
it('[C277019] Should be able to add new properties with different types', async () => {
jsonFile.categories[1].component.settings.options.push({
- 'name': filterType.custom,
- 'value': "TYPE:'cm:auditable'"
+ name: filterType.custom,
+ value: 'TYPE:\'cm:auditable\''
});
await LocalStorageUtil.setConfigField('search', JSON.stringify(jsonFile));
diff --git a/e2e/search/components/search-date-range.e2e.ts b/e2e/search/components/search-date-range.e2e.ts
index fdc1127d47..9528ee81ee 100644
--- a/e2e/search/components/search-date-range.e2e.ts
+++ b/e2e/search/components/search-date-range.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/search/components/search-number-range.e2e.ts b/e2e/search/components/search-number-range.e2e.ts
index ac0a6b6f5b..4f4d609b7c 100644
--- a/e2e/search/components/search-number-range.e2e.ts
+++ b/e2e/search/components/search-number-range.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,16 +45,16 @@ describe('Search Number Range Filter', () => {
const acsUser = new UserModel();
const file2BytesModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_path
});
const file0BytesModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path
});
- let file2Bytes, file0Bytes;
+ let file2Bytes; let file0Bytes;
const apiService = createApiService();
const usersActions = new UsersActions(apiService);
diff --git a/e2e/search/components/search-radio.e2e.ts b/e2e/search/components/search-radio.e2e.ts
index 93cf2e69ff..771b7ec09d 100644
--- a/e2e/search/components/search-radio.e2e.ts
+++ b/e2e/search/components/search-radio.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@ describe('Search Radio Component', () => {
folder: `${randomName}Folder`
};
- let createdFile, createdFolder;
+ let createdFile; let createdFolder;
beforeAll(async () => {
await apiService.loginWithProfile('admin');
@@ -141,8 +141,8 @@ describe('Search Radio Component', () => {
for (let numberOfOptions = 0; numberOfOptions < 6; numberOfOptions++) {
jsonFile.categories[5].component.settings.options.push({
- 'name': 'APP.SEARCH.RADIO.FOLDER',
- 'value': "TYPE:'cm:folder'"
+ name: 'APP.SEARCH.RADIO.FOLDER',
+ value: 'TYPE:\'cm:folder\''
});
}
@@ -199,8 +199,8 @@ describe('Search Radio Component', () => {
for (let numberOfOptions = 0; numberOfOptions < 6; numberOfOptions++) {
jsonFile.categories[5].component.settings.options.push({
- 'name': 'APP.SEARCH.RADIO.FOLDER',
- 'value': "TYPE:'cm:folder'"
+ name: 'APP.SEARCH.RADIO.FOLDER',
+ value: 'TYPE:\'cm:folder\''
});
}
@@ -281,8 +281,8 @@ describe('Search Radio Component', () => {
await navigationBarPage.navigateToContentServices();
jsonFile.categories[5].component.settings.options.push({
- 'name': filterType.custom,
- 'value': "TYPE:'cm:content'"
+ name: filterType.custom,
+ value: 'TYPE:\'cm:content\''
});
await LocalStorageUtil.setConfigField('search', JSON.stringify(jsonFile));
diff --git a/e2e/search/components/search-slider.e2e.ts b/e2e/search/components/search-slider.e2e.ts
index 41e31c9703..ab728ff223 100644
--- a/e2e/search/components/search-slider.e2e.ts
+++ b/e2e/search/components/search-slider.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,8 +44,8 @@ describe('Search Slider Filter', () => {
const acsUser = new UserModel();
const file2BytesModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.UNSUPPORTED.file_path
});
let file2Bytes;
diff --git a/e2e/search/components/search-sorting-picker.e2e.ts b/e2e/search/components/search-sorting-picker.e2e.ts
index 0dcc281418..2fd1e00626 100644
--- a/e2e/search/components/search-sorting-picker.e2e.ts
+++ b/e2e/search/components/search-sorting-picker.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,16 +44,16 @@ describe('Search Sorting Picker', () => {
const acsUser = new UserModel();
const pngAModel = {
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
};
const pngDModel = {
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG_D.file_path
};
- let pngA, pngD;
+ let pngA; let pngD;
const apiService = createApiService();
const uploadActions = new UploadActions(apiService);
@@ -63,6 +63,26 @@ describe('Search Sorting Picker', () => {
const search = '_png_file.png';
let jsonFile;
+ const checkSortingDropdownIsDisplayed = async (key = 'Modifier', label = 'Modifier') => {
+ await navigationBarPage.navigateToContentServices();
+ jsonFile = SearchConfiguration.getConfiguration();
+ jsonFile.sorting.options.push({
+ key,
+ label,
+ type: 'FIELD',
+ field: 'cm:modifier',
+ ascending: true
+ });
+ await LocalStorageUtil.setConfigField('search', JSON.stringify(jsonFile));
+
+ await searchBarPage.checkSearchIconIsVisible();
+ await searchBarPage.clickOnSearchIcon();
+ await searchBarPage.enterTextAndPressEnter(search);
+ await searchResults.dataTable.waitTillContentLoaded();
+
+ await searchSortingPicker.checkSortingDropdownIsDisplayed();
+ };
+
beforeAll(async () => {
await apiService.loginWithProfile('admin');
await usersActions.createUser(acsUser);
@@ -102,23 +122,7 @@ describe('Search Sorting Picker', () => {
});
it('[C277271] Should be able to add a custom search sorter in the "sort by" option', async () => {
- await navigationBarPage.navigateToContentServices();
- jsonFile = SearchConfiguration.getConfiguration();
- jsonFile.sorting.options.push({
- 'key': 'Modifier',
- 'label': 'Modifier',
- 'type': 'FIELD',
- 'field': 'cm:modifier',
- 'ascending': true
- });
- await LocalStorageUtil.setConfigField('search', JSON.stringify(jsonFile));
-
- await searchBarPage.checkSearchIconIsVisible();
- await searchBarPage.clickOnSearchIcon();
- await searchBarPage.enterTextAndPressEnter(search);
- await searchResults.dataTable.waitTillContentLoaded();
-
- await searchSortingPicker.checkSortingDropdownIsDisplayed();
+ await checkSortingDropdownIsDisplayed();
await searchSortingPicker.clickSortingDropdown();
await searchSortingPicker.checkOptionsDropdownIsDisplayed();
await searchSortingPicker.checkOptionIsDisplayed('Modifier');
@@ -147,11 +151,11 @@ describe('Search Sorting Picker', () => {
jsonFile = SearchConfiguration.getConfiguration();
jsonFile.sorting.options[0].ascending = false;
jsonFile.sorting.defaults[0] = {
- 'key': 'Size',
- 'label': 'Size',
- 'type': 'FIELD',
- 'field': 'content.size',
- 'ascending': true
+ key: 'Size',
+ label: 'Size',
+ type: 'FIELD',
+ field: 'content.size',
+ ascending: true
};
await LocalStorageUtil.setConfigField('search', JSON.stringify(jsonFile));
@@ -196,24 +200,7 @@ describe('Search Sorting Picker', () => {
});
it('[C277288] Should be able to sort the search results by "Modified Date" ASC', async () => {
- await navigationBarPage.navigateToContentServices();
-
- jsonFile = SearchConfiguration.getConfiguration();
- jsonFile.sorting.options.push({
- 'key': 'Modified Date',
- 'label': 'Modified Date',
- 'type': 'FIELD',
- 'field': 'cm:modified',
- 'ascending': true
- });
- await LocalStorageUtil.setConfigField('search', JSON.stringify(jsonFile));
-
- await searchBarPage.checkSearchIconIsVisible();
- await searchBarPage.clickOnSearchIcon();
- await searchBarPage.enterTextAndPressEnter(search);
- await searchResults.dataTable.waitTillContentLoaded();
-
- await searchSortingPicker.checkSortingDropdownIsDisplayed();
+ await checkSortingDropdownIsDisplayed('Modified Date', 'Modified Date');
await searchSortingPicker.sortBy('ASC', 'Modified Date');
const idList = await contentServices.getElementsDisplayedId();
@@ -229,7 +216,7 @@ describe('Search Sorting Picker', () => {
await expect(contentServices.checkElementsDateSortedAsc(modifiedDateList)).toBe(true);
});
- const getNodesDisplayed = async function (numberOfElements: number, idList: string[]) {
+ const getNodesDisplayed = async function(numberOfElements: number, idList: string[]) {
const promises = [];
let nodeList;
diff --git a/e2e/search/components/search-text.e2e.ts b/e2e/search/components/search-text.e2e.ts
index 7e7fdd3781..c9f12f4447 100644
--- a/e2e/search/components/search-text.e2e.ts
+++ b/e2e/search/components/search-text.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -48,7 +48,7 @@ describe('Search component - Text widget', () => {
const nodesApi = new NodesApi(apiService.getInstance());
const acsUser = new UserModel();
- const newFolderModel = new FolderModel({ 'description': 'newDescription' });
+ const newFolderModel = new FolderModel({ description: 'newDescription' });
beforeAll(async () => {
await apiService.loginWithProfile('admin');
@@ -58,9 +58,9 @@ describe('Search component - Text widget', () => {
await apiService.login(acsUser.username, acsUser.password);
await nodesApi.createNode('-my-', {
- 'name': newFolderModel.name,
- 'nodeType': 'cm:folder',
- 'properties':
+ name: newFolderModel.name,
+ nodeType: 'cm:folder',
+ properties:
{
'cm:description': newFolderModel.description
}
diff --git a/e2e/search/pages/search-bar.page.ts b/e2e/search/pages/search-bar.page.ts
index 0e0d515d5f..a1338bf9ae 100644
--- a/e2e/search/pages/search-bar.page.ts
+++ b/e2e/search/pages/search-bar.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/search/pages/search-filters.page.ts b/e2e/search/pages/search-filters.page.ts
index 53fc6b7441..7ca69f4c8b 100644
--- a/e2e/search/pages/search-filters.page.ts
+++ b/e2e/search/pages/search-filters.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/search/pages/search-results.page.ts b/e2e/search/pages/search-results.page.ts
index b118fb3cbe..6b7fa7c1b0 100644
--- a/e2e/search/pages/search-results.page.ts
+++ b/e2e/search/pages/search-results.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/search/search-component.e2e.ts b/e2e/search/search-component.e2e.ts
index f4adceac1f..da6c7ee669 100644
--- a/e2e/search/search-component.e2e.ts
+++ b/e2e/search/search-component.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -68,17 +68,17 @@ describe('Search component - Search Bar', () => {
const filesToDelete = [];
const firstFileModel = new FileModel({
- 'name': filename, 'shortName': filename.substring(0, 8)
+ name: filename, shortName: filename.substring(0, 8)
});
const firstFolderModel = new FolderModel({
- 'name': firstFolderName, 'shortName': firstFolderName.substring(0, 8)
+ name: firstFolderName, shortName: firstFolderName.substring(0, 8)
});
const secondFolder = new FolderModel({
- 'name': secondFolderName, 'shortName': secondFolderName.substring(0, 8)
+ name: secondFolderName, shortName: secondFolderName.substring(0, 8)
});
const thirdFolder = new FolderModel({
- 'name': thirdFolderName, 'shortName': thirdFolderName.substring(0, 8)
+ name: thirdFolderName, shortName: thirdFolderName.substring(0, 8)
});
const term = 'Zoizo';
@@ -94,9 +94,9 @@ describe('Search component - Search Bar', () => {
Object.assign(firstFileModel, firstFileUploaded.entry);
fileHighlightUploaded = await nodesApi.createNode('-my-', {
- 'name': StringUtil.generateRandomString(16),
- 'nodeType': 'cm:content',
- 'properties': {
+ name: StringUtil.generateRandomString(16),
+ nodeType: 'cm:content',
+ properties: {
'cm:title': term,
'cm:description': 'Jadore les ' + term
}
diff --git a/e2e/search/search-filters.e2e.ts b/e2e/search/search-filters.e2e.ts
index c299d87a5c..980a7d5199 100644
--- a/e2e/search/search-filters.e2e.ts
+++ b/e2e/search/search-filters.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,30 +59,30 @@ describe('Search Filters', () => {
const uniqueFileName3 = fileNamePrefix + StringUtil.generateRandomString(5);
const fileModel = new FileModel({
- 'name': filename, 'shortName': filename.substring(0, 8)
+ name: filename, shortName: filename.substring(0, 8)
});
const pngFileModel = new FileModel({
- 'name': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
+ name: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_name,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.PNG.file_path
});
const txtFileModel1 = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
- 'name': `${uniqueFileName1}.txt`
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
+ name: `${uniqueFileName1}.txt`
});
const jpgFileModel = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
- 'name': `${uniqueFileName2}.jpg`
+ location: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
+ name: `${uniqueFileName2}.jpg`
});
const txtFileModel2 = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
- 'name': `${uniqueFileName3}.txt`
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
+ name: `${uniqueFileName3}.txt`
});
- let fileUploaded, fileTypePng, fileTypeTxt1, fileTypeJpg, fileTypeTxt2;
+ let fileUploaded; let fileTypePng; let fileTypeTxt1; let fileTypeJpg; let fileTypeTxt2;
const filter = { type: 'TYPE-PNG Image' };
@@ -126,18 +126,18 @@ describe('Search Filters', () => {
const currentYear = moment().year();
jsonFile.facetQueries.queries[0] = {
- 'query': `created:${currentYear}`,
- 'label': 'SEARCH.FACET_QUERIES.CREATED_THIS_YEAR'
+ query: `created:${currentYear}`,
+ label: 'SEARCH.FACET_QUERIES.CREATED_THIS_YEAR'
};
jsonFile.facetQueries.queries[1] = {
- 'query': `content.mimetype:text/html`,
- 'label': 'SEARCH.FACET_QUERIES.MIMETYPE',
- 'group': 'Type facet queries'
+ query: `content.mimetype:text/html`,
+ label: 'SEARCH.FACET_QUERIES.MIMETYPE',
+ group: 'Type facet queries'
};
jsonFile.facetQueries.queries[2] = {
- 'query': `content.size:[0 TO 10240]`,
- 'label': 'SEARCH.FACET_QUERIES.XTRASMALL',
- 'group': 'Size facet queries'
+ query: `content.size:[0 TO 10240]`,
+ label: 'SEARCH.FACET_QUERIES.XTRASMALL',
+ group: 'Size facet queries'
};
diff --git a/e2e/search/search-multiselect.e2e.ts b/e2e/search/search-multiselect.e2e.ts
index 135031976a..9ae604136b 100644
--- a/e2e/search/search-multiselect.e2e.ts
+++ b/e2e/search/search-multiselect.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -36,34 +36,35 @@ describe('Search Component - Multi-Select Facet', () => {
const uploadActions = new UploadActions(apiService);
const usersActions = new UsersActions(apiService);
- let site, userOption;
+ const createSite = async (user: UserModel) => {
+ await apiService.loginWithProfile('admin');
+ await usersActions.createUser(user);
+ await apiService.login(user.username, user.password);
+ const sitesApi = new SitesApi(apiService.getInstance());
+ site = await sitesApi.createSite({
+ title: StringUtil.generateRandomString(8),
+ visibility: 'PUBLIC'
+ });
+ };
+ const randomName = StringUtil.generateRandomString();
+ const txtFileInfo = new FileModel({
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
+ name: `${randomName}.txt`
+ });
+
+ let site; let userOption;
describe('', () => {
- let jpgFile, jpgFileSite, txtFile, txtFileSite;
+ let jpgFile; let jpgFileSite; let txtFile; let txtFileSite;
const acsUser = new UserModel();
- const randomName = StringUtil.generateRandomString();
const jpgFileInfo = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
- 'name': `${randomName}.jpg`
- });
- const txtFileInfo = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
- 'name': `${randomName}.txt`
+ location: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
+ name: `${randomName}.jpg`
});
beforeAll(async () => {
- await apiService.loginWithProfile('admin');
-
- await usersActions.createUser(acsUser);
-
- await apiService.login(acsUser.username, acsUser.password);
-
- const sitesApi = new SitesApi(apiService.getInstance());
- site = await sitesApi.createSite({
- title: StringUtil.generateRandomString(8),
- visibility: 'PUBLIC'
- });
+ await createSite(acsUser);
jpgFile = await uploadActions.uploadFile(jpgFileInfo.location, jpgFileInfo.name, '-my-');
@@ -131,18 +132,13 @@ describe('Search Component - Multi-Select Facet', () => {
});
describe('', () => {
- let jpgFile, txtFile;
+ let jpgFile; let txtFile;
const userUploadingTxt = new UserModel();
const userUploadingImg = new UserModel();
- const randomName = StringUtil.generateRandomString();
const jpgFileInfo = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
- 'name': `${randomName}.jpg`
- });
- const txtFileInfo = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
- 'name': `${randomName}.txt`
+ location: browser.params.resources.Files.ADF_DOCUMENTS.JPG.file_path,
+ name: `${randomName}.jpg`
});
beforeAll(async () => {
@@ -202,23 +198,8 @@ describe('Search Component - Multi-Select Facet', () => {
let txtFile;
const acsUser = new UserModel();
- const randomName = StringUtil.generateRandomString();
- const txtFileInfo = new FileModel({
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT_0B.file_path,
- 'name': `${randomName}.txt`
- });
-
beforeAll(async () => {
- await apiService.loginWithProfile('admin');
-
- await usersActions.createUser(acsUser);
-
- await apiService.login(acsUser.username, acsUser.password);
- const sitesApi = new SitesApi(apiService.getInstance());
- site = await sitesApi.createSite({
- title: StringUtil.generateRandomString(8),
- visibility: 'PUBLIC'
- });
+ await createSite(acsUser);
txtFile = await uploadActions.uploadFile(txtFileInfo.location, txtFileInfo.name, '-my-');
await browser.sleep(browser.params.testConfig.timeouts.index_search);
diff --git a/e2e/search/search-page.e2e.ts b/e2e/search/search-page.e2e.ts
index 0f9d0c98f9..25933be762 100644
--- a/e2e/search/search-page.e2e.ts
+++ b/e2e/search/search-page.e2e.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ describe('Search component - Search Page', () => {
const usersActions = new UsersActions(apiService);
const acsUser = new UserModel();
- const emptyFolderModel = new FolderModel({ 'name': 'search' + StringUtil.generateRandomString() });
+ const emptyFolderModel = new FolderModel({ name: 'search' + StringUtil.generateRandomString() });
let firstFileModel;
const newFolderModel = new FolderModel();
let fileNames = [];
@@ -66,8 +66,8 @@ describe('Search component - Search Page', () => {
fileNames.splice(0, 1);
firstFileModel = new FileModel({
- 'name': search.active.firstFile,
- 'location': browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
+ name: search.active.firstFile,
+ location: browser.params.resources.Files.ADF_DOCUMENTS.TXT.file_path
});
await apiService.loginWithProfile('admin');
@@ -95,7 +95,7 @@ describe('Search component - Search Page', () => {
await navigationBarPage.clickLogoutButton();
});
- it('[C260264] Should display message when no results are found', async() => {
+ it('[C260264] Should display message when no results are found', async () => {
const notExistentFileName = StringUtil.generateRandomString();
await searchBarPage.checkSearchBarIsNotVisible();
await searchBarPage.checkSearchIconIsVisible();
diff --git a/e2e/search/search.config.ts b/e2e/search/search.config.ts
index 6ea98807dd..45ab494d42 100644
--- a/e2e/search/search.config.ts
+++ b/e2e/search/search.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -30,166 +30,166 @@ export class SearchConfiguration {
'TEXT',
'TAG'
],
- 'include': ['path', 'allowableOperations'],
- 'sorting': {
- 'options': [
- {'key': 'name', 'label': 'Name', 'type': 'FIELD', 'field': 'cm:name', 'ascending': true},
+ include: ['path', 'allowableOperations'],
+ sorting: {
+ options: [
+ {key: 'name', label: 'Name', type: 'FIELD', field: 'cm:name', ascending: true},
{
- 'key': 'content.sizeInBytes',
- 'label': 'Size',
- 'type': 'FIELD',
- 'field': 'content.size',
- 'ascending': true
+ key: 'content.sizeInBytes',
+ label: 'Size',
+ type: 'FIELD',
+ field: 'content.size',
+ ascending: true
},
{
- 'key': 'description',
- 'label': 'Description',
- 'type': 'FIELD',
- 'field': 'cm:description',
- 'ascending': true
+ key: 'description',
+ label: 'Description',
+ type: 'FIELD',
+ field: 'cm:description',
+ ascending: true
},
{
- 'key': 'createdByUser',
- 'label': 'Author',
- 'type': 'FIELD',
- 'field': 'cm:creator',
- 'ascending': true
+ key: 'createdByUser',
+ label: 'Author',
+ type: 'FIELD',
+ field: 'cm:creator',
+ ascending: true
},
- {'key': 'createdAt', 'label': 'Created', 'type': 'FIELD', 'field': 'cm:created', 'ascending': true}
+ {key: 'createdAt', label: 'Created', type: 'FIELD', field: 'cm:created', ascending: true}
],
- 'defaults': [
- {'key': 'name', 'type': 'FIELD', 'field': 'cm:name', 'ascending': true}
+ defaults: [
+ {key: 'name', type: 'FIELD', field: 'cm:name', ascending: true}
]
},
- 'filterQueries': [
- {'query': "TYPE:'cm:folder' OR TYPE:'cm:content'"},
- {'query': 'NOT cm:creator:System'}
+ filterQueries: [
+ {query: 'TYPE:\'cm:folder\' OR TYPE:\'cm:content\''},
+ {query: 'NOT cm:creator:System'}
],
- 'facetFields': {
- 'expanded': true,
- 'fields': [
- {'field': 'content.mimetype', 'mincount': 1, 'label': 'SEARCH.FACET_FIELDS.TYPE'},
- {'field': 'content.size', 'mincount': 1, 'label': 'SEARCH.FACET_FIELDS.SIZE'},
- {'field': 'creator', 'mincount': 1, 'label': 'SEARCH.FACET_FIELDS.CREATOR'},
- {'field': 'modifier', 'mincount': 1, 'label': 'SEARCH.FACET_FIELDS.MODIFIER'},
- {'field': 'created', 'mincount': 1, 'label': 'SEARCH.FACET_FIELDS.CREATED'}
+ facetFields: {
+ expanded: true,
+ fields: [
+ {field: 'content.mimetype', mincount: 1, label: 'SEARCH.FACET_FIELDS.TYPE'},
+ {field: 'content.size', mincount: 1, label: 'SEARCH.FACET_FIELDS.SIZE'},
+ {field: 'creator', mincount: 1, label: 'SEARCH.FACET_FIELDS.CREATOR'},
+ {field: 'modifier', mincount: 1, label: 'SEARCH.FACET_FIELDS.MODIFIER'},
+ {field: 'created', mincount: 1, label: 'SEARCH.FACET_FIELDS.CREATED'}
]
},
- 'facetQueries': {
- 'label': 'My facet queries',
- 'pageSize': 5,
- 'queries': [
- {'query': 'created:2018', 'label': '1.Created This Year'},
- {'query': 'content.mimetype:text/html', 'label': '2.Type: HTML'},
- {'query': 'content.size:[0 TO 10240]', 'label': '3.Size: xtra small'},
- {'query': 'content.size:[10240 TO 102400]', 'label': '4.Size: small'},
- {'query': 'content.size:[102400 TO 1048576]', 'label': '5.Size: medium'},
- {'query': 'content.size:[1048576 TO 16777216]', 'label': '6.Size: large'},
- {'query': 'content.size:[16777216 TO 134217728]', 'label': '7.Size: xtra large'},
- {'query': 'content.size:[134217728 TO MAX]', 'label': '8.Size: XX large'}
+ facetQueries: {
+ label: 'My facet queries',
+ pageSize: 5,
+ queries: [
+ {query: 'created:2018', label: '1.Created This Year'},
+ {query: 'content.mimetype:text/html', label: '2.Type: HTML'},
+ {query: 'content.size:[0 TO 10240]', label: '3.Size: xtra small'},
+ {query: 'content.size:[10240 TO 102400]', label: '4.Size: small'},
+ {query: 'content.size:[102400 TO 1048576]', label: '5.Size: medium'},
+ {query: 'content.size:[1048576 TO 16777216]', label: '6.Size: large'},
+ {query: 'content.size:[16777216 TO 134217728]', label: '7.Size: xtra large'},
+ {query: 'content.size:[134217728 TO MAX]', label: '8.Size: XX large'}
]
},
- 'categories': [
+ categories: [
{
- 'id': 'queryName',
- 'name': 'Name',
- 'enabled': true,
- 'expanded': true,
- 'component': {
- 'selector': 'text',
- 'settings': {
- 'pattern': "cm:name:'(.*?)'",
- 'field': 'cm:name',
- 'placeholder': 'Enter the name'
+ id: 'queryName',
+ name: 'Name',
+ enabled: true,
+ expanded: true,
+ component: {
+ selector: 'text',
+ settings: {
+ pattern: 'cm:name:\'(.*?)\'',
+ field: 'cm:name',
+ placeholder: 'Enter the name'
}
}
},
{
- 'id': 'checkList',
- 'name': 'Check List',
- 'enabled': true,
- 'component': {
- 'selector': 'check-list',
- 'settings': {
- 'pageSize': 5,
- 'operator': 'OR',
- 'options': [
- {'name': 'Folder', 'value': "TYPE:'cm:folder'"},
- {'name': 'Document', 'value': "TYPE:'cm:content'"}
+ id: 'checkList',
+ name: 'Check List',
+ enabled: true,
+ component: {
+ selector: 'check-list',
+ settings: {
+ pageSize: 5,
+ operator: 'OR',
+ options: [
+ {name: 'Folder', value: 'TYPE:\'cm:folder\''},
+ {name: 'Document', value: 'TYPE:\'cm:content\''}
]
}
}
},
{
- 'id': 'contentSize',
- 'name': 'Content Size',
- 'enabled': true,
- 'component': {
- 'selector': 'slider',
- 'settings': {
- 'field': 'cm:content.size',
- 'min': 0,
- 'max': 18,
- 'step': 1,
- 'thumbLabel': true
+ id: 'contentSize',
+ name: 'Content Size',
+ enabled: true,
+ component: {
+ selector: 'slider',
+ settings: {
+ field: 'cm:content.size',
+ min: 0,
+ max: 18,
+ step: 1,
+ thumbLabel: true
}
}
},
{
- 'id': 'contentSizeRange',
- 'name': 'Content Size (range)',
- 'enabled': true,
- 'component': {
- 'selector': 'number-range',
- 'settings': {
- 'field': 'cm:content.size',
- 'format': '[{FROM} TO {TO}]'
+ id: 'contentSizeRange',
+ name: 'Content Size (range)',
+ enabled: true,
+ component: {
+ selector: 'number-range',
+ settings: {
+ field: 'cm:content.size',
+ format: '[{FROM} TO {TO}]'
}
}
},
{
- 'id': 'createdDateRange',
- 'name': 'Created Date (range)',
- 'enabled': true,
- 'component': {
- 'selector': 'date-range',
- 'settings': {
- 'field': 'cm:created',
- 'dateFormat': 'DD-MMM-YY'
+ id: 'createdDateRange',
+ name: 'Created Date (range)',
+ enabled: true,
+ component: {
+ selector: 'date-range',
+ settings: {
+ field: 'cm:created',
+ dateFormat: 'DD-MMM-YY'
}
}
},
{
- 'id': 'queryType',
- 'name': 'Type',
- 'enabled': true,
- 'component': {
- 'selector': 'radio',
- 'settings': {
- 'field': null,
- 'pageSize': 5,
- 'options': [
- {'name': 'APP.SEARCH.RADIO.NONE', 'value': '', 'default': true},
- {'name': 'APP.SEARCH.RADIO.ALL', 'value': "TYPE:'cm:folder' OR TYPE:'cm:content'"},
- {'name': 'APP.SEARCH.RADIO.FOLDER', 'value': "TYPE:'cm:folder'"},
- {'name': 'APP.SEARCH.RADIO.DOCUMENT', 'value': "TYPE:'cm:content'"}
+ id: 'queryType',
+ name: 'Type',
+ enabled: true,
+ component: {
+ selector: 'radio',
+ settings: {
+ field: null,
+ pageSize: 5,
+ options: [
+ {name: 'APP.SEARCH.RADIO.NONE', value: '', default: true},
+ {name: 'APP.SEARCH.RADIO.ALL', value: 'TYPE:\'cm:folder\' OR TYPE:\'cm:content\''},
+ {name: 'APP.SEARCH.RADIO.FOLDER', value: 'TYPE:\'cm:folder\''},
+ {name: 'APP.SEARCH.RADIO.DOCUMENT', value: 'TYPE:\'cm:content\''}
]
}
}
}
],
- 'highlight': {
- 'prefix': '¿',
- 'postfix': '?',
- 'mergeContiguous': true,
- 'fields': [
+ highlight: {
+ prefix: '¿',
+ postfix: '?',
+ mergeContiguous: true,
+ fields: [
{
- 'field': 'cm:title'
+ field: 'cm:title'
},
{
- 'field': 'description',
- 'prefix': '(',
- 'postfix': ')'
+ field: 'description',
+ prefix: '(',
+ postfix: ')'
}
]
}
diff --git a/e2e/util/constants.js b/e2e/util/constants.js
index dc3aab3fcb..54d49be831 100644
--- a/e2e/util/constants.js
+++ b/e2e/util/constants.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/e2e/util/resources.js b/e2e/util/resources.js
index d9ab62c6a4..af1491947e 100644
--- a/e2e/util/resources.js
+++ b/e2e/util/resources.js
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/.eslintrc.json b/lib/cli/.eslintrc.json
index ee4acdc5ef..4da9581335 100644
--- a/lib/cli/.eslintrc.json
+++ b/lib/cli/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*", "dist", "node_modules"],
"overrides": [
{
diff --git a/lib/cli/package.json b/lib/cli/package.json
index 8b25cc67cf..e28a3ad38d 100644
--- a/lib/cli/package.json
+++ b/lib/cli/package.json
@@ -2,7 +2,7 @@
"name": "@alfresco/adf-cli",
"description": "Alfresco ADF cli and utils",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"bin": {
"adf-cli": "./bin/adf-cli",
"adf": "./bin/adf-cli"
diff --git a/lib/cli/scripts/artifact-from-s3.ts b/lib/cli/scripts/artifact-from-s3.ts
index 1f338f3a23..89a75ea056 100644
--- a/lib/cli/scripts/artifact-from-s3.ts
+++ b/lib/cli/scripts/artifact-from-s3.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/artifact-to-s3.ts b/lib/cli/scripts/artifact-to-s3.ts
index c33b1c6013..0cd08b97f9 100644
--- a/lib/cli/scripts/artifact-to-s3.ts
+++ b/lib/cli/scripts/artifact-to-s3.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/audit.ts b/lib/cli/scripts/audit.ts
index bfa4164bad..8127ffba64 100644
--- a/lib/cli/scripts/audit.ts
+++ b/lib/cli/scripts/audit.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/changelog.ts b/lib/cli/scripts/changelog.ts
index c14f11f015..2dff31ddf2 100644
--- a/lib/cli/scripts/changelog.ts
+++ b/lib/cli/scripts/changelog.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/check-plugin-env.ts b/lib/cli/scripts/check-plugin-env.ts
index 6032a8fbd1..f930fe8247 100644
--- a/lib/cli/scripts/check-plugin-env.ts
+++ b/lib/cli/scripts/check-plugin-env.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/docker-publish.ts b/lib/cli/scripts/docker-publish.ts
index 06fa072bb7..a007c1ca6f 100644
--- a/lib/cli/scripts/docker-publish.ts
+++ b/lib/cli/scripts/docker-publish.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/docker.ts b/lib/cli/scripts/docker.ts
index 93047e1e54..da1913b254 100644
--- a/lib/cli/scripts/docker.ts
+++ b/lib/cli/scripts/docker.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/exec.ts b/lib/cli/scripts/exec.ts
index 617c720471..5834886c8b 100644
--- a/lib/cli/scripts/exec.ts
+++ b/lib/cli/scripts/exec.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/init-aae-env.ts b/lib/cli/scripts/init-aae-env.ts
index d37ad023fe..a98a493532 100644
--- a/lib/cli/scripts/init-aae-env.ts
+++ b/lib/cli/scripts/init-aae-env.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/init-acs-env.ts b/lib/cli/scripts/init-acs-env.ts
index 5eaa362ba1..809049a536 100755
--- a/lib/cli/scripts/init-acs-env.ts
+++ b/lib/cli/scripts/init-acs-env.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/init-aps-env.ts b/lib/cli/scripts/init-aps-env.ts
index 3c0616686f..b492e1154c 100755
--- a/lib/cli/scripts/init-aps-env.ts
+++ b/lib/cli/scripts/init-aps-env.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/kube-utils.ts b/lib/cli/scripts/kube-utils.ts
index df970e75f5..5f1138a57f 100644
--- a/lib/cli/scripts/kube-utils.ts
+++ b/lib/cli/scripts/kube-utils.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/kubectl-clean-app.ts b/lib/cli/scripts/kubectl-clean-app.ts
index 83cccaf13b..f5178ea1ef 100644
--- a/lib/cli/scripts/kubectl-clean-app.ts
+++ b/lib/cli/scripts/kubectl-clean-app.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/kubectl-delete.ts b/lib/cli/scripts/kubectl-delete.ts
index b3d897bc12..d21306d759 100644
--- a/lib/cli/scripts/kubectl-delete.ts
+++ b/lib/cli/scripts/kubectl-delete.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/kubectl-image.ts b/lib/cli/scripts/kubectl-image.ts
index c84d42d1c6..063b22a88c 100644
--- a/lib/cli/scripts/kubectl-image.ts
+++ b/lib/cli/scripts/kubectl-image.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/licenses.ts b/lib/cli/scripts/licenses.ts
index bd318ab7fe..195d8673f7 100644
--- a/lib/cli/scripts/licenses.ts
+++ b/lib/cli/scripts/licenses.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/logger.ts b/lib/cli/scripts/logger.ts
index ff7b8c0d76..be6b18b121 100644
--- a/lib/cli/scripts/logger.ts
+++ b/lib/cli/scripts/logger.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/npm-publish.ts b/lib/cli/scripts/npm-publish.ts
index a86467dcae..d3748a70c5 100644
--- a/lib/cli/scripts/npm-publish.ts
+++ b/lib/cli/scripts/npm-publish.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/check-env.ts b/lib/cli/scripts/plugins/check-env.ts
index 0b57d5befb..be0d6b14dd 100644
--- a/lib/cli/scripts/plugins/check-env.ts
+++ b/lib/cli/scripts/plugins/check-env.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/governance-check-plugin.ts b/lib/cli/scripts/plugins/governance-check-plugin.ts
index 7414dc8c47..9fa4bb393a 100644
--- a/lib/cli/scripts/plugins/governance-check-plugin.ts
+++ b/lib/cli/scripts/plugins/governance-check-plugin.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/governance-health.ts b/lib/cli/scripts/plugins/governance-health.ts
index 59b94248c8..1df6ab2f4c 100644
--- a/lib/cli/scripts/plugins/governance-health.ts
+++ b/lib/cli/scripts/plugins/governance-health.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/plugin-config.ts b/lib/cli/scripts/plugins/plugin-config.ts
index 1c04d20b8a..97507ff27f 100644
--- a/lib/cli/scripts/plugins/plugin-config.ts
+++ b/lib/cli/scripts/plugins/plugin-config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/plugin-model.ts b/lib/cli/scripts/plugins/plugin-model.ts
index 9228c7f4ec..3401b66e7d 100644
--- a/lib/cli/scripts/plugins/plugin-model.ts
+++ b/lib/cli/scripts/plugins/plugin-model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/process-automation-check-plugin.ts b/lib/cli/scripts/plugins/process-automation-check-plugin.ts
index 410ed8a1fd..eae05e0aef 100644
--- a/lib/cli/scripts/plugins/process-automation-check-plugin.ts
+++ b/lib/cli/scripts/plugins/process-automation-check-plugin.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/process-automation-health.ts b/lib/cli/scripts/plugins/process-automation-health.ts
index a17ca41de5..1de1268f14 100644
--- a/lib/cli/scripts/plugins/process-automation-health.ts
+++ b/lib/cli/scripts/plugins/process-automation-health.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/process-service-check-plugin.ts b/lib/cli/scripts/plugins/process-service-check-plugin.ts
index a1eda8e4ae..9e6fa4f6f7 100644
--- a/lib/cli/scripts/plugins/process-service-check-plugin.ts
+++ b/lib/cli/scripts/plugins/process-service-check-plugin.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/plugins/process-services-health.ts b/lib/cli/scripts/plugins/process-services-health.ts
index 9bccf4a696..015592c577 100644
--- a/lib/cli/scripts/plugins/process-services-health.ts
+++ b/lib/cli/scripts/plugins/process-services-health.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/resources.ts b/lib/cli/scripts/resources.ts
index 6e4ce7cc55..1a045ae23c 100644
--- a/lib/cli/scripts/resources.ts
+++ b/lib/cli/scripts/resources.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/scan-env.ts b/lib/cli/scripts/scan-env.ts
index 7e6a62dc10..7c525b4f29 100644
--- a/lib/cli/scripts/scan-env.ts
+++ b/lib/cli/scripts/scan-env.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/update-commit-sha.ts b/lib/cli/scripts/update-commit-sha.ts
index f30439f763..ef56dfa460 100644
--- a/lib/cli/scripts/update-commit-sha.ts
+++ b/lib/cli/scripts/update-commit-sha.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/scripts/update-version.ts b/lib/cli/scripts/update-version.ts
index 38e66211ae..dfbc4ef46a 100644
--- a/lib/cli/scripts/update-version.ts
+++ b/lib/cli/scripts/update-version.ts
@@ -2,7 +2,7 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/tooling/dotenv.ts b/lib/cli/tooling/dotenv.ts
index a4c18d9954..e68ad13f94 100644
--- a/lib/cli/tooling/dotenv.ts
+++ b/lib/cli/tooling/dotenv.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/cli/tooling/index.ts b/lib/cli/tooling/index.ts
index 36fed5c9c6..27676d7431 100644
--- a/lib/cli/tooling/index.ts
+++ b/lib/cli/tooling/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/.eslintrc.json b/lib/content-services/.eslintrc.json
index fdffba85db..cb79d4ffce 100644
--- a/lib/content-services/.eslintrc.json
+++ b/lib/content-services/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
diff --git a/lib/content-services/index.ts b/lib/content-services/index.ts
index eb9b46c8bc..7d18c6831c 100644
--- a/lib/content-services/index.ts
+++ b/lib/content-services/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/package.json b/lib/content-services/package.json
index 412e33ee34..1f92f9e35d 100644
--- a/lib/content-services/package.json
+++ b/lib/content-services/package.json
@@ -2,7 +2,7 @@
"name": "@alfresco/adf-content-services",
"description": "Alfresco ADF content services",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/lib/content-services/src/lib/aspect-list/aspect-list-dialog-data.interface.ts b/lib/content-services/src/lib/aspect-list/aspect-list-dialog-data.interface.ts
index a11cc55355..860128c9af 100644
--- a/lib/content-services/src/lib/aspect-list/aspect-list-dialog-data.interface.ts
+++ b/lib/content-services/src/lib/aspect-list/aspect-list-dialog-data.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.spec.ts b/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.spec.ts
index 202183d670..b905248ae9 100644
--- a/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.spec.ts
+++ b/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.ts b/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.ts
index aea5423999..8a3672e209 100644
--- a/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.ts
+++ b/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/aspect-list.component.spec.ts b/lib/content-services/src/lib/aspect-list/aspect-list.component.spec.ts
index c3344cee95..d687f047b6 100644
--- a/lib/content-services/src/lib/aspect-list/aspect-list.component.spec.ts
+++ b/lib/content-services/src/lib/aspect-list/aspect-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/aspect-list.component.ts b/lib/content-services/src/lib/aspect-list/aspect-list.component.ts
index 5d79083721..7251ca799b 100644
--- a/lib/content-services/src/lib/aspect-list/aspect-list.component.ts
+++ b/lib/content-services/src/lib/aspect-list/aspect-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/aspect-list.module.ts b/lib/content-services/src/lib/aspect-list/aspect-list.module.ts
index 813cc971ec..1022a80645 100644
--- a/lib/content-services/src/lib/aspect-list/aspect-list.module.ts
+++ b/lib/content-services/src/lib/aspect-list/aspect-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/index.ts b/lib/content-services/src/lib/aspect-list/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/aspect-list/index.ts
+++ b/lib/content-services/src/lib/aspect-list/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/public-api.ts b/lib/content-services/src/lib/aspect-list/public-api.ts
index e05b2cc7af..ccb1a248b6 100644
--- a/lib/content-services/src/lib/aspect-list/public-api.ts
+++ b/lib/content-services/src/lib/aspect-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/services/aspect-list.service.ts b/lib/content-services/src/lib/aspect-list/services/aspect-list.service.ts
index 729eeb61f2..8a4cdf35f0 100644
--- a/lib/content-services/src/lib/aspect-list/services/aspect-list.service.ts
+++ b/lib/content-services/src/lib/aspect-list/services/aspect-list.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.spec.ts b/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.spec.ts
index 29383ca9b0..a5d56fe849 100644
--- a/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.spec.ts
+++ b/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.ts b/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.ts
index 24d67f7dd6..13ad6ba951 100644
--- a/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.ts
+++ b/lib/content-services/src/lib/aspect-list/services/dialog-aspect-list.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/services/node-aspect.service.spec.ts b/lib/content-services/src/lib/aspect-list/services/node-aspect.service.spec.ts
index 0b855f5257..2009c306f0 100644
--- a/lib/content-services/src/lib/aspect-list/services/node-aspect.service.spec.ts
+++ b/lib/content-services/src/lib/aspect-list/services/node-aspect.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/aspect-list/services/node-aspect.service.ts b/lib/content-services/src/lib/aspect-list/services/node-aspect.service.ts
index 3dbe34767d..6feaf39d9c 100644
--- a/lib/content-services/src/lib/aspect-list/services/node-aspect.service.ts
+++ b/lib/content-services/src/lib/aspect-list/services/node-aspect.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/audit/audit.service.spec.ts b/lib/content-services/src/lib/audit/audit.service.spec.ts
index e1060891d7..21e8f9ee4c 100644
--- a/lib/content-services/src/lib/audit/audit.service.spec.ts
+++ b/lib/content-services/src/lib/audit/audit.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/audit/audit.service.ts b/lib/content-services/src/lib/audit/audit.service.ts
index 018355584d..49086295d6 100644
--- a/lib/content-services/src/lib/audit/audit.service.ts
+++ b/lib/content-services/src/lib/audit/audit.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/breadcrumb.component.spec.ts b/lib/content-services/src/lib/breadcrumb/breadcrumb.component.spec.ts
index b660dbbfff..73456d490f 100644
--- a/lib/content-services/src/lib/breadcrumb/breadcrumb.component.spec.ts
+++ b/lib/content-services/src/lib/breadcrumb/breadcrumb.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/breadcrumb.component.ts b/lib/content-services/src/lib/breadcrumb/breadcrumb.component.ts
index f68274fdeb..29cda33424 100644
--- a/lib/content-services/src/lib/breadcrumb/breadcrumb.component.ts
+++ b/lib/content-services/src/lib/breadcrumb/breadcrumb.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/breadcrumb.module.ts b/lib/content-services/src/lib/breadcrumb/breadcrumb.module.ts
index 0c43d8751b..d6056f5a82 100644
--- a/lib/content-services/src/lib/breadcrumb/breadcrumb.module.ts
+++ b/lib/content-services/src/lib/breadcrumb/breadcrumb.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.spec.ts b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.spec.ts
index adf6ffad05..9bb1d6210f 100644
--- a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.spec.ts
+++ b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.ts b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.ts
index 34ff12beaf..8b52e8db6b 100644
--- a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.ts
+++ b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/index.ts b/lib/content-services/src/lib/breadcrumb/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/breadcrumb/index.ts
+++ b/lib/content-services/src/lib/breadcrumb/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/navigable-component.interface.ts b/lib/content-services/src/lib/breadcrumb/navigable-component.interface.ts
index 1afa778c38..d1eda45b39 100644
--- a/lib/content-services/src/lib/breadcrumb/navigable-component.interface.ts
+++ b/lib/content-services/src/lib/breadcrumb/navigable-component.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/breadcrumb/public-api.ts b/lib/content-services/src/lib/breadcrumb/public-api.ts
index d8561358cd..fb2941af43 100644
--- a/lib/content-services/src/lib/breadcrumb/public-api.ts
+++ b/lib/content-services/src/lib/breadcrumb/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/index.ts b/lib/content-services/src/lib/category/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/category/index.ts
+++ b/lib/content-services/src/lib/category/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/mock/category-mock.service.ts b/lib/content-services/src/lib/category/mock/category-mock.service.ts
index c78a1619d0..9644ad6b67 100644
--- a/lib/content-services/src/lib/category/mock/category-mock.service.ts
+++ b/lib/content-services/src/lib/category/mock/category-mock.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/models/category-node.interface.ts b/lib/content-services/src/lib/category/models/category-node.interface.ts
index c681c3f520..f6185e80ed 100644
--- a/lib/content-services/src/lib/category/models/category-node.interface.ts
+++ b/lib/content-services/src/lib/category/models/category-node.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/public-api.ts b/lib/content-services/src/lib/category/public-api.ts
index 593e34355a..ab9ef141fc 100644
--- a/lib/content-services/src/lib/category/public-api.ts
+++ b/lib/content-services/src/lib/category/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/services/category-tree-datasource.service.spec.ts b/lib/content-services/src/lib/category/services/category-tree-datasource.service.spec.ts
index 289c8f973d..424fd277ae 100644
--- a/lib/content-services/src/lib/category/services/category-tree-datasource.service.spec.ts
+++ b/lib/content-services/src/lib/category/services/category-tree-datasource.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/services/category-tree-datasource.service.ts b/lib/content-services/src/lib/category/services/category-tree-datasource.service.ts
index 031e2e09da..a15c18af07 100644
--- a/lib/content-services/src/lib/category/services/category-tree-datasource.service.ts
+++ b/lib/content-services/src/lib/category/services/category-tree-datasource.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/services/category.service.spec.ts b/lib/content-services/src/lib/category/services/category.service.spec.ts
index a3d3631151..78eb6380e2 100644
--- a/lib/content-services/src/lib/category/services/category.service.spec.ts
+++ b/lib/content-services/src/lib/category/services/category.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/category/services/category.service.ts b/lib/content-services/src/lib/category/services/category.service.ts
index 1a4ffc7cd0..855a378b8a 100644
--- a/lib/content-services/src/lib/category/services/category.service.ts
+++ b/lib/content-services/src/lib/category/services/category.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/events/file.event.ts b/lib/content-services/src/lib/common/events/file.event.ts
index 5aaddce8b2..2d44a15353 100644
--- a/lib/content-services/src/lib/common/events/file.event.ts
+++ b/lib/content-services/src/lib/common/events/file.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/index.ts b/lib/content-services/src/lib/common/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/common/index.ts
+++ b/lib/content-services/src/lib/common/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/interfaces/search-configuration.interface.ts b/lib/content-services/src/lib/common/interfaces/search-configuration.interface.ts
index 9fafca3803..728e51a74a 100644
--- a/lib/content-services/src/lib/common/interfaces/search-configuration.interface.ts
+++ b/lib/content-services/src/lib/common/interfaces/search-configuration.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/mocks/ecm-user.service.mock.ts b/lib/content-services/src/lib/common/mocks/ecm-user.service.mock.ts
index 689916bdf2..1ce65822e4 100644
--- a/lib/content-services/src/lib/common/mocks/ecm-user.service.mock.ts
+++ b/lib/content-services/src/lib/common/mocks/ecm-user.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/models/allowable-operations.enum.ts b/lib/content-services/src/lib/common/models/allowable-operations.enum.ts
index 0421d497eb..8ef5e8b924 100644
--- a/lib/content-services/src/lib/common/models/allowable-operations.enum.ts
+++ b/lib/content-services/src/lib/common/models/allowable-operations.enum.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/models/ecm-company.model.ts b/lib/content-services/src/lib/common/models/ecm-company.model.ts
index 1af6521526..030efa19da 100644
--- a/lib/content-services/src/lib/common/models/ecm-company.model.ts
+++ b/lib/content-services/src/lib/common/models/ecm-company.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/models/ecm-user.model.ts b/lib/content-services/src/lib/common/models/ecm-user.model.ts
index ce2c27a2b5..4e44b5c0c8 100644
--- a/lib/content-services/src/lib/common/models/ecm-user.model.ts
+++ b/lib/content-services/src/lib/common/models/ecm-user.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/models/file.model.spec.ts b/lib/content-services/src/lib/common/models/file.model.spec.ts
index 1a95c6306b..f443a0a4a8 100644
--- a/lib/content-services/src/lib/common/models/file.model.spec.ts
+++ b/lib/content-services/src/lib/common/models/file.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/models/file.model.ts b/lib/content-services/src/lib/common/models/file.model.ts
index df55ae1886..82e743040a 100644
--- a/lib/content-services/src/lib/common/models/file.model.ts
+++ b/lib/content-services/src/lib/common/models/file.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/models/node-metadata.model.ts b/lib/content-services/src/lib/common/models/node-metadata.model.ts
index e00ef7a3ad..4aed0be5df 100644
--- a/lib/content-services/src/lib/common/models/node-metadata.model.ts
+++ b/lib/content-services/src/lib/common/models/node-metadata.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/models/permissions.enum.ts b/lib/content-services/src/lib/common/models/permissions.enum.ts
index 6144997727..51d496fbdb 100644
--- a/lib/content-services/src/lib/common/models/permissions.enum.ts
+++ b/lib/content-services/src/lib/common/models/permissions.enum.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/public-api.ts b/lib/content-services/src/lib/common/public-api.ts
index a65510b1c7..b1e123e7db 100644
--- a/lib/content-services/src/lib/common/public-api.ts
+++ b/lib/content-services/src/lib/common/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/card-view-content-update.service.spec.ts b/lib/content-services/src/lib/common/services/card-view-content-update.service.spec.ts
index 1e6bf13a83..6aef94a07d 100644
--- a/lib/content-services/src/lib/common/services/card-view-content-update.service.spec.ts
+++ b/lib/content-services/src/lib/common/services/card-view-content-update.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/card-view-content-update.service.ts b/lib/content-services/src/lib/common/services/card-view-content-update.service.ts
index 4c052ddf8a..6f52de3f42 100644
--- a/lib/content-services/src/lib/common/services/card-view-content-update.service.ts
+++ b/lib/content-services/src/lib/common/services/card-view-content-update.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/content.service.spec.ts b/lib/content-services/src/lib/common/services/content.service.spec.ts
index 4e6ef177ad..6ccf428e98 100644
--- a/lib/content-services/src/lib/common/services/content.service.spec.ts
+++ b/lib/content-services/src/lib/common/services/content.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/content.service.ts b/lib/content-services/src/lib/common/services/content.service.ts
index 1ee74766f1..b52cd451f1 100644
--- a/lib/content-services/src/lib/common/services/content.service.ts
+++ b/lib/content-services/src/lib/common/services/content.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/discovery-api.service.ts b/lib/content-services/src/lib/common/services/discovery-api.service.ts
index 07695ca06d..0e082007f3 100644
--- a/lib/content-services/src/lib/common/services/discovery-api.service.ts
+++ b/lib/content-services/src/lib/common/services/discovery-api.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/favorites-api.service.ts b/lib/content-services/src/lib/common/services/favorites-api.service.ts
index d9a2dc1538..82f4c25f6b 100644
--- a/lib/content-services/src/lib/common/services/favorites-api.service.ts
+++ b/lib/content-services/src/lib/common/services/favorites-api.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/nodes-api.service.ts b/lib/content-services/src/lib/common/services/nodes-api.service.ts
index 70283c554f..5bd3cc0130 100644
--- a/lib/content-services/src/lib/common/services/nodes-api.service.ts
+++ b/lib/content-services/src/lib/common/services/nodes-api.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/people-content.service.spec.ts b/lib/content-services/src/lib/common/services/people-content.service.spec.ts
index b1fb567e94..7b50364e24 100644
--- a/lib/content-services/src/lib/common/services/people-content.service.spec.ts
+++ b/lib/content-services/src/lib/common/services/people-content.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/people-content.service.ts b/lib/content-services/src/lib/common/services/people-content.service.ts
index 21fc2256d5..2477115a24 100644
--- a/lib/content-services/src/lib/common/services/people-content.service.ts
+++ b/lib/content-services/src/lib/common/services/people-content.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/rendition.service.ts b/lib/content-services/src/lib/common/services/rendition.service.ts
index 0ccd2b183b..d0dbc0a6c5 100644
--- a/lib/content-services/src/lib/common/services/rendition.service.ts
+++ b/lib/content-services/src/lib/common/services/rendition.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -155,9 +155,9 @@ export class RenditionService {
const mimeType: string = rendition.entry.content.mimeType;
if (status === 'NOT_CREATED') {
- return {url: await this.requestCreateRendition(nodeId, renditionId, versionId), mimeType:mimeType};
+ return {url: await this.requestCreateRendition(nodeId, renditionId, versionId), mimeType};
} else {
- return {url: await this.handleNodeRendition(nodeId, renditionId, versionId), mimeType:mimeType};
+ return {url: await this.handleNodeRendition(nodeId, renditionId, versionId), mimeType};
}
}
diff --git a/lib/content-services/src/lib/common/services/sites.service.spec.ts b/lib/content-services/src/lib/common/services/sites.service.spec.ts
index 44a8e89142..cff3313dc6 100644
--- a/lib/content-services/src/lib/common/services/sites.service.spec.ts
+++ b/lib/content-services/src/lib/common/services/sites.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/sites.service.ts b/lib/content-services/src/lib/common/services/sites.service.ts
index b188a782b9..507ac99b5a 100644
--- a/lib/content-services/src/lib/common/services/sites.service.ts
+++ b/lib/content-services/src/lib/common/services/sites.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/upload.service.spec.ts b/lib/content-services/src/lib/common/services/upload.service.spec.ts
index a6ef44119c..40549d5db4 100644
--- a/lib/content-services/src/lib/common/services/upload.service.spec.ts
+++ b/lib/content-services/src/lib/common/services/upload.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/common/services/upload.service.ts b/lib/content-services/src/lib/common/services/upload.service.ts
index 0d48ebe3ea..864a7bb68a 100644
--- a/lib/content-services/src/lib/common/services/upload.service.ts
+++ b/lib/content-services/src/lib/common/services/upload.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.spec.ts b/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.spec.ts
index 98477f1005..f0d6eda959 100644
--- a/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.ts b/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.ts
index c37e0f916c..81d1a25680 100644
--- a/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.ts
+++ b/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.spec.ts b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.spec.ts
index 3aea01bf23..e755548c30 100644
--- a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts
index b439342546..3e71bcb69d 100644
--- a/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts
+++ b/lib/content-services/src/lib/content-metadata/components/content-metadata/content-metadata.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -245,6 +245,7 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
/**
* Register all tags which should be assigned to node. Please note that they are just in "register" state and are not yet saved
* until button for saving data is clicked. Calling that function causes that save button is enabled.
+ *
* @param tags array of tags to register, they are not saved yet until we click save button.
*/
storeTagsToAssign(tags: string[]) {
diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata/mock-data.ts b/lib/content-services/src/lib/content-metadata/components/content-metadata/mock-data.ts
index 7d72573644..dbc4a45f21 100644
--- a/lib/content-services/src/lib/content-metadata/components/content-metadata/mock-data.ts
+++ b/lib/content-services/src/lib/content-metadata/components/content-metadata/mock-data.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/content-metadata.module.ts b/lib/content-services/src/lib/content-metadata/content-metadata.module.ts
index 632d5589bd..527e42682f 100644
--- a/lib/content-services/src/lib/content-metadata/content-metadata.module.ts
+++ b/lib/content-services/src/lib/content-metadata/content-metadata.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/index.ts b/lib/content-services/src/lib/content-metadata/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/content-metadata/index.ts
+++ b/lib/content-services/src/lib/content-metadata/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/aspect-oriented-config.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/aspect-oriented-config.interface.ts
index b8a70eaef6..27070afa07 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/aspect-oriented-config.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/aspect-oriented-config.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/card-view-group.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/card-view-group.interface.ts
index 02c9957e51..48c22f4f5e 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/card-view-group.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/card-view-group.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/content-metadata-config.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/content-metadata-config.interface.ts
index 230c301120..e72614ecf6 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/content-metadata-config.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/content-metadata-config.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/content-metadata.interfaces.ts b/lib/content-services/src/lib/content-metadata/interfaces/content-metadata.interfaces.ts
index 6a717fa0c0..76c2b81bc1 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/content-metadata.interfaces.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/content-metadata.interfaces.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/indifferent-config.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/indifferent-config.interface.ts
index 7484d93a25..f1944f12c0 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/indifferent-config.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/indifferent-config.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/layout-oriented-config.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/layout-oriented-config.interface.ts
index 9651ca98a3..5ebebdff36 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/layout-oriented-config.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/layout-oriented-config.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/organised-property-group.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/organised-property-group.interface.ts
index 3c0618422e..adb9a2ce19 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/organised-property-group.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/organised-property-group.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/preset-config.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/preset-config.interface.ts
index 6e88cdb043..1922f9272b 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/preset-config.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/preset-config.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/property-group.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/property-group.interface.ts
index 0e8670903a..315f277818 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/property-group.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/property-group.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/interfaces/property.interface.ts b/lib/content-services/src/lib/content-metadata/interfaces/property.interface.ts
index a59afef480..1b23ff81d8 100644
--- a/lib/content-services/src/lib/content-metadata/interfaces/property.interface.ts
+++ b/lib/content-services/src/lib/content-metadata/interfaces/property.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/public-api.ts b/lib/content-services/src/lib/content-metadata/public-api.ts
index a1696c12b9..6ad88e9f2a 100644
--- a/lib/content-services/src/lib/content-metadata/public-api.ts
+++ b/lib/content-services/src/lib/content-metadata/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/basic-properties.service.ts b/lib/content-services/src/lib/content-metadata/services/basic-properties.service.ts
index 860c5bfe3a..f62fb4fe9e 100644
--- a/lib/content-services/src/lib/content-metadata/services/basic-properties.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/basic-properties.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.spec.ts b/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.spec.ts
index 59f8ab69e4..4add609dd8 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.ts b/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.ts
index 034d02b59a..6db639fcc3 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/aspect-oriented-config.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.spec.ts b/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.spec.ts
index 73a1b60873..e4f7efa6ee 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.ts b/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.ts
index 270407f258..1f036a51b5 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/content-metadata-config.factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/indifferent-config.service.ts b/lib/content-services/src/lib/content-metadata/services/config/indifferent-config.service.ts
index ff007140cf..9638544445 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/indifferent-config.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/indifferent-config.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.spec.ts b/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.spec.ts
index 9bfe79f64f..9fe71e9e54 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.ts b/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.ts
index 8e15b8823f..244053f265 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/layout-oriented-config.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/config/property-group-reader.ts b/lib/content-services/src/lib/content-metadata/services/config/property-group-reader.ts
index 8d3407cb53..2f7c13898f 100644
--- a/lib/content-services/src/lib/content-metadata/services/config/property-group-reader.ts
+++ b/lib/content-services/src/lib/content-metadata/services/config/property-group-reader.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/content-metadata.service.spec.ts b/lib/content-services/src/lib/content-metadata/services/content-metadata.service.spec.ts
index d9842f1fa8..07289811ae 100644
--- a/lib/content-services/src/lib/content-metadata/services/content-metadata.service.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/services/content-metadata.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/content-metadata.service.ts b/lib/content-services/src/lib/content-metadata/services/content-metadata.service.ts
index 0d58da1960..682b957519 100644
--- a/lib/content-services/src/lib/content-metadata/services/content-metadata.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/content-metadata.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/content-type-property.service.spec.ts b/lib/content-services/src/lib/content-metadata/services/content-type-property.service.spec.ts
index 300cf17a01..f5a03079ae 100644
--- a/lib/content-services/src/lib/content-metadata/services/content-type-property.service.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/services/content-type-property.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/content-type-property.service.ts b/lib/content-services/src/lib/content-metadata/services/content-type-property.service.ts
index fbcdf76fb6..05b27367a0 100644
--- a/lib/content-services/src/lib/content-metadata/services/content-type-property.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/content-type-property.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.spec.ts b/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.spec.ts
index 437ec0d8fe..6259b65246 100644
--- a/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.ts b/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.ts
index 0fba333da6..5af236888d 100644
--- a/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/property-descriptors.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.spec.ts b/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.spec.ts
index 9a1f1bab5e..8ca3abc074 100644
--- a/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.spec.ts
+++ b/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts b/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts
index 84ee93b490..5e48d1d319 100644
--- a/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts
+++ b/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.spec.ts b/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.spec.ts
index 2f1ebdf1d7..8edee7d400 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.spec.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts b/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts
index 1c3ee39d24..77a3fde9ee 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-dialog.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component-search.spec.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component-search.spec.ts
index 83eeab6474..367f5a72cd 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component-search.spec.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component-search.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.spec.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.spec.ts
index 1d43e97037..003d20b5bc 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.spec.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.ts
index 41b6ac2c99..14575eee0c 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.spec.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.spec.ts
index bc18274f0b..5186a5d30b 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.spec.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.ts
index fe56857a9a..9d6f7da988 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector.component-data.interface.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector.component-data.interface.ts
index 318a290825..7566dd1a0c 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector.component-data.interface.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector.component-data.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts
index bc1844cca7..0ad72b154b 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.ts
index 6b01df66b3..e13aec2fab 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector.module.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector.module.ts
index 6795339f8c..718bb7e3ef 100644
--- a/lib/content-services/src/lib/content-node-selector/content-node-selector.module.ts
+++ b/lib/content-services/src/lib/content-node-selector/content-node-selector.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/index.ts b/lib/content-services/src/lib/content-node-selector/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/content-node-selector/index.ts
+++ b/lib/content-services/src/lib/content-node-selector/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.spec.ts b/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.spec.ts
index dbd25a2c6e..744ab9b4bc 100644
--- a/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.spec.ts
+++ b/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.ts b/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.ts
index 2fdc6850a9..04f6f22ef0 100644
--- a/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.ts
+++ b/lib/content-services/src/lib/content-node-selector/name-location-cell/name-location-cell.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-selector/public-api.ts b/lib/content-services/src/lib/content-node-selector/public-api.ts
index a1f0db75cf..67c15c53a8 100644
--- a/lib/content-services/src/lib/content-node-selector/public-api.ts
+++ b/lib/content-services/src/lib/content-node-selector/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts
index c10cc6c07c..2070de62a4 100644
--- a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts
+++ b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts
index 9be2ef65ab..8c75d51ece 100644
--- a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts
+++ b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.directive.spec.ts b/lib/content-services/src/lib/content-node-share/content-node-share.directive.spec.ts
index 581e58aac7..873f42ac44 100644
--- a/lib/content-services/src/lib/content-node-share/content-node-share.directive.spec.ts
+++ b/lib/content-services/src/lib/content-node-share/content-node-share.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.directive.ts b/lib/content-services/src/lib/content-node-share/content-node-share.directive.ts
index 271fbffd37..4528042ade 100644
--- a/lib/content-services/src/lib/content-node-share/content-node-share.directive.ts
+++ b/lib/content-services/src/lib/content-node-share/content-node-share.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.module.ts b/lib/content-services/src/lib/content-node-share/content-node-share.module.ts
index 8140a87007..7a97b24966 100644
--- a/lib/content-services/src/lib/content-node-share/content-node-share.module.ts
+++ b/lib/content-services/src/lib/content-node-share/content-node-share.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.settings.ts b/lib/content-services/src/lib/content-node-share/content-node-share.settings.ts
index 9809a9e132..1b05741dda 100644
--- a/lib/content-services/src/lib/content-node-share/content-node-share.settings.ts
+++ b/lib/content-services/src/lib/content-node-share/content-node-share.settings.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/index.ts b/lib/content-services/src/lib/content-node-share/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/content-node-share/index.ts
+++ b/lib/content-services/src/lib/content-node-share/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/public-api.ts b/lib/content-services/src/lib/content-node-share/public-api.ts
index dd03018adc..1c356286ae 100644
--- a/lib/content-services/src/lib/content-node-share/public-api.ts
+++ b/lib/content-services/src/lib/content-node-share/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-node-share/services/shared-links-api.service.ts b/lib/content-services/src/lib/content-node-share/services/shared-links-api.service.ts
index aa09114572..8663b15263 100644
--- a/lib/content-services/src/lib/content-node-share/services/shared-links-api.service.ts
+++ b/lib/content-services/src/lib/content-node-share/services/shared-links-api.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts b/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts
index d282e991c1..8037fd0e19 100644
--- a/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts
+++ b/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-type/content-type-dialog.component.ts b/lib/content-services/src/lib/content-type/content-type-dialog.component.ts
index e12b970ef6..fa580e9e95 100644
--- a/lib/content-services/src/lib/content-type/content-type-dialog.component.ts
+++ b/lib/content-services/src/lib/content-type/content-type-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-type/content-type-metadata.interface.ts b/lib/content-services/src/lib/content-type/content-type-metadata.interface.ts
index a87e714953..0bdb1b5c95 100644
--- a/lib/content-services/src/lib/content-type/content-type-metadata.interface.ts
+++ b/lib/content-services/src/lib/content-type/content-type-metadata.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-type/content-type.module.ts b/lib/content-services/src/lib/content-type/content-type.module.ts
index 9100443101..9cda52b7dd 100644
--- a/lib/content-services/src/lib/content-type/content-type.module.ts
+++ b/lib/content-services/src/lib/content-type/content-type.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-type/content-type.service.ts b/lib/content-services/src/lib/content-type/content-type.service.ts
index ac9e46ba29..97ab755e86 100644
--- a/lib/content-services/src/lib/content-type/content-type.service.ts
+++ b/lib/content-services/src/lib/content-type/content-type.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-type/index.ts b/lib/content-services/src/lib/content-type/index.ts
index 2e9baa4fdb..58b06c98b8 100644
--- a/lib/content-services/src/lib/content-type/index.ts
+++ b/lib/content-services/src/lib/content-type/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-type/public-api.ts b/lib/content-services/src/lib/content-type/public-api.ts
index afcc926ddc..a72b6b6de1 100644
--- a/lib/content-services/src/lib/content-type/public-api.ts
+++ b/lib/content-services/src/lib/content-type/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-user-info/content-user-info.component.spec.ts b/lib/content-services/src/lib/content-user-info/content-user-info.component.spec.ts
index 969aaa9107..829765830c 100644
--- a/lib/content-services/src/lib/content-user-info/content-user-info.component.spec.ts
+++ b/lib/content-services/src/lib/content-user-info/content-user-info.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-user-info/content-user-info.component.ts b/lib/content-services/src/lib/content-user-info/content-user-info.component.ts
index 5bf1496e87..0f636afa88 100644
--- a/lib/content-services/src/lib/content-user-info/content-user-info.component.ts
+++ b/lib/content-services/src/lib/content-user-info/content-user-info.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-user-info/content-user-info.module.ts b/lib/content-services/src/lib/content-user-info/content-user-info.module.ts
index 0cc0e14bec..f6ef2a642d 100644
--- a/lib/content-services/src/lib/content-user-info/content-user-info.module.ts
+++ b/lib/content-services/src/lib/content-user-info/content-user-info.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-user-info/index.ts b/lib/content-services/src/lib/content-user-info/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/content-user-info/index.ts
+++ b/lib/content-services/src/lib/content-user-info/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content-user-info/public-api.ts b/lib/content-services/src/lib/content-user-info/public-api.ts
index 34c490c67e..1770208362 100644
--- a/lib/content-services/src/lib/content-user-info/public-api.ts
+++ b/lib/content-services/src/lib/content-user-info/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/content.module.ts b/lib/content-services/src/lib/content.module.ts
index a714add5e2..a472ce8e13 100644
--- a/lib/content-services/src/lib/content.module.ts
+++ b/lib/content-services/src/lib/content.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/confirm.dialog.spec.ts b/lib/content-services/src/lib/dialogs/confirm.dialog.spec.ts
index ae82e0ec4d..6bf9a55b5d 100644
--- a/lib/content-services/src/lib/dialogs/confirm.dialog.spec.ts
+++ b/lib/content-services/src/lib/dialogs/confirm.dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/confirm.dialog.ts b/lib/content-services/src/lib/dialogs/confirm.dialog.ts
index 1f5660c2ae..18ef0a5e47 100644
--- a/lib/content-services/src/lib/dialogs/confirm.dialog.ts
+++ b/lib/content-services/src/lib/dialogs/confirm.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/dialog.module.ts b/lib/content-services/src/lib/dialogs/dialog.module.ts
index 420c306147..bab4670689 100644
--- a/lib/content-services/src/lib/dialogs/dialog.module.ts
+++ b/lib/content-services/src/lib/dialogs/dialog.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.module.ts b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.module.ts
index 5ea282d1fe..13e14516e7 100644
--- a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.module.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.spec.ts b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.spec.ts
index 0faa885513..12e10a798e 100755
--- a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.spec.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.component.ts b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.component.ts
index c33c4ff318..813b09ca4f 100644
--- a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.component.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.ts b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.ts
index d228d740a3..3d036332d5 100644
--- a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.ts b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.ts
index 72b2e347da..8b3accd63a 100755
--- a/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/download-zip.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-data.mock.ts b/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-data.mock.ts
index 8a498febd0..584e1695da 100644
--- a/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-data.mock.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-data.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-service.mock.ts b/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-service.mock.ts
index b623b93d15..ae8e110288 100644
--- a/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-service.mock.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/mock/download-zip-service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/download-zip/services/download-zip.service.ts b/lib/content-services/src/lib/dialogs/download-zip/services/download-zip.service.ts
index d850f1aca3..fbdeed077b 100755
--- a/lib/content-services/src/lib/dialogs/download-zip/services/download-zip.service.ts
+++ b/lib/content-services/src/lib/dialogs/download-zip/services/download-zip.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/folder-name.validators.ts b/lib/content-services/src/lib/dialogs/folder-name.validators.ts
index 756690e60c..ca9b58b6db 100644
--- a/lib/content-services/src/lib/dialogs/folder-name.validators.ts
+++ b/lib/content-services/src/lib/dialogs/folder-name.validators.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/folder.dialog.spec.ts b/lib/content-services/src/lib/dialogs/folder.dialog.spec.ts
index c0f104ea95..fe7b64e279 100644
--- a/lib/content-services/src/lib/dialogs/folder.dialog.spec.ts
+++ b/lib/content-services/src/lib/dialogs/folder.dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/folder.dialog.ts b/lib/content-services/src/lib/dialogs/folder.dialog.ts
index ab5e902112..eb9f60375b 100644
--- a/lib/content-services/src/lib/dialogs/folder.dialog.ts
+++ b/lib/content-services/src/lib/dialogs/folder.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/index.ts b/lib/content-services/src/lib/dialogs/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/dialogs/index.ts
+++ b/lib/content-services/src/lib/dialogs/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/library/library.dialog.spec.ts b/lib/content-services/src/lib/dialogs/library/library.dialog.spec.ts
index 572dcbeb32..5d199617e5 100644
--- a/lib/content-services/src/lib/dialogs/library/library.dialog.spec.ts
+++ b/lib/content-services/src/lib/dialogs/library/library.dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/library/library.dialog.ts b/lib/content-services/src/lib/dialogs/library/library.dialog.ts
index b84acf2a3e..8b7f1a3572 100644
--- a/lib/content-services/src/lib/dialogs/library/library.dialog.ts
+++ b/lib/content-services/src/lib/dialogs/library/library.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/node-lock.dialog.spec.ts b/lib/content-services/src/lib/dialogs/node-lock.dialog.spec.ts
index 249f8a663e..e50355271d 100644
--- a/lib/content-services/src/lib/dialogs/node-lock.dialog.spec.ts
+++ b/lib/content-services/src/lib/dialogs/node-lock.dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/node-lock.dialog.ts b/lib/content-services/src/lib/dialogs/node-lock.dialog.ts
index 16b8f9be73..6daafec255 100644
--- a/lib/content-services/src/lib/dialogs/node-lock.dialog.ts
+++ b/lib/content-services/src/lib/dialogs/node-lock.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/dialogs/public-api.ts b/lib/content-services/src/lib/dialogs/public-api.ts
index bfe00981de..2e3414ab0a 100644
--- a/lib/content-services/src/lib/dialogs/public-api.ts
+++ b/lib/content-services/src/lib/dialogs/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/auto-focus.directive.spec.ts b/lib/content-services/src/lib/directives/auto-focus.directive.spec.ts
index 1b17b06298..8a6e68f38f 100644
--- a/lib/content-services/src/lib/directives/auto-focus.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/auto-focus.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/auto-focus.directive.ts b/lib/content-services/src/lib/directives/auto-focus.directive.ts
index 8bc7a00eb1..1fae3b12ed 100644
--- a/lib/content-services/src/lib/directives/auto-focus.directive.ts
+++ b/lib/content-services/src/lib/directives/auto-focus.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/check-allowable-operation.directive.spec.ts b/lib/content-services/src/lib/directives/check-allowable-operation.directive.spec.ts
index 599c169eb8..e6ea4bc4f6 100644
--- a/lib/content-services/src/lib/directives/check-allowable-operation.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/check-allowable-operation.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/check-allowable-operation.directive.ts b/lib/content-services/src/lib/directives/check-allowable-operation.directive.ts
index af04ae3a6c..7381a0d2c8 100644
--- a/lib/content-services/src/lib/directives/check-allowable-operation.directive.ts
+++ b/lib/content-services/src/lib/directives/check-allowable-operation.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/content-directive.module.ts b/lib/content-services/src/lib/directives/content-directive.module.ts
index 7fb08499c7..0680c2a2b6 100644
--- a/lib/content-services/src/lib/directives/content-directive.module.ts
+++ b/lib/content-services/src/lib/directives/content-directive.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/index.ts b/lib/content-services/src/lib/directives/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/directives/index.ts
+++ b/lib/content-services/src/lib/directives/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/library-favorite.directive.spec.ts b/lib/content-services/src/lib/directives/library-favorite.directive.spec.ts
index 6b9f1ad6cb..06a6553d75 100644
--- a/lib/content-services/src/lib/directives/library-favorite.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/library-favorite.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/library-favorite.directive.ts b/lib/content-services/src/lib/directives/library-favorite.directive.ts
index 410c021e22..358246d36c 100644
--- a/lib/content-services/src/lib/directives/library-favorite.directive.ts
+++ b/lib/content-services/src/lib/directives/library-favorite.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/library-membership.directive.spec.ts b/lib/content-services/src/lib/directives/library-membership.directive.spec.ts
index 611cb988ee..f8ecb99ca1 100644
--- a/lib/content-services/src/lib/directives/library-membership.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/library-membership.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/library-membership.directive.ts b/lib/content-services/src/lib/directives/library-membership.directive.ts
index 98c893ecde..af9ae723e8 100644
--- a/lib/content-services/src/lib/directives/library-membership.directive.ts
+++ b/lib/content-services/src/lib/directives/library-membership.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-counter.directive.spec.ts b/lib/content-services/src/lib/directives/node-counter.directive.spec.ts
index 04bb071a9b..0f8827e592 100644
--- a/lib/content-services/src/lib/directives/node-counter.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/node-counter.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-counter.directive.ts b/lib/content-services/src/lib/directives/node-counter.directive.ts
index e1aecc1d16..7eb08a0b07 100644
--- a/lib/content-services/src/lib/directives/node-counter.directive.ts
+++ b/lib/content-services/src/lib/directives/node-counter.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-delete.directive.spec.ts b/lib/content-services/src/lib/directives/node-delete.directive.spec.ts
index bc4b37fc8f..43308b83fc 100644
--- a/lib/content-services/src/lib/directives/node-delete.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/node-delete.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-delete.directive.ts b/lib/content-services/src/lib/directives/node-delete.directive.ts
index 00781a534a..2c4336f978 100644
--- a/lib/content-services/src/lib/directives/node-delete.directive.ts
+++ b/lib/content-services/src/lib/directives/node-delete.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-download.directive.spec.ts b/lib/content-services/src/lib/directives/node-download.directive.spec.ts
index cd3bb495f2..c4baf37b3f 100755
--- a/lib/content-services/src/lib/directives/node-download.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/node-download.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-download.directive.ts b/lib/content-services/src/lib/directives/node-download.directive.ts
index c6bf9de894..2e003dea87 100755
--- a/lib/content-services/src/lib/directives/node-download.directive.ts
+++ b/lib/content-services/src/lib/directives/node-download.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-favorite.directive.spec.ts b/lib/content-services/src/lib/directives/node-favorite.directive.spec.ts
index 7d7b423c19..3ba0f218f9 100644
--- a/lib/content-services/src/lib/directives/node-favorite.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/node-favorite.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-favorite.directive.ts b/lib/content-services/src/lib/directives/node-favorite.directive.ts
index 5e5e614ad6..5df9101642 100644
--- a/lib/content-services/src/lib/directives/node-favorite.directive.ts
+++ b/lib/content-services/src/lib/directives/node-favorite.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-lock.directive.spec.ts b/lib/content-services/src/lib/directives/node-lock.directive.spec.ts
index 2c928b5b21..795c3f8a22 100644
--- a/lib/content-services/src/lib/directives/node-lock.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/node-lock.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-lock.directive.ts b/lib/content-services/src/lib/directives/node-lock.directive.ts
index c9384827fc..da73d2fa9c 100644
--- a/lib/content-services/src/lib/directives/node-lock.directive.ts
+++ b/lib/content-services/src/lib/directives/node-lock.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-restore.directive.spec.ts b/lib/content-services/src/lib/directives/node-restore.directive.spec.ts
index f797f553cf..ac0c500cb5 100644
--- a/lib/content-services/src/lib/directives/node-restore.directive.spec.ts
+++ b/lib/content-services/src/lib/directives/node-restore.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/node-restore.directive.ts b/lib/content-services/src/lib/directives/node-restore.directive.ts
index 72a1cf201e..cb5a2c9cd6 100644
--- a/lib/content-services/src/lib/directives/node-restore.directive.ts
+++ b/lib/content-services/src/lib/directives/node-restore.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/directives/public-api.ts b/lib/content-services/src/lib/directives/public-api.ts
index f58d5f7a7f..924af0f152 100644
--- a/lib/content-services/src/lib/directives/public-api.ts
+++ b/lib/content-services/src/lib/directives/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.spec.ts b/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.spec.ts
index 868216ec57..054bb6ab48 100644
--- a/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.ts b/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.ts
index 9459ed2fcc..2d16c9edb4 100644
--- a/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.ts
+++ b/lib/content-services/src/lib/document-list/components/content-action/content-action-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/content-action/content-action.component.spec.ts b/lib/content-services/src/lib/document-list/components/content-action/content-action.component.spec.ts
index bae7d96659..bd026b66a5 100644
--- a/lib/content-services/src/lib/document-list/components/content-action/content-action.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/content-action/content-action.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/content-action/content-action.component.ts b/lib/content-services/src/lib/document-list/components/content-action/content-action.component.ts
index ed6e8d7861..9525d5afb1 100644
--- a/lib/content-services/src/lib/document-list/components/content-action/content-action.component.ts
+++ b/lib/content-services/src/lib/document-list/components/content-action/content-action.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts b/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts
index a958a45ad2..d30010feca 100644
--- a/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1581,9 +1581,9 @@ describe('DocumentList', () => {
it('should display fileAutoDownload dialog if node size exceeds appConfig.viewer.fileAutoDownloadSizeThresholdInMB', async () => {
appConfigService.config = {
...appConfigService.config,
- 'viewer': {
- 'enableFileAutoDownload': true,
- 'fileAutoDownloadSizeThresholdInMB': 10
+ viewer: {
+ enableFileAutoDownload: true,
+ fileAutoDownloadSizeThresholdInMB: 10
}
};
documentList.navigationMode = DocumentListComponent.SINGLE_CLICK_NAVIGATION;
diff --git a/lib/content-services/src/lib/document-list/components/document-list.component.ts b/lib/content-services/src/lib/document-list/components/document-list.component.ts
index c4947d30dd..f3e45cdf91 100644
--- a/lib/content-services/src/lib/document-list/components/document-list.component.ts
+++ b/lib/content-services/src/lib/document-list/components/document-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/document-list.token.ts b/lib/content-services/src/lib/document-list/components/document-list.token.ts
index b5b8fc3640..211e4aebef 100644
--- a/lib/content-services/src/lib/document-list/components/document-list.token.ts
+++ b/lib/content-services/src/lib/document-list/components/document-list.token.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.spec.ts b/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.spec.ts
index d7cdbc5e38..dee201a7b1 100644
--- a/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,9 +31,7 @@ describe('FileAutoDownloadComponent', () => {
let matDialogRef: MatDialogRef;
let fixture: ComponentFixture;
- const getButton = (buttonId: string) => {
- return fixture.debugElement.query(By.css(buttonId)).nativeElement;
- };
+ const getButton = (buttonId: string) => fixture.debugElement.query(By.css(buttonId)).nativeElement;
beforeEach(() => {
TestBed.configureTestingModule({
diff --git a/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.ts b/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.ts
index 09ad0ae64f..737ce71338 100644
--- a/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.ts
+++ b/lib/content-services/src/lib/document-list/components/file-auto-download/file-auto-download.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.spec.ts b/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.spec.ts
index 6c338ab77d..1d825b8aaa 100644
--- a/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.ts b/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.ts
index 5c2fbb3c5e..17bd9cfa8c 100644
--- a/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.ts
+++ b/lib/content-services/src/lib/document-list/components/filter-header/filter-header.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.spec.ts b/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.spec.ts
index a49469f1e8..854ad58819 100644
--- a/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.ts b/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.ts
index 5198640b1a..b559540cb0 100644
--- a/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.ts
+++ b/lib/content-services/src/lib/document-list/components/library-name-column/library-name-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.spec.ts b/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.spec.ts
index 4aef28a9a3..18c50eb577 100644
--- a/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.ts b/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.ts
index 87c06604fe..66c69289b7 100644
--- a/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.ts
+++ b/lib/content-services/src/lib/document-list/components/library-role-column/library-role-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.spec.ts b/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.spec.ts
index 7145b12bc9..5ad3ee8a7b 100644
--- a/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.ts b/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.ts
index 307cfba420..9854fdb971 100644
--- a/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.ts
+++ b/lib/content-services/src/lib/document-list/components/library-status-column/library-status-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/name-column/name-column.component.spec.ts b/lib/content-services/src/lib/document-list/components/name-column/name-column.component.spec.ts
index 0a5c46153c..3d7b31bfe6 100644
--- a/lib/content-services/src/lib/document-list/components/name-column/name-column.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/name-column/name-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/name-column/name-column.component.ts b/lib/content-services/src/lib/document-list/components/name-column/name-column.component.ts
index e53d5111df..926ef24663 100644
--- a/lib/content-services/src/lib/document-list/components/name-column/name-column.component.ts
+++ b/lib/content-services/src/lib/document-list/components/name-column/name-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/node.event.ts b/lib/content-services/src/lib/document-list/components/node.event.ts
index 1bcf7894ce..8e3da3b0ca 100644
--- a/lib/content-services/src/lib/document-list/components/node.event.ts
+++ b/lib/content-services/src/lib/document-list/components/node.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.spec.ts b/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.spec.ts
index 5c8f89359a..b6cbefcb01 100644
--- a/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.spec.ts
+++ b/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.ts b/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.ts
index c42e7bed3c..f394c83d5a 100644
--- a/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.ts
+++ b/lib/content-services/src/lib/document-list/components/trashcan-name-column/trashcan-name-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/data/image-resolver.model.ts b/lib/content-services/src/lib/document-list/data/image-resolver.model.ts
index c59ffe97bb..e0488cf2da 100644
--- a/lib/content-services/src/lib/document-list/data/image-resolver.model.ts
+++ b/lib/content-services/src/lib/document-list/data/image-resolver.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/data/row-filter.model.ts b/lib/content-services/src/lib/document-list/data/row-filter.model.ts
index 0fd2574132..6b3d108918 100644
--- a/lib/content-services/src/lib/document-list/data/row-filter.model.ts
+++ b/lib/content-services/src/lib/document-list/data/row-filter.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/data/share-data-row.model.ts b/lib/content-services/src/lib/document-list/data/share-data-row.model.ts
index efaef0e6d8..488988821c 100644
--- a/lib/content-services/src/lib/document-list/data/share-data-row.model.ts
+++ b/lib/content-services/src/lib/document-list/data/share-data-row.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/data/share-datatable-adapter.spec.ts b/lib/content-services/src/lib/document-list/data/share-datatable-adapter.spec.ts
index b852d170d1..9bd3cf03ce 100644
--- a/lib/content-services/src/lib/document-list/data/share-datatable-adapter.spec.ts
+++ b/lib/content-services/src/lib/document-list/data/share-datatable-adapter.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/data/share-datatable-adapter.ts b/lib/content-services/src/lib/document-list/data/share-datatable-adapter.ts
index 8db6a5d02b..557b6d35d2 100644
--- a/lib/content-services/src/lib/document-list/data/share-datatable-adapter.ts
+++ b/lib/content-services/src/lib/document-list/data/share-datatable-adapter.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/document-list.module.ts b/lib/content-services/src/lib/document-list/document-list.module.ts
index 4db8c771dd..f04aadf78c 100644
--- a/lib/content-services/src/lib/document-list/document-list.module.ts
+++ b/lib/content-services/src/lib/document-list/document-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/index.ts b/lib/content-services/src/lib/document-list/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/document-list/index.ts
+++ b/lib/content-services/src/lib/document-list/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/interfaces/document-list-loader.interface.ts b/lib/content-services/src/lib/document-list/interfaces/document-list-loader.interface.ts
index c49e9c57c8..393b20833e 100644
--- a/lib/content-services/src/lib/document-list/interfaces/document-list-loader.interface.ts
+++ b/lib/content-services/src/lib/document-list/interfaces/document-list-loader.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/models/content-action.model.ts b/lib/content-services/src/lib/document-list/models/content-action.model.ts
index bb59335116..fe4405d725 100644
--- a/lib/content-services/src/lib/document-list/models/content-action.model.ts
+++ b/lib/content-services/src/lib/document-list/models/content-action.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/models/document-folder.model.ts b/lib/content-services/src/lib/document-list/models/document-folder.model.ts
index 31aaf96433..2021830ed7 100644
--- a/lib/content-services/src/lib/document-list/models/document-folder.model.ts
+++ b/lib/content-services/src/lib/document-list/models/document-folder.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/models/document-library.model.ts b/lib/content-services/src/lib/document-list/models/document-library.model.ts
index 08f026f12d..493daa0ff0 100644
--- a/lib/content-services/src/lib/document-list/models/document-library.model.ts
+++ b/lib/content-services/src/lib/document-list/models/document-library.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/models/node-action.enum.ts b/lib/content-services/src/lib/document-list/models/node-action.enum.ts
index 25f7aacd11..f822693273 100644
--- a/lib/content-services/src/lib/document-list/models/node-action.enum.ts
+++ b/lib/content-services/src/lib/document-list/models/node-action.enum.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/models/permissions-style.model.ts b/lib/content-services/src/lib/document-list/models/permissions-style.model.ts
index 9a7c06d896..a961a16963 100644
--- a/lib/content-services/src/lib/document-list/models/permissions-style.model.ts
+++ b/lib/content-services/src/lib/document-list/models/permissions-style.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/models/permissions.model.ts b/lib/content-services/src/lib/document-list/models/permissions.model.ts
index aef3dbbbb5..c90e8fa445 100644
--- a/lib/content-services/src/lib/document-list/models/permissions.model.ts
+++ b/lib/content-services/src/lib/document-list/models/permissions.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/models/preset.model.ts b/lib/content-services/src/lib/document-list/models/preset.model.ts
index 83780822bf..16d05d9da9 100644
--- a/lib/content-services/src/lib/document-list/models/preset.model.ts
+++ b/lib/content-services/src/lib/document-list/models/preset.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/public-api.ts b/lib/content-services/src/lib/document-list/public-api.ts
index 6b9b77313a..f3dcc6f14c 100644
--- a/lib/content-services/src/lib/document-list/public-api.ts
+++ b/lib/content-services/src/lib/document-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/custom-resources.service.spec.ts b/lib/content-services/src/lib/document-list/services/custom-resources.service.spec.ts
index de44b15bed..9015921f05 100644
--- a/lib/content-services/src/lib/document-list/services/custom-resources.service.spec.ts
+++ b/lib/content-services/src/lib/document-list/services/custom-resources.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/custom-resources.service.ts b/lib/content-services/src/lib/document-list/services/custom-resources.service.ts
index 2392377e92..911ee3694c 100644
--- a/lib/content-services/src/lib/document-list/services/custom-resources.service.ts
+++ b/lib/content-services/src/lib/document-list/services/custom-resources.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/document-actions.service.spec.ts b/lib/content-services/src/lib/document-list/services/document-actions.service.spec.ts
index 7c658a8ddf..c1614dd7c6 100644
--- a/lib/content-services/src/lib/document-list/services/document-actions.service.spec.ts
+++ b/lib/content-services/src/lib/document-list/services/document-actions.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/document-actions.service.ts b/lib/content-services/src/lib/document-list/services/document-actions.service.ts
index 531fc9a0b6..05d1abba83 100644
--- a/lib/content-services/src/lib/document-list/services/document-actions.service.ts
+++ b/lib/content-services/src/lib/document-list/services/document-actions.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/document-list.service.spec.ts b/lib/content-services/src/lib/document-list/services/document-list.service.spec.ts
index 013516c00a..0af5976686 100644
--- a/lib/content-services/src/lib/document-list/services/document-list.service.spec.ts
+++ b/lib/content-services/src/lib/document-list/services/document-list.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/document-list.service.ts b/lib/content-services/src/lib/document-list/services/document-list.service.ts
index 996fe55e45..46f0e06e68 100644
--- a/lib/content-services/src/lib/document-list/services/document-list.service.ts
+++ b/lib/content-services/src/lib/document-list/services/document-list.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/folder-actions.service.spec.ts b/lib/content-services/src/lib/document-list/services/folder-actions.service.spec.ts
index e9b4781b1a..6a4da0a640 100644
--- a/lib/content-services/src/lib/document-list/services/folder-actions.service.spec.ts
+++ b/lib/content-services/src/lib/document-list/services/folder-actions.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/folder-actions.service.ts b/lib/content-services/src/lib/document-list/services/folder-actions.service.ts
index 2d05c498d0..7884474548 100644
--- a/lib/content-services/src/lib/document-list/services/folder-actions.service.ts
+++ b/lib/content-services/src/lib/document-list/services/folder-actions.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/lock.service.spec.ts b/lib/content-services/src/lib/document-list/services/lock.service.spec.ts
index 93346aee43..04480b2bf0 100644
--- a/lib/content-services/src/lib/document-list/services/lock.service.spec.ts
+++ b/lib/content-services/src/lib/document-list/services/lock.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/lock.service.ts b/lib/content-services/src/lib/document-list/services/lock.service.ts
index 9a06a64591..aeda0e3a7d 100644
--- a/lib/content-services/src/lib/document-list/services/lock.service.ts
+++ b/lib/content-services/src/lib/document-list/services/lock.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/node-actions.service.spec.ts b/lib/content-services/src/lib/document-list/services/node-actions.service.spec.ts
index 6665967dbf..339f1ed665 100644
--- a/lib/content-services/src/lib/document-list/services/node-actions.service.spec.ts
+++ b/lib/content-services/src/lib/document-list/services/node-actions.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/document-list/services/node-actions.service.ts b/lib/content-services/src/lib/document-list/services/node-actions.service.ts
index 67113e1d0d..333c0e2305 100644
--- a/lib/content-services/src/lib/document-list/services/node-actions.service.ts
+++ b/lib/content-services/src/lib/document-list/services/node-actions.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/folder-directive/folder-create.directive.spec.ts b/lib/content-services/src/lib/folder-directive/folder-create.directive.spec.ts
index 20352b5362..b06b4c79d3 100644
--- a/lib/content-services/src/lib/folder-directive/folder-create.directive.spec.ts
+++ b/lib/content-services/src/lib/folder-directive/folder-create.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/folder-directive/folder-create.directive.ts b/lib/content-services/src/lib/folder-directive/folder-create.directive.ts
index 28902adac5..35ab1dcf88 100644
--- a/lib/content-services/src/lib/folder-directive/folder-create.directive.ts
+++ b/lib/content-services/src/lib/folder-directive/folder-create.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/folder-directive/folder-directive.module.ts b/lib/content-services/src/lib/folder-directive/folder-directive.module.ts
index 8d991ac56e..325f62b692 100644
--- a/lib/content-services/src/lib/folder-directive/folder-directive.module.ts
+++ b/lib/content-services/src/lib/folder-directive/folder-directive.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts b/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts
index 2bfcddd5b1..77bfcebc68 100644
--- a/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts
+++ b/lib/content-services/src/lib/folder-directive/folder-edit.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts b/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts
index c768eddf1c..5f19d8f0cf 100644
--- a/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts
+++ b/lib/content-services/src/lib/folder-directive/folder-edit.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/folder-directive/index.ts b/lib/content-services/src/lib/folder-directive/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/folder-directive/index.ts
+++ b/lib/content-services/src/lib/folder-directive/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/folder-directive/public-api.ts b/lib/content-services/src/lib/folder-directive/public-api.ts
index 7aea6d7305..f00ea95f1f 100644
--- a/lib/content-services/src/lib/folder-directive/public-api.ts
+++ b/lib/content-services/src/lib/folder-directive/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/group/index.ts b/lib/content-services/src/lib/group/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/group/index.ts
+++ b/lib/content-services/src/lib/group/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/group/public-api.ts b/lib/content-services/src/lib/group/public-api.ts
index c0cc39fb80..0c402ad0a2 100644
--- a/lib/content-services/src/lib/group/public-api.ts
+++ b/lib/content-services/src/lib/group/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/group/services/group.service.ts b/lib/content-services/src/lib/group/services/group.service.ts
index 2836cfb700..30cd4c12a9 100644
--- a/lib/content-services/src/lib/group/services/group.service.ts
+++ b/lib/content-services/src/lib/group/services/group.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/base-card-view-content-update.interface.ts b/lib/content-services/src/lib/interfaces/base-card-view-content-update.interface.ts
index 59d33f565c..a60e2a07c7 100644
--- a/lib/content-services/src/lib/interfaces/base-card-view-content-update.interface.ts
+++ b/lib/content-services/src/lib/interfaces/base-card-view-content-update.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/index.ts b/lib/content-services/src/lib/interfaces/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/interfaces/index.ts
+++ b/lib/content-services/src/lib/interfaces/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/library-entity.interface.ts b/lib/content-services/src/lib/interfaces/library-entity.interface.ts
index b381194c6a..ad3fa043b8 100644
--- a/lib/content-services/src/lib/interfaces/library-entity.interface.ts
+++ b/lib/content-services/src/lib/interfaces/library-entity.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/library-membership-error-event.interface.ts b/lib/content-services/src/lib/interfaces/library-membership-error-event.interface.ts
index ceba71723b..5183863a7b 100644
--- a/lib/content-services/src/lib/interfaces/library-membership-error-event.interface.ts
+++ b/lib/content-services/src/lib/interfaces/library-membership-error-event.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/library-membership-toggle-event.interface.ts b/lib/content-services/src/lib/interfaces/library-membership-toggle-event.interface.ts
index 810b67be2a..7bccdba62e 100644
--- a/lib/content-services/src/lib/interfaces/library-membership-toggle-event.interface.ts
+++ b/lib/content-services/src/lib/interfaces/library-membership-toggle-event.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/node-allowable-operation-subject.interface.ts b/lib/content-services/src/lib/interfaces/node-allowable-operation-subject.interface.ts
index 5ca34ebef3..a2e660d0e4 100644
--- a/lib/content-services/src/lib/interfaces/node-allowable-operation-subject.interface.ts
+++ b/lib/content-services/src/lib/interfaces/node-allowable-operation-subject.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/public-api.ts b/lib/content-services/src/lib/interfaces/public-api.ts
index 3824388efa..2477f3eb9a 100644
--- a/lib/content-services/src/lib/interfaces/public-api.ts
+++ b/lib/content-services/src/lib/interfaces/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/interfaces/restore-message-model.interface.ts b/lib/content-services/src/lib/interfaces/restore-message-model.interface.ts
index 5b18809e3a..6b2bd5bfa7 100644
--- a/lib/content-services/src/lib/interfaces/restore-message-model.interface.ts
+++ b/lib/content-services/src/lib/interfaces/restore-message-model.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/material.module.ts b/lib/content-services/src/lib/material.module.ts
index d4595bba26..30c54bf8e0 100644
--- a/lib/content-services/src/lib/material.module.ts
+++ b/lib/content-services/src/lib/material.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/add-permission.component.mock.ts b/lib/content-services/src/lib/mock/add-permission.component.mock.ts
index ddbeaa6cd6..25523ca4ac 100644
--- a/lib/content-services/src/lib/mock/add-permission.component.mock.ts
+++ b/lib/content-services/src/lib/mock/add-permission.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/content-model.mock.ts b/lib/content-services/src/lib/mock/content-model.mock.ts
index fc79b14f57..1cb7046348 100644
--- a/lib/content-services/src/lib/mock/content-model.mock.ts
+++ b/lib/content-services/src/lib/mock/content-model.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/document-library.model.mock.ts b/lib/content-services/src/lib/mock/document-library.model.mock.ts
index 2b489388d0..a33f3dbdd1 100644
--- a/lib/content-services/src/lib/mock/document-library.model.mock.ts
+++ b/lib/content-services/src/lib/mock/document-library.model.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/document-list.component.mock.ts b/lib/content-services/src/lib/mock/document-list.component.mock.ts
index f4bcb4a731..11efb60577 100644
--- a/lib/content-services/src/lib/mock/document-list.component.mock.ts
+++ b/lib/content-services/src/lib/mock/document-list.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/index.ts b/lib/content-services/src/lib/mock/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/mock/index.ts
+++ b/lib/content-services/src/lib/mock/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/inherited-permission.component.mock.ts b/lib/content-services/src/lib/mock/inherited-permission.component.mock.ts
index 3f8ac7e5bb..ce88243969 100644
--- a/lib/content-services/src/lib/mock/inherited-permission.component.mock.ts
+++ b/lib/content-services/src/lib/mock/inherited-permission.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/new-version-uploader.service.mock.ts b/lib/content-services/src/lib/mock/new-version-uploader.service.mock.ts
index 7bce9cf8a9..5efa4c1f87 100644
--- a/lib/content-services/src/lib/mock/new-version-uploader.service.mock.ts
+++ b/lib/content-services/src/lib/mock/new-version-uploader.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/permission-list.component.mock.ts b/lib/content-services/src/lib/mock/permission-list.component.mock.ts
index 7949f5ea2e..94cefeb5a9 100644
--- a/lib/content-services/src/lib/mock/permission-list.component.mock.ts
+++ b/lib/content-services/src/lib/mock/permission-list.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/public-api.ts b/lib/content-services/src/lib/mock/public-api.ts
index 93938de2ec..50ce677096 100644
--- a/lib/content-services/src/lib/mock/public-api.ts
+++ b/lib/content-services/src/lib/mock/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/search-filter-mock.ts b/lib/content-services/src/lib/mock/search-filter-mock.ts
index 92b58a8fcc..7baef06f3f 100644
--- a/lib/content-services/src/lib/mock/search-filter-mock.ts
+++ b/lib/content-services/src/lib/mock/search-filter-mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/search-query.mock.ts b/lib/content-services/src/lib/mock/search-query.mock.ts
index 34e02cc292..e36ef2ac12 100644
--- a/lib/content-services/src/lib/mock/search-query.mock.ts
+++ b/lib/content-services/src/lib/mock/search-query.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/search.component.mock.ts b/lib/content-services/src/lib/mock/search.component.mock.ts
index 13d254aad5..7c16c51dca 100644
--- a/lib/content-services/src/lib/mock/search.component.mock.ts
+++ b/lib/content-services/src/lib/mock/search.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/search.service.mock.ts b/lib/content-services/src/lib/mock/search.service.mock.ts
index 92f3f01716..9e5bf1abd8 100644
--- a/lib/content-services/src/lib/mock/search.service.mock.ts
+++ b/lib/content-services/src/lib/mock/search.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/sites-dropdown.component.mock.ts b/lib/content-services/src/lib/mock/sites-dropdown.component.mock.ts
index 2c4bfcf287..b7471da6d9 100644
--- a/lib/content-services/src/lib/mock/sites-dropdown.component.mock.ts
+++ b/lib/content-services/src/lib/mock/sites-dropdown.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/mock/upload.service.mock.ts b/lib/content-services/src/lib/mock/upload.service.mock.ts
index cd9ba0ebcd..bbf58d68d1 100644
--- a/lib/content-services/src/lib/mock/upload.service.mock.ts
+++ b/lib/content-services/src/lib/mock/upload.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/index.ts b/lib/content-services/src/lib/new-version-uploader/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/new-version-uploader/index.ts
+++ b/lib/content-services/src/lib/new-version-uploader/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/models/index.ts b/lib/content-services/src/lib/new-version-uploader/models/index.ts
index 8aa0155119..17d1c017b5 100644
--- a/lib/content-services/src/lib/new-version-uploader/models/index.ts
+++ b/lib/content-services/src/lib/new-version-uploader/models/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/models/new-version-uploader.model.ts b/lib/content-services/src/lib/new-version-uploader/models/new-version-uploader.model.ts
index 85b80613bc..d30cf16743 100644
--- a/lib/content-services/src/lib/new-version-uploader/models/new-version-uploader.model.ts
+++ b/lib/content-services/src/lib/new-version-uploader/models/new-version-uploader.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.scss b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.scss
index f9d2da7198..f994ff9cec 100644
--- a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.scss
+++ b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.scss
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.spec.ts b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.spec.ts
index a22d2720db..816491c330 100644
--- a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.spec.ts
+++ b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.ts b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.ts
index e03c667f69..3866ee2823 100644
--- a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.ts
+++ b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.module.ts b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.module.ts
index b1360aa736..81ff1b198f 100644
--- a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.module.ts
+++ b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.spec.ts b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.spec.ts
index 39dce41aa5..432f855a6f 100644
--- a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.spec.ts
+++ b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.ts b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.ts
index ab8f8645ce..66f9a742d6 100644
--- a/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.ts
+++ b/lib/content-services/src/lib/new-version-uploader/new-version-uploader.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/new-version-uploader/public-api.ts b/lib/content-services/src/lib/new-version-uploader/public-api.ts
index 6ba0d0007f..cc7258281f 100644
--- a/lib/content-services/src/lib/new-version-uploader/public-api.ts
+++ b/lib/content-services/src/lib/new-version-uploader/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/node-comments/index.ts b/lib/content-services/src/lib/node-comments/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/node-comments/index.ts
+++ b/lib/content-services/src/lib/node-comments/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/node-comments/mocks/node-comments.mock.ts b/lib/content-services/src/lib/node-comments/mocks/node-comments.mock.ts
index 84ce9b7c68..96978db881 100644
--- a/lib/content-services/src/lib/node-comments/mocks/node-comments.mock.ts
+++ b/lib/content-services/src/lib/node-comments/mocks/node-comments.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/node-comments/node-comments.component.ts b/lib/content-services/src/lib/node-comments/node-comments.component.ts
index f018feffc4..9630ab0a9e 100644
--- a/lib/content-services/src/lib/node-comments/node-comments.component.ts
+++ b/lib/content-services/src/lib/node-comments/node-comments.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/node-comments/node-comments.module.ts b/lib/content-services/src/lib/node-comments/node-comments.module.ts
index 7f25be85db..ac41915953 100644
--- a/lib/content-services/src/lib/node-comments/node-comments.module.ts
+++ b/lib/content-services/src/lib/node-comments/node-comments.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/node-comments/public-api.ts b/lib/content-services/src/lib/node-comments/public-api.ts
index e8f379d9b9..43df83a721 100644
--- a/lib/content-services/src/lib/node-comments/public-api.ts
+++ b/lib/content-services/src/lib/node-comments/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/node-comments/services/node-comments.service.spec.ts b/lib/content-services/src/lib/node-comments/services/node-comments.service.spec.ts
index 85734628f6..6183c26720 100644
--- a/lib/content-services/src/lib/node-comments/services/node-comments.service.spec.ts
+++ b/lib/content-services/src/lib/node-comments/services/node-comments.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/node-comments/services/node-comments.service.ts b/lib/content-services/src/lib/node-comments/services/node-comments.service.ts
index 290b0b91fc..9ac6fae662 100644
--- a/lib/content-services/src/lib/node-comments/services/node-comments.service.ts
+++ b/lib/content-services/src/lib/node-comments/services/node-comments.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog-data.interface.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog-data.interface.ts
index 4213b5469a..6e7fab1be0 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog-data.interface.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog-data.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts
index e46a8f6db4..11f5b8b05a 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.ts
index e7b926babf..ce986f03be 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts
index 80e7cdd911..68f365cd74 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.ts
index ab5026b8e4..982e302197 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.spec.ts
index f7f6bd88b3..bd28adf9cb 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.ts
index f778025353..3ce7d269ba 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/search-config-permission.service.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/search-config-permission.service.ts
index cc13d6c224..896d9d4d02 100644
--- a/lib/content-services/src/lib/permission-manager/components/add-permission/search-config-permission.service.ts
+++ b/lib/content-services/src/lib/permission-manager/components/add-permission/search-config-permission.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.spec.ts b/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.spec.ts
index 6a455fd8d5..f2ed357801 100644
--- a/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.ts b/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.ts
index 884a32a298..318e8cbbae 100644
--- a/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.ts
+++ b/lib/content-services/src/lib/permission-manager/components/inherited-button.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/node-path-column/node-path-column.component.ts b/lib/content-services/src/lib/permission-manager/components/node-path-column/node-path-column.component.ts
index 9a53ad40dd..66401e6e46 100644
--- a/lib/content-services/src/lib/permission-manager/components/node-path-column/node-path-column.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/node-path-column/node-path-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts
index b55bc54741..71cb4a827e 100644
--- a/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.ts b/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.ts
index 002a40d0b3..55c938dd62 100644
--- a/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts
index 50b98e6fdd..264a567bf9 100644
--- a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.ts b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.ts
index 3f505dfedb..21224954b2 100644
--- a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.spec.ts b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.spec.ts
index 957a07d7d6..22bf1bbb73 100644
--- a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.ts b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.ts
index 3d3497e997..d7c8811b4e 100644
--- a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.ts
+++ b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/pop-over.directive.spec.ts b/lib/content-services/src/lib/permission-manager/components/pop-over.directive.spec.ts
index 3185dcfa7e..79ed6e6cf3 100644
--- a/lib/content-services/src/lib/permission-manager/components/pop-over.directive.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/pop-over.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/pop-over.directive.ts b/lib/content-services/src/lib/permission-manager/components/pop-over.directive.ts
index 1dcff8fca6..87d8748516 100644
--- a/lib/content-services/src/lib/permission-manager/components/pop-over.directive.ts
+++ b/lib/content-services/src/lib/permission-manager/components/pop-over.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.spec.ts
index 749abb4c84..99d7d7bd18 100644
--- a/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.ts b/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.ts
index a5be85104f..fdb8a949c4 100644
--- a/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.spec.ts
index db85013079..3c8fdf4a45 100644
--- a/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.ts b/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.ts
index 817d879c74..6cae307c89 100644
--- a/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/user-name-column/user-name-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts b/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts
index 692228981b..600dd90420 100644
--- a/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts
+++ b/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/index.ts b/lib/content-services/src/lib/permission-manager/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/permission-manager/index.ts
+++ b/lib/content-services/src/lib/permission-manager/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/models/member.model.ts b/lib/content-services/src/lib/permission-manager/models/member.model.ts
index 16bae334ae..7674bd3409 100644
--- a/lib/content-services/src/lib/permission-manager/models/member.model.ts
+++ b/lib/content-services/src/lib/permission-manager/models/member.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/models/permission.model.ts b/lib/content-services/src/lib/permission-manager/models/permission.model.ts
index 98a2da7ce8..c2058056ab 100644
--- a/lib/content-services/src/lib/permission-manager/models/permission.model.ts
+++ b/lib/content-services/src/lib/permission-manager/models/permission.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/models/role.model.ts b/lib/content-services/src/lib/permission-manager/models/role.model.ts
index 1326695e90..eea120db87 100644
--- a/lib/content-services/src/lib/permission-manager/models/role.model.ts
+++ b/lib/content-services/src/lib/permission-manager/models/role.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/permission-manager.module.ts b/lib/content-services/src/lib/permission-manager/permission-manager.module.ts
index 943268c146..21af99e3b8 100644
--- a/lib/content-services/src/lib/permission-manager/permission-manager.module.ts
+++ b/lib/content-services/src/lib/permission-manager/permission-manager.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/public-api.ts b/lib/content-services/src/lib/permission-manager/public-api.ts
index 0b09337e2d..940687f9f2 100644
--- a/lib/content-services/src/lib/permission-manager/public-api.ts
+++ b/lib/content-services/src/lib/permission-manager/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.spec.ts b/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.spec.ts
index 472dadd44a..402d60b806 100644
--- a/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.ts b/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.ts
index 1f03c3b812..6d0ef138e2 100644
--- a/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.ts
+++ b/lib/content-services/src/lib/permission-manager/services/node-permission-dialog.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/services/node-permission.service.spec.ts b/lib/content-services/src/lib/permission-manager/services/node-permission.service.spec.ts
index 05283247b2..091f1232f7 100644
--- a/lib/content-services/src/lib/permission-manager/services/node-permission.service.spec.ts
+++ b/lib/content-services/src/lib/permission-manager/services/node-permission.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/permission-manager/services/node-permission.service.ts b/lib/content-services/src/lib/permission-manager/services/node-permission.service.ts
index 8b18981f20..fdace58dce 100644
--- a/lib/content-services/src/lib/permission-manager/services/node-permission.service.ts
+++ b/lib/content-services/src/lib/permission-manager/services/node-permission.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/pipes/content-pipe.module.ts b/lib/content-services/src/lib/pipes/content-pipe.module.ts
index 64025c220f..994dc2d36f 100644
--- a/lib/content-services/src/lib/pipes/content-pipe.module.ts
+++ b/lib/content-services/src/lib/pipes/content-pipe.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/pipes/index.ts b/lib/content-services/src/lib/pipes/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/pipes/index.ts
+++ b/lib/content-services/src/lib/pipes/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.spec.ts b/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.spec.ts
index b92875bf0e..e960a2de86 100644
--- a/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.spec.ts
+++ b/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.ts b/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.ts
index 87bc3d02ef..3803418ec1 100644
--- a/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.ts
+++ b/lib/content-services/src/lib/pipes/node-name-tooltip.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/pipes/public-api.ts b/lib/content-services/src/lib/pipes/public-api.ts
index 7c06af9aab..966c6a0232 100644
--- a/lib/content-services/src/lib/pipes/public-api.ts
+++ b/lib/content-services/src/lib/pipes/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/empty-search-result.component.ts b/lib/content-services/src/lib/search/components/empty-search-result.component.ts
index 0a925b276e..7b2a98d912 100644
--- a/lib/content-services/src/lib/search/components/empty-search-result.component.ts
+++ b/lib/content-services/src/lib/search/components/empty-search-result.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/reset-search.directive.spec.ts b/lib/content-services/src/lib/search/components/reset-search.directive.spec.ts
index 4d592693c9..9b90e28307 100644
--- a/lib/content-services/src/lib/search/components/reset-search.directive.spec.ts
+++ b/lib/content-services/src/lib/search/components/reset-search.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/reset-search.directive.ts b/lib/content-services/src/lib/search/components/reset-search.directive.ts
index f3ca809b97..59f507ddb4 100644
--- a/lib/content-services/src/lib/search/components/reset-search.directive.ts
+++ b/lib/content-services/src/lib/search/components/reset-search.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.spec.ts b/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.spec.ts
index d597c6fdfc..d002ee68af 100644
--- a/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.ts b/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.ts
index 48b6180ae0..7a4516e520 100644
--- a/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.ts
+++ b/lib/content-services/src/lib/search/components/search-check-list/search-check-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts
index 2b93546b1e..23b6de5bf7 100644
--- a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.ts b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.ts
index f4bffe0ce4..3aa911210e 100644
--- a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.ts
+++ b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-control.component.spec.ts b/lib/content-services/src/lib/search/components/search-control.component.spec.ts
index b1702d967a..6e373f56fb 100644
--- a/lib/content-services/src/lib/search/components/search-control.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-control.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-control.component.ts b/lib/content-services/src/lib/search/components/search-control.component.ts
index dec279c156..4ee5a26bfa 100644
--- a/lib/content-services/src/lib/search/components/search-control.component.ts
+++ b/lib/content-services/src/lib/search/components/search-control.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.spec.ts b/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.spec.ts
index 8f16f9bf59..c99d6a466e 100644
--- a/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.ts b/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.ts
index 11e3c83ae6..86ce7d7adb 100644
--- a/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.ts
+++ b/lib/content-services/src/lib/search/components/search-date-range/search-date-range.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.spec.ts b/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.spec.ts
index 95e73263ca..1a6e408aab 100644
--- a/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.ts b/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.ts
index a76e43a655..11e32d6c36 100644
--- a/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.ts
+++ b/lib/content-services/src/lib/search/components/search-datetime-range/search-datetime-range.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.spec.ts b/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.spec.ts
index f0f40de539..7e4d01cfa7 100644
--- a/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.ts b/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.ts
index 419d64c38a..568e74bb3f 100644
--- a/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.ts
+++ b/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.spec.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.spec.ts
index daea4092d2..51639c63ed 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.ts
index ed92fe9571..00e72476ca 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-facet-chip/search-facet-chip.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.spec.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.spec.ts
index 13d64e2a9a..23b095e8b0 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.ts
index 23c09b316a..00ecad7673 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-chips.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.spec.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.spec.ts
index 4341c95ac2..8fc2da477b 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.ts
index fc78728b65..32c520ff7e 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.spec.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.spec.ts
index 3df03e6247..eb1004bca2 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.ts b/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.ts
index b7a779a5b3..818f3860dd 100644
--- a/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-chips/search-widget-chip/search-widget-chip.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.spec.ts b/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.spec.ts
index 1dec96ddc5..a0bd6625de 100644
--- a/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.ts b/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.ts
index d178fe21a6..9f3e901609 100644
--- a/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.ts
+++ b/lib/content-services/src/lib/search/components/search-filter-container/search-filter-container.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter/search-filter.component.spec.ts b/lib/content-services/src/lib/search/components/search-filter/search-filter.component.spec.ts
index bfff8d15c0..3980876bd1 100644
--- a/lib/content-services/src/lib/search/components/search-filter/search-filter.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-filter/search-filter.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-filter/search-filter.component.ts b/lib/content-services/src/lib/search/components/search-filter/search-filter.component.ts
index 91c32db03a..afe2ee1d1c 100644
--- a/lib/content-services/src/lib/search/components/search-filter/search-filter.component.ts
+++ b/lib/content-services/src/lib/search/components/search-filter/search-filter.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-form/search-form.component.spec.ts b/lib/content-services/src/lib/search/components/search-form/search-form.component.spec.ts
index 95cb5dec99..0f09875775 100644
--- a/lib/content-services/src/lib/search/components/search-form/search-form.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-form/search-form.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-form/search-form.component.ts b/lib/content-services/src/lib/search/components/search-form/search-form.component.ts
index 476acb69bb..541b1086cf 100644
--- a/lib/content-services/src/lib/search/components/search-form/search-form.component.ts
+++ b/lib/content-services/src/lib/search/components/search-form/search-form.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.spec.ts b/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.spec.ts
index 9dcb3661c9..a551a55932 100644
--- a/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.ts b/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.ts
index 0fce9feee3..6a842b875b 100644
--- a/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.ts
+++ b/lib/content-services/src/lib/search/components/search-number-range/search-number-range.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-panel/search-panel.component.spec.ts b/lib/content-services/src/lib/search/components/search-panel/search-panel.component.spec.ts
index 368e1616b5..ad0da667c3 100644
--- a/lib/content-services/src/lib/search/components/search-panel/search-panel.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-panel/search-panel.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-panel/search-panel.component.ts b/lib/content-services/src/lib/search/components/search-panel/search-panel.component.ts
index fef871d6c2..6d20bfda8f 100644
--- a/lib/content-services/src/lib/search/components/search-panel/search-panel.component.ts
+++ b/lib/content-services/src/lib/search/components/search-panel/search-panel.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-radio/search-radio.component.spec.ts b/lib/content-services/src/lib/search/components/search-radio/search-radio.component.spec.ts
index 890c9ae604..2e77e36b8c 100644
--- a/lib/content-services/src/lib/search/components/search-radio/search-radio.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-radio/search-radio.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-radio/search-radio.component.ts b/lib/content-services/src/lib/search/components/search-radio/search-radio.component.ts
index 4f66a74db2..2c33ce8580 100644
--- a/lib/content-services/src/lib/search/components/search-radio/search-radio.component.ts
+++ b/lib/content-services/src/lib/search/components/search-radio/search-radio.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-slider/search-slider.component.spec.ts b/lib/content-services/src/lib/search/components/search-slider/search-slider.component.spec.ts
index e6cc904b03..88689d491c 100644
--- a/lib/content-services/src/lib/search/components/search-slider/search-slider.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-slider/search-slider.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-slider/search-slider.component.ts b/lib/content-services/src/lib/search/components/search-slider/search-slider.component.ts
index 1a7edbd6ec..52c5c8121a 100644
--- a/lib/content-services/src/lib/search/components/search-slider/search-slider.component.ts
+++ b/lib/content-services/src/lib/search/components/search-slider/search-slider.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.spec.ts b/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.spec.ts
index e48a0d91db..c5bae51f0b 100644
--- a/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.ts b/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.ts
index 1b573388a6..533a40a933 100644
--- a/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.ts
+++ b/lib/content-services/src/lib/search/components/search-sorting-picker/search-sorting-picker.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts b/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts
index d5be96b129..8c528e5d50 100644
--- a/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-text/search-text.component.ts b/lib/content-services/src/lib/search/components/search-text/search-text.component.ts
index 5547b8eb21..c257c26deb 100644
--- a/lib/content-services/src/lib/search/components/search-text/search-text.component.ts
+++ b/lib/content-services/src/lib/search/components/search-text/search-text.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search-widget-container/search-widget-container.component.ts b/lib/content-services/src/lib/search/components/search-widget-container/search-widget-container.component.ts
index 4ffff41a5a..1455e456d2 100644
--- a/lib/content-services/src/lib/search/components/search-widget-container/search-widget-container.component.ts
+++ b/lib/content-services/src/lib/search/components/search-widget-container/search-widget-container.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search.component.spec.ts b/lib/content-services/src/lib/search/components/search.component.spec.ts
index da08c5e521..66602f7352 100644
--- a/lib/content-services/src/lib/search/components/search.component.spec.ts
+++ b/lib/content-services/src/lib/search/components/search.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/components/search.component.ts b/lib/content-services/src/lib/search/components/search.component.ts
index 8c3717afab..7821914419 100644
--- a/lib/content-services/src/lib/search/components/search.component.ts
+++ b/lib/content-services/src/lib/search/components/search.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/forms/live-error-state-matcher.ts b/lib/content-services/src/lib/search/forms/live-error-state-matcher.ts
index 82720dacbb..0993f623eb 100644
--- a/lib/content-services/src/lib/search/forms/live-error-state-matcher.ts
+++ b/lib/content-services/src/lib/search/forms/live-error-state-matcher.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/forms/search-term-validator.spec.ts b/lib/content-services/src/lib/search/forms/search-term-validator.spec.ts
index 92e980b2ef..6a56b96e1c 100644
--- a/lib/content-services/src/lib/search/forms/search-term-validator.spec.ts
+++ b/lib/content-services/src/lib/search/forms/search-term-validator.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/forms/search-term-validator.ts b/lib/content-services/src/lib/search/forms/search-term-validator.ts
index c564f6b0ef..9e97781879 100644
--- a/lib/content-services/src/lib/search/forms/search-term-validator.ts
+++ b/lib/content-services/src/lib/search/forms/search-term-validator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/index.ts b/lib/content-services/src/lib/search/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/search/index.ts
+++ b/lib/content-services/src/lib/search/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/mocks/search.service.mock.ts b/lib/content-services/src/lib/search/mocks/search.service.mock.ts
index 4c81b2ebd2..5f43f6398e 100644
--- a/lib/content-services/src/lib/search/mocks/search.service.mock.ts
+++ b/lib/content-services/src/lib/search/mocks/search.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/facet-field-bucket.interface.ts b/lib/content-services/src/lib/search/models/facet-field-bucket.interface.ts
index 8d18d6aeb1..027a969b37 100644
--- a/lib/content-services/src/lib/search/models/facet-field-bucket.interface.ts
+++ b/lib/content-services/src/lib/search/models/facet-field-bucket.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/facet-field.interface.ts b/lib/content-services/src/lib/search/models/facet-field.interface.ts
index 17d418e4e2..1fb9b98d4f 100644
--- a/lib/content-services/src/lib/search/models/facet-field.interface.ts
+++ b/lib/content-services/src/lib/search/models/facet-field.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/facet-query.interface.ts b/lib/content-services/src/lib/search/models/facet-query.interface.ts
index ab65a92e78..7300a4e230 100644
--- a/lib/content-services/src/lib/search/models/facet-query.interface.ts
+++ b/lib/content-services/src/lib/search/models/facet-query.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/facet-widget.interface.ts b/lib/content-services/src/lib/search/models/facet-widget.interface.ts
index 8df0676c2c..ff14f22e06 100644
--- a/lib/content-services/src/lib/search/models/facet-widget.interface.ts
+++ b/lib/content-services/src/lib/search/models/facet-widget.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/filter-query.interface.ts b/lib/content-services/src/lib/search/models/filter-query.interface.ts
index 1968dbb2a4..1aa7c995b9 100644
--- a/lib/content-services/src/lib/search/models/filter-query.interface.ts
+++ b/lib/content-services/src/lib/search/models/filter-query.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/filter-search.interface.ts b/lib/content-services/src/lib/search/models/filter-search.interface.ts
index 033674c6a2..0f89609860 100644
--- a/lib/content-services/src/lib/search/models/filter-search.interface.ts
+++ b/lib/content-services/src/lib/search/models/filter-search.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/response-facet-query-list.model.ts b/lib/content-services/src/lib/search/models/response-facet-query-list.model.ts
index 4d3b38a2d9..d19dd4e189 100644
--- a/lib/content-services/src/lib/search/models/response-facet-query-list.model.ts
+++ b/lib/content-services/src/lib/search/models/response-facet-query-list.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-category.interface.ts b/lib/content-services/src/lib/search/models/search-category.interface.ts
index 4c54c46f76..2094550375 100644
--- a/lib/content-services/src/lib/search/models/search-category.interface.ts
+++ b/lib/content-services/src/lib/search/models/search-category.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-configuration.interface.ts b/lib/content-services/src/lib/search/models/search-configuration.interface.ts
index e6ebd764e6..855db67d36 100644
--- a/lib/content-services/src/lib/search/models/search-configuration.interface.ts
+++ b/lib/content-services/src/lib/search/models/search-configuration.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-filter-list.model.spec.ts b/lib/content-services/src/lib/search/models/search-filter-list.model.spec.ts
index 16a74d54aa..62a5579bc5 100644
--- a/lib/content-services/src/lib/search/models/search-filter-list.model.spec.ts
+++ b/lib/content-services/src/lib/search/models/search-filter-list.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-filter-list.model.ts b/lib/content-services/src/lib/search/models/search-filter-list.model.ts
index 5f4024d93c..23886bcd40 100644
--- a/lib/content-services/src/lib/search/models/search-filter-list.model.ts
+++ b/lib/content-services/src/lib/search/models/search-filter-list.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-form.interface.ts b/lib/content-services/src/lib/search/models/search-form.interface.ts
index e24320b9b1..5d3237f78e 100644
--- a/lib/content-services/src/lib/search/models/search-form.interface.ts
+++ b/lib/content-services/src/lib/search/models/search-form.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-range.interface.ts b/lib/content-services/src/lib/search/models/search-range.interface.ts
index 5e8369eb72..18e099bcca 100644
--- a/lib/content-services/src/lib/search/models/search-range.interface.ts
+++ b/lib/content-services/src/lib/search/models/search-range.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-sorting-definition.interface.ts b/lib/content-services/src/lib/search/models/search-sorting-definition.interface.ts
index 26635e0ace..b2c3989e00 100644
--- a/lib/content-services/src/lib/search/models/search-sorting-definition.interface.ts
+++ b/lib/content-services/src/lib/search/models/search-sorting-definition.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-widget-settings.interface.ts b/lib/content-services/src/lib/search/models/search-widget-settings.interface.ts
index d1b4c9d179..5893754ed4 100644
--- a/lib/content-services/src/lib/search/models/search-widget-settings.interface.ts
+++ b/lib/content-services/src/lib/search/models/search-widget-settings.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/models/search-widget.interface.ts b/lib/content-services/src/lib/search/models/search-widget.interface.ts
index 55dcca7b6b..b7dcbf58b0 100644
--- a/lib/content-services/src/lib/search/models/search-widget.interface.ts
+++ b/lib/content-services/src/lib/search/models/search-widget.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/public-api.ts b/lib/content-services/src/lib/search/public-api.ts
index 4d67b1caf8..b34e6db6b2 100644
--- a/lib/content-services/src/lib/search/public-api.ts
+++ b/lib/content-services/src/lib/search/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/search-query-service.token.ts b/lib/content-services/src/lib/search/search-query-service.token.ts
index eb5c35998e..b9d6f7a42d 100644
--- a/lib/content-services/src/lib/search/search-query-service.token.ts
+++ b/lib/content-services/src/lib/search/search-query-service.token.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/search.module.ts b/lib/content-services/src/lib/search/search.module.ts
index 07d283121b..30f50391f3 100644
--- a/lib/content-services/src/lib/search/search.module.ts
+++ b/lib/content-services/src/lib/search/search.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/base-query-builder.service.ts b/lib/content-services/src/lib/search/services/base-query-builder.service.ts
index 8d160d61b7..38f1576464 100644
--- a/lib/content-services/src/lib/search/services/base-query-builder.service.ts
+++ b/lib/content-services/src/lib/search/services/base-query-builder.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-configuration.service.ts b/lib/content-services/src/lib/search/services/search-configuration.service.ts
index 6cafc5e84d..786a0be732 100644
--- a/lib/content-services/src/lib/search/services/search-configuration.service.ts
+++ b/lib/content-services/src/lib/search/services/search-configuration.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-facet-filters.service.spec.ts b/lib/content-services/src/lib/search/services/search-facet-filters.service.spec.ts
index 02014d460f..e30f701535 100644
--- a/lib/content-services/src/lib/search/services/search-facet-filters.service.spec.ts
+++ b/lib/content-services/src/lib/search/services/search-facet-filters.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-facet-filters.service.ts b/lib/content-services/src/lib/search/services/search-facet-filters.service.ts
index 635351f9e4..632437896a 100644
--- a/lib/content-services/src/lib/search/services/search-facet-filters.service.ts
+++ b/lib/content-services/src/lib/search/services/search-facet-filters.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-filter.service.ts b/lib/content-services/src/lib/search/services/search-filter.service.ts
index 80b8d073bd..50c36731a6 100644
--- a/lib/content-services/src/lib/search/services/search-filter.service.ts
+++ b/lib/content-services/src/lib/search/services/search-filter.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-header-query-builder.service.spec.ts b/lib/content-services/src/lib/search/services/search-header-query-builder.service.spec.ts
index f006f01199..788256d91c 100644
--- a/lib/content-services/src/lib/search/services/search-header-query-builder.service.spec.ts
+++ b/lib/content-services/src/lib/search/services/search-header-query-builder.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-header-query-builder.service.ts b/lib/content-services/src/lib/search/services/search-header-query-builder.service.ts
index 22c0e57208..c61b26fdff 100644
--- a/lib/content-services/src/lib/search/services/search-header-query-builder.service.ts
+++ b/lib/content-services/src/lib/search/services/search-header-query-builder.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-query-builder.service.spec.ts b/lib/content-services/src/lib/search/services/search-query-builder.service.spec.ts
index e8d79cfedf..88af97aa1c 100644
--- a/lib/content-services/src/lib/search/services/search-query-builder.service.spec.ts
+++ b/lib/content-services/src/lib/search/services/search-query-builder.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search-query-builder.service.ts b/lib/content-services/src/lib/search/services/search-query-builder.service.ts
index 0513376494..8897b7e698 100644
--- a/lib/content-services/src/lib/search/services/search-query-builder.service.ts
+++ b/lib/content-services/src/lib/search/services/search-query-builder.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search.service.spec.ts b/lib/content-services/src/lib/search/services/search.service.spec.ts
index 5b2f30be28..7358477be9 100644
--- a/lib/content-services/src/lib/search/services/search.service.spec.ts
+++ b/lib/content-services/src/lib/search/services/search.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/search/services/search.service.ts b/lib/content-services/src/lib/search/services/search.service.ts
index a09233af1f..044b826cf4 100644
--- a/lib/content-services/src/lib/search/services/search.service.ts
+++ b/lib/content-services/src/lib/search/services/search.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/index.ts b/lib/content-services/src/lib/security/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/security/index.ts
+++ b/lib/content-services/src/lib/security/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/public-api.ts b/lib/content-services/src/lib/security/public-api.ts
index dd452fe779..9e726f8198 100644
--- a/lib/content-services/src/lib/security/public-api.ts
+++ b/lib/content-services/src/lib/security/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/mock/security-authorities.mock.ts b/lib/content-services/src/lib/security/services/mock/security-authorities.mock.ts
index 252c260f78..ed225b65a6 100644
--- a/lib/content-services/src/lib/security/services/mock/security-authorities.mock.ts
+++ b/lib/content-services/src/lib/security/services/mock/security-authorities.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,22 +18,22 @@
import { AuthorityClearanceGroupPaging } from '@alfresco/js-api';
export const fakeAuthorityClearanceApiResponse: AuthorityClearanceGroupPaging = {
- 'list': {
- 'pagination': {
- 'count': 1,
- 'hasMoreItems': false,
- 'totalItems': 1,
- 'skipCount': 0,
- 'maxItems': 10
+ list: {
+ pagination: {
+ count: 1,
+ hasMoreItems: false,
+ totalItems: 1,
+ skipCount: 0,
+ maxItems: 10
},
- 'entries': [
+ entries: [
{
- 'entry': {
- 'id': 'test-id',
- 'displayLabel': 'test-displayLabel',
- 'systemGroup': false,
- 'type': 'test-type',
- 'marks': []
+ entry: {
+ id: 'test-id',
+ displayLabel: 'test-displayLabel',
+ systemGroup: false,
+ type: 'test-type',
+ marks: []
}
}
]
diff --git a/lib/content-services/src/lib/security/services/mock/security-groups.mock.ts b/lib/content-services/src/lib/security/services/mock/security-groups.mock.ts
index eaa6b5f8db..631a6c81a4 100644
--- a/lib/content-services/src/lib/security/services/mock/security-groups.mock.ts
+++ b/lib/content-services/src/lib/security/services/mock/security-groups.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/mock/security-marks.mock.ts b/lib/content-services/src/lib/security/services/mock/security-marks.mock.ts
index c758d7c3d8..4532829b53 100644
--- a/lib/content-services/src/lib/security/services/mock/security-marks.mock.ts
+++ b/lib/content-services/src/lib/security/services/mock/security-marks.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,20 +18,20 @@
import { SecurityMarkPaging, SecurityMarkEntry, SecurityMarkBody } from '@alfresco/js-api';
export const fakeMarksApiResponse: SecurityMarkPaging = {
- 'list': {
- 'pagination': {
- 'count': 1,
- 'hasMoreItems': false,
- 'totalItems': 1,
- 'skipCount': 0,
- 'maxItems': 10
+ list: {
+ pagination: {
+ count: 1,
+ hasMoreItems: false,
+ totalItems: 1,
+ skipCount: 0,
+ maxItems: 10
},
- 'entries': [
+ entries: [
{
- 'entry': {
- 'groupId': 'eddf6269-ceba-42c6-b979-9ac445d29a94',
- 'name': 'securityMark1',
- 'id': 'ffBOeOJJ'
+ entry: {
+ groupId: 'eddf6269-ceba-42c6-b979-9ac445d29a94',
+ name: 'securityMark1',
+ id: 'ffBOeOJJ'
}
}
]
diff --git a/lib/content-services/src/lib/security/services/models/security-controls-group-info-response.interface.ts b/lib/content-services/src/lib/security/services/models/security-controls-group-info-response.interface.ts
index 689172e28e..45196e4e88 100644
--- a/lib/content-services/src/lib/security/services/models/security-controls-group-info-response.interface.ts
+++ b/lib/content-services/src/lib/security/services/models/security-controls-group-info-response.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/models/security-controls-group-list-response.interface.ts b/lib/content-services/src/lib/security/services/models/security-controls-group-list-response.interface.ts
index 6891dd9023..15db6728c0 100644
--- a/lib/content-services/src/lib/security/services/models/security-controls-group-list-response.interface.ts
+++ b/lib/content-services/src/lib/security/services/models/security-controls-group-list-response.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/models/security-controls-group-response.interface.ts b/lib/content-services/src/lib/security/services/models/security-controls-group-response.interface.ts
index cd12653fcc..02e565452b 100644
--- a/lib/content-services/src/lib/security/services/models/security-controls-group-response.interface.ts
+++ b/lib/content-services/src/lib/security/services/models/security-controls-group-response.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/models/security-controls-mark-response.interface.ts b/lib/content-services/src/lib/security/services/models/security-controls-mark-response.interface.ts
index e9ae824f2d..136e8334fc 100644
--- a/lib/content-services/src/lib/security/services/models/security-controls-mark-response.interface.ts
+++ b/lib/content-services/src/lib/security/services/models/security-controls-mark-response.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.spec.ts b/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.spec.ts
index 170616dce3..febad3291f 100644
--- a/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.spec.ts
+++ b/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.ts b/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.ts
index 70a86505a0..1bb1c42c9b 100644
--- a/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.ts
+++ b/lib/content-services/src/lib/security/services/security-controls-groups-marks-security.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/security/services/security-controls-service.module.ts b/lib/content-services/src/lib/security/services/security-controls-service.module.ts
index 0d8aeee4d5..7159471dd4 100644
--- a/lib/content-services/src/lib/security/services/security-controls-service.module.ts
+++ b/lib/content-services/src/lib/security/services/security-controls-service.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/site-dropdown/index.ts b/lib/content-services/src/lib/site-dropdown/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/site-dropdown/index.ts
+++ b/lib/content-services/src/lib/site-dropdown/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/site-dropdown/public-api.ts b/lib/content-services/src/lib/site-dropdown/public-api.ts
index 5a4f2a99ca..a0efa719fe 100644
--- a/lib/content-services/src/lib/site-dropdown/public-api.ts
+++ b/lib/content-services/src/lib/site-dropdown/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts
index 5af42012f6..16b6c405fc 100644
--- a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts
+++ b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.ts b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.ts
index 6426943b00..31eb06696b 100644
--- a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.ts
+++ b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/site-dropdown/sites-dropdown.module.ts b/lib/content-services/src/lib/site-dropdown/sites-dropdown.module.ts
index 96ad032387..0a5820e640 100644
--- a/lib/content-services/src/lib/site-dropdown/sites-dropdown.module.ts
+++ b/lib/content-services/src/lib/site-dropdown/sites-dropdown.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/index.ts b/lib/content-services/src/lib/social/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/social/index.ts
+++ b/lib/content-services/src/lib/social/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/like.component.spec.ts b/lib/content-services/src/lib/social/like.component.spec.ts
index 08262625d8..9b00fa0ba0 100644
--- a/lib/content-services/src/lib/social/like.component.spec.ts
+++ b/lib/content-services/src/lib/social/like.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/like.component.stories.ts b/lib/content-services/src/lib/social/like.component.stories.ts
index c5bf770e9d..526abc4136 100644
--- a/lib/content-services/src/lib/social/like.component.stories.ts
+++ b/lib/content-services/src/lib/social/like.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/like.component.ts b/lib/content-services/src/lib/social/like.component.ts
index fcfc66b7b1..6ec0eacb11 100644
--- a/lib/content-services/src/lib/social/like.component.ts
+++ b/lib/content-services/src/lib/social/like.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/mock/rating-response.mock.ts b/lib/content-services/src/lib/social/mock/rating-response.mock.ts
index a247fbd667..dbafd0b717 100644
--- a/lib/content-services/src/lib/social/mock/rating-response.mock.ts
+++ b/lib/content-services/src/lib/social/mock/rating-response.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/mock/rating.service.mock.ts b/lib/content-services/src/lib/social/mock/rating.service.mock.ts
index b48ff2ae64..80b688e299 100644
--- a/lib/content-services/src/lib/social/mock/rating.service.mock.ts
+++ b/lib/content-services/src/lib/social/mock/rating.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/public-api.ts b/lib/content-services/src/lib/social/public-api.ts
index 09b13eaa5c..456d1c49f4 100644
--- a/lib/content-services/src/lib/social/public-api.ts
+++ b/lib/content-services/src/lib/social/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/rating.component.spec.ts b/lib/content-services/src/lib/social/rating.component.spec.ts
index 0ad3367d91..d2bd41467c 100644
--- a/lib/content-services/src/lib/social/rating.component.spec.ts
+++ b/lib/content-services/src/lib/social/rating.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/rating.component.ts b/lib/content-services/src/lib/social/rating.component.ts
index cbc75edb11..392e4aa3be 100644
--- a/lib/content-services/src/lib/social/rating.component.ts
+++ b/lib/content-services/src/lib/social/rating.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/services/rating.service.interface.ts b/lib/content-services/src/lib/social/services/rating.service.interface.ts
index 7ffac7eb38..90c662f22c 100644
--- a/lib/content-services/src/lib/social/services/rating.service.interface.ts
+++ b/lib/content-services/src/lib/social/services/rating.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/services/rating.service.spec.ts b/lib/content-services/src/lib/social/services/rating.service.spec.ts
index f3b576641b..7270f86d5e 100644
--- a/lib/content-services/src/lib/social/services/rating.service.spec.ts
+++ b/lib/content-services/src/lib/social/services/rating.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/services/rating.service.ts b/lib/content-services/src/lib/social/services/rating.service.ts
index 04e93287f7..25f0b770c1 100644
--- a/lib/content-services/src/lib/social/services/rating.service.ts
+++ b/lib/content-services/src/lib/social/services/rating.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/social/social.module.ts b/lib/content-services/src/lib/social/social.module.ts
index 33c8cec7c2..deea4aeae2 100644
--- a/lib/content-services/src/lib/social/social.module.ts
+++ b/lib/content-services/src/lib/social/social.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/index.ts b/lib/content-services/src/lib/tag/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/tag/index.ts
+++ b/lib/content-services/src/lib/tag/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/public-api.ts b/lib/content-services/src/lib/tag/public-api.ts
index 3647770757..c38b5626c3 100644
--- a/lib/content-services/src/lib/tag/public-api.ts
+++ b/lib/content-services/src/lib/tag/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/services/tag.service.spec.ts b/lib/content-services/src/lib/tag/services/tag.service.spec.ts
index 8e149ece4e..c4cdfd2c7f 100644
--- a/lib/content-services/src/lib/tag/services/tag.service.spec.ts
+++ b/lib/content-services/src/lib/tag/services/tag.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/services/tag.service.ts b/lib/content-services/src/lib/tag/services/tag.service.ts
index 5ef250a430..693196c040 100644
--- a/lib/content-services/src/lib/tag/services/tag.service.ts
+++ b/lib/content-services/src/lib/tag/services/tag.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tag-actions.component.spec.ts b/lib/content-services/src/lib/tag/tag-actions.component.spec.ts
index 1196bc3b5d..6c65ec67cc 100644
--- a/lib/content-services/src/lib/tag/tag-actions.component.spec.ts
+++ b/lib/content-services/src/lib/tag/tag-actions.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tag-actions.component.ts b/lib/content-services/src/lib/tag/tag-actions.component.ts
index 6aa97c8bdf..602fbaa108 100644
--- a/lib/content-services/src/lib/tag/tag-actions.component.ts
+++ b/lib/content-services/src/lib/tag/tag-actions.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tag-list.component.spec.ts b/lib/content-services/src/lib/tag/tag-list.component.spec.ts
index f2f90ca559..36c1f55d3e 100644
--- a/lib/content-services/src/lib/tag/tag-list.component.spec.ts
+++ b/lib/content-services/src/lib/tag/tag-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tag-list.component.ts b/lib/content-services/src/lib/tag/tag-list.component.ts
index 01cb484cf7..52c6ad3bde 100644
--- a/lib/content-services/src/lib/tag/tag-list.component.ts
+++ b/lib/content-services/src/lib/tag/tag-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tag-node-list.component.spec.ts b/lib/content-services/src/lib/tag/tag-node-list.component.spec.ts
index 40b4221bb8..d87592cf75 100644
--- a/lib/content-services/src/lib/tag/tag-node-list.component.spec.ts
+++ b/lib/content-services/src/lib/tag/tag-node-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tag-node-list.component.ts b/lib/content-services/src/lib/tag/tag-node-list.component.ts
index faa8f50e6b..91a75556ed 100644
--- a/lib/content-services/src/lib/tag/tag-node-list.component.ts
+++ b/lib/content-services/src/lib/tag/tag-node-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tag.module.ts b/lib/content-services/src/lib/tag/tag.module.ts
index 79cbdc92c3..81b8234ff8 100644
--- a/lib/content-services/src/lib/tag/tag.module.ts
+++ b/lib/content-services/src/lib/tag/tag.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tags-creator/tags-creator-mode.ts b/lib/content-services/src/lib/tag/tags-creator/tags-creator-mode.ts
index b1e8087642..f6c9727b1a 100644
--- a/lib/content-services/src/lib/tag/tags-creator/tags-creator-mode.ts
+++ b/lib/content-services/src/lib/tag/tags-creator/tags-creator-mode.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.spec.ts b/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.spec.ts
index af85480462..a2bc0df27b 100644
--- a/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.spec.ts
+++ b/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.ts b/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.ts
index 435145d542..111e6925f4 100644
--- a/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.ts
+++ b/lib/content-services/src/lib/tag/tags-creator/tags-creator.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -74,6 +74,7 @@ export class TagsCreatorComponent implements OnInit, OnDestroy {
/**
* Default top list.
+ *
* @param tags tags which should be displayed as default tags for top list.
*/
@Input()
@@ -92,6 +93,7 @@ export class TagsCreatorComponent implements OnInit, OnDestroy {
/**
* Decides if input for tags creation/searching should be visible. When input is hidden then panel of existing tags is hidden as well.
+ *
* @param tagNameControlVisible true if input should be visible, false otherwise.
*/
@Input()
@@ -273,6 +275,7 @@ export class TagsCreatorComponent implements OnInit, OnDestroy {
/**
* Remove tag from top list. In case that tag was part of search result then that tag is moved to bottom list
* (list of existing tags) after removing so user can reselect it again later.
+ *
* @param tag tag's name which should be removed from top list.
*/
removeTag(tag: string): void {
@@ -285,6 +288,7 @@ export class TagsCreatorComponent implements OnInit, OnDestroy {
/**
* Called when user selects any tag from list of existing tags. It moves tag from existing tags list to top list.
+ *
* @param change
*/
addExistingTagToTagsToAssign(change: MatSelectionListChange): void {
@@ -298,6 +302,7 @@ export class TagsCreatorComponent implements OnInit, OnDestroy {
/**
* Checks if component is in Create mode.
+ *
* @return true if Create mode, false otherwise.
*/
isOnlyCreateMode(): boolean {
diff --git a/lib/content-services/src/lib/testing/content.testing.module.ts b/lib/content-services/src/lib/testing/content.testing.module.ts
index 5ea41bcab4..2992be2150 100644
--- a/lib/content-services/src/lib/testing/content.testing.module.ts
+++ b/lib/content-services/src/lib/testing/content.testing.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/testing/dom-sanitizer-mock.ts b/lib/content-services/src/lib/testing/dom-sanitizer-mock.ts
index b07b146329..c20af6f41d 100644
--- a/lib/content-services/src/lib/testing/dom-sanitizer-mock.ts
+++ b/lib/content-services/src/lib/testing/dom-sanitizer-mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/testing/mat-icon-registry-mock.ts b/lib/content-services/src/lib/testing/mat-icon-registry-mock.ts
index e6020a6307..a00b65f41a 100644
--- a/lib/content-services/src/lib/testing/mat-icon-registry-mock.ts
+++ b/lib/content-services/src/lib/testing/mat-icon-registry-mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/components/tree-view.component.spec.ts b/lib/content-services/src/lib/tree-view/components/tree-view.component.spec.ts
index 643d732c04..60457e026a 100644
--- a/lib/content-services/src/lib/tree-view/components/tree-view.component.spec.ts
+++ b/lib/content-services/src/lib/tree-view/components/tree-view.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/components/tree-view.component.ts b/lib/content-services/src/lib/tree-view/components/tree-view.component.ts
index 043f9087f2..cf9a7052ab 100644
--- a/lib/content-services/src/lib/tree-view/components/tree-view.component.ts
+++ b/lib/content-services/src/lib/tree-view/components/tree-view.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/data/tree-view-datasource.ts b/lib/content-services/src/lib/tree-view/data/tree-view-datasource.ts
index 1724beac4d..53ddee6a8a 100644
--- a/lib/content-services/src/lib/tree-view/data/tree-view-datasource.ts
+++ b/lib/content-services/src/lib/tree-view/data/tree-view-datasource.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/index.ts b/lib/content-services/src/lib/tree-view/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/tree-view/index.ts
+++ b/lib/content-services/src/lib/tree-view/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/models/tree-view.model.ts b/lib/content-services/src/lib/tree-view/models/tree-view.model.ts
index bdc316be06..3ec56498f3 100644
--- a/lib/content-services/src/lib/tree-view/models/tree-view.model.ts
+++ b/lib/content-services/src/lib/tree-view/models/tree-view.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/public-api.ts b/lib/content-services/src/lib/tree-view/public-api.ts
index e7ca10d926..0062a66573 100644
--- a/lib/content-services/src/lib/tree-view/public-api.ts
+++ b/lib/content-services/src/lib/tree-view/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/services/tree-view.service.spec.ts b/lib/content-services/src/lib/tree-view/services/tree-view.service.spec.ts
index a7e0ed29a0..9f024ea982 100644
--- a/lib/content-services/src/lib/tree-view/services/tree-view.service.spec.ts
+++ b/lib/content-services/src/lib/tree-view/services/tree-view.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/services/tree-view.service.ts b/lib/content-services/src/lib/tree-view/services/tree-view.service.ts
index 863c6758ce..527cd88aa7 100644
--- a/lib/content-services/src/lib/tree-view/services/tree-view.service.ts
+++ b/lib/content-services/src/lib/tree-view/services/tree-view.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree-view/tree-view.module.ts b/lib/content-services/src/lib/tree-view/tree-view.module.ts
index d1ac2b0148..9dc841b086 100644
--- a/lib/content-services/src/lib/tree-view/tree-view.module.ts
+++ b/lib/content-services/src/lib/tree-view/tree-view.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/components/tree.component.spec.ts b/lib/content-services/src/lib/tree/components/tree.component.spec.ts
index 331acf4f35..9141af530d 100644
--- a/lib/content-services/src/lib/tree/components/tree.component.spec.ts
+++ b/lib/content-services/src/lib/tree/components/tree.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/components/tree.component.ts b/lib/content-services/src/lib/tree/components/tree.component.ts
index 9259460f96..4cc26741fe 100644
--- a/lib/content-services/src/lib/tree/components/tree.component.ts
+++ b/lib/content-services/src/lib/tree/components/tree.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/index.ts b/lib/content-services/src/lib/tree/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/tree/index.ts
+++ b/lib/content-services/src/lib/tree/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/mock/tree-node.mock.ts b/lib/content-services/src/lib/tree/mock/tree-node.mock.ts
index 1cfeb2d386..e7911ff4b7 100644
--- a/lib/content-services/src/lib/tree/mock/tree-node.mock.ts
+++ b/lib/content-services/src/lib/tree/mock/tree-node.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/mock/tree-service.service.mock.ts b/lib/content-services/src/lib/tree/mock/tree-service.service.mock.ts
index 760f9b39d0..df2aa1c319 100644
--- a/lib/content-services/src/lib/tree/mock/tree-service.service.mock.ts
+++ b/lib/content-services/src/lib/tree/mock/tree-service.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/models/tree-context-menu-result.interface.ts b/lib/content-services/src/lib/tree/models/tree-context-menu-result.interface.ts
index 3b2f7112af..2e39806913 100644
--- a/lib/content-services/src/lib/tree/models/tree-context-menu-result.interface.ts
+++ b/lib/content-services/src/lib/tree/models/tree-context-menu-result.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/models/tree-node.interface.ts b/lib/content-services/src/lib/tree/models/tree-node.interface.ts
index 354715fa85..c53ae11bb0 100644
--- a/lib/content-services/src/lib/tree/models/tree-node.interface.ts
+++ b/lib/content-services/src/lib/tree/models/tree-node.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/models/tree-response.interface.ts b/lib/content-services/src/lib/tree/models/tree-response.interface.ts
index ecdf3a4ec2..567b2f5a05 100644
--- a/lib/content-services/src/lib/tree/models/tree-response.interface.ts
+++ b/lib/content-services/src/lib/tree/models/tree-response.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/public-api.ts b/lib/content-services/src/lib/tree/public-api.ts
index 5e59bf8ce0..ac11284ed8 100644
--- a/lib/content-services/src/lib/tree/public-api.ts
+++ b/lib/content-services/src/lib/tree/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/services/tree.service.spec.ts b/lib/content-services/src/lib/tree/services/tree.service.spec.ts
index 47a73a96ff..4555311b35 100644
--- a/lib/content-services/src/lib/tree/services/tree.service.spec.ts
+++ b/lib/content-services/src/lib/tree/services/tree.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/services/tree.service.ts b/lib/content-services/src/lib/tree/services/tree.service.ts
index 4ec8aa0c73..483ffadab2 100644
--- a/lib/content-services/src/lib/tree/services/tree.service.ts
+++ b/lib/content-services/src/lib/tree/services/tree.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/tree/tree.module.ts b/lib/content-services/src/lib/tree/tree.module.ts
index 5d01e3966f..6ecef2078a 100644
--- a/lib/content-services/src/lib/tree/tree.module.ts
+++ b/lib/content-services/src/lib/tree/tree.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/base-upload/upload-base.spec.ts b/lib/content-services/src/lib/upload/components/base-upload/upload-base.spec.ts
index 1799a15228..7f9e83203a 100644
--- a/lib/content-services/src/lib/upload/components/base-upload/upload-base.spec.ts
+++ b/lib/content-services/src/lib/upload/components/base-upload/upload-base.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/base-upload/upload-base.ts b/lib/content-services/src/lib/upload/components/base-upload/upload-base.ts
index 3b4205ec55..bd601039cf 100644
--- a/lib/content-services/src/lib/upload/components/base-upload/upload-base.ts
+++ b/lib/content-services/src/lib/upload/components/base-upload/upload-base.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.spec.ts b/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.spec.ts
index a24705dcd3..b653ba3add 100644
--- a/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.spec.ts
+++ b/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.ts b/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.ts
index 3a16261a3a..c933b87655 100644
--- a/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.ts
+++ b/lib/content-services/src/lib/upload/components/file-uploading-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.spec.ts b/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.spec.ts
index 035f6950e9..3bef616869 100644
--- a/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.spec.ts
+++ b/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.ts b/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.ts
index 85b82ef107..4547c74792 100644
--- a/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.ts
+++ b/lib/content-services/src/lib/upload/components/file-uploading-list-row.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/file-uploading-list.component.spec.ts b/lib/content-services/src/lib/upload/components/file-uploading-list.component.spec.ts
index e45755cd00..6b24c5dbf8 100644
--- a/lib/content-services/src/lib/upload/components/file-uploading-list.component.spec.ts
+++ b/lib/content-services/src/lib/upload/components/file-uploading-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/file-uploading-list.component.ts b/lib/content-services/src/lib/upload/components/file-uploading-list.component.ts
index a7ff53f73d..8f1c631371 100644
--- a/lib/content-services/src/lib/upload/components/file-uploading-list.component.ts
+++ b/lib/content-services/src/lib/upload/components/file-uploading-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/upload-button.component.spec.ts b/lib/content-services/src/lib/upload/components/upload-button.component.spec.ts
index 32267a2445..44542c6e83 100644
--- a/lib/content-services/src/lib/upload/components/upload-button.component.spec.ts
+++ b/lib/content-services/src/lib/upload/components/upload-button.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/upload-button.component.ts b/lib/content-services/src/lib/upload/components/upload-button.component.ts
index 29a2a5e772..907a1130b2 100644
--- a/lib/content-services/src/lib/upload/components/upload-button.component.ts
+++ b/lib/content-services/src/lib/upload/components/upload-button.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/upload-drag-area.component.spec.ts b/lib/content-services/src/lib/upload/components/upload-drag-area.component.spec.ts
index 6786fc006c..4b77fc6bf4 100644
--- a/lib/content-services/src/lib/upload/components/upload-drag-area.component.spec.ts
+++ b/lib/content-services/src/lib/upload/components/upload-drag-area.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/upload-drag-area.component.ts b/lib/content-services/src/lib/upload/components/upload-drag-area.component.ts
index 6cca211a39..b0fc903a1d 100644
--- a/lib/content-services/src/lib/upload/components/upload-drag-area.component.ts
+++ b/lib/content-services/src/lib/upload/components/upload-drag-area.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/upload-files.event.ts b/lib/content-services/src/lib/upload/components/upload-files.event.ts
index df2e8483ea..f7167aeb44 100644
--- a/lib/content-services/src/lib/upload/components/upload-files.event.ts
+++ b/lib/content-services/src/lib/upload/components/upload-files.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/components/upload-version-button.component.ts b/lib/content-services/src/lib/upload/components/upload-version-button.component.ts
index bd86b6d4da..38706fbc20 100644
--- a/lib/content-services/src/lib/upload/components/upload-version-button.component.ts
+++ b/lib/content-services/src/lib/upload/components/upload-version-button.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/directives/file-draggable.directive.spec.ts b/lib/content-services/src/lib/upload/directives/file-draggable.directive.spec.ts
index bd64e1a9f7..f2f5327a7f 100644
--- a/lib/content-services/src/lib/upload/directives/file-draggable.directive.spec.ts
+++ b/lib/content-services/src/lib/upload/directives/file-draggable.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/directives/file-draggable.directive.ts b/lib/content-services/src/lib/upload/directives/file-draggable.directive.ts
index 55a1420952..2d62a8f23f 100644
--- a/lib/content-services/src/lib/upload/directives/file-draggable.directive.ts
+++ b/lib/content-services/src/lib/upload/directives/file-draggable.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/directives/toggle-icon.directive.spec.ts b/lib/content-services/src/lib/upload/directives/toggle-icon.directive.spec.ts
index eabece4d5b..5b8b034c1b 100644
--- a/lib/content-services/src/lib/upload/directives/toggle-icon.directive.spec.ts
+++ b/lib/content-services/src/lib/upload/directives/toggle-icon.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/directives/toggle-icon.directive.ts b/lib/content-services/src/lib/upload/directives/toggle-icon.directive.ts
index c9a32891fc..d6a49916eb 100644
--- a/lib/content-services/src/lib/upload/directives/toggle-icon.directive.ts
+++ b/lib/content-services/src/lib/upload/directives/toggle-icon.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/index.ts b/lib/content-services/src/lib/upload/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/upload/index.ts
+++ b/lib/content-services/src/lib/upload/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.spec.ts b/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.spec.ts
index 3e6195a709..e340d5662b 100644
--- a/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.spec.ts
+++ b/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.ts b/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.ts
index 55c2e7ae36..d5bb2a1a70 100644
--- a/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.ts
+++ b/lib/content-services/src/lib/upload/pipes/file-upload-error.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/public-api.ts b/lib/content-services/src/lib/upload/public-api.ts
index e7010786f9..d2e89bc993 100644
--- a/lib/content-services/src/lib/upload/public-api.ts
+++ b/lib/content-services/src/lib/upload/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/upload/upload.module.ts b/lib/content-services/src/lib/upload/upload.module.ts
index d59832f2f6..a0895b58e7 100644
--- a/lib/content-services/src/lib/upload/upload.module.ts
+++ b/lib/content-services/src/lib/upload/upload.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/index.ts b/lib/content-services/src/lib/version-compatibility/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/version-compatibility/index.ts
+++ b/lib/content-services/src/lib/version-compatibility/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/public-api.ts b/lib/content-services/src/lib/version-compatibility/public-api.ts
index e441f5368d..f14ec9bf6c 100644
--- a/lib/content-services/src/lib/version-compatibility/public-api.ts
+++ b/lib/content-services/src/lib/version-compatibility/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/version-compatibility-factory.ts b/lib/content-services/src/lib/version-compatibility/version-compatibility-factory.ts
index 8678d49a2f..1d1e59cfba 100644
--- a/lib/content-services/src/lib/version-compatibility/version-compatibility-factory.ts
+++ b/lib/content-services/src/lib/version-compatibility/version-compatibility-factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.spec.ts b/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.spec.ts
index cd787ceaf9..ea7a42f7c4 100644
--- a/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.spec.ts
+++ b/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.ts b/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.ts
index 93d1a45135..6733268d02 100644
--- a/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.ts
+++ b/lib/content-services/src/lib/version-compatibility/version-compatibility.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/version-compatibility.module.ts b/lib/content-services/src/lib/version-compatibility/version-compatibility.module.ts
index b6648f4812..7ac52069fa 100644
--- a/lib/content-services/src/lib/version-compatibility/version-compatibility.module.ts
+++ b/lib/content-services/src/lib/version-compatibility/version-compatibility.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/version-compatibility.service.spec.ts b/lib/content-services/src/lib/version-compatibility/version-compatibility.service.spec.ts
index 4442f2f3d8..370bd79603 100644
--- a/lib/content-services/src/lib/version-compatibility/version-compatibility.service.spec.ts
+++ b/lib/content-services/src/lib/version-compatibility/version-compatibility.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-compatibility/version-compatibility.service.ts b/lib/content-services/src/lib/version-compatibility/version-compatibility.service.ts
index cc737a6045..54d7a74fee 100644
--- a/lib/content-services/src/lib/version-compatibility/version-compatibility.service.ts
+++ b/lib/content-services/src/lib/version-compatibility/version-compatibility.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/content-version.service.ts b/lib/content-services/src/lib/version-manager/content-version.service.ts
index 3847b580ea..8c5a8ed8b9 100644
--- a/lib/content-services/src/lib/version-manager/content-version.service.ts
+++ b/lib/content-services/src/lib/version-manager/content-version.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/index.ts b/lib/content-services/src/lib/version-manager/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/version-manager/index.ts
+++ b/lib/content-services/src/lib/version-manager/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/public-api.ts b/lib/content-services/src/lib/version-manager/public-api.ts
index bea2422743..b04c162388 100644
--- a/lib/content-services/src/lib/version-manager/public-api.ts
+++ b/lib/content-services/src/lib/version-manager/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-comparison.component.spec.ts b/lib/content-services/src/lib/version-manager/version-comparison.component.spec.ts
index 16d3b8b1f8..d2d8c19e7b 100644
--- a/lib/content-services/src/lib/version-manager/version-comparison.component.spec.ts
+++ b/lib/content-services/src/lib/version-manager/version-comparison.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-comparison.component.ts b/lib/content-services/src/lib/version-manager/version-comparison.component.ts
index 975615b7ab..ab4d498a1b 100644
--- a/lib/content-services/src/lib/version-manager/version-comparison.component.ts
+++ b/lib/content-services/src/lib/version-manager/version-comparison.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-list.component.spec.ts b/lib/content-services/src/lib/version-manager/version-list.component.spec.ts
index 96133904bb..a1fd9e1c91 100644
--- a/lib/content-services/src/lib/version-manager/version-list.component.spec.ts
+++ b/lib/content-services/src/lib/version-manager/version-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-list.component.ts b/lib/content-services/src/lib/version-manager/version-list.component.ts
index cda4f97ea0..65e593d1b7 100644
--- a/lib/content-services/src/lib/version-manager/version-list.component.ts
+++ b/lib/content-services/src/lib/version-manager/version-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-manager.component.spec.ts b/lib/content-services/src/lib/version-manager/version-manager.component.spec.ts
index 7d1632d748..68279d3222 100644
--- a/lib/content-services/src/lib/version-manager/version-manager.component.spec.ts
+++ b/lib/content-services/src/lib/version-manager/version-manager.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-manager.component.ts b/lib/content-services/src/lib/version-manager/version-manager.component.ts
index b96500ae0e..d74e2eb904 100644
--- a/lib/content-services/src/lib/version-manager/version-manager.component.ts
+++ b/lib/content-services/src/lib/version-manager/version-manager.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-manager.module.ts b/lib/content-services/src/lib/version-manager/version-manager.module.ts
index 2ee50870cf..2f8be0ca35 100644
--- a/lib/content-services/src/lib/version-manager/version-manager.module.ts
+++ b/lib/content-services/src/lib/version-manager/version-manager.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-upload.component.spec.ts b/lib/content-services/src/lib/version-manager/version-upload.component.spec.ts
index 9671033a35..2615d2a8fd 100644
--- a/lib/content-services/src/lib/version-manager/version-upload.component.spec.ts
+++ b/lib/content-services/src/lib/version-manager/version-upload.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/version-manager/version-upload.component.ts b/lib/content-services/src/lib/version-manager/version-upload.component.ts
index 52d90e0d59..c7ec3962f0 100644
--- a/lib/content-services/src/lib/version-manager/version-upload.component.ts
+++ b/lib/content-services/src/lib/version-manager/version-upload.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/viewer/alfresco-viewer.module.ts b/lib/content-services/src/lib/viewer/alfresco-viewer.module.ts
index ca578168e2..b1574a2efe 100644
--- a/lib/content-services/src/lib/viewer/alfresco-viewer.module.ts
+++ b/lib/content-services/src/lib/viewer/alfresco-viewer.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.spec.ts b/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.spec.ts
index 596c142042..5f08232e8c 100644
--- a/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.spec.ts
+++ b/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.ts b/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.ts
index 2a14f4660f..e03ce0875c 100644
--- a/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.ts
+++ b/lib/content-services/src/lib/viewer/components/alfresco-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/viewer/index.ts b/lib/content-services/src/lib/viewer/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/viewer/index.ts
+++ b/lib/content-services/src/lib/viewer/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/viewer/public-api.ts b/lib/content-services/src/lib/viewer/public-api.ts
index b3ca172d46..144130ea67 100644
--- a/lib/content-services/src/lib/viewer/public-api.ts
+++ b/lib/content-services/src/lib/viewer/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/webscript/index.ts b/lib/content-services/src/lib/webscript/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/content-services/src/lib/webscript/index.ts
+++ b/lib/content-services/src/lib/webscript/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/webscript/public-api.ts b/lib/content-services/src/lib/webscript/public-api.ts
index 67034d8c6f..83c2aaed58 100644
--- a/lib/content-services/src/lib/webscript/public-api.ts
+++ b/lib/content-services/src/lib/webscript/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/webscript/webscript.component.spec.ts b/lib/content-services/src/lib/webscript/webscript.component.spec.ts
index 726682997f..7bc6eefb3a 100644
--- a/lib/content-services/src/lib/webscript/webscript.component.spec.ts
+++ b/lib/content-services/src/lib/webscript/webscript.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/webscript/webscript.component.ts b/lib/content-services/src/lib/webscript/webscript.component.ts
index a58b43bab3..bbf1306c56 100644
--- a/lib/content-services/src/lib/webscript/webscript.component.ts
+++ b/lib/content-services/src/lib/webscript/webscript.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/lib/webscript/webscript.module.ts b/lib/content-services/src/lib/webscript/webscript.module.ts
index af0025eb29..9f71535412 100644
--- a/lib/content-services/src/lib/webscript/webscript.module.ts
+++ b/lib/content-services/src/lib/webscript/webscript.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/public-api.ts b/lib/content-services/src/public-api.ts
index 8229bee3be..20b98a6286 100644
--- a/lib/content-services/src/public-api.ts
+++ b/lib/content-services/src/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/content-services/src/test.ts b/lib/content-services/src/test.ts
index f65cd98c51..e179e05531 100644
--- a/lib/content-services/src/test.ts
+++ b/lib/content-services/src/test.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/.eslintrc.json b/lib/core/.eslintrc.json
index 11db3c1c30..d5f72094ee 100644
--- a/lib/core/.eslintrc.json
+++ b/lib/core/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
diff --git a/lib/core/api/src/index.ts b/lib/core/api/src/index.ts
index f731288ee9..258b637ed6 100644
--- a/lib/core/api/src/index.ts
+++ b/lib/core/api/src/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.spec.ts b/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.spec.ts
index ab85c9e062..1888774fa4 100644
--- a/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.spec.ts
+++ b/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.ts b/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.ts
index e9841f2c3c..3fc34d9f98 100644
--- a/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.ts
+++ b/lib/core/api/src/lib/alfresco-api/alfresco-api.http-client.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.spec.ts b/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.spec.ts
index 9c6d3c4db8..3ef04dc73f 100644
--- a/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.spec.ts
+++ b/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.ts b/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.ts
index a53df6a731..f10958fe31 100644
--- a/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.ts
+++ b/lib/core/api/src/lib/alfresco-api/alfresco-api.param-encoder.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/alfresco-api/alfresco-api.response-error.ts b/lib/core/api/src/lib/alfresco-api/alfresco-api.response-error.ts
index 02aedffc18..6784e89df2 100644
--- a/lib/core/api/src/lib/alfresco-api/alfresco-api.response-error.ts
+++ b/lib/core/api/src/lib/alfresco-api/alfresco-api.response-error.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.spec.ts b/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.spec.ts
index bf882d1388..7ffb0c85cf 100644
--- a/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.spec.ts
+++ b/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.ts b/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.ts
index e6f0275b65..50ce14b38b 100644
--- a/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.ts
+++ b/lib/core/api/src/lib/alfresco-api/alfresco-api.utils.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/api-client.factory.ts b/lib/core/api/src/lib/api-client.factory.ts
index 0d9af01f6a..6ddd1f8aef 100644
--- a/lib/core/api/src/lib/api-client.factory.ts
+++ b/lib/core/api/src/lib/api-client.factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/api-clients.service.spec.ts b/lib/core/api/src/lib/api-clients.service.spec.ts
index df23b75349..c240b5db6b 100644
--- a/lib/core/api/src/lib/api-clients.service.spec.ts
+++ b/lib/core/api/src/lib/api-clients.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/api-clients.service.ts b/lib/core/api/src/lib/api-clients.service.ts
index 36e11d6ddc..3c01fc56fb 100644
--- a/lib/core/api/src/lib/api-clients.service.ts
+++ b/lib/core/api/src/lib/api-clients.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/clients/activiti/activiti-client.module.ts b/lib/core/api/src/lib/clients/activiti/activiti-client.module.ts
index 4117f32cfe..f906aafdcd 100644
--- a/lib/core/api/src/lib/clients/activiti/activiti-client.module.ts
+++ b/lib/core/api/src/lib/clients/activiti/activiti-client.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/clients/activiti/activiti-client.types.ts b/lib/core/api/src/lib/clients/activiti/activiti-client.types.ts
index 059942f23d..4a768c6c28 100644
--- a/lib/core/api/src/lib/clients/activiti/activiti-client.types.ts
+++ b/lib/core/api/src/lib/clients/activiti/activiti-client.types.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/clients/alfresco-js-clients.module.ts b/lib/core/api/src/lib/clients/alfresco-js-clients.module.ts
index f15d5440fc..cf0ce91346 100644
--- a/lib/core/api/src/lib/clients/alfresco-js-clients.module.ts
+++ b/lib/core/api/src/lib/clients/alfresco-js-clients.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/clients/discovery/discovery-client.module.ts b/lib/core/api/src/lib/clients/discovery/discovery-client.module.ts
index 794de392ee..242e09620b 100644
--- a/lib/core/api/src/lib/clients/discovery/discovery-client.module.ts
+++ b/lib/core/api/src/lib/clients/discovery/discovery-client.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/clients/discovery/discovery-client.types.ts b/lib/core/api/src/lib/clients/discovery/discovery-client.types.ts
index 89cfd5b187..64c7f6e52b 100644
--- a/lib/core/api/src/lib/clients/discovery/discovery-client.types.ts
+++ b/lib/core/api/src/lib/clients/discovery/discovery-client.types.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/clients/index.ts b/lib/core/api/src/lib/clients/index.ts
index c645fc8c2e..0855f4f09a 100644
--- a/lib/core/api/src/lib/clients/index.ts
+++ b/lib/core/api/src/lib/clients/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/api/src/lib/types.ts b/lib/core/api/src/lib/types.ts
index 356d4ceb4f..0ecf1113a0 100644
--- a/lib/core/api/src/lib/types.ts
+++ b/lib/core/api/src/lib/types.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/auth/src/authentication-interceptor/authentication.interceptor.spec.ts b/lib/core/auth/src/authentication-interceptor/authentication.interceptor.spec.ts
index c1cdb5f815..d23062fc19 100644
--- a/lib/core/auth/src/authentication-interceptor/authentication.interceptor.spec.ts
+++ b/lib/core/auth/src/authentication-interceptor/authentication.interceptor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/auth/src/authentication-interceptor/authentication.interceptor.ts b/lib/core/auth/src/authentication-interceptor/authentication.interceptor.ts
index fbf7cb04de..94be3ade92 100644
--- a/lib/core/auth/src/authentication-interceptor/authentication.interceptor.ts
+++ b/lib/core/auth/src/authentication-interceptor/authentication.interceptor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/auth/src/authentication.ts b/lib/core/auth/src/authentication.ts
index 583f24f58f..05bf002682 100644
--- a/lib/core/auth/src/authentication.ts
+++ b/lib/core/auth/src/authentication.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/auth/src/index.ts b/lib/core/auth/src/index.ts
index 28b7be220c..a8042bc7b0 100644
--- a/lib/core/auth/src/index.ts
+++ b/lib/core/auth/src/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/index.ts b/lib/core/index.ts
index eb9b46c8bc..7d18c6831c 100644
--- a/lib/core/index.ts
+++ b/lib/core/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/package.json b/lib/core/package.json
index 18e7745790..00af364e19 100644
--- a/lib/core/package.json
+++ b/lib/core/package.json
@@ -2,7 +2,7 @@
"name": "@alfresco/adf-core",
"description": "Alfresco ADF core",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/lib/core/shell/public-api.ts b/lib/core/shell/public-api.ts
index 4600f4568e..cbede4f3ae 100644
--- a/lib/core/shell/public-api.ts
+++ b/lib/core/shell/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/shell/src/index.ts b/lib/core/shell/src/index.ts
index 8862dbf042..fb7fc8e8df 100644
--- a/lib/core/shell/src/index.ts
+++ b/lib/core/shell/src/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/shell/src/lib/components/shell/shell.component.spec.ts b/lib/core/shell/src/lib/components/shell/shell.component.spec.ts
index dd0ccca55a..db5a8268d7 100644
--- a/lib/core/shell/src/lib/components/shell/shell.component.spec.ts
+++ b/lib/core/shell/src/lib/components/shell/shell.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/shell/src/lib/components/shell/shell.component.ts b/lib/core/shell/src/lib/components/shell/shell.component.ts
index 53920f3459..a8cfacdf62 100644
--- a/lib/core/shell/src/lib/components/shell/shell.component.ts
+++ b/lib/core/shell/src/lib/components/shell/shell.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/shell/src/lib/services/shell-app.service.ts b/lib/core/shell/src/lib/services/shell-app.service.ts
index 9d46b221f5..60f93bcfd8 100644
--- a/lib/core/shell/src/lib/services/shell-app.service.ts
+++ b/lib/core/shell/src/lib/services/shell-app.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/shell/src/lib/shell.module.ts b/lib/core/shell/src/lib/shell.module.ts
index 287c907d19..95045762f7 100644
--- a/lib/core/shell/src/lib/shell.module.ts
+++ b/lib/core/shell/src/lib/shell.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/shell/src/lib/shell.routes.ts b/lib/core/shell/src/lib/shell.routes.ts
index eef06ce737..a4406ff61b 100644
--- a/lib/core/shell/src/lib/shell.routes.ts
+++ b/lib/core/shell/src/lib/shell.routes.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-extension-list/about-extension-list.component.ts b/lib/core/src/lib/about/about-extension-list/about-extension-list.component.ts
index 3757eb727f..3abc3b511a 100644
--- a/lib/core/src/lib/about/about-extension-list/about-extension-list.component.ts
+++ b/lib/core/src/lib/about/about-extension-list/about-extension-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-github-link/about-github-link.component.spec.ts b/lib/core/src/lib/about/about-github-link/about-github-link.component.spec.ts
index 19f56aec83..f399ed9c5b 100644
--- a/lib/core/src/lib/about/about-github-link/about-github-link.component.spec.ts
+++ b/lib/core/src/lib/about/about-github-link/about-github-link.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-github-link/about-github-link.component.ts b/lib/core/src/lib/about/about-github-link/about-github-link.component.ts
index 36c91e8221..259792a788 100644
--- a/lib/core/src/lib/about/about-github-link/about-github-link.component.ts
+++ b/lib/core/src/lib/about/about-github-link/about-github-link.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-license-list/about-license-list.component.ts b/lib/core/src/lib/about/about-license-list/about-license-list.component.ts
index 7c091e2e6a..b6686d6063 100644
--- a/lib/core/src/lib/about/about-license-list/about-license-list.component.ts
+++ b/lib/core/src/lib/about/about-license-list/about-license-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-module-list/module-list.component.ts b/lib/core/src/lib/about/about-module-list/module-list.component.ts
index c5040d885d..ba4887b1e7 100644
--- a/lib/core/src/lib/about/about-module-list/module-list.component.ts
+++ b/lib/core/src/lib/about/about-module-list/module-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-package/package-list.component.ts b/lib/core/src/lib/about/about-package/package-list.component.ts
index f938027abc..5e84d83d06 100644
--- a/lib/core/src/lib/about/about-package/package-list.component.ts
+++ b/lib/core/src/lib/about/about-package/package-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-panel.directive.ts b/lib/core/src/lib/about/about-panel.directive.ts
index c078a47746..7287a62af4 100644
--- a/lib/core/src/lib/about/about-panel.directive.ts
+++ b/lib/core/src/lib/about/about-panel.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-platform-version/about-platform-version.component.ts b/lib/core/src/lib/about/about-platform-version/about-platform-version.component.ts
index 8726f7496d..33b36e4f1d 100644
--- a/lib/core/src/lib/about/about-platform-version/about-platform-version.component.ts
+++ b/lib/core/src/lib/about/about-platform-version/about-platform-version.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-repository-info/about-repository-info.component.ts b/lib/core/src/lib/about/about-repository-info/about-repository-info.component.ts
index 874882412c..7b8df7a97d 100644
--- a/lib/core/src/lib/about/about-repository-info/about-repository-info.component.ts
+++ b/lib/core/src/lib/about/about-repository-info/about-repository-info.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-repository-info/repository-info.interface.ts b/lib/core/src/lib/about/about-repository-info/repository-info.interface.ts
index 8bf13d102b..127f4522f2 100644
--- a/lib/core/src/lib/about/about-repository-info/repository-info.interface.ts
+++ b/lib/core/src/lib/about/about-repository-info/repository-info.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-server-settings/about-server-settings.component.spec.ts b/lib/core/src/lib/about/about-server-settings/about-server-settings.component.spec.ts
index 452c8e37c8..b9576dd467 100644
--- a/lib/core/src/lib/about/about-server-settings/about-server-settings.component.spec.ts
+++ b/lib/core/src/lib/about/about-server-settings/about-server-settings.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-server-settings/about-server-settings.component.ts b/lib/core/src/lib/about/about-server-settings/about-server-settings.component.ts
index 24e354aca9..0ce46dd974 100644
--- a/lib/core/src/lib/about/about-server-settings/about-server-settings.component.ts
+++ b/lib/core/src/lib/about/about-server-settings/about-server-settings.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about-status-list/about-status-list.component.ts b/lib/core/src/lib/about/about-status-list/about-status-list.component.ts
index 15267ae1f8..77930e3eab 100644
--- a/lib/core/src/lib/about/about-status-list/about-status-list.component.ts
+++ b/lib/core/src/lib/about/about-status-list/about-status-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about.component.stories.ts b/lib/core/src/lib/about/about.component.stories.ts
index 715b00592b..3a4bcb9b28 100644
--- a/lib/core/src/lib/about/about.component.stories.ts
+++ b/lib/core/src/lib/about/about.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about.component.ts b/lib/core/src/lib/about/about.component.ts
index 0507ba20f3..5e02eaa525 100644
--- a/lib/core/src/lib/about/about.component.ts
+++ b/lib/core/src/lib/about/about.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about.mock.ts b/lib/core/src/lib/about/about.mock.ts
index 6daf8c1369..5236a0cc1c 100644
--- a/lib/core/src/lib/about/about.mock.ts
+++ b/lib/core/src/lib/about/about.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/about.module.ts b/lib/core/src/lib/about/about.module.ts
index 06240aa904..e13f9339b0 100644
--- a/lib/core/src/lib/about/about.module.ts
+++ b/lib/core/src/lib/about/about.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/index.ts b/lib/core/src/lib/about/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/about/index.ts
+++ b/lib/core/src/lib/about/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/interfaces.ts b/lib/core/src/lib/about/interfaces.ts
index 335714804a..dd314230e6 100644
--- a/lib/core/src/lib/about/interfaces.ts
+++ b/lib/core/src/lib/about/interfaces.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/public-api.ts b/lib/core/src/lib/about/public-api.ts
index e80b4b9d3a..323da2f5a1 100644
--- a/lib/core/src/lib/about/public-api.ts
+++ b/lib/core/src/lib/about/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/about/services/aae-info.service.ts b/lib/core/src/lib/about/services/aae-info.service.ts
index a3745aacc8..d8f13c51e8 100644
--- a/lib/core/src/lib/about/services/aae-info.service.ts
+++ b/lib/core/src/lib/about/services/aae-info.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/api-factories/alfresco-api-service-with-angular-based-http-client.ts b/lib/core/src/lib/api-factories/alfresco-api-service-with-angular-based-http-client.ts
index e1328686da..a59a9d97a2 100644
--- a/lib/core/src/lib/api-factories/alfresco-api-service-with-angular-based-http-client.ts
+++ b/lib/core/src/lib/api-factories/alfresco-api-service-with-angular-based-http-client.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/api-factories/alfresco-api-v2-loader.service.ts b/lib/core/src/lib/api-factories/alfresco-api-v2-loader.service.ts
index a2a3d94b68..39794ce078 100644
--- a/lib/core/src/lib/api-factories/alfresco-api-v2-loader.service.ts
+++ b/lib/core/src/lib/api-factories/alfresco-api-v2-loader.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/api-factories/legacy-api-client.factory.ts b/lib/core/src/lib/api-factories/legacy-api-client.factory.ts
index 767120a9d4..7f87468678 100644
--- a/lib/core/src/lib/api-factories/legacy-api-client.factory.ts
+++ b/lib/core/src/lib/api-factories/legacy-api-client.factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/api-factories/legacy-api-client.module.ts b/lib/core/src/lib/api-factories/legacy-api-client.module.ts
index d7db9feacf..e645fff543 100644
--- a/lib/core/src/lib/api-factories/legacy-api-client.module.ts
+++ b/lib/core/src/lib/api-factories/legacy-api-client.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/app-config.loader.ts b/lib/core/src/lib/app-config/app-config.loader.ts
index 76efe92e64..668b5aa772 100644
--- a/lib/core/src/lib/app-config/app-config.loader.ts
+++ b/lib/core/src/lib/app-config/app-config.loader.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/app-config.module.ts b/lib/core/src/lib/app-config/app-config.module.ts
index 7a140d5981..54a3917dbd 100644
--- a/lib/core/src/lib/app-config/app-config.module.ts
+++ b/lib/core/src/lib/app-config/app-config.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/app-config.pipe.ts b/lib/core/src/lib/app-config/app-config.pipe.ts
index 5372aea30d..9727204ce0 100644
--- a/lib/core/src/lib/app-config/app-config.pipe.ts
+++ b/lib/core/src/lib/app-config/app-config.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/app-config.service.spec.ts b/lib/core/src/lib/app-config/app-config.service.spec.ts
index 5a14a827f9..d7352fba3e 100644
--- a/lib/core/src/lib/app-config/app-config.service.spec.ts
+++ b/lib/core/src/lib/app-config/app-config.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/app-config.service.ts b/lib/core/src/lib/app-config/app-config.service.ts
index a98e70b1cd..03faa4fb6c 100644
--- a/lib/core/src/lib/app-config/app-config.service.ts
+++ b/lib/core/src/lib/app-config/app-config.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/debug-app-config.service.ts b/lib/core/src/lib/app-config/debug-app-config.service.ts
index 4b6f7a48b5..5e37eb60bb 100644
--- a/lib/core/src/lib/app-config/debug-app-config.service.ts
+++ b/lib/core/src/lib/app-config/debug-app-config.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/index.ts b/lib/core/src/lib/app-config/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/app-config/index.ts
+++ b/lib/core/src/lib/app-config/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/app-config/public-api.ts b/lib/core/src/lib/app-config/public-api.ts
index 3419dbb43c..76d9e2d9f0 100644
--- a/lib/core/src/lib/app-config/public-api.ts
+++ b/lib/core/src/lib/app-config/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/authentication-interceptor/auth-bearer.interceptor.ts b/lib/core/src/lib/auth/authentication-interceptor/auth-bearer.interceptor.ts
index 5398309731..e56e9dc297 100644
--- a/lib/core/src/lib/auth/authentication-interceptor/auth-bearer.interceptor.ts
+++ b/lib/core/src/lib/auth/authentication-interceptor/auth-bearer.interceptor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard-base.ts b/lib/core/src/lib/auth/guard/auth-guard-base.ts
index 8269a1bba6..3ddba3a0a2 100644
--- a/lib/core/src/lib/auth/guard/auth-guard-base.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard-base.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard-bpm.service.spec.ts b/lib/core/src/lib/auth/guard/auth-guard-bpm.service.spec.ts
index 6aa09099cc..f4f5b2b6e3 100644
--- a/lib/core/src/lib/auth/guard/auth-guard-bpm.service.spec.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard-bpm.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard-bpm.service.ts b/lib/core/src/lib/auth/guard/auth-guard-bpm.service.ts
index 7f2d9a67e7..b119d46901 100644
--- a/lib/core/src/lib/auth/guard/auth-guard-bpm.service.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard-bpm.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard-ecm.service.spec.ts b/lib/core/src/lib/auth/guard/auth-guard-ecm.service.spec.ts
index 99ba8feef1..b8f54cd2b9 100644
--- a/lib/core/src/lib/auth/guard/auth-guard-ecm.service.spec.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard-ecm.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard-ecm.service.ts b/lib/core/src/lib/auth/guard/auth-guard-ecm.service.ts
index 90e1e94e89..c00b6e7bd7 100644
--- a/lib/core/src/lib/auth/guard/auth-guard-ecm.service.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard-ecm.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.spec.ts b/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.spec.ts
index 469d4c78db..4cb7955203 100644
--- a/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.spec.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.ts b/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.ts
index 212548ada6..816e21f328 100644
--- a/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard-sso-role.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard.service.spec.ts b/lib/core/src/lib/auth/guard/auth-guard.service.spec.ts
index c8eda13f26..21a146b27f 100644
--- a/lib/core/src/lib/auth/guard/auth-guard.service.spec.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/guard/auth-guard.service.ts b/lib/core/src/lib/auth/guard/auth-guard.service.ts
index bfcd322d94..e41729cef0 100644
--- a/lib/core/src/lib/auth/guard/auth-guard.service.ts
+++ b/lib/core/src/lib/auth/guard/auth-guard.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/index.ts b/lib/core/src/lib/auth/index.ts
index 4dcc419a3c..7921b11998 100644
--- a/lib/core/src/lib/auth/index.ts
+++ b/lib/core/src/lib/auth/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/interfaces/identity-group.interface.ts b/lib/core/src/lib/auth/interfaces/identity-group.interface.ts
index d2aa7737ce..4d82a2e60d 100644
--- a/lib/core/src/lib/auth/interfaces/identity-group.interface.ts
+++ b/lib/core/src/lib/auth/interfaces/identity-group.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/interfaces/identity-user.service.interface.ts b/lib/core/src/lib/auth/interfaces/identity-user.service.interface.ts
index 924b44118e..6d872d6b91 100644
--- a/lib/core/src/lib/auth/interfaces/identity-user.service.interface.ts
+++ b/lib/core/src/lib/auth/interfaces/identity-user.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/interfaces/openid-configuration.interface.ts b/lib/core/src/lib/auth/interfaces/openid-configuration.interface.ts
index 2d8b6c4089..a8136aa4fc 100644
--- a/lib/core/src/lib/auth/interfaces/openid-configuration.interface.ts
+++ b/lib/core/src/lib/auth/interfaces/openid-configuration.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/auth-config.service.mock.ts b/lib/core/src/lib/auth/mock/auth-config.service.mock.ts
index 1014cd11a7..2ca8811594 100644
--- a/lib/core/src/lib/auth/mock/auth-config.service.mock.ts
+++ b/lib/core/src/lib/auth/mock/auth-config.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/authentication.service.mock.ts b/lib/core/src/lib/auth/mock/authentication.service.mock.ts
index 9472c36114..2057600863 100644
--- a/lib/core/src/lib/auth/mock/authentication.service.mock.ts
+++ b/lib/core/src/lib/auth/mock/authentication.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/identity-group.mock.ts b/lib/core/src/lib/auth/mock/identity-group.mock.ts
index 0a0d4cd291..a34bb7a9b3 100644
--- a/lib/core/src/lib/auth/mock/identity-group.mock.ts
+++ b/lib/core/src/lib/auth/mock/identity-group.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/identity-group.service.mock.ts b/lib/core/src/lib/auth/mock/identity-group.service.mock.ts
index 99ec5b7595..388ad24e02 100644
--- a/lib/core/src/lib/auth/mock/identity-group.service.mock.ts
+++ b/lib/core/src/lib/auth/mock/identity-group.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/identity-user.mock.ts b/lib/core/src/lib/auth/mock/identity-user.mock.ts
index 22c02909c4..e3099edc13 100644
--- a/lib/core/src/lib/auth/mock/identity-user.mock.ts
+++ b/lib/core/src/lib/auth/mock/identity-user.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/identity-user.service.mock.ts b/lib/core/src/lib/auth/mock/identity-user.service.mock.ts
index 04a69eaa93..2f49759b64 100644
--- a/lib/core/src/lib/auth/mock/identity-user.service.mock.ts
+++ b/lib/core/src/lib/auth/mock/identity-user.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/jwt-helper.service.spec.ts b/lib/core/src/lib/auth/mock/jwt-helper.service.spec.ts
index 3a2a4deb34..f23c216c3c 100644
--- a/lib/core/src/lib/auth/mock/jwt-helper.service.spec.ts
+++ b/lib/core/src/lib/auth/mock/jwt-helper.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/mock/oauth2.service.mock.ts b/lib/core/src/lib/auth/mock/oauth2.service.mock.ts
index 63c787f1ad..75e9e63978 100644
--- a/lib/core/src/lib/auth/mock/oauth2.service.mock.ts
+++ b/lib/core/src/lib/auth/mock/oauth2.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/models/application-access.model.ts b/lib/core/src/lib/auth/models/application-access.model.ts
index 5662a9a49d..a01301a9a0 100644
--- a/lib/core/src/lib/auth/models/application-access.model.ts
+++ b/lib/core/src/lib/auth/models/application-access.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/models/identity-group.model.ts b/lib/core/src/lib/auth/models/identity-group.model.ts
index f2862e1a0e..8265f28b28 100644
--- a/lib/core/src/lib/auth/models/identity-group.model.ts
+++ b/lib/core/src/lib/auth/models/identity-group.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/models/identity-role.model.ts b/lib/core/src/lib/auth/models/identity-role.model.ts
index b83f7feb98..f443bbb562 100644
--- a/lib/core/src/lib/auth/models/identity-role.model.ts
+++ b/lib/core/src/lib/auth/models/identity-role.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/models/identity-user.model.ts b/lib/core/src/lib/auth/models/identity-user.model.ts
index cd9f5f2547..d92a873ed0 100644
--- a/lib/core/src/lib/auth/models/identity-user.model.ts
+++ b/lib/core/src/lib/auth/models/identity-user.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/models/oauth-config.model.ts b/lib/core/src/lib/auth/models/oauth-config.model.ts
index be4cc6a1c9..ec143a1c58 100644
--- a/lib/core/src/lib/auth/models/oauth-config.model.ts
+++ b/lib/core/src/lib/auth/models/oauth-config.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/models/redirection.model.ts b/lib/core/src/lib/auth/models/redirection.model.ts
index 47e3cc5134..843be8719a 100644
--- a/lib/core/src/lib/auth/models/redirection.model.ts
+++ b/lib/core/src/lib/auth/models/redirection.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/models/user-access.model.ts b/lib/core/src/lib/auth/models/user-access.model.ts
index 21e739c54e..ee37ccf4e6 100644
--- a/lib/core/src/lib/auth/models/user-access.model.ts
+++ b/lib/core/src/lib/auth/models/user-access.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/auth-config.service.spec.ts b/lib/core/src/lib/auth/oidc/auth-config.service.spec.ts
index a379c7c0a7..90392c0c1b 100644
--- a/lib/core/src/lib/auth/oidc/auth-config.service.spec.ts
+++ b/lib/core/src/lib/auth/oidc/auth-config.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/auth-config.service.ts b/lib/core/src/lib/auth/oidc/auth-config.service.ts
index bc4fe194d5..cf46384d3b 100644
--- a/lib/core/src/lib/auth/oidc/auth-config.service.ts
+++ b/lib/core/src/lib/auth/oidc/auth-config.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/auth-config.ts b/lib/core/src/lib/auth/oidc/auth-config.ts
index b58d70413c..adfc5bf4c1 100644
--- a/lib/core/src/lib/auth/oidc/auth-config.ts
+++ b/lib/core/src/lib/auth/oidc/auth-config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/auth-routing.module.ts b/lib/core/src/lib/auth/oidc/auth-routing.module.ts
index bd16903c31..7308e3cde1 100644
--- a/lib/core/src/lib/auth/oidc/auth-routing.module.ts
+++ b/lib/core/src/lib/auth/oidc/auth-routing.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/auth.module.ts b/lib/core/src/lib/auth/oidc/auth.module.ts
index 514010ce16..e9e28c29d7 100644
--- a/lib/core/src/lib/auth/oidc/auth.module.ts
+++ b/lib/core/src/lib/auth/oidc/auth.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/auth.service.ts b/lib/core/src/lib/auth/oidc/auth.service.ts
index 6bcac4211c..4c3be8fc7f 100644
--- a/lib/core/src/lib/auth/oidc/auth.service.ts
+++ b/lib/core/src/lib/auth/oidc/auth.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/oidc-auth.guard.spec.ts b/lib/core/src/lib/auth/oidc/oidc-auth.guard.spec.ts
index 7cd7fa014b..2f5f8c50a8 100644
--- a/lib/core/src/lib/auth/oidc/oidc-auth.guard.spec.ts
+++ b/lib/core/src/lib/auth/oidc/oidc-auth.guard.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/oidc-auth.guard.ts b/lib/core/src/lib/auth/oidc/oidc-auth.guard.ts
index 914a051aaa..fa0d4e7738 100644
--- a/lib/core/src/lib/auth/oidc/oidc-auth.guard.ts
+++ b/lib/core/src/lib/auth/oidc/oidc-auth.guard.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/oidc-authentication.service.ts b/lib/core/src/lib/auth/oidc/oidc-authentication.service.ts
index 791b85a758..b27bfa702e 100644
--- a/lib/core/src/lib/auth/oidc/oidc-authentication.service.ts
+++ b/lib/core/src/lib/auth/oidc/oidc-authentication.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/public-api.ts b/lib/core/src/lib/auth/oidc/public-api.ts
index fbc734587d..11bef85116 100644
--- a/lib/core/src/lib/auth/oidc/public-api.ts
+++ b/lib/core/src/lib/auth/oidc/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/redirect-auth.service.ts b/lib/core/src/lib/auth/oidc/redirect-auth.service.ts
index 1c5e85fcdf..0e87c75bed 100644
--- a/lib/core/src/lib/auth/oidc/redirect-auth.service.ts
+++ b/lib/core/src/lib/auth/oidc/redirect-auth.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.spec.ts b/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.spec.ts
index c49b65d798..4a1f6c2d7d 100644
--- a/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.spec.ts
+++ b/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.ts b/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.ts
index a054aa800e..9492740b35 100644
--- a/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.ts
+++ b/lib/core/src/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/public-api.ts b/lib/core/src/lib/auth/public-api.ts
index c959605d58..59454dbb3a 100644
--- a/lib/core/src/lib/auth/public-api.ts
+++ b/lib/core/src/lib/auth/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/authentication.service.spec.ts b/lib/core/src/lib/auth/services/authentication.service.spec.ts
index 487cd4c6be..da88ee4263 100644
--- a/lib/core/src/lib/auth/services/authentication.service.spec.ts
+++ b/lib/core/src/lib/auth/services/authentication.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/authentication.service.ts b/lib/core/src/lib/auth/services/authentication.service.ts
index 6a7337f350..3570e98a49 100644
--- a/lib/core/src/lib/auth/services/authentication.service.ts
+++ b/lib/core/src/lib/auth/services/authentication.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/identity-group.service.spec.ts b/lib/core/src/lib/auth/services/identity-group.service.spec.ts
index 2d25f4f925..9d9c76205c 100644
--- a/lib/core/src/lib/auth/services/identity-group.service.spec.ts
+++ b/lib/core/src/lib/auth/services/identity-group.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/identity-group.service.ts b/lib/core/src/lib/auth/services/identity-group.service.ts
index fe20aead48..9cf977a90b 100644
--- a/lib/core/src/lib/auth/services/identity-group.service.ts
+++ b/lib/core/src/lib/auth/services/identity-group.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/identity-role.service.spec.ts b/lib/core/src/lib/auth/services/identity-role.service.spec.ts
index 1731673e2e..1387aa3963 100644
--- a/lib/core/src/lib/auth/services/identity-role.service.spec.ts
+++ b/lib/core/src/lib/auth/services/identity-role.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/identity-role.service.ts b/lib/core/src/lib/auth/services/identity-role.service.ts
index 7e1b1897da..bdef798454 100644
--- a/lib/core/src/lib/auth/services/identity-role.service.ts
+++ b/lib/core/src/lib/auth/services/identity-role.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/identity-user.service.spec.ts b/lib/core/src/lib/auth/services/identity-user.service.spec.ts
index 05568b5cdb..4e0e97a686 100644
--- a/lib/core/src/lib/auth/services/identity-user.service.spec.ts
+++ b/lib/core/src/lib/auth/services/identity-user.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/identity-user.service.ts b/lib/core/src/lib/auth/services/identity-user.service.ts
index c7caddf0f7..dfb1ee2700 100644
--- a/lib/core/src/lib/auth/services/identity-user.service.ts
+++ b/lib/core/src/lib/auth/services/identity-user.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/jwt-helper.service.spec.ts b/lib/core/src/lib/auth/services/jwt-helper.service.spec.ts
index d4d603d4f0..860fc5f993 100644
--- a/lib/core/src/lib/auth/services/jwt-helper.service.spec.ts
+++ b/lib/core/src/lib/auth/services/jwt-helper.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/jwt-helper.service.ts b/lib/core/src/lib/auth/services/jwt-helper.service.ts
index f58802b9d4..438f3bfd48 100644
--- a/lib/core/src/lib/auth/services/jwt-helper.service.ts
+++ b/lib/core/src/lib/auth/services/jwt-helper.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/oauth2.service.ts b/lib/core/src/lib/auth/services/oauth2.service.ts
index db6fa14a20..6a89ddf7a1 100644
--- a/lib/core/src/lib/auth/services/oauth2.service.ts
+++ b/lib/core/src/lib/auth/services/oauth2.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/user-access.service.spec.ts b/lib/core/src/lib/auth/services/user-access.service.spec.ts
index 9008d645a3..b69523d0da 100644
--- a/lib/core/src/lib/auth/services/user-access.service.spec.ts
+++ b/lib/core/src/lib/auth/services/user-access.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/auth/services/user-access.service.ts b/lib/core/src/lib/auth/services/user-access.service.ts
index 67f2019e94..ae65f21afb 100644
--- a/lib/core/src/lib/auth/services/user-access.service.ts
+++ b/lib/core/src/lib/auth/services/user-access.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/blank-page/blank-page.component.ts b/lib/core/src/lib/blank-page/blank-page.component.ts
index 8b45235161..dfeda935ef 100644
--- a/lib/core/src/lib/blank-page/blank-page.component.ts
+++ b/lib/core/src/lib/blank-page/blank-page.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/blank-page/blank-page.module.ts b/lib/core/src/lib/blank-page/blank-page.module.ts
index 0e23d6ad15..6ac3375007 100644
--- a/lib/core/src/lib/blank-page/blank-page.module.ts
+++ b/lib/core/src/lib/blank-page/blank-page.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/blank-page/index.ts b/lib/core/src/lib/blank-page/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/blank-page/index.ts
+++ b/lib/core/src/lib/blank-page/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/blank-page/public-api.ts b/lib/core/src/lib/blank-page/public-api.ts
index f48888c5df..85921ca463 100644
--- a/lib/core/src/lib/blank-page/public-api.ts
+++ b/lib/core/src/lib/blank-page/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/buttons-menu/buttons-menu.component.spec.ts b/lib/core/src/lib/buttons-menu/buttons-menu.component.spec.ts
index 85d0e0ed97..884b723388 100644
--- a/lib/core/src/lib/buttons-menu/buttons-menu.component.spec.ts
+++ b/lib/core/src/lib/buttons-menu/buttons-menu.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/buttons-menu/buttons-menu.component.stories.ts b/lib/core/src/lib/buttons-menu/buttons-menu.component.stories.ts
index 6d62a4eba1..2b25ee2826 100644
--- a/lib/core/src/lib/buttons-menu/buttons-menu.component.stories.ts
+++ b/lib/core/src/lib/buttons-menu/buttons-menu.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/buttons-menu/buttons-menu.component.ts b/lib/core/src/lib/buttons-menu/buttons-menu.component.ts
index dcf0b3ca33..8e4f21ecbf 100644
--- a/lib/core/src/lib/buttons-menu/buttons-menu.component.ts
+++ b/lib/core/src/lib/buttons-menu/buttons-menu.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/buttons-menu/buttons-menu.module.ts b/lib/core/src/lib/buttons-menu/buttons-menu.module.ts
index 8404ec2cd8..683b4f8c70 100644
--- a/lib/core/src/lib/buttons-menu/buttons-menu.module.ts
+++ b/lib/core/src/lib/buttons-menu/buttons-menu.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/buttons-menu/index.ts b/lib/core/src/lib/buttons-menu/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/buttons-menu/index.ts
+++ b/lib/core/src/lib/buttons-menu/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/buttons-menu/public-api.ts b/lib/core/src/lib/buttons-menu/public-api.ts
index 3d85cc0dbb..fca124d594 100644
--- a/lib/core/src/lib/buttons-menu/public-api.ts
+++ b/lib/core/src/lib/buttons-menu/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/card-view.module.ts b/lib/core/src/lib/card-view/card-view.module.ts
index e683cf3e38..799a0abe94 100644
--- a/lib/core/src/lib/card-view/card-view.module.ts
+++ b/lib/core/src/lib/card-view/card-view.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/base-card-view.ts b/lib/core/src/lib/card-view/components/base-card-view.ts
index e63543a06f..a6e6272ada 100644
--- a/lib/core/src/lib/card-view/components/base-card-view.ts
+++ b/lib/core/src/lib/card-view/components/base-card-view.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.spec.ts
index ea098ecbd9..bbeb2a4d15 100644
--- a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.stories.ts b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.stories.ts
index b4f0b75e08..a467f34408 100644
--- a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.ts b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.ts
index 903391086f..df7361738d 100644
--- a/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.spec.ts
index 58e2741ee6..bf946487b3 100644
--- a/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.stories.ts b/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.stories.ts
index a340a7b9b1..bd763014bf 100644
--- a/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.ts b/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.ts
index 8992de97e4..16e0e6a4cc 100644
--- a/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts
index e92097e957..2e1a2299de 100644
--- a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.stories.ts b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.stories.ts
index 95ac00f094..d316f0b18f 100644
--- a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts
index 7e0939243c..c6ea729bab 100644
--- a/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.spec.ts
index 48b2e562d4..db05e41a57 100644
--- a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts
index 2b953df5c0..761cc77f3a 100644
--- a/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.spec.ts
index 3242da43eb..ec89ff3fe3 100644
--- a/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.stories.ts b/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.stories.ts
index 30daff2ab0..f1771ba4ef 100644
--- a/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.ts b/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.ts
index 4cfeace997..22ee7cad22 100644
--- a/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.spec.ts
index f3ba3293f1..698423a32e 100644
--- a/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.stories.ts b/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.stories.ts
index ccc1784ee0..0da8956fa2 100644
--- a/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.ts b/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.ts
index 3b9cee88e5..f731c06f94 100644
--- a/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.spec.ts
index 7851ed2558..94a124813b 100644
--- a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.stories.ts b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.stories.ts
index e4c2ee6c40..9499e82292 100644
--- a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.ts b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.ts
index 675fd9c98c..fe41f37568 100644
--- a/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.spec.ts
index 5042d3b6c2..a50713907b 100644
--- a/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.ts b/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.ts
index 339f0975bd..f53dafc4da 100644
--- a/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts
index 5eb1b4214d..935669dd64 100644
--- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.stories.ts b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.stories.ts
index 9e5a3d365b..45516e954c 100644
--- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts
index 2f3a4f18eb..92bdd92d2f 100644
--- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view.components.ts b/lib/core/src/lib/card-view/components/card-view.components.ts
index 92f3690909..659dea3fc2 100644
--- a/lib/core/src/lib/card-view/components/card-view.components.ts
+++ b/lib/core/src/lib/card-view/components/card-view.components.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view/card-view.component.spec.ts b/lib/core/src/lib/card-view/components/card-view/card-view.component.spec.ts
index 7ee119ae13..fd070f3ffc 100644
--- a/lib/core/src/lib/card-view/components/card-view/card-view.component.spec.ts
+++ b/lib/core/src/lib/card-view/components/card-view/card-view.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view/card-view.component.stories.ts b/lib/core/src/lib/card-view/components/card-view/card-view.component.stories.ts
index 8aaacb1064..7eb6275253 100644
--- a/lib/core/src/lib/card-view/components/card-view/card-view.component.stories.ts
+++ b/lib/core/src/lib/card-view/components/card-view/card-view.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/components/card-view/card-view.component.ts b/lib/core/src/lib/card-view/components/card-view/card-view.component.ts
index 78a41fcb92..a57fcae03d 100644
--- a/lib/core/src/lib/card-view/components/card-view/card-view.component.ts
+++ b/lib/core/src/lib/card-view/components/card-view/card-view.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/directives/card-view-content-proxy.directive.ts b/lib/core/src/lib/card-view/directives/card-view-content-proxy.directive.ts
index aceb0fda50..d8192c10c3 100644
--- a/lib/core/src/lib/card-view/directives/card-view-content-proxy.directive.ts
+++ b/lib/core/src/lib/card-view/directives/card-view-content-proxy.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/index.ts b/lib/core/src/lib/card-view/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/card-view/index.ts
+++ b/lib/core/src/lib/card-view/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/base-card-view-update.interface.ts b/lib/core/src/lib/card-view/interfaces/base-card-view-update.interface.ts
index b6f63319e8..5cf3d2e3a0 100644
--- a/lib/core/src/lib/card-view/interfaces/base-card-view-update.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/base-card-view-update.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-arrayitem-properties.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-arrayitem-properties.interface.ts
index 47f8eb9551..cc549ab58b 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-arrayitem-properties.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-arrayitem-properties.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-boolitem-properties.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-boolitem-properties.interface.ts
index 99dbeab9b7..39a5630dd4 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-boolitem-properties.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-boolitem-properties.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-dateitem-properties.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-dateitem-properties.interface.ts
index 7e3ca8ab5a..43cccff9c2 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-dateitem-properties.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-dateitem-properties.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-item-properties.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-item-properties.interface.ts
index a82525b24d..d9780d9cfa 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-item-properties.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-item-properties.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-item-validator.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-item-validator.interface.ts
index 9f4f6747b9..ad5178c719 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-item-validator.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-item-validator.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-item.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-item.interface.ts
index bb1ec25669..b8270e14b4 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-item.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-item.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.ts
index 983dac856a..3b76b002eb 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-selectitem-properties.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-selectitem-properties.interface.ts
index 04eba95afc..f600258e30 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-selectitem-properties.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-selectitem-properties.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.ts
index dcfbe6f165..16ae8bcc2f 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view-textitem-properties.interface.ts b/lib/core/src/lib/card-view/interfaces/card-view-textitem-properties.interface.ts
index 511271e8d3..a2432ea9f6 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view-textitem-properties.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view-textitem-properties.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/card-view.interfaces.ts b/lib/core/src/lib/card-view/interfaces/card-view.interfaces.ts
index 22b403b267..9da7341b96 100644
--- a/lib/core/src/lib/card-view/interfaces/card-view.interfaces.ts
+++ b/lib/core/src/lib/card-view/interfaces/card-view.interfaces.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/click-notification.interface.ts b/lib/core/src/lib/card-view/interfaces/click-notification.interface.ts
index 464aa0b433..2503eaa5df 100644
--- a/lib/core/src/lib/card-view/interfaces/click-notification.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/click-notification.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/interfaces/update-notification.interface.ts b/lib/core/src/lib/card-view/interfaces/update-notification.interface.ts
index f24444c2ce..c6862e0489 100644
--- a/lib/core/src/lib/card-view/interfaces/update-notification.interface.ts
+++ b/lib/core/src/lib/card-view/interfaces/update-notification.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/mock/card-view-content.mock.ts b/lib/core/src/lib/card-view/mock/card-view-content.mock.ts
index 9e7198a537..272a117e55 100644
--- a/lib/core/src/lib/card-view/mock/card-view-content.mock.ts
+++ b/lib/core/src/lib/card-view/mock/card-view-content.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-arrayitem.model.ts b/lib/core/src/lib/card-view/models/card-view-arrayitem.model.ts
index 219a5acc44..4ae337942e 100644
--- a/lib/core/src/lib/card-view/models/card-view-arrayitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-arrayitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-baseitem.model.spec.ts b/lib/core/src/lib/card-view/models/card-view-baseitem.model.spec.ts
index 56485de739..d00f9f5a7f 100644
--- a/lib/core/src/lib/card-view/models/card-view-baseitem.model.spec.ts
+++ b/lib/core/src/lib/card-view/models/card-view-baseitem.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-baseitem.model.ts b/lib/core/src/lib/card-view/models/card-view-baseitem.model.ts
index 38aa513685..015ad9c0a2 100644
--- a/lib/core/src/lib/card-view/models/card-view-baseitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-baseitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-boolitem.model.spec.ts b/lib/core/src/lib/card-view/models/card-view-boolitem.model.spec.ts
index 1677b6d6fb..f3fe14fced 100644
--- a/lib/core/src/lib/card-view/models/card-view-boolitem.model.spec.ts
+++ b/lib/core/src/lib/card-view/models/card-view-boolitem.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-boolitem.model.ts b/lib/core/src/lib/card-view/models/card-view-boolitem.model.ts
index ef92a26746..6d80cbaa2f 100644
--- a/lib/core/src/lib/card-view/models/card-view-boolitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-boolitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-dateitem.model.ts b/lib/core/src/lib/card-view/models/card-view-dateitem.model.ts
index ed229ca8b8..6a2dac24c0 100644
--- a/lib/core/src/lib/card-view/models/card-view-dateitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-dateitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-datetimeitem.model.ts b/lib/core/src/lib/card-view/models/card-view-datetimeitem.model.ts
index c624f822a9..e2f690a1fc 100644
--- a/lib/core/src/lib/card-view/models/card-view-datetimeitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-datetimeitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-floatitem.model.spec.ts b/lib/core/src/lib/card-view/models/card-view-floatitem.model.spec.ts
index b18a9534c4..6cf18e7a0a 100644
--- a/lib/core/src/lib/card-view/models/card-view-floatitem.model.spec.ts
+++ b/lib/core/src/lib/card-view/models/card-view-floatitem.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-floatitem.model.ts b/lib/core/src/lib/card-view/models/card-view-floatitem.model.ts
index 9d6e4819ea..a63cd78a77 100644
--- a/lib/core/src/lib/card-view/models/card-view-floatitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-floatitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-intitem.model.spec.ts b/lib/core/src/lib/card-view/models/card-view-intitem.model.spec.ts
index e49eb4ae45..ce3f4aae21 100644
--- a/lib/core/src/lib/card-view/models/card-view-intitem.model.spec.ts
+++ b/lib/core/src/lib/card-view/models/card-view-intitem.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-intitem.model.ts b/lib/core/src/lib/card-view/models/card-view-intitem.model.ts
index 5716b350e7..66ca02e467 100644
--- a/lib/core/src/lib/card-view/models/card-view-intitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-intitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-keyvaluepairs.model.ts b/lib/core/src/lib/card-view/models/card-view-keyvaluepairs.model.ts
index 506046049a..e7ae963d60 100644
--- a/lib/core/src/lib/card-view/models/card-view-keyvaluepairs.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-keyvaluepairs.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-mapitem.model.ts b/lib/core/src/lib/card-view/models/card-view-mapitem.model.ts
index 9b9191ddf3..fdba89090c 100644
--- a/lib/core/src/lib/card-view/models/card-view-mapitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-mapitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-selectitem.model.spec.ts b/lib/core/src/lib/card-view/models/card-view-selectitem.model.spec.ts
index 6227b84d44..aeb64e4b16 100644
--- a/lib/core/src/lib/card-view/models/card-view-selectitem.model.spec.ts
+++ b/lib/core/src/lib/card-view/models/card-view-selectitem.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-selectitem.model.ts b/lib/core/src/lib/card-view/models/card-view-selectitem.model.ts
index 6015ebf160..c530f3b2b4 100644
--- a/lib/core/src/lib/card-view/models/card-view-selectitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-selectitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-textitem.model.spec.ts b/lib/core/src/lib/card-view/models/card-view-textitem.model.spec.ts
index f3f97c20d8..477627fa41 100644
--- a/lib/core/src/lib/card-view/models/card-view-textitem.model.spec.ts
+++ b/lib/core/src/lib/card-view/models/card-view-textitem.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view-textitem.model.ts b/lib/core/src/lib/card-view/models/card-view-textitem.model.ts
index ec23f7bed6..8ce0f7610e 100644
--- a/lib/core/src/lib/card-view/models/card-view-textitem.model.ts
+++ b/lib/core/src/lib/card-view/models/card-view-textitem.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/models/card-view.models.ts b/lib/core/src/lib/card-view/models/card-view.models.ts
index b3997e20d6..716a59abd2 100644
--- a/lib/core/src/lib/card-view/models/card-view.models.ts
+++ b/lib/core/src/lib/card-view/models/card-view.models.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/public-api.ts b/lib/core/src/lib/card-view/public-api.ts
index c55815855f..c506680da4 100644
--- a/lib/core/src/lib/card-view/public-api.ts
+++ b/lib/core/src/lib/card-view/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/services/card-item-types.service.ts b/lib/core/src/lib/card-view/services/card-item-types.service.ts
index 4a52d3999b..8db6304919 100644
--- a/lib/core/src/lib/card-view/services/card-item-types.service.ts
+++ b/lib/core/src/lib/card-view/services/card-item-types.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/services/card-view-update.service.spec.ts b/lib/core/src/lib/card-view/services/card-view-update.service.spec.ts
index a34327a649..635c9d40c2 100644
--- a/lib/core/src/lib/card-view/services/card-view-update.service.spec.ts
+++ b/lib/core/src/lib/card-view/services/card-view-update.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/services/card-view-update.service.ts b/lib/core/src/lib/card-view/services/card-view-update.service.ts
index 43c7eeb466..b220692d7e 100644
--- a/lib/core/src/lib/card-view/services/card-view-update.service.ts
+++ b/lib/core/src/lib/card-view/services/card-view-update.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/services/card-view.services.ts b/lib/core/src/lib/card-view/services/card-view.services.ts
index b9bc3b23b6..97cbcdb092 100644
--- a/lib/core/src/lib/card-view/services/card-view.services.ts
+++ b/lib/core/src/lib/card-view/services/card-view.services.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/validators/card-view-item-float.validator.ts b/lib/core/src/lib/card-view/validators/card-view-item-float.validator.ts
index 71d3ce8d84..96a1afb3a8 100644
--- a/lib/core/src/lib/card-view/validators/card-view-item-float.validator.ts
+++ b/lib/core/src/lib/card-view/validators/card-view-item-float.validator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/validators/card-view-item-int.validator.ts b/lib/core/src/lib/card-view/validators/card-view-item-int.validator.ts
index 52123654ce..b4776a19a3 100644
--- a/lib/core/src/lib/card-view/validators/card-view-item-int.validator.ts
+++ b/lib/core/src/lib/card-view/validators/card-view-item-int.validator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/validators/card-view-item-length.valiator.ts b/lib/core/src/lib/card-view/validators/card-view-item-length.valiator.ts
index a1f77d6f4c..38a82a4e9a 100644
--- a/lib/core/src/lib/card-view/validators/card-view-item-length.valiator.ts
+++ b/lib/core/src/lib/card-view/validators/card-view-item-length.valiator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/validators/card-view-item-match.valiator.ts b/lib/core/src/lib/card-view/validators/card-view-item-match.valiator.ts
index 7c148833a5..79d4f0f573 100644
--- a/lib/core/src/lib/card-view/validators/card-view-item-match.valiator.ts
+++ b/lib/core/src/lib/card-view/validators/card-view-item-match.valiator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/validators/card-view-item-minmax.valiator.ts b/lib/core/src/lib/card-view/validators/card-view-item-minmax.valiator.ts
index e3d63f08ba..098537d0e4 100644
--- a/lib/core/src/lib/card-view/validators/card-view-item-minmax.valiator.ts
+++ b/lib/core/src/lib/card-view/validators/card-view-item-minmax.valiator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/validators/card-view.validators.ts b/lib/core/src/lib/card-view/validators/card-view.validators.ts
index b05b5e4999..4935531241 100644
--- a/lib/core/src/lib/card-view/validators/card-view.validators.ts
+++ b/lib/core/src/lib/card-view/validators/card-view.validators.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/card-view/validators/validators.map.ts b/lib/core/src/lib/card-view/validators/validators.map.ts
index a916d53da2..de9674e6b2 100644
--- a/lib/core/src/lib/card-view/validators/validators.map.ts
+++ b/lib/core/src/lib/card-view/validators/validators.map.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/clipboard/clipboard.directive.spec.ts b/lib/core/src/lib/clipboard/clipboard.directive.spec.ts
index e96660df46..ef16b8205c 100644
--- a/lib/core/src/lib/clipboard/clipboard.directive.spec.ts
+++ b/lib/core/src/lib/clipboard/clipboard.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/clipboard/clipboard.directive.ts b/lib/core/src/lib/clipboard/clipboard.directive.ts
index b7c49232ff..9abdb46345 100644
--- a/lib/core/src/lib/clipboard/clipboard.directive.ts
+++ b/lib/core/src/lib/clipboard/clipboard.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/clipboard/clipboard.module.ts b/lib/core/src/lib/clipboard/clipboard.module.ts
index b4cf66cac7..0611efd549 100644
--- a/lib/core/src/lib/clipboard/clipboard.module.ts
+++ b/lib/core/src/lib/clipboard/clipboard.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/clipboard/clipboard.service.spec.ts b/lib/core/src/lib/clipboard/clipboard.service.spec.ts
index 69f4c0fa4a..f5022c20bb 100644
--- a/lib/core/src/lib/clipboard/clipboard.service.spec.ts
+++ b/lib/core/src/lib/clipboard/clipboard.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/clipboard/clipboard.service.ts b/lib/core/src/lib/clipboard/clipboard.service.ts
index 41cf05c8f3..fbaa932e3b 100644
--- a/lib/core/src/lib/clipboard/clipboard.service.ts
+++ b/lib/core/src/lib/clipboard/clipboard.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/clipboard/index.ts b/lib/core/src/lib/clipboard/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/clipboard/index.ts
+++ b/lib/core/src/lib/clipboard/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/clipboard/public-api.ts b/lib/core/src/lib/clipboard/public-api.ts
index f2528a971f..cb8eb06c98 100644
--- a/lib/core/src/lib/clipboard/public-api.ts
+++ b/lib/core/src/lib/clipboard/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/comment-list.component.spec.ts b/lib/core/src/lib/comments/comment-list/comment-list.component.spec.ts
index acd0f129cf..d5497c4c5f 100644
--- a/lib/core/src/lib/comments/comment-list/comment-list.component.spec.ts
+++ b/lib/core/src/lib/comments/comment-list/comment-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/comment-list.component.stories.ts b/lib/core/src/lib/comments/comment-list/comment-list.component.stories.ts
index 2560b57910..50c605ea89 100644
--- a/lib/core/src/lib/comments/comment-list/comment-list.component.stories.ts
+++ b/lib/core/src/lib/comments/comment-list/comment-list.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/comment-list.component.ts b/lib/core/src/lib/comments/comment-list/comment-list.component.ts
index fcc2071011..957f48639a 100644
--- a/lib/core/src/lib/comments/comment-list/comment-list.component.ts
+++ b/lib/core/src/lib/comments/comment-list/comment-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/comment-list.module.ts b/lib/core/src/lib/comments/comment-list/comment-list.module.ts
index e4aa6e4619..3fed2dfa8e 100644
--- a/lib/core/src/lib/comments/comment-list/comment-list.module.ts
+++ b/lib/core/src/lib/comments/comment-list/comment-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/index.ts b/lib/core/src/lib/comments/comment-list/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/comments/comment-list/index.ts
+++ b/lib/core/src/lib/comments/comment-list/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/mocks/comment-list.mock.ts b/lib/core/src/lib/comments/comment-list/mocks/comment-list.mock.ts
index 76e1059124..2482fa6148 100644
--- a/lib/core/src/lib/comments/comment-list/mocks/comment-list.mock.ts
+++ b/lib/core/src/lib/comments/comment-list/mocks/comment-list.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/mocks/comment-list.service.mock.ts b/lib/core/src/lib/comments/comment-list/mocks/comment-list.service.mock.ts
index ad72d01f18..2617824cbd 100644
--- a/lib/core/src/lib/comments/comment-list/mocks/comment-list.service.mock.ts
+++ b/lib/core/src/lib/comments/comment-list/mocks/comment-list.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comment-list/public-api.ts b/lib/core/src/lib/comments/comment-list/public-api.ts
index 9f5c132d91..7eb051ff59 100644
--- a/lib/core/src/lib/comments/comment-list/public-api.ts
+++ b/lib/core/src/lib/comments/comment-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comments.component.spec.ts b/lib/core/src/lib/comments/comments.component.spec.ts
index fed6285224..31e9353588 100644
--- a/lib/core/src/lib/comments/comments.component.spec.ts
+++ b/lib/core/src/lib/comments/comments.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comments.component.stories.ts b/lib/core/src/lib/comments/comments.component.stories.ts
index 8b808d9cad..9366184392 100644
--- a/lib/core/src/lib/comments/comments.component.stories.ts
+++ b/lib/core/src/lib/comments/comments.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comments.component.ts b/lib/core/src/lib/comments/comments.component.ts
index 2edf3727f7..564d45cd84 100644
--- a/lib/core/src/lib/comments/comments.component.ts
+++ b/lib/core/src/lib/comments/comments.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/comments.module.ts b/lib/core/src/lib/comments/comments.module.ts
index cc856ba6d3..4a659c5a20 100644
--- a/lib/core/src/lib/comments/comments.module.ts
+++ b/lib/core/src/lib/comments/comments.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/index.ts b/lib/core/src/lib/comments/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/comments/index.ts
+++ b/lib/core/src/lib/comments/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/interfaces/comments-service.interface.ts b/lib/core/src/lib/comments/interfaces/comments-service.interface.ts
index 61748f491f..581c8712ba 100644
--- a/lib/core/src/lib/comments/interfaces/comments-service.interface.ts
+++ b/lib/core/src/lib/comments/interfaces/comments-service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/interfaces/comments.token.ts b/lib/core/src/lib/comments/interfaces/comments.token.ts
index 83e13d60cc..5cfca4cd1d 100644
--- a/lib/core/src/lib/comments/interfaces/comments.token.ts
+++ b/lib/core/src/lib/comments/interfaces/comments.token.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/interfaces/index.ts b/lib/core/src/lib/comments/interfaces/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/comments/interfaces/index.ts
+++ b/lib/core/src/lib/comments/interfaces/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/interfaces/public-api.ts b/lib/core/src/lib/comments/interfaces/public-api.ts
index 1f14f4903e..cd194a149c 100644
--- a/lib/core/src/lib/comments/interfaces/public-api.ts
+++ b/lib/core/src/lib/comments/interfaces/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/mocks/comments.service.mock.ts b/lib/core/src/lib/comments/mocks/comments.service.mock.ts
index d11d677a6f..d647d364ca 100644
--- a/lib/core/src/lib/comments/mocks/comments.service.mock.ts
+++ b/lib/core/src/lib/comments/mocks/comments.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/mocks/comments.service.stories.mock.ts b/lib/core/src/lib/comments/mocks/comments.service.stories.mock.ts
index 18b956e61c..b1ffd63a42 100644
--- a/lib/core/src/lib/comments/mocks/comments.service.stories.mock.ts
+++ b/lib/core/src/lib/comments/mocks/comments.service.stories.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/mocks/comments.stories.mock.ts b/lib/core/src/lib/comments/mocks/comments.stories.mock.ts
index dfaee02d72..86eb3a02cf 100644
--- a/lib/core/src/lib/comments/mocks/comments.stories.mock.ts
+++ b/lib/core/src/lib/comments/mocks/comments.stories.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/comments/public-api.ts b/lib/core/src/lib/comments/public-api.ts
index 1ba62352fc..532f42dc5d 100644
--- a/lib/core/src/lib/comments/public-api.ts
+++ b/lib/core/src/lib/comments/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/index.ts b/lib/core/src/lib/common/index.ts
index 9bc622e6e4..3ae38c6687 100644
--- a/lib/core/src/lib/common/index.ts
+++ b/lib/core/src/lib/common/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/interface/search-component.interface.ts b/lib/core/src/lib/common/interface/search-component.interface.ts
index 00df860db4..a40828b6c9 100644
--- a/lib/core/src/lib/common/interface/search-component.interface.ts
+++ b/lib/core/src/lib/common/interface/search-component.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/mock/app-config.service.mock.ts b/lib/core/src/lib/common/mock/app-config.service.mock.ts
index 383a995c95..e9a63d2bac 100644
--- a/lib/core/src/lib/common/mock/app-config.service.mock.ts
+++ b/lib/core/src/lib/common/mock/app-config.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/models/log-levels.model.ts b/lib/core/src/lib/common/models/log-levels.model.ts
index ea9122d99b..f90875f55f 100644
--- a/lib/core/src/lib/common/models/log-levels.model.ts
+++ b/lib/core/src/lib/common/models/log-levels.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/models/user-info-mode.enum.ts b/lib/core/src/lib/common/models/user-info-mode.enum.ts
index 53527d41f4..5230a6b2e5 100644
--- a/lib/core/src/lib/common/models/user-info-mode.enum.ts
+++ b/lib/core/src/lib/common/models/user-info-mode.enum.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/cookie.service.ts b/lib/core/src/lib/common/services/cookie.service.ts
index 6813cefe5c..b93253267a 100644
--- a/lib/core/src/lib/common/services/cookie.service.ts
+++ b/lib/core/src/lib/common/services/cookie.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/directionality-config-factory.ts b/lib/core/src/lib/common/services/directionality-config-factory.ts
index 681496977f..cf41819b77 100644
--- a/lib/core/src/lib/common/services/directionality-config-factory.ts
+++ b/lib/core/src/lib/common/services/directionality-config-factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/directionality-config.service.spec.ts b/lib/core/src/lib/common/services/directionality-config.service.spec.ts
index 7b8be108da..dfd29721c1 100644
--- a/lib/core/src/lib/common/services/directionality-config.service.spec.ts
+++ b/lib/core/src/lib/common/services/directionality-config.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/directionality-config.service.ts b/lib/core/src/lib/common/services/directionality-config.service.ts
index ee72b36893..50e6b41e12 100644
--- a/lib/core/src/lib/common/services/directionality-config.service.ts
+++ b/lib/core/src/lib/common/services/directionality-config.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/download.service.spec.ts b/lib/core/src/lib/common/services/download.service.spec.ts
index 7415e38800..c4590155f7 100644
--- a/lib/core/src/lib/common/services/download.service.spec.ts
+++ b/lib/core/src/lib/common/services/download.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/download.service.ts b/lib/core/src/lib/common/services/download.service.ts
index 343a4ee624..35545d6277 100644
--- a/lib/core/src/lib/common/services/download.service.ts
+++ b/lib/core/src/lib/common/services/download.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/dynamic-component-mapper.service.ts b/lib/core/src/lib/common/services/dynamic-component-mapper.service.ts
index e75703b74e..25a5906aec 100644
--- a/lib/core/src/lib/common/services/dynamic-component-mapper.service.ts
+++ b/lib/core/src/lib/common/services/dynamic-component-mapper.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/highlight-transform.service.ts b/lib/core/src/lib/common/services/highlight-transform.service.ts
index 52fefb3189..37c02378d0 100644
--- a/lib/core/src/lib/common/services/highlight-transform.service.ts
+++ b/lib/core/src/lib/common/services/highlight-transform.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/language-item.interface.ts b/lib/core/src/lib/common/services/language-item.interface.ts
index c0fc03bf0d..d3c8c7bec0 100644
--- a/lib/core/src/lib/common/services/language-item.interface.ts
+++ b/lib/core/src/lib/common/services/language-item.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/log.service.spec.ts b/lib/core/src/lib/common/services/log.service.spec.ts
index bcc64f0181..4726ae4dbc 100644
--- a/lib/core/src/lib/common/services/log.service.spec.ts
+++ b/lib/core/src/lib/common/services/log.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/log.service.ts b/lib/core/src/lib/common/services/log.service.ts
index ea30effa46..8169868bd8 100644
--- a/lib/core/src/lib/common/services/log.service.ts
+++ b/lib/core/src/lib/common/services/log.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/page-title.service.ts b/lib/core/src/lib/common/services/page-title.service.ts
index b721b51fa6..99a9144bdc 100644
--- a/lib/core/src/lib/common/services/page-title.service.ts
+++ b/lib/core/src/lib/common/services/page-title.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/sort-by-category.service.spec.ts b/lib/core/src/lib/common/services/sort-by-category.service.spec.ts
index 14b8a37474..35fbc51f7c 100644
--- a/lib/core/src/lib/common/services/sort-by-category.service.spec.ts
+++ b/lib/core/src/lib/common/services/sort-by-category.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/sort-by-category.service.ts b/lib/core/src/lib/common/services/sort-by-category.service.ts
index 3d84ca8458..719c00cbc2 100644
--- a/lib/core/src/lib/common/services/sort-by-category.service.ts
+++ b/lib/core/src/lib/common/services/sort-by-category.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/storage.service.spec.ts b/lib/core/src/lib/common/services/storage.service.spec.ts
index 456dd8f2cf..01a17813af 100644
--- a/lib/core/src/lib/common/services/storage.service.spec.ts
+++ b/lib/core/src/lib/common/services/storage.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/storage.service.ts b/lib/core/src/lib/common/services/storage.service.ts
index ca8d6a1f46..68c47a02a0 100644
--- a/lib/core/src/lib/common/services/storage.service.ts
+++ b/lib/core/src/lib/common/services/storage.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/thumbnail.service.spec.ts b/lib/core/src/lib/common/services/thumbnail.service.spec.ts
index 07d768f28c..18c782ec1e 100644
--- a/lib/core/src/lib/common/services/thumbnail.service.spec.ts
+++ b/lib/core/src/lib/common/services/thumbnail.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/thumbnail.service.ts b/lib/core/src/lib/common/services/thumbnail.service.ts
index fc94af100c..3e198a9547 100644
--- a/lib/core/src/lib/common/services/thumbnail.service.ts
+++ b/lib/core/src/lib/common/services/thumbnail.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/url.service.ts b/lib/core/src/lib/common/services/url.service.ts
index 6d94e52034..12d6e6d86f 100644
--- a/lib/core/src/lib/common/services/url.service.ts
+++ b/lib/core/src/lib/common/services/url.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/user-preferences.service.spec.ts b/lib/core/src/lib/common/services/user-preferences.service.spec.ts
index f2a65edb26..a226bf9122 100644
--- a/lib/core/src/lib/common/services/user-preferences.service.spec.ts
+++ b/lib/core/src/lib/common/services/user-preferences.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/services/user-preferences.service.ts b/lib/core/src/lib/common/services/user-preferences.service.ts
index aa75207dfc..e2ade7b9d8 100644
--- a/lib/core/src/lib/common/services/user-preferences.service.ts
+++ b/lib/core/src/lib/common/services/user-preferences.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/file-utils.ts b/lib/core/src/lib/common/utils/file-utils.ts
index e579d4fe76..cd5f630ae8 100644
--- a/lib/core/src/lib/common/utils/file-utils.ts
+++ b/lib/core/src/lib/common/utils/file-utils.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/index.ts b/lib/core/src/lib/common/utils/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/common/utils/index.ts
+++ b/lib/core/src/lib/common/utils/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/moment-date-adapter.ts b/lib/core/src/lib/common/utils/moment-date-adapter.ts
index 3fcc73efc3..a8bf7e13f0 100644
--- a/lib/core/src/lib/common/utils/moment-date-adapter.ts
+++ b/lib/core/src/lib/common/utils/moment-date-adapter.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/moment-date-formats.model.ts b/lib/core/src/lib/common/utils/moment-date-formats.model.ts
index d583557d1a..f386714898 100644
--- a/lib/core/src/lib/common/utils/moment-date-formats.model.ts
+++ b/lib/core/src/lib/common/utils/moment-date-formats.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/object-utils.spec.ts b/lib/core/src/lib/common/utils/object-utils.spec.ts
index 076c8121fc..e7adb1b9a1 100644
--- a/lib/core/src/lib/common/utils/object-utils.spec.ts
+++ b/lib/core/src/lib/common/utils/object-utils.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/object-utils.ts b/lib/core/src/lib/common/utils/object-utils.ts
index 1ef1812b00..01c73ab3d2 100644
--- a/lib/core/src/lib/common/utils/object-utils.ts
+++ b/lib/core/src/lib/common/utils/object-utils.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/public-api.ts b/lib/core/src/lib/common/utils/public-api.ts
index ecb16b1204..e2a3d3f80c 100644
--- a/lib/core/src/lib/common/utils/public-api.ts
+++ b/lib/core/src/lib/common/utils/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/string-utils.spec.ts b/lib/core/src/lib/common/utils/string-utils.spec.ts
index c9ac4ef2bd..e8533d80a1 100644
--- a/lib/core/src/lib/common/utils/string-utils.spec.ts
+++ b/lib/core/src/lib/common/utils/string-utils.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/common/utils/string-utils.ts b/lib/core/src/lib/common/utils/string-utils.ts
index 19b687dc89..d9abcb6e67 100644
--- a/lib/core/src/lib/common/utils/string-utils.ts
+++ b/lib/core/src/lib/common/utils/string-utils.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/animations.ts b/lib/core/src/lib/context-menu/animations.ts
index 87b3490a17..42d610dde7 100644
--- a/lib/core/src/lib/context-menu/animations.ts
+++ b/lib/core/src/lib/context-menu/animations.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu-list.component.ts b/lib/core/src/lib/context-menu/context-menu-list.component.ts
index d6be40a65b..67e8d66d53 100644
--- a/lib/core/src/lib/context-menu/context-menu-list.component.ts
+++ b/lib/core/src/lib/context-menu/context-menu-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu-overlay.service.spec.ts b/lib/core/src/lib/context-menu/context-menu-overlay.service.spec.ts
index 815425d56b..6e6c8e6eb5 100644
--- a/lib/core/src/lib/context-menu/context-menu-overlay.service.spec.ts
+++ b/lib/core/src/lib/context-menu/context-menu-overlay.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu-overlay.service.ts b/lib/core/src/lib/context-menu/context-menu-overlay.service.ts
index 16bf34036d..8218ec5413 100644
--- a/lib/core/src/lib/context-menu/context-menu-overlay.service.ts
+++ b/lib/core/src/lib/context-menu/context-menu-overlay.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu-overlay.ts b/lib/core/src/lib/context-menu/context-menu-overlay.ts
index a375cae3e8..eeef81dc79 100644
--- a/lib/core/src/lib/context-menu/context-menu-overlay.ts
+++ b/lib/core/src/lib/context-menu/context-menu-overlay.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu.directive.ts b/lib/core/src/lib/context-menu/context-menu.directive.ts
index 6da091c955..bfa40c7456 100644
--- a/lib/core/src/lib/context-menu/context-menu.directive.ts
+++ b/lib/core/src/lib/context-menu/context-menu.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu.module.ts b/lib/core/src/lib/context-menu/context-menu.module.ts
index 243cebb9e6..a40fc5844d 100644
--- a/lib/core/src/lib/context-menu/context-menu.module.ts
+++ b/lib/core/src/lib/context-menu/context-menu.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu.spec.ts b/lib/core/src/lib/context-menu/context-menu.spec.ts
index 5462f64f9a..f0c6d27fca 100644
--- a/lib/core/src/lib/context-menu/context-menu.spec.ts
+++ b/lib/core/src/lib/context-menu/context-menu.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/context-menu.tokens.ts b/lib/core/src/lib/context-menu/context-menu.tokens.ts
index de89651864..c3ae331fc5 100644
--- a/lib/core/src/lib/context-menu/context-menu.tokens.ts
+++ b/lib/core/src/lib/context-menu/context-menu.tokens.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/index.ts b/lib/core/src/lib/context-menu/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/context-menu/index.ts
+++ b/lib/core/src/lib/context-menu/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/interfaces.ts b/lib/core/src/lib/context-menu/interfaces.ts
index c8bd4f0247..1da30790f1 100644
--- a/lib/core/src/lib/context-menu/interfaces.ts
+++ b/lib/core/src/lib/context-menu/interfaces.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/context-menu/public-api.ts b/lib/core/src/lib/context-menu/public-api.ts
index 7fecc58fc1..0873571a64 100644
--- a/lib/core/src/lib/context-menu/public-api.ts
+++ b/lib/core/src/lib/context-menu/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/core.module.ts b/lib/core/src/lib/core.module.ts
index 5382229d51..f1282386f2 100644
--- a/lib/core/src/lib/core.module.ts
+++ b/lib/core/src/lib/core.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.spec.ts b/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.spec.ts
index 4b8813a164..b15f72930e 100644
--- a/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.spec.ts
+++ b/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.ts b/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.ts
index 99ee0a1697..99e370d96c 100644
--- a/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.ts
+++ b/lib/core/src/lib/datatable/components/columns-selector/columns-selector.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/data-cell.event.ts b/lib/core/src/lib/datatable/components/data-cell.event.ts
index 82a62692d3..fc7098565e 100644
--- a/lib/core/src/lib/datatable/components/data-cell.event.ts
+++ b/lib/core/src/lib/datatable/components/data-cell.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/data-row-action.event.ts b/lib/core/src/lib/datatable/components/data-row-action.event.ts
index e9cb0efb3a..532c27fcf7 100644
--- a/lib/core/src/lib/datatable/components/data-row-action.event.ts
+++ b/lib/core/src/lib/datatable/components/data-row-action.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.spec.ts b/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.spec.ts
index 1e42e1d425..53aeeefb4d 100644
--- a/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.spec.ts
+++ b/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.ts b/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.ts
index f8858704dc..4c57363b2a 100644
--- a/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.ts
+++ b/lib/core/src/lib/datatable/components/datatable-cell/datatable-cell.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.spec.ts b/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.spec.ts
index c7a1c03bed..0709a8abf6 100644
--- a/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.spec.ts
+++ b/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.ts b/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.ts
index 6c82070f5f..693ec78d56 100644
--- a/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.ts
+++ b/lib/core/src/lib/datatable/components/datatable-row/datatable-row.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/datatable/datatable.component.spec.ts b/lib/core/src/lib/datatable/components/datatable/datatable.component.spec.ts
index 128f8a9ecf..5234ca6994 100644
--- a/lib/core/src/lib/datatable/components/datatable/datatable.component.spec.ts
+++ b/lib/core/src/lib/datatable/components/datatable/datatable.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/datatable/datatable.component.stories.ts b/lib/core/src/lib/datatable/components/datatable/datatable.component.stories.ts
index 2f8f65d734..698bee9350 100644
--- a/lib/core/src/lib/datatable/components/datatable/datatable.component.stories.ts
+++ b/lib/core/src/lib/datatable/components/datatable/datatable.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/datatable/datatable.component.ts b/lib/core/src/lib/datatable/components/datatable/datatable.component.ts
index 737c3d9620..7d16bc22af 100644
--- a/lib/core/src/lib/datatable/components/datatable/datatable.component.ts
+++ b/lib/core/src/lib/datatable/components/datatable/datatable.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/date-cell/date-cell.component.ts b/lib/core/src/lib/datatable/components/date-cell/date-cell.component.ts
index 701d4d8a40..a0477d23e2 100644
--- a/lib/core/src/lib/datatable/components/date-cell/date-cell.component.ts
+++ b/lib/core/src/lib/datatable/components/date-cell/date-cell.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/empty-list/empty-list.component.spec.ts b/lib/core/src/lib/datatable/components/empty-list/empty-list.component.spec.ts
index 80407a3558..d19adbed4a 100644
--- a/lib/core/src/lib/datatable/components/empty-list/empty-list.component.spec.ts
+++ b/lib/core/src/lib/datatable/components/empty-list/empty-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/empty-list/empty-list.component.ts b/lib/core/src/lib/datatable/components/empty-list/empty-list.component.ts
index 54ee4ce8ad..d80489c7b6 100644
--- a/lib/core/src/lib/datatable/components/empty-list/empty-list.component.ts
+++ b/lib/core/src/lib/datatable/components/empty-list/empty-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/filesize-cell/filesize-cell.component.ts b/lib/core/src/lib/datatable/components/filesize-cell/filesize-cell.component.ts
index af91b32aee..4ca035459e 100644
--- a/lib/core/src/lib/datatable/components/filesize-cell/filesize-cell.component.ts
+++ b/lib/core/src/lib/datatable/components/filesize-cell/filesize-cell.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/json-cell/json-cell.component.spec.ts b/lib/core/src/lib/datatable/components/json-cell/json-cell.component.spec.ts
index 0b35a2cd9f..3e29f2361b 100644
--- a/lib/core/src/lib/datatable/components/json-cell/json-cell.component.spec.ts
+++ b/lib/core/src/lib/datatable/components/json-cell/json-cell.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/json-cell/json-cell.component.ts b/lib/core/src/lib/datatable/components/json-cell/json-cell.component.ts
index 1a63f2048d..bec03bf3a6 100644
--- a/lib/core/src/lib/datatable/components/json-cell/json-cell.component.ts
+++ b/lib/core/src/lib/datatable/components/json-cell/json-cell.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/location-cell/location-cell.component.spec.ts b/lib/core/src/lib/datatable/components/location-cell/location-cell.component.spec.ts
index 72776a8a9a..314349bca8 100644
--- a/lib/core/src/lib/datatable/components/location-cell/location-cell.component.spec.ts
+++ b/lib/core/src/lib/datatable/components/location-cell/location-cell.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/components/location-cell/location-cell.component.ts b/lib/core/src/lib/datatable/components/location-cell/location-cell.component.ts
index b83a8f460d..2b745877c1 100644
--- a/lib/core/src/lib/datatable/components/location-cell/location-cell.component.ts
+++ b/lib/core/src/lib/datatable/components/location-cell/location-cell.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/data-column-header.component.ts b/lib/core/src/lib/datatable/data-column/data-column-header.component.ts
index df09912478..e79c357072 100644
--- a/lib/core/src/lib/datatable/data-column/data-column-header.component.ts
+++ b/lib/core/src/lib/datatable/data-column/data-column-header.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/data-column-list.component.ts b/lib/core/src/lib/datatable/data-column/data-column-list.component.ts
index b87f71b84a..7149453e21 100644
--- a/lib/core/src/lib/datatable/data-column/data-column-list.component.ts
+++ b/lib/core/src/lib/datatable/data-column/data-column-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/data-column.component.spec.ts b/lib/core/src/lib/datatable/data-column/data-column.component.spec.ts
index b306401071..44087a97f2 100644
--- a/lib/core/src/lib/datatable/data-column/data-column.component.spec.ts
+++ b/lib/core/src/lib/datatable/data-column/data-column.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/data-column.component.stories.ts b/lib/core/src/lib/datatable/data-column/data-column.component.stories.ts
index 80878d7bed..808892b5a9 100644
--- a/lib/core/src/lib/datatable/data-column/data-column.component.stories.ts
+++ b/lib/core/src/lib/datatable/data-column/data-column.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/data-column.component.ts b/lib/core/src/lib/datatable/data-column/data-column.component.ts
index 67b54cd4f9..182e5bbddf 100644
--- a/lib/core/src/lib/datatable/data-column/data-column.component.ts
+++ b/lib/core/src/lib/datatable/data-column/data-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/data-column.module.ts b/lib/core/src/lib/datatable/data-column/data-column.module.ts
index 542648b4c3..cec5d048a2 100644
--- a/lib/core/src/lib/datatable/data-column/data-column.module.ts
+++ b/lib/core/src/lib/datatable/data-column/data-column.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/index.ts b/lib/core/src/lib/datatable/data-column/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/datatable/data-column/index.ts
+++ b/lib/core/src/lib/datatable/data-column/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data-column/public-api.ts b/lib/core/src/lib/datatable/data-column/public-api.ts
index f714f6053c..a3a6dd8723 100644
--- a/lib/core/src/lib/datatable/data-column/public-api.ts
+++ b/lib/core/src/lib/datatable/data-column/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/data-column.model.ts b/lib/core/src/lib/datatable/data/data-column.model.ts
index a087f691a1..15cd07fb55 100644
--- a/lib/core/src/lib/datatable/data/data-column.model.ts
+++ b/lib/core/src/lib/datatable/data/data-column.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/data-row-event.model.ts b/lib/core/src/lib/datatable/data/data-row-event.model.ts
index d2d8d3635e..d969f889fd 100644
--- a/lib/core/src/lib/datatable/data/data-row-event.model.ts
+++ b/lib/core/src/lib/datatable/data/data-row-event.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/data-row-update.model.ts b/lib/core/src/lib/datatable/data/data-row-update.model.ts
index dff254d885..318037e56c 100644
--- a/lib/core/src/lib/datatable/data/data-row-update.model.ts
+++ b/lib/core/src/lib/datatable/data/data-row-update.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/data-row.model.ts b/lib/core/src/lib/datatable/data/data-row.model.ts
index 20cd3cfa62..59dbc3137d 100644
--- a/lib/core/src/lib/datatable/data/data-row.model.ts
+++ b/lib/core/src/lib/datatable/data/data-row.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/data-sorting.model.ts b/lib/core/src/lib/datatable/data/data-sorting.model.ts
index efabb5b119..626f8dcf30 100644
--- a/lib/core/src/lib/datatable/data/data-sorting.model.ts
+++ b/lib/core/src/lib/datatable/data/data-sorting.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/data-table.schema.ts b/lib/core/src/lib/datatable/data/data-table.schema.ts
index 6bc6fc146a..87dd52812d 100644
--- a/lib/core/src/lib/datatable/data/data-table.schema.ts
+++ b/lib/core/src/lib/datatable/data/data-table.schema.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/datatable-adapter.ts b/lib/core/src/lib/datatable/data/datatable-adapter.ts
index 87220e695a..0ab7a7806e 100644
--- a/lib/core/src/lib/datatable/data/datatable-adapter.ts
+++ b/lib/core/src/lib/datatable/data/datatable-adapter.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/object-datacolumn.model.ts b/lib/core/src/lib/datatable/data/object-datacolumn.model.ts
index 66332cbc47..01439396ac 100644
--- a/lib/core/src/lib/datatable/data/object-datacolumn.model.ts
+++ b/lib/core/src/lib/datatable/data/object-datacolumn.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/object-datarow.model.ts b/lib/core/src/lib/datatable/data/object-datarow.model.ts
index 792e6881ae..93a03a6152 100644
--- a/lib/core/src/lib/datatable/data/object-datarow.model.ts
+++ b/lib/core/src/lib/datatable/data/object-datarow.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/object-datatable-adapter.spec.ts b/lib/core/src/lib/datatable/data/object-datatable-adapter.spec.ts
index 58b4506507..a6d5642ac1 100644
--- a/lib/core/src/lib/datatable/data/object-datatable-adapter.spec.ts
+++ b/lib/core/src/lib/datatable/data/object-datatable-adapter.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/data/object-datatable-adapter.ts b/lib/core/src/lib/datatable/data/object-datatable-adapter.ts
index 3cbdc5cae4..a0a24c5492 100644
--- a/lib/core/src/lib/datatable/data/object-datatable-adapter.ts
+++ b/lib/core/src/lib/datatable/data/object-datatable-adapter.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/datatable.module.ts b/lib/core/src/lib/datatable/datatable.module.ts
index 5229604476..12212895ca 100644
--- a/lib/core/src/lib/datatable/datatable.module.ts
+++ b/lib/core/src/lib/datatable/datatable.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/custom-empty-content-template.directive.ts b/lib/core/src/lib/datatable/directives/custom-empty-content-template.directive.ts
index fe5717cfa0..6172161db0 100644
--- a/lib/core/src/lib/datatable/directives/custom-empty-content-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/custom-empty-content-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/custom-loading-template.directive.ts b/lib/core/src/lib/datatable/directives/custom-loading-template.directive.ts
index 38f694600e..47d78dabee 100644
--- a/lib/core/src/lib/datatable/directives/custom-loading-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/custom-loading-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/custom-no-permission-template.directive.ts b/lib/core/src/lib/datatable/directives/custom-no-permission-template.directive.ts
index dd4a218ec6..87584e0e05 100644
--- a/lib/core/src/lib/datatable/directives/custom-no-permission-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/custom-no-permission-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/drop-zone.directive.ts b/lib/core/src/lib/datatable/directives/drop-zone.directive.ts
index a00da425d1..e298ec8c8c 100644
--- a/lib/core/src/lib/datatable/directives/drop-zone.directive.ts
+++ b/lib/core/src/lib/datatable/directives/drop-zone.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/header-filter-template.directive.spec.ts b/lib/core/src/lib/datatable/directives/header-filter-template.directive.spec.ts
index eba4e229fb..2122a5ac9c 100644
--- a/lib/core/src/lib/datatable/directives/header-filter-template.directive.spec.ts
+++ b/lib/core/src/lib/datatable/directives/header-filter-template.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/header-filter-template.directive.ts b/lib/core/src/lib/datatable/directives/header-filter-template.directive.ts
index b7720cd073..1076ddd27d 100644
--- a/lib/core/src/lib/datatable/directives/header-filter-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/header-filter-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/loading-template.directive.spec.ts b/lib/core/src/lib/datatable/directives/loading-template.directive.spec.ts
index ebcc5f9e08..39f172196f 100644
--- a/lib/core/src/lib/datatable/directives/loading-template.directive.spec.ts
+++ b/lib/core/src/lib/datatable/directives/loading-template.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/loading-template.directive.ts b/lib/core/src/lib/datatable/directives/loading-template.directive.ts
index 88ca1e31dc..7863c161bf 100644
--- a/lib/core/src/lib/datatable/directives/loading-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/loading-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.spec.ts b/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.spec.ts
index 44c9b468a1..ecea73267a 100644
--- a/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.spec.ts
+++ b/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.ts b/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.ts
index 1e5a97b333..79f0465eae 100644
--- a/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/main-data-table-action-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/no-content-template.directive.spec.ts b/lib/core/src/lib/datatable/directives/no-content-template.directive.spec.ts
index 480012ae82..23f92ac9d8 100644
--- a/lib/core/src/lib/datatable/directives/no-content-template.directive.spec.ts
+++ b/lib/core/src/lib/datatable/directives/no-content-template.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/no-content-template.directive.ts b/lib/core/src/lib/datatable/directives/no-content-template.directive.ts
index a9e808b134..d69db468be 100644
--- a/lib/core/src/lib/datatable/directives/no-content-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/no-content-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/no-permission-template.directive.spec.ts b/lib/core/src/lib/datatable/directives/no-permission-template.directive.spec.ts
index b04b857361..1f6ffd6ef1 100644
--- a/lib/core/src/lib/datatable/directives/no-permission-template.directive.spec.ts
+++ b/lib/core/src/lib/datatable/directives/no-permission-template.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/no-permission-template.directive.ts b/lib/core/src/lib/datatable/directives/no-permission-template.directive.ts
index b165a7fe02..c99008a7fa 100644
--- a/lib/core/src/lib/datatable/directives/no-permission-template.directive.ts
+++ b/lib/core/src/lib/datatable/directives/no-permission-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/resizable/resizable.directive.spec.ts b/lib/core/src/lib/datatable/directives/resizable/resizable.directive.spec.ts
index 96986fae37..0979c12a23 100644
--- a/lib/core/src/lib/datatable/directives/resizable/resizable.directive.spec.ts
+++ b/lib/core/src/lib/datatable/directives/resizable/resizable.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/resizable/resizable.directive.ts b/lib/core/src/lib/datatable/directives/resizable/resizable.directive.ts
index 0abe34e3f1..a0addc3b5a 100644
--- a/lib/core/src/lib/datatable/directives/resizable/resizable.directive.ts
+++ b/lib/core/src/lib/datatable/directives/resizable/resizable.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/resizable/resizable.module.ts b/lib/core/src/lib/datatable/directives/resizable/resizable.module.ts
index bf7054eaf6..d201e82dbd 100644
--- a/lib/core/src/lib/datatable/directives/resizable/resizable.module.ts
+++ b/lib/core/src/lib/datatable/directives/resizable/resizable.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.spec.ts b/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.spec.ts
index 8a3eff643d..bc95b60cc8 100644
--- a/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.spec.ts
+++ b/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.ts b/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.ts
index 1a8c56be49..d10803b53f 100644
--- a/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.ts
+++ b/lib/core/src/lib/datatable/directives/resizable/resize-handle.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/directives/resizable/types.ts b/lib/core/src/lib/datatable/directives/resizable/types.ts
index 7d8ad9b85f..50741aa2a9 100644
--- a/lib/core/src/lib/datatable/directives/resizable/types.ts
+++ b/lib/core/src/lib/datatable/directives/resizable/types.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/index.ts b/lib/core/src/lib/datatable/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/datatable/index.ts
+++ b/lib/core/src/lib/datatable/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/public-api.ts b/lib/core/src/lib/datatable/public-api.ts
index 5e5fc806e3..ad22439382 100644
--- a/lib/core/src/lib/datatable/public-api.ts
+++ b/lib/core/src/lib/datatable/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/datatable/services/datatable.service.ts b/lib/core/src/lib/datatable/services/datatable.service.ts
index 6f6452ae70..7deb6d8907 100644
--- a/lib/core/src/lib/datatable/services/datatable.service.ts
+++ b/lib/core/src/lib/datatable/services/datatable.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.module.ts b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.module.ts
index 39b84a5df3..a0edcee367 100644
--- a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.module.ts
+++ b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.component.ts b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.component.ts
index 5f0ef2611f..0a65e25e0b 100644
--- a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.component.ts
+++ b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.ts b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.ts
index d49bdef63f..05df07e361 100644
--- a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.ts
+++ b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.ts b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.ts
index ef54518309..4855529930 100644
--- a/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.ts
+++ b/lib/core/src/lib/dialogs/edit-json/edit-json.dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/dialogs/index.ts b/lib/core/src/lib/dialogs/index.ts
index a7e30cc675..e58e5c1c41 100755
--- a/lib/core/src/lib/dialogs/index.ts
+++ b/lib/core/src/lib/dialogs/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/dialogs/public-api.ts b/lib/core/src/lib/dialogs/public-api.ts
index 75a158e8ab..69a9077fed 100755
--- a/lib/core/src/lib/dialogs/public-api.ts
+++ b/lib/core/src/lib/dialogs/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/directive.module.ts b/lib/core/src/lib/directives/directive.module.ts
index a1dd7d2bc1..72029bd730 100644
--- a/lib/core/src/lib/directives/directive.module.ts
+++ b/lib/core/src/lib/directives/directive.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/highlight.directive.spec.ts b/lib/core/src/lib/directives/highlight.directive.spec.ts
index 228af9e623..ef0b53636b 100644
--- a/lib/core/src/lib/directives/highlight.directive.spec.ts
+++ b/lib/core/src/lib/directives/highlight.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/highlight.directive.ts b/lib/core/src/lib/directives/highlight.directive.ts
index b0effb5d6f..273fac1d63 100644
--- a/lib/core/src/lib/directives/highlight.directive.ts
+++ b/lib/core/src/lib/directives/highlight.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/index.ts b/lib/core/src/lib/directives/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/directives/index.ts
+++ b/lib/core/src/lib/directives/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/infinite-select-scroll.directive.spec.ts b/lib/core/src/lib/directives/infinite-select-scroll.directive.spec.ts
index 1d165a9738..a199c1368e 100644
--- a/lib/core/src/lib/directives/infinite-select-scroll.directive.spec.ts
+++ b/lib/core/src/lib/directives/infinite-select-scroll.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/infinite-select-scroll.directive.ts b/lib/core/src/lib/directives/infinite-select-scroll.directive.ts
index ae8f4d8d91..ab59aaf451 100644
--- a/lib/core/src/lib/directives/infinite-select-scroll.directive.ts
+++ b/lib/core/src/lib/directives/infinite-select-scroll.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/logout.directive.spec.ts b/lib/core/src/lib/directives/logout.directive.spec.ts
index be53fe43c2..c7416b9cff 100644
--- a/lib/core/src/lib/directives/logout.directive.spec.ts
+++ b/lib/core/src/lib/directives/logout.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/logout.directive.ts b/lib/core/src/lib/directives/logout.directive.ts
index 915e964eef..b1e54587f4 100644
--- a/lib/core/src/lib/directives/logout.directive.ts
+++ b/lib/core/src/lib/directives/logout.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/public-api.ts b/lib/core/src/lib/directives/public-api.ts
index be03353e6a..c002fbc0f6 100644
--- a/lib/core/src/lib/directives/public-api.ts
+++ b/lib/core/src/lib/directives/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/tooltip-card/tooltip-card.component.ts b/lib/core/src/lib/directives/tooltip-card/tooltip-card.component.ts
index a99b6dbcc7..0cb52ecf4d 100644
--- a/lib/core/src/lib/directives/tooltip-card/tooltip-card.component.ts
+++ b/lib/core/src/lib/directives/tooltip-card/tooltip-card.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.spec.ts b/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.spec.ts
index e7448782bb..c59a2a0ffb 100644
--- a/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.spec.ts
+++ b/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.ts b/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.ts
index a5aad0e6ed..8faecd9001 100644
--- a/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.ts
+++ b/lib/core/src/lib/directives/tooltip-card/tooltip-card.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/upload.directive.spec.ts b/lib/core/src/lib/directives/upload.directive.spec.ts
index 39f81d821c..abc42aa6f3 100644
--- a/lib/core/src/lib/directives/upload.directive.spec.ts
+++ b/lib/core/src/lib/directives/upload.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/directives/upload.directive.ts b/lib/core/src/lib/directives/upload.directive.ts
index eb21143f6f..bbed15052e 100644
--- a/lib/core/src/lib/directives/upload.directive.ts
+++ b/lib/core/src/lib/directives/upload.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/events/base-ui.event.ts b/lib/core/src/lib/events/base-ui.event.ts
index b269647283..4b967fd2f4 100644
--- a/lib/core/src/lib/events/base-ui.event.ts
+++ b/lib/core/src/lib/events/base-ui.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/events/base.event.ts b/lib/core/src/lib/events/base.event.ts
index e8bbc4be1b..74877e5697 100644
--- a/lib/core/src/lib/events/base.event.ts
+++ b/lib/core/src/lib/events/base.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/events/index.ts b/lib/core/src/lib/events/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/events/index.ts
+++ b/lib/core/src/lib/events/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/events/public-api.ts b/lib/core/src/lib/events/public-api.ts
index 6a34c421d4..25187c2511 100644
--- a/lib/core/src/lib/events/public-api.ts
+++ b/lib/core/src/lib/events/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/form-base.component.ts b/lib/core/src/lib/form/components/form-base.component.ts
index 981c06ca59..c2393f4029 100644
--- a/lib/core/src/lib/form/components/form-base.component.ts
+++ b/lib/core/src/lib/form/components/form-base.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/form-custom-button.directive.ts b/lib/core/src/lib/form/components/form-custom-button.directive.ts
index 7e4b10b711..b20a8b9d50 100644
--- a/lib/core/src/lib/form/components/form-custom-button.directive.ts
+++ b/lib/core/src/lib/form/components/form-custom-button.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/form-field/form-field.component.spec.ts b/lib/core/src/lib/form/components/form-field/form-field.component.spec.ts
index c9ed0f5523..2ac69fc423 100644
--- a/lib/core/src/lib/form/components/form-field/form-field.component.spec.ts
+++ b/lib/core/src/lib/form/components/form-field/form-field.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/form-field/form-field.component.ts b/lib/core/src/lib/form/components/form-field/form-field.component.ts
index ecd95b885d..6d61c168de 100644
--- a/lib/core/src/lib/form/components/form-field/form-field.component.ts
+++ b/lib/core/src/lib/form/components/form-field/form-field.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/form-renderer.component.spec.ts b/lib/core/src/lib/form/components/form-renderer.component.spec.ts
index 051ec777b9..e7d3c96d66 100644
--- a/lib/core/src/lib/form/components/form-renderer.component.spec.ts
+++ b/lib/core/src/lib/form/components/form-renderer.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/form-renderer.component.ts b/lib/core/src/lib/form/components/form-renderer.component.ts
index e95456e172..d6497c44bf 100644
--- a/lib/core/src/lib/form/components/form-renderer.component.ts
+++ b/lib/core/src/lib/form/components/form-renderer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.spec.ts b/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.spec.ts
index a782f12d9a..7c2ca33f3d 100644
--- a/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.spec.ts
+++ b/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.ts b/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.ts
index 74e9d6f2d9..33e7203063 100644
--- a/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.ts
+++ b/lib/core/src/lib/form/components/inplace-form-input/inplace-form-input.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/mock/cloud-form.mock.ts b/lib/core/src/lib/form/components/mock/cloud-form.mock.ts
index 011325d895..3b36788a28 100644
--- a/lib/core/src/lib/form/components/mock/cloud-form.mock.ts
+++ b/lib/core/src/lib/form/components/mock/cloud-form.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/mock/form-renderer.component.mock.ts b/lib/core/src/lib/form/components/mock/form-renderer.component.mock.ts
index bfce5dba11..82a652af16 100644
--- a/lib/core/src/lib/form/components/mock/form-renderer.component.mock.ts
+++ b/lib/core/src/lib/form/components/mock/form-renderer.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/mock/form.mock.ts b/lib/core/src/lib/form/components/mock/form.mock.ts
index 011325d895..3b36788a28 100644
--- a/lib/core/src/lib/form/components/mock/form.mock.ts
+++ b/lib/core/src/lib/form/components/mock/form.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/amount/amount.widget.spec.ts b/lib/core/src/lib/form/components/widgets/amount/amount.widget.spec.ts
index de8741b0d4..9d8601d79a 100644
--- a/lib/core/src/lib/form/components/widgets/amount/amount.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/amount/amount.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/amount/amount.widget.ts b/lib/core/src/lib/form/components/widgets/amount/amount.widget.ts
index a8b1f40f5d..56808d926f 100644
--- a/lib/core/src/lib/form/components/widgets/amount/amount.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/amount/amount.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.spec.ts b/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.spec.ts
index 331a32c1fb..d6bd610ece 100644
--- a/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.ts b/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.ts
index 2bc6a9c281..adaebbed13 100644
--- a/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/base-viewer/base-viewer.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.spec.ts b/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.spec.ts
index 7119449861..78a0dbe01c 100644
--- a/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.ts b/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.ts
index a780d1bfa6..d231519fde 100644
--- a/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/checkbox/checkbox.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/container-column.model.ts b/lib/core/src/lib/form/components/widgets/core/container-column.model.ts
index d55966ceda..c888e04c59 100644
--- a/lib/core/src/lib/form/components/widgets/core/container-column.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/container-column.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/container.model.spec.ts b/lib/core/src/lib/form/components/widgets/core/container.model.spec.ts
index 6d7a0138f6..c6e87e7817 100644
--- a/lib/core/src/lib/form/components/widgets/core/container.model.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/core/container.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/container.model.ts b/lib/core/src/lib/form/components/widgets/core/container.model.ts
index c79ebe9a89..de198b4283 100644
--- a/lib/core/src/lib/form/components/widgets/core/container.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/container.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/content-link.model.ts b/lib/core/src/lib/form/components/widgets/core/content-link.model.ts
index 94214ca833..11e421bd99 100644
--- a/lib/core/src/lib/form/components/widgets/core/content-link.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/content-link.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/displayable-cm-properties.model.ts b/lib/core/src/lib/form/components/widgets/core/displayable-cm-properties.model.ts
index ae141febb2..d7991b2881 100644
--- a/lib/core/src/lib/form/components/widgets/core/displayable-cm-properties.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/displayable-cm-properties.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/error-message.model.ts b/lib/core/src/lib/form/components/widgets/core/error-message.model.ts
index 3e4f5e233e..5306593567 100644
--- a/lib/core/src/lib/form/components/widgets/core/error-message.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/error-message.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/external-content-link.ts b/lib/core/src/lib/form/components/widgets/core/external-content-link.ts
index 0dfd28da8e..fd8f7cff32 100644
--- a/lib/core/src/lib/form/components/widgets/core/external-content-link.ts
+++ b/lib/core/src/lib/form/components/widgets/core/external-content-link.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/external-content.ts b/lib/core/src/lib/form/components/widgets/core/external-content.ts
index 457a021bd1..8fd21ca66a 100644
--- a/lib/core/src/lib/form/components/widgets/core/external-content.ts
+++ b/lib/core/src/lib/form/components/widgets/core/external-content.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-file-source.ts b/lib/core/src/lib/form/components/widgets/core/form-field-file-source.ts
index 05827f88c8..a46bcfdca4 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-file-source.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-file-source.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-metadata.ts b/lib/core/src/lib/form/components/widgets/core/form-field-metadata.ts
index ce0ab3d186..1cedf6058a 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-metadata.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-metadata.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-option.ts b/lib/core/src/lib/form/components/widgets/core/form-field-option.ts
index babaf9fd25..6a9483877b 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-option.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-option.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-rule.ts b/lib/core/src/lib/form/components/widgets/core/form-field-rule.ts
index 6e8169522a..f805347718 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-rule.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-rule.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-selected-folder.ts b/lib/core/src/lib/form/components/widgets/core/form-field-selected-folder.ts
index 313d25c34f..2a4abe69f3 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-selected-folder.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-selected-folder.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-templates.ts b/lib/core/src/lib/form/components/widgets/core/form-field-templates.ts
index 9a6b34d13c..771f302816 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-templates.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-templates.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-types.ts b/lib/core/src/lib/form/components/widgets/core/form-field-types.ts
index 4c9ecb0103..77161c1804 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-types.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-types.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-utils.ts b/lib/core/src/lib/form/components/widgets/core/form-field-utils.ts
index af43b1b707..45c4ff2711 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-utils.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-utils.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-validator.spec.ts b/lib/core/src/lib/form/components/widgets/core/form-field-validator.spec.ts
index 3ecbb46fb1..a19e889d87 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-validator.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-validator.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field-validator.ts b/lib/core/src/lib/form/components/widgets/core/form-field-validator.ts
index 6a8a5005e1..cf63d348a0 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field-validator.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field-validator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts b/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts
index 51243a1c4f..99efcbd8b9 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-field.model.ts b/lib/core/src/lib/form/components/widgets/core/form-field.model.ts
index 424751efef..6105b6204b 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-field.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-field.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-outcome-event.model.ts b/lib/core/src/lib/form/components/widgets/core/form-outcome-event.model.ts
index 9e1804e4e3..28fff6fde2 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-outcome-event.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-outcome-event.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-outcome.model.spec.ts b/lib/core/src/lib/form/components/widgets/core/form-outcome.model.spec.ts
index ab96d4e2a3..72a990ecb0 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-outcome.model.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-outcome.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-outcome.model.ts b/lib/core/src/lib/form/components/widgets/core/form-outcome.model.ts
index 78f6f2dd39..5ed31a9dd1 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-outcome.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-outcome.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-values.ts b/lib/core/src/lib/form/components/widgets/core/form-values.ts
index b6feba2cea..59f12cc439 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-values.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-values.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-variable.model.ts b/lib/core/src/lib/form/components/widgets/core/form-variable.model.ts
index f2f0c8bad0..0e329183c4 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-variable.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-variable.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-widget.model.spec.ts b/lib/core/src/lib/form/components/widgets/core/form-widget.model.spec.ts
index e7cc41f6d3..fbb27766f3 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-widget.model.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-widget.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form-widget.model.ts b/lib/core/src/lib/form/components/widgets/core/form-widget.model.ts
index 7102268312..63d5a71bcd 100644
--- a/lib/core/src/lib/form/components/widgets/core/form-widget.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form-widget.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form.model.spec.ts b/lib/core/src/lib/form/components/widgets/core/form.model.spec.ts
index 7e65136c2f..0ac607fc8c 100644
--- a/lib/core/src/lib/form/components/widgets/core/form.model.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/form.model.ts b/lib/core/src/lib/form/components/widgets/core/form.model.ts
index 46c459018f..14c0ae7eff 100644
--- a/lib/core/src/lib/form/components/widgets/core/form.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/form.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/group.model.ts b/lib/core/src/lib/form/components/widgets/core/group.model.ts
index 64ac490c54..d29ed00c73 100644
--- a/lib/core/src/lib/form/components/widgets/core/group.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/group.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/index.ts b/lib/core/src/lib/form/components/widgets/core/index.ts
index 32f097c194..834cb950e6 100644
--- a/lib/core/src/lib/form/components/widgets/core/index.ts
+++ b/lib/core/src/lib/form/components/widgets/core/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/process-form-model.interface.ts b/lib/core/src/lib/form/components/widgets/core/process-form-model.interface.ts
index 94f6880918..7c0c264981 100644
--- a/lib/core/src/lib/form/components/widgets/core/process-form-model.interface.ts
+++ b/lib/core/src/lib/form/components/widgets/core/process-form-model.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/process-variable.model.ts b/lib/core/src/lib/form/components/widgets/core/process-variable.model.ts
index ec4b64097c..21018a9c08 100644
--- a/lib/core/src/lib/form/components/widgets/core/process-variable.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/process-variable.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/tab.model.spec.ts b/lib/core/src/lib/form/components/widgets/core/tab.model.spec.ts
index c44e37f3c2..7532158af7 100644
--- a/lib/core/src/lib/form/components/widgets/core/tab.model.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/core/tab.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/tab.model.ts b/lib/core/src/lib/form/components/widgets/core/tab.model.ts
index 9829d3a401..483bccabdf 100644
--- a/lib/core/src/lib/form/components/widgets/core/tab.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/tab.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/core/upload-widget-content-link.model.ts b/lib/core/src/lib/form/components/widgets/core/upload-widget-content-link.model.ts
index f5beb6460d..2fd26d234f 100644
--- a/lib/core/src/lib/form/components/widgets/core/upload-widget-content-link.model.ts
+++ b/lib/core/src/lib/form/components/widgets/core/upload-widget-content-link.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.spec.ts b/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.spec.ts
index 3b796402f7..7952015f2b 100644
--- a/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.ts b/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.ts
index 5d2e9f6122..cd8a60f8b7 100644
--- a/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/date-time/date-time.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/date/date.widget.spec.ts b/lib/core/src/lib/form/components/widgets/date/date.widget.spec.ts
index 0ed3b8f707..d9fcead5fc 100644
--- a/lib/core/src/lib/form/components/widgets/date/date.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/date/date.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/date/date.widget.ts b/lib/core/src/lib/form/components/widgets/date/date.widget.ts
index df627650d8..afe9bf2109 100644
--- a/lib/core/src/lib/form/components/widgets/date/date.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/date/date.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/display-text/display-text.widget.ts b/lib/core/src/lib/form/components/widgets/display-text/display-text.widget.ts
index 23da9f2a37..54a77c2540 100644
--- a/lib/core/src/lib/form/components/widgets/display-text/display-text.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/display-text/display-text.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/error/error.component.spec.ts b/lib/core/src/lib/form/components/widgets/error/error.component.spec.ts
index 532326c65f..05f121643d 100644
--- a/lib/core/src/lib/form/components/widgets/error/error.component.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/error/error.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/error/error.component.ts b/lib/core/src/lib/form/components/widgets/error/error.component.ts
index 2e1ea6c6b0..d7fa1fe91b 100644
--- a/lib/core/src/lib/form/components/widgets/error/error.component.ts
+++ b/lib/core/src/lib/form/components/widgets/error/error.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.spec.ts b/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.spec.ts
index eaa761428b..337691ea76 100644
--- a/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.ts b/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.ts
index 3792861ab9..993915047d 100644
--- a/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/hyperlink/hyperlink.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/index.ts b/lib/core/src/lib/form/components/widgets/index.ts
index ad9c4f6805..d3b77d6fa2 100644
--- a/lib/core/src/lib/form/components/widgets/index.ts
+++ b/lib/core/src/lib/form/components/widgets/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/json/json.widget.ts b/lib/core/src/lib/form/components/widgets/json/json.widget.ts
index 6664307d52..502f2c6503 100644
--- a/lib/core/src/lib/form/components/widgets/json/json.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/json/json.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.spec.ts b/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.spec.ts
index d2b55be834..7e67ba4985 100644
--- a/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.ts b/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.ts
index 4cecfe66a1..1469533d5f 100644
--- a/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/multiline-text/multiline-text.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/number/number.widget.spec.ts b/lib/core/src/lib/form/components/widgets/number/number.widget.spec.ts
index 51fc9daa78..cc93ad68f0 100644
--- a/lib/core/src/lib/form/components/widgets/number/number.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/number/number.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/number/number.widget.ts b/lib/core/src/lib/form/components/widgets/number/number.widget.ts
index 91ce699cbf..18b502f943 100644
--- a/lib/core/src/lib/form/components/widgets/number/number.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/number/number.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts b/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts
index 3b34748a9d..81fdfd361d 100644
--- a/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts
+++ b/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/text/text.widget.spec.ts b/lib/core/src/lib/form/components/widgets/text/text.widget.spec.ts
index 052688c406..1d97c2c344 100644
--- a/lib/core/src/lib/form/components/widgets/text/text.widget.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/text/text.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/text/text.widget.ts b/lib/core/src/lib/form/components/widgets/text/text.widget.ts
index 9322dda3e0..6c0bae8afc 100644
--- a/lib/core/src/lib/form/components/widgets/text/text.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/text/text.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/unknown/unknown.widget.ts b/lib/core/src/lib/form/components/widgets/unknown/unknown.widget.ts
index de3945a761..ba9e06ce43 100644
--- a/lib/core/src/lib/form/components/widgets/unknown/unknown.widget.ts
+++ b/lib/core/src/lib/form/components/widgets/unknown/unknown.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/widget.component.spec.ts b/lib/core/src/lib/form/components/widgets/widget.component.spec.ts
index a2d8cc5aa0..b4b70af7d5 100644
--- a/lib/core/src/lib/form/components/widgets/widget.component.spec.ts
+++ b/lib/core/src/lib/form/components/widgets/widget.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/components/widgets/widget.component.ts b/lib/core/src/lib/form/components/widgets/widget.component.ts
index d501be9fd3..2eef03a083 100644
--- a/lib/core/src/lib/form/components/widgets/widget.component.ts
+++ b/lib/core/src/lib/form/components/widgets/widget.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/events/form-error.event.ts b/lib/core/src/lib/form/events/form-error.event.ts
index 934aca2c8f..d46ed70b47 100644
--- a/lib/core/src/lib/form/events/form-error.event.ts
+++ b/lib/core/src/lib/form/events/form-error.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/events/form-field.event.ts b/lib/core/src/lib/form/events/form-field.event.ts
index c19ee17e83..f5244f28fd 100644
--- a/lib/core/src/lib/form/events/form-field.event.ts
+++ b/lib/core/src/lib/form/events/form-field.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/events/form-rules.event.ts b/lib/core/src/lib/form/events/form-rules.event.ts
index 0cba4f64af..8cfb641823 100644
--- a/lib/core/src/lib/form/events/form-rules.event.ts
+++ b/lib/core/src/lib/form/events/form-rules.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/events/form.event.ts b/lib/core/src/lib/form/events/form.event.ts
index 3b228827e1..ae97ebf6bd 100644
--- a/lib/core/src/lib/form/events/form.event.ts
+++ b/lib/core/src/lib/form/events/form.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/events/index.ts b/lib/core/src/lib/form/events/index.ts
index 051a975b8a..100cf45b7d 100644
--- a/lib/core/src/lib/form/events/index.ts
+++ b/lib/core/src/lib/form/events/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/events/validate-form-field.event.ts b/lib/core/src/lib/form/events/validate-form-field.event.ts
index db57e2f4dd..540dfc0523 100644
--- a/lib/core/src/lib/form/events/validate-form-field.event.ts
+++ b/lib/core/src/lib/form/events/validate-form-field.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/events/validate-form.event.ts b/lib/core/src/lib/form/events/validate-form.event.ts
index 5dd7d83fb2..1f5e85f074 100644
--- a/lib/core/src/lib/form/events/validate-form.event.ts
+++ b/lib/core/src/lib/form/events/validate-form.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/form-base.module.ts b/lib/core/src/lib/form/form-base.module.ts
index a246429582..a8f54ac9ce 100644
--- a/lib/core/src/lib/form/form-base.module.ts
+++ b/lib/core/src/lib/form/form-base.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/index.ts b/lib/core/src/lib/form/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/form/index.ts
+++ b/lib/core/src/lib/form/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/models/form-rules.model.spec.ts b/lib/core/src/lib/form/models/form-rules.model.spec.ts
index 8cb52bbe8f..1c2fec8c5c 100644
--- a/lib/core/src/lib/form/models/form-rules.model.spec.ts
+++ b/lib/core/src/lib/form/models/form-rules.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/models/form-rules.model.ts b/lib/core/src/lib/form/models/form-rules.model.ts
index a893c0d156..31b959b207 100644
--- a/lib/core/src/lib/form/models/form-rules.model.ts
+++ b/lib/core/src/lib/form/models/form-rules.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/models/task-process-variable.model.ts b/lib/core/src/lib/form/models/task-process-variable.model.ts
index 760951539d..9a77925167 100644
--- a/lib/core/src/lib/form/models/task-process-variable.model.ts
+++ b/lib/core/src/lib/form/models/task-process-variable.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/models/widget-visibility.model.ts b/lib/core/src/lib/form/models/widget-visibility.model.ts
index 64d25203d7..ba63a0599d 100644
--- a/lib/core/src/lib/form/models/widget-visibility.model.ts
+++ b/lib/core/src/lib/form/models/widget-visibility.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/public-api.ts b/lib/core/src/lib/form/public-api.ts
index f7f23e213f..fa80753e8b 100644
--- a/lib/core/src/lib/form/public-api.ts
+++ b/lib/core/src/lib/form/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/form-rendering.service.spec.ts b/lib/core/src/lib/form/services/form-rendering.service.spec.ts
index 1e604db628..ddc3b76dee 100644
--- a/lib/core/src/lib/form/services/form-rendering.service.spec.ts
+++ b/lib/core/src/lib/form/services/form-rendering.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/form-rendering.service.ts b/lib/core/src/lib/form/services/form-rendering.service.ts
index c60d500298..f8f05737d6 100644
--- a/lib/core/src/lib/form/services/form-rendering.service.ts
+++ b/lib/core/src/lib/form/services/form-rendering.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/form-validation-service.interface.ts b/lib/core/src/lib/form/services/form-validation-service.interface.ts
index ab3c59bf08..e5e46664f4 100644
--- a/lib/core/src/lib/form/services/form-validation-service.interface.ts
+++ b/lib/core/src/lib/form/services/form-validation-service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/form.service.spec.ts b/lib/core/src/lib/form/services/form.service.spec.ts
index 1216076f3a..298d6850bd 100644
--- a/lib/core/src/lib/form/services/form.service.spec.ts
+++ b/lib/core/src/lib/form/services/form.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/form.service.ts b/lib/core/src/lib/form/services/form.service.ts
index f0fb747a49..e12e6da76f 100644
--- a/lib/core/src/lib/form/services/form.service.ts
+++ b/lib/core/src/lib/form/services/form.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/widget-visibility-cloud.service.spec.ts b/lib/core/src/lib/form/services/widget-visibility-cloud.service.spec.ts
index 7f5d4168dc..4625fbb000 100644
--- a/lib/core/src/lib/form/services/widget-visibility-cloud.service.spec.ts
+++ b/lib/core/src/lib/form/services/widget-visibility-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/widget-visibility.service.spec.ts b/lib/core/src/lib/form/services/widget-visibility.service.spec.ts
index 223f32ff95..bc3412a481 100644
--- a/lib/core/src/lib/form/services/widget-visibility.service.spec.ts
+++ b/lib/core/src/lib/form/services/widget-visibility.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/form/services/widget-visibility.service.ts b/lib/core/src/lib/form/services/widget-visibility.service.ts
index 1b1cd6a0b5..1dfb7a3bc5 100644
--- a/lib/core/src/lib/form/services/widget-visibility.service.ts
+++ b/lib/core/src/lib/form/services/widget-visibility.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/icon/icon.component.stories.ts b/lib/core/src/lib/icon/icon.component.stories.ts
index 0e54474d21..c895a184d3 100644
--- a/lib/core/src/lib/icon/icon.component.stories.ts
+++ b/lib/core/src/lib/icon/icon.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/icon/icon.component.ts b/lib/core/src/lib/icon/icon.component.ts
index c2ea9e6043..3bf18d1817 100644
--- a/lib/core/src/lib/icon/icon.component.ts
+++ b/lib/core/src/lib/icon/icon.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/icon/icon.module.ts b/lib/core/src/lib/icon/icon.module.ts
index 8f5122ff95..a50abcee51 100644
--- a/lib/core/src/lib/icon/icon.module.ts
+++ b/lib/core/src/lib/icon/icon.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/icon/index.ts b/lib/core/src/lib/icon/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/icon/index.ts
+++ b/lib/core/src/lib/icon/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/icon/public-api.ts b/lib/core/src/lib/icon/public-api.ts
index 582faf5cf8..7e43e310e8 100644
--- a/lib/core/src/lib/icon/public-api.ts
+++ b/lib/core/src/lib/icon/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/identity-user-info/identity-user-info.component.spec.ts b/lib/core/src/lib/identity-user-info/identity-user-info.component.spec.ts
index 6022ba9ca9..3beb58ba98 100644
--- a/lib/core/src/lib/identity-user-info/identity-user-info.component.spec.ts
+++ b/lib/core/src/lib/identity-user-info/identity-user-info.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/identity-user-info/identity-user-info.component.stories.ts b/lib/core/src/lib/identity-user-info/identity-user-info.component.stories.ts
index dde3a8e863..0ee66c43fe 100644
--- a/lib/core/src/lib/identity-user-info/identity-user-info.component.stories.ts
+++ b/lib/core/src/lib/identity-user-info/identity-user-info.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/identity-user-info/identity-user-info.component.ts b/lib/core/src/lib/identity-user-info/identity-user-info.component.ts
index ecd1c5d7f0..610662336b 100644
--- a/lib/core/src/lib/identity-user-info/identity-user-info.component.ts
+++ b/lib/core/src/lib/identity-user-info/identity-user-info.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/identity-user-info/identity-user-info.module.ts b/lib/core/src/lib/identity-user-info/identity-user-info.module.ts
index 38e688f006..9f5d86162f 100644
--- a/lib/core/src/lib/identity-user-info/identity-user-info.module.ts
+++ b/lib/core/src/lib/identity-user-info/identity-user-info.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/identity-user-info/index.ts b/lib/core/src/lib/identity-user-info/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/identity-user-info/index.ts
+++ b/lib/core/src/lib/identity-user-info/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/identity-user-info/public-api.ts b/lib/core/src/lib/identity-user-info/public-api.ts
index f7dabec92a..6b9fa43eb9 100644
--- a/lib/core/src/lib/identity-user-info/public-api.ts
+++ b/lib/core/src/lib/identity-user-info/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/index.ts b/lib/core/src/lib/info-drawer/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/info-drawer/index.ts
+++ b/lib/core/src/lib/info-drawer/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/info-drawer-layout.component.ts b/lib/core/src/lib/info-drawer/info-drawer-layout.component.ts
index 77adad8cbf..8f785c2ce6 100644
--- a/lib/core/src/lib/info-drawer/info-drawer-layout.component.ts
+++ b/lib/core/src/lib/info-drawer/info-drawer-layout.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/info-drawer.component.spec.ts b/lib/core/src/lib/info-drawer/info-drawer.component.spec.ts
index bf05ed0362..6dcac48287 100644
--- a/lib/core/src/lib/info-drawer/info-drawer.component.spec.ts
+++ b/lib/core/src/lib/info-drawer/info-drawer.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/info-drawer.component.stories.ts b/lib/core/src/lib/info-drawer/info-drawer.component.stories.ts
index 2fa674862f..b558b82732 100644
--- a/lib/core/src/lib/info-drawer/info-drawer.component.stories.ts
+++ b/lib/core/src/lib/info-drawer/info-drawer.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/info-drawer.component.ts b/lib/core/src/lib/info-drawer/info-drawer.component.ts
index bfd9a156d6..1c7d4cfead 100644
--- a/lib/core/src/lib/info-drawer/info-drawer.component.ts
+++ b/lib/core/src/lib/info-drawer/info-drawer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/info-drawer.module.ts b/lib/core/src/lib/info-drawer/info-drawer.module.ts
index 9d850f6207..b12fb3aba4 100644
--- a/lib/core/src/lib/info-drawer/info-drawer.module.ts
+++ b/lib/core/src/lib/info-drawer/info-drawer.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/mock/info-drawer.mock.ts b/lib/core/src/lib/info-drawer/mock/info-drawer.mock.ts
index d71406ecdc..25d570fd10 100644
--- a/lib/core/src/lib/info-drawer/mock/info-drawer.mock.ts
+++ b/lib/core/src/lib/info-drawer/mock/info-drawer.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/info-drawer/public-api.ts b/lib/core/src/lib/info-drawer/public-api.ts
index 10f74f9432..86e458474f 100644
--- a/lib/core/src/lib/info-drawer/public-api.ts
+++ b/lib/core/src/lib/info-drawer/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/interface/index.ts b/lib/core/src/lib/interface/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/interface/index.ts
+++ b/lib/core/src/lib/interface/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/interface/injection.tokens.ts b/lib/core/src/lib/interface/injection.tokens.ts
index 4298b0a0f7..59ded019b6 100644
--- a/lib/core/src/lib/interface/injection.tokens.ts
+++ b/lib/core/src/lib/interface/injection.tokens.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/interface/public-api.ts b/lib/core/src/lib/interface/public-api.ts
index cc821b261f..af48eeae73 100644
--- a/lib/core/src/lib/interface/public-api.ts
+++ b/lib/core/src/lib/interface/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/index.ts b/lib/core/src/lib/language-menu/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/language-menu/index.ts
+++ b/lib/core/src/lib/language-menu/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/language-menu.component.spec.ts b/lib/core/src/lib/language-menu/language-menu.component.spec.ts
index 1ad2ae902d..a2bcb7d96e 100644
--- a/lib/core/src/lib/language-menu/language-menu.component.spec.ts
+++ b/lib/core/src/lib/language-menu/language-menu.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/language-menu.component.stories.ts b/lib/core/src/lib/language-menu/language-menu.component.stories.ts
index e1dc918bb7..968ff78c3c 100644
--- a/lib/core/src/lib/language-menu/language-menu.component.stories.ts
+++ b/lib/core/src/lib/language-menu/language-menu.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/language-menu.component.ts b/lib/core/src/lib/language-menu/language-menu.component.ts
index 9fd81f6316..33adcde8eb 100644
--- a/lib/core/src/lib/language-menu/language-menu.component.ts
+++ b/lib/core/src/lib/language-menu/language-menu.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/language-menu.module.ts b/lib/core/src/lib/language-menu/language-menu.module.ts
index a67df443bf..b19a837714 100644
--- a/lib/core/src/lib/language-menu/language-menu.module.ts
+++ b/lib/core/src/lib/language-menu/language-menu.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/language-picker.component.stories.ts b/lib/core/src/lib/language-menu/language-picker.component.stories.ts
index 1baa1223cb..6100476e4f 100644
--- a/lib/core/src/lib/language-menu/language-picker.component.stories.ts
+++ b/lib/core/src/lib/language-menu/language-picker.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/language-picker.component.ts b/lib/core/src/lib/language-menu/language-picker.component.ts
index f6449250d9..20b3e22076 100644
--- a/lib/core/src/lib/language-menu/language-picker.component.ts
+++ b/lib/core/src/lib/language-menu/language-picker.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/public-api.ts b/lib/core/src/lib/language-menu/public-api.ts
index c7a60094a9..726099d202 100644
--- a/lib/core/src/lib/language-menu/public-api.ts
+++ b/lib/core/src/lib/language-menu/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/service/language.service.interface.ts b/lib/core/src/lib/language-menu/service/language.service.interface.ts
index 1bedc9a4a6..d5c3c151a8 100644
--- a/lib/core/src/lib/language-menu/service/language.service.interface.ts
+++ b/lib/core/src/lib/language-menu/service/language.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/language-menu/service/language.service.ts b/lib/core/src/lib/language-menu/service/language.service.ts
index 9849f3b57d..d513f2c750 100644
--- a/lib/core/src/lib/language-menu/service/language.service.ts
+++ b/lib/core/src/lib/language-menu/service/language.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/header/header.component.spec.ts b/lib/core/src/lib/layout/components/header/header.component.spec.ts
index 2e9af3fc68..3f69d8deba 100644
--- a/lib/core/src/lib/layout/components/header/header.component.spec.ts
+++ b/lib/core/src/lib/layout/components/header/header.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/header/header.component.stories.ts b/lib/core/src/lib/layout/components/header/header.component.stories.ts
index b0fb508df2..5ecd89f363 100644
--- a/lib/core/src/lib/layout/components/header/header.component.stories.ts
+++ b/lib/core/src/lib/layout/components/header/header.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/header/header.component.ts b/lib/core/src/lib/layout/components/header/header.component.ts
index f1ed1d6a46..3fab025ff5 100644
--- a/lib/core/src/lib/layout/components/header/header.component.ts
+++ b/lib/core/src/lib/layout/components/header/header.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/layout-container/layout-container.component.spec.ts b/lib/core/src/lib/layout/components/layout-container/layout-container.component.spec.ts
index f403e12c58..f5673668a9 100644
--- a/lib/core/src/lib/layout/components/layout-container/layout-container.component.spec.ts
+++ b/lib/core/src/lib/layout/components/layout-container/layout-container.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/layout-container/layout-container.component.ts b/lib/core/src/lib/layout/components/layout-container/layout-container.component.ts
index aca3712d03..1c2e3fbdf5 100644
--- a/lib/core/src/lib/layout/components/layout-container/layout-container.component.ts
+++ b/lib/core/src/lib/layout/components/layout-container/layout-container.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.spec.ts b/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.spec.ts
index f751b707fb..a84cde06e7 100644
--- a/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.spec.ts
+++ b/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.ts b/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.ts
index c32da80ddc..2ed9804054 100644
--- a/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.ts
+++ b/lib/core/src/lib/layout/components/sidebar-action/sidebar-action-menu.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/sidebar-action/sidebar-action.component.stories.ts b/lib/core/src/lib/layout/components/sidebar-action/sidebar-action.component.stories.ts
index 9955dc538b..1c6c532c72 100644
--- a/lib/core/src/lib/layout/components/sidebar-action/sidebar-action.component.stories.ts
+++ b/lib/core/src/lib/layout/components/sidebar-action/sidebar-action.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.spec.ts b/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.spec.ts
index 0e74e0df63..dd7e10ea89 100644
--- a/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.spec.ts
+++ b/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.stories.ts b/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.stories.ts
index 038da50b75..30c4725afd 100644
--- a/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.stories.ts
+++ b/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.ts b/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.ts
index 7090ecfed0..e5a5013113 100644
--- a/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.ts
+++ b/lib/core/src/lib/layout/components/sidenav-layout/sidenav-layout.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/directives/sidenav-layout-content.directive.ts b/lib/core/src/lib/layout/directives/sidenav-layout-content.directive.ts
index b2c569499a..bdcd245668 100644
--- a/lib/core/src/lib/layout/directives/sidenav-layout-content.directive.ts
+++ b/lib/core/src/lib/layout/directives/sidenav-layout-content.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/directives/sidenav-layout-header.directive.ts b/lib/core/src/lib/layout/directives/sidenav-layout-header.directive.ts
index c1efef86f7..3a267419d3 100644
--- a/lib/core/src/lib/layout/directives/sidenav-layout-header.directive.ts
+++ b/lib/core/src/lib/layout/directives/sidenav-layout-header.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/directives/sidenav-layout-navigation.directive.ts b/lib/core/src/lib/layout/directives/sidenav-layout-navigation.directive.ts
index f6c920c1e8..478882908e 100644
--- a/lib/core/src/lib/layout/directives/sidenav-layout-navigation.directive.ts
+++ b/lib/core/src/lib/layout/directives/sidenav-layout-navigation.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/helpers/animations.ts b/lib/core/src/lib/layout/helpers/animations.ts
index aaf91c9628..6372a6ffb2 100644
--- a/lib/core/src/lib/layout/helpers/animations.ts
+++ b/lib/core/src/lib/layout/helpers/animations.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/index.ts b/lib/core/src/lib/layout/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/layout/index.ts
+++ b/lib/core/src/lib/layout/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/layout.module.ts b/lib/core/src/lib/layout/layout.module.ts
index 6e3aebdcfc..95fd89b3d3 100644
--- a/lib/core/src/lib/layout/layout.module.ts
+++ b/lib/core/src/lib/layout/layout.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/layout/public-api.ts b/lib/core/src/lib/layout/public-api.ts
index 058869ba9d..aed5e34e6a 100644
--- a/lib/core/src/lib/layout/public-api.ts
+++ b/lib/core/src/lib/layout/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/components/login-dialog-component-data.interface.ts b/lib/core/src/lib/login/components/login-dialog-component-data.interface.ts
index 61b8e11445..f0670d3c74 100644
--- a/lib/core/src/lib/login/components/login-dialog-component-data.interface.ts
+++ b/lib/core/src/lib/login/components/login-dialog-component-data.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/components/login-dialog-panel.component.spec.ts b/lib/core/src/lib/login/components/login-dialog-panel.component.spec.ts
index 15f3a007c3..85e423fb15 100644
--- a/lib/core/src/lib/login/components/login-dialog-panel.component.spec.ts
+++ b/lib/core/src/lib/login/components/login-dialog-panel.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/components/login-dialog-panel.component.ts b/lib/core/src/lib/login/components/login-dialog-panel.component.ts
index 52a8333c3b..4d2643b1f0 100644
--- a/lib/core/src/lib/login/components/login-dialog-panel.component.ts
+++ b/lib/core/src/lib/login/components/login-dialog-panel.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/components/login-dialog.component.stories.ts b/lib/core/src/lib/login/components/login-dialog.component.stories.ts
index f3e93d34ea..550c79971a 100644
--- a/lib/core/src/lib/login/components/login-dialog.component.stories.ts
+++ b/lib/core/src/lib/login/components/login-dialog.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/components/login-dialog.component.ts b/lib/core/src/lib/login/components/login-dialog.component.ts
index 021627ea52..4952db14c5 100644
--- a/lib/core/src/lib/login/components/login-dialog.component.ts
+++ b/lib/core/src/lib/login/components/login-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/components/login-dialog.stories.component.ts b/lib/core/src/lib/login/components/login-dialog.stories.component.ts
index 3fb7413d5f..011f40958d 100644
--- a/lib/core/src/lib/login/components/login-dialog.stories.component.ts
+++ b/lib/core/src/lib/login/components/login-dialog.stories.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/components/login.component.spec.ts b/lib/core/src/lib/login/components/login.component.spec.ts
index 764f68cce1..001a7ee7a6 100644
--- a/lib/core/src/lib/login/components/login.component.spec.ts
+++ b/lib/core/src/lib/login/components/login.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -327,7 +327,7 @@ describe('LoginComponent', () => {
it('should render the default copyright text', () => {
expect(element.querySelector('[data-automation-id="login-copyright"]')).toBeDefined();
- expect(element.querySelector('[data-automation-id="login-copyright"]').innerText).toEqual('\u00A9 2016 Alfresco Software, Inc. All Rights Reserved.');
+ expect(element.querySelector('[data-automation-id="login-copyright"]').innerText).toEqual('\u00A9 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.');
});
it('should render the customised copyright text', () => {
diff --git a/lib/core/src/lib/login/components/login.component.stories.ts b/lib/core/src/lib/login/components/login.component.stories.ts
index 55f2c9401e..c9d9c07013 100644
--- a/lib/core/src/lib/login/components/login.component.stories.ts
+++ b/lib/core/src/lib/login/components/login.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -123,10 +123,10 @@ export default {
copyrightText: {
control: 'text',
description: 'The copyright text below the login box.',
- defaultValue: '\u00A9 2016 Alfresco Software, Inc. All Rights Reserved.',
+ defaultValue: '\u00A9 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.',
table: {
type: { summary: 'string' },
- defaultValue: { summary: '\u00A9 2016 Alfresco Software, Inc. All Rights Reserved.' }
+ defaultValue: { summary: '\u00A9 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.' }
}
},
fieldsValidation: {
diff --git a/lib/core/src/lib/login/components/login.component.ts b/lib/core/src/lib/login/components/login.component.ts
index 7e62b8123f..64ee05e308 100644
--- a/lib/core/src/lib/login/components/login.component.ts
+++ b/lib/core/src/lib/login/components/login.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -90,7 +90,7 @@ export class LoginComponent implements OnInit, OnDestroy {
/** The copyright text below the login box. */
@Input()
- copyrightText: string = '\u00A9 2016 Alfresco Software, Inc. All Rights Reserved.';
+ copyrightText: string = '\u00A9 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.';
/** Custom validation rules for the login form. */
@Input()
diff --git a/lib/core/src/lib/login/directives/login-footer.directive.spec.ts b/lib/core/src/lib/login/directives/login-footer.directive.spec.ts
index f7adb572d8..f948ebd53c 100644
--- a/lib/core/src/lib/login/directives/login-footer.directive.spec.ts
+++ b/lib/core/src/lib/login/directives/login-footer.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/directives/login-footer.directive.ts b/lib/core/src/lib/login/directives/login-footer.directive.ts
index 9ab225c806..76e00cb045 100644
--- a/lib/core/src/lib/login/directives/login-footer.directive.ts
+++ b/lib/core/src/lib/login/directives/login-footer.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/directives/login-header.directive.spec.ts b/lib/core/src/lib/login/directives/login-header.directive.spec.ts
index a1c963affd..5681ee12e5 100644
--- a/lib/core/src/lib/login/directives/login-header.directive.spec.ts
+++ b/lib/core/src/lib/login/directives/login-header.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/directives/login-header.directive.ts b/lib/core/src/lib/login/directives/login-header.directive.ts
index 7bcdc413f5..cdfe6f2b36 100644
--- a/lib/core/src/lib/login/directives/login-header.directive.ts
+++ b/lib/core/src/lib/login/directives/login-header.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/index.ts b/lib/core/src/lib/login/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/login/index.ts
+++ b/lib/core/src/lib/login/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/login.module.ts b/lib/core/src/lib/login/login.module.ts
index 742f42f19a..a7047b0b68 100644
--- a/lib/core/src/lib/login/login.module.ts
+++ b/lib/core/src/lib/login/login.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/models/login-error.event.ts b/lib/core/src/lib/login/models/login-error.event.ts
index e99a316307..c26b4f5770 100644
--- a/lib/core/src/lib/login/models/login-error.event.ts
+++ b/lib/core/src/lib/login/models/login-error.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/models/login-submit.event.ts b/lib/core/src/lib/login/models/login-submit.event.ts
index dad73eea77..b860e62574 100644
--- a/lib/core/src/lib/login/models/login-submit.event.ts
+++ b/lib/core/src/lib/login/models/login-submit.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/models/login-success.event.ts b/lib/core/src/lib/login/models/login-success.event.ts
index bbcbc929e4..06e110290d 100644
--- a/lib/core/src/lib/login/models/login-success.event.ts
+++ b/lib/core/src/lib/login/models/login-success.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/login/public-api.ts b/lib/core/src/lib/login/public-api.ts
index d67aea27f1..19d61bbead 100644
--- a/lib/core/src/lib/login/public-api.ts
+++ b/lib/core/src/lib/login/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/material.module.ts b/lib/core/src/lib/material.module.ts
index 81840d4daa..d836fa365a 100644
--- a/lib/core/src/lib/material.module.ts
+++ b/lib/core/src/lib/material.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/alfresco-api.mock.ts b/lib/core/src/lib/mock/alfresco-api.mock.ts
index 1b11d69703..f06ebbe97b 100644
--- a/lib/core/src/lib/mock/alfresco-api.mock.ts
+++ b/lib/core/src/lib/mock/alfresco-api.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/alfresco-api.service.mock.ts b/lib/core/src/lib/mock/alfresco-api.service.mock.ts
index fd4e7b32c8..fc1d221798 100644
--- a/lib/core/src/lib/mock/alfresco-api.service.mock.ts
+++ b/lib/core/src/lib/mock/alfresco-api.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/cloud-form.mock.ts b/lib/core/src/lib/mock/cloud-form.mock.ts
index 011325d895..3b36788a28 100644
--- a/lib/core/src/lib/mock/cloud-form.mock.ts
+++ b/lib/core/src/lib/mock/cloud-form.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/cookie.service.mock.ts b/lib/core/src/lib/mock/cookie.service.mock.ts
index 18a9aecf59..87b30e49d5 100644
--- a/lib/core/src/lib/mock/cookie.service.mock.ts
+++ b/lib/core/src/lib/mock/cookie.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/data-column.mock.ts b/lib/core/src/lib/mock/data-column.mock.ts
index 7aa628331e..2c9399d6f2 100644
--- a/lib/core/src/lib/mock/data-column.mock.ts
+++ b/lib/core/src/lib/mock/data-column.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/dom-sanitizer-mock.ts b/lib/core/src/lib/mock/dom-sanitizer-mock.ts
index b07b146329..c20af6f41d 100644
--- a/lib/core/src/lib/mock/dom-sanitizer-mock.ts
+++ b/lib/core/src/lib/mock/dom-sanitizer-mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/event.mock.ts b/lib/core/src/lib/mock/event.mock.ts
index 28bff694c3..23fa42d31c 100644
--- a/lib/core/src/lib/mock/event.mock.ts
+++ b/lib/core/src/lib/mock/event.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/demo-form.mock.ts b/lib/core/src/lib/mock/form/demo-form.mock.ts
index a117bbc6cf..8bdcc52cf0 100644
--- a/lib/core/src/lib/mock/form/demo-form.mock.ts
+++ b/lib/core/src/lib/mock/form/demo-form.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/form-definition-readonly.mock.ts b/lib/core/src/lib/mock/form/form-definition-readonly.mock.ts
index a9ea43b174..fab7832b4e 100644
--- a/lib/core/src/lib/mock/form/form-definition-readonly.mock.ts
+++ b/lib/core/src/lib/mock/form/form-definition-readonly.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/form-definition-visibility.mock.ts b/lib/core/src/lib/mock/form/form-definition-visibility.mock.ts
index c25c657986..fcc4277463 100644
--- a/lib/core/src/lib/mock/form/form-definition-visibility.mock.ts
+++ b/lib/core/src/lib/mock/form/form-definition-visibility.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/form-definition.mock.ts b/lib/core/src/lib/mock/form/form-definition.mock.ts
index 9da0a12510..f2e90d87c8 100644
--- a/lib/core/src/lib/mock/form/form-definition.mock.ts
+++ b/lib/core/src/lib/mock/form/form-definition.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/form.component.mock.ts b/lib/core/src/lib/mock/form/form.component.mock.ts
index ef590cc029..a9f64a3725 100644
--- a/lib/core/src/lib/mock/form/form.component.mock.ts
+++ b/lib/core/src/lib/mock/form/form.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/form.service.mock.ts b/lib/core/src/lib/mock/form/form.service.mock.ts
index 9fde234bba..61ea56bfe2 100644
--- a/lib/core/src/lib/mock/form/form.service.mock.ts
+++ b/lib/core/src/lib/mock/form/form.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/start-form.component.mock.ts b/lib/core/src/lib/mock/form/start-form.component.mock.ts
index 8d1d7fa83d..756509893c 100644
--- a/lib/core/src/lib/mock/form/start-form.component.mock.ts
+++ b/lib/core/src/lib/mock/form/start-form.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/widget-visibility-cloud.service.mock.ts b/lib/core/src/lib/mock/form/widget-visibility-cloud.service.mock.ts
index fbafe216ed..88e4fdc604 100644
--- a/lib/core/src/lib/mock/form/widget-visibility-cloud.service.mock.ts
+++ b/lib/core/src/lib/mock/form/widget-visibility-cloud.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/form/widget-visibility.service.mock.ts b/lib/core/src/lib/mock/form/widget-visibility.service.mock.ts
index 2b9ebb2693..f8a8882f19 100644
--- a/lib/core/src/lib/mock/form/widget-visibility.service.mock.ts
+++ b/lib/core/src/lib/mock/form/widget-visibility.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/index.ts b/lib/core/src/lib/mock/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/mock/index.ts
+++ b/lib/core/src/lib/mock/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/language.service.mock.ts b/lib/core/src/lib/mock/language.service.mock.ts
index 35b3f16905..cab8021db1 100644
--- a/lib/core/src/lib/mock/language.service.mock.ts
+++ b/lib/core/src/lib/mock/language.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/mat-icon-registry-mock.ts b/lib/core/src/lib/mock/mat-icon-registry-mock.ts
index e6020a6307..a00b65f41a 100644
--- a/lib/core/src/lib/mock/mat-icon-registry-mock.ts
+++ b/lib/core/src/lib/mock/mat-icon-registry-mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/public-api.ts b/lib/core/src/lib/mock/public-api.ts
index 9ca99b073e..2344fdaad6 100644
--- a/lib/core/src/lib/mock/public-api.ts
+++ b/lib/core/src/lib/mock/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/translation.service.mock.ts b/lib/core/src/lib/mock/translation.service.mock.ts
index bb6d16213f..162f59db7c 100644
--- a/lib/core/src/lib/mock/translation.service.mock.ts
+++ b/lib/core/src/lib/mock/translation.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/mock/user-access.mock.ts b/lib/core/src/lib/mock/user-access.mock.ts
index b90fe8b9cc..ad09eb2de0 100644
--- a/lib/core/src/lib/mock/user-access.mock.ts
+++ b/lib/core/src/lib/mock/user-access.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/comment.model.ts b/lib/core/src/lib/models/comment.model.ts
index 68c2424ab2..60af414209 100644
--- a/lib/core/src/lib/models/comment.model.ts
+++ b/lib/core/src/lib/models/comment.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/component.model.ts b/lib/core/src/lib/models/component.model.ts
index 7352145fb3..4547b933d9 100644
--- a/lib/core/src/lib/models/component.model.ts
+++ b/lib/core/src/lib/models/component.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/decimal-number.model.ts b/lib/core/src/lib/models/decimal-number.model.ts
index 6ffc9889f3..85807977ae 100644
--- a/lib/core/src/lib/models/decimal-number.model.ts
+++ b/lib/core/src/lib/models/decimal-number.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/general-user.model.ts b/lib/core/src/lib/models/general-user.model.ts
index 062bf9420c..40a27e9975 100644
--- a/lib/core/src/lib/models/general-user.model.ts
+++ b/lib/core/src/lib/models/general-user.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/index.ts b/lib/core/src/lib/models/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/models/index.ts
+++ b/lib/core/src/lib/models/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/pagination.model.ts b/lib/core/src/lib/models/pagination.model.ts
index 356fc8635f..689acde2d2 100644
--- a/lib/core/src/lib/models/pagination.model.ts
+++ b/lib/core/src/lib/models/pagination.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/product-version.model.ts b/lib/core/src/lib/models/product-version.model.ts
index f3ac52b29b..8c58e52b92 100644
--- a/lib/core/src/lib/models/product-version.model.ts
+++ b/lib/core/src/lib/models/product-version.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/public-api.ts b/lib/core/src/lib/models/public-api.ts
index 8062460cb2..77ac22a38c 100644
--- a/lib/core/src/lib/models/public-api.ts
+++ b/lib/core/src/lib/models/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/models/request-pagination.model.ts b/lib/core/src/lib/models/request-pagination.model.ts
index 5e1a9b228a..bce29450a7 100644
--- a/lib/core/src/lib/models/request-pagination.model.ts
+++ b/lib/core/src/lib/models/request-pagination.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/components/add-notification.stories.component.ts b/lib/core/src/lib/notifications/components/add-notification.stories.component.ts
index 0957205cfe..c3416ce5e0 100644
--- a/lib/core/src/lib/notifications/components/add-notification.stories.component.ts
+++ b/lib/core/src/lib/notifications/components/add-notification.stories.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/components/notification-history.component.spec.ts b/lib/core/src/lib/notifications/components/notification-history.component.spec.ts
index bf189ad814..53b94417a3 100644
--- a/lib/core/src/lib/notifications/components/notification-history.component.spec.ts
+++ b/lib/core/src/lib/notifications/components/notification-history.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/components/notification-history.component.stories.ts b/lib/core/src/lib/notifications/components/notification-history.component.stories.ts
index e8da48a4c1..bb8c4669d0 100644
--- a/lib/core/src/lib/notifications/components/notification-history.component.stories.ts
+++ b/lib/core/src/lib/notifications/components/notification-history.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/components/notification-history.component.ts b/lib/core/src/lib/notifications/components/notification-history.component.ts
index 4a7b575b63..765e687748 100644
--- a/lib/core/src/lib/notifications/components/notification-history.component.ts
+++ b/lib/core/src/lib/notifications/components/notification-history.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/helpers/notification.factory.ts b/lib/core/src/lib/notifications/helpers/notification.factory.ts
index bcfee9c267..0b45b0570c 100644
--- a/lib/core/src/lib/notifications/helpers/notification.factory.ts
+++ b/lib/core/src/lib/notifications/helpers/notification.factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/index.ts b/lib/core/src/lib/notifications/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/notifications/index.ts
+++ b/lib/core/src/lib/notifications/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/models/notification.model.ts b/lib/core/src/lib/notifications/models/notification.model.ts
index 2fc48e15f7..ec8392944b 100644
--- a/lib/core/src/lib/notifications/models/notification.model.ts
+++ b/lib/core/src/lib/notifications/models/notification.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/notification-history.module.ts b/lib/core/src/lib/notifications/notification-history.module.ts
index 2cdba1b974..335f00090a 100644
--- a/lib/core/src/lib/notifications/notification-history.module.ts
+++ b/lib/core/src/lib/notifications/notification-history.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/pipes/notification-icon.pipe.ts b/lib/core/src/lib/notifications/pipes/notification-icon.pipe.ts
index a299cf16f4..720777350f 100644
--- a/lib/core/src/lib/notifications/pipes/notification-icon.pipe.ts
+++ b/lib/core/src/lib/notifications/pipes/notification-icon.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/public-api.ts b/lib/core/src/lib/notifications/public-api.ts
index a426359f8c..b669b4049e 100644
--- a/lib/core/src/lib/notifications/public-api.ts
+++ b/lib/core/src/lib/notifications/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/services/notification.service.spec.ts b/lib/core/src/lib/notifications/services/notification.service.spec.ts
index 7f52fee5bf..1aa5f89e6b 100644
--- a/lib/core/src/lib/notifications/services/notification.service.spec.ts
+++ b/lib/core/src/lib/notifications/services/notification.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/notifications/services/notification.service.ts b/lib/core/src/lib/notifications/services/notification.service.ts
index cd9e280abc..22fbbdd5d2 100644
--- a/lib/core/src/lib/notifications/services/notification.service.ts
+++ b/lib/core/src/lib/notifications/services/notification.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/index.ts b/lib/core/src/lib/pagination/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/pagination/index.ts
+++ b/lib/core/src/lib/pagination/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/infinite-pagination.component.spec.ts b/lib/core/src/lib/pagination/infinite-pagination.component.spec.ts
index 4516ba34ff..d7b98f3a4c 100644
--- a/lib/core/src/lib/pagination/infinite-pagination.component.spec.ts
+++ b/lib/core/src/lib/pagination/infinite-pagination.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/infinite-pagination.component.ts b/lib/core/src/lib/pagination/infinite-pagination.component.ts
index de1bb2f122..f7e5331f28 100644
--- a/lib/core/src/lib/pagination/infinite-pagination.component.ts
+++ b/lib/core/src/lib/pagination/infinite-pagination.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/paginated-component.interface.ts b/lib/core/src/lib/pagination/paginated-component.interface.ts
index 4dbb9ce66b..d86d130687 100644
--- a/lib/core/src/lib/pagination/paginated-component.interface.ts
+++ b/lib/core/src/lib/pagination/paginated-component.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/pagination-component.interface.ts b/lib/core/src/lib/pagination/pagination-component.interface.ts
index ab33596992..c7de074944 100644
--- a/lib/core/src/lib/pagination/pagination-component.interface.ts
+++ b/lib/core/src/lib/pagination/pagination-component.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/pagination.component.spec.ts b/lib/core/src/lib/pagination/pagination.component.spec.ts
index 093081340b..4df8e1200d 100644
--- a/lib/core/src/lib/pagination/pagination.component.spec.ts
+++ b/lib/core/src/lib/pagination/pagination.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/pagination.component.stories.ts b/lib/core/src/lib/pagination/pagination.component.stories.ts
index e6a4399eb3..88f72be90c 100644
--- a/lib/core/src/lib/pagination/pagination.component.stories.ts
+++ b/lib/core/src/lib/pagination/pagination.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/pagination.component.ts b/lib/core/src/lib/pagination/pagination.component.ts
index b273156ca6..5d2d8821d9 100644
--- a/lib/core/src/lib/pagination/pagination.component.ts
+++ b/lib/core/src/lib/pagination/pagination.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/pagination.module.ts b/lib/core/src/lib/pagination/pagination.module.ts
index 6715600748..e89e91431f 100644
--- a/lib/core/src/lib/pagination/pagination.module.ts
+++ b/lib/core/src/lib/pagination/pagination.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pagination/public-api.ts b/lib/core/src/lib/pagination/public-api.ts
index 05bf9a443d..59fd1a3c7d 100644
--- a/lib/core/src/lib/pagination/public-api.ts
+++ b/lib/core/src/lib/pagination/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/decimal-number.pipe.spec.ts b/lib/core/src/lib/pipes/decimal-number.pipe.spec.ts
index 75cf1e02f8..6c5f18d572 100644
--- a/lib/core/src/lib/pipes/decimal-number.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/decimal-number.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/decimal-number.pipe.ts b/lib/core/src/lib/pipes/decimal-number.pipe.ts
index e623713bde..86f5b54323 100644
--- a/lib/core/src/lib/pipes/decimal-number.pipe.ts
+++ b/lib/core/src/lib/pipes/decimal-number.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/file-size.pipe.spec.ts b/lib/core/src/lib/pipes/file-size.pipe.spec.ts
index 5b388edbfc..9ae98b65da 100644
--- a/lib/core/src/lib/pipes/file-size.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/file-size.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/file-size.pipe.ts b/lib/core/src/lib/pipes/file-size.pipe.ts
index da426b2264..f1337c128a 100644
--- a/lib/core/src/lib/pipes/file-size.pipe.ts
+++ b/lib/core/src/lib/pipes/file-size.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/file-type.pipe.spec.ts b/lib/core/src/lib/pipes/file-type.pipe.spec.ts
index f5f7be9b40..f55e1d51f3 100644
--- a/lib/core/src/lib/pipes/file-type.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/file-type.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/file-type.pipe.ts b/lib/core/src/lib/pipes/file-type.pipe.ts
index 78b299ac4f..5b1c55f002 100644
--- a/lib/core/src/lib/pipes/file-type.pipe.ts
+++ b/lib/core/src/lib/pipes/file-type.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.spec.ts b/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.spec.ts
index ca7bfd7247..30bbc28d89 100644
--- a/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.ts b/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.ts
index 2154a90711..f4e3311f0a 100644
--- a/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.ts
+++ b/lib/core/src/lib/pipes/filter-out-every-object-by-prop.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/filter-string.pipe.spec.ts b/lib/core/src/lib/pipes/filter-string.pipe.spec.ts
index 380a79afbd..c5da1062b8 100644
--- a/lib/core/src/lib/pipes/filter-string.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/filter-string.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/filter-string.pipe.ts b/lib/core/src/lib/pipes/filter-string.pipe.ts
index 8b2725a50f..fd6f3a1f7b 100644
--- a/lib/core/src/lib/pipes/filter-string.pipe.ts
+++ b/lib/core/src/lib/pipes/filter-string.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/format-space.pipe.spec.ts b/lib/core/src/lib/pipes/format-space.pipe.spec.ts
index 2f736a89f5..aa00631331 100644
--- a/lib/core/src/lib/pipes/format-space.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/format-space.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/format-space.pipe.ts b/lib/core/src/lib/pipes/format-space.pipe.ts
index a06c260956..2761699638 100644
--- a/lib/core/src/lib/pipes/format-space.pipe.ts
+++ b/lib/core/src/lib/pipes/format-space.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/full-name.pipe.spec.ts b/lib/core/src/lib/pipes/full-name.pipe.spec.ts
index eae0c58102..cb45540138 100644
--- a/lib/core/src/lib/pipes/full-name.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/full-name.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/full-name.pipe.ts b/lib/core/src/lib/pipes/full-name.pipe.ts
index d2c1f7efdf..d2af5a3e52 100644
--- a/lib/core/src/lib/pipes/full-name.pipe.ts
+++ b/lib/core/src/lib/pipes/full-name.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/index.ts b/lib/core/src/lib/pipes/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/pipes/index.ts
+++ b/lib/core/src/lib/pipes/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/localized-date.pipe.spec.ts b/lib/core/src/lib/pipes/localized-date.pipe.spec.ts
index d6f4a63b54..80d2d5ea36 100644
--- a/lib/core/src/lib/pipes/localized-date.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/localized-date.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/localized-date.pipe.ts b/lib/core/src/lib/pipes/localized-date.pipe.ts
index 470536def4..ee2e58e92a 100644
--- a/lib/core/src/lib/pipes/localized-date.pipe.ts
+++ b/lib/core/src/lib/pipes/localized-date.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/localized-role.pipe.spec.ts b/lib/core/src/lib/pipes/localized-role.pipe.spec.ts
index 8b076b7e9f..73d01bc9d9 100644
--- a/lib/core/src/lib/pipes/localized-role.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/localized-role.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/localized-role.pipe.ts b/lib/core/src/lib/pipes/localized-role.pipe.ts
index 87a631dbd8..ef15957a3d 100644
--- a/lib/core/src/lib/pipes/localized-role.pipe.ts
+++ b/lib/core/src/lib/pipes/localized-role.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/mime-type-icon.pipe.ts b/lib/core/src/lib/pipes/mime-type-icon.pipe.ts
index 4590a190cc..44411611e7 100644
--- a/lib/core/src/lib/pipes/mime-type-icon.pipe.ts
+++ b/lib/core/src/lib/pipes/mime-type-icon.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/moment-date.pipe.ts b/lib/core/src/lib/pipes/moment-date.pipe.ts
index c3591eaf85..c88bd7f229 100644
--- a/lib/core/src/lib/pipes/moment-date.pipe.ts
+++ b/lib/core/src/lib/pipes/moment-date.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/moment-datetime.pipe.ts b/lib/core/src/lib/pipes/moment-datetime.pipe.ts
index 292dd77e83..3a9d644972 100644
--- a/lib/core/src/lib/pipes/moment-datetime.pipe.ts
+++ b/lib/core/src/lib/pipes/moment-datetime.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/multi-value.pipe.spec.ts b/lib/core/src/lib/pipes/multi-value.pipe.spec.ts
index 8bd4a2e495..55da80b1a9 100644
--- a/lib/core/src/lib/pipes/multi-value.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/multi-value.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/multi-value.pipe.ts b/lib/core/src/lib/pipes/multi-value.pipe.ts
index 6db5fab54a..40c16b0845 100644
--- a/lib/core/src/lib/pipes/multi-value.pipe.ts
+++ b/lib/core/src/lib/pipes/multi-value.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/pipe.module.ts b/lib/core/src/lib/pipes/pipe.module.ts
index 9ef9957bab..f56dff18e5 100644
--- a/lib/core/src/lib/pipes/pipe.module.ts
+++ b/lib/core/src/lib/pipes/pipe.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/public-api.ts b/lib/core/src/lib/pipes/public-api.ts
index cfe0b7a32d..1769d448eb 100644
--- a/lib/core/src/lib/pipes/public-api.ts
+++ b/lib/core/src/lib/pipes/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/text-highlight.pipe.ts b/lib/core/src/lib/pipes/text-highlight.pipe.ts
index 55d3c00c61..a3cc024d9a 100644
--- a/lib/core/src/lib/pipes/text-highlight.pipe.ts
+++ b/lib/core/src/lib/pipes/text-highlight.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/time-ago.pipe.spec.ts b/lib/core/src/lib/pipes/time-ago.pipe.spec.ts
index c7820d4710..00ae34aa13 100644
--- a/lib/core/src/lib/pipes/time-ago.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/time-ago.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/time-ago.pipe.ts b/lib/core/src/lib/pipes/time-ago.pipe.ts
index 1b6714d505..3839e3a857 100644
--- a/lib/core/src/lib/pipes/time-ago.pipe.ts
+++ b/lib/core/src/lib/pipes/time-ago.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/user-initial.pipe.spec.ts b/lib/core/src/lib/pipes/user-initial.pipe.spec.ts
index c0639a6801..e286640a4f 100644
--- a/lib/core/src/lib/pipes/user-initial.pipe.spec.ts
+++ b/lib/core/src/lib/pipes/user-initial.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/user-initial.pipe.ts b/lib/core/src/lib/pipes/user-initial.pipe.ts
index 8cf8129002..e76844b123 100644
--- a/lib/core/src/lib/pipes/user-initial.pipe.ts
+++ b/lib/core/src/lib/pipes/user-initial.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/pipes/user-like.interface.ts b/lib/core/src/lib/pipes/user-like.interface.ts
index 470b9b2671..7eb09f6714 100644
--- a/lib/core/src/lib/pipes/user-like.interface.ts
+++ b/lib/core/src/lib/pipes/user-like.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/animations.ts b/lib/core/src/lib/search-text/animations.ts
index 8c198a6f79..9a0b846ac9 100644
--- a/lib/core/src/lib/search-text/animations.ts
+++ b/lib/core/src/lib/search-text/animations.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/index.ts b/lib/core/src/lib/search-text/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/search-text/index.ts
+++ b/lib/core/src/lib/search-text/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/models/search-text-input.model.ts b/lib/core/src/lib/search-text/models/search-text-input.model.ts
index 275a97fccf..8ca2721db9 100644
--- a/lib/core/src/lib/search-text/models/search-text-input.model.ts
+++ b/lib/core/src/lib/search-text/models/search-text-input.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/public-api.ts b/lib/core/src/lib/search-text/public-api.ts
index 4d31c58cac..9aeea290a0 100644
--- a/lib/core/src/lib/search-text/public-api.ts
+++ b/lib/core/src/lib/search-text/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/search-text-input.component.spec.ts b/lib/core/src/lib/search-text/search-text-input.component.spec.ts
index ab7af3db7d..5b009a477f 100644
--- a/lib/core/src/lib/search-text/search-text-input.component.spec.ts
+++ b/lib/core/src/lib/search-text/search-text-input.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/search-text-input.component.ts b/lib/core/src/lib/search-text/search-text-input.component.ts
index e6bd1f252d..2e703adb58 100644
--- a/lib/core/src/lib/search-text/search-text-input.component.ts
+++ b/lib/core/src/lib/search-text/search-text-input.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/search-text-input.module.ts b/lib/core/src/lib/search-text/search-text-input.module.ts
index e9406300a5..d60a3cf8f7 100644
--- a/lib/core/src/lib/search-text/search-text-input.module.ts
+++ b/lib/core/src/lib/search-text/search-text-input.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/search-text/search-trigger.directive.ts b/lib/core/src/lib/search-text/search-trigger.directive.ts
index dc2b0ffc3b..3ed4eda056 100644
--- a/lib/core/src/lib/search-text/search-trigger.directive.ts
+++ b/lib/core/src/lib/search-text/search-trigger.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/services/alfresco-api.interface.ts b/lib/core/src/lib/services/alfresco-api.interface.ts
index 0bbd42023c..5f36862136 100644
--- a/lib/core/src/lib/services/alfresco-api.interface.ts
+++ b/lib/core/src/lib/services/alfresco-api.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/services/alfresco-api.service.ts b/lib/core/src/lib/services/alfresco-api.service.ts
index f1524f41ad..85b771f91e 100644
--- a/lib/core/src/lib/services/alfresco-api.service.ts
+++ b/lib/core/src/lib/services/alfresco-api.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/services/base-authentication.service.ts b/lib/core/src/lib/services/base-authentication.service.ts
index 7bcf0e84ca..1674ea013e 100644
--- a/lib/core/src/lib/services/base-authentication.service.ts
+++ b/lib/core/src/lib/services/base-authentication.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/services/index.ts b/lib/core/src/lib/services/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/services/index.ts
+++ b/lib/core/src/lib/services/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/services/public-api.ts b/lib/core/src/lib/services/public-api.ts
index cba8f3c890..1953abfc3b 100644
--- a/lib/core/src/lib/services/public-api.ts
+++ b/lib/core/src/lib/services/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/services/startup-service-factory.ts b/lib/core/src/lib/services/startup-service-factory.ts
index 28b44c3794..beb78b2ad5 100644
--- a/lib/core/src/lib/services/startup-service-factory.ts
+++ b/lib/core/src/lib/services/startup-service-factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/snackbar-content/index.ts b/lib/core/src/lib/snackbar-content/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/snackbar-content/index.ts
+++ b/lib/core/src/lib/snackbar-content/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/snackbar-content/public-api.ts b/lib/core/src/lib/snackbar-content/public-api.ts
index c4866be15c..875aa4bd9f 100644
--- a/lib/core/src/lib/snackbar-content/public-api.ts
+++ b/lib/core/src/lib/snackbar-content/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/snackbar-content/snack-bar-data.ts b/lib/core/src/lib/snackbar-content/snack-bar-data.ts
index 37444b5725..9cf5a89f90 100644
--- a/lib/core/src/lib/snackbar-content/snack-bar-data.ts
+++ b/lib/core/src/lib/snackbar-content/snack-bar-data.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/snackbar-content/snackbar-content.component.spec.ts b/lib/core/src/lib/snackbar-content/snackbar-content.component.spec.ts
index df3d5fb96e..cc8a2703c7 100644
--- a/lib/core/src/lib/snackbar-content/snackbar-content.component.spec.ts
+++ b/lib/core/src/lib/snackbar-content/snackbar-content.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/snackbar-content/snackbar-content.component.ts b/lib/core/src/lib/snackbar-content/snackbar-content.component.ts
index 9805484368..e89fdc1e9e 100644
--- a/lib/core/src/lib/snackbar-content/snackbar-content.component.ts
+++ b/lib/core/src/lib/snackbar-content/snackbar-content.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/snackbar-content/snackbar-content.module.ts b/lib/core/src/lib/snackbar-content/snackbar-content.module.ts
index af4f125505..957672c886 100644
--- a/lib/core/src/lib/snackbar-content/snackbar-content.module.ts
+++ b/lib/core/src/lib/snackbar-content/snackbar-content.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/sorting-picker/index.ts b/lib/core/src/lib/sorting-picker/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/sorting-picker/index.ts
+++ b/lib/core/src/lib/sorting-picker/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/sorting-picker/mock/sorting-picker.mock.ts b/lib/core/src/lib/sorting-picker/mock/sorting-picker.mock.ts
index 7c6d21c3b4..fc3526b66e 100644
--- a/lib/core/src/lib/sorting-picker/mock/sorting-picker.mock.ts
+++ b/lib/core/src/lib/sorting-picker/mock/sorting-picker.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/sorting-picker/public-api.ts b/lib/core/src/lib/sorting-picker/public-api.ts
index c2da677bcf..904cda7f6e 100644
--- a/lib/core/src/lib/sorting-picker/public-api.ts
+++ b/lib/core/src/lib/sorting-picker/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/sorting-picker/sorting-picker.component.spec.ts b/lib/core/src/lib/sorting-picker/sorting-picker.component.spec.ts
index f8b3bc5cef..ea9e5843ca 100644
--- a/lib/core/src/lib/sorting-picker/sorting-picker.component.spec.ts
+++ b/lib/core/src/lib/sorting-picker/sorting-picker.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/sorting-picker/sorting-picker.component.stories.ts b/lib/core/src/lib/sorting-picker/sorting-picker.component.stories.ts
index 9d7d6ffca9..3f07c67f0e 100644
--- a/lib/core/src/lib/sorting-picker/sorting-picker.component.stories.ts
+++ b/lib/core/src/lib/sorting-picker/sorting-picker.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/sorting-picker/sorting-picker.component.ts b/lib/core/src/lib/sorting-picker/sorting-picker.component.ts
index be6fb916ce..72d09ea8fa 100644
--- a/lib/core/src/lib/sorting-picker/sorting-picker.component.ts
+++ b/lib/core/src/lib/sorting-picker/sorting-picker.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/sorting-picker/sorting-picker.module.ts b/lib/core/src/lib/sorting-picker/sorting-picker.module.ts
index 2df9aa4c07..51f6fd49ac 100644
--- a/lib/core/src/lib/sorting-picker/sorting-picker.module.ts
+++ b/lib/core/src/lib/sorting-picker/sorting-picker.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/empty-content/empty-content.component.spec.ts b/lib/core/src/lib/templates/empty-content/empty-content.component.spec.ts
index 5366437c65..17f40d271c 100644
--- a/lib/core/src/lib/templates/empty-content/empty-content.component.spec.ts
+++ b/lib/core/src/lib/templates/empty-content/empty-content.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/empty-content/empty-content.component.stories.ts b/lib/core/src/lib/templates/empty-content/empty-content.component.stories.ts
index 6323c9e90e..d75115d2e0 100644
--- a/lib/core/src/lib/templates/empty-content/empty-content.component.stories.ts
+++ b/lib/core/src/lib/templates/empty-content/empty-content.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/empty-content/empty-content.component.ts b/lib/core/src/lib/templates/empty-content/empty-content.component.ts
index a8c099a700..df774cd206 100644
--- a/lib/core/src/lib/templates/empty-content/empty-content.component.ts
+++ b/lib/core/src/lib/templates/empty-content/empty-content.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/error-content/error-content.component.spec.ts b/lib/core/src/lib/templates/error-content/error-content.component.spec.ts
index fa4e751fd9..7b19fa18c0 100644
--- a/lib/core/src/lib/templates/error-content/error-content.component.spec.ts
+++ b/lib/core/src/lib/templates/error-content/error-content.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/error-content/error-content.component.stories.ts b/lib/core/src/lib/templates/error-content/error-content.component.stories.ts
index 88068cf165..8db67a4248 100644
--- a/lib/core/src/lib/templates/error-content/error-content.component.stories.ts
+++ b/lib/core/src/lib/templates/error-content/error-content.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/error-content/error-content.component.ts b/lib/core/src/lib/templates/error-content/error-content.component.ts
index 68e34fe8af..6d67046f01 100644
--- a/lib/core/src/lib/templates/error-content/error-content.component.ts
+++ b/lib/core/src/lib/templates/error-content/error-content.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/index.ts b/lib/core/src/lib/templates/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/templates/index.ts
+++ b/lib/core/src/lib/templates/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/public-api.ts b/lib/core/src/lib/templates/public-api.ts
index 9e361cfdbb..6bd3b94ad8 100644
--- a/lib/core/src/lib/templates/public-api.ts
+++ b/lib/core/src/lib/templates/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/templates/template.module.ts b/lib/core/src/lib/templates/template.module.ts
index fce145e9cd..b47a4db3c9 100644
--- a/lib/core/src/lib/templates/template.module.ts
+++ b/lib/core/src/lib/templates/template.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/testing/automation.service.ts b/lib/core/src/lib/testing/automation.service.ts
index 07c29fff7f..dc8cf0dd0f 100644
--- a/lib/core/src/lib/testing/automation.service.ts
+++ b/lib/core/src/lib/testing/automation.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/testing/core.story.module.ts b/lib/core/src/lib/testing/core.story.module.ts
index ea40e3e3a9..ac02e8a5d4 100644
--- a/lib/core/src/lib/testing/core.story.module.ts
+++ b/lib/core/src/lib/testing/core.story.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/testing/core.testing.module.ts b/lib/core/src/lib/testing/core.testing.module.ts
index 29587ac411..09273dce3f 100644
--- a/lib/core/src/lib/testing/core.testing.module.ts
+++ b/lib/core/src/lib/testing/core.testing.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/testing/index.ts b/lib/core/src/lib/testing/index.ts
index 4ee8f539c2..47416553ed 100644
--- a/lib/core/src/lib/testing/index.ts
+++ b/lib/core/src/lib/testing/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/testing/setup-test-bed.ts b/lib/core/src/lib/testing/setup-test-bed.ts
index f91852f1ac..a588e04b96 100644
--- a/lib/core/src/lib/testing/setup-test-bed.ts
+++ b/lib/core/src/lib/testing/setup-test-bed.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/index.ts b/lib/core/src/lib/toolbar/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/toolbar/index.ts
+++ b/lib/core/src/lib/toolbar/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/public-api.ts b/lib/core/src/lib/toolbar/public-api.ts
index eee39c7b37..c32a6d5a34 100644
--- a/lib/core/src/lib/toolbar/public-api.ts
+++ b/lib/core/src/lib/toolbar/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/toolbar-divider.component.ts b/lib/core/src/lib/toolbar/toolbar-divider.component.ts
index b8f4f111fd..36dee0cf9b 100644
--- a/lib/core/src/lib/toolbar/toolbar-divider.component.ts
+++ b/lib/core/src/lib/toolbar/toolbar-divider.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/toolbar-title.component.ts b/lib/core/src/lib/toolbar/toolbar-title.component.ts
index a3b4bffe8b..d856b4a127 100644
--- a/lib/core/src/lib/toolbar/toolbar-title.component.ts
+++ b/lib/core/src/lib/toolbar/toolbar-title.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/toolbar.component.spec.ts b/lib/core/src/lib/toolbar/toolbar.component.spec.ts
index 06f2f62120..0ab5188972 100644
--- a/lib/core/src/lib/toolbar/toolbar.component.spec.ts
+++ b/lib/core/src/lib/toolbar/toolbar.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/toolbar.component.stories.ts b/lib/core/src/lib/toolbar/toolbar.component.stories.ts
index 67a3234a0e..cb1fc7f673 100644
--- a/lib/core/src/lib/toolbar/toolbar.component.stories.ts
+++ b/lib/core/src/lib/toolbar/toolbar.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/toolbar.component.ts b/lib/core/src/lib/toolbar/toolbar.component.ts
index c088d898a5..11c56e0e27 100644
--- a/lib/core/src/lib/toolbar/toolbar.component.ts
+++ b/lib/core/src/lib/toolbar/toolbar.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/toolbar/toolbar.module.ts b/lib/core/src/lib/toolbar/toolbar.module.ts
index 914d4780a6..a1ded95556 100644
--- a/lib/core/src/lib/toolbar/toolbar.module.ts
+++ b/lib/core/src/lib/toolbar/toolbar.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/translation/index.ts b/lib/core/src/lib/translation/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/translation/index.ts
+++ b/lib/core/src/lib/translation/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/translation/public-api.ts b/lib/core/src/lib/translation/public-api.ts
index ba94e557de..349048f384 100644
--- a/lib/core/src/lib/translation/public-api.ts
+++ b/lib/core/src/lib/translation/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/translation/translate-loader.service.ts b/lib/core/src/lib/translation/translate-loader.service.ts
index 553a34aaff..7217f0feaa 100644
--- a/lib/core/src/lib/translation/translate-loader.service.ts
+++ b/lib/core/src/lib/translation/translate-loader.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/translation/translate-loader.spec.ts b/lib/core/src/lib/translation/translate-loader.spec.ts
index 4703348a8f..dad2250557 100644
--- a/lib/core/src/lib/translation/translate-loader.spec.ts
+++ b/lib/core/src/lib/translation/translate-loader.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/translation/translation.service.spec.ts b/lib/core/src/lib/translation/translation.service.spec.ts
index 718dbadcad..961a55a431 100644
--- a/lib/core/src/lib/translation/translation.service.spec.ts
+++ b/lib/core/src/lib/translation/translation.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/translation/translation.service.ts b/lib/core/src/lib/translation/translation.service.ts
index 4b044ed83a..8dce751904 100644
--- a/lib/core/src/lib/translation/translation.service.ts
+++ b/lib/core/src/lib/translation/translation.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.spec.ts b/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.spec.ts
index 78bfeccda2..0bb1578954 100644
--- a/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -30,9 +30,7 @@ describe('DownloadPromptDialogComponent', () => {
let matDialogRef: MatDialogRef;
let fixture: ComponentFixture;
- const getButton = (buttonId: string) => {
- return fixture.debugElement.query(By.css(buttonId)).nativeElement;
- };
+ const getButton = (buttonId: string) => fixture.debugElement.query(By.css(buttonId)).nativeElement;
beforeEach(() => {
TestBed.configureTestingModule({
diff --git a/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.ts b/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.ts
index 9910e3472e..d81b8e7ca2 100644
--- a/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.ts
+++ b/lib/core/src/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts b/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts
index dccc2ad68a..2491e473a0 100644
--- a/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/img-viewer.component.ts b/lib/core/src/lib/viewer/components/img-viewer.component.ts
index cfea00c591..bb17e42c1b 100644
--- a/lib/core/src/lib/viewer/components/img-viewer.component.ts
+++ b/lib/core/src/lib/viewer/components/img-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/media-player.component.ts b/lib/core/src/lib/viewer/components/media-player.component.ts
index 9514e04941..6cd8ca6db8 100644
--- a/lib/core/src/lib/viewer/components/media-player.component.ts
+++ b/lib/core/src/lib/viewer/components/media-player.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.spec.ts b/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.spec.ts
index a6686fb355..bfd1f37618 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.spec.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.ts b/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.ts
index 539f3cf2ab..4d63ac0d18 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer-password-dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.spec.ts b/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.spec.ts
index e81bdf3413..68c7ee6bb5 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.ts b/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.ts
index cb3052ac69..682a54f387 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer-thumb.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.spec.ts b/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.spec.ts
index 9827a1fa48..51ac68ec13 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.ts b/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.ts
index 2844a8b18d..884efc7131 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer-thumbnails.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer.component.spec.ts b/lib/core/src/lib/viewer/components/pdf-viewer.component.spec.ts
index 064d5b0d20..e157accbfd 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/pdf-viewer.component.ts b/lib/core/src/lib/viewer/components/pdf-viewer.component.ts
index bd5eb9b81e..f6a06e6332 100644
--- a/lib/core/src/lib/viewer/components/pdf-viewer.component.ts
+++ b/lib/core/src/lib/viewer/components/pdf-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -167,7 +167,7 @@ export class PdfViewerComponent implements OnChanges, OnDestroy {
const urlFile = changes['urlFile'];
if (urlFile && urlFile.currentValue) {
- let pdfOptions = {
+ const pdfOptions = {
...this.pdfjsDefaultOptions,
url: urlFile.currentValue,
withCredentials: this.appConfigService.get('auth.withCredentials', undefined)
diff --git a/lib/core/src/lib/viewer/components/txt-viewer.component.spec.ts b/lib/core/src/lib/viewer/components/txt-viewer.component.spec.ts
index 16a3d36495..4d998bf3ff 100644
--- a/lib/core/src/lib/viewer/components/txt-viewer.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/txt-viewer.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/txt-viewer.component.ts b/lib/core/src/lib/viewer/components/txt-viewer.component.ts
index 7caba710ad..51b68ca522 100644
--- a/lib/core/src/lib/viewer/components/txt-viewer.component.ts
+++ b/lib/core/src/lib/viewer/components/txt-viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/unknown-format/unknown-format.component.ts b/lib/core/src/lib/viewer/components/unknown-format/unknown-format.component.ts
index 1102576848..5f5bf6f7e2 100644
--- a/lib/core/src/lib/viewer/components/unknown-format/unknown-format.component.ts
+++ b/lib/core/src/lib/viewer/components/unknown-format/unknown-format.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-more-actions.component.ts b/lib/core/src/lib/viewer/components/viewer-more-actions.component.ts
index 786d8ffc3a..c9ecfd1ff7 100644
--- a/lib/core/src/lib/viewer/components/viewer-more-actions.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer-more-actions.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-open-with.component.ts b/lib/core/src/lib/viewer/components/viewer-open-with.component.ts
index bd091c6396..223bc51d0f 100644
--- a/lib/core/src/lib/viewer/components/viewer-open-with.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer-open-with.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-render.component.spec.ts b/lib/core/src/lib/viewer/components/viewer-render.component.spec.ts
index 7102e6770a..91940455e8 100644
--- a/lib/core/src/lib/viewer/components/viewer-render.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/viewer-render.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-render.component.ts b/lib/core/src/lib/viewer/components/viewer-render.component.ts
index 207abd5a8d..adb6e527b8 100644
--- a/lib/core/src/lib/viewer/components/viewer-render.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer-render.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-sidebar.component.ts b/lib/core/src/lib/viewer/components/viewer-sidebar.component.ts
index ca4038a085..10ec1353c2 100644
--- a/lib/core/src/lib/viewer/components/viewer-sidebar.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer-sidebar.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-toolbar-actions.component.ts b/lib/core/src/lib/viewer/components/viewer-toolbar-actions.component.ts
index dfa55369fb..cb1eb976d5 100644
--- a/lib/core/src/lib/viewer/components/viewer-toolbar-actions.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer-toolbar-actions.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-toolbar-custom-actions.component.ts b/lib/core/src/lib/viewer/components/viewer-toolbar-custom-actions.component.ts
index 52a2ce34a7..f823aa6c43 100644
--- a/lib/core/src/lib/viewer/components/viewer-toolbar-custom-actions.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer-toolbar-custom-actions.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer-toolbar.component.ts b/lib/core/src/lib/viewer/components/viewer-toolbar.component.ts
index 712d92e84c..20862f94c4 100644
--- a/lib/core/src/lib/viewer/components/viewer-toolbar.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer-toolbar.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/components/viewer.component.spec.ts b/lib/core/src/lib/viewer/components/viewer.component.spec.ts
index 25f00b7b6f..b462c24289 100644
--- a/lib/core/src/lib/viewer/components/viewer.component.spec.ts
+++ b/lib/core/src/lib/viewer/components/viewer.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -173,11 +173,11 @@ describe('ViewerComponent', () => {
appConfigService.config = {
...appConfigService.config,
- 'viewer': {
- 'enableDownloadPrompt': false,
- 'enableDownloadPromptReminder': false,
- 'downloadPromptDelay': 3,
- 'downloadPromptReminderDelay': 2
+ viewer: {
+ enableDownloadPrompt: false,
+ enableDownloadPromptReminder: false,
+ downloadPromptDelay: 3,
+ downloadPromptReminderDelay: 2
}
};
});
@@ -628,11 +628,11 @@ describe('ViewerComponent', () => {
beforeEach(() => {
appConfigService.config = {
...appConfigService.config,
- 'viewer': {
- 'enableDownloadPrompt': true,
- 'enableDownloadPromptReminder': true,
- 'downloadPromptDelay': 3,
- 'downloadPromptReminderDelay': 2
+ viewer: {
+ enableDownloadPrompt: true,
+ enableDownloadPromptReminder: true,
+ downloadPromptDelay: 3,
+ downloadPromptReminderDelay: 2
}
};
dialogOpenSpy = spyOn(dialog, 'open').and.returnValue({afterClosed: () => of(null)} as any);
diff --git a/lib/core/src/lib/viewer/components/viewer.component.ts b/lib/core/src/lib/viewer/components/viewer.component.ts
index 364ab8a315..ad78e0be40 100644
--- a/lib/core/src/lib/viewer/components/viewer.component.ts
+++ b/lib/core/src/lib/viewer/components/viewer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/directives/viewer-extension.directive.spec.ts b/lib/core/src/lib/viewer/directives/viewer-extension.directive.spec.ts
index be8e8c5298..40b2506db4 100644
--- a/lib/core/src/lib/viewer/directives/viewer-extension.directive.spec.ts
+++ b/lib/core/src/lib/viewer/directives/viewer-extension.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/directives/viewer-extension.directive.ts b/lib/core/src/lib/viewer/directives/viewer-extension.directive.ts
index 41ea6da8f7..51ca3a4697 100644
--- a/lib/core/src/lib/viewer/directives/viewer-extension.directive.ts
+++ b/lib/core/src/lib/viewer/directives/viewer-extension.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/index.ts b/lib/core/src/lib/viewer/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/core/src/lib/viewer/index.ts
+++ b/lib/core/src/lib/viewer/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/models/download-prompt.actions.ts b/lib/core/src/lib/viewer/models/download-prompt.actions.ts
index 294e48e874..959da1a044 100644
--- a/lib/core/src/lib/viewer/models/download-prompt.actions.ts
+++ b/lib/core/src/lib/viewer/models/download-prompt.actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/models/viewer.model.ts b/lib/core/src/lib/viewer/models/viewer.model.ts
index 97a83a37e9..43becafaa9 100644
--- a/lib/core/src/lib/viewer/models/viewer.model.ts
+++ b/lib/core/src/lib/viewer/models/viewer.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/public-api.ts b/lib/core/src/lib/viewer/public-api.ts
index f111371523..fc5be16da9 100644
--- a/lib/core/src/lib/viewer/public-api.ts
+++ b/lib/core/src/lib/viewer/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/services/rendering-queue.services.ts b/lib/core/src/lib/viewer/services/rendering-queue.services.ts
index 1f9ecace6e..0a9706e793 100644
--- a/lib/core/src/lib/viewer/services/rendering-queue.services.ts
+++ b/lib/core/src/lib/viewer/services/rendering-queue.services.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -160,7 +160,7 @@ export class RenderingQueueServices {
break;
case this.renderingStates.INITIAL:
this.highestPriorityPage = view.renderingId;
- const continueRendering = function () {
+ const continueRendering = function() {
this.renderHighestPriority();
}.bind(this);
view.draw().then(continueRendering, continueRendering);
diff --git a/lib/core/src/lib/viewer/services/view-util.service.ts b/lib/core/src/lib/viewer/services/view-util.service.ts
index cf360a0089..d4cc42f158 100644
--- a/lib/core/src/lib/viewer/services/view-util.service.ts
+++ b/lib/core/src/lib/viewer/services/view-util.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/lib/viewer/viewer.module.ts b/lib/core/src/lib/viewer/viewer.module.ts
index 5a1ea401d2..b14136c744 100644
--- a/lib/core/src/lib/viewer/viewer.module.ts
+++ b/lib/core/src/lib/viewer/viewer.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/public-api.ts b/lib/core/src/public-api.ts
index 0132cae311..5548a42efa 100644
--- a/lib/core/src/public-api.ts
+++ b/lib/core/src/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/core/src/test.ts b/lib/core/src/test.ts
index eccb72763a..078f950596 100644
--- a/lib/core/src/test.ts
+++ b/lib/core/src/test.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/.eslintrc.json b/lib/extensions/.eslintrc.json
index cb2eb4de72..26166c98dd 100644
--- a/lib/extensions/.eslintrc.json
+++ b/lib/extensions/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
diff --git a/lib/extensions/index.ts b/lib/extensions/index.ts
index eb9b46c8bc..7d18c6831c 100644
--- a/lib/extensions/index.ts
+++ b/lib/extensions/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/package.json b/lib/extensions/package.json
index 341cbcda69..63a7545c2d 100644
--- a/lib/extensions/package.json
+++ b/lib/extensions/package.json
@@ -3,7 +3,7 @@
"description": "Provides extensibility support for ADF applications.",
"version": "6.0.0-A.4",
"license": "Apache-2.0",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/lib/extensions/src/lib/components/dynamic-column/dynamic-column.component.ts b/lib/extensions/src/lib/components/dynamic-column/dynamic-column.component.ts
index 2eb35d021b..a216f7d850 100644
--- a/lib/extensions/src/lib/components/dynamic-column/dynamic-column.component.ts
+++ b/lib/extensions/src/lib/components/dynamic-column/dynamic-column.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/components/dynamic-component/dynamic.component.spec.ts b/lib/extensions/src/lib/components/dynamic-component/dynamic.component.spec.ts
index 4ce8eaec74..3d99617343 100644
--- a/lib/extensions/src/lib/components/dynamic-component/dynamic.component.spec.ts
+++ b/lib/extensions/src/lib/components/dynamic-component/dynamic.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/components/dynamic-component/dynamic.component.ts b/lib/extensions/src/lib/components/dynamic-component/dynamic.component.ts
index e45c378ca0..648b216ad5 100644
--- a/lib/extensions/src/lib/components/dynamic-component/dynamic.component.ts
+++ b/lib/extensions/src/lib/components/dynamic-component/dynamic.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/components/dynamic-tab/dynamic-tab.component.ts b/lib/extensions/src/lib/components/dynamic-tab/dynamic-tab.component.ts
index 6a3684a6f3..957f2f6ee6 100644
--- a/lib/extensions/src/lib/components/dynamic-tab/dynamic-tab.component.ts
+++ b/lib/extensions/src/lib/components/dynamic-tab/dynamic-tab.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/components/public-api.ts b/lib/extensions/src/lib/components/public-api.ts
index e860fe9f97..f1e7237901 100644
--- a/lib/extensions/src/lib/components/public-api.ts
+++ b/lib/extensions/src/lib/components/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/components/viewer/preview-extension.component.ts b/lib/extensions/src/lib/components/viewer/preview-extension.component.ts
index 87beff739b..6426619e91 100644
--- a/lib/extensions/src/lib/components/viewer/preview-extension.component.ts
+++ b/lib/extensions/src/lib/components/viewer/preview-extension.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/components/viewer/viewer-extension.interface.ts b/lib/extensions/src/lib/components/viewer/viewer-extension.interface.ts
index cc368fe9a0..eaff1276bc 100644
--- a/lib/extensions/src/lib/components/viewer/viewer-extension.interface.ts
+++ b/lib/extensions/src/lib/components/viewer/viewer-extension.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/action.extensions.ts b/lib/extensions/src/lib/config/action.extensions.ts
index d27edb5e55..61dd98d1fa 100644
--- a/lib/extensions/src/lib/config/action.extensions.ts
+++ b/lib/extensions/src/lib/config/action.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/document-list.extensions.ts b/lib/extensions/src/lib/config/document-list.extensions.ts
index d828407256..863caa06b4 100644
--- a/lib/extensions/src/lib/config/document-list.extensions.ts
+++ b/lib/extensions/src/lib/config/document-list.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/extension-element.ts b/lib/extensions/src/lib/config/extension-element.ts
index e2554a554d..3916865702 100644
--- a/lib/extensions/src/lib/config/extension-element.ts
+++ b/lib/extensions/src/lib/config/extension-element.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/extension-utils.spec.ts b/lib/extensions/src/lib/config/extension-utils.spec.ts
index b2821b6fb7..f7ac9977de 100644
--- a/lib/extensions/src/lib/config/extension-utils.spec.ts
+++ b/lib/extensions/src/lib/config/extension-utils.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/extension-utils.ts b/lib/extensions/src/lib/config/extension-utils.ts
index 74fc785c5f..e1d7acb7b5 100644
--- a/lib/extensions/src/lib/config/extension-utils.ts
+++ b/lib/extensions/src/lib/config/extension-utils.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/extension.config.ts b/lib/extensions/src/lib/config/extension.config.ts
index 7b1142e2e5..62ad566839 100644
--- a/lib/extensions/src/lib/config/extension.config.ts
+++ b/lib/extensions/src/lib/config/extension.config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/icon.extensions.ts b/lib/extensions/src/lib/config/icon.extensions.ts
index be61309740..0909df3054 100644
--- a/lib/extensions/src/lib/config/icon.extensions.ts
+++ b/lib/extensions/src/lib/config/icon.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/navbar.extensions.ts b/lib/extensions/src/lib/config/navbar.extensions.ts
index 46352ecb9b..e33d7e92de 100644
--- a/lib/extensions/src/lib/config/navbar.extensions.ts
+++ b/lib/extensions/src/lib/config/navbar.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/permission.extensions.ts b/lib/extensions/src/lib/config/permission.extensions.ts
index 8e52c13b13..93dc64e059 100644
--- a/lib/extensions/src/lib/config/permission.extensions.ts
+++ b/lib/extensions/src/lib/config/permission.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/routing.extensions.ts b/lib/extensions/src/lib/config/routing.extensions.ts
index 76f4cda434..1fea45cdd5 100644
--- a/lib/extensions/src/lib/config/routing.extensions.ts
+++ b/lib/extensions/src/lib/config/routing.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/rule.extensions.ts b/lib/extensions/src/lib/config/rule.extensions.ts
index ccf06d8c21..42ce89d55d 100644
--- a/lib/extensions/src/lib/config/rule.extensions.ts
+++ b/lib/extensions/src/lib/config/rule.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/sidebar.extensions.ts b/lib/extensions/src/lib/config/sidebar.extensions.ts
index 916f918f39..c4c7d10277 100644
--- a/lib/extensions/src/lib/config/sidebar.extensions.ts
+++ b/lib/extensions/src/lib/config/sidebar.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/config/viewer.extensions.ts b/lib/extensions/src/lib/config/viewer.extensions.ts
index fb373397f5..82a00952d3 100644
--- a/lib/extensions/src/lib/config/viewer.extensions.ts
+++ b/lib/extensions/src/lib/config/viewer.extensions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/evaluators/core.evaluators.spec.ts b/lib/extensions/src/lib/evaluators/core.evaluators.spec.ts
index a586ccdc12..f4c7c8e735 100644
--- a/lib/extensions/src/lib/evaluators/core.evaluators.spec.ts
+++ b/lib/extensions/src/lib/evaluators/core.evaluators.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/evaluators/core.evaluators.ts b/lib/extensions/src/lib/evaluators/core.evaluators.ts
index 927504c119..4aecf319c0 100644
--- a/lib/extensions/src/lib/evaluators/core.evaluators.ts
+++ b/lib/extensions/src/lib/evaluators/core.evaluators.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/extensions.module.ts b/lib/extensions/src/lib/extensions.module.ts
index 573c7b691e..4df4e93096 100644
--- a/lib/extensions/src/lib/extensions.module.ts
+++ b/lib/extensions/src/lib/extensions.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/mock/app-extension.service.mock.ts b/lib/extensions/src/lib/mock/app-extension.service.mock.ts
index 9fbffe3f9a..ae23066b18 100644
--- a/lib/extensions/src/lib/mock/app-extension.service.mock.ts
+++ b/lib/extensions/src/lib/mock/app-extension.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/mock/public-api.ts b/lib/extensions/src/lib/mock/public-api.ts
index 7d2c2a8f63..8e85427c08 100644
--- a/lib/extensions/src/lib/mock/public-api.ts
+++ b/lib/extensions/src/lib/mock/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/app-extension.service.ts b/lib/extensions/src/lib/services/app-extension.service.ts
index f0344b87a7..9d4c4a6010 100644
--- a/lib/extensions/src/lib/services/app-extension.service.ts
+++ b/lib/extensions/src/lib/services/app-extension.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/component-register.service.ts b/lib/extensions/src/lib/services/component-register.service.ts
index 417ce62302..e8a5a3d6d1 100644
--- a/lib/extensions/src/lib/services/component-register.service.ts
+++ b/lib/extensions/src/lib/services/component-register.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/extension-loader.service.spec.ts b/lib/extensions/src/lib/services/extension-loader.service.spec.ts
index 510c902da6..63f9115aef 100644
--- a/lib/extensions/src/lib/services/extension-loader.service.spec.ts
+++ b/lib/extensions/src/lib/services/extension-loader.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/extension-loader.service.ts b/lib/extensions/src/lib/services/extension-loader.service.ts
index 357369f8d9..adf254c19b 100644
--- a/lib/extensions/src/lib/services/extension-loader.service.ts
+++ b/lib/extensions/src/lib/services/extension-loader.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/extension.service.spec.ts b/lib/extensions/src/lib/services/extension.service.spec.ts
index c93340ca04..935aee2861 100644
--- a/lib/extensions/src/lib/services/extension.service.spec.ts
+++ b/lib/extensions/src/lib/services/extension.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/extension.service.ts b/lib/extensions/src/lib/services/extension.service.ts
index 23cb346a81..647da21d52 100644
--- a/lib/extensions/src/lib/services/extension.service.ts
+++ b/lib/extensions/src/lib/services/extension.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/rule.service.ts b/lib/extensions/src/lib/services/rule.service.ts
index 39753efdb8..ac902cfba5 100644
--- a/lib/extensions/src/lib/services/rule.service.ts
+++ b/lib/extensions/src/lib/services/rule.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/services/startup-extension-factory.ts b/lib/extensions/src/lib/services/startup-extension-factory.ts
index 6c841df141..c5eca03a73 100644
--- a/lib/extensions/src/lib/services/startup-extension-factory.ts
+++ b/lib/extensions/src/lib/services/startup-extension-factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/store/states/navigation.state.ts b/lib/extensions/src/lib/store/states/navigation.state.ts
index 74b46643a1..369d89ce08 100644
--- a/lib/extensions/src/lib/store/states/navigation.state.ts
+++ b/lib/extensions/src/lib/store/states/navigation.state.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/store/states/profile.state.ts b/lib/extensions/src/lib/store/states/profile.state.ts
index 6097978374..9185891627 100644
--- a/lib/extensions/src/lib/store/states/profile.state.ts
+++ b/lib/extensions/src/lib/store/states/profile.state.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/store/states/repository.state.ts b/lib/extensions/src/lib/store/states/repository.state.ts
index 3f9247a535..84ad842ee3 100644
--- a/lib/extensions/src/lib/store/states/repository.state.ts
+++ b/lib/extensions/src/lib/store/states/repository.state.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/lib/store/states/selection.state.ts b/lib/extensions/src/lib/store/states/selection.state.ts
index 706e1aeaad..36b1f12428 100644
--- a/lib/extensions/src/lib/store/states/selection.state.ts
+++ b/lib/extensions/src/lib/store/states/selection.state.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/public-api.ts b/lib/extensions/src/public-api.ts
index 87b67a83ec..c6be5cbb3d 100644
--- a/lib/extensions/src/public-api.ts
+++ b/lib/extensions/src/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/extensions/src/test.ts b/lib/extensions/src/test.ts
index db9112ed3a..5082681ab7 100644
--- a/lib/extensions/src/test.ts
+++ b/lib/extensions/src/test.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/.eslintrc.json b/lib/insights/.eslintrc.json
index c29a203bf1..7cfb0db77a 100644
--- a/lib/insights/.eslintrc.json
+++ b/lib/insights/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
diff --git a/lib/insights/index.ts b/lib/insights/index.ts
index eb9b46c8bc..7d18c6831c 100644
--- a/lib/insights/index.ts
+++ b/lib/insights/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/package.json b/lib/insights/package.json
index 686857bc88..8232b1e250 100644
--- a/lib/insights/package.json
+++ b/lib/insights/package.json
@@ -2,7 +2,7 @@
"name": "@alfresco/adf-insights",
"description": "Alfresco ADF insights",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/lib/insights/src/lib/analytics-process/analytics-process.module.ts b/lib/insights/src/lib/analytics-process/analytics-process.module.ts
index e1966713d1..fb721ec3ef 100644
--- a/lib/insights/src/lib/analytics-process/analytics-process.module.ts
+++ b/lib/insights/src/lib/analytics-process/analytics-process.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-generator.component.spec.ts b/lib/insights/src/lib/analytics-process/components/analytics-generator.component.spec.ts
index 8a34abe395..5a19405928 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-generator.component.spec.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-generator.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-generator.component.ts b/lib/insights/src/lib/analytics-process/components/analytics-generator.component.ts
index c0b056df40..5b0852ac06 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-generator.component.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-generator.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.spec.ts b/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.spec.ts
index 50d06707e9..b25569ee07 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.spec.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.ts b/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.ts
index 1cd6950f59..b230842eea 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-report-heat-map.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.spec.ts b/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.spec.ts
index 74082897d0..0704209f8e 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.spec.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.ts b/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.ts
index 5757e83bef..5bf3b67772 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-report-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.spec.ts b/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.spec.ts
index 66af4ed64d..20847460c1 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.spec.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.ts b/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.ts
index 2a536a58f5..34febf3cee 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics-report-parameters.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics.component.spec.ts b/lib/insights/src/lib/analytics-process/components/analytics.component.spec.ts
index f2609bcadc..96a1d5befd 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics.component.spec.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/analytics.component.ts b/lib/insights/src/lib/analytics-process/components/analytics.component.ts
index 03e02e888c..6d14499ce6 100644
--- a/lib/insights/src/lib/analytics-process/components/analytics.component.ts
+++ b/lib/insights/src/lib/analytics-process/components/analytics.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/widgets/checkbox/checkbox.widget.ts b/lib/insights/src/lib/analytics-process/components/widgets/checkbox/checkbox.widget.ts
index 1894ae2584..8653f57909 100644
--- a/lib/insights/src/lib/analytics-process/components/widgets/checkbox/checkbox.widget.ts
+++ b/lib/insights/src/lib/analytics-process/components/widgets/checkbox/checkbox.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/widgets/date-range/date-range.widget.ts b/lib/insights/src/lib/analytics-process/components/widgets/date-range/date-range.widget.ts
index 87ab4bc18c..1aedad1993 100644
--- a/lib/insights/src/lib/analytics-process/components/widgets/date-range/date-range.widget.ts
+++ b/lib/insights/src/lib/analytics-process/components/widgets/date-range/date-range.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/widgets/dropdown/dropdown.widget.ts b/lib/insights/src/lib/analytics-process/components/widgets/dropdown/dropdown.widget.ts
index c44916d493..00dddaadbe 100644
--- a/lib/insights/src/lib/analytics-process/components/widgets/dropdown/dropdown.widget.ts
+++ b/lib/insights/src/lib/analytics-process/components/widgets/dropdown/dropdown.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/widgets/duration/duration.widget.ts b/lib/insights/src/lib/analytics-process/components/widgets/duration/duration.widget.ts
index 53dc80e3e8..d5da64aff6 100644
--- a/lib/insights/src/lib/analytics-process/components/widgets/duration/duration.widget.ts
+++ b/lib/insights/src/lib/analytics-process/components/widgets/duration/duration.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/widgets/number/number.widget.ts b/lib/insights/src/lib/analytics-process/components/widgets/number/number.widget.ts
index 63666bef08..35349acf26 100644
--- a/lib/insights/src/lib/analytics-process/components/widgets/number/number.widget.ts
+++ b/lib/insights/src/lib/analytics-process/components/widgets/number/number.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/components/widgets/widget.component.ts b/lib/insights/src/lib/analytics-process/components/widgets/widget.component.ts
index 09526f77f7..74cc41d74f 100644
--- a/lib/insights/src/lib/analytics-process/components/widgets/widget.component.ts
+++ b/lib/insights/src/lib/analytics-process/components/widgets/widget.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/public-api.ts b/lib/insights/src/lib/analytics-process/public-api.ts
index f2e2bb2d00..327edddc41 100644
--- a/lib/insights/src/lib/analytics-process/public-api.ts
+++ b/lib/insights/src/lib/analytics-process/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/services/analytics.service.spec.ts b/lib/insights/src/lib/analytics-process/services/analytics.service.spec.ts
index 9819562b61..58283c9743 100644
--- a/lib/insights/src/lib/analytics-process/services/analytics.service.spec.ts
+++ b/lib/insights/src/lib/analytics-process/services/analytics.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/analytics-process/services/analytics.service.ts b/lib/insights/src/lib/analytics-process/services/analytics.service.ts
index 73eb7c71be..81c87a2e78 100644
--- a/lib/insights/src/lib/analytics-process/services/analytics.service.ts
+++ b/lib/insights/src/lib/analytics-process/services/analytics.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-alfresco-publish-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-alfresco-publish-task.component.ts
index 7ff3fc7b82..1ab3784acf 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-alfresco-publish-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-alfresco-publish-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-box-publish-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-box-publish-task.component.ts
index 7b81b3efe0..4f19404950 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-box-publish-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-box-publish-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-business-rule-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-business-rule-task.component.ts
index f1f3fc7742..df8d663392 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-business-rule-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-business-rule-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-camel-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-camel-task.component.ts
index 5107e18800..c8ed50ada4 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-camel-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-camel-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-container-service-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-container-service-task.component.ts
index 7e0ce67c3f..818b4bd43e 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-container-service-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-container-service-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-google-drive-publish-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-google-drive-publish-task.component.ts
index bee2988e20..67845ba204 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-google-drive-publish-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-google-drive-publish-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-manual-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-manual-task.component.ts
index af8ac1d5c0..42d25c89da 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-manual-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-manual-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-mule-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-mule-task.component.ts
index 0c19198cc9..f0868a9c1c 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-mule-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-mule-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-receive-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-receive-task.component.ts
index 4bc6b85274..c5e8f1959b 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-receive-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-receive-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-rest-call-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-rest-call-task.component.ts
index 2a91cf18d0..bcb6f345f2 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-rest-call-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-rest-call-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-script-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-script-task.component.ts
index 4d6d9913f4..e7dd594d2a 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-script-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-script-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-send-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-send-task.component.ts
index e9368935ad..2dcc0225fd 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-send-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-send-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-service-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-service-task.component.ts
index d528d73e39..1190aefd52 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-service-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-service-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-task.component.ts
index 8ae208f132..54e427237d 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/activities/diagram-user-task.component.ts b/lib/insights/src/lib/diagram/components/activities/diagram-user-task.component.ts
index 24a4d15a95..d73c53b8c6 100644
--- a/lib/insights/src/lib/diagram/components/activities/diagram-user-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/activities/diagram-user-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/boundary-events/diagram-boundary-event.component.ts b/lib/insights/src/lib/diagram/components/boundary-events/diagram-boundary-event.component.ts
index 7be2249b38..1899ce951c 100644
--- a/lib/insights/src/lib/diagram/components/boundary-events/diagram-boundary-event.component.ts
+++ b/lib/insights/src/lib/diagram/components/boundary-events/diagram-boundary-event.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/boundary-events/diagram-throw-event.component.ts b/lib/insights/src/lib/diagram/components/boundary-events/diagram-throw-event.component.ts
index a15c9bae6e..7407be97dd 100644
--- a/lib/insights/src/lib/diagram/components/boundary-events/diagram-throw-event.component.ts
+++ b/lib/insights/src/lib/diagram/components/boundary-events/diagram-throw-event.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram-sequence-flow.component.ts b/lib/insights/src/lib/diagram/components/diagram-sequence-flow.component.ts
index 9c7d4ebf65..618710176a 100644
--- a/lib/insights/src/lib/diagram/components/diagram-sequence-flow.component.ts
+++ b/lib/insights/src/lib/diagram/components/diagram-sequence-flow.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.activities.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.activities.spec.ts
index bbc7e56462..4394f29f46 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.activities.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.activities.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.boundary.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.boundary.spec.ts
index 9065399986..91970ff7c2 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.boundary.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.boundary.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.catching.events.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.catching.events.spec.ts
index 162b2dd69d..bc4da3c103 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.catching.events.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.catching.events.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.events.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.events.spec.ts
index 1a3ccc1a51..7531216c1a 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.events.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.events.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.flows.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.flows.spec.ts
index 3aaa91eb05..fec4123323 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.flows.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.flows.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.gateways.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.gateways.spec.ts
index 5d1cb88b99..b43c4c4f8b 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.gateways.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.gateways.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.structural.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.structural.spec.ts
index 5a0ae3e41d..15516490fb 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.structural.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.structural.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.swim.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.swim.spec.ts
index c6278d655d..42fa4084a3 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.swim.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.swim.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.throw.spec.ts b/lib/insights/src/lib/diagram/components/diagram.component.throw.spec.ts
index 682691bd1c..5d41c5b3d1 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.throw.spec.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.throw.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.component.ts b/lib/insights/src/lib/diagram/components/diagram.component.ts
index d0fa3afdec..8b97c61f37 100644
--- a/lib/insights/src/lib/diagram/components/diagram.component.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/diagram.element.options.ts b/lib/insights/src/lib/diagram/components/diagram.element.options.ts
index a0300a3336..d381335978 100644
--- a/lib/insights/src/lib/diagram/components/diagram.element.options.ts
+++ b/lib/insights/src/lib/diagram/components/diagram.element.options.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/events/diagram-end-event.component.ts b/lib/insights/src/lib/diagram/components/events/diagram-end-event.component.ts
index 12dd0e9d86..91b339dad2 100644
--- a/lib/insights/src/lib/diagram/components/events/diagram-end-event.component.ts
+++ b/lib/insights/src/lib/diagram/components/events/diagram-end-event.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/events/diagram-event.component.ts b/lib/insights/src/lib/diagram/components/events/diagram-event.component.ts
index 651dc00847..587f2e407f 100644
--- a/lib/insights/src/lib/diagram/components/events/diagram-event.component.ts
+++ b/lib/insights/src/lib/diagram/components/events/diagram-event.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/events/diagram-start-event.component.ts b/lib/insights/src/lib/diagram/components/events/diagram-start-event.component.ts
index 6407f1c78c..69f6a28948 100644
--- a/lib/insights/src/lib/diagram/components/events/diagram-start-event.component.ts
+++ b/lib/insights/src/lib/diagram/components/events/diagram-start-event.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/gateways/diagram-event-gateway.component.ts b/lib/insights/src/lib/diagram/components/gateways/diagram-event-gateway.component.ts
index 08eae180f1..384e54e83f 100644
--- a/lib/insights/src/lib/diagram/components/gateways/diagram-event-gateway.component.ts
+++ b/lib/insights/src/lib/diagram/components/gateways/diagram-event-gateway.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/gateways/diagram-exclusive-gateway.component.ts b/lib/insights/src/lib/diagram/components/gateways/diagram-exclusive-gateway.component.ts
index 7902c04753..b12963f544 100644
--- a/lib/insights/src/lib/diagram/components/gateways/diagram-exclusive-gateway.component.ts
+++ b/lib/insights/src/lib/diagram/components/gateways/diagram-exclusive-gateway.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/gateways/diagram-gateway.component.ts b/lib/insights/src/lib/diagram/components/gateways/diagram-gateway.component.ts
index 0449e2dcc3..6dc5424508 100644
--- a/lib/insights/src/lib/diagram/components/gateways/diagram-gateway.component.ts
+++ b/lib/insights/src/lib/diagram/components/gateways/diagram-gateway.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/gateways/diagram-inclusive-gateway.component.ts b/lib/insights/src/lib/diagram/components/gateways/diagram-inclusive-gateway.component.ts
index 5ecccecb44..edbbd10134 100644
--- a/lib/insights/src/lib/diagram/components/gateways/diagram-inclusive-gateway.component.ts
+++ b/lib/insights/src/lib/diagram/components/gateways/diagram-inclusive-gateway.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/gateways/diagram-parallel-gateway.component.ts b/lib/insights/src/lib/diagram/components/gateways/diagram-parallel-gateway.component.ts
index 9f08660927..3fa3aff4aa 100644
--- a/lib/insights/src/lib/diagram/components/gateways/diagram-parallel-gateway.component.ts
+++ b/lib/insights/src/lib/diagram/components/gateways/diagram-parallel-gateway.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-container-icon-event.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-container-icon-event.component.ts
index 001091b704..5604a9ca9f 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-container-icon-event.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-container-icon-event.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-alfresco-publish-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-alfresco-publish-task.component.ts
index d4b880e43c..5f7e6eeae5 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-alfresco-publish-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-alfresco-publish-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-box-publish-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-box-publish-task.component.ts
index f3a087e972..fbe0d69238 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-box-publish-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-box-publish-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-business-rule-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-business-rule-task.component.ts
index e273db5a6a..fb6f7f8b31 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-business-rule-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-business-rule-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-camel-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-camel-task.component.ts
index e728936a71..d66c0b1701 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-camel-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-camel-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-error.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-error.component.ts
index 1e3f2ac96b..2227c8c3f3 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-error.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-error.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-google-drive-publish-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-google-drive-publish-task.component.ts
index c439d868b7..7595ccb944 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-google-drive-publish-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-google-drive-publish-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-manual-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-manual-task.component.ts
index 7707b89187..33bf39603a 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-manual-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-manual-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-message.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-message.component.ts
index 2ae6edf4e2..02e63eb252 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-message.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-message.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-mule-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-mule-task.component.ts
index e47e5237bd..7add2b965b 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-mule-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-mule-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-receive-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-receive-task.component.ts
index 3f6e3271fc..57257ac3fd 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-receive-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-receive-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-rest-call-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-rest-call-task.component.ts
index d659f1a64f..27c1b7b53d 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-rest-call-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-rest-call-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-script-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-script-task.component.ts
index 1824fb1035..2f93c9d3b4 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-script-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-script-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-send-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-send-task.component.ts
index 1b742e4693..ab7040b993 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-send-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-send-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-service-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-service-task.component.ts
index 90f5d29508..7be8f09e6f 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-service-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-service-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-signal.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-signal.component.ts
index c97a304221..37ee47069b 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-signal.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-signal.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-timer.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-timer.component.ts
index a9f8beb975..a0e783b95c 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-timer.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-timer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/icons/diagram-icon-user-task.component.ts b/lib/insights/src/lib/diagram/components/icons/diagram-icon-user-task.component.ts
index d9b4d14716..14508f779a 100644
--- a/lib/insights/src/lib/diagram/components/icons/diagram-icon-user-task.component.ts
+++ b/lib/insights/src/lib/diagram/components/icons/diagram-icon-user-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/intermediate-catching-events/diagram-intermediate-catching-event.component.ts b/lib/insights/src/lib/diagram/components/intermediate-catching-events/diagram-intermediate-catching-event.component.ts
index 970fe04023..b59f12c620 100644
--- a/lib/insights/src/lib/diagram/components/intermediate-catching-events/diagram-intermediate-catching-event.component.ts
+++ b/lib/insights/src/lib/diagram/components/intermediate-catching-events/diagram-intermediate-catching-event.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/anchor.ts b/lib/insights/src/lib/diagram/components/raphael/anchor.ts
index e4ad9103e7..8b8d5d89b9 100644
--- a/lib/insights/src/lib/diagram/components/raphael/anchor.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/anchor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-alfresco-publish.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-alfresco-publish.component.ts
index 8143d4beec..6670670b27 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-alfresco-publish.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-alfresco-publish.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-box-publish.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-box-publish.component.ts
index 6b6bbd220c..ae84642e44 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-box-publish.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-box-publish.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-business-rule.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-business-rule.component.ts
index 8c984a14d9..96fbf53a2a 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-business-rule.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-business-rule.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-camel.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-camel.component.ts
index baeb3c2296..fa2d3cee55 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-camel.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-camel.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-error.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-error.component.ts
index 34ddbaa2fb..9623e6863b 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-error.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-error.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-google-drive-publish.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-google-drive-publish.component.ts
index 9a30973e1f..0499aab0e9 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-google-drive-publish.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-google-drive-publish.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-manual.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-manual.component.ts
index 0f95812aff..b6a7726338 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-manual.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-manual.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-message.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-message.component.ts
index a4085a6a7a..552929e6f6 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-message.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-message.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-mule.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-mule.component.ts
index a209693d53..bac1bf234d 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-mule.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-mule.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-receive.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-receive.component.ts
index 4a8b067304..4fe62475ba 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-receive.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-receive.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-rest-call.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-rest-call.component.ts
index 8f71415f6e..9ed93d0737 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-rest-call.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-rest-call.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-script.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-script.component.ts
index 1b20e771e9..d3754e04dd 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-script.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-script.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-send.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-send.component.ts
index 32e30c18e8..4dfc61dee8 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-send.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-send.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-service.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-service.component.ts
index 6f2b020e21..08cd380b15 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-service.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-service.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-signal.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-signal.component.ts
index df6c1c0be7..d960bd42e2 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-signal.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-signal.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-timer.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-timer.component.ts
index 95fe3d1b59..8479da0148 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-timer.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-timer.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-user.component.ts b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-user.component.ts
index faad0e5eec..ac0135267b 100644
--- a/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-user.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/icons/raphael-icon-user.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/models/point.ts b/lib/insights/src/lib/diagram/components/raphael/models/point.ts
index 5ebcbc7daf..62ccc51a75 100644
--- a/lib/insights/src/lib/diagram/components/raphael/models/point.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/models/point.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/polyline.ts b/lib/insights/src/lib/diagram/components/raphael/polyline.ts
index 1274a910bf..f300e4775c 100644
--- a/lib/insights/src/lib/diagram/components/raphael/polyline.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/polyline.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-base.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-base.ts
index 9f208bc147..98983ec722 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-base.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-base.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-circle.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-circle.component.ts
index 8fefb1de9f..d5bd5a0934 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-circle.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-circle.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-cross.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-cross.component.ts
index a23d099f9d..3a57e1abea 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-cross.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-cross.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-flow-arrow.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-flow-arrow.component.ts
index 3b42a70050..ac6d8b64d0 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-flow-arrow.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-flow-arrow.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-multiline-text.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-multiline-text.component.ts
index 47221a50c0..a0a1103719 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-multiline-text.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-multiline-text.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-pentagon.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-pentagon.component.ts
index b976013a5e..f1f0d56c2a 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-pentagon.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-pentagon.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-plus.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-plus.component.ts
index 81b291b9d3..1e6796fdb3 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-plus.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-plus.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-rect.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-rect.component.ts
index b67e497bca..6d98553a3e 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-rect.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-rect.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-rhombus.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-rhombus.component.ts
index 00f42a0190..fe90e3832f 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-rhombus.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-rhombus.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael-text.component.ts b/lib/insights/src/lib/diagram/components/raphael/raphael-text.component.ts
index 35dd2f3f2e..f8cc986108 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael-text.component.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael-text.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/raphael/raphael.service.ts b/lib/insights/src/lib/diagram/components/raphael/raphael.service.ts
index d76354678e..f24cfbe7ce 100644
--- a/lib/insights/src/lib/diagram/components/raphael/raphael.service.ts
+++ b/lib/insights/src/lib/diagram/components/raphael/raphael.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/structural/diagram-event-subprocess.component.ts b/lib/insights/src/lib/diagram/components/structural/diagram-event-subprocess.component.ts
index 677b0b4de0..1e88c7e069 100644
--- a/lib/insights/src/lib/diagram/components/structural/diagram-event-subprocess.component.ts
+++ b/lib/insights/src/lib/diagram/components/structural/diagram-event-subprocess.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/structural/diagram-subprocess.component.ts b/lib/insights/src/lib/diagram/components/structural/diagram-subprocess.component.ts
index 0454619e02..9f25246fa7 100644
--- a/lib/insights/src/lib/diagram/components/structural/diagram-subprocess.component.ts
+++ b/lib/insights/src/lib/diagram/components/structural/diagram-subprocess.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/swimlanes/diagram-lane.component.ts b/lib/insights/src/lib/diagram/components/swimlanes/diagram-lane.component.ts
index d9c434d84d..0162c9a7a5 100644
--- a/lib/insights/src/lib/diagram/components/swimlanes/diagram-lane.component.ts
+++ b/lib/insights/src/lib/diagram/components/swimlanes/diagram-lane.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/swimlanes/diagram-lanes.component.ts b/lib/insights/src/lib/diagram/components/swimlanes/diagram-lanes.component.ts
index 52947a8fcd..aa42fd6bd9 100644
--- a/lib/insights/src/lib/diagram/components/swimlanes/diagram-lanes.component.ts
+++ b/lib/insights/src/lib/diagram/components/swimlanes/diagram-lanes.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/swimlanes/diagram-pool.component.ts b/lib/insights/src/lib/diagram/components/swimlanes/diagram-pool.component.ts
index fd27b2a56d..262249a017 100644
--- a/lib/insights/src/lib/diagram/components/swimlanes/diagram-pool.component.ts
+++ b/lib/insights/src/lib/diagram/components/swimlanes/diagram-pool.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/swimlanes/diagram-pools.component.ts b/lib/insights/src/lib/diagram/components/swimlanes/diagram-pools.component.ts
index 73cbc914f9..13df69dbc0 100644
--- a/lib/insights/src/lib/diagram/components/swimlanes/diagram-pools.component.ts
+++ b/lib/insights/src/lib/diagram/components/swimlanes/diagram-pools.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.spec.ts b/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.spec.ts
index 47222b2247..1153819c1a 100644
--- a/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.spec.ts
+++ b/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.ts b/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.ts
index 883742a371..c4f34fb181 100644
--- a/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.ts
+++ b/lib/insights/src/lib/diagram/components/tooltip/diagram-tooltip.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/constants/diagram-colors.ts b/lib/insights/src/lib/diagram/constants/diagram-colors.ts
index ce15fe80a5..209a58bb65 100644
--- a/lib/insights/src/lib/diagram/constants/diagram-colors.ts
+++ b/lib/insights/src/lib/diagram/constants/diagram-colors.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/diagram.module.ts b/lib/insights/src/lib/diagram/diagram.module.ts
index 5e5fd2140c..2ce718d1ab 100644
--- a/lib/insights/src/lib/diagram/diagram.module.ts
+++ b/lib/insights/src/lib/diagram/diagram.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/bar-chart.model.ts b/lib/insights/src/lib/diagram/models/chart/bar-chart.model.ts
index 264d6607a3..669ac52474 100644
--- a/lib/insights/src/lib/diagram/models/chart/bar-chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/bar-chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/chart.model.ts b/lib/insights/src/lib/diagram/models/chart/chart.model.ts
index 352ec6c8d9..4f76836144 100644
--- a/lib/insights/src/lib/diagram/models/chart/chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/details-table-chart.model.ts b/lib/insights/src/lib/diagram/models/chart/details-table-chart.model.ts
index 2d5758ce71..9ad1dfa2dc 100644
--- a/lib/insights/src/lib/diagram/models/chart/details-table-chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/details-table-chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/heat-map-chart.model.ts b/lib/insights/src/lib/diagram/models/chart/heat-map-chart.model.ts
index 9c7601febd..24deed5b88 100644
--- a/lib/insights/src/lib/diagram/models/chart/heat-map-chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/heat-map-chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/line-chart.model.ts b/lib/insights/src/lib/diagram/models/chart/line-chart.model.ts
index 39bf734dc2..4497381f11 100644
--- a/lib/insights/src/lib/diagram/models/chart/line-chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/line-chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/multi-bar-chart.model.ts b/lib/insights/src/lib/diagram/models/chart/multi-bar-chart.model.ts
index e1a3b22a75..57b5fcbc30 100644
--- a/lib/insights/src/lib/diagram/models/chart/multi-bar-chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/multi-bar-chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/pie-chart.model.ts b/lib/insights/src/lib/diagram/models/chart/pie-chart.model.ts
index 0e1b32077c..35c1e45170 100644
--- a/lib/insights/src/lib/diagram/models/chart/pie-chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/pie-chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/chart/table-chart.model.ts b/lib/insights/src/lib/diagram/models/chart/table-chart.model.ts
index 6d560284d9..0cf35e65f4 100644
--- a/lib/insights/src/lib/diagram/models/chart/table-chart.model.ts
+++ b/lib/insights/src/lib/diagram/models/chart/table-chart.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram-element-property.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram-element-property.model.ts
index 3e8c669435..e8441bd674 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram-element-property.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram-element-property.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram-element.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram-element.model.ts
index 97f0d18a1a..16cd70f7e1 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram-element.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram-element.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram-event-definition.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram-event-definition.model.ts
index ebeefc7656..581b1c9e71 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram-event-definition.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram-event-definition.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram-flow-element.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram-flow-element.model.ts
index eada8eb460..5b4c8d3421 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram-flow-element.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram-flow-element.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram-lane-element.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram-lane-element.model.ts
index f8b45a1ff9..1d88a67726 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram-lane-element.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram-lane-element.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram-pool-element.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram-pool-element.model.ts
index d306faa432..529fa10a3a 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram-pool-element.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram-pool-element.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram-way-point.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram-way-point.model.ts
index 5181fa7c89..e3158498d3 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram-way-point.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram-way-point.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/diagram/diagram.model.ts b/lib/insights/src/lib/diagram/models/diagram/diagram.model.ts
index a50b5eacee..9ed9cd71d3 100644
--- a/lib/insights/src/lib/diagram/models/diagram/diagram.model.ts
+++ b/lib/insights/src/lib/diagram/models/diagram/diagram.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/report/parameter-value.model.ts b/lib/insights/src/lib/diagram/models/report/parameter-value.model.ts
index 3a6689714c..7fc8de9763 100644
--- a/lib/insights/src/lib/diagram/models/report/parameter-value.model.ts
+++ b/lib/insights/src/lib/diagram/models/report/parameter-value.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/report/report-date-range.model.ts b/lib/insights/src/lib/diagram/models/report/report-date-range.model.ts
index 054ca6f29d..dd18047f76 100644
--- a/lib/insights/src/lib/diagram/models/report/report-date-range.model.ts
+++ b/lib/insights/src/lib/diagram/models/report/report-date-range.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/report/report-definition.model.ts b/lib/insights/src/lib/diagram/models/report/report-definition.model.ts
index d63576b4b8..b27697dc92 100644
--- a/lib/insights/src/lib/diagram/models/report/report-definition.model.ts
+++ b/lib/insights/src/lib/diagram/models/report/report-definition.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/report/report-parameter-details.model.ts b/lib/insights/src/lib/diagram/models/report/report-parameter-details.model.ts
index 9445c7df38..8c38090c3f 100644
--- a/lib/insights/src/lib/diagram/models/report/report-parameter-details.model.ts
+++ b/lib/insights/src/lib/diagram/models/report/report-parameter-details.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/report/report-parameters.model.ts b/lib/insights/src/lib/diagram/models/report/report-parameters.model.ts
index 2ff04cc9eb..17eb2a844b 100644
--- a/lib/insights/src/lib/diagram/models/report/report-parameters.model.ts
+++ b/lib/insights/src/lib/diagram/models/report/report-parameters.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/models/report/report-query.model.ts b/lib/insights/src/lib/diagram/models/report/report-query.model.ts
index 7f7ecdd7fa..fc92c8d1b0 100644
--- a/lib/insights/src/lib/diagram/models/report/report-query.model.ts
+++ b/lib/insights/src/lib/diagram/models/report/report-query.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/public-api.ts b/lib/insights/src/lib/diagram/public-api.ts
index a023373c2a..04c2019806 100644
--- a/lib/insights/src/lib/diagram/public-api.ts
+++ b/lib/insights/src/lib/diagram/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/services/diagram-color.service.ts b/lib/insights/src/lib/diagram/services/diagram-color.service.ts
index f7d666812e..87858b115b 100644
--- a/lib/insights/src/lib/diagram/services/diagram-color.service.ts
+++ b/lib/insights/src/lib/diagram/services/diagram-color.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/services/diagrams.service.spec.ts b/lib/insights/src/lib/diagram/services/diagrams.service.spec.ts
index 3e1fa48a3d..c784a1cada 100644
--- a/lib/insights/src/lib/diagram/services/diagrams.service.spec.ts
+++ b/lib/insights/src/lib/diagram/services/diagrams.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/diagram/services/diagrams.service.ts b/lib/insights/src/lib/diagram/services/diagrams.service.ts
index 95d364760c..1f103d55fa 100644
--- a/lib/insights/src/lib/diagram/services/diagrams.service.ts
+++ b/lib/insights/src/lib/diagram/services/diagrams.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/insights.module.ts b/lib/insights/src/lib/insights.module.ts
index 48b7a8ac1c..d2214b6cc4 100644
--- a/lib/insights/src/lib/insights.module.ts
+++ b/lib/insights/src/lib/insights.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/material.module.ts b/lib/insights/src/lib/material.module.ts
index b38c8ff806..e2dc8b11cd 100644
--- a/lib/insights/src/lib/material.module.ts
+++ b/lib/insights/src/lib/material.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/analytics/analytics-component.mock.ts b/lib/insights/src/lib/mock/analytics/analytics-component.mock.ts
index 8e0fc24b5b..a96e5bdf5e 100644
--- a/lib/insights/src/lib/mock/analytics/analytics-component.mock.ts
+++ b/lib/insights/src/lib/mock/analytics/analytics-component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/analytics/analytics-params-report-component.mock.ts b/lib/insights/src/lib/mock/analytics/analytics-params-report-component.mock.ts
index bacb379e05..dec969dd84 100644
--- a/lib/insights/src/lib/mock/analytics/analytics-params-report-component.mock.ts
+++ b/lib/insights/src/lib/mock/analytics/analytics-params-report-component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/analytics/analytics.service.mock.ts b/lib/insights/src/lib/mock/analytics/analytics.service.mock.ts
index 845b2a27b6..d5cb245b20 100644
--- a/lib/insights/src/lib/mock/analytics/analytics.service.mock.ts
+++ b/lib/insights/src/lib/mock/analytics/analytics.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-activities.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-activities.mock.ts
index 5c643c5aff..5de26d6167 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-activities.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-activities.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-boundary.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-boundary.mock.ts
index efd8d01313..b4c01e2507 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-boundary.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-boundary.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-events.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-events.mock.ts
index a33a14addc..40b720933e 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-events.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-events.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-flows.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-flows.mock.ts
index 2bbdf54a05..68b8425d33 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-flows.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-flows.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-gateways.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-gateways.mock.ts
index fa566a467e..9c456229fb 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-gateways.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-gateways.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-intermediate.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-intermediate.mock.ts
index f670100287..457bc57a14 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-intermediate.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-intermediate.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-structural.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-structural.mock.ts
index 2db2b0302e..2d5113ccbc 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-structural.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-structural.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-swimlanes.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-swimlanes.mock.ts
index b38bed7c31..e6238fdbee 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-swimlanes.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-swimlanes.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/diagram/diagram-throw.mock.ts b/lib/insights/src/lib/mock/diagram/diagram-throw.mock.ts
index 523686351a..1e8284d424 100644
--- a/lib/insights/src/lib/mock/diagram/diagram-throw.mock.ts
+++ b/lib/insights/src/lib/mock/diagram/diagram-throw.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/index.ts b/lib/insights/src/lib/mock/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/insights/src/lib/mock/index.ts
+++ b/lib/insights/src/lib/mock/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/mock/public-api.ts b/lib/insights/src/lib/mock/public-api.ts
index 658227b91c..044dba29e9 100644
--- a/lib/insights/src/lib/mock/public-api.ts
+++ b/lib/insights/src/lib/mock/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/lib/testing/insights.testing.module.ts b/lib/insights/src/lib/testing/insights.testing.module.ts
index 87a303d43e..b149c8577c 100644
--- a/lib/insights/src/lib/testing/insights.testing.module.ts
+++ b/lib/insights/src/lib/testing/insights.testing.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/public-api.ts b/lib/insights/src/public-api.ts
index 1e755fbb7e..44e59359ed 100644
--- a/lib/insights/src/public-api.ts
+++ b/lib/insights/src/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/insights/src/test.ts b/lib/insights/src/test.ts
index 7bc32ebf60..83997b8083 100644
--- a/lib/insights/src/test.ts
+++ b/lib/insights/src/test.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/.eslintrc.json b/lib/process-services-cloud/.eslintrc.json
index 0c9ceb130f..c7c1907241 100644
--- a/lib/process-services-cloud/.eslintrc.json
+++ b/lib/process-services-cloud/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
diff --git a/lib/process-services-cloud/index.ts b/lib/process-services-cloud/index.ts
index eb9b46c8bc..7d18c6831c 100644
--- a/lib/process-services-cloud/index.ts
+++ b/lib/process-services-cloud/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/package.json b/lib/process-services-cloud/package.json
index 9dc85adaab..57b8cc3bb6 100644
--- a/lib/process-services-cloud/package.json
+++ b/lib/process-services-cloud/package.json
@@ -2,7 +2,7 @@
"name": "@alfresco/adf-process-services-cloud",
"description": "Alfresco ADF process services cloud",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/lib/process-services-cloud/src/lib/app/app-list-cloud.module.spec.ts b/lib/process-services-cloud/src/lib/app/app-list-cloud.module.spec.ts
index c57f3fefa0..5d44b6faef 100644
--- a/lib/process-services-cloud/src/lib/app/app-list-cloud.module.spec.ts
+++ b/lib/process-services-cloud/src/lib/app/app-list-cloud.module.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/app-list-cloud.module.ts b/lib/process-services-cloud/src/lib/app/app-list-cloud.module.ts
index 770f7b9b77..11ac28639b 100644
--- a/lib/process-services-cloud/src/lib/app/app-list-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/app/app-list-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.spec.ts
index 6d38d78930..fc9d5aca5d 100644
--- a/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.stories.ts
index bfd1a85e26..13cf762333 100644
--- a/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.ts b/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.ts
index 0aa990a1e1..d28a5d9fbe 100644
--- a/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/app/components/app-details-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.spec.ts
index b2f98d2a65..256ba520a6 100644
--- a/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.stories.ts
index c650536ee0..0bad4ae593 100644
--- a/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.ts b/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.ts
index 2b8d060a5d..826785d960 100644
--- a/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/app/components/app-list-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/mock/app-model.mock.ts b/lib/process-services-cloud/src/lib/app/mock/app-model.mock.ts
index 36a961e6c4..a6a4ca5272 100644
--- a/lib/process-services-cloud/src/lib/app/mock/app-model.mock.ts
+++ b/lib/process-services-cloud/src/lib/app/mock/app-model.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/models/application-instance.model.ts b/lib/process-services-cloud/src/lib/app/models/application-instance.model.ts
index 0bae77a415..bb13d972a5 100644
--- a/lib/process-services-cloud/src/lib/app/models/application-instance.model.ts
+++ b/lib/process-services-cloud/src/lib/app/models/application-instance.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/public-api.ts b/lib/process-services-cloud/src/lib/app/public-api.ts
index c209dd6807..71da190ee4 100644
--- a/lib/process-services-cloud/src/lib/app/public-api.ts
+++ b/lib/process-services-cloud/src/lib/app/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.spec.ts
index f8611005dc..b590787d69 100644
--- a/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.ts b/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.ts
index 1dab9a978f..de3108b711 100644
--- a/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/app/services/apps-process-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.spec.ts b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.spec.ts
index 8e4e8294c0..31025aa8a3 100644
--- a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.stories.ts b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.stories.ts
index cbf4bef063..1847edc60f 100644
--- a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.ts b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.ts
index 02766d35ec..16d17ed661 100644
--- a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.ts
+++ b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.spec.ts b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.spec.ts
index 29e50ca4d7..0fb5be4b32 100644
--- a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.ts b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.ts
index 1f2ba66552..be432b2224 100644
--- a/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.ts
+++ b/lib/process-services-cloud/src/lib/common/date-range-filter/date-range-filter.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/index.ts b/lib/process-services-cloud/src/lib/common/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services-cloud/src/lib/common/index.ts
+++ b/lib/process-services-cloud/src/lib/common/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/interface/environment.interface.ts b/lib/process-services-cloud/src/lib/common/interface/environment.interface.ts
index 16ccb343b4..fe77a32684 100644
--- a/lib/process-services-cloud/src/lib/common/interface/environment.interface.ts
+++ b/lib/process-services-cloud/src/lib/common/interface/environment.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/interface/index.ts b/lib/process-services-cloud/src/lib/common/interface/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services-cloud/src/lib/common/interface/index.ts
+++ b/lib/process-services-cloud/src/lib/common/interface/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/interface/public-api.ts b/lib/process-services-cloud/src/lib/common/interface/public-api.ts
index 300a896f68..1bdcb5b67e 100644
--- a/lib/process-services-cloud/src/lib/common/interface/public-api.ts
+++ b/lib/process-services-cloud/src/lib/common/interface/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/mock/date-range-filter.mock.ts b/lib/process-services-cloud/src/lib/common/mock/date-range-filter.mock.ts
index 6662b6e78e..de0c8855ab 100644
--- a/lib/process-services-cloud/src/lib/common/mock/date-range-filter.mock.ts
+++ b/lib/process-services-cloud/src/lib/common/mock/date-range-filter.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/mock/environment.mock.ts b/lib/process-services-cloud/src/lib/common/mock/environment.mock.ts
index ae41997810..3383b468e5 100644
--- a/lib/process-services-cloud/src/lib/common/mock/environment.mock.ts
+++ b/lib/process-services-cloud/src/lib/common/mock/environment.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/process-common.module.ts b/lib/process-services-cloud/src/lib/common/process-common.module.ts
index 959878a3b8..82fb18b626 100644
--- a/lib/process-services-cloud/src/lib/common/process-common.module.ts
+++ b/lib/process-services-cloud/src/lib/common/process-common.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/common/public-api.ts b/lib/process-services-cloud/src/lib/common/public-api.ts
index b4c2a300e2..ccb58e5d3a 100644
--- a/lib/process-services-cloud/src/lib/common/public-api.ts
+++ b/lib/process-services-cloud/src/lib/common/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/cloud-form-rendering.service.ts b/lib/process-services-cloud/src/lib/form/components/cloud-form-rendering.service.ts
index 6663d15757..d7f284f4e8 100644
--- a/lib/process-services-cloud/src/lib/form/components/cloud-form-rendering.service.ts
+++ b/lib/process-services-cloud/src/lib/form/components/cloud-form-rendering.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.spec.ts b/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.spec.ts
index 6a1dbbb13d..7e7a4d845c 100644
--- a/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.ts b/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.ts
index 14ac5d655d..6f880140e2 100644
--- a/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.ts
+++ b/lib/process-services-cloud/src/lib/form/components/form-cloud-custom-outcomes.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/form-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/form/components/form-cloud.component.spec.ts
index c3e075500e..97410dd01f 100644
--- a/lib/process-services-cloud/src/lib/form/components/form-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/form-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/form-cloud.component.ts b/lib/process-services-cloud/src/lib/form/components/form-cloud.component.ts
index cb2321df0b..57119f455c 100644
--- a/lib/process-services-cloud/src/lib/form/components/form-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/form/components/form-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.spec.ts
index 7a4a2c2538..00c129cd5c 100644
--- a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.stories.ts
index 250d186054..a1a52acd5d 100644
--- a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts
index edb98d5aee..e146182c95 100644
--- a/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.spec.ts
index 93689b197a..52b713a74d 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.ts b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.ts
index 323e2da8e7..c43bc0b88e 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.spec.ts
index 283d65009c..c620078cc6 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.ts b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.ts
index f0a64deb11..d9bb84f570 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/file-properties-table-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/upload-cloud.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/upload-cloud.widget.ts
index 6bfb5ba066..98ed04e5cd 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/upload-cloud.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/attach-file/upload-cloud.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.spec.ts
index 289ecbab2f..d79bcc9ccb 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.ts
index eb24db700d..8d62144249 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/date/date-cloud.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.spec.ts
index 98b061b060..e20bd6d0f0 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.ts
index 339a56737b..376812d9c7 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/display-rich-text/display-rich-text.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.spec.ts
index a35160ac0d..9565709000 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.ts
index 98ed493ca4..5f93c5a80d 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/dropdown/dropdown-cloud.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.spec.ts
index 88d7cd983b..ec05b61734 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.ts
index 6bdfd042c4..4b3b4b5ab8 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/file-viewer/file-viewer.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.spec.ts
index 26db673df9..d5e5187021 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.ts
index 87a4f39207..1fcbe830e2 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/group/group-cloud.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.spec.ts
index daa3f3b335..cb01d8899b 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.ts
index da446ecf43..4c0841b197 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/people/people-cloud.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component.ts b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component.ts
index cf6ab37c3c..91f9c7c883 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer.widget.spec.ts
index d8c7122c07..5f35a8299a 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.spec.ts
index 6495a6505b..d5e70317a9 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.ts
index 4b28f8a639..5d49fe1bc5 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/properties-viewer/properties-viewer.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.spec.ts b/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.spec.ts
index 502295ed33..c0a6c9c5db 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.ts b/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.ts
index 0328749c69..5121eb8bb7 100644
--- a/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.ts
+++ b/lib/process-services-cloud/src/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/form-cloud.module.ts b/lib/process-services-cloud/src/lib/form/form-cloud.module.ts
index d5cd3b42ee..5a951994d4 100644
--- a/lib/process-services-cloud/src/lib/form/form-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/form/form-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/mocks/attach-file-cloud-widget.mock.ts b/lib/process-services-cloud/src/lib/form/mocks/attach-file-cloud-widget.mock.ts
index f4f7294599..d689402a61 100644
--- a/lib/process-services-cloud/src/lib/form/mocks/attach-file-cloud-widget.mock.ts
+++ b/lib/process-services-cloud/src/lib/form/mocks/attach-file-cloud-widget.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/mocks/cloud-form.mock.ts b/lib/process-services-cloud/src/lib/form/mocks/cloud-form.mock.ts
index 19af70c96e..35de61179f 100644
--- a/lib/process-services-cloud/src/lib/form/mocks/cloud-form.mock.ts
+++ b/lib/process-services-cloud/src/lib/form/mocks/cloud-form.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/mocks/dropdown.mock.ts b/lib/process-services-cloud/src/lib/form/mocks/dropdown.mock.ts
index 9cb69c0917..a13488c8a0 100644
--- a/lib/process-services-cloud/src/lib/form/mocks/dropdown.mock.ts
+++ b/lib/process-services-cloud/src/lib/form/mocks/dropdown.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/mocks/form-cloud.service.mock.ts b/lib/process-services-cloud/src/lib/form/mocks/form-cloud.service.mock.ts
index 754a48cdce..ec4e43082f 100644
--- a/lib/process-services-cloud/src/lib/form/mocks/form-cloud.service.mock.ts
+++ b/lib/process-services-cloud/src/lib/form/mocks/form-cloud.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/mocks/form-definition-selector-cloud.service.mock.ts b/lib/process-services-cloud/src/lib/form/mocks/form-definition-selector-cloud.service.mock.ts
index d716b89c05..40a2ed793c 100644
--- a/lib/process-services-cloud/src/lib/form/mocks/form-definition-selector-cloud.service.mock.ts
+++ b/lib/process-services-cloud/src/lib/form/mocks/form-definition-selector-cloud.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/mocks/form-representation.mock.ts b/lib/process-services-cloud/src/lib/form/mocks/form-representation.mock.ts
index 07500b9470..a81f81b4b5 100644
--- a/lib/process-services-cloud/src/lib/form/mocks/form-representation.mock.ts
+++ b/lib/process-services-cloud/src/lib/form/mocks/form-representation.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/models/form-cloud-representation.model.ts b/lib/process-services-cloud/src/lib/form/models/form-cloud-representation.model.ts
index 4ebfeb4572..35e3589b2e 100644
--- a/lib/process-services-cloud/src/lib/form/models/form-cloud-representation.model.ts
+++ b/lib/process-services-cloud/src/lib/form/models/form-cloud-representation.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/models/form-cloud.model.spec.ts b/lib/process-services-cloud/src/lib/form/models/form-cloud.model.spec.ts
index 5f6e4deeb1..a0cd753778 100644
--- a/lib/process-services-cloud/src/lib/form/models/form-cloud.model.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/models/form-cloud.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/models/task-variable-cloud.model.ts b/lib/process-services-cloud/src/lib/form/models/task-variable-cloud.model.ts
index 3cf5f7b007..b673815ac8 100644
--- a/lib/process-services-cloud/src/lib/form/models/task-variable-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/form/models/task-variable-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/public-api.ts b/lib/process-services-cloud/src/lib/form/public-api.ts
index 1622d184e9..247087f1c0 100644
--- a/lib/process-services-cloud/src/lib/form/public-api.ts
+++ b/lib/process-services-cloud/src/lib/form/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.spec.ts b/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.spec.ts
index e9b6f99f6e..a701d3c04e 100644
--- a/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.ts b/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.ts
index 26b4c055c4..e84bdbc20d 100644
--- a/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.ts
+++ b/lib/process-services-cloud/src/lib/form/services/content-cloud-node-selector.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/form-cloud.service.interface.ts b/lib/process-services-cloud/src/lib/form/services/form-cloud.service.interface.ts
index cedae293ba..40633bd8a5 100644
--- a/lib/process-services-cloud/src/lib/form/services/form-cloud.service.interface.ts
+++ b/lib/process-services-cloud/src/lib/form/services/form-cloud.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/form-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/form/services/form-cloud.service.spec.ts
index 2e6b4d46e1..ed0082a529 100644
--- a/lib/process-services-cloud/src/lib/form/services/form-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/services/form-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/form-cloud.service.ts b/lib/process-services-cloud/src/lib/form/services/form-cloud.service.ts
index 7a8a64f993..8490f16273 100644
--- a/lib/process-services-cloud/src/lib/form/services/form-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/form/services/form-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.interface.ts b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.interface.ts
index c31f14de55..5e66e8d435 100644
--- a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.interface.ts
+++ b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.spec.ts
index f1e4b3b6bc..ebd579bb4e 100644
--- a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts
index d37ad736bd..397ff94399 100644
--- a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/form/services/process-cloud-content.service.ts b/lib/process-services-cloud/src/lib/form/services/process-cloud-content.service.ts
index f3cbe7ca2c..2f86830853 100644
--- a/lib/process-services-cloud/src/lib/form/services/process-cloud-content.service.ts
+++ b/lib/process-services-cloud/src/lib/form/services/process-cloud-content.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/components/group-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/group/components/group-cloud.component.spec.ts
index dbd3192ad0..a2ea107888 100644
--- a/lib/process-services-cloud/src/lib/group/components/group-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/group/components/group-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/components/group-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/group/components/group-cloud.component.stories.ts
index 870e2353ad..6c59b6f53c 100644
--- a/lib/process-services-cloud/src/lib/group/components/group-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/group/components/group-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/components/group-cloud.component.ts b/lib/process-services-cloud/src/lib/group/components/group-cloud.component.ts
index d3fbc6afb0..b137f67db1 100644
--- a/lib/process-services-cloud/src/lib/group/components/group-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/group/components/group-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/group-cloud.module.ts b/lib/process-services-cloud/src/lib/group/group-cloud.module.ts
index 5e13754fc4..d0601b514a 100644
--- a/lib/process-services-cloud/src/lib/group/group-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/group/group-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/mock/group-cloud.mock.ts b/lib/process-services-cloud/src/lib/group/mock/group-cloud.mock.ts
index ef5acf659a..61c1815487 100644
--- a/lib/process-services-cloud/src/lib/group/mock/group-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/group/mock/group-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/mock/identity-group.service.mock.ts b/lib/process-services-cloud/src/lib/group/mock/identity-group.service.mock.ts
index 1d1bd64f6c..063afcb4bf 100644
--- a/lib/process-services-cloud/src/lib/group/mock/identity-group.service.mock.ts
+++ b/lib/process-services-cloud/src/lib/group/mock/identity-group.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/models/identity-group.model.ts b/lib/process-services-cloud/src/lib/group/models/identity-group.model.ts
index 57e8299c43..44120d594e 100644
--- a/lib/process-services-cloud/src/lib/group/models/identity-group.model.ts
+++ b/lib/process-services-cloud/src/lib/group/models/identity-group.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.spec.ts b/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.spec.ts
index fc0ff8c150..888d4bebba 100644
--- a/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.spec.ts
+++ b/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.ts b/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.ts
index 01e7b13e38..6701b0789c 100644
--- a/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.ts
+++ b/lib/process-services-cloud/src/lib/group/pipe/group-initial.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/public-api.ts b/lib/process-services-cloud/src/lib/group/public-api.ts
index c0f31d95a5..144c7c6c5d 100644
--- a/lib/process-services-cloud/src/lib/group/public-api.ts
+++ b/lib/process-services-cloud/src/lib/group/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/services/identity-group-filter.interface.ts b/lib/process-services-cloud/src/lib/group/services/identity-group-filter.interface.ts
index d832acf29c..bedf50d409 100644
--- a/lib/process-services-cloud/src/lib/group/services/identity-group-filter.interface.ts
+++ b/lib/process-services-cloud/src/lib/group/services/identity-group-filter.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/services/identity-group-service.token.ts b/lib/process-services-cloud/src/lib/group/services/identity-group-service.token.ts
index c8ccb46ab3..b13d00042f 100644
--- a/lib/process-services-cloud/src/lib/group/services/identity-group-service.token.ts
+++ b/lib/process-services-cloud/src/lib/group/services/identity-group-service.token.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/services/identity-group.service.interface.ts b/lib/process-services-cloud/src/lib/group/services/identity-group.service.interface.ts
index 3be3aad6e3..459b9c681f 100644
--- a/lib/process-services-cloud/src/lib/group/services/identity-group.service.interface.ts
+++ b/lib/process-services-cloud/src/lib/group/services/identity-group.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/services/identity-group.service.spec.ts b/lib/process-services-cloud/src/lib/group/services/identity-group.service.spec.ts
index aec0724179..f46c2dbc70 100644
--- a/lib/process-services-cloud/src/lib/group/services/identity-group.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/group/services/identity-group.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/group/services/identity-group.service.ts b/lib/process-services-cloud/src/lib/group/services/identity-group.service.ts
index d59f847b9c..d7b69f6af3 100644
--- a/lib/process-services-cloud/src/lib/group/services/identity-group.service.ts
+++ b/lib/process-services-cloud/src/lib/group/services/identity-group.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/material.module.ts b/lib/process-services-cloud/src/lib/material.module.ts
index 70c88cd4c0..f94046de08 100644
--- a/lib/process-services-cloud/src/lib/material.module.ts
+++ b/lib/process-services-cloud/src/lib/material.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/mock/process-instance-variable.mock.ts b/lib/process-services-cloud/src/lib/mock/process-instance-variable.mock.ts
index d5486b1ade..7387335c86 100644
--- a/lib/process-services-cloud/src/lib/mock/process-instance-variable.mock.ts
+++ b/lib/process-services-cloud/src/lib/mock/process-instance-variable.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/mock/task-cloud-model.mock.ts b/lib/process-services-cloud/src/lib/mock/task-cloud-model.mock.ts
index cdcddacde5..9c8ac9e13c 100644
--- a/lib/process-services-cloud/src/lib/mock/task-cloud-model.mock.ts
+++ b/lib/process-services-cloud/src/lib/mock/task-cloud-model.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/mock/user-preference.mock.ts b/lib/process-services-cloud/src/lib/mock/user-preference.mock.ts
index 45aff12608..74b31bca7b 100644
--- a/lib/process-services-cloud/src/lib/mock/user-preference.mock.ts
+++ b/lib/process-services-cloud/src/lib/mock/user-preference.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/application-version.model.ts b/lib/process-services-cloud/src/lib/models/application-version.model.ts
index 37025f33f8..d1f6eba65f 100644
--- a/lib/process-services-cloud/src/lib/models/application-version.model.ts
+++ b/lib/process-services-cloud/src/lib/models/application-version.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/data-column-custom-data.ts b/lib/process-services-cloud/src/lib/models/data-column-custom-data.ts
index b63b94e634..82590f4c2e 100644
--- a/lib/process-services-cloud/src/lib/models/data-column-custom-data.ts
+++ b/lib/process-services-cloud/src/lib/models/data-column-custom-data.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/date-cloud-filter.model.ts b/lib/process-services-cloud/src/lib/models/date-cloud-filter.model.ts
index ee31843f1e..784a12265b 100644
--- a/lib/process-services-cloud/src/lib/models/date-cloud-filter.model.ts
+++ b/lib/process-services-cloud/src/lib/models/date-cloud-filter.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/date-format-cloud.model.ts b/lib/process-services-cloud/src/lib/models/date-format-cloud.model.ts
index 24b6d87b37..786c8c316b 100644
--- a/lib/process-services-cloud/src/lib/models/date-format-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/models/date-format-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/engine-event-cloud.model.ts b/lib/process-services-cloud/src/lib/models/engine-event-cloud.model.ts
index a81bf1611e..3d1fd2c0f4 100644
--- a/lib/process-services-cloud/src/lib/models/engine-event-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/models/engine-event-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/filter-cloud-model.ts b/lib/process-services-cloud/src/lib/models/filter-cloud-model.ts
index 6ff968956c..3f54650fdb 100644
--- a/lib/process-services-cloud/src/lib/models/filter-cloud-model.ts
+++ b/lib/process-services-cloud/src/lib/models/filter-cloud-model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/process-definition-cloud.model.ts b/lib/process-services-cloud/src/lib/models/process-definition-cloud.model.ts
index db8f7180f6..ca8521be71 100755
--- a/lib/process-services-cloud/src/lib/models/process-definition-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/models/process-definition-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/process-instance-variable.model.ts b/lib/process-services-cloud/src/lib/models/process-instance-variable.model.ts
index 2298abfce5..0443233fa6 100644
--- a/lib/process-services-cloud/src/lib/models/process-instance-variable.model.ts
+++ b/lib/process-services-cloud/src/lib/models/process-instance-variable.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/task-cloud.model.ts b/lib/process-services-cloud/src/lib/models/task-cloud.model.ts
index 24fc26ed21..f4672479a8 100644
--- a/lib/process-services-cloud/src/lib/models/task-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/models/task-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/task-list-sorting.model.ts b/lib/process-services-cloud/src/lib/models/task-list-sorting.model.ts
index 6957c8ba55..7a50c23d71 100644
--- a/lib/process-services-cloud/src/lib/models/task-list-sorting.model.ts
+++ b/lib/process-services-cloud/src/lib/models/task-list-sorting.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/models/variable-definition.ts b/lib/process-services-cloud/src/lib/models/variable-definition.ts
index 8e54c1e658..7c500f398e 100644
--- a/lib/process-services-cloud/src/lib/models/variable-definition.ts
+++ b/lib/process-services-cloud/src/lib/models/variable-definition.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/components/people-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/people/components/people-cloud.component.spec.ts
index bfc36a6bae..a7a74bb687 100644
--- a/lib/process-services-cloud/src/lib/people/components/people-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/people/components/people-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/components/people-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/people/components/people-cloud.component.stories.ts
index f7035ecf51..d72413a4ab 100644
--- a/lib/process-services-cloud/src/lib/people/components/people-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/people/components/people-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/components/people-cloud.component.ts b/lib/process-services-cloud/src/lib/people/components/people-cloud.component.ts
index 9adbf1f6a2..e47eaab312 100644
--- a/lib/process-services-cloud/src/lib/people/components/people-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/people/components/people-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/mock/identity-user.service.mock.ts b/lib/process-services-cloud/src/lib/people/mock/identity-user.service.mock.ts
index 202d026882..8eb992a9b7 100644
--- a/lib/process-services-cloud/src/lib/people/mock/identity-user.service.mock.ts
+++ b/lib/process-services-cloud/src/lib/people/mock/identity-user.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/mock/jwt-helper.service.spec.ts b/lib/process-services-cloud/src/lib/people/mock/jwt-helper.service.spec.ts
index 3a2a4deb34..f23c216c3c 100644
--- a/lib/process-services-cloud/src/lib/people/mock/jwt-helper.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/people/mock/jwt-helper.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/mock/people-cloud.mock.ts b/lib/process-services-cloud/src/lib/people/mock/people-cloud.mock.ts
index 8db4dfb08a..c35b6c3237 100644
--- a/lib/process-services-cloud/src/lib/people/mock/people-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/people/mock/people-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/models/identity-user.model.ts b/lib/process-services-cloud/src/lib/people/models/identity-user.model.ts
index c6a2993fc7..afd02c0ae0 100644
--- a/lib/process-services-cloud/src/lib/people/models/identity-user.model.ts
+++ b/lib/process-services-cloud/src/lib/people/models/identity-user.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/people-cloud.module.ts b/lib/process-services-cloud/src/lib/people/people-cloud.module.ts
index 5790a9c520..f29318412e 100644
--- a/lib/process-services-cloud/src/lib/people/people-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/people/people-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/public-api.ts b/lib/process-services-cloud/src/lib/people/public-api.ts
index 96b1cea664..1cbaa88ebb 100644
--- a/lib/process-services-cloud/src/lib/people/public-api.ts
+++ b/lib/process-services-cloud/src/lib/people/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/services/identity-user-filter.interface.ts b/lib/process-services-cloud/src/lib/people/services/identity-user-filter.interface.ts
index 6f010191ed..a1571f4eb9 100644
--- a/lib/process-services-cloud/src/lib/people/services/identity-user-filter.interface.ts
+++ b/lib/process-services-cloud/src/lib/people/services/identity-user-filter.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/services/identity-user-service.token.ts b/lib/process-services-cloud/src/lib/people/services/identity-user-service.token.ts
index 072e58a73c..0357f08bbf 100644
--- a/lib/process-services-cloud/src/lib/people/services/identity-user-service.token.ts
+++ b/lib/process-services-cloud/src/lib/people/services/identity-user-service.token.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/services/identity-user.service.interface.ts b/lib/process-services-cloud/src/lib/people/services/identity-user.service.interface.ts
index 6f41ebd656..83a032dc47 100644
--- a/lib/process-services-cloud/src/lib/people/services/identity-user.service.interface.ts
+++ b/lib/process-services-cloud/src/lib/people/services/identity-user.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/services/identity-user.service.spec.ts b/lib/process-services-cloud/src/lib/people/services/identity-user.service.spec.ts
index 5ccf1fa0b0..abaf7d1112 100644
--- a/lib/process-services-cloud/src/lib/people/services/identity-user.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/people/services/identity-user.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/people/services/identity-user.service.ts b/lib/process-services-cloud/src/lib/people/services/identity-user.service.ts
index 804bf6c6b1..131f25b245 100644
--- a/lib/process-services-cloud/src/lib/people/services/identity-user.service.ts
+++ b/lib/process-services-cloud/src/lib/people/services/identity-user.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.spec.ts b/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.spec.ts
index 904b396a78..686029f425 100644
--- a/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.spec.ts
+++ b/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.ts b/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.ts
index acab9694b0..f7ab36bff3 100644
--- a/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.ts
+++ b/lib/process-services-cloud/src/lib/pipes/process-name-cloud.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/pipes/process-services-cloud-pipe.module.ts b/lib/process-services-cloud/src/lib/pipes/process-services-cloud-pipe.module.ts
index 90018a6868..32068759cd 100644
--- a/lib/process-services-cloud/src/lib/pipes/process-services-cloud-pipe.module.ts
+++ b/lib/process-services-cloud/src/lib/pipes/process-services-cloud-pipe.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process-services-cloud.module.ts b/lib/process-services-cloud/src/lib/process-services-cloud.module.ts
index df260077fa..df149f1576 100644
--- a/lib/process-services-cloud/src/lib/process-services-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/process-services-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.spec.ts b/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.spec.ts
index 9d89960d74..8de4cac8b2 100644
--- a/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.ts b/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.ts
index 4d2cba5dbd..ae9a71282d 100644
--- a/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.ts
+++ b/lib/process-services-cloud/src/lib/process/directives/cancel-process.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/directives/process-directive.module.ts b/lib/process-services-cloud/src/lib/process/directives/process-directive.module.ts
index cf094bce36..83e5966c18 100644
--- a/lib/process-services-cloud/src/lib/process/directives/process-directive.module.ts
+++ b/lib/process-services-cloud/src/lib/process/directives/process-directive.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/directives/public-api.ts b/lib/process-services-cloud/src/lib/process/directives/public-api.ts
index 505e0c9b7f..a66422a125 100644
--- a/lib/process-services-cloud/src/lib/process/directives/public-api.ts
+++ b/lib/process-services-cloud/src/lib/process/directives/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/mock/process-cloud.service.mock.ts b/lib/process-services-cloud/src/lib/process/mock/process-cloud.service.mock.ts
index a8baccc2b3..bfa8c0b5f6 100644
--- a/lib/process-services-cloud/src/lib/process/mock/process-cloud.service.mock.ts
+++ b/lib/process-services-cloud/src/lib/process/mock/process-cloud.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/mock/process-instance-details-cloud.mock.ts b/lib/process-services-cloud/src/lib/process/mock/process-instance-details-cloud.mock.ts
index 38a98c5fae..723ce7f17f 100644
--- a/lib/process-services-cloud/src/lib/process/mock/process-instance-details-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/process/mock/process-instance-details-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-cloud.module.spec.ts b/lib/process-services-cloud/src/lib/process/process-cloud.module.spec.ts
index 8b05104e01..d185fa4e7d 100644
--- a/lib/process-services-cloud/src/lib/process/process-cloud.module.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-cloud.module.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-cloud.module.ts b/lib/process-services-cloud/src/lib/process/process-cloud.module.ts
index e3ad781cdd..37f658b1bb 100644
--- a/lib/process-services-cloud/src/lib/process/process-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/process/process-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.spec.ts
index fe41f9ce1d..916c45c554 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.ts b/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.ts
index 5c888609c9..ff6bd1edaa 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/components/edit-process-filter-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.spec.ts
index a961c1ed8c..2dc63e9d1f 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.ts b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.ts
index 6b83e38426..6a5cb5eee4 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filter-dialog-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.spec.ts
index b1df4d9d4a..ebfe7c276b 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -110,7 +110,7 @@ describe('ProcessFiltersCloudComponent', () => {
expect(filters[2].nativeElement.innerText).toContain('FakeCompletedProcesses');
});
- it('should emit an error with a bad response', async() => {
+ it('should emit an error with a bad response', async () => {
const mockErrorFilterList = {
error: 'wrong request'
};
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.ts b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.ts
index 9d661abd23..1bc5b32e5b 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/components/process-filters-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/mock/process-filters-cloud.mock.ts b/lib/process-services-cloud/src/lib/process/process-filters/mock/process-filters-cloud.mock.ts
index 0b27eb50c6..6d9f197f66 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/mock/process-filters-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/mock/process-filters-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.spec.ts b/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.spec.ts
index c08578c38b..f023c5110a 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.ts b/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.ts
index 2aaaba1377..5777d6c45e 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/models/process-filter-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/process-filters-cloud.module.ts b/lib/process-services-cloud/src/lib/process/process-filters/process-filters-cloud.module.ts
index eb4c6bcaf0..8347560e0d 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/process-filters-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/process-filters-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/public-api.ts b/lib/process-services-cloud/src/lib/process/process-filters/public-api.ts
index e39747dcdf..8a378b67c9 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/public-api.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.spec.ts
index 81cedd1c7b..532c38dd94 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.ts b/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.ts
index 7f8e2015d1..c9b4a2e80b 100644
--- a/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/process/process-filters/services/process-filter-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.spec.ts
index 66106c79b1..e147460f80 100644
--- a/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.stories.ts
index a95b48f620..09ec5296f4 100644
--- a/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.ts b/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.ts
index a1d1600d8f..6a1fe58a03 100644
--- a/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/process/process-header/components/process-header-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.spec.ts b/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.spec.ts
index 72e2627563..450914436c 100644
--- a/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.ts b/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.ts
index e6597499a7..c147cf9ba1 100644
--- a/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/process/process-header/process-header-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-header/public-api.ts b/lib/process-services-cloud/src/lib/process/process-header/public-api.ts
index 7648a1e6c8..322ded0e10 100644
--- a/lib/process-services-cloud/src/lib/process/process-header/public-api.ts
+++ b/lib/process-services-cloud/src/lib/process/process-header/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.spec.ts
index 1caf39d74d..6dca2f4fbd 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.ts b/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.ts
index c3dcb4d503..5306922190 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/components/process-list-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.spec.ts b/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.spec.ts
index 9e27b691b4..480a4d85a7 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.ts b/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.ts
index 4bfe5bb927..cad6c4af74 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/datatable/process-list-datatable-adapter.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/mock/process-list-service.mock.ts b/lib/process-services-cloud/src/lib/process/process-list/mock/process-list-service.mock.ts
index c8bc461608..60aca6b5f1 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/mock/process-list-service.mock.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/mock/process-list-service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -105,65 +105,59 @@ export const processListSchemaMock = {
default: [
{
key: 'id',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.ID',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.ID'
},
{
key: 'name',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.NAME',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.NAME'
},
{
key: 'status',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.STATUS',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.STATUS'
},
{
key: 'startDate',
type: 'date',
title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.START_DATE',
- sortable: true,
format: 'timeAgo'
},
{
key: 'appName',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.APP_NAME',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.APP_NAME'
},
{
key: 'businessKey',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.BUSINESS_KEY',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.BUSINESS_KEY'
},
{
key: 'initiator',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.INITIATOR',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.INITIATOR'
},
{
key: 'lastModified',
type: 'date',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.LAST_MODIFIED',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.LAST_MODIFIED'
},
{
key: 'processDefinitionId',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_ID',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_ID'
},
{
key: 'processDefinitionKey',
- type: 'text',
- title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_KEY',
- sortable: true
+ title: 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.PROCESS_DEF_KEY'
}
- ]
+ ].map((column: {
+ key: string;
+ type: string;
+ title: string;
+ sortable: boolean;
+ format: string;
+ }) => {
+ column.sortable = true;
+ if (!column.type) {
+ column.type = 'text';
+ }
+ return column;
+ })
}
};
diff --git a/lib/process-services-cloud/src/lib/process/process-list/models/perocess-instance-cloud-view.model.ts b/lib/process-services-cloud/src/lib/process/process-list/models/perocess-instance-cloud-view.model.ts
index e6ef4f2eee..afc371f7e0 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/models/perocess-instance-cloud-view.model.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/models/perocess-instance-cloud-view.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preferences.ts b/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preferences.ts
index 0b752d8cc0..ef1a457ec8 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preferences.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preferences.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preset.model.ts b/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preset.model.ts
index 78ea8c1e8a..1b9c19631d 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preset.model.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-preset.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-query-request.model.ts b/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-query-request.model.ts
index 04ab59c705..9382d9e2d0 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-query-request.model.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/models/process-cloud-query-request.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/models/process-list-sorting.model.ts b/lib/process-services-cloud/src/lib/process/process-list/models/process-list-sorting.model.ts
index 89bc767e55..9da1d639cd 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/models/process-list-sorting.model.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/models/process-list-sorting.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/process-list-cloud.module.ts b/lib/process-services-cloud/src/lib/process/process-list/process-list-cloud.module.ts
index 10a92f50c1..18fd6ef56b 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/process-list-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/process-list-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/public-api.ts b/lib/process-services-cloud/src/lib/process/process-list/public-api.ts
index 80a37cab4e..ae8e6a1a34 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/public-api.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.spec.ts
index 3f1345dc35..9d63c33942 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.ts b/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.ts
index 16609585f4..15c323ffd8 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/services/process-list-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/process-list/services/process-task-list-cloud.service.ts b/lib/process-services-cloud/src/lib/process/process-list/services/process-task-list-cloud.service.ts
index d282bb9a1f..c43806390f 100644
--- a/lib/process-services-cloud/src/lib/process/process-list/services/process-task-list-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/process/process-list/services/process-task-list-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/public-api.ts b/lib/process-services-cloud/src/lib/process/public-api.ts
index 8486bc8819..7ebc9701f1 100644
--- a/lib/process-services-cloud/src/lib/process/public-api.ts
+++ b/lib/process-services-cloud/src/lib/process/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/services/process-cloud.interface.ts b/lib/process-services-cloud/src/lib/process/services/process-cloud.interface.ts
index 7318f2658e..27a4fc2d09 100644
--- a/lib/process-services-cloud/src/lib/process/services/process-cloud.interface.ts
+++ b/lib/process-services-cloud/src/lib/process/services/process-cloud.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/services/process-cloud.service.ts b/lib/process-services-cloud/src/lib/process/services/process-cloud.service.ts
index 5a9fc0a4da..ecd603d71b 100644
--- a/lib/process-services-cloud/src/lib/process/services/process-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/process/services/process-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.spec.ts
index 96579dde02..54a43eb50c 100755
--- a/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.ts b/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.ts
index 6efc96a7cc..79352ec514 100755
--- a/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/components/start-process-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/mock/start-process.component.mock.ts b/lib/process-services-cloud/src/lib/process/start-process/mock/start-process.component.mock.ts
index 65dae4bc23..e09ccc7659 100755
--- a/lib/process-services-cloud/src/lib/process/start-process/mock/start-process.component.mock.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/mock/start-process.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/models/process-instance-cloud.model.ts b/lib/process-services-cloud/src/lib/process/start-process/models/process-instance-cloud.model.ts
index 7f007b6b0e..8f86f8b0b0 100755
--- a/lib/process-services-cloud/src/lib/process/start-process/models/process-instance-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/models/process-instance-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/models/process-payload-cloud.model.ts b/lib/process-services-cloud/src/lib/process/start-process/models/process-payload-cloud.model.ts
index d62a496d91..db577773c7 100755
--- a/lib/process-services-cloud/src/lib/process/start-process/models/process-payload-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/models/process-payload-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/public-api.ts b/lib/process-services-cloud/src/lib/process/start-process/public-api.ts
index f6aaf772c8..df4f9228ae 100644
--- a/lib/process-services-cloud/src/lib/process/start-process/public-api.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.spec.ts
index 62021b6e80..057f27a677 100755
--- a/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.ts b/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.ts
index 5858a32d24..8eb5faedb8 100755
--- a/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/services/start-process-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/process/start-process/start-process-cloud.module.ts b/lib/process-services-cloud/src/lib/process/start-process/start-process-cloud.module.ts
index 1cfbec4dcb..f6a100e985 100644
--- a/lib/process-services-cloud/src/lib/process/start-process/start-process-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/process/start-process/start-process-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/editorjs-config.ts b/lib/process-services-cloud/src/lib/rich-text-editor/editorjs-config.ts
index a00537b308..0d1b78b609 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/editorjs-config.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/editorjs-config.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/index.ts b/lib/process-services-cloud/src/lib/rich-text-editor/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/index.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/mocks/rich-text-editor.mock.ts b/lib/process-services-cloud/src/lib/rich-text-editor/mocks/rich-text-editor.mock.ts
index 74b2d7343a..726055c906 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/mocks/rich-text-editor.mock.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/mocks/rich-text-editor.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/public-api.ts b/lib/process-services-cloud/src/lib/rich-text-editor/public-api.ts
index 706822231e..0df9c55faa 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/public-api.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.spec.ts b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.spec.ts
index 35dbfd9a3d..1883865c91 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.stories.ts b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.stories.ts
index 3035958ad3..40582e19a5 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.ts b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.ts
index f30b98e704..ea1406d470 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.module.ts b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.module.ts
index 814902cbe0..ab744c3317 100644
--- a/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.module.ts
+++ b/lib/process-services-cloud/src/lib/rich-text-editor/rich-text-editor.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/base-cloud.service.ts b/lib/process-services-cloud/src/lib/services/base-cloud.service.ts
index c951b432f5..ed0b4df920 100644
--- a/lib/process-services-cloud/src/lib/services/base-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/services/base-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/cloud-token.service.ts b/lib/process-services-cloud/src/lib/services/cloud-token.service.ts
index 086e99099e..0025f05e8f 100644
--- a/lib/process-services-cloud/src/lib/services/cloud-token.service.ts
+++ b/lib/process-services-cloud/src/lib/services/cloud-token.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/form-fields.interfaces.ts b/lib/process-services-cloud/src/lib/services/form-fields.interfaces.ts
index 361acd7e31..3969f01679 100644
--- a/lib/process-services-cloud/src/lib/services/form-fields.interfaces.ts
+++ b/lib/process-services-cloud/src/lib/services/form-fields.interfaces.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/local-preference-cloud.service.ts b/lib/process-services-cloud/src/lib/services/local-preference-cloud.service.ts
index a969d64a34..3d8fecbb4d 100644
--- a/lib/process-services-cloud/src/lib/services/local-preference-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/services/local-preference-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/notification-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/services/notification-cloud.service.spec.ts
index 20dc1072df..c7b5ee74e2 100644
--- a/lib/process-services-cloud/src/lib/services/notification-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/services/notification-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/notification-cloud.service.ts b/lib/process-services-cloud/src/lib/services/notification-cloud.service.ts
index de1ea29237..2978833a5c 100644
--- a/lib/process-services-cloud/src/lib/services/notification-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/services/notification-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/preference-cloud.interface.ts b/lib/process-services-cloud/src/lib/services/preference-cloud.interface.ts
index a5305fbed7..56ea33ddb8 100644
--- a/lib/process-services-cloud/src/lib/services/preference-cloud.interface.ts
+++ b/lib/process-services-cloud/src/lib/services/preference-cloud.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/public-api.ts b/lib/process-services-cloud/src/lib/services/public-api.ts
index 8c76bfbe9e..f8ea0a04d7 100644
--- a/lib/process-services-cloud/src/lib/services/public-api.ts
+++ b/lib/process-services-cloud/src/lib/services/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/task-list-cloud.service.interface.ts b/lib/process-services-cloud/src/lib/services/task-list-cloud.service.interface.ts
index 869d8eb30c..8f75f3c8e0 100644
--- a/lib/process-services-cloud/src/lib/services/task-list-cloud.service.interface.ts
+++ b/lib/process-services-cloud/src/lib/services/task-list-cloud.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.spec.ts
index 9ed21758a5..36cb6b4c8a 100644
--- a/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.ts b/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.ts
index ec633d52b5..46c6c28e6c 100644
--- a/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/services/user-preference-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.spec.ts b/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.spec.ts
index 83cd197c0d..06a7db5ad3 100644
--- a/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.spec.ts
+++ b/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.ts b/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.ts
index ce3d2bef32..1f3efc5bd5 100644
--- a/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.ts
+++ b/lib/process-services-cloud/src/lib/services/variable-mapper.sevice.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.spec.ts b/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.spec.ts
index e2eb3e7ba1..3d0dd028fb 100644
--- a/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.ts b/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.ts
index 2ea833d3ff..50b7fd9797 100644
--- a/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/claim-task-cloud.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.spec.ts b/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.spec.ts
index 6b4d53e3ec..10eb6bb469 100644
--- a/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.ts b/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.ts
index 4966a29801..d44042e11c 100644
--- a/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/complete-task.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/public-api.ts b/lib/process-services-cloud/src/lib/task/directives/public-api.ts
index bbf339e8d6..b7dd63a30d 100644
--- a/lib/process-services-cloud/src/lib/task/directives/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/task-directive.module.ts b/lib/process-services-cloud/src/lib/task/directives/task-directive.module.ts
index 632774f6a5..fec2553254 100644
--- a/lib/process-services-cloud/src/lib/task/directives/task-directive.module.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/task-directive.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.spec.ts b/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.spec.ts
index ea73b25afc..450038cbc0 100644
--- a/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.ts b/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.ts
index cee4a9e365..70d4d047c0 100644
--- a/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.ts
+++ b/lib/process-services-cloud/src/lib/task/directives/unclaim-task-cloud.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/mock/task-cloud.service.mock.ts b/lib/process-services-cloud/src/lib/task/mock/task-cloud.service.mock.ts
index 46e2888875..f4b4eb0d5e 100644
--- a/lib/process-services-cloud/src/lib/task/mock/task-cloud.service.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/mock/task-cloud.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/models/public-api.ts b/lib/process-services-cloud/src/lib/task/models/public-api.ts
index 4ed6cb71fb..50d7e9adae 100644
--- a/lib/process-services-cloud/src/lib/task/models/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/models/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/models/task.model.ts b/lib/process-services-cloud/src/lib/task/models/task.model.ts
index 900eb88635..4d39d54d31 100644
--- a/lib/process-services-cloud/src/lib/task/models/task.model.ts
+++ b/lib/process-services-cloud/src/lib/task/models/task.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/public-api.ts b/lib/process-services-cloud/src/lib/task/public-api.ts
index 45db0b98ca..f26febe164 100644
--- a/lib/process-services-cloud/src/lib/task/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/services/start-task-cloud.service.ts b/lib/process-services-cloud/src/lib/task/services/start-task-cloud.service.ts
index 6b1efade19..a6db9cfd3f 100644
--- a/lib/process-services-cloud/src/lib/task/services/start-task-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/task/services/start-task-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/services/task-cloud.service.interface.ts b/lib/process-services-cloud/src/lib/task/services/task-cloud.service.interface.ts
index 566c146649..9772a7e211 100644
--- a/lib/process-services-cloud/src/lib/task/services/task-cloud.service.interface.ts
+++ b/lib/process-services-cloud/src/lib/task/services/task-cloud.service.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/services/task-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/task/services/task-cloud.service.spec.ts
index bdac7f1bfd..deb003eae7 100644
--- a/lib/process-services-cloud/src/lib/task/services/task-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/services/task-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/services/task-cloud.service.ts b/lib/process-services-cloud/src/lib/task/services/task-cloud.service.ts
index b6faa7a786..aa1c17634f 100644
--- a/lib/process-services-cloud/src/lib/task/services/task-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/task/services/task-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.spec.ts
index b2081590d5..76a33cdce7 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.ts b/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.ts
index f8664bc451..dab14a92e5 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/components/start-task-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/mock/task-details.mock.ts b/lib/process-services-cloud/src/lib/task/start-task/mock/task-details.mock.ts
index 74529e9ecf..bf83927d83 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/mock/task-details.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/mock/task-details.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/mock/user-cloud.mock.ts b/lib/process-services-cloud/src/lib/task/start-task/mock/user-cloud.mock.ts
index b2e7ac3602..ede322a6c8 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/mock/user-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/mock/user-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/models/start-task-cloud-request.model.ts b/lib/process-services-cloud/src/lib/task/start-task/models/start-task-cloud-request.model.ts
index a457ea6127..7fb88287cc 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/models/start-task-cloud-request.model.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/models/start-task-cloud-request.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/models/task-details-cloud.model.ts b/lib/process-services-cloud/src/lib/task/start-task/models/task-details-cloud.model.ts
index ae2651e7d8..04cb8a2087 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/models/task-details-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/models/task-details-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/public-api.ts b/lib/process-services-cloud/src/lib/task/start-task/public-api.ts
index 36688622e8..459b1282aa 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/services/start-task-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/task/start-task/services/start-task-cloud.service.spec.ts
index 9aaf67d1b1..92e92b8fdc 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/services/start-task-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/services/start-task-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/start-task/start-task-cloud.module.ts b/lib/process-services-cloud/src/lib/task/start-task/start-task-cloud.module.ts
index 19e366c8fd..1460df4b7e 100644
--- a/lib/process-services-cloud/src/lib/task/start-task/start-task-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/task/start-task/start-task-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-cloud.module.ts b/lib/process-services-cloud/src/lib/task/task-cloud.module.ts
index cb2e48c10b..94e874e3e7 100644
--- a/lib/process-services-cloud/src/lib/task/task-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/task/task-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/base-task-filters-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/base-task-filters-cloud.component.ts
index 94403a5b3e..e47f3dcf52 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/base-task-filters-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/base-task-filters-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/base-edit-task-filter-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/base-edit-task-filter-cloud.component.ts
index a080d1350f..ccdc93e144 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/base-edit-task-filter-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/base-edit-task-filter-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.spec.ts
index c34664fe2c..2ad772f2ac 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.ts
index 90e70e0772..a2f59ff564 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.spec.ts
index 5273fb1a95..821714f1ce 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.ts
index 6f26d91499..608419d161 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/edit-task-filters/edit-task-filter-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.spec.ts
index ec96bcb610..7e896598a9 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.ts
index 51d8e8d657..1d320b4268 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/service-task-filters-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.spec.ts
index 99f4ca785d..2bf7695252 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.ts
index a1015403c0..e5963fbd4c 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.spec.ts
index b436367c7a..f8aceeda61 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.ts
index 6977e110bf..bf0e9217fc 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.spec.ts
index 045b61dcb2..847b9f6445 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.ts
index 185f9b58db..6b1cf8fa2f 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/components/task-filters-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/mock/edit-task-filter-cloud.mock.ts b/lib/process-services-cloud/src/lib/task/task-filters/mock/edit-task-filter-cloud.mock.ts
index 9b02864948..a8032d9ef4 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/mock/edit-task-filter-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/mock/edit-task-filter-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/mock/task-filters-cloud.mock.ts b/lib/process-services-cloud/src/lib/task/task-filters/mock/task-filters-cloud.mock.ts
index e03099d5cd..4298aa3bc6 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/mock/task-filters-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/mock/task-filters-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/models/filter-cloud.model.ts b/lib/process-services-cloud/src/lib/task/task-filters/models/filter-cloud.model.ts
index 05514ac0ae..31415490e8 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/models/filter-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/models/filter-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/public-api.ts b/lib/process-services-cloud/src/lib/task/task-filters/public-api.ts
index 6f4bcc1914..5c4b72810a 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/services/service-task-filter-cloud.service.ts b/lib/process-services-cloud/src/lib/task/task-filters/services/service-task-filter-cloud.service.ts
index 6381d2f83c..fb6e37c26b 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/services/service-task-filter-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/services/service-task-filter-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.spec.ts
index a72ff1d8a9..26315d88ed 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.ts b/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.ts
index de4768e16a..626a1e470d 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/services/task-filter-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-filters/task-filters-cloud.module.ts b/lib/process-services-cloud/src/lib/task/task-filters/task-filters-cloud.module.ts
index 3875eda7f7..03519c089f 100644
--- a/lib/process-services-cloud/src/lib/task/task-filters/task-filters-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/task/task-filters/task-filters-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.spec.ts
index 6a4e038621..2f64d6a679 100644
--- a/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.stories.ts
index 9700bb9040..1dc7587e7e 100644
--- a/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.ts
index a55cfc9ae3..f1242ec8dd 100644
--- a/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-form/components/task-form-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-form/public-api.ts b/lib/process-services-cloud/src/lib/task/task-form/public-api.ts
index 01ca90c2af..92e62b8204 100644
--- a/lib/process-services-cloud/src/lib/task/task-form/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/task-form/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-form/task-form.module.ts b/lib/process-services-cloud/src/lib/task/task-form/task-form.module.ts
index b79a2ac992..12cac8bc41 100644
--- a/lib/process-services-cloud/src/lib/task/task-form/task-form.module.ts
+++ b/lib/process-services-cloud/src/lib/task/task-form/task-form.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.spec.ts
index ee94d65f7e..42e13e0c20 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.stories.ts b/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.stories.ts
index 4679a257ad..33dd7f0d8d 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.stories.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.stories.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.ts
index 0f22f372ee..33b70f9ad3 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/components/task-header-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-claim-task.mock.ts b/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-claim-task.mock.ts
index 008b2daec1..08c93eea36 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-claim-task.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-claim-task.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-complete-task.mock.ts b/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-complete-task.mock.ts
index d2ca7df201..4c6694f4bb 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-complete-task.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-complete-task.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-task-details-response.mock.ts b/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-task-details-response.mock.ts
index 6f61403512..728fd3475e 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-task-details-response.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/mocks/fake-task-details-response.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/mocks/task-details-cloud.mock.ts b/lib/process-services-cloud/src/lib/task/task-header/mocks/task-details-cloud.mock.ts
index a37aad28d7..3ec21a7a58 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/mocks/task-details-cloud.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/mocks/task-details-cloud.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/public-api.ts b/lib/process-services-cloud/src/lib/task/task-header/public-api.ts
index 0be25b6c89..7e655d1012 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.spec.ts b/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.spec.ts
index a93e15d243..02b226ae5e 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.ts b/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.ts
index b6038eef08..6dcb94ff2e 100644
--- a/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/task/task-header/task-header-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/components/base-task-list-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-list/components/base-task-list-cloud.component.ts
index f2df079715..bcf69addcb 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/components/base-task-list-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/components/base-task-list-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.spec.ts
index 33a427218a..ad0ff466d9 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.ts
index 5a59567fcb..88654c5e32 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/components/service-task-list-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.spec.ts b/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.spec.ts
index ac65823303..67047fb4f4 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.ts b/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.ts
index 4c068c75fa..1a05d6faa9 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/components/task-list-cloud.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.spec.ts b/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.spec.ts
index e1b8fe0b62..d7717f4bc3 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.ts b/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.ts
index 2d1fadf2d7..ad32bb15f1 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/datatable/task-list-datatable-adapter.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/mock/fake-task-response.mock.ts b/lib/process-services-cloud/src/lib/task/task-list/mock/fake-task-response.mock.ts
index 731d793864..abff5bd8fa 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/mock/fake-task-response.mock.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/mock/fake-task-response.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/models/service-task-cloud.model.ts b/lib/process-services-cloud/src/lib/task/task-list/models/service-task-cloud.model.ts
index 498edbb9be..c4340d396c 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/models/service-task-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/models/service-task-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/models/task-cloud-view.model.ts b/lib/process-services-cloud/src/lib/task/task-list/models/task-cloud-view.model.ts
index ce5e396c36..9eff263a16 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/models/task-cloud-view.model.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/models/task-cloud-view.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/models/task-preset-cloud.model.ts b/lib/process-services-cloud/src/lib/task/task-list/models/task-preset-cloud.model.ts
index acb44eb7ec..8b49934749 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/models/task-preset-cloud.model.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/models/task-preset-cloud.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/models/tasks-cloud-preferences.ts b/lib/process-services-cloud/src/lib/task/task-list/models/tasks-cloud-preferences.ts
index cf23bcf9e9..79b69a1d6a 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/models/tasks-cloud-preferences.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/models/tasks-cloud-preferences.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/public-api.ts b/lib/process-services-cloud/src/lib/task/task-list/public-api.ts
index e3b1125b60..724d49a8c9 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/public-api.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.spec.ts
index 06e9c88aa6..60cbc97721 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.ts b/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.ts
index 7fce2d73ec..0157831085 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/services/service-task-list-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.spec.ts b/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.spec.ts
index 9a77d5ebba..2f3d901f5d 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.ts b/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.ts
index d5d9551bee..99573e3da2 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/services/task-list-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.spec.ts b/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.spec.ts
index 17059b8ba2..a083b31094 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.spec.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.ts b/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.ts
index 7af3d0a324..4d83c12330 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/task-list-cloud.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/task/task-list/testing/task-list.testing.module.ts b/lib/process-services-cloud/src/lib/task/task-list/testing/task-list.testing.module.ts
index 03164376f9..e0b93eb8fa 100644
--- a/lib/process-services-cloud/src/lib/task/task-list/testing/task-list.testing.module.ts
+++ b/lib/process-services-cloud/src/lib/task/task-list/testing/task-list.testing.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/testing/process-service-cloud.testing.module.ts b/lib/process-services-cloud/src/lib/testing/process-service-cloud.testing.module.ts
index 46e6f924b6..dbc4b35992 100644
--- a/lib/process-services-cloud/src/lib/testing/process-service-cloud.testing.module.ts
+++ b/lib/process-services-cloud/src/lib/testing/process-service-cloud.testing.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/testing/process-services-cloud-story.module.ts b/lib/process-services-cloud/src/lib/testing/process-services-cloud-story.module.ts
index 7548978969..a8edbaf744 100644
--- a/lib/process-services-cloud/src/lib/testing/process-services-cloud-story.module.ts
+++ b/lib/process-services-cloud/src/lib/testing/process-services-cloud-story.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/types.ts b/lib/process-services-cloud/src/lib/types.ts
index e3418a6d71..ba351bb1a2 100644
--- a/lib/process-services-cloud/src/lib/types.ts
+++ b/lib/process-services-cloud/src/lib/types.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/lib/validators/numeric-field.validator.ts b/lib/process-services-cloud/src/lib/validators/numeric-field.validator.ts
index 36f4e17645..4ef84fabdf 100644
--- a/lib/process-services-cloud/src/lib/validators/numeric-field.validator.ts
+++ b/lib/process-services-cloud/src/lib/validators/numeric-field.validator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/public-api.ts b/lib/process-services-cloud/src/public-api.ts
index 950750b0de..093cde6886 100644
--- a/lib/process-services-cloud/src/public-api.ts
+++ b/lib/process-services-cloud/src/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services-cloud/src/test.ts b/lib/process-services-cloud/src/test.ts
index db9112ed3a..5082681ab7 100644
--- a/lib/process-services-cloud/src/test.ts
+++ b/lib/process-services-cloud/src/test.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/.eslintrc.json b/lib/process-services/.eslintrc.json
index 03fbf7be3b..3992667c95 100644
--- a/lib/process-services/.eslintrc.json
+++ b/lib/process-services/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
diff --git a/lib/process-services/index.ts b/lib/process-services/index.ts
index eb9b46c8bc..7d18c6831c 100644
--- a/lib/process-services/index.ts
+++ b/lib/process-services/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/package.json b/lib/process-services/package.json
index f5b158ffa2..d457ef6635 100644
--- a/lib/process-services/package.json
+++ b/lib/process-services/package.json
@@ -2,7 +2,7 @@
"name": "@alfresco/adf-process-services",
"description": "Alfresco ADF process services",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/lib/process-services/src/lib/app-list/apps-list.component.spec.ts b/lib/process-services/src/lib/app-list/apps-list.component.spec.ts
index 022a6cc72c..8d958c67a5 100644
--- a/lib/process-services/src/lib/app-list/apps-list.component.spec.ts
+++ b/lib/process-services/src/lib/app-list/apps-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/apps-list.component.ts b/lib/process-services/src/lib/app-list/apps-list.component.ts
index c7918dc619..85514e700b 100644
--- a/lib/process-services/src/lib/app-list/apps-list.component.ts
+++ b/lib/process-services/src/lib/app-list/apps-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/apps-list.module.ts b/lib/process-services/src/lib/app-list/apps-list.module.ts
index ae41c9fa7b..2c009fb86e 100644
--- a/lib/process-services/src/lib/app-list/apps-list.module.ts
+++ b/lib/process-services/src/lib/app-list/apps-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/icon.model.ts b/lib/process-services/src/lib/app-list/icon.model.ts
index e391709ad7..4f20412f1d 100644
--- a/lib/process-services/src/lib/app-list/icon.model.ts
+++ b/lib/process-services/src/lib/app-list/icon.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/index.ts b/lib/process-services/src/lib/app-list/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/app-list/index.ts
+++ b/lib/process-services/src/lib/app-list/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/mocks/apps-service.mock.ts b/lib/process-services/src/lib/app-list/mocks/apps-service.mock.ts
index b3f4fa67cb..5b834e2beb 100644
--- a/lib/process-services/src/lib/app-list/mocks/apps-service.mock.ts
+++ b/lib/process-services/src/lib/app-list/mocks/apps-service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/public-api.ts b/lib/process-services/src/lib/app-list/public-api.ts
index d3501db2b0..3a5beb257b 100644
--- a/lib/process-services/src/lib/app-list/public-api.ts
+++ b/lib/process-services/src/lib/app-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/select-apps-dialog.component.spec.ts b/lib/process-services/src/lib/app-list/select-apps-dialog.component.spec.ts
index ba333b2ddc..593718089f 100644
--- a/lib/process-services/src/lib/app-list/select-apps-dialog.component.spec.ts
+++ b/lib/process-services/src/lib/app-list/select-apps-dialog.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/select-apps-dialog.component.ts b/lib/process-services/src/lib/app-list/select-apps-dialog.component.ts
index 5dc410779f..8ba6484899 100644
--- a/lib/process-services/src/lib/app-list/select-apps-dialog.component.ts
+++ b/lib/process-services/src/lib/app-list/select-apps-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/services/apps-process.service.spec.ts b/lib/process-services/src/lib/app-list/services/apps-process.service.spec.ts
index 32c67d1fb9..55944c2a6d 100644
--- a/lib/process-services/src/lib/app-list/services/apps-process.service.spec.ts
+++ b/lib/process-services/src/lib/app-list/services/apps-process.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/app-list/services/apps-process.service.ts b/lib/process-services/src/lib/app-list/services/apps-process.service.ts
index 2b070bd38b..6544f7153c 100644
--- a/lib/process-services/src/lib/app-list/services/apps-process.service.ts
+++ b/lib/process-services/src/lib/app-list/services/apps-process.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/attachment.module.ts b/lib/process-services/src/lib/attachment/attachment.module.ts
index 938debac08..dfef96552f 100644
--- a/lib/process-services/src/lib/attachment/attachment.module.ts
+++ b/lib/process-services/src/lib/attachment/attachment.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/create-process-attachment.component.spec.ts b/lib/process-services/src/lib/attachment/create-process-attachment.component.spec.ts
index 0470581773..9ee2ba8bc9 100644
--- a/lib/process-services/src/lib/attachment/create-process-attachment.component.spec.ts
+++ b/lib/process-services/src/lib/attachment/create-process-attachment.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/create-process-attachment.component.ts b/lib/process-services/src/lib/attachment/create-process-attachment.component.ts
index ec557dcc0e..31da62ab42 100644
--- a/lib/process-services/src/lib/attachment/create-process-attachment.component.ts
+++ b/lib/process-services/src/lib/attachment/create-process-attachment.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/create-task-attachment.component.spec.ts b/lib/process-services/src/lib/attachment/create-task-attachment.component.spec.ts
index dfc275619b..3254f1fecb 100644
--- a/lib/process-services/src/lib/attachment/create-task-attachment.component.spec.ts
+++ b/lib/process-services/src/lib/attachment/create-task-attachment.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/create-task-attachment.component.ts b/lib/process-services/src/lib/attachment/create-task-attachment.component.ts
index b7ea9a5e41..395d33691d 100644
--- a/lib/process-services/src/lib/attachment/create-task-attachment.component.ts
+++ b/lib/process-services/src/lib/attachment/create-task-attachment.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/index.ts b/lib/process-services/src/lib/attachment/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/attachment/index.ts
+++ b/lib/process-services/src/lib/attachment/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/process-attachment-list.component.spec.ts b/lib/process-services/src/lib/attachment/process-attachment-list.component.spec.ts
index e01351a06b..604b86ba62 100644
--- a/lib/process-services/src/lib/attachment/process-attachment-list.component.spec.ts
+++ b/lib/process-services/src/lib/attachment/process-attachment-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/process-attachment-list.component.ts b/lib/process-services/src/lib/attachment/process-attachment-list.component.ts
index 70465dc04b..199434c551 100644
--- a/lib/process-services/src/lib/attachment/process-attachment-list.component.ts
+++ b/lib/process-services/src/lib/attachment/process-attachment-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/public-api.ts b/lib/process-services/src/lib/attachment/public-api.ts
index 7e91d919c5..cf1cfe0ee4 100644
--- a/lib/process-services/src/lib/attachment/public-api.ts
+++ b/lib/process-services/src/lib/attachment/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/task-attachment-list.component.spec.ts b/lib/process-services/src/lib/attachment/task-attachment-list.component.spec.ts
index c22b7f390a..c891a2977a 100644
--- a/lib/process-services/src/lib/attachment/task-attachment-list.component.spec.ts
+++ b/lib/process-services/src/lib/attachment/task-attachment-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/attachment/task-attachment-list.component.ts b/lib/process-services/src/lib/attachment/task-attachment-list.component.ts
index fee4624913..c97d85c6df 100644
--- a/lib/process-services/src/lib/attachment/task-attachment-list.component.ts
+++ b/lib/process-services/src/lib/attachment/task-attachment-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/common/index.ts b/lib/process-services/src/lib/common/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/common/index.ts
+++ b/lib/process-services/src/lib/common/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/common/models/bpm-user.model.ts b/lib/process-services/src/lib/common/models/bpm-user.model.ts
index 62ad4ae448..808ef27682 100644
--- a/lib/process-services/src/lib/common/models/bpm-user.model.ts
+++ b/lib/process-services/src/lib/common/models/bpm-user.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/common/models/user-process.model.ts b/lib/process-services/src/lib/common/models/user-process.model.ts
index ced2f332ed..8454afefe6 100644
--- a/lib/process-services/src/lib/common/models/user-process.model.ts
+++ b/lib/process-services/src/lib/common/models/user-process.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/common/public-api.ts b/lib/process-services/src/lib/common/public-api.ts
index 828f187b96..948b091976 100644
--- a/lib/process-services/src/lib/common/public-api.ts
+++ b/lib/process-services/src/lib/common/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/common/services/people-process.service.spec.ts b/lib/process-services/src/lib/common/services/people-process.service.spec.ts
index 988d3d5ecf..7d33b87113 100644
--- a/lib/process-services/src/lib/common/services/people-process.service.spec.ts
+++ b/lib/process-services/src/lib/common/services/people-process.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/common/services/people-process.service.ts b/lib/process-services/src/lib/common/services/people-process.service.ts
index c1571b9c24..6e16766729 100644
--- a/lib/process-services/src/lib/common/services/people-process.service.ts
+++ b/lib/process-services/src/lib/common/services/people-process.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/events/validate-dynamic-table-row.event.ts b/lib/process-services/src/lib/form/events/validate-dynamic-table-row.event.ts
index 0332fefa50..c7bde7c572 100644
--- a/lib/process-services/src/lib/form/events/validate-dynamic-table-row.event.ts
+++ b/lib/process-services/src/lib/form/events/validate-dynamic-table-row.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/form-custom-outcomes.component.ts b/lib/process-services/src/lib/form/form-custom-outcomes.component.ts
index 0af452b08d..56bcb70cef 100644
--- a/lib/process-services/src/lib/form/form-custom-outcomes.component.ts
+++ b/lib/process-services/src/lib/form/form-custom-outcomes.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/form-list/form-list.component.spec.ts b/lib/process-services/src/lib/form/form-list/form-list.component.spec.ts
index 0d526e5456..04788982af 100644
--- a/lib/process-services/src/lib/form/form-list/form-list.component.spec.ts
+++ b/lib/process-services/src/lib/form/form-list/form-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/form-list/form-list.component.ts b/lib/process-services/src/lib/form/form-list/form-list.component.ts
index 8d342aee97..858bc01a3e 100644
--- a/lib/process-services/src/lib/form/form-list/form-list.component.ts
+++ b/lib/process-services/src/lib/form/form-list/form-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/form.component.spec.ts b/lib/process-services/src/lib/form/form.component.spec.ts
index 5db230e899..ed13cb6110 100644
--- a/lib/process-services/src/lib/form/form.component.spec.ts
+++ b/lib/process-services/src/lib/form/form.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/form.component.ts b/lib/process-services/src/lib/form/form.component.ts
index 7ca6b7282d..023930e5a1 100644
--- a/lib/process-services/src/lib/form/form.component.ts
+++ b/lib/process-services/src/lib/form/form.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/form.component.visibility.spec.ts b/lib/process-services/src/lib/form/form.component.visibility.spec.ts
index 6e2d62c860..93e13f6c89 100644
--- a/lib/process-services/src/lib/form/form.component.visibility.spec.ts
+++ b/lib/process-services/src/lib/form/form.component.visibility.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/form.module.ts b/lib/process-services/src/lib/form/form.module.ts
index d071fd3dca..705b2c8fac 100644
--- a/lib/process-services/src/lib/form/form.module.ts
+++ b/lib/process-services/src/lib/form/form.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/index.ts b/lib/process-services/src/lib/form/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/form/index.ts
+++ b/lib/process-services/src/lib/form/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/model/form-definition.model.ts b/lib/process-services/src/lib/form/model/form-definition.model.ts
index 7d530be43a..080288afe1 100644
--- a/lib/process-services/src/lib/form/model/form-definition.model.ts
+++ b/lib/process-services/src/lib/form/model/form-definition.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/process-form-rendering.service.spec.ts b/lib/process-services/src/lib/form/process-form-rendering.service.spec.ts
index 69a6e5e300..086d45ee60 100644
--- a/lib/process-services/src/lib/form/process-form-rendering.service.spec.ts
+++ b/lib/process-services/src/lib/form/process-form-rendering.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/process-form-rendering.service.ts b/lib/process-services/src/lib/form/process-form-rendering.service.ts
index 2e401553bb..4e3287b826 100644
--- a/lib/process-services/src/lib/form/process-form-rendering.service.ts
+++ b/lib/process-services/src/lib/form/process-form-rendering.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/public-api.ts b/lib/process-services/src/lib/form/public-api.ts
index c1925427ad..192e9def5e 100644
--- a/lib/process-services/src/lib/form/public-api.ts
+++ b/lib/process-services/src/lib/form/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/activiti-alfresco.service.ts b/lib/process-services/src/lib/form/services/activiti-alfresco.service.ts
index 62c64e5799..38bbe22891 100644
--- a/lib/process-services/src/lib/form/services/activiti-alfresco.service.ts
+++ b/lib/process-services/src/lib/form/services/activiti-alfresco.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/ecm-model.service.spec.ts b/lib/process-services/src/lib/form/services/ecm-model.service.spec.ts
index 2ee0fd9f87..0ce2a67c1e 100644
--- a/lib/process-services/src/lib/form/services/ecm-model.service.spec.ts
+++ b/lib/process-services/src/lib/form/services/ecm-model.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/ecm-model.service.ts b/lib/process-services/src/lib/form/services/ecm-model.service.ts
index 79ca970745..fd44f81cc7 100644
--- a/lib/process-services/src/lib/form/services/ecm-model.service.ts
+++ b/lib/process-services/src/lib/form/services/ecm-model.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/editor.service.ts b/lib/process-services/src/lib/form/services/editor.service.ts
index be7a8b3cdf..c89e4cbae6 100644
--- a/lib/process-services/src/lib/form/services/editor.service.ts
+++ b/lib/process-services/src/lib/form/services/editor.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/external-alfresco-api.service.ts b/lib/process-services/src/lib/form/services/external-alfresco-api.service.ts
index 65e224daf1..a4c3353bf4 100644
--- a/lib/process-services/src/lib/form/services/external-alfresco-api.service.ts
+++ b/lib/process-services/src/lib/form/services/external-alfresco-api.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/model.service.ts b/lib/process-services/src/lib/form/services/model.service.ts
index 5b8f440800..0875912abf 100644
--- a/lib/process-services/src/lib/form/services/model.service.ts
+++ b/lib/process-services/src/lib/form/services/model.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/process-content.service.spec.ts b/lib/process-services/src/lib/form/services/process-content.service.spec.ts
index cb98766004..808074a758 100644
--- a/lib/process-services/src/lib/form/services/process-content.service.spec.ts
+++ b/lib/process-services/src/lib/form/services/process-content.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/process-content.service.ts b/lib/process-services/src/lib/form/services/process-content.service.ts
index 4023fdbe95..b2504d6c5f 100644
--- a/lib/process-services/src/lib/form/services/process-content.service.ts
+++ b/lib/process-services/src/lib/form/services/process-content.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/process-definition.service.ts b/lib/process-services/src/lib/form/services/process-definition.service.ts
index 73c4973776..44b4cda1ee 100644
--- a/lib/process-services/src/lib/form/services/process-definition.service.ts
+++ b/lib/process-services/src/lib/form/services/process-definition.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/task-form.service.ts b/lib/process-services/src/lib/form/services/task-form.service.ts
index ca215ddf2d..fc96a2964a 100644
--- a/lib/process-services/src/lib/form/services/task-form.service.ts
+++ b/lib/process-services/src/lib/form/services/task-form.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/services/task.service.ts b/lib/process-services/src/lib/form/services/task.service.ts
index 2738239e13..abf4ef7732 100644
--- a/lib/process-services/src/lib/form/services/task.service.ts
+++ b/lib/process-services/src/lib/form/services/task.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/start-form.component.mock.ts b/lib/process-services/src/lib/form/start-form.component.mock.ts
index 78e9684ac7..aeaf81e9fa 100644
--- a/lib/process-services/src/lib/form/start-form.component.mock.ts
+++ b/lib/process-services/src/lib/form/start-form.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/start-form.component.spec.ts b/lib/process-services/src/lib/form/start-form.component.spec.ts
index a5c90a6fdc..cb735496cf 100644
--- a/lib/process-services/src/lib/form/start-form.component.spec.ts
+++ b/lib/process-services/src/lib/form/start-form.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/start-form.component.ts b/lib/process-services/src/lib/form/start-form.component.ts
index 98b8b9250b..f086e8fd2f 100644
--- a/lib/process-services/src/lib/form/start-form.component.ts
+++ b/lib/process-services/src/lib/form/start-form.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog-component.interface.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog-component.interface.ts
index 110ff61449..201389ae46 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog-component.interface.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog-component.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.spec.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.spec.ts
index eec86c8a6d..e19a80f86e 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.ts
index 61b6786dcd..fe2eb65b69 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.spec.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.spec.ts
index 94e6172718..f6b0ad8164 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.ts
index 3137492058..b613ba7e0b 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget-dialog.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.spec.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.spec.ts
index 29e68001bc..e04aabc72d 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.ts
index f34aef57e5..0473d03912 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-file-widget.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.spec.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.spec.ts
index 8fa6b61025..e09c0ee527 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.ts b/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.ts
index 4ecf02ac88..114780864c 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/attach-folder-widget.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/content-widget.module.ts b/lib/process-services/src/lib/form/widgets/content-widget/content-widget.module.ts
index 15665211a2..4a4fa29c6b 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/content-widget.module.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/content-widget.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/index.ts b/lib/process-services/src/lib/form/widgets/content-widget/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/index.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/content-widget/public-api.ts b/lib/process-services/src/lib/form/widgets/content-widget/public-api.ts
index 245912ac85..0a767ddd46 100644
--- a/lib/process-services/src/lib/form/widgets/content-widget/public-api.ts
+++ b/lib/process-services/src/lib/form/widgets/content-widget/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/document/content.widget.spec.ts b/lib/process-services/src/lib/form/widgets/document/content.widget.spec.ts
index 32bf030e91..9532beeb9b 100644
--- a/lib/process-services/src/lib/form/widgets/document/content.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/document/content.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/document/content.widget.ts b/lib/process-services/src/lib/form/widgets/document/content.widget.ts
index f04dc26658..06971622db 100644
--- a/lib/process-services/src/lib/form/widgets/document/content.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/document/content.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/document/document.widget.ts b/lib/process-services/src/lib/form/widgets/document/document.widget.ts
index 82847b34ae..ccb05dedbe 100644
--- a/lib/process-services/src/lib/form/widgets/document/document.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/document/document.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.spec.ts b/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.spec.ts
index a0a4021e37..149bdf3a1f 100644
--- a/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.ts b/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.ts
index b15dfef870..8063011599 100644
--- a/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/dropdown/dropdown.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.module.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.module.ts
index cd7f713623..9ae13d4ed5 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.module.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.spec.ts
index ec01146c8e..da4c55196b 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.ts
index 326f3cf052..a61cd486cd 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/dynamic-table.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.spec.ts
index a8d9c4ab34..b79e07147f 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.ts
index c39e47708a..24ce5c4c3b 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/amount/amount.editor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.spec.ts
index 3f5182e396..d0c1e7aeae 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.ts
index 2dc366274c..e05e44b340 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/boolean/boolean.editor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.spec.ts
index fda906f647..1394f2aa50 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.ts
index 540e18a52e..bab44de4d7 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/date/date.editor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.spec.ts
index de6a973cf7..2c0be34dfb 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.ts
index 9cf19649dc..3848a2ce68 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/datetime/datetime.editor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.spec.ts
index c8a69f7643..63a61dea54 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.ts
index 8e81b88903..e7652d9370 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/dropdown/dropdown.editor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/cell-validator.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/cell-validator.model.ts
index f5d770ab8d..c702cb3919 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/cell-validator.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/cell-validator.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/date-cell-validator-model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/date-cell-validator-model.ts
index 0e035899a8..cd2219fb29 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/date-cell-validator-model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/date-cell-validator-model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-row-validation-summary.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-row-validation-summary.model.ts
index 2dfd8265b3..18bd0bd43a 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-row-validation-summary.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-row-validation-summary.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column-option.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column-option.model.ts
index 4aab2485e3..33fa50da2b 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column-option.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column-option.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column.model.ts
index 3e28e981bd..1478de9d73 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-column.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-row.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-row.model.ts
index 97f84d23f8..584e9e23d8 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-row.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table-row.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table.widget.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table.widget.model.ts
index 82e701f2ac..d3280abef3 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table.widget.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/dynamic-table.widget.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/number-cell-validator.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/number-cell-validator.model.ts
index eff49ba4eb..f90b5db58e 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/number-cell-validator.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/number-cell-validator.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/required-cell-validator.model.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/required-cell-validator.model.ts
index cd0a2f3a56..5ba1138410 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/required-cell-validator.model.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/models/required-cell-validator.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.spec.ts
index 5fa1162208..7880c61295 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.ts
index ae79b7bcbd..95b07cde1f 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/row-editor/row.editor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.spec.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.spec.ts
index bf61871c5a..3042181f27 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.ts
index a31ae69c71..bf018e44ac 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/editors/text/text.editor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/index.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/index.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/dynamic-table/public-api.ts b/lib/process-services/src/lib/form/widgets/dynamic-table/public-api.ts
index 6f38864d71..34b82f3c68 100644
--- a/lib/process-services/src/lib/form/widgets/dynamic-table/public-api.ts
+++ b/lib/process-services/src/lib/form/widgets/dynamic-table/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.spec.ts b/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.spec.ts
index b05ab7bef4..a56baa1857 100644
--- a/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.ts b/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.ts
index 4205cad20d..ea1d6ce41b 100644
--- a/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/file-viewer/file-viewer.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.spec.ts b/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.spec.ts
index 4b225b2443..495cb3a2b1 100644
--- a/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.ts b/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.ts
index 5e812fab9e..b6a1ea551a 100644
--- a/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/functional-group/functional-group.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/index.ts b/lib/process-services/src/lib/form/widgets/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/form/widgets/index.ts
+++ b/lib/process-services/src/lib/form/widgets/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/people/people.widget.spec.ts b/lib/process-services/src/lib/form/widgets/people/people.widget.spec.ts
index 6457e2589c..b354f6d73e 100644
--- a/lib/process-services/src/lib/form/widgets/people/people.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/people/people.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/people/people.widget.ts b/lib/process-services/src/lib/form/widgets/people/people.widget.ts
index e2995aa3ba..ab4c77b435 100644
--- a/lib/process-services/src/lib/form/widgets/people/people.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/people/people.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/public-api.ts b/lib/process-services/src/lib/form/widgets/public-api.ts
index bbf4e1cd25..40949ef14e 100644
--- a/lib/process-services/src/lib/form/widgets/public-api.ts
+++ b/lib/process-services/src/lib/form/widgets/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.spec.ts b/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.spec.ts
index 5c586e6e86..7472eb9dbe 100644
--- a/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.ts b/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.ts
index 84aa968618..691543425d 100644
--- a/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/radio-buttons/radio-buttons.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.spec.ts b/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.spec.ts
index 50963a7356..8a5f5a7004 100644
--- a/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.ts b/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.ts
index 875614f6df..f196af7928 100644
--- a/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/typeahead/typeahead.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/upload/upload.widget.spec.ts b/lib/process-services/src/lib/form/widgets/upload/upload.widget.spec.ts
index 14c193961c..39e8e1d841 100644
--- a/lib/process-services/src/lib/form/widgets/upload/upload.widget.spec.ts
+++ b/lib/process-services/src/lib/form/widgets/upload/upload.widget.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/form/widgets/upload/upload.widget.ts b/lib/process-services/src/lib/form/widgets/upload/upload.widget.ts
index 25c61afa19..9feab22ccb 100644
--- a/lib/process-services/src/lib/form/widgets/upload/upload.widget.ts
+++ b/lib/process-services/src/lib/form/widgets/upload/upload.widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/material.module.ts b/lib/process-services/src/lib/material.module.ts
index 244816ab51..5e6debbd00 100644
--- a/lib/process-services/src/lib/material.module.ts
+++ b/lib/process-services/src/lib/material.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/apps-list.mock.ts b/lib/process-services/src/lib/mock/apps-list.mock.ts
index 95bb9820dd..c86e13697f 100644
--- a/lib/process-services/src/lib/mock/apps-list.mock.ts
+++ b/lib/process-services/src/lib/mock/apps-list.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/index.ts b/lib/process-services/src/lib/mock/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/mock/index.ts
+++ b/lib/process-services/src/lib/mock/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/process/process-attachments.mock.ts b/lib/process-services/src/lib/mock/process/process-attachments.mock.ts
index 6b86ce7cd8..794a030961 100644
--- a/lib/process-services/src/lib/mock/process/process-attachments.mock.ts
+++ b/lib/process-services/src/lib/mock/process/process-attachments.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/process/process-comments.mock.ts b/lib/process-services/src/lib/mock/process/process-comments.mock.ts
index 80384bea16..62c2dd0e19 100644
--- a/lib/process-services/src/lib/mock/process/process-comments.mock.ts
+++ b/lib/process-services/src/lib/mock/process/process-comments.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/process/process-filters.mock.ts b/lib/process-services/src/lib/mock/process/process-filters.mock.ts
index 166750bd9c..a7c3562e72 100644
--- a/lib/process-services/src/lib/mock/process/process-filters.mock.ts
+++ b/lib/process-services/src/lib/mock/process/process-filters.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/process/process-instances-list.mock.ts b/lib/process-services/src/lib/mock/process/process-instances-list.mock.ts
index b64b19f698..95b2216541 100644
--- a/lib/process-services/src/lib/mock/process/process-instances-list.mock.ts
+++ b/lib/process-services/src/lib/mock/process/process-instances-list.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/process/process.model.mock.ts b/lib/process-services/src/lib/mock/process/process.model.mock.ts
index 45c97ddacc..671f85dd5a 100644
--- a/lib/process-services/src/lib/mock/process/process.model.mock.ts
+++ b/lib/process-services/src/lib/mock/process/process.model.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/process/process.service.mock.ts b/lib/process-services/src/lib/mock/process/process.service.mock.ts
index ba4ff1e58f..cec0e2e2e2 100644
--- a/lib/process-services/src/lib/mock/process/process.service.mock.ts
+++ b/lib/process-services/src/lib/mock/process/process.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/process/start-process.component.mock.ts b/lib/process-services/src/lib/mock/process/start-process.component.mock.ts
index 5f494a93f9..f636d79868 100644
--- a/lib/process-services/src/lib/mock/process/start-process.component.mock.ts
+++ b/lib/process-services/src/lib/mock/process/start-process.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/public-api.ts b/lib/process-services/src/lib/mock/public-api.ts
index c3c406af86..b2a578a82f 100644
--- a/lib/process-services/src/lib/mock/public-api.ts
+++ b/lib/process-services/src/lib/mock/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/task/start-task.mock.ts b/lib/process-services/src/lib/mock/task/start-task.mock.ts
index 5a65c7be84..6c18bd367b 100644
--- a/lib/process-services/src/lib/mock/task/start-task.mock.ts
+++ b/lib/process-services/src/lib/mock/task/start-task.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/task/task-attachments.mock.ts b/lib/process-services/src/lib/mock/task/task-attachments.mock.ts
index d15c26baa6..9036b22d0b 100644
--- a/lib/process-services/src/lib/mock/task/task-attachments.mock.ts
+++ b/lib/process-services/src/lib/mock/task/task-attachments.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/task/task-details.component.mock.ts b/lib/process-services/src/lib/mock/task/task-details.component.mock.ts
index 3bc4d5aedf..54d4b0aade 100644
--- a/lib/process-services/src/lib/mock/task/task-details.component.mock.ts
+++ b/lib/process-services/src/lib/mock/task/task-details.component.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/task/task-details.mock.ts b/lib/process-services/src/lib/mock/task/task-details.mock.ts
index dfef747dc9..f642c42541 100644
--- a/lib/process-services/src/lib/mock/task/task-details.mock.ts
+++ b/lib/process-services/src/lib/mock/task/task-details.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/task/task-filters.mock.ts b/lib/process-services/src/lib/mock/task/task-filters.mock.ts
index e0c8c8abbd..8430a72ff3 100644
--- a/lib/process-services/src/lib/mock/task/task-filters.mock.ts
+++ b/lib/process-services/src/lib/mock/task/task-filters.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/task/task-list.mock.ts b/lib/process-services/src/lib/mock/task/task-list.mock.ts
index 139fd5c80d..af07ac9ede 100644
--- a/lib/process-services/src/lib/mock/task/task-list.mock.ts
+++ b/lib/process-services/src/lib/mock/task/task-list.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/mock/task/tasklist-service.mock.ts b/lib/process-services/src/lib/mock/task/tasklist-service.mock.ts
index e6dc526451..68dc6c6997 100644
--- a/lib/process-services/src/lib/mock/task/tasklist-service.mock.ts
+++ b/lib/process-services/src/lib/mock/task/tasklist-service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-list/people-list.component.spec.ts b/lib/process-services/src/lib/people/components/people-list/people-list.component.spec.ts
index 5faf566ef5..f7b7345a6c 100644
--- a/lib/process-services/src/lib/people/components/people-list/people-list.component.spec.ts
+++ b/lib/process-services/src/lib/people/components/people-list/people-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-list/people-list.component.ts b/lib/process-services/src/lib/people/components/people-list/people-list.component.ts
index 75762522a3..3718b19fc0 100644
--- a/lib/process-services/src/lib/people/components/people-list/people-list.component.ts
+++ b/lib/process-services/src/lib/people/components/people-list/people-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.spec.ts b/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.spec.ts
index 110f0d283c..e8d8fd3f0b 100644
--- a/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.spec.ts
+++ b/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.ts b/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.ts
index c7486e121b..383369862b 100644
--- a/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.ts
+++ b/lib/process-services/src/lib/people/components/people-search-field/people-search-field.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-search/people-search.component.spec.ts b/lib/process-services/src/lib/people/components/people-search/people-search.component.spec.ts
index 5f5777b9f4..0547ff7a51 100644
--- a/lib/process-services/src/lib/people/components/people-search/people-search.component.spec.ts
+++ b/lib/process-services/src/lib/people/components/people-search/people-search.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-search/people-search.component.ts b/lib/process-services/src/lib/people/components/people-search/people-search.component.ts
index 4ad62e9adc..dbb8416d7e 100644
--- a/lib/process-services/src/lib/people/components/people-search/people-search.component.ts
+++ b/lib/process-services/src/lib/people/components/people-search/people-search.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-selector/people-selector.component.spec.ts b/lib/process-services/src/lib/people/components/people-selector/people-selector.component.spec.ts
index dc1909be99..42fa2acdb5 100644
--- a/lib/process-services/src/lib/people/components/people-selector/people-selector.component.spec.ts
+++ b/lib/process-services/src/lib/people/components/people-selector/people-selector.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people-selector/people-selector.component.ts b/lib/process-services/src/lib/people/components/people-selector/people-selector.component.ts
index fbae6c64e0..f46e1a256b 100644
--- a/lib/process-services/src/lib/people/components/people-selector/people-selector.component.ts
+++ b/lib/process-services/src/lib/people/components/people-selector/people-selector.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people/people.component.spec.ts b/lib/process-services/src/lib/people/components/people/people.component.spec.ts
index 719f761f2a..1c27b818b2 100644
--- a/lib/process-services/src/lib/people/components/people/people.component.spec.ts
+++ b/lib/process-services/src/lib/people/components/people/people.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/components/people/people.component.ts b/lib/process-services/src/lib/people/components/people/people.component.ts
index c11b5d51e0..70cd683129 100644
--- a/lib/process-services/src/lib/people/components/people/people.component.ts
+++ b/lib/process-services/src/lib/people/components/people/people.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/directives/people-search-action-label.directive.ts b/lib/process-services/src/lib/people/directives/people-search-action-label.directive.ts
index fa52efb1cc..787b1860e9 100644
--- a/lib/process-services/src/lib/people/directives/people-search-action-label.directive.ts
+++ b/lib/process-services/src/lib/people/directives/people-search-action-label.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/directives/people-search-title.directive.ts b/lib/process-services/src/lib/people/directives/people-search-title.directive.ts
index 41d8c51f8c..34c2384ab3 100644
--- a/lib/process-services/src/lib/people/directives/people-search-title.directive.ts
+++ b/lib/process-services/src/lib/people/directives/people-search-title.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/helpers/get-display-user.ts b/lib/process-services/src/lib/people/helpers/get-display-user.ts
index f8ab01ad4f..0814e861fd 100644
--- a/lib/process-services/src/lib/people/helpers/get-display-user.ts
+++ b/lib/process-services/src/lib/people/helpers/get-display-user.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/index.ts b/lib/process-services/src/lib/people/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/people/index.ts
+++ b/lib/process-services/src/lib/people/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/interfaces/perform-search-callback.interface.ts b/lib/process-services/src/lib/people/interfaces/perform-search-callback.interface.ts
index 5c420b4b35..36f5499256 100644
--- a/lib/process-services/src/lib/people/interfaces/perform-search-callback.interface.ts
+++ b/lib/process-services/src/lib/people/interfaces/perform-search-callback.interface.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/people.module.ts b/lib/process-services/src/lib/people/people.module.ts
index 00d81c0b87..9231a98328 100644
--- a/lib/process-services/src/lib/people/people.module.ts
+++ b/lib/process-services/src/lib/people/people.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/people/public-api.ts b/lib/process-services/src/lib/people/public-api.ts
index 2fccec700b..da3d6777c8 100644
--- a/lib/process-services/src/lib/people/public-api.ts
+++ b/lib/process-services/src/lib/people/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/pipes/process-name.pipe.spec.ts b/lib/process-services/src/lib/pipes/process-name.pipe.spec.ts
index 7a24140edc..a1f623cc68 100644
--- a/lib/process-services/src/lib/pipes/process-name.pipe.spec.ts
+++ b/lib/process-services/src/lib/pipes/process-name.pipe.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/pipes/process-name.pipe.ts b/lib/process-services/src/lib/pipes/process-name.pipe.ts
index c30ad3c267..762fb6716e 100644
--- a/lib/process-services/src/lib/pipes/process-name.pipe.ts
+++ b/lib/process-services/src/lib/pipes/process-name.pipe.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/pipes/process-services-pipe.module.ts b/lib/process-services/src/lib/pipes/process-services-pipe.module.ts
index e62ef269d4..6e1afd22ec 100644
--- a/lib/process-services/src/lib/pipes/process-services-pipe.module.ts
+++ b/lib/process-services/src/lib/pipes/process-services-pipe.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/index.ts b/lib/process-services/src/lib/process-comments/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/process-comments/index.ts
+++ b/lib/process-services/src/lib/process-comments/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/mock/comment-process-service.mock.ts b/lib/process-services/src/lib/process-comments/mock/comment-process-service.mock.ts
index ae0590c801..4fa80f4a99 100644
--- a/lib/process-services/src/lib/process-comments/mock/comment-process-service.mock.ts
+++ b/lib/process-services/src/lib/process-comments/mock/comment-process-service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/mock/comment-process.mock.ts b/lib/process-services/src/lib/process-comments/mock/comment-process.mock.ts
index d8722a6f9e..6ba7b188a4 100644
--- a/lib/process-services/src/lib/process-comments/mock/comment-process.mock.ts
+++ b/lib/process-services/src/lib/process-comments/mock/comment-process.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/process-comments.component.spec.ts b/lib/process-services/src/lib/process-comments/process-comments.component.spec.ts
index 2de5f07f98..b8e89c7bba 100644
--- a/lib/process-services/src/lib/process-comments/process-comments.component.spec.ts
+++ b/lib/process-services/src/lib/process-comments/process-comments.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/process-comments.component.ts b/lib/process-services/src/lib/process-comments/process-comments.component.ts
index 6e300c94f7..3c5e9acef1 100644
--- a/lib/process-services/src/lib/process-comments/process-comments.component.ts
+++ b/lib/process-services/src/lib/process-comments/process-comments.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/process-comments.module.ts b/lib/process-services/src/lib/process-comments/process-comments.module.ts
index bdfed73c02..0b4bc43c3d 100644
--- a/lib/process-services/src/lib/process-comments/process-comments.module.ts
+++ b/lib/process-services/src/lib/process-comments/process-comments.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/public-api.ts b/lib/process-services/src/lib/process-comments/public-api.ts
index 861ae40054..030d811df0 100644
--- a/lib/process-services/src/lib/process-comments/public-api.ts
+++ b/lib/process-services/src/lib/process-comments/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-comments/services/comment-process.service.ts b/lib/process-services/src/lib/process-comments/services/comment-process.service.ts
index 568ae39558..a155d2e9b8 100644
--- a/lib/process-services/src/lib/process-comments/services/comment-process.service.ts
+++ b/lib/process-services/src/lib/process-comments/services/comment-process.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-audit.directive.spec.ts b/lib/process-services/src/lib/process-list/components/process-audit.directive.spec.ts
index 14a7f2928e..f6af1fc065 100644
--- a/lib/process-services/src/lib/process-list/components/process-audit.directive.spec.ts
+++ b/lib/process-services/src/lib/process-list/components/process-audit.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-audit.directive.ts b/lib/process-services/src/lib/process-list/components/process-audit.directive.ts
index a40fb64a88..2f657a947d 100644
--- a/lib/process-services/src/lib/process-list/components/process-audit.directive.ts
+++ b/lib/process-services/src/lib/process-list/components/process-audit.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-filters.component.spec.ts b/lib/process-services/src/lib/process-list/components/process-filters.component.spec.ts
index 62c58d5c47..92a28a069b 100644
--- a/lib/process-services/src/lib/process-list/components/process-filters.component.spec.ts
+++ b/lib/process-services/src/lib/process-list/components/process-filters.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-filters.component.ts b/lib/process-services/src/lib/process-list/components/process-filters.component.ts
index 15dcb2696e..522123b5c3 100644
--- a/lib/process-services/src/lib/process-list/components/process-filters.component.ts
+++ b/lib/process-services/src/lib/process-list/components/process-filters.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-instance-details.component.spec.ts b/lib/process-services/src/lib/process-list/components/process-instance-details.component.spec.ts
index 4d9ff6fcaa..6fadd5f6e9 100644
--- a/lib/process-services/src/lib/process-list/components/process-instance-details.component.spec.ts
+++ b/lib/process-services/src/lib/process-list/components/process-instance-details.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-instance-details.component.ts b/lib/process-services/src/lib/process-list/components/process-instance-details.component.ts
index 69bbbaef6f..f251c16af0 100644
--- a/lib/process-services/src/lib/process-list/components/process-instance-details.component.ts
+++ b/lib/process-services/src/lib/process-list/components/process-instance-details.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-instance-header.component.spec.ts b/lib/process-services/src/lib/process-list/components/process-instance-header.component.spec.ts
index f5bf8cc6e1..9c56b6aea7 100644
--- a/lib/process-services/src/lib/process-list/components/process-instance-header.component.spec.ts
+++ b/lib/process-services/src/lib/process-list/components/process-instance-header.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-instance-header.component.ts b/lib/process-services/src/lib/process-list/components/process-instance-header.component.ts
index 4dddb18705..41773c455c 100644
--- a/lib/process-services/src/lib/process-list/components/process-instance-header.component.ts
+++ b/lib/process-services/src/lib/process-list/components/process-instance-header.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.spec.ts b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.spec.ts
index 693a555e1e..a6e81a84ff 100644
--- a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.spec.ts
+++ b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.ts b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.ts
index cb5943407c..2f738c31b8 100644
--- a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.ts
+++ b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-list.component.spec.ts b/lib/process-services/src/lib/process-list/components/process-list.component.spec.ts
index db1523a608..919b28aded 100644
--- a/lib/process-services/src/lib/process-list/components/process-list.component.spec.ts
+++ b/lib/process-services/src/lib/process-list/components/process-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/process-list.component.ts b/lib/process-services/src/lib/process-list/components/process-list.component.ts
index 8b61efc3b1..56e9e75ea4 100644
--- a/lib/process-services/src/lib/process-list/components/process-list.component.ts
+++ b/lib/process-services/src/lib/process-list/components/process-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/start-process.component.spec.ts b/lib/process-services/src/lib/process-list/components/start-process.component.spec.ts
index 44c68854d1..36233f3f0d 100644
--- a/lib/process-services/src/lib/process-list/components/start-process.component.spec.ts
+++ b/lib/process-services/src/lib/process-list/components/start-process.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/components/start-process.component.ts b/lib/process-services/src/lib/process-list/components/start-process.component.ts
index b2c6495084..67ba0c185c 100644
--- a/lib/process-services/src/lib/process-list/components/start-process.component.ts
+++ b/lib/process-services/src/lib/process-list/components/start-process.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/index.ts b/lib/process-services/src/lib/process-list/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/process-list/index.ts
+++ b/lib/process-services/src/lib/process-list/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/models/filter-process.model.ts b/lib/process-services/src/lib/process-list/models/filter-process.model.ts
index 902d68d108..96f32df63b 100644
--- a/lib/process-services/src/lib/process-list/models/filter-process.model.ts
+++ b/lib/process-services/src/lib/process-list/models/filter-process.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/models/process-definition.model.ts b/lib/process-services/src/lib/process-list/models/process-definition.model.ts
index 700065c803..d114043042 100644
--- a/lib/process-services/src/lib/process-list/models/process-definition.model.ts
+++ b/lib/process-services/src/lib/process-list/models/process-definition.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/models/process-instance-filter.model.ts b/lib/process-services/src/lib/process-list/models/process-instance-filter.model.ts
index eb9cf0db23..57561ba616 100644
--- a/lib/process-services/src/lib/process-list/models/process-instance-filter.model.ts
+++ b/lib/process-services/src/lib/process-list/models/process-instance-filter.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/models/process-instance-variable.model.ts b/lib/process-services/src/lib/process-list/models/process-instance-variable.model.ts
index ca8400cff4..f1d2a54a01 100644
--- a/lib/process-services/src/lib/process-list/models/process-instance-variable.model.ts
+++ b/lib/process-services/src/lib/process-list/models/process-instance-variable.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/models/process-instance.model.ts b/lib/process-services/src/lib/process-list/models/process-instance.model.ts
index d9c7a893fa..ca69645ce0 100644
--- a/lib/process-services/src/lib/process-list/models/process-instance.model.ts
+++ b/lib/process-services/src/lib/process-list/models/process-instance.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/models/process-list.model.ts b/lib/process-services/src/lib/process-list/models/process-list.model.ts
index bda29d98e5..830a121ac7 100644
--- a/lib/process-services/src/lib/process-list/models/process-list.model.ts
+++ b/lib/process-services/src/lib/process-list/models/process-list.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/models/process-preset.model.ts b/lib/process-services/src/lib/process-list/models/process-preset.model.ts
index 9c8a10c885..7b04de839c 100644
--- a/lib/process-services/src/lib/process-list/models/process-preset.model.ts
+++ b/lib/process-services/src/lib/process-list/models/process-preset.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/process-list.module.ts b/lib/process-services/src/lib/process-list/process-list.module.ts
index 2566cecfc2..88a36d408e 100644
--- a/lib/process-services/src/lib/process-list/process-list.module.ts
+++ b/lib/process-services/src/lib/process-list/process-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/public-api.ts b/lib/process-services/src/lib/process-list/public-api.ts
index bd2c866294..66af9fe8d1 100644
--- a/lib/process-services/src/lib/process-list/public-api.ts
+++ b/lib/process-services/src/lib/process-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/services/process-filter.service.spec.ts b/lib/process-services/src/lib/process-list/services/process-filter.service.spec.ts
index d60e945b9a..a77e8e63d1 100644
--- a/lib/process-services/src/lib/process-list/services/process-filter.service.spec.ts
+++ b/lib/process-services/src/lib/process-list/services/process-filter.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/services/process-filter.service.ts b/lib/process-services/src/lib/process-list/services/process-filter.service.ts
index 1f7ee24721..61f26457a5 100644
--- a/lib/process-services/src/lib/process-list/services/process-filter.service.ts
+++ b/lib/process-services/src/lib/process-list/services/process-filter.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/services/process.service.spec.ts b/lib/process-services/src/lib/process-list/services/process.service.spec.ts
index b9566c0b7c..20690097ee 100644
--- a/lib/process-services/src/lib/process-list/services/process.service.spec.ts
+++ b/lib/process-services/src/lib/process-list/services/process.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-list/services/process.service.ts b/lib/process-services/src/lib/process-list/services/process.service.ts
index f78e7791fb..e3aeccafe7 100644
--- a/lib/process-services/src/lib/process-list/services/process.service.ts
+++ b/lib/process-services/src/lib/process-list/services/process.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-user-info/index.ts b/lib/process-services/src/lib/process-user-info/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/process-user-info/index.ts
+++ b/lib/process-services/src/lib/process-user-info/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-user-info/mocks/bpm-user.service.mock.ts b/lib/process-services/src/lib/process-user-info/mocks/bpm-user.service.mock.ts
index 5b5dfc72c5..e2b6e3e097 100644
--- a/lib/process-services/src/lib/process-user-info/mocks/bpm-user.service.mock.ts
+++ b/lib/process-services/src/lib/process-user-info/mocks/bpm-user.service.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-user-info/process-user-info.component.spec.ts b/lib/process-services/src/lib/process-user-info/process-user-info.component.spec.ts
index 5407b1ce73..cadd674bf8 100644
--- a/lib/process-services/src/lib/process-user-info/process-user-info.component.spec.ts
+++ b/lib/process-services/src/lib/process-user-info/process-user-info.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-user-info/process-user-info.component.ts b/lib/process-services/src/lib/process-user-info/process-user-info.component.ts
index 908fb4970f..2463fc6abd 100644
--- a/lib/process-services/src/lib/process-user-info/process-user-info.component.ts
+++ b/lib/process-services/src/lib/process-user-info/process-user-info.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-user-info/process-user-info.module.ts b/lib/process-services/src/lib/process-user-info/process-user-info.module.ts
index b92de6e7d6..83bb9b53b8 100644
--- a/lib/process-services/src/lib/process-user-info/process-user-info.module.ts
+++ b/lib/process-services/src/lib/process-user-info/process-user-info.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process-user-info/public-api.ts b/lib/process-services/src/lib/process-user-info/public-api.ts
index 0751688a2f..2a7188a0c0 100644
--- a/lib/process-services/src/lib/process-user-info/public-api.ts
+++ b/lib/process-services/src/lib/process-user-info/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/process.module.ts b/lib/process-services/src/lib/process.module.ts
index 289b112049..04f4a6fcba 100644
--- a/lib/process-services/src/lib/process.module.ts
+++ b/lib/process-services/src/lib/process.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-comments/index.ts b/lib/process-services/src/lib/task-comments/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/task-comments/index.ts
+++ b/lib/process-services/src/lib/task-comments/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-comments/mocks/task-comments.mock.ts b/lib/process-services/src/lib/task-comments/mocks/task-comments.mock.ts
index b275e4702c..a3a94b1e5e 100644
--- a/lib/process-services/src/lib/task-comments/mocks/task-comments.mock.ts
+++ b/lib/process-services/src/lib/task-comments/mocks/task-comments.mock.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-comments/public-api.ts b/lib/process-services/src/lib/task-comments/public-api.ts
index f723c928ce..c686e73745 100644
--- a/lib/process-services/src/lib/task-comments/public-api.ts
+++ b/lib/process-services/src/lib/task-comments/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-comments/services/task-comments.service.spec.ts b/lib/process-services/src/lib/task-comments/services/task-comments.service.spec.ts
index b89495f6f4..70e2546b79 100644
--- a/lib/process-services/src/lib/task-comments/services/task-comments.service.spec.ts
+++ b/lib/process-services/src/lib/task-comments/services/task-comments.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-comments/services/task-comments.service.ts b/lib/process-services/src/lib/task-comments/services/task-comments.service.ts
index 9ef76f4b29..4d2c16f4de 100644
--- a/lib/process-services/src/lib/task-comments/services/task-comments.service.ts
+++ b/lib/process-services/src/lib/task-comments/services/task-comments.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-comments/task-comments.component.ts b/lib/process-services/src/lib/task-comments/task-comments.component.ts
index 014aa4b2b6..055dc4d97b 100644
--- a/lib/process-services/src/lib/task-comments/task-comments.component.ts
+++ b/lib/process-services/src/lib/task-comments/task-comments.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-comments/task-comments.module.ts b/lib/process-services/src/lib/task-comments/task-comments.module.ts
index f07c543c2a..12c56d9ba8 100644
--- a/lib/process-services/src/lib/task-comments/task-comments.module.ts
+++ b/lib/process-services/src/lib/task-comments/task-comments.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/attach-form.component.spec.ts b/lib/process-services/src/lib/task-list/components/attach-form.component.spec.ts
index 01320fb2a5..875af4dcea 100644
--- a/lib/process-services/src/lib/task-list/components/attach-form.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/attach-form.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/attach-form.component.ts b/lib/process-services/src/lib/task-list/components/attach-form.component.ts
index 1606b9a04c..fe9846d399 100644
--- a/lib/process-services/src/lib/task-list/components/attach-form.component.ts
+++ b/lib/process-services/src/lib/task-list/components/attach-form.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/checklist.component.spec.ts b/lib/process-services/src/lib/task-list/components/checklist.component.spec.ts
index fc499f2d1c..96f29fb47f 100644
--- a/lib/process-services/src/lib/task-list/components/checklist.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/checklist.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/checklist.component.ts b/lib/process-services/src/lib/task-list/components/checklist.component.ts
index ce8def4a88..ad06ab946c 100644
--- a/lib/process-services/src/lib/task-list/components/checklist.component.ts
+++ b/lib/process-services/src/lib/task-list/components/checklist.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.spec.ts b/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.spec.ts
index bf18647d4c..db30e33d92 100644
--- a/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.ts b/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.ts
index c113224617..1f4a238e5d 100644
--- a/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.ts
+++ b/lib/process-services/src/lib/task-list/components/no-task-detail-template.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/start-task.component.spec.ts b/lib/process-services/src/lib/task-list/components/start-task.component.spec.ts
index 9a82825b60..70e79dcb16 100644
--- a/lib/process-services/src/lib/task-list/components/start-task.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/start-task.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/start-task.component.ts b/lib/process-services/src/lib/task-list/components/start-task.component.ts
index 64c8e50e1c..24a6afda84 100644
--- a/lib/process-services/src/lib/task-list/components/start-task.component.ts
+++ b/lib/process-services/src/lib/task-list/components/start-task.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-audit.directive.spec.ts b/lib/process-services/src/lib/task-list/components/task-audit.directive.spec.ts
index 509631b42c..2aaf7707d4 100644
--- a/lib/process-services/src/lib/task-list/components/task-audit.directive.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-audit.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-audit.directive.ts b/lib/process-services/src/lib/task-list/components/task-audit.directive.ts
index 579c340b20..9dea01bf36 100644
--- a/lib/process-services/src/lib/task-list/components/task-audit.directive.ts
+++ b/lib/process-services/src/lib/task-list/components/task-audit.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-details.component.spec.ts b/lib/process-services/src/lib/task-list/components/task-details.component.spec.ts
index 6c508c2715..427fd025d3 100644
--- a/lib/process-services/src/lib/task-list/components/task-details.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-details.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-details.component.ts b/lib/process-services/src/lib/task-list/components/task-details.component.ts
index 243dd91825..816b7b59f4 100644
--- a/lib/process-services/src/lib/task-list/components/task-details.component.ts
+++ b/lib/process-services/src/lib/task-list/components/task-details.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-filters.component.spec.ts b/lib/process-services/src/lib/task-list/components/task-filters.component.spec.ts
index 5e0cd034bc..78713125d9 100644
--- a/lib/process-services/src/lib/task-list/components/task-filters.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-filters.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-filters.component.ts b/lib/process-services/src/lib/task-list/components/task-filters.component.ts
index bb0de95df6..bf66ead94d 100644
--- a/lib/process-services/src/lib/task-list/components/task-filters.component.ts
+++ b/lib/process-services/src/lib/task-list/components/task-filters.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.spec.ts b/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.spec.ts
index 7678c15981..5e0d2d8a7e 100644
--- a/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.ts b/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.ts
index ad95df286a..c83f059b80 100644
--- a/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.ts
+++ b/lib/process-services/src/lib/task-list/components/task-form/claim-task.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-form/task-form.component.spec.ts b/lib/process-services/src/lib/task-list/components/task-form/task-form.component.spec.ts
index a38493b26e..f6447d16fb 100644
--- a/lib/process-services/src/lib/task-list/components/task-form/task-form.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-form/task-form.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-form/task-form.component.ts b/lib/process-services/src/lib/task-list/components/task-form/task-form.component.ts
index 84f4f85463..be4c8d8af9 100644
--- a/lib/process-services/src/lib/task-list/components/task-form/task-form.component.ts
+++ b/lib/process-services/src/lib/task-list/components/task-form/task-form.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.spec.ts b/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.spec.ts
index 21353b916e..0958b0e067 100644
--- a/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.ts b/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.ts
index ee9787ee94..b5c572396c 100644
--- a/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.ts
+++ b/lib/process-services/src/lib/task-list/components/task-form/unclaim-task.directive.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-header.component.spec.ts b/lib/process-services/src/lib/task-list/components/task-header.component.spec.ts
index 4721ad2f99..64578e1861 100644
--- a/lib/process-services/src/lib/task-list/components/task-header.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-header.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-header.component.ts b/lib/process-services/src/lib/task-list/components/task-header.component.ts
index 672d71a7c7..b80d733950 100644
--- a/lib/process-services/src/lib/task-list/components/task-header.component.ts
+++ b/lib/process-services/src/lib/task-list/components/task-header.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-list.component.spec.ts b/lib/process-services/src/lib/task-list/components/task-list.component.spec.ts
index 5d9b662787..2e1c2e5a38 100644
--- a/lib/process-services/src/lib/task-list/components/task-list.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-list.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-list.component.ts b/lib/process-services/src/lib/task-list/components/task-list.component.ts
index a55135838c..5a82f64daa 100644
--- a/lib/process-services/src/lib/task-list/components/task-list.component.ts
+++ b/lib/process-services/src/lib/task-list/components/task-list.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-standalone.component.spec.ts b/lib/process-services/src/lib/task-list/components/task-standalone.component.spec.ts
index 5ef7caa0b2..acbe5b2751 100644
--- a/lib/process-services/src/lib/task-list/components/task-standalone.component.spec.ts
+++ b/lib/process-services/src/lib/task-list/components/task-standalone.component.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/components/task-standalone.component.ts b/lib/process-services/src/lib/task-list/components/task-standalone.component.ts
index 0d5eb0d284..7d5616eb2a 100644
--- a/lib/process-services/src/lib/task-list/components/task-standalone.component.ts
+++ b/lib/process-services/src/lib/task-list/components/task-standalone.component.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/index.ts b/lib/process-services/src/lib/task-list/index.ts
index a7e30cc675..e58e5c1c41 100644
--- a/lib/process-services/src/lib/task-list/index.ts
+++ b/lib/process-services/src/lib/task-list/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/filter.model.ts b/lib/process-services/src/lib/task-list/models/filter.model.ts
index b8d150698c..3dddc807e0 100644
--- a/lib/process-services/src/lib/task-list/models/filter.model.ts
+++ b/lib/process-services/src/lib/task-list/models/filter.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/form.model.ts b/lib/process-services/src/lib/task-list/models/form.model.ts
index 2418598403..52ce32d676 100644
--- a/lib/process-services/src/lib/task-list/models/form.model.ts
+++ b/lib/process-services/src/lib/task-list/models/form.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/start-task.model.ts b/lib/process-services/src/lib/task-list/models/start-task.model.ts
index d2b7b58029..9ca8b86e77 100644
--- a/lib/process-services/src/lib/task-list/models/start-task.model.ts
+++ b/lib/process-services/src/lib/task-list/models/start-task.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/task-details.event.ts b/lib/process-services/src/lib/task-list/models/task-details.event.ts
index 9f20440d5f..34d11e5506 100644
--- a/lib/process-services/src/lib/task-list/models/task-details.event.ts
+++ b/lib/process-services/src/lib/task-list/models/task-details.event.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/task-details.model.ts b/lib/process-services/src/lib/task-list/models/task-details.model.ts
index a4715767c8..ee89a68f49 100644
--- a/lib/process-services/src/lib/task-list/models/task-details.model.ts
+++ b/lib/process-services/src/lib/task-list/models/task-details.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/task-list.model.ts b/lib/process-services/src/lib/task-list/models/task-list.model.ts
index 6942a631bf..aee1ec5d83 100644
--- a/lib/process-services/src/lib/task-list/models/task-list.model.ts
+++ b/lib/process-services/src/lib/task-list/models/task-list.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/task-preset.model.ts b/lib/process-services/src/lib/task-list/models/task-preset.model.ts
index 5841045c13..47069ee0cd 100644
--- a/lib/process-services/src/lib/task-list/models/task-preset.model.ts
+++ b/lib/process-services/src/lib/task-list/models/task-preset.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/user-event.model.ts b/lib/process-services/src/lib/task-list/models/user-event.model.ts
index 038dbadc09..005f7c9991 100644
--- a/lib/process-services/src/lib/task-list/models/user-event.model.ts
+++ b/lib/process-services/src/lib/task-list/models/user-event.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/models/user-group.model.ts b/lib/process-services/src/lib/task-list/models/user-group.model.ts
index 189259a66c..e7ed931011 100644
--- a/lib/process-services/src/lib/task-list/models/user-group.model.ts
+++ b/lib/process-services/src/lib/task-list/models/user-group.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/public-api.ts b/lib/process-services/src/lib/task-list/public-api.ts
index 997b6f79f3..ced81b082d 100644
--- a/lib/process-services/src/lib/task-list/public-api.ts
+++ b/lib/process-services/src/lib/task-list/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/services/process-upload.service.ts b/lib/process-services/src/lib/task-list/services/process-upload.service.ts
index fd0ff157f4..50426f600e 100644
--- a/lib/process-services/src/lib/task-list/services/process-upload.service.ts
+++ b/lib/process-services/src/lib/task-list/services/process-upload.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/services/task-filter.service.spec.ts b/lib/process-services/src/lib/task-list/services/task-filter.service.spec.ts
index 9d9b9ab4f1..f0f4e7ffa9 100644
--- a/lib/process-services/src/lib/task-list/services/task-filter.service.spec.ts
+++ b/lib/process-services/src/lib/task-list/services/task-filter.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/services/task-filter.service.ts b/lib/process-services/src/lib/task-list/services/task-filter.service.ts
index c41cfb134b..0e1ceaeb11 100644
--- a/lib/process-services/src/lib/task-list/services/task-filter.service.ts
+++ b/lib/process-services/src/lib/task-list/services/task-filter.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/services/task-upload.service.ts b/lib/process-services/src/lib/task-list/services/task-upload.service.ts
index 7d2b289044..2017edada0 100644
--- a/lib/process-services/src/lib/task-list/services/task-upload.service.ts
+++ b/lib/process-services/src/lib/task-list/services/task-upload.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/services/tasklist.service.spec.ts b/lib/process-services/src/lib/task-list/services/tasklist.service.spec.ts
index f2d29e5930..8ab2e80276 100644
--- a/lib/process-services/src/lib/task-list/services/tasklist.service.spec.ts
+++ b/lib/process-services/src/lib/task-list/services/tasklist.service.spec.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/services/tasklist.service.ts b/lib/process-services/src/lib/task-list/services/tasklist.service.ts
index c4a3369939..120fcb7225 100644
--- a/lib/process-services/src/lib/task-list/services/tasklist.service.ts
+++ b/lib/process-services/src/lib/task-list/services/tasklist.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/task-list.module.ts b/lib/process-services/src/lib/task-list/task-list.module.ts
index da0c8e7fd5..e59d170601 100644
--- a/lib/process-services/src/lib/task-list/task-list.module.ts
+++ b/lib/process-services/src/lib/task-list/task-list.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/task-list/validators/task-description.validator.ts b/lib/process-services/src/lib/task-list/validators/task-description.validator.ts
index 14a5dd2d80..dacbb77670 100644
--- a/lib/process-services/src/lib/task-list/validators/task-description.validator.ts
+++ b/lib/process-services/src/lib/task-list/validators/task-description.validator.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/lib/testing/process.testing.module.ts b/lib/process-services/src/lib/testing/process.testing.module.ts
index b0adc3f662..4a44138268 100644
--- a/lib/process-services/src/lib/testing/process.testing.module.ts
+++ b/lib/process-services/src/lib/testing/process.testing.module.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/public-api.ts b/lib/process-services/src/public-api.ts
index bf15f7c192..c2fb41384c 100644
--- a/lib/process-services/src/public-api.ts
+++ b/lib/process-services/src/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/process-services/src/test.ts b/lib/process-services/src/test.ts
index eccb72763a..078f950596 100644
--- a/lib/process-services/src/test.ts
+++ b/lib/process-services/src/test.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/stories/src/index.ts b/lib/stories/src/index.ts
index 2225e53f52..a180d14612 100644
--- a/lib/stories/src/index.ts
+++ b/lib/stories/src/index.ts
@@ -1,8 +1,17 @@
-/*
- * Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
- * License rights for this program may be obtained from Alfresco Software, Ltd.
- * pursuant to a written agreement and any use of this program without such an
- * agreement is prohibited.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
diff --git a/lib/testing/.eslintrc.json b/lib/testing/.eslintrc.json
index 3ff7e7e2c4..eb7314ab41 100644
--- a/lib/testing/.eslintrc.json
+++ b/lib/testing/.eslintrc.json
@@ -1,5 +1,5 @@
{
- "extends": ["../../.eslintrc.json"],
+ "extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
diff --git a/lib/testing/index.ts b/lib/testing/index.ts
index d78e6cea49..f716afc4aa 100644
--- a/lib/testing/index.ts
+++ b/lib/testing/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/package.json b/lib/testing/package.json
index 38c88a6b11..8bf6369788 100644
--- a/lib/testing/package.json
+++ b/lib/testing/package.json
@@ -2,7 +2,7 @@
"name": "@alfresco/adf-testing",
"description": "Alfresco ADF testing page and utils",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-ng2-components.git"
diff --git a/lib/testing/src/lib/protractor/content-services/actions/model.actions.ts b/lib/testing/src/lib/protractor/content-services/actions/model.actions.ts
index 066d11019f..b2077c3fdb 100644
--- a/lib/testing/src/lib/protractor/content-services/actions/model.actions.ts
+++ b/lib/testing/src/lib/protractor/content-services/actions/model.actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/actions/permission.actions.ts b/lib/testing/src/lib/protractor/content-services/actions/permission.actions.ts
index c16bd91ed8..2357fb15eb 100644
--- a/lib/testing/src/lib/protractor/content-services/actions/permission.actions.ts
+++ b/lib/testing/src/lib/protractor/content-services/actions/permission.actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/actions/public-api.ts b/lib/testing/src/lib/protractor/content-services/actions/public-api.ts
index 261740e8dd..6b40791f83 100644
--- a/lib/testing/src/lib/protractor/content-services/actions/public-api.ts
+++ b/lib/testing/src/lib/protractor/content-services/actions/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/actions/upload.actions.ts b/lib/testing/src/lib/protractor/content-services/actions/upload.actions.ts
index d43e36e42f..0eddb6a6a6 100644
--- a/lib/testing/src/lib/protractor/content-services/actions/upload.actions.ts
+++ b/lib/testing/src/lib/protractor/content-services/actions/upload.actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/dialog/add-permissions-dialog.page.ts b/lib/testing/src/lib/protractor/content-services/dialog/add-permissions-dialog.page.ts
index 5d89ad6d12..5f3831d819 100644
--- a/lib/testing/src/lib/protractor/content-services/dialog/add-permissions-dialog.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/dialog/add-permissions-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/dialog/content-node-selector-dialog.page.ts b/lib/testing/src/lib/protractor/content-services/dialog/content-node-selector-dialog.page.ts
index 5631e86d95..7ff3263c05 100644
--- a/lib/testing/src/lib/protractor/content-services/dialog/content-node-selector-dialog.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/dialog/content-node-selector-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/dialog/download-dialog.page.ts b/lib/testing/src/lib/protractor/content-services/dialog/download-dialog.page.ts
index bdca71227a..a5a6eb68dd 100644
--- a/lib/testing/src/lib/protractor/content-services/dialog/download-dialog.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/dialog/download-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/dialog/public-api.ts b/lib/testing/src/lib/protractor/content-services/dialog/public-api.ts
index 4de0c85381..a13252d152 100644
--- a/lib/testing/src/lib/protractor/content-services/dialog/public-api.ts
+++ b/lib/testing/src/lib/protractor/content-services/dialog/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/breadcrumb-dropdown.page.ts b/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/breadcrumb-dropdown.page.ts
index e099e712b7..a226be074b 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/breadcrumb-dropdown.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/breadcrumb-dropdown.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/public-api.ts b/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/public-api.ts
index c04d1c275c..4feda5d6ec 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/public-api.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/breadcrumb/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/document-list.page.ts b/lib/testing/src/lib/protractor/content-services/pages/document-list.page.ts
index f4f6ea602a..dc849f0f6c 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/document-list.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/document-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/like.page.ts b/lib/testing/src/lib/protractor/content-services/pages/like.page.ts
index 9cd606a3b1..78eb6891f7 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/like.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/like.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/public-api.ts b/lib/testing/src/lib/protractor/content-services/pages/public-api.ts
index dd97458106..af21285406 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/public-api.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/rate.page.ts b/lib/testing/src/lib/protractor/content-services/pages/rate.page.ts
index 9219afe1f9..8b0aa22658 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/rate.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/rate.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/date-range-filter.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/date-range-filter.page.ts
index c46afc4bba..d7d16a058a 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/date-range-filter.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/date-range-filter.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/number-range-filter.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/number-range-filter.page.ts
index c414743907..6b2bcbef3a 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/number-range-filter.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/number-range-filter.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/public-api.ts b/lib/testing/src/lib/protractor/content-services/pages/search/public-api.ts
index b2df99dfc0..f8d39165d5 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/public-api.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/search-categories.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/search-categories.page.ts
index 7cb3c6d98d..d411f17e10 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/search-categories.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/search-categories.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/search-check-list.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/search-check-list.page.ts
index 1d455972dc..da3263fe2e 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/search-check-list.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/search-check-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/search-radio.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/search-radio.page.ts
index 37c90c4601..f69f3d31f3 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/search-radio.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/search-radio.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/search-slider.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/search-slider.page.ts
index 4b91305433..579a4a9b02 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/search-slider.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/search-slider.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/search-sorting-picker.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/search-sorting-picker.page.ts
index 2436c7e9b8..58fc31b1c0 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/search-sorting-picker.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/search-sorting-picker.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/search/search-text.page.ts b/lib/testing/src/lib/protractor/content-services/pages/search/search-text.page.ts
index 1810278d0f..610d73bec2 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/search/search-text.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/search/search-text.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/pages/upload-button.page.ts b/lib/testing/src/lib/protractor/content-services/pages/upload-button.page.ts
index 136b975333..f3f841ac4e 100644
--- a/lib/testing/src/lib/protractor/content-services/pages/upload-button.page.ts
+++ b/lib/testing/src/lib/protractor/content-services/pages/upload-button.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/content-services/public-api.ts b/lib/testing/src/lib/protractor/content-services/public-api.ts
index 67b358990a..b26f61524c 100644
--- a/lib/testing/src/lib/protractor/content-services/public-api.ts
+++ b/lib/testing/src/lib/protractor/content-services/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/api.service.factory.ts b/lib/testing/src/lib/protractor/core/actions/api.service.factory.ts
index c8af135028..948eff2ca3 100644
--- a/lib/testing/src/lib/protractor/core/actions/api.service.factory.ts
+++ b/lib/testing/src/lib/protractor/core/actions/api.service.factory.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/drop.actions.ts b/lib/testing/src/lib/protractor/core/actions/drop.actions.ts
index 8069201b59..83d5f1a8cb 100644
--- a/lib/testing/src/lib/protractor/core/actions/drop.actions.ts
+++ b/lib/testing/src/lib/protractor/core/actions/drop.actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/identity/group-identity.service.ts b/lib/testing/src/lib/protractor/core/actions/identity/group-identity.service.ts
index 79e4d6219b..22c8c479ea 100644
--- a/lib/testing/src/lib/protractor/core/actions/identity/group-identity.service.ts
+++ b/lib/testing/src/lib/protractor/core/actions/identity/group-identity.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/identity/identity.service.ts b/lib/testing/src/lib/protractor/core/actions/identity/identity.service.ts
index ffc85f24fd..d07d49a87c 100644
--- a/lib/testing/src/lib/protractor/core/actions/identity/identity.service.ts
+++ b/lib/testing/src/lib/protractor/core/actions/identity/identity.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/identity/public-api.ts b/lib/testing/src/lib/protractor/core/actions/identity/public-api.ts
index 01dd1b7df1..9a16fc961b 100644
--- a/lib/testing/src/lib/protractor/core/actions/identity/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/actions/identity/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/identity/query.service.ts b/lib/testing/src/lib/protractor/core/actions/identity/query.service.ts
index 3dbe29794a..463ae97cc6 100644
--- a/lib/testing/src/lib/protractor/core/actions/identity/query.service.ts
+++ b/lib/testing/src/lib/protractor/core/actions/identity/query.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/identity/roles.service.ts b/lib/testing/src/lib/protractor/core/actions/identity/roles.service.ts
index 0aea15d6ab..23f192fcfb 100644
--- a/lib/testing/src/lib/protractor/core/actions/identity/roles.service.ts
+++ b/lib/testing/src/lib/protractor/core/actions/identity/roles.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/public-api.ts b/lib/testing/src/lib/protractor/core/actions/public-api.ts
index 15d2bf0574..052bad64b6 100644
--- a/lib/testing/src/lib/protractor/core/actions/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/actions/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/search.service.ts b/lib/testing/src/lib/protractor/core/actions/search.service.ts
index 298ca307b1..f1acfb729e 100644
--- a/lib/testing/src/lib/protractor/core/actions/search.service.ts
+++ b/lib/testing/src/lib/protractor/core/actions/search.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/actions/users.actions.ts b/lib/testing/src/lib/protractor/core/actions/users.actions.ts
index c8cf3ed6aa..3e851d1a36 100644
--- a/lib/testing/src/lib/protractor/core/actions/users.actions.ts
+++ b/lib/testing/src/lib/protractor/core/actions/users.actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/dialog/edit-json-dialog.ts b/lib/testing/src/lib/protractor/core/dialog/edit-json-dialog.ts
index c3042f6a24..fd239be376 100644
--- a/lib/testing/src/lib/protractor/core/dialog/edit-json-dialog.ts
+++ b/lib/testing/src/lib/protractor/core/dialog/edit-json-dialog.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/dialog/public-api.ts b/lib/testing/src/lib/protractor/core/dialog/public-api.ts
index d1cfaaad50..06e37ca369 100644
--- a/lib/testing/src/lib/protractor/core/dialog/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/dialog/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/models/application-model.ts b/lib/testing/src/lib/protractor/core/models/application-model.ts
index 53a38174f6..e1d20c18a1 100644
--- a/lib/testing/src/lib/protractor/core/models/application-model.ts
+++ b/lib/testing/src/lib/protractor/core/models/application-model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/models/file.model.ts b/lib/testing/src/lib/protractor/core/models/file.model.ts
index 5b0811de0f..ac4a37c177 100644
--- a/lib/testing/src/lib/protractor/core/models/file.model.ts
+++ b/lib/testing/src/lib/protractor/core/models/file.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/models/public-api.ts b/lib/testing/src/lib/protractor/core/models/public-api.ts
index 1441e09364..5703ab1b48 100644
--- a/lib/testing/src/lib/protractor/core/models/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/models/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/models/tenant.ts b/lib/testing/src/lib/protractor/core/models/tenant.ts
index 31dad2f84c..3d1709bff1 100644
--- a/lib/testing/src/lib/protractor/core/models/tenant.ts
+++ b/lib/testing/src/lib/protractor/core/models/tenant.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/models/user.model.ts b/lib/testing/src/lib/protractor/core/models/user.model.ts
index 942879910d..c3ca8069c4 100644
--- a/lib/testing/src/lib/protractor/core/models/user.model.ts
+++ b/lib/testing/src/lib/protractor/core/models/user.model.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/bread-crumb.page.ts b/lib/testing/src/lib/protractor/core/pages/bread-crumb.page.ts
index 769a3bfd4c..0214f4d59e 100644
--- a/lib/testing/src/lib/protractor/core/pages/bread-crumb.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/bread-crumb.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-boolean-item.page.ts b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-boolean-item.page.ts
index f74ff7348c..62cd9e3541 100644
--- a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-boolean-item.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-boolean-item.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-date-item.page.ts b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-date-item.page.ts
index bc3d9ef887..7561ba9963 100644
--- a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-date-item.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-date-item.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-select-item.page.ts b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-select-item.page.ts
index 45828192e5..b2af436f45 100644
--- a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-select-item.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-select-item.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-text-item.page.ts b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-text-item.page.ts
index 7e2e08494a..03984fb4ad 100644
--- a/lib/testing/src/lib/protractor/core/pages/card-view/card-view-text-item.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/card-view/card-view-text-item.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/card-view/public-api.ts b/lib/testing/src/lib/protractor/core/pages/card-view/public-api.ts
index aea0895523..09693f64a1 100644
--- a/lib/testing/src/lib/protractor/core/pages/card-view/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/pages/card-view/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/config-editor-page.ts b/lib/testing/src/lib/protractor/core/pages/config-editor-page.ts
index 2a40ffbe32..7587ad0982 100644
--- a/lib/testing/src/lib/protractor/core/pages/config-editor-page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/config-editor-page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/context-menu.page.ts b/lib/testing/src/lib/protractor/core/pages/context-menu.page.ts
index f2865d5785..0b2ff88917 100644
--- a/lib/testing/src/lib/protractor/core/pages/context-menu.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/context-menu.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table-component.page.ts b/lib/testing/src/lib/protractor/core/pages/data-table-component.page.ts
index e25215202e..62f45982af 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table-component.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table/column.ts b/lib/testing/src/lib/protractor/core/pages/data-table/column.ts
index 3516780d0b..1dae9889a8 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table/column.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table/column.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table/columns-selector.ts b/lib/testing/src/lib/protractor/core/pages/data-table/columns-selector.ts
index a1153b12ce..6586ee67c9 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table/columns-selector.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table/columns-selector.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table/data-table-builder.ts b/lib/testing/src/lib/protractor/core/pages/data-table/data-table-builder.ts
index 8885766e10..4ac95726e8 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table/data-table-builder.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table/data-table-builder.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table/data-table-item.ts b/lib/testing/src/lib/protractor/core/pages/data-table/data-table-item.ts
index 3fba50aa89..290070172e 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table/data-table-item.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table/data-table-item.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table/date-column.ts b/lib/testing/src/lib/protractor/core/pages/data-table/date-column.ts
index 58a4234633..4e2c9555d4 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table/date-column.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table/date-column.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table/public-api.ts b/lib/testing/src/lib/protractor/core/pages/data-table/public-api.ts
index 0ead88eec1..87a6753343 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/data-table/text-column.ts b/lib/testing/src/lib/protractor/core/pages/data-table/text-column.ts
index 38c987f131..48ee1a29ba 100644
--- a/lib/testing/src/lib/protractor/core/pages/data-table/text-column.ts
+++ b/lib/testing/src/lib/protractor/core/pages/data-table/text-column.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/error.page.ts b/lib/testing/src/lib/protractor/core/pages/error.page.ts
index 5f759d986d..b7d31c7bdb 100644
--- a/lib/testing/src/lib/protractor/core/pages/error.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/error.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/form-fields.ts b/lib/testing/src/lib/protractor/core/pages/form/form-fields.ts
index 3b44bd90a2..9a9ffafb18 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/form-fields.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/form-fields.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/form.page.ts b/lib/testing/src/lib/protractor/core/pages/form/form.page.ts
index 3d9c217c41..10a166e312 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/form.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/form.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/public-api.ts b/lib/testing/src/lib/protractor/core/pages/form/public-api.ts
index 3fcaa43a95..00a145d263 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/start-form.page.ts b/lib/testing/src/lib/protractor/core/pages/form/start-form.page.ts
index ccf0fbc049..abea0b8681 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/start-form.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/start-form.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/amount-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/amount-widget.page.ts
index 61b905db35..e0846734d5 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/amount-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/amount-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-file-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-file-widget.page.ts
index c23313944b..8c37cb89cd 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-file-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-file-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-folder-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-folder-widget.page.ts
index 9c5cfd0097..41ad0173c0 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-folder-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/attach-folder-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/checkbox-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/checkbox-widget.page.ts
index c508a38ed0..37925c1d4a 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/checkbox-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/checkbox-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/container-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/container-widget.page.ts
index 2b104543ff..39b873ba60 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/container-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/container-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/date-time-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/date-time-widget.page.ts
index f6c60a575d..d740ae0b8e 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/date-time-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/date-time-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/date-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/date-widget.page.ts
index 883f36570f..f2816e7b15 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/date-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/date-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/display-text-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/display-text-widget.page.ts
index 2aee565287..ec2aeac9ae 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/display-text-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/display-text-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/display-value-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/display-value-widget.page.ts
index 3d05e99983..b0e6821e15 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/display-value-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/display-value-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/document-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/document-widget.page.ts
index 376f2deb72..77134b9098 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/document-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/document-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/dropdown-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/dropdown-widget.page.ts
index 896d21d20e..1d17a0c7bb 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/dropdown-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/dropdown-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/dynamic-table-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/dynamic-table-widget.page.ts
index 13c858878f..0d47a1e3f8 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/dynamic-table-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/dynamic-table-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/group-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/group-widget.page.ts
index 49aa92854d..b85beda499 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/group-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/group-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/header-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/header-widget.page.ts
index 1ecf60bf97..402e879652 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/header-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/header-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/hyperlink-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/hyperlink-widget.page.ts
index eb25808a92..b63cd367ad 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/hyperlink-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/hyperlink-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/json-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/json-widget.page.ts
index 1849001113..e914c0c803 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/json-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/json-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/multiline-text-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/multiline-text-widget.page.ts
index 88f78f664b..71f9b197ad 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/multiline-text-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/multiline-text-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/number-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/number-widget.page.ts
index a413612ed6..107f81243d 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/number-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/number-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/people-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/people-widget.page.ts
index d33dcb451f..063102f3c8 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/people-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/people-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/public-api.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/public-api.ts
index cf9c9ed215..483e3bfadd 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/radio-buttons-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/radio-buttons-widget.page.ts
index ecc556305a..04f2dce2a5 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/radio-buttons-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/radio-buttons-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/tab.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/tab.page.ts
index 792075c0f7..4ca59ef3fb 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/tab.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/tab.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/text-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/text-widget.page.ts
index 1f228b1ebb..2bcd8bb885 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/text-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/text-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/typeahead-widget.page.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/typeahead-widget.page.ts
index 8d87b984d8..d8f0d3c05d 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/typeahead-widget.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/typeahead-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/form/widgets/widget.ts b/lib/testing/src/lib/protractor/core/pages/form/widgets/widget.ts
index 48a59916fa..677938a9f4 100644
--- a/lib/testing/src/lib/protractor/core/pages/form/widgets/widget.ts
+++ b/lib/testing/src/lib/protractor/core/pages/form/widgets/widget.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/header.page.ts b/lib/testing/src/lib/protractor/core/pages/header.page.ts
index b005cf0850..f6ae6a6572 100644
--- a/lib/testing/src/lib/protractor/core/pages/header.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/header.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/info-drawer.page.ts b/lib/testing/src/lib/protractor/core/pages/info-drawer.page.ts
index ff4926e6ae..02427e00ae 100644
--- a/lib/testing/src/lib/protractor/core/pages/info-drawer.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/info-drawer.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/login.page.ts b/lib/testing/src/lib/protractor/core/pages/login.page.ts
index 40310c40ae..1456f100c4 100644
--- a/lib/testing/src/lib/protractor/core/pages/login.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/login.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/checkbox.page.ts b/lib/testing/src/lib/protractor/core/pages/material/checkbox.page.ts
index ce70027f26..1d32f24ae9 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/checkbox.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/checkbox.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/date-picker-calendar.page.ts b/lib/testing/src/lib/protractor/core/pages/material/date-picker-calendar.page.ts
index cbf3b6178e..52462cc5f9 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/date-picker-calendar.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/date-picker-calendar.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/date-picker.page.ts b/lib/testing/src/lib/protractor/core/pages/material/date-picker.page.ts
index 914eaac800..c86441d6e5 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/date-picker.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/date-picker.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/date-time-picker-calendar.page.ts b/lib/testing/src/lib/protractor/core/pages/material/date-time-picker-calendar.page.ts
index f6314dd1f1..6265717d41 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/date-time-picker-calendar.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/date-time-picker-calendar.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/date-time-picker.page.ts b/lib/testing/src/lib/protractor/core/pages/material/date-time-picker.page.ts
index 043dadf8d6..7f9dc85790 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/date-time-picker.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/date-time-picker.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/dropdown.page.ts b/lib/testing/src/lib/protractor/core/pages/material/dropdown.page.ts
index 92d7b95948..c7ff14464f 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/dropdown.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/dropdown.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/public-api.ts b/lib/testing/src/lib/protractor/core/pages/material/public-api.ts
index fd3d56a3af..56e19a7333 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/tabs.page.ts b/lib/testing/src/lib/protractor/core/pages/material/tabs.page.ts
index 2367dbc55c..a8ca8307fd 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/tabs.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/tabs.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/material/toggle.page.ts b/lib/testing/src/lib/protractor/core/pages/material/toggle.page.ts
index 7b9278ce4b..28c6f6861f 100644
--- a/lib/testing/src/lib/protractor/core/pages/material/toggle.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/material/toggle.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/notification-history.page.ts b/lib/testing/src/lib/protractor/core/pages/notification-history.page.ts
index fd954a2054..635ec3c81b 100644
--- a/lib/testing/src/lib/protractor/core/pages/notification-history.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/notification-history.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/pagination.page.ts b/lib/testing/src/lib/protractor/core/pages/pagination.page.ts
index 1a8ad63817..9f78890492 100644
--- a/lib/testing/src/lib/protractor/core/pages/pagination.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/pagination.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/public-api.ts b/lib/testing/src/lib/protractor/core/pages/public-api.ts
index 2bc94f9af1..4f472baa63 100644
--- a/lib/testing/src/lib/protractor/core/pages/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/pages/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/settings.page.ts b/lib/testing/src/lib/protractor/core/pages/settings.page.ts
index 0104f86f70..173f0a1164 100644
--- a/lib/testing/src/lib/protractor/core/pages/settings.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/settings.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/snackbar.page.ts b/lib/testing/src/lib/protractor/core/pages/snackbar.page.ts
index d8d8691431..fd27ac38f3 100644
--- a/lib/testing/src/lib/protractor/core/pages/snackbar.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/snackbar.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/user-info.page.ts b/lib/testing/src/lib/protractor/core/pages/user-info.page.ts
index 408f9326ad..48b274c074 100644
--- a/lib/testing/src/lib/protractor/core/pages/user-info.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/user-info.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/pages/viewer.page.ts b/lib/testing/src/lib/protractor/core/pages/viewer.page.ts
index 69aebc504c..670216a02f 100644
--- a/lib/testing/src/lib/protractor/core/pages/viewer.page.ts
+++ b/lib/testing/src/lib/protractor/core/pages/viewer.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/public-api.ts b/lib/testing/src/lib/protractor/core/public-api.ts
index 923a45334f..ae5a7d6716 100644
--- a/lib/testing/src/lib/protractor/core/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/test-element.ts b/lib/testing/src/lib/protractor/core/test-element.ts
index dfd2feadd3..1d32d1a7f0 100644
--- a/lib/testing/src/lib/protractor/core/test-element.ts
+++ b/lib/testing/src/lib/protractor/core/test-element.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/array.util.ts b/lib/testing/src/lib/protractor/core/utils/array.util.ts
index 1c804a27e7..b0f1df939e 100644
--- a/lib/testing/src/lib/protractor/core/utils/array.util.ts
+++ b/lib/testing/src/lib/protractor/core/utils/array.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/browser-actions.ts b/lib/testing/src/lib/protractor/core/utils/browser-actions.ts
index bae10106f0..1dff23697e 100644
--- a/lib/testing/src/lib/protractor/core/utils/browser-actions.ts
+++ b/lib/testing/src/lib/protractor/core/utils/browser-actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/browser-visibility.ts b/lib/testing/src/lib/protractor/core/utils/browser-visibility.ts
index c669a575bb..34190c1b73 100644
--- a/lib/testing/src/lib/protractor/core/utils/browser-visibility.ts
+++ b/lib/testing/src/lib/protractor/core/utils/browser-visibility.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/date-util.ts b/lib/testing/src/lib/protractor/core/utils/date-util.ts
index ed30598912..4cb97e8319 100644
--- a/lib/testing/src/lib/protractor/core/utils/date-util.ts
+++ b/lib/testing/src/lib/protractor/core/utils/date-util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/file-browser.util.ts b/lib/testing/src/lib/protractor/core/utils/file-browser.util.ts
index a680822c5a..f02394ee0a 100644
--- a/lib/testing/src/lib/protractor/core/utils/file-browser.util.ts
+++ b/lib/testing/src/lib/protractor/core/utils/file-browser.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/form.util.ts b/lib/testing/src/lib/protractor/core/utils/form.util.ts
index 096ad53556..f2e9afc4b8 100644
--- a/lib/testing/src/lib/protractor/core/utils/form.util.ts
+++ b/lib/testing/src/lib/protractor/core/utils/form.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/local-storage.util.ts b/lib/testing/src/lib/protractor/core/utils/local-storage.util.ts
index 2ddc725e47..ea42556638 100644
--- a/lib/testing/src/lib/protractor/core/utils/local-storage.util.ts
+++ b/lib/testing/src/lib/protractor/core/utils/local-storage.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/logger.ts b/lib/testing/src/lib/protractor/core/utils/logger.ts
index 9180781868..a4354af2a8 100644
--- a/lib/testing/src/lib/protractor/core/utils/logger.ts
+++ b/lib/testing/src/lib/protractor/core/utils/logger.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/protractor.util.ts b/lib/testing/src/lib/protractor/core/utils/protractor.util.ts
index 16b91f1c82..9675b8d4be 100644
--- a/lib/testing/src/lib/protractor/core/utils/protractor.util.ts
+++ b/lib/testing/src/lib/protractor/core/utils/protractor.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/public-api.ts b/lib/testing/src/lib/protractor/core/utils/public-api.ts
index 00b4b2cc77..375b972636 100644
--- a/lib/testing/src/lib/protractor/core/utils/public-api.ts
+++ b/lib/testing/src/lib/protractor/core/utils/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/core/utils/wait-actions.ts b/lib/testing/src/lib/protractor/core/utils/wait-actions.ts
index 165f3555c8..adadd05c00 100644
--- a/lib/testing/src/lib/protractor/core/utils/wait-actions.ts
+++ b/lib/testing/src/lib/protractor/core/utils/wait-actions.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/application.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/application.ts
index 31cacdb6a6..39e1f8fde1 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/application.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/application.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/descriptor.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/descriptor.ts
index afe9afd5af..d78423f304 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/descriptor.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/descriptor.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/form-cloud.service.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/form-cloud.service.ts
index 66039f6ca2..bc60cf0fd3 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/form-cloud.service.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/form-cloud.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/message-events.service.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/message-events.service.ts
index 032d2c600f..21ad34b529 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/message-events.service.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/message-events.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/process-definitions.service.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/process-definitions.service.ts
index 9054813b7f..9c4e592093 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/process-definitions.service.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/process-definitions.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/process-instances.service.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/process-instances.service.ts
index 84ca6a1b04..4002da9e56 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/process-instances.service.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/process-instances.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/process.services.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/process.services.ts
index ecd27c1753..a0a8f8326f 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/process.services.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/process.services.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/project.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/project.ts
index 17e47abd43..2a91a72962 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/project.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/project.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/public-api.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/public-api.ts
index 3ea529cfd1..fe054ac090 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/actions/tasks.service.ts b/lib/testing/src/lib/protractor/process-services-cloud/actions/tasks.service.ts
index 6ef96de8ca..eaad3b763c 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/actions/tasks.service.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/actions/tasks.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/app/app-list-cloud.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/app/app-list-cloud.page.ts
index ff5d5f055e..91aee4eeea 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/app/app-list-cloud.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/app/app-list-cloud.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/app/public-api.ts b/lib/testing/src/lib/protractor/process-services-cloud/app/public-api.ts
index c3438aaa73..066c1b53b8 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/app/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/app/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-process-filter-dialog.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-process-filter-dialog.page.ts
index dccf7a3936..6e3edcb35f 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-process-filter-dialog.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-process-filter-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-task-filter-dialog.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-task-filter-dialog.page.ts
index dd8b7b1270..a0a7ebd19f 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-task-filter-dialog.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/edit-task-filter-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/public-api.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/public-api.ts
index 098d588160..d821c4f514 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/dialog/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-process-filter-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-process-filter-cloud-component.page.ts
index cc5a1a5b1e..a30b286df2 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-process-filter-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-process-filter-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-task-filter-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-task-filter-cloud-component.page.ts
index 1376c78add..2dde1bf390 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-task-filter-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/edit-task-filter-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/form-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/form-cloud-component.page.ts
index aa8be66a72..736714a55a 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/form-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/form-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/public-api.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/public-api.ts
index 6327b00ba9..26d6ea1c56 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/attach-file-widget-cloud.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/attach-file-widget-cloud.page.ts
index cd48382929..0a485d445d 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/attach-file-widget-cloud.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/attach-file-widget-cloud.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/process-cloud-widget.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/process-cloud-widget.page.ts
index 74e099cf25..b7a2f31ea6 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/process-cloud-widget.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/process-cloud-widget.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/public-api.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/public-api.ts
index 308c7bf789..3c890a9c5c 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/form/widget/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/group-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/group-cloud-component.page.ts
index 739f123298..94bbf18595 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/group-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/group-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/people-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/people-cloud-component.page.ts
index e9d6b21c31..130e5f79a9 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/people-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/people-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/process-filters-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/process-filters-cloud-component.page.ts
index 0a74ce93dc..41fc3b0de3 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/process-filters-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/process-filters-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/process-header-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/process-header-cloud-component.page.ts
index ba2a35ecce..cdf22b7304 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/process-header-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/process-header-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/process-list-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/process-list-cloud-component.page.ts
index c5787c82ca..ea2a1a45a6 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/process-list-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/process-list-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/public-api.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/public-api.ts
index 517a91bc92..06cba16947 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/start-process-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/start-process-cloud-component.page.ts
index d612a1615d..bd1ab1b08a 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/start-process-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/start-process-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/start-tasks-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/start-tasks-cloud-component.page.ts
index 0e65a661e2..3a4d9fface 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/start-tasks-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/start-tasks-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-filters-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-filters-cloud-component.page.ts
index fabed28ef2..4bdae817e4 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-filters-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-filters-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-form-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-form-cloud-component.page.ts
index b76a9b7d85..e694c732e5 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-form-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-form-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-header-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-header-cloud-component.page.ts
index 1dde961658..5ea15989ff 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-header-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-header-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-list-cloud-component.page.ts b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-list-cloud-component.page.ts
index 373bdace6e..4e0f8a8c31 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/pages/task-list-cloud-component.page.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/pages/task-list-cloud-component.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/public-api.ts b/lib/testing/src/lib/protractor/process-services-cloud/public-api.ts
index 2b0250cf02..c7674a841a 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services-cloud/resources/resources.ts b/lib/testing/src/lib/protractor/process-services-cloud/resources/resources.ts
index 996a2cb9d9..d94eb5e4b1 100644
--- a/lib/testing/src/lib/protractor/process-services-cloud/resources/resources.ts
+++ b/lib/testing/src/lib/protractor/process-services-cloud/resources/resources.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/applications.util.ts b/lib/testing/src/lib/protractor/process-services/actions/applications.util.ts
index b7faccc3c8..379346422f 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/applications.util.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/applications.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/integration.service.ts b/lib/testing/src/lib/protractor/process-services/actions/integration.service.ts
index 671addf091..bfa2ce1817 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/integration.service.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/integration.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/models.service.ts b/lib/testing/src/lib/protractor/process-services/actions/models.service.ts
index 005cbb8626..0010d0a6fe 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/models.service.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/models.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/process.util.ts b/lib/testing/src/lib/protractor/process-services/actions/process.util.ts
index 9122ed40f9..0a22bfc2bf 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/process.util.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/process.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/public-api.ts b/lib/testing/src/lib/protractor/process-services/actions/public-api.ts
index d93a7ad00d..e0edbde73e 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/task-actions.util.ts b/lib/testing/src/lib/protractor/process-services/actions/task-actions.util.ts
index 6103fc25f3..adda9c3f1c 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/task-actions.util.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/task-actions.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/task.util.ts b/lib/testing/src/lib/protractor/process-services/actions/task.util.ts
index 14a65d9d4a..ccd70a7142 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/task.util.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/task.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/actions/user-filters.util.ts b/lib/testing/src/lib/protractor/process-services/actions/user-filters.util.ts
index 651405c899..8a20c4b949 100644
--- a/lib/testing/src/lib/protractor/process-services/actions/user-filters.util.ts
+++ b/lib/testing/src/lib/protractor/process-services/actions/user-filters.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/external-node-selector-dialog.page.ts b/lib/testing/src/lib/protractor/process-services/pages/external-node-selector-dialog.page.ts
index ed7028fc91..cfb4404871 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/external-node-selector-dialog.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/external-node-selector-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/filters.page.ts b/lib/testing/src/lib/protractor/process-services/pages/filters.page.ts
index cd7d4916b8..f9981121bf 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/filters.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/filters.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/process-filters.page.ts b/lib/testing/src/lib/protractor/process-services/pages/process-filters.page.ts
index fdde3f5e0d..7034bf14c8 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/process-filters.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/process-filters.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/process-instance-header.page.ts b/lib/testing/src/lib/protractor/process-services/pages/process-instance-header.page.ts
index d557b82a85..0497ffdaae 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/process-instance-header.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/process-instance-header.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/process-instance-tasks.page.ts b/lib/testing/src/lib/protractor/process-services/pages/process-instance-tasks.page.ts
index 9060bc6ca3..d3254feaf8 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/process-instance-tasks.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/process-instance-tasks.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/process-list.page.ts b/lib/testing/src/lib/protractor/process-services/pages/process-list.page.ts
index af7376c267..aedddbed7c 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/process-list.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/process-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/public-api.ts b/lib/testing/src/lib/protractor/process-services/pages/public-api.ts
index b15bd88c79..267c3924dd 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/select-apps-dialog.page.ts b/lib/testing/src/lib/protractor/process-services/pages/select-apps-dialog.page.ts
index ce22955957..55331dfad9 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/select-apps-dialog.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/select-apps-dialog.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/start-process.page.ts b/lib/testing/src/lib/protractor/process-services/pages/start-process.page.ts
index af18be2120..8484479538 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/start-process.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/start-process.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/task-filters.page.ts b/lib/testing/src/lib/protractor/process-services/pages/task-filters.page.ts
index 39d6f0d13c..355dbc53b9 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/task-filters.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/task-filters.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/task-form.page.ts b/lib/testing/src/lib/protractor/process-services/pages/task-form.page.ts
index 7c6a517ac9..b36670af6a 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/task-form.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/task-form.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/task-header.page.ts b/lib/testing/src/lib/protractor/process-services/pages/task-header.page.ts
index f4e34b370d..b62633d00e 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/task-header.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/task-header.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/pages/task-list.page.ts b/lib/testing/src/lib/protractor/process-services/pages/task-list.page.ts
index 329472c2cf..8ee5079e9c 100644
--- a/lib/testing/src/lib/protractor/process-services/pages/task-list.page.ts
+++ b/lib/testing/src/lib/protractor/process-services/pages/task-list.page.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/process-services/public-api.ts b/lib/testing/src/lib/protractor/process-services/public-api.ts
index 9b50b7ff58..6806dd8dc2 100644
--- a/lib/testing/src/lib/protractor/process-services/public-api.ts
+++ b/lib/testing/src/lib/protractor/process-services/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/protractor/public-api.ts b/lib/testing/src/lib/protractor/public-api.ts
index bd3a5b5d65..bc08f94e6d 100644
--- a/lib/testing/src/lib/protractor/public-api.ts
+++ b/lib/testing/src/lib/protractor/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/public-api.ts b/lib/testing/src/lib/public-api.ts
index 71bb9f197e..3b7e970327 100644
--- a/lib/testing/src/lib/public-api.ts
+++ b/lib/testing/src/lib/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/api/api.service.ts b/lib/testing/src/lib/shared/api/api.service.ts
index 3886a768b5..3632f46fdb 100644
--- a/lib/testing/src/lib/shared/api/api.service.ts
+++ b/lib/testing/src/lib/shared/api/api.service.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/api/api.util.ts b/lib/testing/src/lib/shared/api/api.util.ts
index d025eeeeaa..f88c9c630b 100644
--- a/lib/testing/src/lib/shared/api/api.util.ts
+++ b/lib/testing/src/lib/shared/api/api.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/api/e2e-request-api.helper.ts b/lib/testing/src/lib/shared/api/e2e-request-api.helper.ts
index 6f4bf92d2a..371445d2a7 100644
--- a/lib/testing/src/lib/shared/api/e2e-request-api.helper.ts
+++ b/lib/testing/src/lib/shared/api/e2e-request-api.helper.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/api/public-api.ts b/lib/testing/src/lib/shared/api/public-api.ts
index 0f33c81bef..1b4a337b85 100644
--- a/lib/testing/src/lib/shared/api/public-api.ts
+++ b/lib/testing/src/lib/shared/api/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/index.ts b/lib/testing/src/lib/shared/index.ts
index 168d0362d0..2bab8c11a1 100644
--- a/lib/testing/src/lib/shared/index.ts
+++ b/lib/testing/src/lib/shared/index.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/utils/logger.ts b/lib/testing/src/lib/shared/utils/logger.ts
index 835a84390e..72c33f2e64 100644
--- a/lib/testing/src/lib/shared/utils/logger.ts
+++ b/lib/testing/src/lib/shared/utils/logger.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/utils/public-api.ts b/lib/testing/src/lib/shared/utils/public-api.ts
index 32c5e846c0..89d4feac99 100644
--- a/lib/testing/src/lib/shared/utils/public-api.ts
+++ b/lib/testing/src/lib/shared/utils/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/lib/shared/utils/string.util.ts b/lib/testing/src/lib/shared/utils/string.util.ts
index b4f915c46a..d80807cec9 100644
--- a/lib/testing/src/lib/shared/utils/string.util.ts
+++ b/lib/testing/src/lib/shared/utils/string.util.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/public-api.ts b/lib/testing/src/public-api.ts
index 122c6594c5..970e432947 100644
--- a/lib/testing/src/public-api.ts
+++ b/lib/testing/src/public-api.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/lib/testing/src/resources.ts b/lib/testing/src/resources.ts
index 079ca6559e..ac1d7219df 100644
--- a/lib/testing/src/resources.ts
+++ b/lib/testing/src/resources.ts
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/license-community.txt b/license-community.txt
index b453ec6857..085cd6692f 100644
--- a/license-community.txt
+++ b/license-community.txt
@@ -1,6 +1,6 @@
/*!
* @license
- * Copyright 2019 Alfresco Software, Ltd.
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/package.json b/package.json
index bdc0bbc65e..7d1ba28f5f 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"commit": "b644b39d17396330d2a67509f58c5b9e890b9b13",
"description": "Alfresco Angular components",
"version": "6.0.0-A.4",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"scripts": {
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"ng": "nx",
diff --git a/tools/doc/mdNav.ts b/tools/doc/mdNav.ts
index a7a3b2e255..b24081c6ec 100644
--- a/tools/doc/mdNav.ts
+++ b/tools/doc/mdNav.ts
@@ -1,3 +1,19 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
export class MDNav {
@@ -50,93 +66,63 @@ export class MDNav {
}
emph(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'emphasis' && test(h);
- }, index);
+ return this.find((h) => h.type === 'emphasis' && test(h), index);
}
heading(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'heading' && test(h);
- }, index);
+ return this.find((h) => h.type === 'heading' && test(h), index);
}
headings(test: (element: any) => boolean = () => true, index: number = 0): MDNav[] {
- return this.findAll((h) => {
- return h.type === 'heading' && test(h);
- }, index);
+ return this.findAll((h) => h.type === 'heading' && test(h), index);
}
html(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'html' && test(h);
- }, index);
+ return this.find((h) => h.type === 'html' && test(h), index);
}
link(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'link' && test(h);
- }, index);
+ return this.find((h) => h.type === 'link' && test(h), index);
}
links(test: (element: any) => boolean = () => true, index: number = 0): MDNav[] {
- return this.findAll((h) => {
- return h.type === 'link' && test(h);
- }, index);
+ return this.findAll((h) => h.type === 'link' && test(h), index);
}
list(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'list' && test(h);
- }, index);
+ return this.find((h) => h.type === 'list' && test(h), index);
}
listItem(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'listItem' && test(h);
- }, index);
+ return this.find((h) => h.type === 'listItem' && test(h), index);
}
listItems(test: (element: any) => boolean = () => true, index: number = 0): MDNav[] {
- return this.findAll((h) => {
- return h.type === 'listItem' && test(h);
- }, index);
+ return this.findAll((h) => h.type === 'listItem' && test(h), index);
}
paragraph(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'paragraph' && test(h);
- }, index);
+ return this.find((h) => h.type === 'paragraph' && test(h), index);
}
strong(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'strong' && test(h);
- }, index);
+ return this.find((h) => h.type === 'strong' && test(h), index);
}
table(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'table' && test(h);
- }, index);
+ return this.find((h) => h.type === 'table' && test(h), index);
}
tableRow(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'tableRow' && test(h);
- }, index);
+ return this.find((h) => h.type === 'tableRow' && test(h), index);
}
tableCell(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'tableCell' && test(h);
- }, index);
+ return this.find((h) => h.type === 'tableCell' && test(h), index);
}
text(test: (element: any) => boolean = () => true, index: number = 0): MDNav {
- return this.find((h) => {
- return h.type === 'text' && test(h);
- }, index);
+ return this.find((h) => h.type === 'text' && test(h), index);
}
get item(): any {
diff --git a/tools/doc/mqDefs.ts b/tools/doc/mqDefs.ts
index 6f43d02540..9b3861eb5d 100644
--- a/tools/doc/mqDefs.ts
+++ b/tools/doc/mqDefs.ts
@@ -1,9 +1,26 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import { MDAST } from 'mdast';
import { UNIST } from 'unist';
import * as mdToString from 'mdast-util-to-string';
import * as jsyaml from 'js-yaml';
-export let schema = `
+export const schema = `
type Query {
documents(idFilter: String = ""): [Root]
}
diff --git a/tools/doc/package.json b/tools/doc/package.json
index 140df2efc6..d7f0f25842 100644
--- a/tools/doc/package.json
+++ b/tools/doc/package.json
@@ -2,7 +2,7 @@
"name": "adf-doc-tools",
"description": "ADF doc tools",
"version": "4.2.0",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"scripts": {},
"dependencies": {
"@alfresco/js-api": "5.5.0-780",
diff --git a/tools/doc/remarkGraphQl.ts b/tools/doc/remarkGraphQl.ts
index 1089dabff1..9911a2df15 100644
--- a/tools/doc/remarkGraphQl.ts
+++ b/tools/doc/remarkGraphQl.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as fs from 'fs';
import * as path from 'path';
diff --git a/tools/doc/reviewChecker.ts b/tools/doc/reviewChecker.ts
index 44de743298..3b8e03f683 100644
--- a/tools/doc/reviewChecker.ts
+++ b/tools/doc/reviewChecker.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as path from 'path';
import * as fs from 'fs';
import * as process from 'process';
@@ -60,7 +77,7 @@ const docFiles = getDocFilePaths(docsFolderPath);
const docNames = of(docFiles);
-console.log("'Name','Review date','Commits since review','Score'");
+console.log('\'Name\',\'Review date\',\'Commits since review\',\'Score\'');
docNames.subscribe(docs => {
@@ -72,7 +89,7 @@ docNames.subscribe(docs => {
}
const vars = {
- 'path': 'lib/' + srcData[key].path
+ path: 'lib/' + srcData[key].path
};
client.request(query, vars).then(data => {
diff --git a/tools/doc/sourceInfoClasses.ts b/tools/doc/sourceInfoClasses.ts
index 02421042cd..fbb94d46ff 100644
--- a/tools/doc/sourceInfoClasses.ts
+++ b/tools/doc/sourceInfoClasses.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
const skipMethodNames = [
'ngOnChanges',
'ngOnDestroy',
diff --git a/tools/doc/stoplist.ts b/tools/doc/stoplist.ts
index 5b4802525f..6aa4c1b804 100644
--- a/tools/doc/stoplist.ts
+++ b/tools/doc/stoplist.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as fs from 'fs';
/* "Stoplist" of regular expressions to match against strings. */
diff --git a/tools/doc/tools/fileChecker.ts b/tools/doc/tools/fileChecker.ts
index 5b96f00833..2371d6bc04 100644
--- a/tools/doc/tools/fileChecker.ts
+++ b/tools/doc/tools/fileChecker.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as path from 'path';
import * as fs from 'fs';
import { selectAll } from 'unist-util-select';
diff --git a/tools/doc/tools/gqIndex.ts b/tools/doc/tools/gqIndex.ts
index 47dd41a2c7..9a8c5ccfc4 100644
--- a/tools/doc/tools/gqIndex.ts
+++ b/tools/doc/tools/gqIndex.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as fs from 'fs';
import * as path from 'path';
import * as ejs from 'ejs';
diff --git a/tools/doc/tools/linkFixer.ts b/tools/doc/tools/linkFixer.ts
index f34670be52..f2e5bff580 100644
--- a/tools/doc/tools/linkFixer.ts
+++ b/tools/doc/tools/linkFixer.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as path from 'path';
import * as fs from 'fs';
import { selectAll } from 'unist-util-select';
diff --git a/tools/doc/tools/sourceLinker.ts b/tools/doc/tools/sourceLinker.ts
index b8f6c417cc..ae41b6e771 100644
--- a/tools/doc/tools/sourceLinker.ts
+++ b/tools/doc/tools/sourceLinker.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as path from 'path';
import { select } from 'unist-util-select';
import * as ngHelpers from '../ngHelpers';
diff --git a/tools/doc/tools/tsInfo.ts b/tools/doc/tools/tsInfo.ts
index 0565d5da86..5bc697dfa8 100644
--- a/tools/doc/tools/tsInfo.ts
+++ b/tools/doc/tools/tsInfo.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as fs from 'fs';
import * as path from 'path';
import * as replaceSection from 'mdast-util-heading-range';
diff --git a/tools/doc/tools/tutorialIndex.ts b/tools/doc/tools/tutorialIndex.ts
index acf628dbca..3e2c710ddd 100644
--- a/tools/doc/tools/tutorialIndex.ts
+++ b/tools/doc/tools/tutorialIndex.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as fs from 'fs';
import * as path from 'path';
import * as replaceSection from 'mdast-util-heading-range';
diff --git a/tools/doc/tools/typeLinker.ts b/tools/doc/tools/typeLinker.ts
index 1a3a0d5a6e..582723c10a 100644
--- a/tools/doc/tools/typeLinker.ts
+++ b/tools/doc/tools/typeLinker.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as path from 'path';
import * as unist from '../unistHelpers';
import * as ngHelpers from '../ngHelpers';
diff --git a/tools/tslint-rules/adfClassNameRule.ts b/tools/tslint-rules/adfClassNameRule.ts
index cc7df6838c..597188dcb1 100644
--- a/tools/tslint-rules/adfClassNameRule.ts
+++ b/tools/tslint-rules/adfClassNameRule.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as Lint from 'tslint';
import * as ts from 'typescript';
import { sprintf } from 'sprintf-js';
diff --git a/tools/tslint-rules/adfPrefixNameRule.ts b/tools/tslint-rules/adfPrefixNameRule.ts
index f33f90d0d3..77f9a2fc3a 100644
--- a/tools/tslint-rules/adfPrefixNameRule.ts
+++ b/tools/tslint-rules/adfPrefixNameRule.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import * as Lint from 'tslint';
import * as ts from 'typescript';
import { sprintf } from 'sprintf-js';
@@ -12,7 +29,7 @@ export class Rule extends Lint.Rules.AbstractRule {
rationale: `Angular allows for an alternative syntax on-*. If the event itself was prefixed with on this would result in an on-onEvent binding expression`,
options: null,
optionsDescription: `Not configurable.`,
- typescriptOnly: true,
+ typescriptOnly: true
};
static FAILURE_STRING: string = 'In the class "%s", the output ' +
@@ -27,11 +44,11 @@ export class Rule extends Lint.Rules.AbstractRule {
class ADFOutputPrefixNameRule extends NgWalker {
visitNgOutput(property: ts.PropertyDeclaration, output: ts.Decorator, args: string[]) {
- let className = (property).parent.name.text;
- let memberName = (property.name).text;
+ const className = (property).parent.name.text;
+ const memberName = (property.name).text;
if (memberName && memberName.startsWith('on')) {
- let failureConfig: string[] = [className, memberName];
+ const failureConfig: string[] = [className, memberName];
failureConfig.unshift(Rule.FAILURE_STRING);
this.addFailure(
this.createFailure(
diff --git a/tools/tslint-rules/index.ts b/tools/tslint-rules/index.ts
index 12275ee2f5..bac82f93a8 100644
--- a/tools/tslint-rules/index.ts
+++ b/tools/tslint-rules/index.ts
@@ -1,3 +1,20 @@
+/*!
+ * @license
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
export { Rule as ADFClassNameRule } from './adfClassNameRule';
export { Rule as ADFComponentSelectorRule } from './adfFileNameRule';
export { Rule as ADFOutputPrefixNameRule } from './adfPrefixNameRule';
diff --git a/tools/tslint-rules/package.json b/tools/tslint-rules/package.json
index 89f0c59f2b..51da3c25c7 100644
--- a/tools/tslint-rules/package.json
+++ b/tools/tslint-rules/package.json
@@ -2,7 +2,7 @@
"name": "adf-tslint-rules",
"description": "Custom Rules for the ADF project",
"version": "0.0.7",
- "author": "Alfresco Software, Ltd.",
+ "author": "Hyland Software, Inc. and its affiliates",
"scripts": {
"build": "tsc",
"tscv": "tsc --version",