@valtimo/plugin 13.24.1 → 13.25.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 (29) hide show
  1. package/fesm2022/valtimo-plugin.mjs +412 -12
  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/notificaties-api/components/receive-notificatie/receive-notificatie-configuration.component.d.ts +29 -0
  21. package/lib/plugins/notificaties-api/components/receive-notificatie/receive-notificatie-configuration.component.d.ts.map +1 -0
  22. package/lib/plugins/notificaties-api/models/config.d.ts +8 -1
  23. package/lib/plugins/notificaties-api/models/config.d.ts.map +1 -1
  24. package/lib/plugins/notificaties-api/notificaties-api-plugin.module.d.ts +6 -4
  25. package/lib/plugins/notificaties-api/notificaties-api-plugin.module.d.ts.map +1 -1
  26. package/lib/plugins/notificaties-api/notificaties-api-plugin.specification.d.ts.map +1 -1
  27. package/package.json +1 -1
  28. package/public-api.d.ts +4 -0
  29. 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, 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';
@@ -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
  };
@@ -7639,6 +7927,104 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
7639
7927
  type: Output
7640
7928
  }] } });
7641
7929
 
7930
+ /*
7931
+ * Copyright 2015-2026 Ritense BV, the Netherlands.
7932
+ *
7933
+ * Licensed under EUPL, Version 1.2 (the "License");
7934
+ * you may not use this file except in compliance with the License.
7935
+ * You may obtain a copy of the License at
7936
+ *
7937
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
7938
+ *
7939
+ * Unless required by applicable law or agreed to in writing, software
7940
+ * distributed under the License is distributed on an "AS IS" basis,
7941
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7942
+ * See the License for the specific language governing permissions and
7943
+ * limitations under the License.
7944
+ */
7945
+ class ReceiveNotificatieConfigurationComponent {
7946
+ constructor() {
7947
+ this.valid = new EventEmitter();
7948
+ this.configuration = new EventEmitter();
7949
+ this.kenmerkenDefaultValues = [];
7950
+ this.formValue$ = new BehaviorSubject(null);
7951
+ this.valid$ = new BehaviorSubject(false);
7952
+ this.kenmerken = {};
7953
+ }
7954
+ ngOnInit() {
7955
+ this.openSaveSubscription();
7956
+ this.openPrefillSubscription();
7957
+ this.valid$.next(true);
7958
+ this.valid.emit(true);
7959
+ }
7960
+ ngOnDestroy() {
7961
+ this.saveSubscription?.unsubscribe();
7962
+ this.prefillSubscription?.unsubscribe();
7963
+ }
7964
+ formValueChange(formValue) {
7965
+ this.formValue$.next({ ...formValue, kenmerken: this.kenmerken });
7966
+ this.valid$.next(true);
7967
+ this.valid.emit(true);
7968
+ }
7969
+ kenmerkenChange(value) {
7970
+ const values = value;
7971
+ this.kenmerken = values.reduce((acc, curr) => ({
7972
+ ...acc,
7973
+ ...(!curr.key || !curr.value ? {} : { [curr.key]: curr.value }),
7974
+ }), {});
7975
+ const currentFormValue = this.formValue$.value ?? {};
7976
+ this.formValue$.next({ ...currentFormValue, kenmerken: this.kenmerken });
7977
+ }
7978
+ openSaveSubscription() {
7979
+ this.saveSubscription = this.save$
7980
+ ?.pipe(switchMap(() => combineLatest([this.formValue$, this.valid$]).pipe(take(1))))
7981
+ .subscribe(([formValue, valid]) => {
7982
+ if (valid) {
7983
+ this.configuration.emit(formValue);
7984
+ }
7985
+ });
7986
+ }
7987
+ openPrefillSubscription() {
7988
+ if (this.prefillConfiguration$) {
7989
+ this.prefillSubscription = this.prefillConfiguration$
7990
+ .pipe(take(1))
7991
+ .subscribe(config => {
7992
+ if (config) {
7993
+ this.formValue$.next({ ...config });
7994
+ if (config.kenmerken) {
7995
+ this.kenmerken = config.kenmerken;
7996
+ this.kenmerkenDefaultValues = Object.entries(config.kenmerken).map(([key, value]) => ({ key, value }));
7997
+ }
7998
+ }
7999
+ else {
8000
+ this.formValue$.next({});
8001
+ }
8002
+ });
8003
+ }
8004
+ else {
8005
+ this.formValue$.next({});
8006
+ }
8007
+ }
8008
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ReceiveNotificatieConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8009
+ 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" }] }); }
8010
+ }
8011
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ReceiveNotificatieConfigurationComponent, decorators: [{
8012
+ type: Component,
8013
+ 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" }]
8014
+ }], propDecorators: { save$: [{
8015
+ type: Input
8016
+ }], disabled$: [{
8017
+ type: Input
8018
+ }], pluginId: [{
8019
+ type: Input
8020
+ }], prefillConfiguration$: [{
8021
+ type: Input
8022
+ }], valid: [{
8023
+ type: Output
8024
+ }], configuration: [{
8025
+ type: Output
8026
+ }] } });
8027
+
7642
8028
  /*
7643
8029
  * Copyright 2015-2025 Ritense BV, the Netherlands.
7644
8030
  *
@@ -7656,25 +8042,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
7656
8042
  */
