@epistola.app/valtimo-plugin 0.13.1 → 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.
- package/fesm2022/epistola.app-valtimo-plugin.mjs +1964 -1849
- package/fesm2022/epistola.app-valtimo-plugin.mjs.map +1 -1
- package/lib/components/epistola-admin-page/epistola-admin-page.component.d.ts +16 -16
- package/lib/components/epistola-document-preview/epistola-document-preview.component.d.ts +1 -0
- package/lib/components/generate-document-configuration/generate-document-config.util.d.ts +14 -0
- package/lib/components/generate-document-configuration/generate-document-configuration.component.d.ts +1 -0
- package/lib/components/valtimo-formio-adapter.d.ts +12 -0
- package/lib/epistola.module.d.ts +3 -3
- package/lib/models/admin.d.ts +27 -26
- package/lib/services/epistola-admin.service.d.ts +1 -7
- package/lib/services/epistola-menu.service.d.ts +6 -2
- package/lib/services/epistola-plugin.service.d.ts +0 -1
- package/lib/services/epistola-registration.service.d.ts +12 -0
- package/lib/utils/jsonata-path.d.ts +9 -0
- package/package.json +23 -18
- package/public_api.d.ts +0 -21
- package/sbom.json +1 -1
- package/lib/components/formio-builder-utils.d.ts +0 -14
|
@@ -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,
|
|
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.
|
|
@@ -14,6 +14,9 @@ interface ConfigurationCard {
|
|
|
14
14
|
latencyMs: number;
|
|
15
15
|
errorMessage?: string;
|
|
16
16
|
serverVersion?: string;
|
|
17
|
+
contractVersion?: string;
|
|
18
|
+
serverContractVersion?: string;
|
|
19
|
+
contractCompatibilitySeverity?: ContractCompatibilitySeverity;
|
|
17
20
|
usageCount: number;
|
|
18
21
|
problemCount: number;
|
|
19
22
|
usageEntries: PluginUsageEntry[];
|
|
@@ -29,6 +32,8 @@ export declare class EpistolaAdminPageComponent implements OnInit {
|
|
|
29
32
|
overviewTab: 'configurations' | 'validations' | 'changelog' | 'forms';
|
|
30
33
|
loading: boolean;
|
|
31
34
|
pluginVersion: string | null;
|
|
35
|
+
pluginContractVersion: string | null;
|
|
36
|
+
versionCheck: VersionCheckStatus | null;
|
|
32
37
|
changelog: ChangelogRelease[] | null;
|
|
33
38
|
changelogLoading: boolean;
|
|
34
39
|
validationReport: BpmnValidationReport | null;
|
|
@@ -46,15 +51,6 @@ export declare class EpistolaAdminPageComponent implements OnInit {
|
|
|
46
51
|
type: 'success' | 'error';
|
|
47
52
|
message: string;
|
|
48
53
|
} | null;
|
|
49
|
-
formIssues: FormCarrierIssue[] | null;
|
|
50
|
-
formIssuesLoading: boolean;
|
|
51
|
-
repairingFormIds: Set<string>;
|
|
52
|
-
repairingAll: boolean;
|
|
53
|
-
formFeedback: {
|
|
54
|
-
formId: string;
|
|
55
|
-
type: 'success' | 'error';
|
|
56
|
-
message: string;
|
|
57
|
-
} | null;
|
|
58
54
|
legacyOverrideForms: LegacyOverrideForm[] | null;
|
|
59
55
|
legacyOverrideLoading: boolean;
|
|
60
56
|
private connectionStatuses;
|
|
@@ -69,20 +65,24 @@ export declare class EpistolaAdminPageComponent implements OnInit {
|
|
|
69
65
|
get validationViolations(): BpmnValidationViolation[];
|
|
70
66
|
/** Scan cadence in whole minutes, for the "refreshes every N min" note. */
|
|
71
67
|
get refreshIntervalMinutes(): number;
|
|
72
|
-
/**
|
|
68
|
+
/** Forms that still need their legacy override mapping migrated. */
|
|
73
69
|
get formsAttentionCount(): number;
|
|
74
|
-
/** Whether the
|
|
70
|
+
/** Whether the legacy override scan has completed. */
|
|
75
71
|
get formsScanLoaded(): boolean;
|
|
76
72
|
ngOnInit(): void;
|
|
77
73
|
selectConfiguration(card: ConfigurationCard): void;
|
|
74
|
+
hasContractCompatibilityWarning(card: ConfigurationCard): boolean;
|
|
75
|
+
contractBadgeClass(card: ConfigurationCard): string;
|
|
76
|
+
contractLabelKey(card: ConfigurationCard): string;
|
|
77
|
+
contractBodyKey(card: ConfigurationCard): string;
|
|
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;
|
|
78
82
|
backToOverview(): void;
|
|
79
83
|
setActiveTab(tab: 'actions' | 'pending' | 'catalogs'): void;
|
|
80
84
|
setOverviewTab(tab: 'configurations' | 'validations' | 'changelog' | 'forms'): void;
|
|
81
85
|
private loadLegacyOverrideForms;
|
|
82
|
-
private loadFormIssues;
|
|
83
|
-
isRepairingForm(issue: FormCarrierIssue): boolean;
|
|
84
|
-
repairForm(issue: FormCarrierIssue): void;
|
|
85
|
-
repairAllForms(): void;
|
|
86
86
|
private loadChangelog;
|
|
87
87
|
refresh(): void;
|
|
88
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,14 @@
|
|
|
1
|
+
import { GenerateDocumentConfig } from '../../models';
|
|
2
|
+
import type { VariantSelectionMode } from './generate-document-configuration.component';
|
|
3
|
+
export interface GenerateDocumentValidationOptions {
|
|
4
|
+
selectedCatalogId?: string | null;
|
|
5
|
+
filename?: string | null;
|
|
6
|
+
variantSelectionMode?: VariantSelectionMode;
|
|
7
|
+
variantAttributeEntries?: {
|
|
8
|
+
key: string;
|
|
9
|
+
value: string;
|
|
10
|
+
}[];
|
|
11
|
+
}
|
|
12
|
+
export declare const PROCESS_VARIABLE_NAME_PATTERN: RegExp;
|
|
13
|
+
export declare function isProcessVariableNameValid(value: unknown): boolean;
|
|
14
|
+
export declare function isGenerateDocumentConfigValid(config: Partial<GenerateDocumentConfig> | null | undefined, options: GenerateDocumentValidationOptions): boolean;
|
|
@@ -72,6 +72,7 @@ export declare class GenerateDocumentConfigurationComponent implements FunctionC
|
|
|
72
72
|
editorContextVariables: Record<string, string[]>;
|
|
73
73
|
prefillDataMapping: Record<string, any>;
|
|
74
74
|
validationErrors$: BehaviorSubject<JsonataFieldError[]>;
|
|
75
|
+
resultProcessVariableInvalid$: BehaviorSubject<boolean>;
|
|
75
76
|
private readonly destroy$;
|
|
76
77
|
private saveSubscription;
|
|
77
78
|
private readonly formValue$;
|
|
@@ -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;
|
package/lib/epistola.module.d.ts
CHANGED
|
@@ -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/
|
|
6
|
-
import * as i4 from "@valtimo/
|
|
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.
|
|
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
|
}
|
package/lib/models/admin.d.ts
CHANGED
|
@@ -9,13 +9,40 @@ export interface ConnectionStatus {
|
|
|
9
9
|
latencyMs: number;
|
|
10
10
|
errorMessage?: string;
|
|
11
11
|
serverVersion?: string;
|
|
12
|
+
contractVersion?: string;
|
|
13
|
+
serverContractVersion?: string;
|
|
14
|
+
contractCompatibilitySeverity?: ContractCompatibilitySeverity;
|
|
12
15
|
}
|
|
16
|
+
export type ContractCompatibilitySeverity = 'OK' | 'WARNING' | 'ERROR' | 'UNKNOWN';
|
|
13
17
|
/**
|
|
14
18
|
* Version information for the Epistola plugin and connected server.
|
|
15
19
|
*/
|
|
16
20
|
export interface VersionInfo {
|
|
17
21
|
pluginVersion: string;
|
|
18
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;
|
|
19
46
|
}
|
|
20
47
|
/**
|
|
21
48
|
* Describes a single usage of an Epistola plugin action within a process definition.
|
|
@@ -140,18 +167,6 @@ export interface BpmnValidationReport {
|
|
|
140
167
|
refreshIntervalMs: number;
|
|
141
168
|
violations: BpmnValidationViolation[];
|
|
142
169
|
}
|
|
143
|
-
/**
|
|
144
|
-
* TEMPORARY (removed in 1.0.0). A form whose Epistola components are missing the
|
|
145
|
-
* task-id carrier field — surfaced on the admin page so it can be repaired.
|
|
146
|
-
* `readOnly` flags classpath-deployed forms (a repair there is reverted on the next
|
|
147
|
-
* boot; fix the source instead).
|
|
148
|
-
*/
|
|
149
|
-
export interface FormCarrierIssue {
|
|
150
|
-
formId: string;
|
|
151
|
-
name: string;
|
|
152
|
-
missingComponents: number;
|
|
153
|
-
readOnly: boolean;
|
|
154
|
-
}
|
|
155
170
|
/**
|
|
156
171
|
* TEMPORARY. A form whose `epistola-document-preview` components still use the legacy
|
|
157
172
|
* override-mapping object format (`{ scope: { path: "form:key" } }`) instead of the new
|
|
@@ -165,17 +180,3 @@ export interface LegacyOverrideForm {
|
|
|
165
180
|
legacyComponents: number;
|
|
166
181
|
readOnly: boolean;
|
|
167
182
|
}
|
|
168
|
-
/** TEMPORARY (removed in 1.0.0). Outcome of repairing one form's carrier. */
|
|
169
|
-
export interface FormCarrierRepairResult {
|
|
170
|
-
formId: string;
|
|
171
|
-
name: string | null;
|
|
172
|
-
success: boolean;
|
|
173
|
-
componentsPatched: number;
|
|
174
|
-
errorMessage: string | null;
|
|
175
|
-
}
|
|
176
|
-
/** TEMPORARY (removed in 1.0.0). Aggregate outcome of repairing all flagged forms. */
|
|
177
|
-
export interface FormCarrierRepairSummary {
|
|
178
|
-
formsRepaired: number;
|
|
179
|
-
componentsPatched: number;
|
|
180
|
-
failed: number;
|
|
181
|
-
}
|
|
@@ -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,
|
|
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
|
-
*
|
|
6
|
-
*
|
|
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
|
}
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Render a JSONata path tail for a Formio-style dotted key.
|
|
3
|
+
*
|
|
4
|
+
* Formio stores component keys through lodash get/set semantics, so dots in a
|
|
5
|
+
* component key are path separators. JSONata backticks should therefore quote
|
|
6
|
+
* only the segment that needs it, not the whole dotted key.
|
|
7
|
+
*/
|
|
8
|
+
export declare function renderJsonataPathTail(key: string): string;
|
|
9
|
+
export declare function renderJsonataPath(variableName: string, key: string): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epistola.app/valtimo-plugin",
|
|
3
|
-
"version": "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';
|