@valtimo/plugin 13.24.1 → 13.26.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.
Files changed (36) hide show
  1. package/fesm2022/valtimo-plugin.mjs +477 -22
  2. package/fesm2022/valtimo-plugin.mjs.map +1 -1
  3. package/lib/constants/plugin.test-ids.d.ts +6 -0
  4. package/lib/constants/plugin.test-ids.d.ts.map +1 -1
  5. package/lib/models/plugin.d.ts +4 -1
  6. package/lib/models/plugin.d.ts.map +1 -1
  7. package/lib/plugins/documenten-api/components/delete-document-link/delete-document-link-configuration.component.d.ts +24 -0
  8. package/lib/plugins/documenten-api/components/delete-document-link/delete-document-link-configuration.component.d.ts.map +1 -0
  9. package/lib/plugins/documenten-api/components/get-audit-trail/get-audit-trail-configuration.component.d.ts +24 -0
  10. package/lib/plugins/documenten-api/components/get-audit-trail/get-audit-trail-configuration.component.d.ts.map +1 -0
  11. package/lib/plugins/documenten-api/components/link-document-to-object/link-document-to-object-configuration.component.d.ts +24 -0
  12. package/lib/plugins/documenten-api/components/link-document-to-object/link-document-to-object-configuration.component.d.ts.map +1 -0
  13. package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts +7 -4
  14. package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts.map +1 -1
  15. package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -1
  16. package/lib/plugins/documenten-api/models/config.d.ts +20 -0
  17. package/lib/plugins/documenten-api/models/config.d.ts.map +1 -1
  18. package/lib/plugins/documenten-api/services/documenten-api.service.d.ts +6 -1
  19. package/lib/plugins/documenten-api/services/documenten-api.service.d.ts.map +1 -1
  20. package/lib/plugins/documenten-api-preview/components/documenten-api-preview-configuration/documenten-api-preview-configuration.component.d.ts +8 -1
  21. package/lib/plugins/documenten-api-preview/components/documenten-api-preview-configuration/documenten-api-preview-configuration.component.d.ts.map +1 -1
  22. package/lib/plugins/documenten-api-preview/documenten-api-preview-plugin.module.d.ts +2 -1
  23. package/lib/plugins/documenten-api-preview/documenten-api-preview-plugin.module.d.ts.map +1 -1
  24. package/lib/plugins/documenten-api-preview/documenten-api-preview-plugin.specification.d.ts.map +1 -1
  25. package/lib/plugins/documenten-api-preview/models/config.d.ts +3 -0
  26. package/lib/plugins/documenten-api-preview/models/config.d.ts.map +1 -1
  27. package/lib/plugins/notificaties-api/components/receive-notificatie/receive-notificatie-configuration.component.d.ts +29 -0
  28. package/lib/plugins/notificaties-api/components/receive-notificatie/receive-notificatie-configuration.component.d.ts.map +1 -0
  29. package/lib/plugins/notificaties-api/models/config.d.ts +8 -1
  30. package/lib/plugins/notificaties-api/models/config.d.ts.map +1 -1
  31. package/lib/plugins/notificaties-api/notificaties-api-plugin.module.d.ts +6 -4
  32. package/lib/plugins/notificaties-api/notificaties-api-plugin.module.d.ts.map +1 -1
  33. package/lib/plugins/notificaties-api/notificaties-api-plugin.specification.d.ts.map +1 -1
  34. package/package.json +1 -1
  35. package/public-api.d.ts +4 -0
  36. package/public-api.d.ts.map +1 -1
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, Inject, Injectable, Pipe, NgModule, EventEmitter, Output, Input, Component, ViewContainerRef, ViewChild, ViewChildren } from '@angular/core';
3
- import { BehaviorSubject, combineLatest, take, map as map$1, switchMap, filter, Subject, Subscription, tap as tap$1, catchError, of } from 'rxjs';
2
+ import { InjectionToken, Inject, Injectable, Pipe, NgModule, EventEmitter, Output, Input, Component, ViewContainerRef, ViewChild, ChangeDetectionStrategy, ViewChildren } from '@angular/core';
3
+ import { BehaviorSubject, combineLatest, take, of, map as map$1, skip, switchMap, filter, Subject, Subscription, tap as tap$1, catchError } from 'rxjs';
4
4
  import { map, tap } from 'rxjs/operators';
5
5
  import * as i2 from '@ngx-translate/core';
6
6
  import { TranslateModule } from '@ngx-translate/core';
@@ -14,7 +14,7 @@ import { RouterModule } from '@angular/router';
14
14
  import * as i1$1 from '@angular/common';
15
15
  import { CommonModule } from '@angular/common';
16
16
  import * as i2$2 from '@valtimo/components';
17
- import { ParagraphModule, FormModule, InputModule, ValuePathSelectorPrefix, SelectModule, CarbonMultiInputModule, CARBON_THEME, CurrentCarbonTheme, InputLabelModule, RadioModule, OverflowMenuComponent, OverflowMenuOptionComponent, ReadOnlyDirective, VModalComponent, MultiInputFormModule, TooltipIconModule, ValtimoCdsModalDirective, VModalModule, DatePickerModule as DatePickerModule$1 } from '@valtimo/components';
17
+ import { ParagraphModule, FormModule, InputModule, ValuePathSelectorPrefix, SelectModule, CarbonMultiInputModule, InputLabelModule, CARBON_THEME, CurrentCarbonTheme, RadioModule, OverflowMenuComponent, OverflowMenuOptionComponent, ReadOnlyDirective, VModalComponent, MultiInputFormModule, TooltipIconModule, ValtimoCdsModalDirective, VModalModule, DatePickerModule as DatePickerModule$1 } from '@valtimo/components';
18
18
  import { validate } from 'uuid';
19
19
  import * as i1$3 from 'carbon-components-angular';
20
20
  import { ToggleModule, LoadingModule, ButtonModule, IconModule, DatePickerInputModule, DatePickerModule, NotificationModule, TimePickerModule, ModalModule, InputModule as InputModule$1 } from 'carbon-components-angular';
@@ -135,6 +135,12 @@ const ZAKEN_API_CONFIGURATION_TEST_IDS = {
135
135
  url: 'zakenApiUrl',
136
136
  authenticationPluginConfiguration: 'zakenApiAuthenticationPluginConfiguration',
137
137
  };
138
+ const PLUGIN_CATALOG_TEST_IDS = {
139
+ tileGrid: 'pluginCatalogTileGrid',
140
+ tileLogo: 'pluginCatalogTileLogo',
141
+ tileTitle: 'pluginCatalogTileTitle',
142
+ tileDescription: 'pluginCatalogTileDescription',
143
+ };
138
144
 
139
145
  /*
140
146
  * Copyright 2015-2025 Ritense BV, the Netherlands.
@@ -1515,6 +1521,20 @@ const smartDocumentsPluginSpecification = {
1515
1521
  * See the License for the specific language governing permissions and
1516
1522
  * limitations under the License.
1517
1523
  */
1524
+ const OBJECT_INFORMATIE_OBJECT_ACTIONS = ['link-document-to-object', 'delete-document-link'];
1525
+ function documentenApiActionFilterFunction(pluginConfigurationProperties, functionKey, injector) {
1526
+ if (!OBJECT_INFORMATIE_OBJECT_ACTIONS.includes(functionKey)) {
1527
+ return of(true);
1528
+ }
1529
+ const apiVersion = pluginConfigurationProperties['apiVersion'];
1530
+ if (!apiVersion) {
1531
+ return of(false);
1532
+ }
1533
+ const documentenApiService = injector.get(DocumentenApiService);
1534
+ return documentenApiService
1535
+ .getVersionDetails(apiVersion)
1536
+ .pipe(map(details => details?.supportsObjectInformatieObjecten === true));
1537
+ }
1518
1538
  class DocumentenApiService {
1519
1539
  constructor(http, configService) {
1520
1540
  this.http = http;
@@ -1523,6 +1543,9 @@ class DocumentenApiService {
1523
1543
  getManagementApiAllVersions() {
1524
1544
  return this.http.get(`${this.valtimoEndpointUri}management/v1/documenten-api/versions`);
1525
1545
  }
1546
+ getVersionDetails(versionTag) {
1547
+ return this.getManagementApiAllVersions().pipe(map(response => response.versionDetails?.find(v => v.version === versionTag)));
1548
+ }
1526
1549
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiService, deps: [{ token: i1.HttpClient }, { token: i2$1.ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1527
1550
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiService, providedIn: 'root' }); }
1528
1551
  }
@@ -1920,6 +1943,210 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1920
1943
  type: Output
1921
1944
  }] } });
