@valtimo/plugin 12.17.1 → 12.18.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.
@@ -3839,6 +3839,156 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
3839
3839
  type: Output
3840
3840
  }] } });
3841
3841
 
3842
+ /*
3843
+ * Copyright 2015-2025 Ritense BV, the Netherlands.
3844
+ *
3845
+ * Licensed under EUPL, Version 1.2 (the "License");
3846
+ * you may not use this file except in compliance with the License.
3847
+ * You may obtain a copy of the License at
3848
+ *
3849
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
3850
+ *
3851
+ * Unless required by applicable law or agreed to in writing, software
3852
+ * distributed under the License is distributed on an "AS IS" basis,
3853
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3854
+ * See the License for the specific language governing permissions and
3855
+ * limitations under the License.
3856
+ */
3857
+ class CreateZaakObjectConfigurationComponent {
3858
+ set pluginId(value) {
3859
+ this.pluginId$.next(value);
3860
+ }
3861
+ constructor() {
3862
+ this.valid = new EventEmitter();
3863
+ this.configuration = new EventEmitter();
3864
+ this.pluginId$ = new BehaviorSubject('');
3865
+ this.objectTypeOptions = [
3866
+ { id: 'adres', text: 'adres' },
3867
+ { id: 'besluit', text: 'besluit' },
3868
+ { id: 'buurt', text: 'buurt' },
3869
+ { id: 'enkelvoudig_document', text: 'enkelvoudig_document' },
3870
+ { id: 'gemeente', text: 'gemeente' },
3871
+ { id: 'gemeentelijke_openbare_ruimte', text: 'gemeentelijke_openbare_ruimte' },
3872
+ { id: 'huishouden', text: 'huishouden' },
3873
+ { id: 'inrichtingselement', text: 'inrichtingselement' },
3874
+ { id: 'kadastrale_onroerende_zaak', text: 'kadastrale_onroerende_zaak' },
3875
+ { id: 'kunstwerkdeel', text: 'kunstwerkdeel' },
3876
+ { id: 'maatschappelijke_activiteit', text: 'maatschappelijke_activiteit' },
3877
+ { id: 'medewerker', text: 'medewerker' },
3878
+ { id: 'natuurlijk_persoon', text: 'natuurlijk_persoon' },
3879
+ { id: 'niet_natuurlijk_persoon', text: 'niet_natuurlijk_persoon' },
3880
+ { id: 'openbare_ruimte', text: 'openbare_ruimte' },
3881
+ { id: 'organisatorische_eenheid', text: 'organisatorische_eenheid' },
3882
+ { id: 'pand', text: 'pand' },
3883
+ { id: 'spoorbaandeel', text: 'spoorbaandeel' },
3884
+ { id: 'status', text: 'status' },
3885
+ { id: 'terreindeel', text: 'terreindeel' },
3886
+ { id: 'terrein_gebouwd_object', text: 'terrein_gebouwd_object' },
3887
+ { id: 'vestiging', text: 'vestiging' },
3888
+ { id: 'waterdeel', text: 'waterdeel' },
3889
+ { id: 'wegdeel', text: 'wegdeel' },
3890
+ { id: 'wijk', text: 'wijk' },
3891
+ { id: 'woonplaats', text: 'woonplaats' },
3892
+ { id: 'woz_deelobject', text: 'woz_deelobject' },
3893
+ { id: 'woz_object', text: 'woz_object' },
3894
+ { id: 'woz_waarde', text: 'woz_waarde' },
3895
+ { id: 'zakelijk_recht', text: 'zakelijk_recht' },
3896
+ { id: 'overige', text: 'overige' }
3897
+ ];
3898
+ this.formValue$ = new BehaviorSubject(null);
3899
+ this.valid$ = new BehaviorSubject(false);
3900
+ }
3901
+ ngOnInit() {
3902
+ this.openSaveSubscription();
3903
+ }
3904
+ ngOnDestroy() {
3905
+ this.saveSubscription?.unsubscribe();
3906
+ }
3907
+ formValueChange(input) {
3908
+ const formValue = {
3909
+ zaakObjectRequest: {
3910
+ object: input.object,
3911
+ objectType: input.objectType,
3912
+ relatieomschrijving: input.relatieomschrijving,
3913
+ }
3914
+ };
3915
+ if (input.objectType === 'zakelijk_recht') {
3916
+ // Keep track of include flag for template condition
3917
+ formValue.includeZakelijkRechtObjectIdentificatie = !!input.includeZakelijkRechtObjectIdentificatie;
3918
+ if (formValue.includeZakelijkRechtObjectIdentificatie) {
3919
+ formValue.zaakObjectRequest.objectIdentificatie = {
3920
+ identificatie: input.zakelijkRechtIdentificatie,
3921
+ avgAard: input.zakelijkRechtAvgAard
3922
+ };
3923
+ }
3924
+ }
3925
+ if (input.objectType === 'overige') {
3926
+ formValue.zaakObjectRequest.objectTypeOverige = input.objectTypeOverige;
3927
+ // Keep track of include flag for template condition
3928
+ formValue.includeObjectTypeOverigeDefinitie = !!input.includeObjectTypeOverigeDefinitie;
3929
+ if (formValue.includeObjectTypeOverigeDefinitie) {
3930
+ formValue.zaakObjectRequest.objectTypeOverigeDefinitie = {
3931
+ url: input.objectTypeOverigeDefinitieUrl,
3932
+ schema: input.objectTypeOverigeDefinitieSchema,
3933
+ objectData: input.objectTypeOverigeDefinitieObjectData
3934
+ };
3935
+ }
3936
+ }
3937
+ this.formValue$.next(formValue);
3938
+ this.handleValid(formValue);
3939
+ }
3940
+ handleValid(formValue) {
3941
+ let valid = !!formValue.zaakObjectRequest.objectType;
3942
+ if (valid && formValue.zaakObjectRequest.objectType === 'zakelijk_recht') {
3943
+ if (formValue.zaakObjectRequest.objectIdentificatie &&
3944
+ (!formValue.zaakObjectRequest.objectIdentificatie.identificatie ||
3945
+ !formValue.zaakObjectRequest.objectIdentificatie.avgAard)) {
3946
+ valid = false;
3947
+ }
3948
+ }
3949
+ if (valid && formValue.zaakObjectRequest.objectType === 'overige') {
3950
+ valid = !!formValue.zaakObjectRequest.objectTypeOverige;
3951
+ if (formValue.zaakObjectRequest.objectTypeOverigeDefinitie &&
3952
+ (!formValue.zaakObjectRequest.objectTypeOverigeDefinitie.url ||
3953
+ !formValue.zaakObjectRequest.objectTypeOverigeDefinitie.schema ||
3954
+ !formValue.zaakObjectRequest.objectTypeOverigeDefinitie.objectData)) {
3955
+ valid = false;
3956
+ }
3957
+ }
3958
+ this.valid$.next(valid);
3959
+ this.valid.emit(valid);
3960
+ }
3961
+ openSaveSubscription() {
3962
+ this.saveSubscription = this.save$?.subscribe(save => {
3963
+ combineLatest([this.formValue$, this.valid$])
3964
+ .pipe(take(1))
3965
+ .subscribe(([formValue, valid]) => {
3966
+ if (valid) {
3967
+ this.configuration.emit(formValue);
3968
+ }
3969
+ });
3970
+ });
3971
+ }
3972
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreateZaakObjectConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3973
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: CreateZaakObjectConfigurationComponent, selector: "valtimo-create-zaak-object-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, providers: [PluginTranslatePipe], 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 pluginId: pluginId$ | async,\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n formValue: formValue$ | async,\n } as obs\"\n>\n <v-input\n name=\"object\"\n [title]=\"'zaakObjectObjectUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.object\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'zaakObjectObjectUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-select\n [items]=\"objectTypeOptions\"\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.zaakObjectRequest?.objectType\"\n [required]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n ></v-select>\n\n <v-input\n name=\"relatieomschrijving\"\n [title]=\"'relatieomschrijving' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.relatieomschrijving\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'relatieomschrijvingTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'zakelijk_recht') {\n <v-input\n type=\"checkbox\"\n name=\"includeZakelijkRechtObjectIdentificatie\"\n [title]=\"'objectIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie || obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeZakelijkRechtObjectIdentificatie) {\n <v-input\n name=\"zakelijkRechtIdentificatie\"\n [title]=\"'zakelijkRechtIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtIdentificatieTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"zakelijkRechtAvgAard\"\n [title]=\"'zakelijkRechtAvgAard' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtAvgAardTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'overige') {\n <v-input\n name=\"objectTypeOverige\"\n [title]=\"'objectTypeOverige' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverige\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.zaakObjectRequest?.objectType === 'overige'\"\n [tooltip]=\"'objectTypeOverigeTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n type=\"checkbox\"\n name=\"includeObjectTypeOverigeDefinitie\"\n [title]=\"'objectTypeOverigeDefinitie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeObjectTypeOverigeDefinitie) {\n <v-input\n name=\"objectTypeOverigeDefinitieUrl\"\n [title]=\"'objectTypeOverigeDefinitieUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieSchema\"\n [title]=\"'objectTypeOverigeDefinitieSchema' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieSchemaTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieObjectData\"\n [title]=\"'objectTypeOverigeDefinitieObjectData' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieObjectDataTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\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"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "defaultSelectionIds", "disabled", "dropUp", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "clearText", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder", "smallMargin", "carbonTheme", "appendInline", "dataTestId"], outputs: ["selectedChange"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3974
+ }
3975
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CreateZaakObjectConfigurationComponent, decorators: [{
3976
+ type: Component,
3977
+ args: [{ selector: 'valtimo-create-zaak-object-configuration', providers: [PluginTranslatePipe], 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 pluginId: pluginId$ | async,\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n formValue: formValue$ | async,\n } as obs\"\n>\n <v-input\n name=\"object\"\n [title]=\"'zaakObjectObjectUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.object\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'zaakObjectObjectUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-select\n [items]=\"objectTypeOptions\"\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.zaakObjectRequest?.objectType\"\n [required]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n ></v-select>\n\n <v-input\n name=\"relatieomschrijving\"\n [title]=\"'relatieomschrijving' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.relatieomschrijving\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'relatieomschrijvingTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'zakelijk_recht') {\n <v-input\n type=\"checkbox\"\n name=\"includeZakelijkRechtObjectIdentificatie\"\n [title]=\"'objectIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie || obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeZakelijkRechtObjectIdentificatie) {\n <v-input\n name=\"zakelijkRechtIdentificatie\"\n [title]=\"'zakelijkRechtIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtIdentificatieTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"zakelijkRechtAvgAard\"\n [title]=\"'zakelijkRechtAvgAard' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtAvgAardTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'overige') {\n <v-input\n name=\"objectTypeOverige\"\n [title]=\"'objectTypeOverige' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverige\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.zaakObjectRequest?.objectType === 'overige'\"\n [tooltip]=\"'objectTypeOverigeTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n type=\"checkbox\"\n name=\"includeObjectTypeOverigeDefinitie\"\n [title]=\"'objectTypeOverigeDefinitie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeObjectTypeOverigeDefinitie) {\n <v-input\n name=\"objectTypeOverigeDefinitieUrl\"\n [title]=\"'objectTypeOverigeDefinitieUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieSchema\"\n [title]=\"'objectTypeOverigeDefinitieSchema' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieSchemaTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieObjectData\"\n [title]=\"'objectTypeOverigeDefinitieObjectData' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieObjectDataTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n</v-form>\n" }]
3978
+ }], ctorParameters: () => [], propDecorators: { save$: [{
3979
+ type: Input
3980
+ }], disabled$: [{
3981
+ type: Input
3982
+ }], pluginId: [{
3983
+ type: Input
3984
+ }], prefillConfiguration$: [{
3985
+ type: Input
3986
+ }], valid: [{
3987
+ type: Output
3988
+ }], configuration: [{
3989
+ type: Output
3990
+ }] } });
3991
+
3842
3992
  /*
3843
3993
  * Copyright 2015-2024 Ritense BV, the Netherlands.
3844
3994
  *
@@ -3952,6 +4102,7 @@ class ZakenApiPluginModule {
3952
4102
  CreateZaakeigenschapComponent,
3953
4103
  UpdateZaakeigenschapComponent,
3954
4104
  DeleteZaakeigenschapComponent,
4105
+ CreateZaakObjectConfigurationComponent,
3955
4106
  RelateerZakenComponent], imports: [CommonModule,
3956
4107
  PluginTranslatePipeModule,
3957
4108
  FormModule,
@@ -3980,6 +4131,7 @@ class ZakenApiPluginModule {
3980
4131
  CreateZaakeigenschapComponent,
3981
4132
  UpdateZaakeigenschapComponent,
3982
4133
  DeleteZaakeigenschapComponent,
4134
+ CreateZaakObjectConfigurationComponent,
3983
4135
  RelateerZakenComponent] }); }
3984
4136
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ZakenApiPluginModule, imports: [CommonModule,
3985
4137
  PluginTranslatePipeModule,
@@ -4015,6 +4167,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4015
4167
  CreateZaakeigenschapComponent,
4016
4168
  UpdateZaakeigenschapComponent,
4017
4169
  DeleteZaakeigenschapComponent,
4170
+ CreateZaakObjectConfigurationComponent,
4018
4171
  RelateerZakenComponent,
4019
4172
  ],
4020
4173
  imports: [
@@ -4049,6 +4202,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
4049
4202
  CreateZaakeigenschapComponent,
4050
4203
  UpdateZaakeigenschapComponent,
4051
4204
  DeleteZaakeigenschapComponent,
4205
+ CreateZaakObjectConfigurationComponent,
4052
4206
  RelateerZakenComponent,
4053
4207
  ],
4054
4208
  }]
@@ -4120,6 +4274,7 @@ const zakenApiPluginSpecification = {
4120
4274
  'create-zaakeigenschap': CreateZaakeigenschapComponent,
4121
4275
  'update-zaakeigenschap': UpdateZaakeigenschapComponent,
4122
4276
  'delete-zaakeigenschap': DeleteZaakeigenschapComponent,
4277
+ 'create-zaak-object': CreateZaakObjectConfigurationComponent,
4123
4278
  'relateer-zaken': RelateerZakenComponent,
4124
4279
  },
4125
4280
  pluginTranslations: {
@@ -4143,6 +4298,7 @@ const zakenApiPluginSpecification = {
4143
4298
  authenticationPluginConfigurationTooltip: 'Selecteer de plugin die de authenticatie kan afhandelen. Wanneer de selectiebox leeg blijft zal de authenticatie plugin (bv. OpenZaak) eerst aangemaakt moeten worden',
4144
4299
  linkDocumentInformation: 'Deze actie koppelt een document uit de Documenten API aan de zaak die bij het dossier hoort.',
4145
4300
  'create-zaak': 'Zaak aanmaken',
4301
+ 'create-zaak-object': 'Zaakobject aanmaken',
4146
4302
  createZaakInformation: 'Deze actie creëert een zaak in de Zaken API en koppeld de nieuwe zaak aan het dossier.',
4147
4303
  rsin: 'RSIN',
4148
4304
  rsinTooltip: 'Rechtspersonen en Samenwerkingsverbanden Informatienummer',
@@ -4219,6 +4375,26 @@ const zakenApiPluginSpecification = {
4219
4375
  'option-vervolg': 'De andere zaak gaf aanleiding tot het starten van de onderhanden zaak.',
4220
4376
  'option-onderwerp': 'De andere zaak is relevant voor cq. is onderwerp van de onderhanden zaak.',
4221
4377
  'option-bijdrage': 'Aan het bereiken van de uitkomst van de andere zaak levert de onderhanden zaak een bijdrage.',
4378
+ zaakObjectObjectUrl: 'Object URL',
4379
+ zaakObjectObjectUrlTooltip: 'URL-referentie naar de resource die het OBJECT beschrijft.',
4380
+ objectType: 'Object Type',
4381
+ objectTypeTooltip: 'Beschrijft het type OBJECT gerelateerd aan de ZAAK. Als er geen passend type is, dan moet het type worden opgegeven onder objectTypeOverige.',
4382
+ relatieomschrijving: 'Relatieomschrijving',
4383
+ relatieomschrijvingTooltip: 'Omschrijving van de betrekking tussen de ZAAK en het OBJECT.',
4384
+ zakelijkRechtIdentificatie: 'Zakelijk recht identificatie',
4385
+ zakelijkRechtIdentificatieTooltip: 'De unieke identificatie van het OBJECT',
4386
+ zakelijkRechtAvgAard: 'Zakelijk recht AVG aard',
4387
+ zakelijkRechtAvgAardTooltip: 'Aanduiding voor de aard van het recht',
4388
+ objectTypeOverige: 'Object type overige',
4389
+ objectTypeOverigeTooltip: 'Beschrijft het type OBJECT als objectType de waarde "overige" heeft.',
4390
+ objectTypeOverigeDefinitie: 'Object type overige definitie',
4391
+ objectTypeOverigeDefinitieUrl: 'URL',
4392
+ objectTypeOverigeDefinitieUrlTooltip: 'URL-referentie naar de objecttype resource in een API. Deze resource moet de JSON-schema-definitie van het objecttype bevatten.',
4393
+ objectTypeOverigeDefinitieSchema: 'Schema',
4394
+ objectTypeOverigeDefinitieSchemaTooltip: 'Een geldige jq expressie. Dit wordt gecombineerd met de resource uit het url-attribuut om het schema van het objecttype uit te lezen. Bijvoorbeeld: .jsonSchema.',
4395
+ objectTypeOverigeDefinitieObjectData: 'Object data',
4396
+ objectTypeOverigeDefinitieObjectDataTooltip: 'Een geldige jq expressie. Dit wordt gecombineerd met de JSON data uit de OBJECT url om de objectgegevens uit te lezen en de vorm van de gegevens tegen het schema te valideren. Bijvoorbeeld: .record.data.',
4397
+ objectIdentificatie: 'Object identificatie'
4222
4398
  },
4223
4399
  en: {
4224
4400
  title: 'Zaken API',
@@ -4240,6 +4416,7 @@ const zakenApiPluginSpecification = {
4240
4416
  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',
4241
4417
  linkDocumentInformation: 'This action links a document from the Documents API to the zaak associated with the case.',
4242
4418
  'create-zaak': 'Create zaak',
4419
+ 'create-zaak-object': 'Create zaak object',
4243
4420
  createZaakInformation: 'This action creates a zaak in the Zaken API and links the new zaak with the case.',
4244
4421
  rsin: 'RSIN',
4245
4422
  rsinTooltip: 'Legal Entities and Partnerships Information Number',
@@ -4316,6 +4493,26 @@ const zakenApiPluginSpecification = {
4316
4493
  'option-vervolg': 'The other Zaak prompted the start of the current Zaak.',
4317
4494
  'option-onderwerp': 'The other Zaak is relevant to or the subject of the current Zaak.',
4318
4495
  'option-bijdrage': 'The current Zaak contributes to the outcome of the other Zaak.',
4496
+ zaakObjectObjectUrl: "Object URL",
4497
+ zaakObjectObjectUrlTooltip: "URL reference to the resource that describes the OBJECT.",
4498
+ objectType: "Object Type",
4499
+ objectTypeTooltip: "Describes the type of OBJECT related to the ZAAK. If there is no suitable type, then the type must be specified under objectTypeOverige.",
4500
+ relatieomschrijving: "Relationship description",
4501
+ relatieomschrijvingTooltip: "Description of the relationship between the ZAAK and the OBJECT.",
4502
+ zakelijkRechtIdentificatie: "Property right identification",
4503
+ zakelijkRechtIdentificatieTooltip: "The unique identification of the OBJECT",
4504
+ zakelijkRechtAvgAard: "Property right AVG nature",
4505
+ zakelijkRechtAvgAardTooltip: "Indication of the nature of the right",
4506
+ objectTypeOverige: "Object type other",
4507
+ objectTypeOverigeTooltip: "Describes the type of OBJECT when objectType has the value 'overige'.",
4508
+ objectTypeOverigeDefinitie: 'Object type other definition',
4509
+ objectTypeOverigeDefinitieUrl: "URL",
4510
+ objectTypeOverigeDefinitieUrlTooltip: "URL reference to the object type resource in an API. This resource must contain the JSON schema definition of the object type.",
4511
+ objectTypeOverigeDefinitieSchema: "Schema",
4512
+ objectTypeOverigeDefinitieSchemaTooltip: "A valid jq expression. This is combined with the resource from the url attribute to read the schema of the object type. Example: .jsonSchema.",
4513
+ objectTypeOverigeDefinitieObjectData: "Object data",
4514
+ objectTypeOverigeDefinitieObjectDataTooltip: "A valid jq expression. This is combined with the JSON data from the OBJECT url to read the object data and validate the data structure against the schema. Example: .record.data.",
4515
+ objectIdentificatie: 'Object identification'
4319
4516
  },
4320
4517
  de: {
4321
4518
  title: 'Zaken API',
@@ -4337,6 +4534,7 @@ const zakenApiPluginSpecification = {
4337
4534
  authenticationPluginConfigurationTooltip: 'Wählen Sie das Plugin aus, das die Authentifizierung verarbeiten kann. Bleibt das Auswahlfeld leer, muss zunächst das Authentifizierungs-Plugin (z. B. OpenZaak) erstellt werden',
4338
4535
  linkDocumentInformation: 'Diese Aktion verknüpft ein Dokument aus der Dokumenten-API mit dem mit dem Fall verknüpften Zaak.',
4339
4536
  'create-zaak': 'Zaak erschaffen',
4537
+ 'create-zaak-object': 'Zaakobject erschaffen',
4340
4538
  createZaakInformation: 'Diese Aktion hat einen zaak in der Zaken-API definiert und den neuen zaak mit dem Fall verknüpft.',
4341
4539
  rsin: 'RSIN',
4342
4540
  rsinTooltip: 'Informationsnummer für juristische Personen und Partnerschaften.',
@@ -4413,6 +4611,26 @@ const zakenApiPluginSpecification = {
4413
4611
  'option-vervolg': 'Der andere Zaak gab Anlass zur Einleitung des aktuellen Zaak.',
4414
4612
  'option-onderwerp': 'Der andere Zaak ist relevant für bzw. Gegenstand des aktuellen Zaak.',
4415
4613
  'option-bijdrage': 'Der aktuelle Zaak trägt zum Ergebnis des anderen Zaak bei.',
4614
+ zaakObjectObjectUrl: "Objekt-URL",
4615
+ zaakObjectObjectUrlTooltip: "URL-Referenz zur Ressource, die das OBJECT beschreibt.",
4616
+ objectType: "Objekttyp",
4617
+ objectTypeTooltip: "Beschreibt den Typ des OBJECT, das mit dem ZAAK verbunden ist. Wenn kein passender Typ vorhanden ist, muss der Typ unter objectTypeOverige angegeben werden.",
4618
+ relatieomschrijving: "Beziehungsbeschreibung",
4619
+ relatieomschrijvingTooltip: "Beschreibung der Beziehung zwischen dem ZAAK und dem OBJECT.",
4620
+ zakelijkRechtIdentificatie: "Grundstücksrechtsidentifikation",
4621
+ zakelijkRechtIdentificatieTooltip: "Die eindeutige Identifikation des OBJECT",
4622
+ zakelijkRechtAvgAard: "Grundstücksrecht AVG Art",
4623
+ zakelijkRechtAvgAardTooltip: "Kennzeichnung der Art des Rechts",
4624
+ objectTypeOverige: "Sonstiger Objekttyp",
4625
+ objectTypeOverigeTooltip: "Beschreibt den Typ des OBJECT, wenn objectType den Wert „overige“ hat.",
4626
+ objectTypeOverigeDefinitie: 'Sonstiger Objekttyp-Definition',
4627
+ objectTypeOverigeDefinitieUrl: "URL",
4628
+ objectTypeOverigeDefinitieUrlTooltip: "URL-Referenz zur Objekttyp-Ressource in einer API. Diese Ressource muss die JSON-Schema-Definition des Objekttyps enthalten.",
4629
+ objectTypeOverigeDefinitieSchema: "Schema",
4630
+ objectTypeOverigeDefinitieSchemaTooltip: "Ein gültiger jq-Ausdruck. Dies wird mit der Ressource aus dem URL-Attribut kombiniert, um das Schema des Objekttyps auszulesen. Beispiel: .jsonSchema.",
4631
+ objectTypeOverigeDefinitieObjectData: "Objektdaten",
4632
+ objectTypeOverigeDefinitieObjectDataTooltip: "Ein gültiger jq-Ausdruck. Dies wird mit den JSON-Daten aus der OBJEKT-URL kombiniert, um die Objektdaten auszulesen und die Struktur der Daten gegen das Schema zu validieren. Beispiel: .record.data.",
4633
+ objectIdentificatie: 'Objektidentifikation'
4416
4634
  },
4417
4635
  },
4418
4636
  };
@@ -7942,5 +8160,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
7942
8160
  * Generated bundle index. Do not edit.
7943
8161
  */
7944
8162
 
7945
- export { BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreatePortalTaskComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DeleteObjectComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetStatustypeConfigurationComponent, GetTemplateNamesComponent, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, RelateerZakenComponent, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VerzoekConfigurationComponent, VerzoekPluginModule, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, exactPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
8163
+ export { BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreatePortalTaskComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DeleteObjectComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetStatustypeConfigurationComponent, GetTemplateNamesComponent, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, RelateerZakenComponent, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VerzoekConfigurationComponent, VerzoekPluginModule, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, exactPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
7946
8164
  //# sourceMappingURL=valtimo-plugin.mjs.map