@eclipse-che/che-devworkspace-generator 7.88.0-next-a2e5c63 → 7.88.0-next-be69259

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/lib/api/devfile-context.d.ts +1 -1
  2. package/lib/bitbucket/bitbucket-module.d.ts +1 -1
  3. package/lib/bitbucket/bitbucket-module.js +1 -1
  4. package/lib/bitbucket/bitbucket-resolver.d.ts +1 -1
  5. package/lib/bitbucket/bitbucket-resolver.js +1 -1
  6. package/lib/bitbucket/bitbucket-url.d.ts +1 -1
  7. package/lib/bitbucket/bitbucket-url.js +1 -1
  8. package/lib/bitbucket-server/bitbucket-server-module.d.ts +1 -1
  9. package/lib/bitbucket-server/bitbucket-server-module.js +1 -1
  10. package/lib/bitbucket-server/bitbucket-server-resolver.d.ts +1 -1
  11. package/lib/bitbucket-server/bitbucket-server-resolver.js +1 -1
  12. package/lib/bitbucket-server/bitbucket-server-url.d.ts +1 -1
  13. package/lib/bitbucket-server/bitbucket-server-url.js +1 -1
  14. package/lib/devfile/dev-container-component-finder.d.ts +1 -1
  15. package/lib/devfile/dev-container-component-finder.js +1 -1
  16. package/lib/devfile/dev-container-component-inserter.d.ts +1 -1
  17. package/lib/devfile/dev-container-component-inserter.js +1 -1
  18. package/lib/devfile/devfile-module.d.ts +1 -1
  19. package/lib/devfile/devfile-module.js +1 -1
  20. package/lib/devfile-schema/devfile-schema-module.d.ts +1 -1
  21. package/lib/devfile-schema/devfile-schema-module.js +1 -1
  22. package/lib/devfile-schema/devfile-schema-validator.js +1 -1
  23. package/lib/entrypoint.d.ts +1 -1
  24. package/lib/entrypoint.js +1 -1
  25. package/lib/fetch/fetch-module.d.ts +1 -1
  26. package/lib/fetch/fetch-module.js +1 -1
  27. package/lib/fetch/url-fetcher.js +1 -1
  28. package/lib/generate.d.ts +1 -1
  29. package/lib/generate.js +1 -1
  30. package/lib/github/github-module.d.ts +1 -1
  31. package/lib/github/github-module.js +1 -1
  32. package/lib/github/github-resolver.d.ts +1 -1
  33. package/lib/github/github-resolver.js +1 -1
  34. package/lib/github/github-url.d.ts +1 -1
  35. package/lib/github/github-url.js +1 -1
  36. package/lib/inversify/inversify-binding.d.ts +1 -1
  37. package/lib/inversify/inversify-binding.js +1 -1
  38. package/lib/main.d.ts +1 -1
  39. package/lib/main.js +1 -1
  40. package/lib/plugin-registry/plugin-registry-module.d.ts +1 -1
  41. package/lib/plugin-registry/plugin-registry-module.js +1 -1
  42. package/lib/plugin-registry/plugin-registry-resolver.d.ts +1 -1
  43. package/lib/plugin-registry/plugin-registry-resolver.js +1 -1
  44. package/lib/resolve/git-url-resolver.js +1 -1
  45. package/lib/resolve/resolve-module.d.ts +1 -1
  46. package/lib/resolve/resolve-module.js +1 -1
  47. package/lib/resolve/resolver.d.ts +1 -1
  48. package/lib/resolve/resolver.js +1 -1
  49. package/lib/resolve/url.d.ts +1 -1
  50. package/lib/resolve/url.js +1 -1
  51. package/lib/types.d.ts +1 -1
  52. package/lib/types.js +1 -1
  53. package/package.json +1 -1
  54. package/src/api/devfile-context.ts +1 -1
  55. package/src/bitbucket/bitbucket-module.ts +1 -1
  56. package/src/bitbucket/bitbucket-resolver.ts +1 -1
  57. package/src/bitbucket/bitbucket-url.ts +1 -1
  58. package/src/bitbucket-server/bitbucket-server-module.ts +1 -1
  59. package/src/bitbucket-server/bitbucket-server-resolver.ts +1 -1
  60. package/src/bitbucket-server/bitbucket-server-url.ts +1 -1
  61. package/src/devfile/dev-container-component-finder.ts +1 -1
  62. package/src/devfile/dev-container-component-inserter.ts +1 -1
  63. package/src/devfile/devfile-module.ts +1 -1
  64. package/src/devfile-schema/devfile-schema-module.ts +1 -1
  65. package/src/devfile-schema/devfile-schema-validator.ts +1 -1
  66. package/src/entrypoint.ts +1 -1
  67. package/src/fetch/fetch-module.ts +1 -1
  68. package/src/fetch/url-fetcher.ts +1 -1
  69. package/src/generate.ts +1 -1
  70. package/src/github/github-module.ts +1 -1
  71. package/src/github/github-resolver.ts +1 -1
  72. package/src/github/github-url.ts +1 -1
  73. package/src/inversify/inversify-binding.ts +1 -1
  74. package/src/main.ts +1 -1
  75. package/src/plugin-registry/plugin-registry-module.ts +1 -1
  76. package/src/plugin-registry/plugin-registry-resolver.ts +1 -1
  77. package/src/resolve/git-url-resolver.ts +1 -1
  78. package/src/resolve/resolve-module.ts +1 -1
  79. package/src/resolve/resolver.ts +1 -1
  80. package/src/resolve/url.ts +1 -1
  81. package/src/types.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.bitbucketModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2023 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2023 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2023 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.bitbucketServerModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2023 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2023 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2023 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2023 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.devfileModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2022 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.devfileSchemaModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2023 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -27,7 +27,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