1922
1945
 
1946
+ /*
1947
+ * Copyright 2015-2025 Ritense BV, the Netherlands.
1948
+ *
1949
+ * Licensed under EUPL, Version 1.2 (the "License");
1950
+ * you may not use this file except in compliance with the License.
1951
+ * You may obtain a copy of the License at
1952
+ *
1953
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
1954
+ *
1955
+ * Unless required by applicable law or agreed to in writing, software
1956
+ * distributed under the License is distributed on an "AS IS" basis,
1957
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1958
+ * See the License for the specific language governing permissions and
1959
+ * limitations under the License.
1960
+ */
1961
+ class LinkDocumentToObjectConfigurationComponent {
1962
+ constructor() {
1963
+ this.valid = new EventEmitter();
1964
+ this.configuration = new EventEmitter();
1965
+ this.formValue$ = new BehaviorSubject(null);
1966
+ this.valid$ = new BehaviorSubject(false);
1967
+ }
1968
+ ngOnInit() {
1969
+ this.openSaveSubscription();
1970
+ }
1971
+ ngOnDestroy() {
1972
+ this.saveSubscription?.unsubscribe();
1973
+ }
1974
+ formValueChange(formValue) {
1975
+ this.formValue$.next(formValue);
1976
+ this.handleValid(formValue);
1977
+ }
1978
+ handleValid(formValue) {
1979
+ const valid = !!(formValue.objectUrl && formValue.objectType);
1980
+ this.valid$.next(valid);
1981
+ this.valid.emit(valid);
1982
+ }
1983
+ openSaveSubscription() {
1984
+ this.saveSubscription = this.save$?.subscribe(() => {
1985
+ combineLatest([this.formValue$, this.valid$])
1986
+ .pipe(take(1))
1987
+ .subscribe(([formValue, valid]) => {
1988
+ if (valid) {
1989
+ this.configuration.emit(formValue);
1990
+ }
1991
+ });
1992
+ });
1993
+ }
1994
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LinkDocumentToObjectConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1995
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: LinkDocumentToObjectConfigurationComponent, isStandalone: false, selector: "valtimo-link-document-to-object-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [margin]=\"true\">\n {{ 'linkDocumentToObjectExperimentalWarning' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'linkDocumentToObjectMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"objectUrl\"\n [title]=\"'objectUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.objectUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'objectUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n <v-input\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.objectType || 'pv:objectType'\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n</v-form>\n\n", dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
1996
+ }
1997
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LinkDocumentToObjectConfigurationComponent, decorators: [{
1998
+ type: Component,
1999
+ args: [{ selector: 'valtimo-link-document-to-object-configuration', standalone: false, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [margin]=\"true\">\n {{ 'linkDocumentToObjectExperimentalWarning' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'linkDocumentToObjectMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"objectUrl\"\n [title]=\"'objectUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.objectUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'objectUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n <v-input\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.objectType || 'pv:objectType'\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n</v-form>\n\n" }]
2000
+ }], propDecorators: { save$: [{
2001
+ type: Input
2002
+ }], disabled$: [{
2003
+ type: Input
2004
+ }], pluginId: [{
2005
+ type: Input
2006
+ }], prefillConfiguration$: [{
2007
+ type: Input
2008
+ }], valid: [{
2009
+ type: Output
2010
+ }], configuration: [{
2011
+ type: Output
2012
+ }] } });
2013
+
2014
+ /*
2015
+ * Copyright 2015-2025 Ritense BV, the Netherlands.
2016
+ *
2017
+ * Licensed under EUPL, Version 1.2 (the "License");
2018
+ * you may not use this file except in compliance with the License.
2019
+ * You may obtain a copy of the License at
2020
+ *
2021
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
2022
+ *
2023
+ * Unless required by applicable law or agreed to in writing, software
2024
+ * distributed under the License is distributed on an "AS IS" basis,
2025
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2026
+ * See the License for the specific language governing permissions and
2027
+ * limitations under the License.
2028
+ */
2029
+ class DeleteDocumentLinkConfigurationComponent {
2030
+ constructor() {
2031
+ this.valid = new EventEmitter();
2032
+ this.configuration = new EventEmitter();
2033
+ this.formValue$ = new BehaviorSubject(null);
2034
+ this.valid$ = new BehaviorSubject(false);
2035
+ }
2036
+ ngOnInit() {
2037
+ this.openSaveSubscription();
2038
+ }
2039
+ ngOnDestroy() {
2040
+ this.saveSubscription?.unsubscribe();
2041
+ }
2042
+ formValueChange(formValue) {
2043
+ this.formValue$.next(formValue);
2044
+ this.handleValid(formValue);
2045
+ }
2046
+ handleValid(formValue) {
2047
+ const valid = !!formValue.objectInformatieObjectUrl;
2048
+ this.valid$.next(valid);
2049
+ this.valid.emit(valid);
2050
+ }
2051
+ openSaveSubscription() {
2052
+ this.saveSubscription = this.save$?.subscribe(() => {
2053
+ combineLatest([this.formValue$, this.valid$])
2054
+ .pipe(take(1))
2055
+ .subscribe(([formValue, valid]) => {
2056
+ if (valid) {
2057
+ this.configuration.emit(formValue);
2058
+ }
2059
+ });
2060
+ });
2061
+ }
2062
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DeleteDocumentLinkConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2063
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DeleteDocumentLinkConfigurationComponent, isStandalone: false, selector: "valtimo-delete-document-link-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [margin]=\"true\">\n {{ 'deleteDocumentLinkExperimentalWarning' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'deleteDocumentLinkMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"objectInformatieObjectUrl\"\n [title]=\"'objectInformatieObjectUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.objectInformatieObjectUrl || 'pv:objectInformatieObjectUrl'\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'objectInformatieObjectUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n</v-form>\n", dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
2064
+ }
2065
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DeleteDocumentLinkConfigurationComponent, decorators: [{
2066
+ type: Component,
2067
+ args: [{ selector: 'valtimo-delete-document-link-configuration', standalone: false, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [margin]=\"true\">\n {{ 'deleteDocumentLinkExperimentalWarning' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'deleteDocumentLinkMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"objectInformatieObjectUrl\"\n [title]=\"'objectInformatieObjectUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.objectInformatieObjectUrl || 'pv:objectInformatieObjectUrl'\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'objectInformatieObjectUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n</v-form>\n" }]
2068
+ }], propDecorators: { save$: [{
2069
+ type: Input
2070
+ }], disabled$: [{
2071
+ type: Input
2072
+ }], pluginId: [{
2073
+ type: Input
2074
+ }], prefillConfiguration$: [{
2075
+ type: Input
2076
+ }], valid: [{
2077
+ type: Output
2078
+ }], configuration: [{
2079
+ type: Output
2080
+ }] } });
2081
+
2082
+ /*
2083
+ * Copyright 2015-2026 Ritense BV, the Netherlands.
2084
+ *
2085
+ * Licensed under EUPL, Version 1.2 (the "License");
2086
+ * you may not use this file except in compliance with the License.
2087
+ * You may obtain a copy of the License at
2088
+ *
2089
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
2090
+ *
2091
+ * Unless required by applicable law or agreed to in writing, software
2092
+ * distributed under the License is distributed on an "AS IS" basis,
2093
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2094
+ * See the License for the specific language governing permissions and
2095
+ * limitations under the License.
2096
+ */
2097
+ class GetAuditTrailConfigurationComponent {
2098
+ constructor() {
2099
+ this.valid = new EventEmitter();
2100
+ this.configuration = new EventEmitter();
2101
+ this._formValue$ = new BehaviorSubject(null);
2102
+ this._valid$ = new BehaviorSubject(false);
2103
+ }
2104
+ ngOnInit() {
2105
+ this.openSaveSubscription();
2106
+ }
2107
+ ngOnDestroy() {
2108
+ this._saveSubscription?.unsubscribe();
2109
+ }
2110
+ formValueChange(formValue) {
2111
+ this._formValue$.next(formValue);
2112
+ this.handleValid(formValue);
2113
+ }
2114
+ handleValid(formValue) {
2115
+ const valid = !!(formValue.documentUrl && formValue.processVariableName);
2116
+ this._valid$.next(valid);
2117
+ this.valid.emit(valid);
2118
+ }
2119
+ openSaveSubscription() {
2120
+ this._saveSubscription = this.save$?.subscribe(() => {
2121
+ combineLatest([this._formValue$, this._valid$])
2122
+ .pipe(take(1))
2123
+ .subscribe(([formValue, valid]) => {
2124
+ if (valid) {
2125
+ this.configuration.emit(formValue);
2126
+ }
2127
+ });
2128
+ });
2129
+ }
2130
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetAuditTrailConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2131
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: GetAuditTrailConfigurationComponent, isStandalone: false, selector: "valtimo-get-audit-trail-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n (valueChange)=\"formValueChange($event)\"\n>\n <v-input\n [defaultValue]=\"obs.prefill?.documentUrl\"\n [disabled]=\"obs.disabled\"\n [fullWidth]=\"true\"\n [margin]=\"true\"\n [required]=\"true\"\n [title]=\"'documentUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'documentUrlTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n name=\"documentUrl\"\n ></v-input>\n\n <v-input\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n [required]=\"true\"\n [title]=\"'auditTrailProcessVariableName' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'auditTrailProcessVariableNameTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n name=\"processVariableName\"\n ></v-input>\n</v-form>\n", dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2132
+ }
2133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetAuditTrailConfigurationComponent, decorators: [{
2134
+ type: Component,
2135
+ args: [{ selector: 'valtimo-get-audit-trail-configuration', standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n (valueChange)=\"formValueChange($event)\"\n>\n <v-input\n [defaultValue]=\"obs.prefill?.documentUrl\"\n [disabled]=\"obs.disabled\"\n [fullWidth]=\"true\"\n [margin]=\"true\"\n [required]=\"true\"\n [title]=\"'documentUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'documentUrlTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n name=\"documentUrl\"\n ></v-input>\n\n <v-input\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n [required]=\"true\"\n [title]=\"'auditTrailProcessVariableName' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'auditTrailProcessVariableNameTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n name=\"processVariableName\"\n ></v-input>\n</v-form>\n" }]
2136
+ }], propDecorators: { save$: [{
2137
+ type: Input
2138
+ }], disabled$: [{
2139
+ type: Input
2140
+ }], pluginId: [{
2141
+ type: Input
2142
+ }], prefillConfiguration$: [{
2143
+ type: Input
2144
+ }], valid: [{
2145
+ type: Output
2146
+ }], configuration: [{
2147
+ type: Output
2148
+ }] } });
2149
+
1923
2150
  /*
1924
2151
  * Copyright 2015-2025 Ritense BV, the Netherlands.
1925
2152
  *
@@ -1941,7 +2168,10 @@ class DocumentenApiPluginModule {
1941
2168
  StoreTempDocumentConfigurationComponent,
1942
2169
  StoreUploadedDocumentConfigurationComponent,
1943
2170
  StoreUploadedDocumentInPartsConfigurationComponent,
1944
- DownloadDocumentConfigurationComponent], imports: [CommonModule,
2171
+ DownloadDocumentConfigurationComponent,
2172
+ LinkDocumentToObjectConfigurationComponent,
2173
+ DeleteDocumentLinkConfigurationComponent,
2174
+ GetAuditTrailConfigurationComponent], imports: [CommonModule,
1945
2175
  PluginTranslatePipeModule,
1946
2176
  FormModule,
1947
2177
  InputModule,
@@ -1950,7 +2180,10 @@ class DocumentenApiPluginModule {
1950
2180
  StoreTempDocumentConfigurationComponent,
1951
2181
  StoreUploadedDocumentConfigurationComponent,
1952
2182
  StoreUploadedDocumentInPartsConfigurationComponent,
1953
- DownloadDocumentConfigurationComponent] }); }
2183
+ DownloadDocumentConfigurationComponent,
2184
+ LinkDocumentToObjectConfigurationComponent,
2185
+ DeleteDocumentLinkConfigurationComponent,
2186
+ GetAuditTrailConfigurationComponent] }); }
1954
2187
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiPluginModule, imports: [CommonModule,
1955
2188
  PluginTranslatePipeModule,
1956
2189
  FormModule,
@@ -1967,6 +2200,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1967
2200
  StoreUploadedDocumentConfigurationComponent,
1968
2201
  StoreUploadedDocumentInPartsConfigurationComponent,
1969
2202
  DownloadDocumentConfigurationComponent,
2203
+ LinkDocumentToObjectConfigurationComponent,
2204
+ DeleteDocumentLinkConfigurationComponent,
2205
+ GetAuditTrailConfigurationComponent,
1970
2206
  ],
1971
2207
  imports: [
1972
2208
  CommonModule,
@@ -1982,6 +2218,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1982
2218
  StoreUploadedDocumentConfigurationComponent,
1983
2219
  StoreUploadedDocumentInPartsConfigurationComponent,
1984
2220
  DownloadDocumentConfigurationComponent,
2221
+ LinkDocumentToObjectConfigurationComponent,
2222
+ DeleteDocumentLinkConfigurationComponent,
2223
+ GetAuditTrailConfigurationComponent,
1985
2224
  ],
1986
2225
  }]
1987
2226
  }] });
@@ -2043,7 +2282,11 @@ const documentenApiPluginSpecification = {
2043
2282
  'store-uploaded-document': StoreUploadedDocumentConfigurationComponent,
2044
2283
  'store-uploaded-document-in-parts': StoreUploadedDocumentInPartsConfigurationComponent,
2045
2284
  'download-document': DownloadDocumentConfigurationComponent,
2285
+ 'link-document-to-object': LinkDocumentToObjectConfigurationComponent,
2286
+ 'delete-document-link': DeleteDocumentLinkConfigurationComponent,
2287
+ 'get-audit-trail': GetAuditTrailConfigurationComponent,
2046
2288
  },
2289
+ functionConfigurationComponentsFilter: documentenApiActionFilterFunction,
2047
2290
  pluginTranslations: {
2048
2291
  nl: {
2049
2292
  title: 'Documenten API',
@@ -2052,6 +2295,8 @@ const documentenApiPluginSpecification = {
2052
2295
  'store-uploaded-document': 'Geupload document opslaan',
2053
2296
  'store-uploaded-document-in-parts': 'Geupload document opslaan in bestandsdelen',
2054
2297
  'download-document': 'Download document',
2298
+ 'link-document-to-object': 'Document koppelen aan object',
2299
+ 'delete-document-link': 'Documentkoppeling verwijderen',
2055
2300
  storeUploadedDocumentMessage: 'Het opslaan van een geupload document heeft geen configuratie nodig.',
2056
2301
  storeUploadedDocumentInPartsMessage: 'Het opslaan van een geupload document in bestandsdelen heeft geen configuratie nodig',
2057
2302
  configurationTitle: 'Configuratienaam',
@@ -2095,6 +2340,26 @@ const documentenApiPluginSpecification = {
2095
2340
  apiVersionTooltip: 'Selecteer de versie van de Documenten API',
2096
2341
  downloadDocumentMessage: 'Het downloaden van een document vanuit de Documenten API vereist geen configuratie.',
2097
2342
  processVariableName: 'Wat is de naam van de procesvariabele waarnaar u het document wilt downloaden?',
2343
+ linkDocumentToObjectMessage: "Koppelt het document waarvan de URL is opgeslagen in de procesvariabele 'documentUrl' aan een object. " +
2344
+ "Procesvariabelen kunnen worden gebruikt met de notatie 'pv:variabelenaam'.",
2345
+ linkDocumentToObjectExperimentalWarning: '⚠ Experimentele functie: deze actie maakt gebruik van de objectinformatieobjecten-API.',
2346
+ deleteDocumentLinkMessage: "Verwijdert een objectinformatieobject-koppeling op basis van de opgegeven URL. " +
2347
+ "De koppelingsactie 'Document koppelen aan object' slaat deze URL op in de procesvariabele 'objectInformatieObjectUrl'. " +
2348
+ "Procesvariabelen kunnen worden gebruikt met de notatie 'pv:variabelenaam'.",
2349
+ deleteDocumentLinkExperimentalWarning: '⚠ Experimentele functie: deze actie maakt gebruik van de objectinformatieobjecten-API.',
2350
+ objectUrl: 'Object URL',
2351
+ objectUrlTooltip: "De URL van het object waaraan het document gekoppeld moet worden. " +
2352
+ "Gebruik 'pv:variabelenaam' om een procesvariabele te refereren, bijv. 'pv:objectUrl'.",
2353
+ objectType: 'Objecttype',
2354
+ objectTypeTooltip: "Het type van het object, bijv. 'zaak', 'besluit' of 'apiname'. " +
2355
+ "Gebruik 'pv:variabelenaam' om een procesvariabele te refereren.",
2356
+ objectInformatieObjectUrl: 'Objectinformatieobject URL',
2357
+ objectInformatieObjectUrlTooltip: "De URL van de objectinformatieobject-koppeling die verwijderd moet worden. ",
2358
+ 'get-audit-trail': 'Audit trail ophalen',
2359
+ documentUrl: 'Document URL',
2360
+ documentUrlTooltip: 'De volledige URL naar het enkelvoudiginformatieobject waarvoor de audit trail opgehaald moet worden',
2361
+ auditTrailProcessVariableName: 'Naam procesvariabele voor audit trail',
2362
+ auditTrailProcessVariableNameTooltip: 'De naam van de procesvariabele waarin het resultaat van de audit trail opgeslagen wordt als JSON',
2098
2363
  },
2099
2364
  en: {
2100
2365
  title: 'Documenten API',
@@ -2103,6 +2368,8 @@ const documentenApiPluginSpecification = {
2103
2368
  'store-uploaded-document': 'Save uploaded document',
2104
2369
  'store-uploaded-document-in-parts': 'Save uploaded document in parts',
2105
2370
  'download-document': 'Download document',
2371
+ 'link-document-to-object': 'Link document to object',
2372
+ 'delete-document-link': 'Delete document link',
2106
2373
  storeUploadedDocumentMessage: 'Saving an uploaded document does not require any configuration.',
2107
2374
  storeUploadedDocumentInPartsMessage: 'Saving an uploaded document in parts does not require any configuration.',
2108
2375
  configurationTitle: 'Configuration name',
@@ -2146,6 +2413,27 @@ const documentenApiPluginSpecification = {
2146
2413
  apiVersionTooltip: 'Select the version of the Documenten API',
2147
2414
  downloadDocumentMessage: 'Downloading a document form the Documenten API does not require any configuration.',
2148
2415
  processVariableName: 'What is the name of the process variable you want to download the document to?',
2416
+ linkDocumentToObjectMessage: "Links the document whose URL is stored in the process variable 'documentUrl' to an object. For Zaak items use the Zaken API to ensure backwards compatibility." +
2417
+ "Process variables can be referenced using the notation 'pv:variableName'.",
2418
+ linkDocumentToObjectExperimentalWarning: '⚠ Experimental feature: this action uses the objectinformatieobjecten API.',
2419
+ deleteDocumentLinkMessage: "Deletes an objectinformatieobject link by its URL. " +
2420
+ "The 'Link document to object' action stores this URL in the process variable 'objectInformatieObjectUrl'. " +
2421
+ "Process variables can be referenced using the notation 'pv:variableName'.",
2422
+ deleteDocumentLinkExperimentalWarning: '⚠ Experimental feature: this action uses the objectinformatieobjecten API.',
2423
+ objectUrl: 'Object URL',
2424
+ objectUrlTooltip: "The URL of the object to link the document to. " +
2425
+ "Use 'pv:variableName' to reference a process variable, e.g. 'pv:objectUrl'.",
2426
+ objectType: 'Object type',
2427
+ objectTypeTooltip: "The type of the object, e.g. 'zaak', 'besluit' or 'apiname'. " +
2428
+ "Use 'pv:variableName' to reference a process variable.",
2429
+ objectInformatieObjectUrl: 'Objectinformatieobject URL',
2430
+ objectInformatieObjectUrlTooltip: "The URL of the objectinformatieobject link to delete. " +
2431
+ "The preceding action stores this in the process variable 'objectInformatieObjectUrl'.",
2432
+ 'get-audit-trail': 'Get audit trail',
2433
+ documentUrl: 'Document URL',
2434
+ documentUrlTooltip: 'The full URL to the enkelvoudiginformatieobject for which to retrieve the audit trail',
2435
+ auditTrailProcessVariableName: 'Process variable name for audit trail',
2436
+ auditTrailProcessVariableNameTooltip: 'The name of the process variable in which the audit trail result will be stored as JSON',
2149
2437
  },
2150
2438
  },
2151
2439
  };
@@ -2190,6 +2478,13 @@ class DocumentenApiPreviewConfigurationComponent {
2190
2478
  this.configuration = new EventEmitter();
2191
2479
  this.formValue$ = new BehaviorSubject(null);
2192
2480
  this.valid$ = new BehaviorSubject(false);
2481
+ this.pdfArchiveMethods = [
2482
+ { id: 'none', text: 'None', translationKey: 'pdfArchiveMethodNone' },
2483
+ { id: 'PDF/A-1b', text: 'PDF/A-1b', translationKey: 'pdfArchiveMethodPdfA1b' },
2484
+ { id: 'PDF/A-2b', text: 'PDF/A-2b', translationKey: 'pdfArchiveMethodPdfA2b' },
2485
+ { id: 'PDF/A-3b', text: 'PDF/A-3b', translationKey: 'pdfArchiveMethodPdfA3b' },
2486
+ ];
2487
+ this.pdfUniversalAccessibility$ = new BehaviorSubject(false);
2193
2488
  this.documentenApiPluginSelectItems$ = combineLatest([
2194
2489
  this.pluginManagementService.getPluginConfigurationsByPluginDefinitionKey('documentenapi'),
2195
2490
  this.translateService.stream('key'),
@@ -2199,14 +2494,39 @@ class DocumentenApiPreviewConfigurationComponent {
2199
2494
  }))));
2200
2495
  }
2201
2496
  ngOnInit() {
2497
+ this.initPdfUniversalAccessibilityEnabled();
2498
+ this.openPdfUniversalAccessibilitySubscription();
2202
2499
  this.openSaveSubscription();
2203
2500
  }
2204
2501
  ngOnDestroy() {
2502
+ this._pdfUniversalAccessibilitySubscription?.unsubscribe();
2205
2503
  this.saveSubscription?.unsubscribe();
2206
2504
  }
2505
+ onPdfUniversalAccessibilityChange(checked) {
2506
+ this.pdfUniversalAccessibility$.next(checked);
2507
+ }
2207
2508
  formValueChange(formValue) {
2208
- this.formValue$.next(formValue);
2209
- this.handleValid(formValue);
2509
+ const formValueIncludingToggle = {
2510
+ ...formValue,
2511
+ pdfUniversalAccessibility: this.pdfUniversalAccessibility$.getValue(),
2512
+ };
2513
+ this.formValue$.next(formValueIncludingToggle);
2514
+ this.handleValid(formValueIncludingToggle);
2515
+ }
2516
+ initPdfUniversalAccessibilityEnabled() {
2517
+ this.prefillConfiguration$?.pipe(take(1)).subscribe(configuration => {
2518
+ this.pdfUniversalAccessibility$.next(!!configuration?.pdfUniversalAccessibility);
2519
+ });
2520
+ }
2521
+ openPdfUniversalAccessibilitySubscription() {
2522
+ this._pdfUniversalAccessibilitySubscription = this.pdfUniversalAccessibility$
2523
+ .pipe(skip(1))
2524
+ .subscribe(() => {
2525
+ const currentFormValue = this.formValue$.getValue();
2526
+ if (currentFormValue) {
2527
+ this.formValueChange(currentFormValue);
2528
+ }
2529
+ });
2210
2530
  }
2211
2531
  handleValid(formValue) {
2212
2532
  const valid = !!(formValue.configurationTitle &&
@@ -2227,11 +2547,11 @@ class DocumentenApiPreviewConfigurationComponent {
2227
2547
  });
2228
2548
  }
2229
2549
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiPreviewConfigurationComponent, deps: [{ token: PluginManagementService }, { token: i2.TranslateService }, { token: PluginTranslationService }], target: i0.ɵɵFactoryTarget.Component }); }
2230
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DocumentenApiPreviewConfigurationComponent, isStandalone: false, selector: "valtimo-documenten-api-preview-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n data-test-id=\"documentenApiPreviewConfigurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Documenten API Preview Plugin\"\n >\n </v-input>\n <v-input\n name=\"pdfConversionUrl\"\n data-test-id=\"pdfConversionUrl\"\n [title]=\"'pdfConversionUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.pdfConversionUrl\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'pdfConversionUrlTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"https://gotenberg:3000/\"\n >\n </v-input>\n <ng-container\n *ngIf=\"{\n documentenApiPluginSelectItems: documentenApiPluginSelectItems$ | async,\n } as documentenApiObs\"\n >\n <v-select\n [loading]=\"!documentenApiObs.documentenApiPluginSelectItems\"\n [items]=\"documentenApiObs.documentenApiPluginSelectItems\"\n [margin]=\"true\"\n name=\"documentenApiConfigurationId\"\n data-test-id=\"documentenPreviewDocumentenApiPluginConfiguration\"\n [title]=\"'documentenApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.documentenApiConfigurationId\"\n [required]=\"true\"\n [tooltip]=\"'documentenApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n</v-form>\n", dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "defaultSelectionIds", "disabled", "dropUp", "invalid", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "clearText", "clearable", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder", "smallMargin", "carbonTheme", "appendInline", "warn", "warnText", "dataTestId"], outputs: ["selectedChange"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
2550
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DocumentenApiPreviewConfigurationComponent, isStandalone: false, selector: "valtimo-documenten-api-preview-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n documentenApiPluginSelectItems: documentenApiPluginSelectItems$ | async,\n pdfUniversalAccessibility: pdfUniversalAccessibility$ | async,\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n data-test-id=\"documentenApiPreviewConfigurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Documenten API Preview Plugin\"\n >\n </v-input>\n\n <v-input\n name=\"pdfConversionUrl\"\n data-test-id=\"pdfConversionUrl\"\n [title]=\"'pdfConversionUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.pdfConversionUrl\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'pdfConversionUrlTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"https://gotenberg:3000/\"\n >\n </v-input>\n\n <v-select\n [loading]=\"!obs.documentenApiPluginSelectItems\"\n [items]=\"obs.documentenApiPluginSelectItems\"\n [margin]=\"true\"\n name=\"documentenApiConfigurationId\"\n data-test-id=\"documentenPreviewDocumentenApiPluginConfiguration\"\n [title]=\"'documentenApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.documentenApiConfigurationId\"\n [required]=\"true\"\n [tooltip]=\"'documentenApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n\n <v-select\n [loading]=\"!pdfArchiveMethods\"\n [items]=\"pdfArchiveMethods\"\n name=\"pdfArchiveMethod\"\n [title]=\"'pdfArchiveMethod' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'pdfArchiveMethodTooltip' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultSelectionId]=\"obs.prefill?.pdfArchiveMethod || 'none'\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n ></v-select>\n\n <div class=\"input-toggle--small-margin\">\n <v-input-label\n [title]=\"'pdfUniversalAccessibility' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'pdfUniversalAccessibilityTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input-label>\n\n <cds-toggle\n [checked]=\"obs.pdfUniversalAccessibility\"\n [disabled]=\"obs.disabled\"\n [onText]=\"'pdfUniversalAccessibility.toggleOn' | pluginTranslate: pluginId | async\"\n [offText]=\"'pdfUniversalAccessibility.toggleOff' | pluginTranslate: pluginId | async\"\n (checkedChange)=\"onPdfUniversalAccessibilityChange($event)\"\n ></cds-toggle>\n </div>\n</v-form>\n", dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "defaultSelectionIds", "disabled", "dropUp", "invalid", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "clearText", "clearable", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder", "smallMargin", "carbonTheme", "appendInline", "warn", "warnText", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.InputLabelComponent, selector: "v-input-label", inputs: ["name", "tooltip", "tooltipTranslationKey", "largeMargin", "small", "noMargin", "title", "titleTranslationKey", "required", "disabled", "carbonTheme"] }, { kind: "component", type: i1$3.Toggle, selector: "cds-toggle, ibm-toggle", inputs: ["offText", "onText", "label", "size", "hideLabel", "ariaLabel", "skeleton"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
2231
2551
  }
2232
2552
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiPreviewConfigurationComponent, decorators: [{
2233
2553
  type: Component,
2234
- args: [{ selector: 'valtimo-documenten-api-preview-configuration', standalone: false, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n data-test-id=\"documentenApiPreviewConfigurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Documenten API Preview Plugin\"\n >\n </v-input>\n <v-input\n name=\"pdfConversionUrl\"\n data-test-id=\"pdfConversionUrl\"\n [title]=\"'pdfConversionUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.pdfConversionUrl\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'pdfConversionUrlTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"https://gotenberg:3000/\"\n >\n </v-input>\n <ng-container\n *ngIf=\"{\n documentenApiPluginSelectItems: documentenApiPluginSelectItems$ | async,\n } as documentenApiObs\"\n >\n <v-select\n [loading]=\"!documentenApiObs.documentenApiPluginSelectItems\"\n [items]=\"documentenApiObs.documentenApiPluginSelectItems\"\n [margin]=\"true\"\n name=\"documentenApiConfigurationId\"\n data-test-id=\"documentenPreviewDocumentenApiPluginConfiguration\"\n [title]=\"'documentenApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.documentenApiConfigurationId\"\n [required]=\"true\"\n [tooltip]=\"'documentenApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n</v-form>\n" }]
2554
+ args: [{ selector: 'valtimo-documenten-api-preview-configuration', standalone: false, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n documentenApiPluginSelectItems: documentenApiPluginSelectItems$ | async,\n pdfUniversalAccessibility: pdfUniversalAccessibility$ | async,\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n data-test-id=\"documentenApiPreviewConfigurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Documenten API Preview Plugin\"\n >\n </v-input>\n\n <v-input\n name=\"pdfConversionUrl\"\n data-test-id=\"pdfConversionUrl\"\n [title]=\"'pdfConversionUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.pdfConversionUrl\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'pdfConversionUrlTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"https://gotenberg:3000/\"\n >\n </v-input>\n\n <v-select\n [loading]=\"!obs.documentenApiPluginSelectItems\"\n [items]=\"obs.documentenApiPluginSelectItems\"\n [margin]=\"true\"\n name=\"documentenApiConfigurationId\"\n data-test-id=\"documentenPreviewDocumentenApiPluginConfiguration\"\n [title]=\"'documentenApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.documentenApiConfigurationId\"\n [required]=\"true\"\n [tooltip]=\"'documentenApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n\n <v-select\n [loading]=\"!pdfArchiveMethods\"\n [items]=\"pdfArchiveMethods\"\n name=\"pdfArchiveMethod\"\n [title]=\"'pdfArchiveMethod' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'pdfArchiveMethodTooltip' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultSelectionId]=\"obs.prefill?.pdfArchiveMethod || 'none'\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n ></v-select>\n\n <div class=\"input-toggle--small-margin\">\n <v-input-label\n [title]=\"'pdfUniversalAccessibility' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'pdfUniversalAccessibilityTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input-label>\n\n <cds-toggle\n [checked]=\"obs.pdfUniversalAccessibility\"\n [disabled]=\"obs.disabled\"\n [onText]=\"'pdfUniversalAccessibility.toggleOn' | pluginTranslate: pluginId | async\"\n [offText]=\"'pdfUniversalAccessibility.toggleOff' | pluginTranslate: pluginId | async\"\n (checkedChange)=\"onPdfUniversalAccessibilityChange($event)\"\n ></cds-toggle>\n </div>\n</v-form>\n" }]
2235
2555
  }], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }], propDecorators: { save$: [{
2236
2556
  type: Input
2237
2557
  }], disabled$: [{
@@ -2268,13 +2588,15 @@ class DocumentenApiPreviewPluginModule {
2268
2588
  FormModule,
2269
2589
  InputModule,
2270
2590
  SelectModule,
2271
- ParagraphModule], exports: [DocumentenApiPreviewConfigurationComponent] }); }
2591
+ InputLabelModule,
2592
+ ToggleModule], exports: [DocumentenApiPreviewConfigurationComponent] }); }
2272
2593
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiPreviewPluginModule, imports: [CommonModule,
2273
2594
  PluginTranslatePipeModule,
2274
2595
  FormModule,
2275
2596
  InputModule,
2276
2597
  SelectModule,
2277
- ParagraphModule] }); }
2598
+ InputLabelModule,
2599
+ ToggleModule] }); }
2278
2600
  }
2279
2601
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiPreviewPluginModule, decorators: [{
2280
2602
  type: NgModule,
@@ -2286,7 +2608,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
2286
2608
  FormModule,
2287
2609
  InputModule,
2288
2610
  SelectModule,
2289
- ParagraphModule,
2611
+ InputLabelModule,
2612
+ ToggleModule,
2290
2613
  ],
2291
2614
  exports: [DocumentenApiPreviewConfigurationComponent],
2292
2615
  }]
@@ -2350,20 +2673,40 @@ const documentenApiPreviewPluginSpecification = {
2350
2673
  description: 'Plugin voor het weergeven (preview) van documenten binnen GZAC.',
2351
2674
  configurationTitle: 'Configuratienaam',
2352
2675
  configurationTitleTooltip: 'Hier kun je een eigen naam verzinnen. Onder deze naam zal de plugin te herkennen zijn in de rest van de applicatie',
2353
- pdfConversionUrl: 'PDF Conversie URL',
2676
+ pdfConversionUrl: 'PDF conversie URL',
2354
2677
  pdfConversionUrlTooltip: 'In dit veld moet de verwijzing komen naar de locatie van de PDF conversie server (Project Gotenberg).',
2678
+ pdfArchiveMethod: 'PDF archivering methode',
2679
+ pdfArchiveMethodTooltip: 'Selecteer de methode die gebruikt wordt om PDF documenten te archiveren. Het archiveren van PDF documenten kan lang duren en extra resources vereisen, selecteer de optie "Geen" voor de meest optimale prestaties.',
2355
2680
  documentenApiPluginConfiguration: 'Documenten API configuratie',
2356
2681
  documentenApiPluginConfigurationTooltip: 'Selecteer de plugin die gebruikt wordt voor het ontsluiten van documenten. Deze plugin zal worden gebruikt om de originele documenten te ontsluiten zodat deze geconverteerd kunnen worden naar PDF voor weergave in de browser.',
2682
+ pdfArchiveMethodNone: 'Geen',
2683
+ pdfArchiveMethodPdfA1b: 'PDF/A-1b',
2684
+ pdfArchiveMethodPdfA2b: 'PDF/A-2b',
2685
+ pdfArchiveMethodPdfA3b: 'PDF/A-3b',
2686
+ pdfUniversalAccessibility: 'Universele toegankelijkheid',
2687
+ pdfUniversalAccessibilityTooltip: 'Schakel deze optie aan om het PDF document geschikt te maken voor ondersteunende technologieën zoals screen readers.',
2688
+ 'pdfUniversalAccessibility.toggleOn': 'Geactiveerd',
2689
+ 'pdfUniversalAccessibility.toggleOff': 'Gedeactiveerd',
2357
2690
  },
2358
2691
  en: {
2359
2692
  title: 'Documenten API Preview',
2360
2693
  description: 'Plugin to allow previewing documents directly in the GZAC.',
2361
2694
  configurationTitle: 'Configuration name',
2362
2695
  configurationTitleTooltip: 'Here you can enter a name for the plugin. This name will be used to recognize the plugin throughout the rest of the application',
2363
- pdfConversionUrl: 'PDF Conversion URL',
2696
+ pdfConversionUrl: 'PDF conversion URL',
2364
2697
  pdfConversionUrlTooltip: 'This field must contain the URL to the PDF conversion server.',
2698
+ pdfArchiveMethod: 'PDF archive method',
2699
+ pdfArchiveMethodTooltip: 'Select the method that should be used to archive PDF documents. Important: generating a PDF archive can take a long time and may require additional resources, select the option "None" for the optimal performance.',
2365
2700
  documentenApiPluginConfiguration: 'Document API configuration',
2366
2701
  documentenApiPluginConfigurationTooltip: 'Select the plugin that can access the documents. This plugin will be used to access the original document so it can be converted to PDF and previewed in the browser.',
2702
+ pdfArchiveMethodNone: 'None',
2703
+ pdfArchiveMethodPdfA1b: 'PDF/A-1b',
2704
+ pdfArchiveMethodPdfA2b: 'PDF/A-2b',
2705
+ pdfArchiveMethodPdfA3b: 'PDF/A-3b',
2706
+ pdfUniversalAccessibility: 'Universal accessibility',
2707
+ pdfUniversalAccessibilityTooltip: 'Enable this option to make the PDF document suitable for assistive technologies such as screen readers.',
2708
+ 'pdfUniversalAccessibility.toggleOn': 'Enabled',
2709
+ 'pdfUniversalAccessibility.toggleOff': 'Disabled',
2367
2710
  },
2368
2711
  },
2369
2712
  };
@@ -7639,6 +7982,104 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
7639
7982
  type: Output
7640
7983
  }] } });
7641
7984
 
7985
+ /*
7986
+ * Copyright 2015-2026 Ritense BV, the Netherlands.
7987
+ *
7988
+ * Licensed under EUPL, Version 1.2 (the "License");
7989
+ * you may not use this file except in compliance with the License.
7990
+ * You may obtain a copy of the License at
7991
+ *
7992
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
7993
+ *
7994
+ * Unless required by applicable law or agreed to in writing, software
7995
+ * distributed under the License is distributed on an "AS IS" basis,
7996
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7997
+ * See the License for the specific language governing permissions and
7998
+ * limitations under the License.
7999
+ */
8000
+ class ReceiveNotificatieConfigurationComponent {
8001
+ constructor() {
8002
+ this.valid = new EventEmitter();
8003
+ this.configuration = new EventEmitter();
8004
+ this.kenmerkenDefaultValues = [];
8005
+ this.formValue$ = new BehaviorSubject(null);
8006
+ this.valid$ = new BehaviorSubject(false);
8007
+ this.kenmerken = {};
8008
+ }
8009
+ ngOnInit() {
8010
+ this.openSaveSubscription();
8011
+ this.openPrefillSubscription();
8012
+ this.valid$.next(true);
8013
+ this.valid.emit(true);
8014
+ }
8015
+ ngOnDestroy() {
8016
+ this.saveSubscription?.unsubscribe();
8017
+ this.prefillSubscription?.unsubscribe();
8018
+ }
8019
+ formValueChange(formValue) {
8020
+ this.formValue$.next({ ...formValue, kenmerken: this.kenmerken });
8021
+ this.valid$.next(true);
8022
+ this.valid.emit(true);
8023
+ }
8024
+ kenmerkenChange(value) {
8025
+ const values = value;
8026
+ this.kenmerken = values.reduce((acc, curr) => ({
8027
+ ...acc,
8028
+ ...(!curr.key || !curr.value ? {} : { [curr.key]: curr.value }),
8029
+ }), {});
8030
+ const currentFormValue = this.formValue$.value ?? {};
8031
+ this.formValue$.next({ ...currentFormValue, kenmerken: this.kenmerken });
8032
+ }
8033
+ openSaveSubscription() {
8034
+ this.saveSubscription = this.save$
8035
+ ?.pipe(switchMap(() => combineLatest([this.formValue$, this.valid$]).pipe(take(1))))
8036
+ .subscribe(([formValue, valid]) => {
8037
+ if (valid) {
8038
+ this.configuration.emit(formValue);
8039
+ }
8040
+ });
8041
+ }
8042
+ openPrefillSubscription() {
8043
+ if (this.prefillConfiguration$) {
8044
+ this.prefillSubscription = this.prefillConfiguration$
8045
+ .pipe(take(1))
8046
+ .subscribe(config => {
8047
+ if (config) {
8048
+ this.formValue$.next({ ...config });
8049
+ if (config.kenmerken) {
8050
+ this.kenmerken = config.kenmerken;
8051
+ this.kenmerkenDefaultValues = Object.entries(config.kenmerken).map(([key, value]) => ({ key, value }));
8052
+ }
8053
+ }
8054
+ else {
8055
+ this.formValue$.next({});
8056
+ }
8057
+ });
8058
+ }
8059
+ else {
8060
+ this.formValue$.next({});
8061
+ }
8062
+ }
8063
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ReceiveNotificatieConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8064
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: ReceiveNotificatieConfigurationComponent, isStandalone: false, selector: "valtimo-receive-notificatie-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'receiveNotificatieDescription' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"kanaal\"\n [title]=\"'kanaal' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.kanaal\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'receiveKanaalTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n <v-input\n name=\"actie\"\n [title]=\"'actie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.actie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'receiveActieTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n <valtimo-carbon-multi-input\n type=\"keyValue\"\n [title]=\"'kenmerken' | pluginTranslate: pluginId | async\"\n [keyColumnTitle]=\"'kenmerkenKey' | pluginTranslate: pluginId | async\"\n [valueColumnTitle]=\"'kenmerkenValue' | pluginTranslate: pluginId | async\"\n [addRowTranslationKey]=\"'kenmerkenAddRow' | pluginTranslate: pluginId | async\"\n [deleteRowTranslationKey]=\"'kenmerkenDeleteRow' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'receiveKenmerkenTooltip' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n [defaultValues]=\"kenmerkenDefaultValues\"\n [minimumAmountOfRows]=\"0\"\n [initialAmountOfRows]=\"0\"\n (valueChange)=\"kenmerkenChange($event)\"\n >\n </valtimo-carbon-multi-input>\n</v-form>\n", dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { kind: "component", type: i2$2.CarbonMultiInputComponent, selector: "valtimo-carbon-multi-input", inputs: ["addRowText", "addButtonType", "addRowTranslationKey", "arbitraryAmountTitles", "arbitraryValueAmount", "defaultValues", "deleteRowText", "deleteRowTranslationKey", "disabled", "dropdownColumnTitle", "dropdownItems", "dropdownWidth", "fullWidth", "hideAddButton", "hideDeleteButton", "initialAmountOfRows", "keyColumnTitle", "margin", "maxRows", "minimumAmountOfRows", "name", "required", "title", "titleTranslationKey", "tooltip", "type", "valueColumnTitle", "valuePathSelectorCaseDefinitionKey", "valuePathSelectorPrefixes", "valuePathSelectorShowCaseDefinitionSelector", "valuePathSelectorNotation", "keyColumnFlex", "dropdownColumnFlex", "valueColumnFlex"], outputs: ["valueChange", "allValuesValidEvent"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
8065
+ }
8066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ReceiveNotificatieConfigurationComponent, decorators: [{
8067
+ type: Component,
8068
+ args: [{ standalone: false, selector: 'valtimo-receive-notificatie-configuration', template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'receiveNotificatieDescription' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"kanaal\"\n [title]=\"'kanaal' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.kanaal\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'receiveKanaalTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n <v-input\n name=\"actie\"\n [title]=\"'actie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.actie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'receiveActieTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n <valtimo-carbon-multi-input\n type=\"keyValue\"\n [title]=\"'kenmerken' | pluginTranslate: pluginId | async\"\n [keyColumnTitle]=\"'kenmerkenKey' | pluginTranslate: pluginId | async\"\n [valueColumnTitle]=\"'kenmerkenValue' | pluginTranslate: pluginId | async\"\n [addRowTranslationKey]=\"'kenmerkenAddRow' | pluginTranslate: pluginId | async\"\n [deleteRowTranslationKey]=\"'kenmerkenDeleteRow' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'receiveKenmerkenTooltip' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n [defaultValues]=\"kenmerkenDefaultValues\"\n [minimumAmountOfRows]=\"0\"\n [initialAmountOfRows]=\"0\"\n (valueChange)=\"kenmerkenChange($event)\"\n >\n </valtimo-carbon-multi-input>\n</v-form>\n" }]
8069
+ }], propDecorators: { save$: [{
8070
+ type: Input
8071
+ }], disabled$: [{
8072
+ type: Input
8073
+ }], pluginId: [{
8074
+ type: Input
8075
+ }], prefillConfiguration$: [{
8076
+ type: Input
8077
+ }], valid: [{
8078
+ type: Output
8079
+ }], configuration: [{
8080
+ type: Output
8081
+ }] } });
8082
+
7642
8083
  /*
7643
8084
  * Copyright 2015-2025 Ritense BV, the Netherlands.
7644
8085
  *
@@ -7656,25 +8097,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
7656
8097
  */
