@valtimo/plugin 5.3.0 → 5.6.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/esm2020/lib/components/plugin-configuration-container/plugin-configuration-container.component.mjs +10 -11
- package/esm2020/lib/components/plugin-configuration-container/plugin-configuration-container.module.mjs +5 -5
- package/esm2020/lib/constants/index.mjs +6 -2
- package/esm2020/lib/constants/injection-tokens.mjs +6 -2
- package/esm2020/lib/models/index.mjs +6 -2
- package/esm2020/lib/models/plugin.mjs +6 -2
- package/esm2020/lib/pipes/index.mjs +6 -2
- package/esm2020/lib/pipes/plugin-translate/index.mjs +6 -2
- package/esm2020/lib/pipes/plugin-translate/plugin-translate-pipe.module.mjs +10 -6
- package/esm2020/lib/pipes/plugin-translate/plugin-translate.pipe.mjs +9 -5
- package/esm2020/lib/plugins/documenten-api/assets/documenten-api-plugin-logo.mjs +18 -0
- package/esm2020/lib/plugins/documenten-api/assets/index.mjs +17 -0
- package/esm2020/lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component.mjs +89 -0
- package/esm2020/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.mjs +96 -0
- package/esm2020/lib/plugins/documenten-api/documenten-api-plugin.module.mjs +36 -0
- package/esm2020/lib/plugins/documenten-api/documenten-api-plugin.specification.mjs +99 -0
- package/esm2020/lib/plugins/documenten-api/models/config.mjs +17 -0
- package/esm2020/lib/plugins/documenten-api/models/index.mjs +17 -0
- package/esm2020/lib/plugins/open-zaak/assets/index.mjs +6 -2
- package/esm2020/lib/plugins/open-zaak/assets/open-zaak-plugin-logo.mjs +6 -2
- package/esm2020/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.mjs +38 -20
- package/esm2020/lib/plugins/open-zaak/models/config.mjs +6 -2
- package/esm2020/lib/plugins/open-zaak/models/index.mjs +6 -2
- package/esm2020/lib/plugins/open-zaak/open-zaak-plugin.module.mjs +9 -63
- package/esm2020/lib/plugins/open-zaak/open-zaak-plugin.specification.mjs +12 -63
- package/esm2020/lib/plugins/smart-documents/assets/index.mjs +6 -2
- package/esm2020/lib/plugins/smart-documents/assets/smart-documents-plugin-logo.mjs +6 -2
- package/esm2020/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.mjs +40 -16
- package/esm2020/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.mjs +41 -15
- package/esm2020/lib/plugins/smart-documents/models/config.mjs +6 -2
- package/esm2020/lib/plugins/smart-documents/models/index.mjs +6 -2
- package/esm2020/lib/plugins/smart-documents/smart-documents-plugin.module.mjs +10 -7
- package/esm2020/lib/plugins/smart-documents/smart-documents-plugin.specification.mjs +18 -5
- package/esm2020/lib/plugins/zaken-api/assets/index.mjs +17 -0
- package/esm2020/lib/plugins/zaken-api/assets/zaken-api-plugin-logo.mjs +18 -0
- package/esm2020/lib/plugins/zaken-api/components/link-document-to-zaak/link-document-to-zaak-configuration.component.mjs +86 -0
- package/esm2020/lib/plugins/zaken-api/components/zaken-api-configuration/zaken-api-configuration.component.mjs +88 -0
- package/esm2020/lib/plugins/zaken-api/models/config.mjs +17 -0
- package/esm2020/lib/plugins/zaken-api/models/index.mjs +17 -0
- package/esm2020/lib/plugins/zaken-api/zaken-api-plugin.module.mjs +55 -0
- package/esm2020/lib/plugins/zaken-api/zaken-api-plugin.specification.mjs +82 -0
- package/esm2020/lib/services/index.mjs +7 -2
- package/esm2020/lib/services/plugin-management.service.mjs +79 -0
- package/esm2020/lib/services/plugin-translation.service.mjs +9 -5
- package/esm2020/lib/services/plugin.service.mjs +4 -4
- package/esm2020/public-api.mjs +16 -7
- package/fesm2015/valtimo-plugin.mjs +921 -515
- package/fesm2015/valtimo-plugin.mjs.map +1 -1
- package/fesm2020/valtimo-plugin.mjs +918 -516
- package/fesm2020/valtimo-plugin.mjs.map +1 -1
- package/lib/components/plugin-configuration-container/plugin-configuration-container.component.d.ts +5 -6
- package/lib/components/plugin-configuration-container/plugin-configuration-container.component.d.ts.map +1 -1
- package/lib/constants/index.d.ts.map +1 -1
- package/lib/constants/injection-tokens.d.ts.map +1 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/plugin.d.ts +41 -7
- package/lib/models/plugin.d.ts.map +1 -1
- package/lib/pipes/index.d.ts.map +1 -1
- package/lib/pipes/plugin-translate/index.d.ts.map +1 -1
- package/lib/pipes/plugin-translate/plugin-translate-pipe.module.d.ts.map +1 -1
- package/lib/pipes/plugin-translate/plugin-translate.pipe.d.ts.map +1 -1
- package/lib/plugins/documenten-api/assets/documenten-api-plugin-logo.d.ts +3 -0
- package/lib/plugins/documenten-api/assets/documenten-api-plugin-logo.d.ts.map +1 -0
- package/lib/plugins/documenten-api/assets/index.d.ts +2 -0
- package/lib/plugins/documenten-api/assets/index.d.ts.map +1 -0
- package/lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component.d.ts +34 -0
- package/lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component.d.ts.map +1 -0
- package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts +39 -0
- package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts.map +1 -0
- package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts +12 -0
- package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts.map +1 -0
- package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts +4 -0
- package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -0
- package/lib/plugins/documenten-api/models/config.d.ts +17 -0
- package/lib/plugins/documenten-api/models/config.d.ts.map +1 -0
- package/lib/plugins/documenten-api/models/index.d.ts +2 -0
- package/lib/plugins/documenten-api/models/index.d.ts.map +1 -0
- package/lib/plugins/open-zaak/assets/index.d.ts.map +1 -1
- package/lib/plugins/open-zaak/assets/open-zaak-plugin-logo.d.ts.map +1 -1
- package/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.d.ts +11 -6
- package/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.d.ts.map +1 -1
- package/lib/plugins/open-zaak/models/config.d.ts +3 -7
- package/lib/plugins/open-zaak/models/config.d.ts.map +1 -1
- package/lib/plugins/open-zaak/models/index.d.ts.map +1 -1
- package/lib/plugins/open-zaak/open-zaak-plugin.module.d.ts +4 -9
- package/lib/plugins/open-zaak/open-zaak-plugin.module.d.ts.map +1 -1
- package/lib/plugins/open-zaak/open-zaak-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/smart-documents/assets/index.d.ts.map +1 -1
- package/lib/plugins/smart-documents/assets/smart-documents-plugin-logo.d.ts.map +1 -1
- package/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.d.ts +12 -7
- package/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.d.ts.map +1 -1
- package/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.d.ts +11 -6
- package/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.d.ts.map +1 -1
- package/lib/plugins/smart-documents/models/config.d.ts +3 -2
- package/lib/plugins/smart-documents/models/config.d.ts.map +1 -1
- package/lib/plugins/smart-documents/models/index.d.ts.map +1 -1
- package/lib/plugins/smart-documents/smart-documents-plugin.module.d.ts +1 -1
- package/lib/plugins/smart-documents/smart-documents-plugin.module.d.ts.map +1 -1
- package/lib/plugins/smart-documents/smart-documents-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/zaken-api/assets/index.d.ts +2 -0
- package/lib/plugins/zaken-api/assets/index.d.ts.map +1 -0
- package/lib/plugins/zaken-api/assets/zaken-api-plugin-logo.d.ts +3 -0
- package/lib/plugins/zaken-api/assets/zaken-api-plugin-logo.d.ts.map +1 -0
- package/lib/plugins/zaken-api/components/link-document-to-zaak/link-document-to-zaak-configuration.component.d.ts +34 -0
- package/lib/plugins/zaken-api/components/link-document-to-zaak/link-document-to-zaak-configuration.component.d.ts.map +1 -0
- package/lib/plugins/zaken-api/components/zaken-api-configuration/zaken-api-configuration.component.d.ts +34 -0
- package/lib/plugins/zaken-api/components/zaken-api-configuration/zaken-api-configuration.component.d.ts.map +1 -0
- package/lib/plugins/zaken-api/models/config.d.ts +12 -0
- package/lib/plugins/zaken-api/models/config.d.ts.map +1 -0
- package/lib/plugins/zaken-api/models/index.d.ts +2 -0
- package/lib/plugins/zaken-api/models/index.d.ts.map +1 -0
- package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts +12 -0
- package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts.map +1 -0
- package/lib/plugins/zaken-api/zaken-api-plugin.specification.d.ts +4 -0
- package/lib/plugins/zaken-api/zaken-api-plugin.specification.d.ts.map +1 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/index.d.ts.map +1 -1
- package/lib/services/plugin-management.service.d.ts +27 -0
- package/lib/services/plugin-management.service.d.ts.map +1 -0
- package/lib/services/plugin-translation.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +8 -5
- package/public-api.d.ts.map +1 -1
- package/esm2020/lib/plugins/open-zaak/components/create-zaak-configuration/create-zaak-configuration.component.mjs +0 -65
- package/esm2020/lib/plugins/open-zaak/components/select-zaak-type/select-zaak-type.component.mjs +0 -61
- package/esm2020/lib/plugins/open-zaak/components/set-besluit-configuration/set-besluit-configuration.component.mjs +0 -85
- package/esm2020/lib/plugins/open-zaak/components/set-resultaat-configuration/set-resultaat-configuration.component.mjs +0 -95
- package/esm2020/lib/plugins/open-zaak/components/set-status-configuration/set-status-configuration.component.mjs +0 -90
- package/lib/plugins/open-zaak/components/create-zaak-configuration/create-zaak-configuration.component.d.ts +0 -23
- package/lib/plugins/open-zaak/components/create-zaak-configuration/create-zaak-configuration.component.d.ts.map +0 -1
- package/lib/plugins/open-zaak/components/select-zaak-type/select-zaak-type.component.d.ts +0 -23
- package/lib/plugins/open-zaak/components/select-zaak-type/select-zaak-type.component.d.ts.map +0 -1
- package/lib/plugins/open-zaak/components/set-besluit-configuration/set-besluit-configuration.component.d.ts +0 -30
- package/lib/plugins/open-zaak/components/set-besluit-configuration/set-besluit-configuration.component.d.ts.map +0 -1
- package/lib/plugins/open-zaak/components/set-resultaat-configuration/set-resultaat-configuration.component.d.ts +0 -30
- package/lib/plugins/open-zaak/components/set-resultaat-configuration/set-resultaat-configuration.component.d.ts.map +0 -1
- package/lib/plugins/open-zaak/components/set-status-configuration/set-status-configuration.component.d.ts +0 -30
- package/lib/plugins/open-zaak/components/set-status-configuration/set-status-configuration.component.d.ts.map +0 -1
package/lib/components/plugin-configuration-container/plugin-configuration-container.component.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentRef, EventEmitter, OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { PluginService } from '../../services';
|
|
3
3
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
-
import { ConfigurationComponentType, PluginConfigurationComponent, PluginConfigurationData } from '../../models';
|
|
4
|
+
import { ConfigurationComponentType, FunctionConfigurationComponent, PluginConfigurationComponent, PluginConfigurationData } from '../../models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class PluginConfigurationContainerComponent implements OnInit, OnDestroy, Omit<PluginConfigurationComponent, 'pluginId'> {
|
|
7
7
|
private readonly pluginService;
|
|
@@ -9,14 +9,13 @@ export declare class PluginConfigurationContainerComponent implements OnInit, On
|
|
|
9
9
|
set type(type: ConfigurationComponentType);
|
|
10
10
|
set pluginDefinitionKey(key: string);
|
|
11
11
|
set functionKey(key: string);
|
|
12
|
-
clear$: Observable<void>;
|
|
13
12
|
save$: Observable<void>;
|
|
14
|
-
disabled
|
|
15
|
-
|
|
13
|
+
disabled$: Observable<boolean>;
|
|
14
|
+
prefillConfiguration$: Observable<any>;
|
|
16
15
|
valid: EventEmitter<boolean>;
|
|
17
16
|
configuration: EventEmitter<PluginConfigurationData>;
|
|
18
17
|
readonly noConfigurationComponentAvailable$: BehaviorSubject<boolean>;
|
|
19
|
-
readonly componentRef$: BehaviorSubject<ComponentRef<PluginConfigurationComponent>>;
|
|
18
|
+
readonly componentRef$: BehaviorSubject<ComponentRef<PluginConfigurationComponent | FunctionConfigurationComponent>>;
|
|
20
19
|
private componentRefSubscription;
|
|
21
20
|
private pluginSubscription;
|
|
22
21
|
private validSubscription;
|
|
@@ -30,6 +29,6 @@ export declare class PluginConfigurationContainerComponent implements OnInit, On
|
|
|
30
29
|
private openPluginSubscription;
|
|
31
30
|
private openComponentInstanceSubscription;
|
|
32
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<PluginConfigurationContainerComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PluginConfigurationContainerComponent, "valtimo-plugin-configuration-container", never, { "type": "type"; "pluginDefinitionKey": "pluginDefinitionKey"; "functionKey": "functionKey"; "
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PluginConfigurationContainerComponent, "valtimo-plugin-configuration-container", never, { "type": "type"; "pluginDefinitionKey": "pluginDefinitionKey"; "functionKey": "functionKey"; "save$": "save$"; "disabled$": "disabled$"; "prefillConfiguration$": "prefillConfiguration$"; }, { "valid": "valid"; "configuration": "configuration"; }, never, never>;
|
|
34
33
|
}
|
|
35
34
|
//# sourceMappingURL=plugin-configuration-container.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-configuration-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/components/plugin-configuration-container/plugin-configuration-container.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAEL,YAAY,EACZ,YAAY,EAEZ,SAAS,EACT,MAAM,EAIN,gBAAgB,EACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAe,MAAM,MAAM,CAAC;AAE9E,OAAO,EACL,0BAA0B,EAC1B,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;;AAEtB,qBAKa,qCACX,YAAW,MAAM,EAAE,SAAS,EAAE,IAAI,CAAC,4BAA4B,EAAE,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin-configuration-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/components/plugin-configuration-container/plugin-configuration-container.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAEL,YAAY,EACZ,YAAY,EAEZ,SAAS,EACT,MAAM,EAIN,gBAAgB,EACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAe,MAAM,MAAM,CAAC;AAE9E,OAAO,EACL,0BAA0B,EAC1B,8BAA8B,EAE9B,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;;AAEtB,qBAKa,qCACX,YAAW,MAAM,EAAE,SAAS,EAAE,IAAI,CAAC,4BAA4B,EAAE,UAAU,CAAC;IAmChE,OAAO,CAAC,QAAQ,CAAC,aAAa;IAhCnC,gBAAgB,EAAE,gBAAgB,CAAC;IAE1C,IAAa,IAAI,CAAC,IAAI,EAAE,0BAA0B,EAEjD;IACD,IAAa,mBAAmB,CAAC,GAAG,EAAE,MAAM,EAE3C;IACD,IAAa,WAAW,CAAC,GAAG,EAAE,MAAM,EAEnC;IACQ,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,qBAAqB,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IACtC,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAC3D,aAAa,EAAE,YAAY,CAAC,uBAAuB,CAAC,CAChB;IAE9C,QAAQ,CAAC,kCAAkC,2BAAuC;IAClF,QAAQ,CAAC,aAAa,+FAET;IAEb,OAAO,CAAC,wBAAwB,CAAgB;IAChD,OAAO,CAAC,kBAAkB,CAAgB;IAC1C,OAAO,CAAC,iBAAiB,CAAgB;IACzC,OAAO,CAAC,yBAAyB,CAAgB;IAEjD,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAgE;IAC/F,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAmC;IACxE,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAmC;gBAEnC,aAAa,EAAE,aAAa;IAEzD,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAKnB,OAAO,CAAC,sBAAsB;IAuC9B,OAAO,CAAC,iCAAiC;yCAvF9B,qCAAqC;2CAArC,qCAAqC;CAoHjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/constants/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/constants/index.ts"],"names":[],"mappings":"AAgBA,cAAc,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"injection-tokens.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/constants/injection-tokens.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"injection-tokens.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/constants/injection-tokens.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAC,YAAY,EAAC,MAAM,WAAW,CAAC;AAEvC,QAAA,MAAM,aAAa,8BAElB,CAAC;AAEF,OAAO,EAAC,aAAa,EAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/models/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,UAAU,CAAC"}
|
package/lib/models/plugin.d.ts
CHANGED
|
@@ -1,32 +1,66 @@
|
|
|
1
1
|
import { EventEmitter, Type } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
3
4
|
interface PluginConfigurationData {
|
|
5
|
+
configurationTitle: string;
|
|
4
6
|
[key: string]: any;
|
|
5
7
|
}
|
|
6
|
-
interface
|
|
8
|
+
interface FunctionConfigurationData {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
}
|
|
11
|
+
interface ConfigurationComponent {
|
|
7
12
|
save$: Observable<void>;
|
|
8
|
-
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
error: boolean;
|
|
13
|
+
disabled$: Observable<boolean>;
|
|
11
14
|
pluginId: string;
|
|
12
|
-
prefillConfiguration?: PluginConfigurationData;
|
|
13
15
|
valid: EventEmitter<boolean>;
|
|
16
|
+
}
|
|
17
|
+
interface PluginConfigurationComponent extends ConfigurationComponent {
|
|
18
|
+
prefillConfiguration$?: Observable<PluginConfigurationData>;
|
|
14
19
|
configuration: EventEmitter<PluginConfigurationData>;
|
|
15
20
|
}
|
|
21
|
+
interface FunctionConfigurationComponent extends ConfigurationComponent {
|
|
22
|
+
prefillConfiguration$?: Observable<FunctionConfigurationData>;
|
|
23
|
+
configuration: EventEmitter<FunctionConfigurationData>;
|
|
24
|
+
}
|
|
16
25
|
interface PluginSpecification {
|
|
17
26
|
pluginId: string;
|
|
18
27
|
pluginLogoBase64: string;
|
|
19
28
|
pluginConfigurationComponent: Type<PluginConfigurationComponent>;
|
|
20
29
|
functionConfigurationComponents?: {
|
|
21
|
-
[functionId: string]: Type<
|
|
30
|
+
[functionId: string]: Type<FunctionConfigurationComponent>;
|
|
22
31
|
};
|
|
23
32
|
pluginTranslations: {
|
|
24
33
|
[langKey: string]: {
|
|
34
|
+
title: string;
|
|
35
|
+
description: string;
|
|
25
36
|
[translationKey: string]: string;
|
|
26
37
|
};
|
|
27
38
|
};
|
|
28
39
|
}
|
|
29
40
|
declare type PluginConfig = Array<PluginSpecification>;
|
|
30
41
|
declare type ConfigurationComponentType = 'function' | 'configuration';
|
|
31
|
-
|
|
42
|
+
interface PluginDefinition {
|
|
43
|
+
key: string;
|
|
44
|
+
description?: string;
|
|
45
|
+
title?: string;
|
|
46
|
+
}
|
|
47
|
+
interface PluginDefinitionWithLogo extends PluginDefinition {
|
|
48
|
+
pluginLogoBase64?: SafeResourceUrl;
|
|
49
|
+
}
|
|
50
|
+
interface PluginConfiguration {
|
|
51
|
+
definitionKey?: string;
|
|
52
|
+
pluginDefinition?: PluginDefinition;
|
|
53
|
+
id?: string;
|
|
54
|
+
title: string;
|
|
55
|
+
properties: object;
|
|
56
|
+
}
|
|
57
|
+
interface PluginConfigurationWithLogo extends PluginConfiguration {
|
|
58
|
+
pluginLogoBase64?: SafeResourceUrl;
|
|
59
|
+
}
|
|
60
|
+
interface PluginFunction {
|
|
61
|
+
description?: string;
|
|
62
|
+
key: string;
|
|
63
|
+
title?: string;
|
|
64
|
+
}
|
|
65
|
+
export { PluginSpecification, PluginConfig, PluginConfigurationComponent, ConfigurationComponentType, PluginConfigurationData, FunctionConfigurationComponent, FunctionConfigurationData, PluginConfiguration, PluginDefinition, PluginFunction, PluginDefinitionWithLogo, PluginConfigurationWithLogo, };
|
|
32
66
|
//# sourceMappingURL=plugin.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/models/plugin.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/models/plugin.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,IAAI,EAAC,MAAM,eAAe,CAAC;AACnE,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAChC,OAAO,EAAC,eAAe,EAAC,MAAM,2BAA2B,CAAC;AAE1D,UAAU,uBAAuB;IAC/B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,UAAU,yBAAyB;IACjC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,UAAU,sBAAsB;IAC9B,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;CAC9B;AAED,UAAU,4BAA6B,SAAQ,sBAAsB;IACnE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,CAAC,CAAC;IAC5D,aAAa,EAAE,YAAY,CAAC,uBAAuB,CAAC,CAAC;CACtD;AAED,UAAU,8BAA+B,SAAQ,sBAAsB;IACrE,qBAAqB,CAAC,EAAE,UAAU,CAAC,yBAAyB,CAAC,CAAC;IAC9D,aAAa,EAAE,YAAY,CAAC,yBAAyB,CAAC,CAAC;CACxD;AAED,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,4BAA4B,EAAE,IAAI,CAAC,4BAA4B,CAAC,CAAC;IACjE,+BAA+B,CAAC,EAAE;QAChC,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC,8BAA8B,CAAC,CAAC;KAC5D,CAAC;IACF,kBAAkB,EAAE;QAClB,CAAC,OAAO,EAAE,MAAM,GAAG;YACjB,KAAK,EAAE,MAAM,CAAC;YACd,WAAW,EAAE,MAAM,CAAC;YACpB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM,CAAC;SAClC,CAAC;KACH,CAAC;CACH;AAED,aAAK,YAAY,GAAG,KAAK,CAAC,mBAAmB,CAAC,CAAC;AAE/C,aAAK,0BAA0B,GAAG,UAAU,GAAG,eAAe,CAAC;AAE/D,UAAU,gBAAgB;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,UAAU,wBAAyB,SAAQ,gBAAgB;IACzD,gBAAgB,CAAC,EAAE,eAAe,CAAC;CACpC;AAED,UAAU,mBAAmB;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,UAAU,2BAA4B,SAAQ,mBAAmB;IAC/D,gBAAgB,CAAC,EAAE,eAAe,CAAC;CACpC;AAED,UAAU,cAAc;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,OAAO,EACL,mBAAmB,EACnB,YAAY,EACZ,4BAA4B,EAC5B,0BAA0B,EAC1B,uBAAuB,EACvB,8BAA8B,EAC9B,yBAAyB,EACzB,mBAAmB,EACnB,gBAAgB,EAChB,cAAc,EACd,wBAAwB,EACxB,2BAA2B,GAC5B,CAAC"}
|
package/lib/pipes/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/pipes/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/pipes/index.ts"],"names":[],"mappings":"AAgBA,cAAc,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/pipes/plugin-translate/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/pipes/plugin-translate/index.ts"],"names":[],"mappings":"AAgBA,cAAc,yBAAyB,CAAC;AACxC,cAAc,gCAAgC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-translate-pipe.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/pipes/plugin-translate/plugin-translate-pipe.module.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"plugin-translate-pipe.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/pipes/plugin-translate/plugin-translate-pipe.module.ts"],"names":[],"mappings":";;;AAoBA,qBAKa,yBAAyB;yCAAzB,yBAAyB;0CAAzB,yBAAyB;0CAAzB,yBAAyB;CAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-translate.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/pipes/plugin-translate/plugin-translate.pipe.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin-translate.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/pipes/plugin-translate/plugin-translate.pipe.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAO,aAAa,EAAC,MAAM,eAAe,CAAC;AAClD,OAAO,EAAgB,UAAU,EAAK,MAAM,MAAM,CAAC;AAGnD,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAE7C,OAAO,EAAC,wBAAwB,EAAC,MAAM,2CAA2C,CAAC;;AAEnF,qBAGa,mBAAoB,YAAW,aAAa;IAErD,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IACzC,OAAO,CAAC,QAAQ,CAAC,aAAa;gBADb,wBAAwB,EAAE,wBAAwB,EAClD,aAAa,EAAE,aAAa;IAG/C,SAAS,CAAC,YAAY,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;yCANrE,mBAAmB;uCAAnB,mBAAmB;CAS/B"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const DOCUMENTEN_API_PLUGIN_LOGO_BASE64 = "data:image/png;base64,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";
|
|
2
|
+
export { DOCUMENTEN_API_PLUGIN_LOGO_BASE64 };
|
|
3
|
+
//# sourceMappingURL=documenten-api-plugin-logo.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"documenten-api-plugin-logo.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/assets/documenten-api-plugin-logo.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,iCAAiC,2pKACmnK,CAAC;AAE3pK,OAAO,EAAC,iCAAiC,EAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/assets/index.ts"],"names":[],"mappings":"AAgBA,cAAc,8BAA8B,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { PluginConfigurationComponent } from '../../../../models';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { DocumentenApiConfig } from '../../models';
|
|
5
|
+
import { PluginManagementService, PluginTranslationService } from '../../../../services';
|
|
6
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DocumentenApiConfigurationComponent implements PluginConfigurationComponent, OnInit, OnDestroy {
|
|
9
|
+
private readonly pluginManagementService;
|
|
10
|
+
private readonly translateService;
|
|
11
|
+
private readonly pluginTranslationService;
|
|
12
|
+
save$: Observable<void>;
|
|
13
|
+
disabled$: Observable<boolean>;
|
|
14
|
+
pluginId: string;
|
|
15
|
+
prefillConfiguration$: Observable<DocumentenApiConfig>;
|
|
16
|
+
valid: EventEmitter<boolean>;
|
|
17
|
+
configuration: EventEmitter<DocumentenApiConfig>;
|
|
18
|
+
private saveSubscription;
|
|
19
|
+
private readonly formValue$;
|
|
20
|
+
private readonly valid$;
|
|
21
|
+
readonly authenticationPluginSelectItems$: Observable<Array<{
|
|
22
|
+
id: string;
|
|
23
|
+
text: string;
|
|
24
|
+
}>>;
|
|
25
|
+
constructor(pluginManagementService: PluginManagementService, translateService: TranslateService, pluginTranslationService: PluginTranslationService);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
formValueChange(formValue: DocumentenApiConfig): void;
|
|
29
|
+
private handleValid;
|
|
30
|
+
private openSaveSubscription;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentenApiConfigurationComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentenApiConfigurationComponent, "valtimo-documenten-api-configuration", never, { "save$": "save$"; "disabled$": "disabled$"; "pluginId": "pluginId"; "prefillConfiguration$": "prefillConfiguration$"; }, { "valid": "valid"; "configuration": "configuration"; }, never, never>;
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=documenten-api-configuration.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"documenten-api-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAC,4BAA4B,EAAC,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAIL,UAAU,EAKX,MAAM,MAAM,CAAC;AACd,OAAO,EAAC,mBAAmB,EAAiB,MAAM,cAAc,CAAC;AACjE,OAAO,EAAC,uBAAuB,EAAE,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;AACvF,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;;AAErD,qBAKa,mCACX,YAAW,4BAA4B,EAAE,MAAM,EAAE,SAAS;IAkCxD,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IACxC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IAlClC,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,CAAC,CAAC;IACtD,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAC3D,aAAa,EAAE,YAAY,CAAC,mBAAmB,CAAC,CAChB;IAE1C,OAAO,CAAC,gBAAgB,CAAgB;IAExC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAyD;IACpF,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAE9D,QAAQ,CAAC,gCAAgC,EAAE,UAAU,CAAC,KAAK,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,CAAC,CAAC,CAgBpF;gBAGe,uBAAuB,EAAE,uBAAuB,EAChD,gBAAgB,EAAE,gBAAgB,EAClC,wBAAwB,EAAE,wBAAwB;IAGrE,QAAQ,IAAI,IAAI;IAIhB,WAAW;IAIX,eAAe,CAAC,SAAS,EAAE,mBAAmB,GAAG,IAAI;IAKrD,OAAO,CAAC,WAAW;IAYnB,OAAO,CAAC,oBAAoB;yCAjEjB,mCAAmC;2CAAnC,mCAAmC;CA4E/C"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FunctionConfigurationComponent } from '../../../../models';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { StoreTempDocumentConfig, DocumentLanguage, DocumentStatus } from '../../models';
|
|
5
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
6
|
+
import { PluginTranslationService } from '../../../../services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class StoreTempDocumentConfigurationComponent implements FunctionConfigurationComponent, OnInit, OnDestroy {
|
|
9
|
+
private readonly translateService;
|
|
10
|
+
private readonly pluginTranslationService;
|
|
11
|
+
save$: Observable<void>;
|
|
12
|
+
disabled$: Observable<boolean>;
|
|
13
|
+
pluginId: string;
|
|
14
|
+
prefillConfiguration$: Observable<StoreTempDocumentConfig>;
|
|
15
|
+
valid: EventEmitter<boolean>;
|
|
16
|
+
configuration: EventEmitter<StoreTempDocumentConfig>;
|
|
17
|
+
readonly LANGUAGE_ITEMS: Array<DocumentLanguage>;
|
|
18
|
+
readonly languageSelectItems$: Observable<Array<{
|
|
19
|
+
id: DocumentLanguage;
|
|
20
|
+
text: string;
|
|
21
|
+
}>>;
|
|
22
|
+
readonly STATUS_ITEMS: Array<DocumentStatus>;
|
|
23
|
+
readonly statusSelectItems$: Observable<Array<{
|
|
24
|
+
id: DocumentStatus;
|
|
25
|
+
text: string;
|
|
26
|
+
}>>;
|
|
27
|
+
private saveSubscription;
|
|
28
|
+
private readonly formValue$;
|
|
29
|
+
private readonly valid$;
|
|
30
|
+
constructor(translateService: TranslateService, pluginTranslationService: PluginTranslationService);
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
formValueChange(formValue: StoreTempDocumentConfig): void;
|
|
34
|
+
private handleValid;
|
|
35
|
+
private openSaveSubscription;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StoreTempDocumentConfigurationComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StoreTempDocumentConfigurationComponent, "valtimo-store-temp-document-configuration", never, { "save$": "save$"; "disabled$": "disabled$"; "pluginId": "pluginId"; "prefillConfiguration$": "prefillConfiguration$"; }, { "valid": "valid"; "configuration": "configuration"; }, never, never>;
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=store-temp-document-configuration.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"store-temp-document-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EACL,8BAA8B,EAI/B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAsC,UAAU,EAAqB,MAAM,MAAM,CAAC;AACzF,OAAO,EAAC,uBAAuB,EAAE,gBAAgB,EAAE,cAAc,EAAC,MAAM,cAAc,CAAC;AACvF,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;;AAE9D,qBAKa,uCACX,YAAW,8BAA8B,EAAE,MAAM,EAAE,SAAS;IAyC1D,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IAxClC,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,UAAU,CAAC,uBAAuB,CAAC,CAAC;IAC1D,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAC3D,aAAa,EAAE,YAAY,CAAC,uBAAuB,CAAC,CAChB;IAE9C,QAAQ,CAAC,cAAc,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAW;IAC3D,QAAQ,CAAC,oBAAoB,EAAE,UAAU,CAAC,KAAK,CAAC;QAAC,EAAE,EAAE,gBAAgB,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,CAAC,CAAC,CAQlF;IACJ,QAAQ,CAAC,YAAY,EAAE,KAAK,CAAC,cAAc,CAAC,CAK1C;IACF,QAAQ,CAAC,kBAAkB,EAAE,UAAU,CAAC,KAAK,CAAC;QAAC,EAAE,EAAE,cAAc,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,CAAC,CAAC,CAQ9E;IAEJ,OAAO,CAAC,gBAAgB,CAAgB;IACxC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAA6D;IACxF,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;gBAG3C,gBAAgB,EAAE,gBAAgB,EAClC,wBAAwB,EAAE,wBAAwB;IAGrE,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,eAAe,CAAC,SAAS,EAAE,uBAAuB,GAAG,IAAI;IAKzD,OAAO,CAAC,WAAW;IAYnB,OAAO,CAAC,oBAAoB;yCAvEjB,uCAAuC;2CAAvC,uCAAuC;CAkFnD"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/documenten-api-configuration/documenten-api-configuration.component";
|
|
3
|
+
import * as i2 from "./components/store-temp-document/store-temp-document-configuration.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
|
|
6
|
+
import * as i5 from "@valtimo/user-interface";
|
|
7
|
+
export declare class DocumentenApiPluginModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentenApiPluginModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentenApiPluginModule, [typeof i1.DocumentenApiConfigurationComponent, typeof i2.StoreTempDocumentConfigurationComponent], [typeof i3.CommonModule, typeof i4.PluginTranslatePipeModule, typeof i5.FormModule, typeof i5.InputModule, typeof i5.SelectModule], [typeof i1.DocumentenApiConfigurationComponent, typeof i2.StoreTempDocumentConfigurationComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentenApiPluginModule>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=documenten-api-plugin.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"documenten-api-plugin.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/documenten-api-plugin.module.ts"],"names":[],"mappings":";;;;;;AAuBA,qBAKa,yBAAyB;yCAAzB,yBAAyB;0CAAzB,yBAAyB;0CAAzB,yBAAyB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"documenten-api-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/documenten-api-plugin.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAKjD,QAAA,MAAM,gCAAgC,EAAE,mBA0FvC,CAAC;AAEF,OAAO,EAAC,gCAAgC,EAAC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PluginConfigurationData } from '../../../models';
|
|
2
|
+
interface DocumentenApiConfig extends PluginConfigurationData {
|
|
3
|
+
url: string;
|
|
4
|
+
bronorganisatie: string;
|
|
5
|
+
authenticationPluginConfiguration: string;
|
|
6
|
+
}
|
|
7
|
+
declare type DocumentLanguage = 'nld';
|
|
8
|
+
declare type DocumentStatus = 'in_bewerking' | 'ter_vaststelling' | 'definitief' | 'gearchiveerd';
|
|
9
|
+
interface StoreTempDocumentConfig {
|
|
10
|
+
localDocumentLocation: string;
|
|
11
|
+
storedDocumentUrl: string;
|
|
12
|
+
taal: DocumentLanguage;
|
|
13
|
+
status: DocumentStatus;
|
|
14
|
+
informatieobjecttype: string;
|
|
15
|
+
}
|
|
16
|
+
export { DocumentenApiConfig, StoreTempDocumentConfig, DocumentLanguage, DocumentStatus };
|
|
17
|
+
//# sourceMappingURL=config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/models/config.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;AAExD,UAAU,mBAAoB,SAAQ,uBAAuB;IAC3D,GAAG,EAAE,MAAM,CAAC;IACZ,eAAe,EAAE,MAAM,CAAC;IACxB,iCAAiC,EAAE,MAAM,CAAC;CAC3C;AAED,aAAK,gBAAgB,GAAG,KAAK,CAAC;AAE9B,aAAK,cAAc,GAAG,cAAc,GAAG,kBAAkB,GAAG,YAAY,GAAG,cAAc,CAAC;AAE1F,UAAU,uBAAuB;IAC/B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,IAAI,EAAE,gBAAgB,CAAC;IACvB,MAAM,EAAE,cAAc,CAAC;IACvB,oBAAoB,EAAE,MAAM,CAAC;CAC9B;AAED,OAAO,EAAC,mBAAmB,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,cAAc,EAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,UAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/assets/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/assets/index.ts"],"names":[],"mappings":"AAgBA,cAAc,yBAAyB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"open-zaak-plugin-logo.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/assets/open-zaak-plugin-logo.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"open-zaak-plugin-logo.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/assets/open-zaak-plugin-logo.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,4BAA4B,2hJACw/I,CAAC;AAE3hJ,OAAO,EAAC,4BAA4B,EAAC,CAAC"}
|
|
@@ -1,19 +1,24 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { PluginConfigurationComponent } from '../../../../models';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { OpenZaakConfig } from '../../models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class OpenZaakConfigurationComponent implements PluginConfigurationComponent {
|
|
7
|
-
clear$: Observable<void>;
|
|
6
|
+
export declare class OpenZaakConfigurationComponent implements PluginConfigurationComponent, OnInit, OnDestroy {
|
|
8
7
|
save$: Observable<void>;
|
|
9
|
-
disabled
|
|
10
|
-
error: boolean;
|
|
8
|
+
disabled$: Observable<boolean>;
|
|
11
9
|
pluginId: string;
|
|
10
|
+
prefillConfiguration$: Observable<OpenZaakConfig>;
|
|
12
11
|
valid: EventEmitter<boolean>;
|
|
13
12
|
configuration: EventEmitter<OpenZaakConfig>;
|
|
13
|
+
private saveSubscription;
|
|
14
|
+
private readonly formValue$;
|
|
15
|
+
private readonly valid$;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
14
18
|
formValueChange(formValue: OpenZaakConfig): void;
|
|
15
19
|
private handleValid;
|
|
20
|
+
private openSaveSubscription;
|
|
16
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<OpenZaakConfigurationComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OpenZaakConfigurationComponent, "valtimo-open-zaak-configuration", never, { "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OpenZaakConfigurationComponent, "valtimo-open-zaak-configuration", never, { "save$": "save$"; "disabled$": "disabled$"; "pluginId": "pluginId"; "prefillConfiguration$": "prefillConfiguration$"; }, { "valid": "valid"; "configuration": "configuration"; }, never, never>;
|
|
18
23
|
}
|
|
19
24
|
//# sourceMappingURL=open-zaak-configuration.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"open-zaak-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"open-zaak-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAC,4BAA4B,EAA0B,MAAM,oBAAoB,CAAC;AACzF,OAAO,EAAiC,UAAU,EAAqB,MAAM,MAAM,CAAC;AAEpF,OAAO,EAAC,cAAc,EAAC,MAAM,cAAc,CAAC;;AAE5C,qBAKa,8BACX,YAAW,4BAA4B,EAAE,MAAM,EAAE,SAAS;IAEjD,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,UAAU,CAAC,cAAc,CAAC,CAAC;IACjD,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAC3D,aAAa,EAAE,YAAY,CAAC,cAAc,CAAC,CAAsC;IAE3F,OAAO,CAAC,gBAAgB,CAAgB;IAExC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAoD;IAC/E,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAE9D,QAAQ,IAAI,IAAI;IAIhB,WAAW;IAIX,eAAe,CAAC,SAAS,EAAE,cAAc,GAAG,IAAI;IAKhD,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,oBAAoB;yCAnCjB,8BAA8B;2CAA9B,8BAA8B;CA8C1C"}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
id?: string;
|
|
4
|
-
url: string;
|
|
1
|
+
import { PluginConfigurationData } from '../../../models';
|
|
2
|
+
interface OpenZaakConfig extends PluginConfigurationData {
|
|
5
3
|
clientId: string;
|
|
6
|
-
|
|
7
|
-
rsin: string;
|
|
8
|
-
catalogusUrl: string;
|
|
4
|
+
clientSecret: string;
|
|
9
5
|
}
|
|
10
6
|
export { OpenZaakConfig };
|
|
11
7
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/models/config.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/models/config.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;AAExD,UAAU,cAAe,SAAQ,uBAAuB;IACtD,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,OAAO,EAAC,cAAc,EAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/models/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,UAAU,CAAC"}
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./components/open-zaak-configuration/open-zaak-configuration.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "./components/set-status-configuration/set-status-configuration.component";
|
|
7
|
-
import * as i6 from "./components/select-zaak-type/select-zaak-type.component";
|
|
8
|
-
import * as i7 from "@angular/common";
|
|
9
|
-
import * as i8 from "@valtimo/user-interface";
|
|
10
|
-
import * as i9 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@valtimo/user-interface";
|
|
5
|
+
import * as i4 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
|
|
11
6
|
export declare class OpenZaakPluginModule {
|
|
12
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<OpenZaakPluginModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OpenZaakPluginModule, [typeof i1.OpenZaakConfigurationComponent
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OpenZaakPluginModule, [typeof i1.OpenZaakConfigurationComponent], [typeof i2.CommonModule, typeof i3.FormModule, typeof i3.InputModule, typeof i4.PluginTranslatePipeModule], [typeof i1.OpenZaakConfigurationComponent]>;
|
|
14
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<OpenZaakPluginModule>;
|
|
15
10
|
}
|
|
16
11
|
//# sourceMappingURL=open-zaak-plugin.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"open-zaak-plugin.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/open-zaak-plugin.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"open-zaak-plugin.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/open-zaak-plugin.module.ts"],"names":[],"mappings":";;;;;AAuBA,qBAKa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"open-zaak-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/open-zaak-plugin.specification.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"open-zaak-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/open-zaak/open-zaak-plugin.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAIjD,QAAA,MAAM,2BAA2B,EAAE,mBA8BlC,CAAC;AAEF,OAAO,EAAC,2BAA2B,EAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/assets/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/assets/index.ts"],"names":[],"mappings":"AAgBA,cAAc,+BAA+B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smart-documents-plugin-logo.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/assets/smart-documents-plugin-logo.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"smart-documents-plugin-logo.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/assets/smart-documents-plugin-logo.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,kCAAkC,+2XACs0X,CAAC;AAE/2X,OAAO,EAAC,kCAAkC,EAAC,CAAC"}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import {
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FunctionConfigurationComponent } from '../../../../models';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { DocumentFormat, GenerateDocumentConfig } from '../../models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class GenerateDocumentConfigurationComponent implements
|
|
7
|
-
clear$: Observable<void>;
|
|
6
|
+
export declare class GenerateDocumentConfigurationComponent implements FunctionConfigurationComponent, OnInit, OnDestroy {
|
|
8
7
|
save$: Observable<void>;
|
|
9
|
-
disabled
|
|
10
|
-
error: boolean;
|
|
8
|
+
disabled$: Observable<boolean>;
|
|
11
9
|
pluginId: string;
|
|
10
|
+
prefillConfiguration$: Observable<GenerateDocumentConfig>;
|
|
12
11
|
valid: EventEmitter<boolean>;
|
|
13
12
|
configuration: EventEmitter<GenerateDocumentConfig>;
|
|
14
13
|
readonly FORMATS: Array<DocumentFormat>;
|
|
@@ -16,9 +15,15 @@ export declare class GenerateDocumentConfigurationComponent implements PluginCon
|
|
|
16
15
|
id: string;
|
|
17
16
|
text: string;
|
|
18
17
|
}>;
|
|
18
|
+
private saveSubscription;
|
|
19
|
+
private readonly formValue$;
|
|
20
|
+
private readonly valid$;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
19
23
|
formValueChange(formValue: GenerateDocumentConfig): void;
|
|
20
24
|
private handleValid;
|
|
25
|
+
private openSaveSubscription;
|
|
21
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenerateDocumentConfigurationComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenerateDocumentConfigurationComponent, "valtimo-generate-document-configuration", never, { "
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenerateDocumentConfigurationComponent, "valtimo-generate-document-configuration", never, { "save$": "save$"; "disabled$": "disabled$"; "pluginId": "pluginId"; "prefillConfiguration$": "prefillConfiguration$"; }, { "valid": "valid"; "configuration": "configuration"; }, never, never>;
|
|
23
28
|
}
|
|
24
29
|
//# sourceMappingURL=generate-document-configuration.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate-document-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"generate-document-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EACL,8BAA8B,EAI/B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAiC,UAAU,EAAqB,MAAM,MAAM,CAAC;AACpF,OAAO,EAAC,cAAc,EAAE,sBAAsB,EAAuB,MAAM,cAAc,CAAC;;AAE1F,qBAKa,sCACX,YAAW,8BAA8B,EAAE,MAAM,EAAE,SAAS;IAEnD,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,UAAU,CAAC,sBAAsB,CAAC,CAAC;IACzD,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAC3D,aAAa,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAChB;IAE7C,QAAQ,CAAC,OAAO,EAAE,KAAK,CAAC,cAAc,CAAC,CAAkC;IACzE,QAAQ,CAAC,mBAAmB,EAAE,KAAK,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,CAAC,CAG3D;IAEJ,OAAO,CAAC,gBAAgB,CAAgB;IACxC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAA4D;IACvF,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAE9D,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,eAAe,CAAC,SAAS,EAAE,sBAAsB,GAAG,IAAI;IAKxD,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,oBAAoB;yCA/CjB,sCAAsC;2CAAtC,sCAAsC;CA0DlD"}
|
|
@@ -1,19 +1,24 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { PluginConfigurationComponent } from '../../../../models';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { SmartDocumentsConfig } from '../../models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SmartDocumentsConfigurationComponent implements PluginConfigurationComponent {
|
|
7
|
-
clear$: Observable<void>;
|
|
6
|
+
export declare class SmartDocumentsConfigurationComponent implements PluginConfigurationComponent, OnInit, OnDestroy {
|
|
8
7
|
save$: Observable<void>;
|
|
9
|
-
disabled
|
|
10
|
-
error: boolean;
|
|
8
|
+
disabled$: Observable<boolean>;
|
|
11
9
|
pluginId: string;
|
|
10
|
+
prefillConfiguration$: Observable<SmartDocumentsConfig>;
|
|
12
11
|
valid: EventEmitter<boolean>;
|
|
13
12
|
configuration: EventEmitter<SmartDocumentsConfig>;
|
|
13
|
+
private saveSubscription;
|
|
14
|
+
private readonly formValue$;
|
|
15
|
+
private readonly valid$;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
14
18
|
formValueChange(formValue: SmartDocumentsConfig): void;
|
|
15
19
|
private handleValid;
|
|
20
|
+
private openSaveSubscription;
|
|
16
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartDocumentsConfigurationComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartDocumentsConfigurationComponent, "valtimo-smart-documents-configuration", never, { "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartDocumentsConfigurationComponent, "valtimo-smart-documents-configuration", never, { "save$": "save$"; "disabled$": "disabled$"; "pluginId": "pluginId"; "prefillConfiguration$": "prefillConfiguration$"; }, { "valid": "valid"; "configuration": "configuration"; }, never, never>;
|
|
18
23
|
}
|
|
19
24
|
//# sourceMappingURL=smart-documents-configuration.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smart-documents-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"smart-documents-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAC,4BAA4B,EAAC,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAAiC,UAAU,EAA0B,MAAM,MAAM,CAAC;AACzF,OAAO,EAAC,oBAAoB,EAAC,MAAM,cAAc,CAAC;;AAElD,qBAKa,oCACX,YAAW,4BAA4B,EAAE,MAAM,EAAE,SAAS;IAEjD,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,UAAU,CAAC,oBAAoB,CAAC,CAAC;IACvD,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAC3D,aAAa,EAAE,YAAY,CAAC,oBAAoB,CAAC,CAChB;IAE3C,OAAO,CAAC,gBAAgB,CAAgB;IAExC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAA0D;IACrF,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAE9D,QAAQ,IAAI,IAAI;IAIhB,WAAW;IAIX,eAAe,CAAC,SAAS,EAAE,oBAAoB,GAAG,IAAI;IAKtD,OAAO,CAAC,WAAW;IAYnB,OAAO,CAAC,oBAAoB;yCAzCjB,oCAAoC;2CAApC,oCAAoC;CAoDhD"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { PluginConfigurationData } from '../../../models';
|
|
2
|
+
interface SmartDocumentsConfig extends PluginConfigurationData {
|
|
3
3
|
url: string;
|
|
4
4
|
username: string;
|
|
5
5
|
password: string;
|
|
@@ -8,6 +8,7 @@ declare type DocumentFormat = 'DOCX' | 'PDF' | 'XML' | 'HTML';
|
|
|
8
8
|
interface GenerateDocumentConfig {
|
|
9
9
|
templateGroup: string;
|
|
10
10
|
templateName: string;
|
|
11
|
+
resultingDocumentProcessVariableName: string;
|
|
11
12
|
format: DocumentFormat;
|
|
12
13
|
templateData: Array<{
|
|
13
14
|
key: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/models/config.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/models/config.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;AAExD,UAAU,oBAAqB,SAAQ,uBAAuB;IAC5D,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,aAAK,cAAc,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,CAAC;AAEtD,UAAU,sBAAsB;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,oCAAoC,EAAE,MAAM,CAAC;IAC7C,MAAM,EAAE,cAAc,CAAC;IACvB,YAAY,EAAE,KAAK,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC,CAAC,CAAC;CACnD;AAED,OAAO,EAAC,oBAAoB,EAAE,sBAAsB,EAAE,cAAc,EAAC,CAAC"}
|