@valtimo/plugin 13.34.0 → 13.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/valtimo-plugin.mjs +173 -7
- package/fesm2022/valtimo-plugin.mjs.map +1 -1
- package/lib/plugins/catalogi-api/catalogi-api-plugin-module.d.ts +6 -4
- package/lib/plugins/catalogi-api/catalogi-api-plugin-module.d.ts.map +1 -1
- package/lib/plugins/catalogi-api/catalogi-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/catalogi-api/components/get-informatieobjecttype/get-informatieobjecttype-configuration.component.d.ts +24 -0
- package/lib/plugins/catalogi-api/components/get-informatieobjecttype/get-informatieobjecttype-configuration.component.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/components/get-informatieobjecttypen/get-informatieobjecttypen-configuration.component.d.ts +24 -0
- package/lib/plugins/catalogi-api/components/get-informatieobjecttypen/get-informatieobjecttypen-configuration.component.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/models/config.d.ts +9 -1
- package/lib/plugins/catalogi-api/models/config.d.ts.map +1 -1
- package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/public-api.d.ts.map +1 -1
|
@@ -1893,11 +1893,11 @@ class DownloadDocumentConfigurationComponent {
|
|
|
1893
1893
|
this.valid.emit(valid);
|
|
1894
1894
|
}
|
|
1895
1895
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DownloadDocumentConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1896
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DownloadDocumentConfigurationComponent, isStandalone: false, selector: "valtimo-download-document-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=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\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" }] }); }
|
|
1896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DownloadDocumentConfigurationComponent, isStandalone: false, selector: "valtimo-download-document-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\" [italic]=\"true\">\n {{ 'downloadDocumentMessage' | 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=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\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" }] }); }
|
|
1897
1897
|
}
|
|
1898
1898
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DownloadDocumentConfigurationComponent, decorators: [{
|
|
1899
1899
|
type: Component,
|
|
1900
|
-
args: [{ selector: 'valtimo-download-document-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=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\n" }]
|
|
1900
|
+
args: [{ selector: 'valtimo-download-document-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\" [italic]=\"true\">\n {{ 'downloadDocumentMessage' | 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=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\n" }]
|
|
1901
1901
|
}], propDecorators: { save$: [{
|
|
1902
1902
|
type: Input
|
|
1903
1903
|
}], disabled$: [{
|
|
@@ -2373,8 +2373,11 @@ const documentenApiPluginSpecification = {
|
|
|
2373
2373
|
authenticationPluginConfigurationTooltip: 'Selecteer de plugin die de authenticatie kan afhandelen. Wanneer de selectiebox leeg blijft zal de authenticatie plugin (bv. OpenZaak) eerst aangemaakt moeten worden',
|
|
2374
2374
|
apiVersion: 'Documenten API versie',
|
|
2375
2375
|
apiVersionTooltip: 'Selecteer de versie van de Documenten API',
|
|
2376
|
-
downloadDocumentMessage:
|
|
2376
|
+
downloadDocumentMessage: "Downloadt een document vanuit de Documenten API en slaat dit op als tijdelijk document. " +
|
|
2377
|
+
"Het te downloaden document wordt bepaald op basis van de procesvariabele 'documentUrl' of 'documentId'; " +
|
|
2378
|
+
"als beide aanwezig zijn heeft 'documentUrl' voorrang.",
|
|
2377
2379
|
processVariableName: 'Wat is de naam van de procesvariabele waarnaar u het document wilt downloaden?',
|
|
2380
|
+
processVariableTooltip: 'De naam van de procesvariabele waarin de referentie naar het gedownloade document wordt opgeslagen.',
|
|
2378
2381
|
linkDocumentToObjectMessage: "Koppelt het document waarvan de URL is opgeslagen in de procesvariabele 'documentUrl' aan een object. " +
|
|
2379
2382
|
"Procesvariabelen kunnen worden gebruikt met de notatie 'pv:variabelenaam'.",
|
|
2380
2383
|
linkDocumentToObjectExperimentalWarning: '⚠ Experimentele functie: deze actie maakt gebruik van de objectinformatieobjecten-API.',
|
|
@@ -2454,8 +2457,11 @@ const documentenApiPluginSpecification = {
|
|
|
2454
2457
|
authenticationPluginConfigurationTooltip: 'Select the plugin that can handle the authentication. If the selection box remains empty, the authentication plugin (e.g. OpenZaak) will have to be created first',
|
|
2455
2458
|
apiVersion: 'Documenten API version',
|
|
2456
2459
|
apiVersionTooltip: 'Select the version of the Documenten API',
|
|
2457
|
-
downloadDocumentMessage:
|
|
2460
|
+
downloadDocumentMessage: "Downloads a document from the Documenten API and stores it as a temporary document. " +
|
|
2461
|
+
"The document is identified by either the 'documentUrl' or the 'documentId' process variable; " +
|
|
2462
|
+
"when both are present 'documentUrl' takes precedence.",
|
|
2458
2463
|
processVariableName: 'What is the name of the process variable you want to download the document to?',
|
|
2464
|
+
processVariableTooltip: 'The name of the process variable in which the reference to the downloaded document is stored.',
|
|
2459
2465
|
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." +
|
|
2460
2466
|
"Process variables can be referenced using the notation 'pv:variableName'.",
|
|
2461
2467
|
linkDocumentToObjectExperimentalWarning: '⚠ Experimental feature: this action uses the objectinformatieobjecten API.',
|
|
@@ -8019,6 +8025,142 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8019
8025
|
type: Output
|
|
8020
8026
|
}] } });
|
|
8021
8027
|
|
|
8028
|
+
/*
|
|
8029
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
8030
|
+
*
|
|
8031
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
8032
|
+
* you may not use this file except in compliance with the License.
|
|
8033
|
+
* You may obtain a copy of the License at
|
|
8034
|
+
*
|
|
8035
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
8036
|
+
*
|
|
8037
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
8038
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
8039
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
8040
|
+
* See the License for the specific language governing permissions and
|
|
8041
|
+
* limitations under the License.
|
|
8042
|
+
*/
|
|
8043
|
+
class GetInformatieobjecttypeConfigurationComponent {
|
|
8044
|
+
constructor() {
|
|
8045
|
+
this.valid = new EventEmitter();
|
|
8046
|
+
this.configuration = new EventEmitter();
|
|
8047
|
+
this.formValue$ = new BehaviorSubject(null);
|
|
8048
|
+
this.valid$ = new BehaviorSubject(false);
|
|
8049
|
+
}
|
|
8050
|
+
ngOnInit() {
|
|
8051
|
+
this.openSaveSubscription();
|
|
8052
|
+
}
|
|
8053
|
+
ngOnDestroy() {
|
|
8054
|
+
this._saveSubscription?.unsubscribe();
|
|
8055
|
+
}
|
|
8056
|
+
formValueChange(formValue) {
|
|
8057
|
+
this.formValue$.next(formValue);
|
|
8058
|
+
this.handleValid(formValue);
|
|
8059
|
+
}
|
|
8060
|
+
handleValid(formValue) {
|
|
8061
|
+
const valid = !!(formValue.informatieobjecttype && formValue.processVariable);
|
|
8062
|
+
this.valid$.next(valid);
|
|
8063
|
+
this.valid.emit(valid);
|
|
8064
|
+
}
|
|
8065
|
+
openSaveSubscription() {
|
|
8066
|
+
this._saveSubscription = this.save$?.subscribe(save => {
|
|
8067
|
+
combineLatest([this.formValue$, this.valid$])
|
|
8068
|
+
.pipe(take(1))
|
|
8069
|
+
.subscribe(([formValue, valid]) => {
|
|
8070
|
+
if (valid) {
|
|
8071
|
+
this.configuration.emit(formValue);
|
|
8072
|
+
}
|
|
8073
|
+
});
|
|
8074
|
+
});
|
|
8075
|
+
}
|
|
8076
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetInformatieobjecttypeConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8077
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: GetInformatieobjecttypeConfigurationComponent, isStandalone: false, selector: "valtimo-get-informatieobjecttype-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 {{ 'getInformatieobjecttypeInformation' | pluginTranslate: pluginId | async }}\n</v-paragraph>\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=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeProcessVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\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" }] }); }
|
|
8078
|
+
}
|
|
8079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetInformatieobjecttypeConfigurationComponent, decorators: [{
|
|
8080
|
+
type: Component,
|
|
8081
|
+
args: [{ standalone: false, selector: 'valtimo-get-informatieobjecttype-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 {{ 'getInformatieobjecttypeInformation' | pluginTranslate: pluginId | async }}\n</v-paragraph>\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=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeProcessVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
|
|
8082
|
+
}], propDecorators: { save$: [{
|
|
8083
|
+
type: Input
|
|
8084
|
+
}], disabled$: [{
|
|
8085
|
+
type: Input
|
|
8086
|
+
}], pluginId: [{
|
|
8087
|
+
type: Input
|
|
8088
|
+
}], prefillConfiguration$: [{
|
|
8089
|
+
type: Input
|
|
8090
|
+
}], valid: [{
|
|
8091
|
+
type: Output
|
|
8092
|
+
}], configuration: [{
|
|
8093
|
+
type: Output
|
|
8094
|
+
}] } });
|
|
8095
|
+
|
|
8096
|
+
/*
|
|
8097
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
8098
|
+
*
|
|
8099
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
8100
|
+
* you may not use this file except in compliance with the License.
|
|
8101
|
+
* You may obtain a copy of the License at
|
|
8102
|
+
*
|
|
8103
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
8104
|
+
*
|
|
8105
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
8106
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
8107
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
8108
|
+
* See the License for the specific language governing permissions and
|
|
8109
|
+
* limitations under the License.
|
|
8110
|
+
*/
|
|
8111
|
+
class GetInformatieobjecttypenConfigurationComponent {
|
|
8112
|
+
constructor() {
|
|
8113
|
+
this.configuration = new EventEmitter();
|
|
8114
|
+
this.valid = new EventEmitter();
|
|
8115
|
+
this._formValue$ = new BehaviorSubject(null);
|
|
8116
|
+
this._valid$ = new BehaviorSubject(false);
|
|
8117
|
+
}
|
|
8118
|
+
ngOnInit() {
|
|
8119
|
+
this.openSaveSubscription();
|
|
8120
|
+
}
|
|
8121
|
+
ngOnDestroy() {
|
|
8122
|
+
this._saveSubscription?.unsubscribe();
|
|
8123
|
+
}
|
|
8124
|
+
formValueChange(formValue) {
|
|
8125
|
+
this._formValue$.next(formValue);
|
|
8126
|
+
this.handleValid(formValue);
|
|
8127
|
+
}
|
|
8128
|
+
handleValid(formValue) {
|
|
8129
|
+
const valid = !!formValue.processVariable;
|
|
8130
|
+
this._valid$.next(valid);
|
|
8131
|
+
this.valid.emit(valid);
|
|
8132
|
+
}
|
|
8133
|
+
openSaveSubscription() {
|
|
8134
|
+
this._saveSubscription = this.save$?.subscribe(save => {
|
|
8135
|
+
combineLatest([this._formValue$, this._valid$])
|
|
8136
|
+
.pipe(take(1))
|
|
8137
|
+
.subscribe(([formValue, valid]) => {
|
|
8138
|
+
if (valid) {
|
|
8139
|
+
this.configuration.emit(formValue);
|
|
8140
|
+
}
|
|
8141
|
+
});
|
|
8142
|
+
});
|
|
8143
|
+
}
|
|
8144
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetInformatieobjecttypenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8145
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: GetInformatieobjecttypenConfigurationComponent, isStandalone: false, selector: "valtimo-get-informatieobjecttypen-configuration", inputs: { disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$", save$: "save$" }, outputs: { configuration: "configuration", valid: "valid" }, 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@if ({\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n}; as obs) {\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'getInformatieobjecttypenInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaaktypeUrl\"\n [title]=\"'zaaktypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaaktypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaaktypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n}\n", dependencies: [{ 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" }] }); }
|
|
8146
|
+
}
|
|
8147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetInformatieobjecttypenConfigurationComponent, decorators: [{
|
|
8148
|
+
type: Component,
|
|
8149
|
+
args: [{ standalone: false, selector: 'valtimo-get-informatieobjecttypen-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@if ({\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n}; as obs) {\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'getInformatieobjecttypenInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaaktypeUrl\"\n [title]=\"'zaaktypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaaktypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaaktypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n}\n" }]
|
|
8150
|
+
}], propDecorators: { disabled$: [{
|
|
8151
|
+
type: Input
|
|
8152
|
+
}], pluginId: [{
|
|
8153
|
+
type: Input
|
|
8154
|
+
}], prefillConfiguration$: [{
|
|
8155
|
+
type: Input
|
|
8156
|
+
}], save$: [{
|
|
8157
|
+
type: Input
|
|
8158
|
+
}], configuration: [{
|
|
8159
|
+
type: Output
|
|
8160
|
+
}], valid: [{
|
|
8161
|
+
type: Output
|
|
8162
|
+
}] } });
|
|
8163
|
+
|
|
8022
8164
|
/*
|
|
8023
8165
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
8024
8166
|
*
|
|
@@ -8042,7 +8184,9 @@ class CatalogiApiPluginModule {
|
|
|
8042
8184
|
GetResultaattypeConfigurationComponent,
|
|
8043
8185
|
GetStatustypenConfigurationComponent,
|
|
8044
8186
|
GetStatustypeConfigurationComponent,
|
|
8045
|
-
GetEigenschapConfigurationComponent
|
|
8187
|
+
GetEigenschapConfigurationComponent,
|
|
8188
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8189
|
+
GetInformatieobjecttypenConfigurationComponent], imports: [CommonModule,
|
|
8046
8190
|
PluginTranslatePipeModule,
|
|
8047
8191
|
FormModule,
|
|
8048
8192
|
InputModule,
|
|
@@ -8053,7 +8197,9 @@ class CatalogiApiPluginModule {
|
|
|
8053
8197
|
GetResultaattypeConfigurationComponent,
|
|
8054
8198
|
GetStatustypeConfigurationComponent,
|
|
8055
8199
|
GetStatustypenConfigurationComponent,
|
|
8056
|
-
GetEigenschapConfigurationComponent
|
|
8200
|
+
GetEigenschapConfigurationComponent,
|
|
8201
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8202
|
+
GetInformatieobjecttypenConfigurationComponent] }); }
|
|
8057
8203
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CatalogiApiPluginModule, imports: [CommonModule,
|
|
8058
8204
|
PluginTranslatePipeModule,
|
|
8059
8205
|
FormModule,
|
|
@@ -8072,6 +8218,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8072
8218
|
GetStatustypenConfigurationComponent,
|
|
8073
8219
|
GetStatustypeConfigurationComponent,
|
|
8074
8220
|
GetEigenschapConfigurationComponent,
|
|
8221
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8222
|
+
GetInformatieobjecttypenConfigurationComponent,
|
|
8075
8223
|
],
|
|
8076
8224
|
imports: [
|
|
8077
8225
|
CommonModule,
|
|
@@ -8089,6 +8237,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8089
8237
|
GetStatustypeConfigurationComponent,
|
|
8090
8238
|
GetStatustypenConfigurationComponent,
|
|
8091
8239
|
GetEigenschapConfigurationComponent,
|
|
8240
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8241
|
+
GetInformatieobjecttypenConfigurationComponent,
|
|
8092
8242
|
],
|
|
8093
8243
|
}]
|
|
8094
8244
|
}] });
|
|
@@ -8152,6 +8302,8 @@ const catalogiApiPluginSpecification = {
|
|
|
8152
8302
|
'get-statustypen': GetStatustypenConfigurationComponent,
|
|
8153
8303
|
'get-statustype': GetStatustypeConfigurationComponent,
|
|
8154
8304
|
'get-eigenschap': GetEigenschapConfigurationComponent,
|
|
8305
|
+
'get-informatieobjecttype': GetInformatieobjecttypeConfigurationComponent,
|
|
8306
|
+
'get-informatieobjecttypen': GetInformatieobjecttypenConfigurationComponent,
|
|
8155
8307
|
},
|
|
8156
8308
|
pluginTranslations: {
|
|
8157
8309
|
nl: {
|
|
@@ -8189,6 +8341,13 @@ const catalogiApiPluginSpecification = {
|
|
|
8189
8341
|
eigenschapProcessVariableTooltip: 'Nadat de eigenschap is opgehaald, wordt deze opgeslagen in een procesvariabele met deze naam.',
|
|
8190
8342
|
zaaktypeUrl: 'Zaaktype URL',
|
|
8191
8343
|
zaaktypeUrlTooltip: 'Specificeer hier de URL van het betreffende Zaaktype indien deze afwijkt van de aan het Dossier gekoppelde Zaak',
|
|
8344
|
+
'get-informatieobjecttype': 'Informatieobjecttype opvragen',
|
|
8345
|
+
getInformatieobjecttypeInformation: 'Het informatieobjecttype wordt opgehaald en daarna opgeslagen in een procesvariabele.',
|
|
8346
|
+
informatieobjecttype: 'Informatieobjecttype',
|
|
8347
|
+
informatieobjecttypeTooltip: 'Omschrijving van het informatieobjecttype.',
|
|
8348
|
+
informatieobjecttypeProcessVariableTooltip: 'Nadat het informatieobjecttype is opgehaald, wordt deze opgeslagen in een procesvariabele met deze naam.',
|
|
8349
|
+
'get-informatieobjecttypen': 'Informatieobjecttypen opvragen',
|
|
8350
|
+
getInformatieobjecttypenInformation: 'De Informatieobjecttypen behorende bij het Zaaktype worden opgehaald en daarna opgeslagen in een procesvariabele.',
|
|
8192
8351
|
},
|
|
8193
8352
|
en: {
|
|
8194
8353
|
title: 'Catalogi API',
|
|
@@ -8225,6 +8384,13 @@ const catalogiApiPluginSpecification = {
|
|
|
8225
8384
|
eigenschapProcessVariableTooltip: 'After the eigenschap is retrieved, it is stored in a process variable with this name.',
|
|
8226
8385
|
zaaktypeUrl: 'Zaaktype URL',
|
|
8227
8386
|
zaaktypeUrlTooltip: 'Specify the URL of the relevant Zaaktype here if it differs from the Zaak linked to the Case',
|
|
8387
|
+
'get-informatieobjecttype': 'Retrieve informatieobjecttype',
|
|
8388
|
+
getInformatieobjecttypeInformation: 'The informatieobjecttype is retrieved and then stored in a process variable.',
|
|
8389
|
+
informatieobjecttype: 'Informatieobjecttype',
|
|
8390
|
+
informatieobjecttypeTooltip: 'Description of the informatieobjecttype.',
|
|
8391
|
+
informatieobjecttypeProcessVariableTooltip: 'After the informatieobjecttype is retrieved, it is stored in a process variable with this name.',
|
|
8392
|
+
'get-informatieobjecttypen': 'Retrieve informatieobjecttypen',
|
|
8393
|
+
getInformatieobjecttypenInformation: 'The Informatieobjecttypen belonging to the Zaaktype are retrieved and then stored in a process variable.',
|
|
8228
8394
|
},
|
|
8229
8395
|
},
|
|
8230
8396
|
};
|
|
@@ -11271,5 +11437,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
11271
11437
|
* Generated bundle index. Do not edit.
|
|
11272
11438
|
*/
|
|
11273
11439
|
|
|
11274
|
-
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 };
|
|
11440
|
+
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, GetInformatieobjecttypeConfigurationComponent, GetInformatieobjecttypenConfigurationComponent, 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 };
|
|
11275
11441
|
//# sourceMappingURL=valtimo-plugin.mjs.map
|