7657
8098
  class NotificatiesApiPluginModule {
7658
8099
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7659
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, declarations: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent], imports: [CommonModule,
8100
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, declarations: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent], imports: [CommonModule,
7660
8101
  PluginTranslatePipeModule,
7661
8102
  FormModule,
7662
8103
  InputModule,
7663
8104
  SelectModule,
7664
8105
  ParagraphModule,
7665
- CarbonMultiInputModule], exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent] }); }
8106
+ CarbonMultiInputModule,
8107
+ NotificationModule], exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent] }); }
7666
8108
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, imports: [CommonModule,
7667
8109
  PluginTranslatePipeModule,
7668
8110
  FormModule,
7669
8111
  InputModule,
7670
8112
  SelectModule,
7671
8113
  ParagraphModule,
7672
- CarbonMultiInputModule] }); }
8114
+ CarbonMultiInputModule,
8115
+ NotificationModule] }); }
7673
8116
  }
7674
8117
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, decorators: [{
7675
8118
  type: NgModule,
7676
8119
  args: [{
7677
- declarations: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent],
8120
+ declarations: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent],
7678
8121
  imports: [
7679
8122
  CommonModule,
7680
8123
  PluginTranslatePipeModule,
@@ -7683,8 +8126,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
7683
8126
  SelectModule,
7684
8127
  ParagraphModule,
7685
8128
  CarbonMultiInputModule,
8129
+ NotificationModule,
7686
8130
  ],
7687
- exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent],
8131
+ exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent],
7688
8132
  }]