27
27
  exports.__esModule = true;
28
28
  exports.DevfileSchemaValidator = void 0;
29
29
  /**********************************************************************
30
- * Copyright (c) 2023 Red Hat, Inc.
30
+ * Copyright (c) 2022-2024
31
31
  *
32
32
  * This program and the accompanying materials are made
33
33
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
package/lib/entrypoint.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  "use strict";
3
3
  /**********************************************************************
4
- * Copyright (c) 2022 Red Hat, Inc.
4
+ * Copyright (c) 2022-2024
5
5
  *
6
6
  * This program and the accompanying materials are made
7
7
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.fetchModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2022 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -44,7 +44,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
44
44
  exports.__esModule = true;
45
45
  exports.UrlFetcher = void 0;
46
46
  /**********************************************************************
47
- * Copyright (c) 2022 Red Hat, Inc.
47
+ * Copyright (c) 2022-2024
48
48
  *
49
49
  * This program and the accompanying materials are made
50
50
  * available under the terms of the Eclipse Public License 2.0
package/lib/generate.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
package/lib/generate.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.githubModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2022 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -38,7 +38,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
38
38
  exports.__esModule = true;
39
39
  exports.InversifyBinding = void 0;
40
40
  /**********************************************************************
41
- * Copyright (c) 2022 Red Hat, Inc.
41
+ * Copyright (c) 2022-2024
42
42
  *
43
43
  * This program and the accompanying materials are made
44
44
  * available under the terms of the Eclipse Public License 2.0
package/lib/main.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
package/lib/main.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.pluginRegistryModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2022 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -8,7 +8,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8
8
  exports.__esModule = true;
9
9
  exports.GitUrlResolver = void 0;
10
10
  /**********************************************************************
11
- * Copyright (c) 2023 Red Hat, Inc.
11
+ * Copyright (c) 2022-2024
12
12
  *
13
13
  * This program and the accompanying materials are made
14
14
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.resolveModule = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2023 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2023 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**********************************************************************
3
- * Copyright (c) 2023 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
package/lib/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
package/lib/types.js CHANGED
@@ -2,7 +2,7 @@
2
2
  exports.__esModule = true;
3
3
  exports.TYPES = void 0;
4
4
  /**********************************************************************
5
- * Copyright (c) 2023 Red Hat, Inc.
5
+ * Copyright (c) 2022-2024
6
6
  *
7
7
  * This program and the accompanying materials are made
8
8
  * available under the terms of the Eclipse Public License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-che/che-devworkspace-generator",
3
- "version": "7.88.0-next-a2e5c63",
3
+ "version": "7.88.0-next-be69259",
4
4
  "private": false,
5
5
  "description": "Generates DevWorkspaces by transforming existing devfiles",
6
6
  "main": "lib/entrypoint.js",
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
package/src/entrypoint.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**********************************************************************
3
- * Copyright (c) 2022 Red Hat, Inc.
3
+ * Copyright (c) 2022-2024
4
4
  *
5
5
  * This program and the accompanying materials are made
6
6
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
package/src/generate.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
package/src/main.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2022 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0
package/src/types.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**********************************************************************
2
- * Copyright (c) 2023 Red Hat, Inc.
2
+ * Copyright (c) 2022-2024
3
3
  *
4
4
  * This program and the accompanying materials are made
5
5
  * available under the terms of the Eclipse Public License 2.0