7657
8043
  class NotificatiesApiPluginModule {
7658
8044
  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,
8045
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, declarations: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent], imports: [CommonModule,
7660
8046
  PluginTranslatePipeModule,
7661
8047
  FormModule,
7662
8048
  InputModule,
7663
8049
  SelectModule,
7664
8050
  ParagraphModule,
7665
- CarbonMultiInputModule], exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent] }); }
8051
+ CarbonMultiInputModule,
8052
+ NotificationModule], exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent] }); }
7666
8053
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, imports: [CommonModule,
7667
8054
  PluginTranslatePipeModule,
7668
8055
  FormModule,
7669
8056
  InputModule,
7670
8057
  SelectModule,
7671
8058
  ParagraphModule,
7672
- CarbonMultiInputModule] }); }
8059
+ CarbonMultiInputModule,
8060
+ NotificationModule] }); }
7673
8061
  }
7674
8062
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificatiesApiPluginModule, decorators: [{
7675
8063
  type: NgModule,
7676
8064
  args: [{
7677
- declarations: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent],
8065
+ declarations: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent],
7678
8066
  imports: [
7679
8067
  CommonModule,
7680
8068
  PluginTranslatePipeModule,
@@ -7683,8 +8071,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
7683
8071
  SelectModule,
7684
8072
  ParagraphModule,
7685
8073
  CarbonMultiInputModule,
8074
+ NotificationModule,
7686
8075
  ],
7687
- exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent],
8076
+ exports: [NotificatiesApiConfigurationComponent, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent],
7688
8077
  }]
7689
8078
  }] });
7690
8079
 
@@ -7726,6 +8115,7 @@ const notificatiesApiPluginSpecification = {
7726
8115
  pluginLogoBase64: NOTIFICATIES_API_PLUGIN_LOGO_BASE64,
7727
8116
  functionConfigurationComponents: {
7728
8117
  'publish-notificatie': PublishNotificatieConfigurationComponent,
8118
+ 'receive-notificatie': ReceiveNotificatieConfigurationComponent,
7729
8119
  },
7730
8120
  pluginTranslations: {
7731
8121
  nl: {
@@ -7752,13 +8142,18 @@ const notificatiesApiPluginSpecification = {
7752
8142
  actie: 'Actie',
7753
8143
  actieTooltip: 'De actie die door de publicerende API is uitgevoerd (max 100 tekens).',
7754
8144
  aanmaakdatum: 'Aanmaakdatum',
7755
- aanmaakdatumTooltip: 'Tijdstip waarop de actie heeft plaatsgevonden (ISO 8601 formaat). Indien leeg wordt het huidige tijdstip gebruikt.',
8145
+ aanmaakdatumTooltip: 'Tijdstip waarop de actie heeft plaatsgevonden (ISO 8601 formaat, bijv. 2024-01-15T10:30:00). Indien leeg wordt het huidige tijdstip gebruikt.',
7756
8146
  kenmerken: 'Kenmerken',
7757
8147
  kenmerkenTooltip: 'Sleutel-waardeparen voor het filteren van notificaties.',
7758
8148
  kenmerkenKey: 'Kenmerk',
7759
8149
  kenmerkenValue: 'Waarde',
7760
8150
  kenmerkenAddRow: 'Kenmerk toevoegen',
7761
8151
  kenmerkenDeleteRow: 'Kenmerk verwijderen',
8152
+ 'receive-notificatie': 'Ontvang een notificatie',
8153
+ receiveNotificatieDescription: 'Configureer de filtercriteria voor binnenkomende notificaties. Alle velden zijn optioneel — lege velden matchen alle waarden.',
8154
+ receiveKanaalTooltip: 'Filter op kanaal. Indien leeg worden alle kanalen gematcht.',
8155
+ receiveActieTooltip: 'Filter op actie. Indien leeg worden alle acties gematcht.',
8156
+ receiveKenmerkenTooltip: 'Filter op kenmerken. Alleen notificaties die alle opgegeven kenmerken bevatten worden gematcht.',
7762
8157
  },
7763
8158
  en: {
7764
8159
  title: 'Notificaties API',
@@ -7784,13 +8179,18 @@ const notificatiesApiPluginSpecification = {
7784
8179
  actie: 'Action',
7785
8180
  actieTooltip: 'The action performed by the publishing API (max 100 characters).',
7786
8181
  aanmaakdatum: 'Creation date',
7787
- aanmaakdatumTooltip: 'Timestamp when the action occurred (ISO 8601 format). If empty, the current time is used.',
8182
+ aanmaakdatumTooltip: 'Timestamp when the action occurred (ISO 8601 format, e.g. 2026-01-15T10:30:00). If empty, the current time is used.',
7788
8183
  kenmerken: 'Attributes',
7789
8184
  kenmerkenTooltip: 'Key-value pairs for notification filtering.',
7790
8185
  kenmerkenKey: 'Attribute',
7791
8186
  kenmerkenValue: 'Value',
7792
8187
  kenmerkenAddRow: 'Add attribute',
7793
8188
  kenmerkenDeleteRow: 'Delete attribute',
8189
+ 'receive-notificatie': 'Receive a notification',
8190
+ receiveNotificatieDescription: 'Configure the filter criteria for incoming notifications. All fields are optional — empty fields match all values.',
8191
+ receiveKanaalTooltip: 'Filter by channel. If empty, all channels are matched.',
8192
+ receiveActieTooltip: 'Filter by action. If empty, all actions are matched.',
8193
+ receiveKenmerkenTooltip: 'Filter by attributes. Only notifications containing all specified attributes are matched.',
7794
8194
  },
7795
8195
  },
7796
8196
  };
@@ -10371,5 +10771,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
10371
10771
  * Generated bundle index. Do not edit.
10372
10772
  */
10373
10773
 
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 };
10774
+ 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
10775
  //# sourceMappingURL=valtimo-plugin.mjs.map