7689
8133
  }] });
7690
8134
 
@@ -7726,6 +8170,7 @@ const notificatiesApiPluginSpecification = {
7726
8170
  pluginLogoBase64: NOTIFICATIES_API_PLUGIN_LOGO_BASE64,
7727
8171
  functionConfigurationComponents: {
7728
8172
  'publish-notificatie': PublishNotificatieConfigurationComponent,
8173
+ 'receive-notificatie': ReceiveNotificatieConfigurationComponent,
7729
8174
  },
7730
8175
  pluginTranslations: {
7731
8176
  nl: {
@@ -7752,13 +8197,18 @@ const notificatiesApiPluginSpecification = {
7752
8197
  actie: 'Actie',
7753
8198
  actieTooltip: 'De actie die door de publicerende API is uitgevoerd (max 100 tekens).',
7754
8199
  aanmaakdatum: 'Aanmaakdatum',
7755
- aanmaakdatumTooltip: 'Tijdstip waarop de actie heeft plaatsgevonden (ISO 8601 formaat). Indien leeg wordt het huidige tijdstip gebruikt.',
8200
+ aanmaakdatumTooltip: 'Tijdstip waarop de actie heeft plaatsgevonden (ISO 8601 formaat, bijv. 2024-01-15T10:30:00). Indien leeg wordt het huidige tijdstip gebruikt.',
7756
8201
  kenmerken: 'Kenmerken',
7757
8202
  kenmerkenTooltip: 'Sleutel-waardeparen voor het filteren van notificaties.',
7758
8203
  kenmerkenKey: 'Kenmerk',
7759
8204
  kenmerkenValue: 'Waarde',
7760
8205
  kenmerkenAddRow: 'Kenmerk toevoegen',
7761
8206
  kenmerkenDeleteRow: 'Kenmerk verwijderen',
8207
+ 'receive-notificatie': 'Ontvang een notificatie',
8208
+ receiveNotificatieDescription: 'Configureer de filtercriteria voor binnenkomende notificaties. Alle velden zijn optioneel — lege velden matchen alle waarden.',
8209
+ receiveKanaalTooltip: 'Filter op kanaal. Indien leeg worden alle kanalen gematcht.',
8210
+ receiveActieTooltip: 'Filter op actie. Indien leeg worden alle acties gematcht.',
8211
+ receiveKenmerkenTooltip: 'Filter op kenmerken. Alleen notificaties die alle opgegeven kenmerken bevatten worden gematcht.',
7762
8212
  },
7763
8213
  en: {
7764
8214
  title: 'Notificaties API',
@@ -7784,13 +8234,18 @@ const notificatiesApiPluginSpecification = {
7784
8234
  actie: 'Action',
7785
8235
  actieTooltip: 'The action performed by the publishing API (max 100 characters).',
7786
8236
  aanmaakdatum: 'Creation date',
7787
- aanmaakdatumTooltip: 'Timestamp when the action occurred (ISO 8601 format). If empty, the current time is used.',
8237
+ aanmaakdatumTooltip: 'Timestamp when the action occurred (ISO 8601 format, e.g. 2026-01-15T10:30:00). If empty, the current time is used.',
7788
8238
  kenmerken: 'Attributes',
7789
8239
  kenmerkenTooltip: 'Key-value pairs for notification filtering.',
7790
8240
  kenmerkenKey: 'Attribute',
7791
8241
  kenmerkenValue: 'Value',
7792
8242
  kenmerkenAddRow: 'Add attribute',
7793
8243
  kenmerkenDeleteRow: 'Delete attribute',
8244
+ 'receive-notificatie': 'Receive a notification',
8245
+ receiveNotificatieDescription: 'Configure the filter criteria for incoming notifications. All fields are optional — empty fields match all values.',
8246
+ receiveKanaalTooltip: 'Filter by channel. If empty, all channels are matched.',
8247
+ receiveActieTooltip: 'Filter by action. If empty, all actions are matched.',
8248
+ receiveKenmerkenTooltip: 'Filter by attributes. Only notifications containing all specified attributes are matched.',
7794
8249
  },
7795
8250
  },
7796
8251
  };
@@ -10371,5 +10826,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
10371
10826
  * Generated bundle index. Do not edit.
10372
10827
  */
10373
10828
 
10374
- export { BESLUITEN_API_CONFIGURATION_TEST_IDS, BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CATALOGI_API_CONFIGURATION_TEST_IDS, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakNotitieConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DEFAULT_PLUGIN_CONFIGURATION_TEST_IDS, DOCUMENTEN_API_CONFIGURATION_TEST_IDS, DeleteObjectComponent, DeleteZaakResultatenConfigurationComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DocumentenApiPreviewConfigurationComponent, DocumentenApiPreviewPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetBesluitConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, GetZaakInformatieobjectenComponent, GetZaakbesluitenConfigurationComponent, KLANTINTERACTIES_API_CONFIGURATION_TEST_IDS, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NOTIFICATIES_API_CONFIGURATION_TEST_IDS, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, OBJECTEN_API_CONFIGURATION_TEST_IDS, OBJECTTYPEN_API_CONFIGURATION_TEST_IDS, OBJECT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_KLANT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_NOTIFICATIES_CONFIGURATION_TEST_IDS, OPEN_ZAAK_CONFIGURATION_TEST_IDS, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PORTAALTAAK_CONFIGURATION_TEST_IDS, PatchZaakBesluitConfigurationComponent, PatchZaakConfigurationComponent, PatchZaakNotitieConfigurationComponent, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, PublishNotificatieConfigurationComponent, RelateerZakenComponent, SMART_DOCUMENTS_CONFIGURATION_TEST_IDS, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VERZOEK_CONFIGURATION_TEST_IDS, VerzoekConfigurationComponent, VerzoekPluginModule, ZAKEN_API_CONFIGURATION_TEST_IDS, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, documentenApiPreviewPluginSpecification, exactPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
10829
+ export { BESLUITEN_API_CONFIGURATION_TEST_IDS, BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CATALOGI_API_CONFIGURATION_TEST_IDS, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakNotitieConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DEFAULT_PLUGIN_CONFIGURATION_TEST_IDS, DOCUMENTEN_API_CONFIGURATION_TEST_IDS, DeleteDocumentLinkConfigurationComponent, DeleteObjectComponent, DeleteZaakResultatenConfigurationComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DocumentenApiPreviewConfigurationComponent, DocumentenApiPreviewPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetAuditTrailConfigurationComponent, GetBesluitConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, GetZaakInformatieobjectenComponent, GetZaakbesluitenConfigurationComponent, KLANTINTERACTIES_API_CONFIGURATION_TEST_IDS, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToObjectConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NOTIFICATIES_API_CONFIGURATION_TEST_IDS, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, OBJECTEN_API_CONFIGURATION_TEST_IDS, OBJECTTYPEN_API_CONFIGURATION_TEST_IDS, OBJECT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_KLANT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_NOTIFICATIES_CONFIGURATION_TEST_IDS, OPEN_ZAAK_CONFIGURATION_TEST_IDS, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PLUGIN_CATALOG_TEST_IDS, PORTAALTAAK_CONFIGURATION_TEST_IDS, PatchZaakBesluitConfigurationComponent, PatchZaakConfigurationComponent, PatchZaakNotitieConfigurationComponent, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent, RelateerZakenComponent, SMART_DOCUMENTS_CONFIGURATION_TEST_IDS, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VERZOEK_CONFIGURATION_TEST_IDS, VerzoekConfigurationComponent, VerzoekPluginModule, ZAKEN_API_CONFIGURATION_TEST_IDS, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, documentenApiPreviewPluginSpecification, exactPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
10375
10830
  //# sourceMappingURL=valtimo-plugin.mjs.map