@epistola.app/valtimo-plugin 0.14.0 → 0.15.0

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.
@@ -1,7 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { ActivatedRoute, Router } from '@angular/router';
3
3
  import { EpistolaAdminService } from '../../services/epistola-admin.service';
4
- import { BpmnValidationReport, BpmnValidationViolation, ChangelogRelease, ClasspathCatalog, ContractCompatibilitySeverity, FormCarrierIssue, LegacyOverrideForm, PendingJob, PluginUsageEntry } from '../../models';
4
+ import { BpmnValidationReport, BpmnValidationViolation, ChangelogRelease, ClasspathCatalog, ContractCompatibilitySeverity, LegacyOverrideForm, PendingJob, PluginUsageEntry, VersionCheckStatus } from '../../models';
5
5
  import * as i0 from "@angular/core";
6
6
  /**
7
7
  * Combined view model for a single plugin configuration card.
@@ -33,6 +33,7 @@ export declare class EpistolaAdminPageComponent implements OnInit {
33
33
  loading: boolean;
34
34
  pluginVersion: string | null;
35
35
  pluginContractVersion: string | null;
36
+ versionCheck: VersionCheckStatus | null;
36
37
  changelog: ChangelogRelease[] | null;
37
38
  changelogLoading: boolean;
38
39
  validationReport: BpmnValidationReport | null;
@@ -50,15 +51,6 @@ export declare class EpistolaAdminPageComponent implements OnInit {
50
51
  type: 'success' | 'error';
51
52
  message: string;
52
53
  } | null;
53
- formIssues: FormCarrierIssue[] | null;
54
- formIssuesLoading: boolean;
55
- repairingFormIds: Set<string>;
56
- repairingAll: boolean;
57
- formFeedback: {
58
- formId: string;
59
- type: 'success' | 'error';
60
- message: string;
61
- } | null;
62
54
  legacyOverrideForms: LegacyOverrideForm[] | null;
63
55
  legacyOverrideLoading: boolean;
64
56
  private connectionStatuses;
@@ -73,9 +65,9 @@ export declare class EpistolaAdminPageComponent implements OnInit {
73
65
  get validationViolations(): BpmnValidationViolation[];
74
66
  /** Scan cadence in whole minutes, for the "refreshes every N min" note. */
75
67
  get refreshIntervalMinutes(): number;
76
- /** Combined "forms needing attention" count for the tab badge (carrier + legacy override). */
68
+ /** Forms that still need their legacy override mapping migrated. */
77
69
  get formsAttentionCount(): number;
78
- /** Whether the forms tab has loaded at least one of its two scans. */
70
+ /** Whether the legacy override scan has completed. */
79
71
  get formsScanLoaded(): boolean;
80
72
  ngOnInit(): void;
81
73
  selectConfiguration(card: ConfigurationCard): void;
