@valtimo/plugin 13.35.0 → 13.36.1
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 +80 -3
- package/fesm2022/valtimo-plugin.mjs.map +1 -1
- package/lib/plugins/catalogi-api/catalogi-api-plugin-module.d.ts +5 -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-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 +5 -1
- package/lib/plugins/catalogi-api/models/config.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -1
|
@@ -8093,6 +8093,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8093
8093
|
type: Output
|
|
8094
8094
|
}] } });
|
|
8095
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
|
+
|
|
8096
8164
|
/*
|
|
8097
8165
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
8098
8166
|
*
|
|
@@ -8117,7 +8185,8 @@ class CatalogiApiPluginModule {
|
|
|
8117
8185
|
GetStatustypenConfigurationComponent,
|
|
8118
8186
|
GetStatustypeConfigurationComponent,
|
|
8119
8187
|
GetEigenschapConfigurationComponent,
|
|
8120
|
-
GetInformatieobjecttypeConfigurationComponent
|
|
8188
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8189
|
+
GetInformatieobjecttypenConfigurationComponent], imports: [CommonModule,
|
|
8121
8190
|
PluginTranslatePipeModule,
|
|
8122
8191
|
FormModule,
|
|
8123
8192
|
InputModule,
|
|
@@ -8129,7 +8198,8 @@ class CatalogiApiPluginModule {
|
|
|
8129
8198
|
GetStatustypeConfigurationComponent,
|
|
8130
8199
|
GetStatustypenConfigurationComponent,
|
|
8131
8200
|
GetEigenschapConfigurationComponent,
|
|
8132
|
-
GetInformatieobjecttypeConfigurationComponent
|
|
8201
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8202
|
+
GetInformatieobjecttypenConfigurationComponent] }); }
|
|
8133
8203
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CatalogiApiPluginModule, imports: [CommonModule,
|
|
8134
8204
|
PluginTranslatePipeModule,
|
|
8135
8205
|
FormModule,
|
|
@@ -8149,6 +8219,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8149
8219
|
GetStatustypeConfigurationComponent,
|
|
8150
8220
|
GetEigenschapConfigurationComponent,
|
|
8151
8221
|
GetInformatieobjecttypeConfigurationComponent,
|
|
8222
|
+
GetInformatieobjecttypenConfigurationComponent,
|
|
8152
8223
|
],
|
|
8153
8224
|
imports: [
|
|
8154
8225
|
CommonModule,
|
|
@@ -8167,6 +8238,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8167
8238
|
GetStatustypenConfigurationComponent,
|
|
8168
8239
|
GetEigenschapConfigurationComponent,
|
|
8169
8240
|
GetInformatieobjecttypeConfigurationComponent,
|
|
8241
|
+
GetInformatieobjecttypenConfigurationComponent,
|
|
8170
8242
|
],
|
|
8171
8243
|
}]
|
|
8172
8244
|
}] });
|
|
@@ -8231,6 +8303,7 @@ const catalogiApiPluginSpecification = {
|
|
|
8231
8303
|
'get-statustype': GetStatustypeConfigurationComponent,
|
|
8232
8304
|
'get-eigenschap': GetEigenschapConfigurationComponent,
|
|
8233
8305
|
'get-informatieobjecttype': GetInformatieobjecttypeConfigurationComponent,
|
|
8306
|
+
'get-informatieobjecttypen': GetInformatieobjecttypenConfigurationComponent,
|
|
8234
8307
|
},
|
|
8235
8308
|
pluginTranslations: {
|
|
8236
8309
|
nl: {
|
|
@@ -8273,6 +8346,8 @@ const catalogiApiPluginSpecification = {
|
|
|
8273
8346
|
informatieobjecttype: 'Informatieobjecttype',
|
|
8274
8347
|
informatieobjecttypeTooltip: 'Omschrijving van het informatieobjecttype.',
|
|
8275
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.',
|
|
8276
8351
|
},
|
|
8277
8352
|
en: {
|
|
8278
8353
|
title: 'Catalogi API',
|
|
@@ -8314,6 +8389,8 @@ const catalogiApiPluginSpecification = {
|
|
|
8314
8389
|
informatieobjecttype: 'Informatieobjecttype',
|
|
8315
8390
|
informatieobjecttypeTooltip: 'Description of the informatieobjecttype.',
|
|
8316
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.',
|
|
8317
8394
|
},
|
|
8318
8395
|
},
|
|
8319
8396
|
};
|
|
@@ -11360,5 +11437,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
11360
11437
|
* Generated bundle index. Do not edit.
|
|
11361
11438
|
*/
|
|
11362
11439
|
|
|
11363
|
-
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, 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 };
|
|
11364
11441
|
//# sourceMappingURL=valtimo-plugin.mjs.map
|