@@ -84,14 +76,13 @@ export declare class EpistolaAdminPageComponent implements OnInit {
84
76
  contractLabelKey(card: ConfigurationCard): string;
85
77
  contractBodyKey(card: ConfigurationCard): string;
86
78
  versionWithContract(version: string | null | undefined, contractVersion: string | null | undefined): string;
79
+ get versionCheckNoticeType(): 'error' | 'warning' | 'info' | 'success' | null;
80
+ get versionCheckTitleKey(): string | null;
81
+ get versionCheckBodyKey(): string | null;
87
82
  backToOverview(): void;
88
83
  setActiveTab(tab: 'actions' | 'pending' | 'catalogs'): void;
89
84
  setOverviewTab(tab: 'configurations' | 'validations' | 'changelog' | 'forms'): void;
90
85
  private loadLegacyOverrideForms;
91
- private loadFormIssues;
92
- isRepairingForm(issue: FormCarrierIssue): boolean;
93
- repairForm(issue: FormCarrierIssue): void;
94
- repairAllForms(): void;
95
86
  private loadChangelog;
96
87
  refresh(): void;
97
88
  exportProcessLink(entry: PluginUsageEntry): void;
@@ -64,6 +64,7 @@ export declare class EpistolaDocumentPreviewComponent implements FormioCustomCom
64
64
  * (e.g. Formio builder), in which case the component fails closed.
65
65
  */
66
66
  private get currentTaskId();
67
+ private get hasRuntimeContext();
67
68
  /**
68
69
  * The override mapping as a JSONata expression for the design-mode summary.
69
70
  * Legacy `form:`-ref objects are converted on the fly for display.
@@ -0,0 +1,12 @@
1
+ import { Injector, Type } from '@angular/core';
2
+ import { createCustomFormioComponent, FormioCustomComponentInfo } from '@valtimo/components';
3
+ export type ValtimoFormioComponentConstructor = ReturnType<typeof createCustomFormioComponent>;
4
+ export type ValtimoFormioComponent = InstanceType<ValtimoFormioComponentConstructor>;
5
+ export type ValtimoFormioComponentEnhancer = (baseComponent: ValtimoFormioComponentConstructor) => ValtimoFormioComponentConstructor;
6
+ /**
7
+ * Registers an Angular custom element through Valtimo and optionally replaces
8
+ * its Formio implementation with a subclass of Valtimo's public bridge class.
9
+ *
10
+ * Keep all direct access to Formio's global component registry in this adapter.
11
+ */
12
+ export declare function registerEpistolaFormioComponent(options: FormioCustomComponentInfo, angularComponent: Type<unknown>, injector: Injector, enhance?: ValtimoFormioComponentEnhancer): void;
@@ -2,8 +2,8 @@ import { ModuleWithProviders } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  import * as i1 from "@angular/common";
4
4
  import * as i2 from "@angular/common/http";
5
- import * as i3 from "@valtimo/plugin";
6
- import * as i4 from "@valtimo/components";
5
+ import * as i3 from "@valtimo/components";
6
+ import * as i4 from "@valtimo/plugin";
7
7
  import * as i5 from "./epistola-admin-routing.module";
8
8
  import * as i6 from "./components/epistola-configuration/epistola-configuration.component";
9
9
  import * as i7 from "./components/generate-document-configuration/generate-document-configuration.component";
@@ -16,6 +16,6 @@ import * as i13 from "./components/epistola-admin-page/epistola-admin-page.compo
16
16
  export declare class EpistolaPluginModule {
17
17
  static forRoot(): ModuleWithProviders<EpistolaPluginModule>;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<EpistolaPluginModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<EpistolaPluginModule, never, [typeof i1.CommonModule, typeof i2.HttpClientModule, typeof i3.PluginTranslatePipeModule, typeof i4.FormModule, typeof i4.InputModule, typeof i4.SelectModule, typeof i5.EpistolaAdminRoutingModule, typeof i6.EpistolaConfigurationComponent, typeof i7.GenerateDocumentConfigurationComponent, typeof i8.CheckJobStatusConfigurationComponent, typeof i9.DownloadDocumentConfigurationComponent, typeof i10.EpistolaDocumentComponent, typeof i11.EpistolaRetryFormComponent, typeof i12.EpistolaDocumentPreviewComponent, typeof i13.EpistolaAdminPageComponent], [typeof i6.EpistolaConfigurationComponent, typeof i7.GenerateDocumentConfigurationComponent, typeof i8.CheckJobStatusConfigurationComponent, typeof i9.DownloadDocumentConfigurationComponent, typeof i10.EpistolaDocumentComponent, typeof i11.EpistolaRetryFormComponent, typeof i12.EpistolaDocumentPreviewComponent, typeof i13.EpistolaAdminPageComponent]>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<EpistolaPluginModule, never, [typeof i1.CommonModule, typeof i2.HttpClientModule, typeof i3.FormIoModule, typeof i4.PluginTranslatePipeModule, typeof i3.FormModule, typeof i3.InputModule, typeof i3.SelectModule, typeof i5.EpistolaAdminRoutingModule, typeof i6.EpistolaConfigurationComponent, typeof i7.GenerateDocumentConfigurationComponent, typeof i8.CheckJobStatusConfigurationComponent, typeof i9.DownloadDocumentConfigurationComponent, typeof i10.EpistolaDocumentComponent, typeof i11.EpistolaRetryFormComponent, typeof i12.EpistolaDocumentPreviewComponent, typeof i13.EpistolaAdminPageComponent], never>;
20
20
  static ɵinj: i0.ɵɵInjectorDeclaration<EpistolaPluginModule>;
21
21
  }
@@ -20,6 +20,29 @@ export type ContractCompatibilitySeverity = 'OK' | 'WARNING' | 'ERROR' | 'UNKNOW
20
20
  export interface VersionInfo {
21
21
  pluginVersion: string;
22
22
  epistolaServerVersion?: string;
23
+ versionCheck: VersionCheckStatus;
24
+ }
25
+ /**
26
+ * Status of the public plugin release metadata check.
27
+ */
28
+ export interface VersionCheckStatus {
29
+ enabled: boolean;
30
+ checkedAt?: string | null;
31
+ currentVersion: string;
32
+ metadataAvailable: boolean;
33
+ preRelease: boolean;
34
+ latestVersion?: string | null;
35
+ updateAvailable: boolean;
36
+ releaseUrl?: string | null;
37
+ changelogUrl?: string | null;
38
+ latestStableVersion?: string | null;
39
+ stableReleaseUrl?: string | null;
40
+ stableChangelogUrl?: string | null;
41
+ supported: boolean;
42
+ supportEndingSoon: boolean;
43
+ minSupportedVersion?: string | null;
44
+ supportedUntil?: string | null;
45
+ lastError?: string | null;
23
46
  }
24
47
  /**
25
48
  * Describes a single usage of an Epistola plugin action within a process definition.
@@ -144,18 +167,6 @@ export interface BpmnValidationReport {
144
167
  refreshIntervalMs: number;
145
168
  violations: BpmnValidationViolation[];
146
169
  }
147
- /**
148
- * TEMPORARY (removed in 1.0.0). A form whose Epistola components are missing the
149
- * task-id carrier field — surfaced on the admin page so it can be repaired.
150
- * `readOnly` flags classpath-deployed forms (a repair there is reverted on the next
151
- * boot; fix the source instead).
152
- */
153
- export interface FormCarrierIssue {
154
- formId: string;
155
- name: string;
156
- missingComponents: number;
157
- readOnly: boolean;
158
- }
159
170
  /**
160
171
  * TEMPORARY. A form whose `epistola-document-preview` components still use the legacy
161
172
  * override-mapping object format (`{ scope: { path: "form:key" } }`) instead of the new
@@ -169,17 +180,3 @@ export interface LegacyOverrideForm {
169
180
  legacyComponents: number;
170
181
  readOnly: boolean;
171
182
  }
172
- /** TEMPORARY (removed in 1.0.0). Outcome of repairing one form's carrier. */
173
- export interface FormCarrierRepairResult {
174
- formId: string;
175
- name: string | null;
176
- success: boolean;
177
- componentsPatched: number;
178
- errorMessage: string | null;
179
- }
180
- /** TEMPORARY (removed in 1.0.0). Aggregate outcome of repairing all flagged forms. */
181
- export interface FormCarrierRepairSummary {
182
- formsRepaired: number;
183
- componentsPatched: number;
184
- failed: number;
185
- }
@@ -1,7 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { ConfigService } from '@valtimo/shared';
3
3
  import { Observable } from 'rxjs';
4
- import { BpmnValidationReport, CatalogRedeployResult, ChangelogRelease, ClasspathCatalog, ConnectionStatus, FormCarrierIssue, FormCarrierRepairResult, FormCarrierRepairSummary, LegacyOverrideForm, PendingJob, PluginUsageEntry, ReconcileResult, VersionInfo } from '../models';
4
+ import { BpmnValidationReport, CatalogRedeployResult, ChangelogRelease, ClasspathCatalog, ConnectionStatus, LegacyOverrideForm, PendingJob, PluginUsageEntry, ReconcileResult, VersionInfo } from '../models';
5
5
  import * as i0 from "@angular/core";
6
6
  /**
7
7
  * Service for Epistola plugin administrative operations.
@@ -64,12 +64,6 @@ export declare class EpistolaAdminService {
64
64
  * Export a single process link as a .process-link.json file.
65
65
  */
66
66
  exportProcessLink(processLinkId: string): Observable<Blob>;
67
- /** Forms whose Epistola components are missing the task-id carrier. */
68
- getFormCarrierIssues(): Observable<FormCarrierIssue[]>;
69
- /** Inject the task-id carrier into a single form's Epistola components. */
70
- repairFormCarrier(formId: string): Observable<FormCarrierRepairResult>;
71
- /** Repair every flagged form. */
72
- repairAllFormCarriers(): Observable<FormCarrierRepairSummary>;
73
67
  /** Forms whose preview components still use the legacy override-mapping object format. */
74
68
  getLegacyOverrideForms(): Observable<LegacyOverrideForm[]>;
75
69
  static ɵfac: i0.ɵɵFactoryDeclaration<EpistolaAdminService, never>;
@@ -1,13 +1,17 @@
1
1
  import { MenuService } from '@valtimo/components';
2
+ import { MenuItem } from '@valtimo/shared';
2
3
  import * as i0 from "@angular/core";
4
+ export declare function appendEpistolaMenuItem(items: MenuItem[]): MenuItem[];
3
5
  /**
4
6
  * Registers the Epistola admin page menu item under the Admin > Other section.
5
- * Instantiated eagerly via ENVIRONMENT_INITIALIZER so the menu item
6
- * appears without any manual configuration in the host application.
7
+ * Registration is invoked by EpistolaRegistrationService during environment
8
+ * initialization, before Valtimo builds the configured menu.
7
9
  */
8
10
  export declare class EpistolaMenuService {
9
11
  private readonly menuService;
12
+ private registered;
10
13
  constructor(menuService: MenuService);
14
+ register(): void;
11
15
  static ɵfac: i0.ɵɵFactoryDeclaration<EpistolaMenuService, never>;
12
16
  static ɵprov: i0.ɵɵInjectableDeclaration<EpistolaMenuService>;
13
17
  }
@@ -24,7 +24,6 @@ export interface PreviewBlobRequest {
24
24
  */
25
25
  export interface DownloadDocumentRequest {
26
26
  taskId: string;
27
- caseDocumentId: string;
28
27
  documentVariable: string;
29
28
  tenantIdVariable: string;
30
29
  filename: string;
@@ -0,0 +1,12 @@
1
+ import { Injector } from '@angular/core';
2
+ import { EpistolaMenuService } from './epistola-menu.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class EpistolaRegistrationService {
5
+ private readonly injector;
6
+ private readonly menuService;
7
+ private registered;
8
+ constructor(injector: Injector, menuService: EpistolaMenuService);
9
+ register(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<EpistolaRegistrationService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<EpistolaRegistrationService>;
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epistola.app/valtimo-plugin",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Epistola document generation plugin for Valtimo",
5
5
  "license": "EUPL-1.2",
6
6
  "repository": {
@@ -10,6 +10,28 @@
10
10
  "sideEffects": false,
11
11
  "module": "fesm2022/epistola.app-valtimo-plugin.mjs",
12
12
  "typings": "index.d.ts",
13
+ "dependencies": {
14
+ "jsonata": "^2.2.2",
15
+ "tslib": "^2.6.0"
16
+ },
17
+ "peerDependencies": {
18
+ "@angular/common": ">=19.2.8 <20",
19
+ "@angular/core": ">=19.2.8 <20",
20
+ "@angular/elements": ">=19.2.8 <20",
21
+ "@angular/forms": ">=19.2.8 <20",
22
+ "@angular/platform-browser": ">=19.2.8 <20",
23
+ "@angular/router": ">=19.2.8 <20",
24
+ "@formio/angular": "7.0.0",
25
+ "@valtimo/components": ">=13.21.0 <14",
26
+ "@valtimo/plugin": ">=13.21.0 <14",
27
+ "@valtimo/process-link": ">=13.21.0 <14",
28
+ "@valtimo/security": ">=13.21.0 <14",
29
+ "@valtimo/shared": ">=13.21.0 <14",
30
+ "carbon-components-angular": "5.57.6",
31
+ "formiojs": "4.19.5",
32
+ "monaco-editor": ">=0.40.0 <1",
33
+ "rxjs": "^7.8.0"
34
+ },
13
35
  "exports": {
14
36
  "./package.json": {
15
37
  "default": "./package.json"
@@ -18,22 +40,5 @@
18
40
  "types": "./index.d.ts",
19
41
  "default": "./fesm2022/epistola.app-valtimo-plugin.mjs"
20
42
  }
21
- },
22
- "dependencies": {
23
- "jsonata": "^2.1.0",
24
- "tslib": "^2.6.0"
25
- },
26
- "peerDependencies": {
27
- "@angular/common": ">=17.0.0",
28
- "@angular/core": ">=17.0.0",
29
- "@angular/forms": ">=17.0.0",
30
- "@angular/router": ">=17.0.0",
31
- "@formio/angular": "^7.0.0",
32
- "@valtimo/components": "^13.21.0",
33
- "@valtimo/plugin": "^13.21.0",
34
- "@valtimo/process-link": "^13.21.0",
35
- "@valtimo/security": "^13.21.0",
36
- "@valtimo/shared": "^13.21.0",
37
- "monaco-editor": ">=0.40.0"
38
43
  }
39
44
  }
package/public_api.d.ts CHANGED
@@ -1,23 +1,2 @@
1
- export * from './lib/models';
2
- export * from './lib/services';
3
1
  export * from './lib/epistola.module';
4
2
  export * from './lib/epistola.specification';
5
- export * from './lib/epistola-runtime-config';
6
- export * from './lib/epistola-admin-routing.module';
7
- export * from './lib/components/epistola-admin-page/epistola-admin-page.component';
8
- export * from './lib/components/epistola-configuration/epistola-configuration.component';
9
- export * from './lib/components/generate-document-configuration/generate-document-configuration.component';
10
- export * from './lib/components/check-job-status-configuration/check-job-status-configuration.component';
11
- export * from './lib/components/download-document-configuration/download-document-configuration.component';
12
- export * from './lib/components/jsonata-editor/jsonata-editor.component';
13
- export * from './lib/components/mapping-builder/mapping-builder.component';
14
- export * from './lib/components/epistola-document/epistola-document.component';
15
- export * from './lib/components/epistola-document/epistola-document.formio';
16
- export * from './lib/components/epistola-retry-form/epistola-retry-form.component';
17
- export * from './lib/components/epistola-retry-form/epistola-retry-form.formio';
18
- export * from './lib/components/epistola-document-preview/epistola-document-preview.component';
19
- export * from './lib/components/epistola-document-preview/epistola-document-preview.formio';
20
- export * from './lib/components/override-builder/override-builder.component';
21
- export * from './lib/components/override-builder/override-builder.formio';
22
- export * from './lib/components/process-link-selector/process-link-selector.component';
23
- export * from './lib/components/process-link-selector/process-link-selector.formio';
package/sbom.json CHANGED
@@ -1 +1 @@
1
- {"bomFormat":"CycloneDX","specVersion":"1.6","serialNumber":"urn:uuid:4324a4eb-0ea6-4cf1-b17a-2bf8f9c0f5f0","version":1,"metadata":{"timestamp":"2026-07-23T19:06:38Z","tools":{"components":[{"group":"@cyclonedx","name":"cdxgen","version":"11.4.0","purl":"pkg:npm/%40cyclonedx/cdxgen@11.4.0","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@11.4.0","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}]},"authors":[{"name":"OWASP Foundation"}],"lifecycles":[{"phase":"build"}],"component":{"name":"valtimo-plugin","group":"@epistola.app","version":"1.0.0","description":"Epistola document generation plugin for Valtimo","purl":"pkg:npm/%40epistola.app/valtimo-plugin@1.0.0","bom-ref":"pkg:npm/@epistola.app/valtimo-plugin@1.0.0","type":"application","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"externalReferences":[{"type":"vcs","url":"https://github.com/epistola-app/valtimo-epistola-plugin"}]},"properties":[{"name":"cdx:bom:componentTypes","value":"npm"},{"name":"cdx:bom:componentNamespaces","value":"@angular\\n@formio\\n@types\\n@valtimo"},{"name":"cdx:bom:componentSrcFiles","value":"frontend/plugin/node_modules/@angular/common/package.json\\nfrontend/plugin/node_modules/@angular/core/package.json\\nfrontend/plugin/node_modules/@angular/forms/package.json\\nfrontend/plugin/node_modules/@angular/router/package.json\\nfrontend/plugin/node_modules/@formio/angular/package.json\\nfrontend/plugin/node_modules/@types/jest/package.json\\nfrontend/plugin/node_modules/@valtimo/components/package.json\\nfrontend/plugin/node_modules/@valtimo/plugin/package.json\\nfrontend/plugin/node_modules/@valtimo/process-link/package.json\\nfrontend/plugin/node_modules/@valtimo/security/package.json\\nfrontend/plugin/node_modules/@valtimo/shared/package.json\\nfrontend/plugin/node_modules/jest/package.json\\nfrontend/plugin/node_modules/jsonata/package.json\\nfrontend/plugin/node_modules/monaco-editor/package.json\\nfrontend/plugin/node_modules/ng-packagr/package.json\\nfrontend/plugin/node_modules/ts-jest/package.json\\nfrontend/plugin/node_modules/tslib/package.json"}]},"components":[{"authors":[{"name":"Microsoft Corp."}],"group":"","name":"tslib","version":"2.8.1","description":"Runtime library for TypeScript helper functions","scope":"optional","licenses":[{"license":{"id":"0BSD","url":"https://opensource.org/licenses/0BSD"}}],"purl":"pkg:npm/tslib@2.8.1","externalReferences":[{"type":"website","url":"https://www.typescriptlang.org/"},{"type":"vcs","url":"https://github.com/Microsoft/tslib.git"}],"type":"library","bom-ref":"pkg:npm/tslib@2.8.1","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/tslib/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/tslib/package.json"}],"concludedValue":"frontend/plugin/node_modules/tslib/package.json"}]}},{"authors":[{"name":"Kulshekhar Kabra <kulshekhar@users.noreply.github.com> (https://github.com/kulshekhar)"}],"group":"","name":"ts-jest","version":"29.4.9","description":"A Jest transformer with source map support that lets you use Jest to test projects written in TypeScript","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/ts-jest@29.4.9","externalReferences":[{"type":"vcs","url":"https://kulshekhar.github.io/ts-jest"},{"type":"vcs","url":"git+https://github.com/kulshekhar/ts-jest.git"}],"type":"library","bom-ref":"pkg:npm/ts-jest@29.4.9","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/ts-jest/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/ts-jest/package.json"}],"concludedValue":"frontend/plugin/node_modules/ts-jest/package.json"}]},"tags":["test"]},{"authors":[{"name":"David Herges <david@spektrakel.de>"}],"group":"","name":"ng-packagr","version":"19.2.2","description":"Compile and package Angular libraries in Angular Package Format (APF)","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/ng-packagr@19.2.2","externalReferences":[{"type":"vcs","url":"https://github.com/ng-packagr/ng-packagr"},{"type":"vcs","url":"https://github.com/ng-packagr/ng-packagr.git"}],"type":"library","bom-ref":"pkg:npm/ng-packagr@19.2.2","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/ng-packagr/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/ng-packagr/package.json"}],"concludedValue":"frontend/plugin/node_modules/ng-packagr/package.json"}]}},{"authors":[{"name":"Microsoft Corporation"}],"group":"","name":"monaco-editor","version":"0.50.0","description":"A browser based code editor","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/monaco-editor@0.50.0","externalReferences":[{"type":"vcs","url":"https://github.com/microsoft/monaco-editor"},{"type":"vcs","url":"https://github.com/microsoft/monaco-editor"}],"type":"library","bom-ref":"pkg:npm/monaco-editor@0.50.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/monaco-editor/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/monaco-editor/package.json"}],"concludedValue":"frontend/plugin/node_modules/monaco-editor/package.json"}]}},{"group":"","name":"jsonata","version":"2.1.0","description":"JSON query and transformation language","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/jsonata@2.1.0","externalReferences":[{"type":"website","url":"http://jsonata.org/"},{"type":"vcs","url":"https://github.com/jsonata-js/jsonata.git"}],"type":"library","bom-ref":"pkg:npm/jsonata@2.1.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/jsonata/package.json"},{"name":"ImportedModules","value":"jsonata"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/jsonata/package.json"}],"concludedValue":"frontend/plugin/node_modules/jsonata/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#17"},{"location":"src/lib/components/epistola-document-preview/preview-utils.ts#19"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#35"},{"location":"src/lib/components/override-builder/override-jsonata.ts#19"},{"location":"src/lib/utils/extract-referenced-paths.ts#19"},{"location":"src/lib/utils/jsonata-converter.ts#19"}]}},{"group":"","name":"jest","version":"30.3.0","description":"Delightful JavaScript Testing.","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/jest@30.3.0","externalReferences":[{"type":"website","url":"https://jestjs.io/"},{"type":"vcs","url":"https://github.com/jestjs/jest.git"}],"type":"library","bom-ref":"pkg:npm/jest@30.3.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/jest/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/jest/package.json"}],"concludedValue":"frontend/plugin/node_modules/jest/package.json"}]},"tags":["test"]},{"group":"@valtimo","name":"shared","version":"13.32.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/shared@13.32.0","type":"library","bom-ref":"pkg:npm/@valtimo/shared@13.32.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/shared/package.json"},{"name":"ImportedModules","value":"@valtimo/shared,ROLE_ADMIN,@valtimo/shared/ROLE_ADMIN,CaseManagementParams,@valtimo/shared/CaseManagementParams,ManagementContext,@valtimo/shared/ManagementContext,ConfigService,@valtimo/shared/ConfigService,MenuItem,@valtimo/shared/MenuItem"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/shared/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/shared/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#5"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#6"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#45"},{"location":"src/lib/services/epistola-admin.service.ts#21"},{"location":"src/lib/services/epistola-menu.service.ts#21"},{"location":"src/lib/services/epistola-plugin.service.ts#21"}]}},{"group":"@valtimo","name":"security","version":"13.21.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/security@13.21.0","type":"library","bom-ref":"pkg:npm/@valtimo/security@13.21.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/security/package.json"},{"name":"ImportedModules","value":"@valtimo/security,AuthGuardService,@valtimo/security/AuthGuardService"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/security/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/security/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#28"},{"location":"src/lib/epistola-admin-routing.module.ts#21"}]}},{"group":"@valtimo","name":"process-link","version":"13.32.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/process-link@13.32.0","type":"library","bom-ref":"pkg:npm/@valtimo/process-link@13.32.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/process-link/package.json"},{"name":"ImportedModules","value":"@valtimo/process-link,ProcessLinkStateService,@valtimo/process-link/ProcessLinkStateService"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/process-link/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/process-link/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#18"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#46"}]}},{"group":"@valtimo","name":"plugin","version":"13.32.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/plugin@13.32.0","type":"library","bom-ref":"pkg:npm/@valtimo/plugin@13.32.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/plugin/package.json"},{"name":"ImportedModules","value":"@valtimo/plugin,PluginTranslatePipeModule,@valtimo/plugin/PluginTranslatePipeModule,FunctionConfigurationComponent,@valtimo/plugin/FunctionConfigurationComponent,FunctionConfigurationData,@valtimo/plugin/FunctionConfigurationData,PluginConfigurationComponent,@valtimo/plugin/PluginConfigurationComponent,PluginConfigurationData,@valtimo/plugin/PluginConfigurationData,PluginSpecification,@valtimo/plugin/PluginSpecification"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/plugin/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/plugin/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#12"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#13"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#25"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#25"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#22"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#25"},{"location":"src/lib/components/expected-structure/expected-structure.component.ts#21"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#36"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#29"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#22"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#30"},{"location":"src/lib/epistola.module.ts#28"},{"location":"src/lib/epistola.specification.ts#19"}]}},{"group":"@valtimo","name":"components","version":"13.32.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/components@13.32.0","type":"library","bom-ref":"pkg:npm/@valtimo/components@13.32.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/components/package.json"},{"name":"ImportedModules","value":"@valtimo/components,FormModule,@valtimo/components/FormModule,InputModule,@valtimo/components/InputModule,EditorModule,@valtimo/components/EditorModule,SelectModule,@valtimo/components/SelectModule,registerCustomFormioComponent,@valtimo/components/registerCustomFormioComponent,FormOutput,@valtimo/components/FormOutput,SelectItem,@valtimo/components/SelectItem,FormioCustomComponent,@valtimo/components/FormioCustomComponent,FormIoStateService,@valtimo/components/FormIoStateService,FormioCustomComponentInfo,@valtimo/components/FormioCustomComponentInfo,SelectedValue,@valtimo/components/SelectedValue,MenuService,@valtimo/components/MenuService"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/components/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/components/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#8"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#9"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#26"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#26"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#26"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#32"},{"location":"src/lib/components/epistola-document/epistola-document.formio.ts#20"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#32"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.formio.ts#20"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#32"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.formio.ts#20"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#44"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#30"},{"location":"src/lib/components/override-builder/override-builder.component.ts#31"},{"location":"src/lib/components/override-builder/override-builder.formio.ts#20"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#32"},{"location":"src/lib/components/process-link-selector/process-link-selector.formio.ts#20"},{"location":"src/lib/epistola.module.ts#29"},{"location":"src/lib/services/epistola-menu.service.ts#20"}]}},{"group":"@types","name":"jest","version":"30.0.0","description":"TypeScript definitions for jest","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40types/jest@30.0.0","externalReferences":[{"type":"vcs","url":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest"},{"type":"vcs","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git"}],"type":"library","bom-ref":"pkg:npm/@types/jest@30.0.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@types/jest/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@types/jest/package.json"}],"concludedValue":"frontend/plugin/node_modules/@types/jest/package.json"}]},"tags":["test"]},{"authors":[{"name":"Travis Tidwell <travis@form.io>"}],"group":"@formio","name":"angular","version":"7.0.0","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40formio/angular@7.0.0","externalReferences":[{"type":"vcs","url":"https://github.com/formio/angular-formio"}],"type":"library","bom-ref":"pkg:npm/@formio/angular@7.0.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@formio/angular/package.json"},{"name":"ImportedModules","value":"@formio/angular,FormioModule,@formio/angular/FormioModule"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@formio/angular/package.json"}],"concludedValue":"frontend/plugin/node_modules/@formio/angular/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#20"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#21"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#33"}]}},{"authors":[{"name":"angular"}],"group":"@angular","name":"router","version":"19.2.20","description":"Angular - the routing library","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/router@19.2.20","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular/tree/main/packages/router"},{"type":"vcs","url":"git+https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/router@19.2.20","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/router/package.json"},{"name":"ImportedModules","value":"@angular/router,RouterModule,@angular/router/RouterModule,Router,@angular/router/Router,ActivatedRoute,@angular/router/ActivatedRoute,Routes,@angular/router/Routes,CanActivateFn,@angular/router/CanActivateFn"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/router/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/router/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#22"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#23"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#21"},{"location":"src/lib/epistola-admin-routing.module.ts#20"},{"location":"src/lib/epistola-enabled.guard.ts#20"}]},"tags":["framework"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"forms","version":"19.2.20","description":"Angular - directives and services for creating forms","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/forms@19.2.20","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/forms@19.2.20","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/forms/package.json"},{"name":"ImportedModules","value":"@angular/forms,FormsModule,@angular/forms/FormsModule"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/forms/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/forms/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#15"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#16"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#30"},{"location":"src/lib/components/mapping-builder/builder-field/builder-field.component.ts#21"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#21"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#29"},{"location":"src/lib/components/override-builder/override-builder.component.ts#30"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#31"}]},"tags":["framework"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"core","version":"19.2.20","description":"Angular - the core framework","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/core@19.2.20","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/core@19.2.20","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/core/package.json"},{"name":"ImportedModules","value":"@angular/core,Injectable,@angular/core/Injectable,EventEmitter,@angular/core/EventEmitter,Output,@angular/core/Output,Input,@angular/core/Input,Component,@angular/core/Component,ChangeDetectionStrategy,@angular/core/ChangeDetectionStrategy,inject,@angular/core/inject,NgModule,@angular/core/NgModule,ENVIRONMENT_INITIALIZER,@angular/core/ENVIRONMENT_INITIALIZER,Injector,@angular/core/Injector,OnDestroy,@angular/core/OnDestroy,OnInit,@angular/core/OnInit,ChangeDetectorRef,@angular/core/ChangeDetectorRef,OnChanges,@angular/core/OnChanges,SimpleChanges,@angular/core/SimpleChanges,ModuleWithProviders,@angular/core/ModuleWithProviders"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/core/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/core/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#1"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#2"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#19"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#19"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#19"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#19"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#29"},{"location":"src/lib/components/epistola-document/epistola-document.formio.ts#19"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#29"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.formio.ts#19"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#29"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.formio.ts#19"},{"location":"src/lib/components/expected-structure/expected-structure.component.ts#19"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#28"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#27"},{"location":"src/lib/components/mapping-builder/builder-field/builder-field.component.ts#19"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#19"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#27"},{"location":"src/lib/components/override-builder/override-builder.component.ts#28"},{"location":"src/lib/components/override-builder/override-builder.formio.ts#19"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#29"},{"location":"src/lib/components/process-link-selector/process-link-selector.formio.ts#19"},{"location":"src/lib/epistola-admin-routing.module.ts#19"},{"location":"src/lib/epistola-enabled.guard.ts#19"},{"location":"src/lib/epistola.module.ts#25"},{"location":"src/lib/services/epistola-admin.service.ts#19"},{"location":"src/lib/services/epistola-menu.service.ts#19"},{"location":"src/lib/services/epistola-plugin.service.ts#19"}]},"tags":["framework"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"common","version":"19.2.20","description":"Angular - commonly needed directives and services","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/common@19.2.20","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/common@19.2.20","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/common/package.json"},{"name":"ImportedModules","value":"@angular/common/http,HttpHeaders,@angular/common/http/HttpHeaders,HttpClientModule,@angular/common/http/HttpClientModule,HttpClient,@angular/common/http/HttpClient,@angular/common,CommonModule,@angular/common/CommonModule"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/common/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/common/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#3"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#4"},{"location":"src/lib/epistola.module.ts#27"},{"location":"src/lib/services/epistola-admin.service.ts#20"},{"location":"src/lib/services/epistola-plugin.service.ts#20"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#10"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#11"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#20"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#20"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#20"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#20"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#30"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#30"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#30"},{"location":"src/lib/components/expected-structure/expected-structure.component.ts#20"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#29"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#28"},{"location":"src/lib/components/mapping-builder/builder-field/builder-field.component.ts#20"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#20"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#28"},{"location":"src/lib/components/override-builder/override-builder.component.ts#29"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#30"},{"location":"src/lib/epistola.module.ts#26"}]},"tags":["framework"]}],"dependencies":[],"annotations":[{"bom-ref":"metadata-annotations","subjects":["pkg:npm/@epistola.app/valtimo-plugin@1.0.0"],"annotator":{"component":{"group":"@cyclonedx","name":"cdxgen","version":"11.4.0","purl":"pkg:npm/%40cyclonedx/cdxgen@11.4.0","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@11.4.0","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}},"timestamp":"2026-07-23T19:06:38Z","text":"This Software Bill-of-Materials (SBOM) document was created on Thursday, July 23, 2026 with cdxgen. The data was captured during the build lifecycle phase. The document describes an application named 'valtimo-plugin' with version '1.0.0'. There are 17 components. The package type in this SBOM is npm with 4 purl namespaces described under components. The components were identified from 17 source files."}]}
1
+ {"bomFormat":"CycloneDX","specVersion":"1.6","serialNumber":"urn:uuid:06ee2874-bce3-4d59-8e10-52a50ea65c41","version":1,"metadata":{"timestamp":"2026-07-25T11:14:57Z","tools":{"components":[{"group":"@cyclonedx","name":"cdxgen","version":"11.4.0","purl":"pkg:npm/%40cyclonedx/cdxgen@11.4.0","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@11.4.0","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}]},"authors":[{"name":"OWASP Foundation"}],"lifecycles":[{"phase":"build"}],"component":{"name":"valtimo-plugin","group":"@epistola.app","version":"1.0.0","description":"Epistola document generation plugin for Valtimo","purl":"pkg:npm/%40epistola.app/valtimo-plugin@1.0.0","bom-ref":"pkg:npm/@epistola.app/valtimo-plugin@1.0.0","type":"application","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"externalReferences":[{"type":"vcs","url":"https://github.com/epistola-app/valtimo-epistola-plugin"}]},"properties":[{"name":"cdx:bom:componentTypes","value":"npm"},{"name":"cdx:bom:componentNamespaces","value":"@angular\\n@formio\\n@types\\n@valtimo"},{"name":"cdx:bom:componentSrcFiles","value":"frontend/plugin/node_modules/@angular/common/package.json\\nfrontend/plugin/node_modules/@angular/core/package.json\\nfrontend/plugin/node_modules/@angular/elements/package.json\\nfrontend/plugin/node_modules/@angular/forms/package.json\\nfrontend/plugin/node_modules/@angular/platform-browser/package.json\\nfrontend/plugin/node_modules/@angular/router/package.json\\nfrontend/plugin/node_modules/@formio/angular/package.json\\nfrontend/plugin/node_modules/@types/jest/package.json\\nfrontend/plugin/node_modules/@valtimo/components/package.json\\nfrontend/plugin/node_modules/@valtimo/plugin/package.json\\nfrontend/plugin/node_modules/@valtimo/process-link/package.json\\nfrontend/plugin/node_modules/@valtimo/security/package.json\\nfrontend/plugin/node_modules/@valtimo/shared/package.json\\nfrontend/plugin/node_modules/carbon-components-angular/package.json\\nfrontend/plugin/node_modules/formiojs/package.json\\nfrontend/plugin/node_modules/jest/package.json\\nfrontend/plugin/node_modules/jsonata/package.json\\nfrontend/plugin/node_modules/monaco-editor/package.json\\nfrontend/plugin/node_modules/ng-packagr/package.json\\nfrontend/plugin/node_modules/rxjs/package.json\\nfrontend/plugin/node_modules/ts-jest/package.json\\nfrontend/plugin/node_modules/tslib/package.json"}]},"components":[{"authors":[{"name":"Microsoft Corp."}],"group":"","name":"tslib","version":"2.8.1","description":"Runtime library for TypeScript helper functions","scope":"optional","licenses":[{"license":{"id":"0BSD","url":"https://opensource.org/licenses/0BSD"}}],"purl":"pkg:npm/tslib@2.8.1","externalReferences":[{"type":"website","url":"https://www.typescriptlang.org/"},{"type":"vcs","url":"https://github.com/Microsoft/tslib.git"}],"type":"library","bom-ref":"pkg:npm/tslib@2.8.1","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/tslib/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/tslib/package.json"}],"concludedValue":"frontend/plugin/node_modules/tslib/package.json"}]}},{"authors":[{"name":"Kulshekhar Kabra <kulshekhar@users.noreply.github.com> (https://github.com/kulshekhar)"}],"group":"","name":"ts-jest","version":"29.4.9","description":"A Jest transformer with source map support that lets you use Jest to test projects written in TypeScript","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/ts-jest@29.4.9","externalReferences":[{"type":"vcs","url":"https://kulshekhar.github.io/ts-jest"},{"type":"vcs","url":"git+https://github.com/kulshekhar/ts-jest.git"}],"type":"library","bom-ref":"pkg:npm/ts-jest@29.4.9","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/ts-jest/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/ts-jest/package.json"}],"concludedValue":"frontend/plugin/node_modules/ts-jest/package.json"}]},"tags":["test"]},{"authors":[{"name":"Ben Lesh <ben@benlesh.com>"}],"group":"","name":"rxjs","version":"7.8.2","description":"Reactive Extensions for modern JavaScript","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/rxjs@7.8.2","externalReferences":[{"type":"website","url":"https://rxjs.dev"},{"type":"vcs","url":"https://github.com/reactivex/rxjs.git"}],"type":"library","bom-ref":"pkg:npm/rxjs@7.8.2","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/rxjs/package.json"},{"name":"ImportedModules","value":"rxjs,BehaviorSubject,rxjs/BehaviorSubject,combineLatest,rxjs/combineLatest,take,rxjs/take,Subject,rxjs/Subject,debounceTime,rxjs/debounceTime,takeUntil,rxjs/takeUntil,rxjs/of,merge,rxjs/merge,rxjs/operators,startWith,rxjs/operators/startWith,delay,rxjs/operators/delay,shareReplay,rxjs/operators/shareReplay,rxjs/operators/take,rxjs/operators/takeUntil,filter,rxjs/operators/filter,rxjs/operators/map,distinctUntilChanged,rxjs/operators/distinctUntilChanged,rxjs/operators/tap,switchMap,rxjs/operators/switchMap,catchError,rxjs/operators/catchError,rxjs/operators/debounceTime,Observable,rxjs/Observable,Subscription,rxjs/Subscription"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/rxjs/package.json"}],"concludedValue":"frontend/plugin/node_modules/rxjs/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#11"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#12"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#27"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#28"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#27"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#28"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#27"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#28"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#33"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#33"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#34"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#35"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#47"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#58"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#31"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#31"},{"location":"src/lib/components/override-builder/override-builder.component.ts#32"},{"location":"src/lib/components/override-builder/override-builder.component.ts#33"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#35"},{"location":"src/lib/services/epistola-admin.service.ts#22"},{"location":"src/lib/services/epistola-menu.service.ts#22"},{"location":"src/lib/services/epistola-plugin.service.ts#22"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#12"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#28"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#28"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#28"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#35"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#58"},{"location":"src/lib/components/override-builder/override-builder.component.ts#33"}]}},{"authors":[{"name":"David Herges <david@spektrakel.de>"}],"group":"","name":"ng-packagr","version":"19.2.2","description":"Compile and package Angular libraries in Angular Package Format (APF)","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/ng-packagr@19.2.2","externalReferences":[{"type":"vcs","url":"https://github.com/ng-packagr/ng-packagr"},{"type":"vcs","url":"https://github.com/ng-packagr/ng-packagr.git"}],"type":"library","bom-ref":"pkg:npm/ng-packagr@19.2.2","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/ng-packagr/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/ng-packagr/package.json"}],"concludedValue":"frontend/plugin/node_modules/ng-packagr/package.json"}]}},{"authors":[{"name":"Microsoft Corporation"}],"group":"","name":"monaco-editor","version":"0.50.0","description":"A browser based code editor","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/monaco-editor@0.50.0","externalReferences":[{"type":"vcs","url":"https://github.com/microsoft/monaco-editor"},{"type":"vcs","url":"https://github.com/microsoft/monaco-editor"}],"type":"library","bom-ref":"pkg:npm/monaco-editor@0.50.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/monaco-editor/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/monaco-editor/package.json"}],"concludedValue":"frontend/plugin/node_modules/monaco-editor/package.json"}]}},{"group":"","name":"jsonata","version":"2.2.2","description":"JSON query and transformation language","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/jsonata@2.2.2","externalReferences":[{"type":"website","url":"http://jsonata.org/"},{"type":"vcs","url":"https://github.com/jsonata-js/jsonata.git"}],"type":"library","bom-ref":"pkg:npm/jsonata@2.2.2","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/jsonata/package.json"},{"name":"ImportedModules","value":"jsonata"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/jsonata/package.json"}],"concludedValue":"frontend/plugin/node_modules/jsonata/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#15"},{"location":"src/lib/components/epistola-document-preview/preview-utils.ts#19"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#35"},{"location":"src/lib/components/override-builder/override-jsonata.ts#19"},{"location":"src/lib/utils/extract-referenced-paths.ts#19"},{"location":"src/lib/utils/jsonata-converter.ts#19"}]}},{"group":"","name":"jest","version":"30.3.0","description":"Delightful JavaScript Testing.","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/jest@30.3.0","externalReferences":[{"type":"website","url":"https://jestjs.io/"},{"type":"vcs","url":"https://github.com/jestjs/jest.git"}],"type":"library","bom-ref":"pkg:npm/jest@30.3.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/jest/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/jest/package.json"}],"concludedValue":"frontend/plugin/node_modules/jest/package.json"}]},"tags":["test"]},{"group":"","name":"formiojs","version":"4.19.5","description":"Common js library for client side interaction with <form.io>","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/formiojs@4.19.5","externalReferences":[{"type":"vcs","url":"https://github.com/formio/formio.js#readme"},{"type":"vcs","url":"git+https://github.com/formio/formio.js.git"}],"type":"library","bom-ref":"pkg:npm/formiojs@4.19.5","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/formiojs/package.json"},{"name":"ImportedModules","value":"formiojs,Components,formiojs/Components"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/formiojs/package.json"}],"concludedValue":"frontend/plugin/node_modules/formiojs/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#29"},{"location":"src/lib/components/valtimo-formio-adapter.ts#25"}]}},{"authors":[{"name":"IBM"}],"group":"","name":"carbon-components-angular","version":"5.57.6","description":"Next generation components","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/carbon-components-angular@5.57.6","type":"library","bom-ref":"pkg:npm/carbon-components-angular@5.57.6","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/carbon-components-angular/package.json"},{"name":"ImportedModules","value":"carbon-components-angular/tabs,TabsModule,carbon-components-angular/tabs/TabsModule,carbon-components-angular/tag,TagModule,carbon-components-angular/tag/TagModule"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/carbon-components-angular/package.json"}],"concludedValue":"frontend/plugin/node_modules/carbon-components-angular/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#24"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#25"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#23"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#24"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#25"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#26"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#27"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#23"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#24"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#26"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#27"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#24"}]}},{"group":"@valtimo","name":"shared","version":"13.38.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/shared@13.38.0","type":"library","bom-ref":"pkg:npm/@valtimo/shared@13.38.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/shared/package.json"},{"name":"ImportedModules","value":"@valtimo/shared,ROLE_ADMIN,@valtimo/shared/ROLE_ADMIN,CaseManagementParams,@valtimo/shared/CaseManagementParams,ManagementContext,@valtimo/shared/ManagementContext,ConfigService,@valtimo/shared/ConfigService,MenuItem,@valtimo/shared/MenuItem"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/shared/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/shared/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#16"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#17"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#45"},{"location":"src/lib/services/epistola-admin.service.ts#21"},{"location":"src/lib/services/epistola-menu.service.ts#21"},{"location":"src/lib/services/epistola-plugin.service.ts#21"}]}},{"group":"@valtimo","name":"security","version":"13.38.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/security@13.38.0","type":"library","bom-ref":"pkg:npm/@valtimo/security@13.38.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/security/package.json"},{"name":"ImportedModules","value":"@valtimo/security,AuthGuardService,@valtimo/security/AuthGuardService"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/security/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/security/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#28"},{"location":"src/lib/epistola-admin-routing.module.ts#21"}]}},{"group":"@valtimo","name":"process-link","version":"13.38.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/process-link@13.38.0","type":"library","bom-ref":"pkg:npm/@valtimo/process-link@13.38.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/process-link/package.json"},{"name":"ImportedModules","value":"@valtimo/process-link,ProcessLinkStateService,@valtimo/process-link/ProcessLinkStateService"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/process-link/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/process-link/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#18"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#46"}]}},{"group":"@valtimo","name":"plugin","version":"13.38.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/plugin@13.38.0","type":"library","bom-ref":"pkg:npm/@valtimo/plugin@13.38.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/plugin/package.json"},{"name":"ImportedModules","value":"@valtimo/plugin,PluginTranslatePipeModule,@valtimo/plugin/PluginTranslatePipeModule,FunctionConfigurationComponent,@valtimo/plugin/FunctionConfigurationComponent,FunctionConfigurationData,@valtimo/plugin/FunctionConfigurationData,PluginConfigurationComponent,@valtimo/plugin/PluginConfigurationComponent,PluginConfigurationData,@valtimo/plugin/PluginConfigurationData,PluginSpecification,@valtimo/plugin/PluginSpecification"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/plugin/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/plugin/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#7"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#8"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#25"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#25"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#22"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#25"},{"location":"src/lib/components/expected-structure/expected-structure.component.ts#21"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#36"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#29"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#22"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#30"},{"location":"src/lib/epistola.module.ts#27"},{"location":"src/lib/epistola.specification.ts#19"}]}},{"group":"@valtimo","name":"components","version":"13.38.0","scope":"required","licenses":[{"license":{"id":"EUPL-1.2","url":"https://opensource.org/licenses/EUPL-1.2"}}],"purl":"pkg:npm/%40valtimo/components@13.38.0","type":"library","bom-ref":"pkg:npm/@valtimo/components@13.38.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@valtimo/components/package.json"},{"name":"ImportedModules","value":"@valtimo/components,FormModule,@valtimo/components/FormModule,InputModule,@valtimo/components/InputModule,EditorModule,@valtimo/components/EditorModule,SelectModule,@valtimo/components/SelectModule,registerCustomFormioComponent,@valtimo/components/registerCustomFormioComponent,createCustomFormioComponent,@valtimo/components/createCustomFormioComponent,FormIoModule,@valtimo/components/FormIoModule,FormOutput,@valtimo/components/FormOutput,SelectItem,@valtimo/components/SelectItem,FormioCustomComponent,@valtimo/components/FormioCustomComponent,FormIoStateService,@valtimo/components/FormIoStateService,FormioCustomComponentInfo,@valtimo/components/FormioCustomComponentInfo,SelectedValue,@valtimo/components/SelectedValue,MenuService,@valtimo/components/MenuService"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@valtimo/components/package.json"}],"concludedValue":"frontend/plugin/node_modules/@valtimo/components/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#9"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#10"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#26"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#26"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#26"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#32"},{"location":"src/lib/components/epistola-document/epistola-document.formio.ts#20"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#32"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.formio.ts#20"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#32"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.formio.ts#20"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#44"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#30"},{"location":"src/lib/components/override-builder/override-builder.component.ts#31"},{"location":"src/lib/components/override-builder/override-builder.formio.ts#20"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#32"},{"location":"src/lib/components/process-link-selector/process-link-selector.formio.ts#20"},{"location":"src/lib/components/valtimo-formio-adapter.ts#24"},{"location":"src/lib/epistola.module.ts#28"},{"location":"src/lib/services/epistola-menu.service.ts#20"}]}},{"group":"@types","name":"jest","version":"30.0.0","description":"TypeScript definitions for jest","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40types/jest@30.0.0","externalReferences":[{"type":"vcs","url":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest"},{"type":"vcs","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git"}],"type":"library","bom-ref":"pkg:npm/@types/jest@30.0.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@types/jest/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@types/jest/package.json"}],"concludedValue":"frontend/plugin/node_modules/@types/jest/package.json"}]},"tags":["test"]},{"authors":[{"name":"Travis Tidwell <travis@form.io>"}],"group":"@formio","name":"angular","version":"7.0.0","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40formio/angular@7.0.0","externalReferences":[{"type":"vcs","url":"https://github.com/formio/angular-formio"}],"type":"library","bom-ref":"pkg:npm/@formio/angular@7.0.0","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@formio/angular/package.json"},{"name":"ImportedModules","value":"@formio/angular,FormioModule,@formio/angular/FormioModule"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@formio/angular/package.json"}],"concludedValue":"frontend/plugin/node_modules/@formio/angular/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#20"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#21"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#33"}]}},{"authors":[{"name":"angular"}],"group":"@angular","name":"router","version":"19.2.25","description":"Angular - the routing library","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/router@19.2.25","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular/tree/main/packages/router"},{"type":"vcs","url":"git+https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/router@19.2.25","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/router/package.json"},{"name":"ImportedModules","value":"@angular/router,RouterModule,@angular/router/RouterModule,Router,@angular/router/Router,ActivatedRoute,@angular/router/ActivatedRoute,Routes,@angular/router/Routes,CanActivateFn,@angular/router/CanActivateFn"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/router/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/router/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#22"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#23"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#21"},{"location":"src/lib/epistola-admin-routing.module.ts#20"},{"location":"src/lib/epistola-enabled.guard.ts#20"}]},"tags":["framework"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"platform-browser","version":"19.2.25","description":"Angular - library for using Angular in a web browser","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/platform-browser@19.2.25","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/platform-browser@19.2.25","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/platform-browser/package.json"},{"name":"ImportedModules","value":"@angular/platform-browser,DomSanitizer,@angular/platform-browser/DomSanitizer,SafeResourceUrl,@angular/platform-browser/SafeResourceUrl"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/platform-browser/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/platform-browser/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#19"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#31"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#31"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#31"}]},"tags":["framework","web"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"forms","version":"19.2.25","description":"Angular - directives and services for creating forms","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/forms@19.2.25","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/forms@19.2.25","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/forms/package.json"},{"name":"ImportedModules","value":"@angular/forms,FormsModule,@angular/forms/FormsModule"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/forms/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/forms/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#13"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#14"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#30"},{"location":"src/lib/components/mapping-builder/builder-field/builder-field.component.ts#21"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#21"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#29"},{"location":"src/lib/components/override-builder/override-builder.component.ts#30"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#31"}]},"tags":["framework"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"elements","version":"19.2.25","description":"Angular - library for using Angular Components as Custom Elements","scope":"optional","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/elements@19.2.25","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/elements@19.2.25","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/elements/package.json"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/elements/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/elements/package.json"}]},"tags":["framework"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"core","version":"19.2.25","description":"Angular - the core framework","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/core@19.2.25","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/core@19.2.25","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/core/package.json"},{"name":"ImportedModules","value":"@angular/core,EventEmitter,@angular/core/EventEmitter,Output,@angular/core/Output,Input,@angular/core/Input,Component,@angular/core/Component,Injectable,@angular/core/Injectable,ChangeDetectionStrategy,@angular/core/ChangeDetectionStrategy,inject,@angular/core/inject,NgModule,@angular/core/NgModule,provideEnvironmentInitializer,@angular/core/provideEnvironmentInitializer,OnDestroy,@angular/core/OnDestroy,OnInit,@angular/core/OnInit,ChangeDetectorRef,@angular/core/ChangeDetectorRef,OnChanges,@angular/core/OnChanges,SimpleChanges,@angular/core/SimpleChanges,Injector,@angular/core/Injector,Type,@angular/core/Type,ModuleWithProviders,@angular/core/ModuleWithProviders"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/core/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/core/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#1"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#2"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#19"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#19"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#19"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#19"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#29"},{"location":"src/lib/components/epistola-document/epistola-document.formio.ts#19"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#29"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.formio.ts#19"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#29"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.formio.ts#19"},{"location":"src/lib/components/expected-structure/expected-structure.component.ts#19"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#28"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#27"},{"location":"src/lib/components/mapping-builder/builder-field/builder-field.component.ts#19"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#19"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#27"},{"location":"src/lib/components/override-builder/override-builder.component.ts#28"},{"location":"src/lib/components/override-builder/override-builder.formio.ts#19"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#29"},{"location":"src/lib/components/process-link-selector/process-link-selector.formio.ts#19"},{"location":"src/lib/components/valtimo-formio-adapter.ts#19"},{"location":"src/lib/epistola-admin-routing.module.ts#19"},{"location":"src/lib/epistola-enabled.guard.ts#19"},{"location":"src/lib/epistola.module.ts#24"},{"location":"src/lib/services/epistola-admin.service.ts#19"},{"location":"src/lib/services/epistola-menu.service.ts#19"},{"location":"src/lib/services/epistola-plugin.service.ts#19"},{"location":"src/lib/services/epistola-registration.service.ts#19"}]},"tags":["framework"]},{"authors":[{"name":"angular"}],"group":"@angular","name":"common","version":"19.2.25","description":"Angular - commonly needed directives and services","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40angular/common@19.2.25","externalReferences":[{"type":"vcs","url":"https://github.com/angular/angular.git"}],"type":"framework","bom-ref":"pkg:npm/@angular/common@19.2.25","properties":[{"name":"SrcFile","value":"frontend/plugin/node_modules/@angular/common/package.json"},{"name":"ImportedModules","value":"@angular/common,CommonModule,@angular/common/CommonModule,@angular/common/http,HttpHeaders,@angular/common/http/HttpHeaders,HttpClientModule,@angular/common/http/HttpClientModule,HttpClient,@angular/common/http/HttpClient"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"frontend/plugin/node_modules/@angular/common/package.json"}],"concludedValue":"frontend/plugin/node_modules/@angular/common/package.json"}],"occurrences":[{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#3"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#4"},{"location":"src/lib/components/check-job-status-configuration/check-job-status-configuration.component.ts#20"},{"location":"src/lib/components/download-document-configuration/download-document-configuration.component.ts#20"},{"location":"src/lib/components/epistola-admin-page/epistola-admin-page.component.ts#20"},{"location":"src/lib/components/epistola-configuration/epistola-configuration.component.ts#20"},{"location":"src/lib/components/epistola-document/epistola-document.component.ts#30"},{"location":"src/lib/components/epistola-document-preview/epistola-document-preview.component.ts#30"},{"location":"src/lib/components/epistola-retry-form/epistola-retry-form.component.ts#30"},{"location":"src/lib/components/expected-structure/expected-structure.component.ts#20"},{"location":"src/lib/components/generate-document-configuration/generate-document-configuration.component.ts#29"},{"location":"src/lib/components/jsonata-editor/jsonata-editor.component.ts#28"},{"location":"src/lib/components/mapping-builder/builder-field/builder-field.component.ts#20"},{"location":"src/lib/components/mapping-builder/mapping-builder.component.ts#20"},{"location":"src/lib/components/mapping-preview/mapping-preview.component.ts#28"},{"location":"src/lib/components/override-builder/override-builder.component.ts#29"},{"location":"src/lib/components/process-link-selector/process-link-selector.component.ts#30"},{"location":"src/lib/epistola.module.ts#25"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#5"},{"location":"dist/fesm2022/epistola.app-valtimo-plugin.mjs#6"},{"location":"src/lib/epistola.module.ts#26"},{"location":"src/lib/services/epistola-admin.service.ts#20"},{"location":"src/lib/services/epistola-plugin.service.ts#20"}]},"tags":["framework"]}],"dependencies":[],"annotations":[{"bom-ref":"metadata-annotations","subjects":["pkg:npm/@epistola.app/valtimo-plugin@1.0.0"],"annotator":{"component":{"group":"@cyclonedx","name":"cdxgen","version":"11.4.0","purl":"pkg:npm/%40cyclonedx/cdxgen@11.4.0","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@11.4.0","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}},"timestamp":"2026-07-25T11:14:57Z","text":"This Software Bill-of-Materials (SBOM) document was created on Saturday, July 25, 2026 with cdxgen. The data was captured during the build lifecycle phase. The document describes an application named 'valtimo-plugin' with version '1.0.0'. There are 22 components. The package type in this SBOM is npm with 4 purl namespaces described under components. The components were identified from 22 source files."}]}
@@ -1,14 +0,0 @@
1
- /**
2
- * Hides a registered custom Formio component from the builder's component palette,
3
- * while keeping it fully usable inside other components' `editForm`s and at runtime.
4
- *
5
- * Formio's `WebformBuilder` only adds a component to the palette when
6
- * `component.builderInfo && component.builderInfo.schema` is truthy. Overriding the
7
- * registered class's static `builderInfo` getter to `false` therefore removes it from
8
- * the palette. Runtime instantiation and editForm usage don't consult `builderInfo`,
9
- * so they are unaffected.
10
- *
11
- * Call this AFTER the component is registered (and after any `setComponent` re-registration),
12
- * so it targets the final class in `Formio.Components.components[type]`.
13
- */
14
- export declare function hideFormioComponentFromBuilder(type: string): void;