@valtimo/plugin 11.1.5 → 11.2.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/esm2022/lib/components/default-plugin-configuration/default-plugin-configuration.component.mjs +73 -0
- package/esm2022/lib/components/default-plugin-configuration/default-plugin-configuration.module.mjs +53 -0
- package/esm2022/lib/components/plugin-configuration-container/plugin-configuration-container.component.mjs +25 -8
- package/esm2022/lib/components/plugin-configuration-container/plugin-configuration-container.module.mjs +5 -4
- package/esm2022/lib/models/plugin.mjs +1 -1
- package/esm2022/lib/plugins/documenten-api/components/download-document/download-document-configuration.component.mjs +24 -6
- package/esm2022/lib/plugins/documenten-api/documenten-api-plugin.specification.mjs +4 -1
- package/esm2022/lib/plugins/documenten-api/models/config.mjs +1 -1
- package/esm2022/lib/plugins/object-token-authentication/components/object-token-authentication-configuration/object-token-authencation-configuration.component.mjs +2 -2
- package/esm2022/lib/plugins/smart-documents/components/get-template-names/get-template-names.component.mjs +74 -0
- package/esm2022/lib/plugins/smart-documents/models/config.mjs +1 -1
- package/esm2022/lib/plugins/smart-documents/smart-documents-plugin.module.mjs +17 -5
- package/esm2022/lib/plugins/smart-documents/smart-documents-plugin.specification.mjs +19 -8
- package/esm2022/lib/plugins/verzoek/components/verzoek-configuration/verzoek-configuration.component.mjs +3 -3
- package/esm2022/lib/services/plugin-management.service.mjs +3 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/valtimo-plugin.mjs +267 -28
- package/fesm2022/valtimo-plugin.mjs.map +1 -1
- package/lib/components/default-plugin-configuration/default-plugin-configuration.component.d.ts +22 -0
- package/lib/components/default-plugin-configuration/default-plugin-configuration.component.d.ts.map +1 -0
- package/lib/components/default-plugin-configuration/default-plugin-configuration.module.d.ts +12 -0
- package/lib/components/default-plugin-configuration/default-plugin-configuration.module.d.ts.map +1 -0
- package/lib/components/plugin-configuration-container/plugin-configuration-container.component.d.ts +6 -1
- package/lib/components/plugin-configuration-container/plugin-configuration-container.component.d.ts.map +1 -1
- package/lib/components/plugin-configuration-container/plugin-configuration-container.module.d.ts +2 -1
- package/lib/components/plugin-configuration-container/plugin-configuration-container.module.d.ts.map +1 -1
- package/lib/models/plugin.d.ts +6 -1
- package/lib/models/plugin.d.ts.map +1 -1
- package/lib/plugins/documenten-api/components/download-document/download-document-configuration.component.d.ts +7 -2
- package/lib/plugins/documenten-api/components/download-document/download-document-configuration.component.d.ts.map +1 -1
- package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/documenten-api/models/config.d.ts +3 -0
- package/lib/plugins/documenten-api/models/config.d.ts.map +1 -1
- package/lib/plugins/smart-documents/components/get-template-names/get-template-names.component.d.ts +24 -0
- package/lib/plugins/smart-documents/components/get-template-names/get-template-names.component.d.ts.map +1 -0
- package/lib/plugins/smart-documents/models/config.d.ts +5 -1
- package/lib/plugins/smart-documents/models/config.d.ts.map +1 -1
- package/lib/plugins/smart-documents/smart-documents-plugin.module.d.ts +5 -4
- 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/services/plugin-management.service.d.ts +1 -1
- package/lib/services/plugin-management.service.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
package/lib/components/default-plugin-configuration/default-plugin-configuration.component.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DefaultPluginConfigurationData } from '../../models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DefaultPluginConfigurationComponent implements OnInit, OnDestroy {
|
|
6
|
+
save$: Observable<void>;
|
|
7
|
+
disabled$: Observable<boolean>;
|
|
8
|
+
prefillConfiguration$: Observable<any>;
|
|
9
|
+
valid: EventEmitter<boolean>;
|
|
10
|
+
configuration: EventEmitter<DefaultPluginConfigurationData>;
|
|
11
|
+
private saveSubscription;
|
|
12
|
+
private readonly formValue$;
|
|
13
|
+
private readonly valid$;
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
formValueChange(formValue: DefaultPluginConfigurationData): void;
|
|
17
|
+
private handleValid;
|
|
18
|
+
private openSaveSubscription;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultPluginConfigurationComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DefaultPluginConfigurationComponent, "valtimo-default-plugin-configuration", never, { "save$": { "alias": "save$"; "required": false; }; "disabled$": { "alias": "disabled$"; "required": false; }; "prefillConfiguration$": { "alias": "prefillConfiguration$"; "required": false; }; }, { "valid": "valid"; "configuration": "configuration"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=default-plugin-configuration.component.d.ts.map
|
package/lib/components/default-plugin-configuration/default-plugin-configuration.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-plugin-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/components/default-plugin-configuration/default-plugin-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAiC,UAAU,EAAqB,MAAM,MAAM,CAAC;AACpF,OAAO,EAAC,8BAA8B,EAAC,MAAM,cAAc,CAAC;;AAG5D,qBAKa,mCAAoC,YAAW,MAAM,EAAE,SAAS;IAClE,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,8BAA8B,CAAC,CAChB;IAErD,OAAO,CAAC,gBAAgB,CAAgB;IACxC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAoE;IAC/F,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAE9D,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,eAAe,CAAC,SAAS,EAAE,8BAA8B,GAAG,IAAI;IAKhE,OAAO,CAAC,WAAW;IAMnB,OAAO,CAAC,oBAAoB;yCA/BjB,mCAAmC;2CAAnC,mCAAmC;CA0C/C"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./default-plugin-configuration.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@valtimo/components";
|
|
5
|
+
import * as i4 from "@ngx-translate/core";
|
|
6
|
+
import * as i5 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
|
|
7
|
+
export declare class DefaultPluginConfigurationModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultPluginConfigurationModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DefaultPluginConfigurationModule, [typeof i1.DefaultPluginConfigurationComponent], [typeof i2.CommonModule, typeof i3.ParagraphModule, typeof i4.TranslateModule, typeof i5.PluginTranslatePipeModule, typeof i3.FormModule, typeof i3.InputModule], [typeof i1.DefaultPluginConfigurationComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DefaultPluginConfigurationModule>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=default-plugin-configuration.module.d.ts.map
|
package/lib/components/default-plugin-configuration/default-plugin-configuration.module.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-plugin-configuration.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/components/default-plugin-configuration/default-plugin-configuration.module.ts"],"names":[],"mappings":";;;;;;AAuBA,qBAYa,gCAAgC;yCAAhC,gCAAgC;0CAAhC,gCAAgC;0CAAhC,gCAAgC;CAAG"}
|
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, FunctionConfigurationComponent, PluginConfigurationComponent, PluginConfigurationData } from '../../models';
|
|
4
|
+
import { ConfigurationComponentType, DefaultPluginConfigurationData, 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;
|
|
@@ -23,9 +23,14 @@ export declare class PluginConfigurationContainerComponent implements OnInit, On
|
|
|
23
23
|
private readonly _componentType;
|
|
24
24
|
private readonly _pluginDefinitionKey;
|
|
25
25
|
private readonly _functionKey;
|
|
26
|
+
private readonly _defaultConfiguration;
|
|
27
|
+
private readonly _validDefaultConfiguration;
|
|
28
|
+
readonly isTypeConfiguration$: Observable<boolean>;
|
|
26
29
|
constructor(pluginService: PluginService);
|
|
27
30
|
ngOnInit(): void;
|
|
28
31
|
ngOnDestroy(): void;
|
|
32
|
+
onDefaultConfiguration(defaultConfiguration: DefaultPluginConfigurationData): void;
|
|
33
|
+
onValidDefaultConfiguration(valid: boolean): void;
|
|
29
34
|
private openPluginSubscription;
|
|
30
35
|
private openComponentInstanceSubscription;
|
|
31
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<PluginConfigurationContainerComponent, never>;
|
|
@@ -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,8BAA8B,EAC9B,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,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,EAC9B,8BAA8B,EAC9B,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;;AAGtB,qBAKa,qCACX,YAAW,MAAM,EAAE,SAAS,EAAE,IAAI,CAAC,4BAA4B,EAAE,UAAU,CAAC;IA2ChE,OAAO,CAAC,QAAQ,CAAC,aAAa;IAxCnC,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;IAChE,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAC6B;IACnE,OAAO,CAAC,QAAQ,CAAC,0BAA0B,CAAsC;IAEjF,QAAQ,CAAC,oBAAoB,EAAE,UAAU,CAAC,OAAO,CAAC,CAGhD;gBAE2B,aAAa,EAAE,aAAa;IAEzD,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAKnB,sBAAsB,CAAC,oBAAoB,EAAE,8BAA8B;IAI3E,2BAA2B,CAAC,KAAK,EAAE,OAAO;IAI1C,OAAO,CAAC,sBAAsB;IAuC9B,OAAO,CAAC,iCAAiC;yCAvG9B,qCAAqC;2CAArC,qCAAqC;CA2IjD"}
|
package/lib/components/plugin-configuration-container/plugin-configuration-container.module.d.ts
CHANGED
|
@@ -3,9 +3,10 @@ import * as i1 from "./plugin-configuration-container.component";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@valtimo/components";
|
|
5
5
|
import * as i4 from "@ngx-translate/core";
|
|
6
|
+
import * as i5 from "../default-plugin-configuration/default-plugin-configuration.module";
|
|
6
7
|
export declare class PluginConfigurationContainerModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<PluginConfigurationContainerModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PluginConfigurationContainerModule, [typeof i1.PluginConfigurationContainerComponent], [typeof i2.CommonModule, typeof i3.ParagraphModule, typeof i4.TranslateModule], [typeof i1.PluginConfigurationContainerComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PluginConfigurationContainerModule, [typeof i1.PluginConfigurationContainerComponent], [typeof i2.CommonModule, typeof i3.ParagraphModule, typeof i4.TranslateModule, typeof i5.DefaultPluginConfigurationModule], [typeof i1.PluginConfigurationContainerComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<PluginConfigurationContainerModule>;
|
|
10
11
|
}
|
|
11
12
|
//# sourceMappingURL=plugin-configuration-container.module.d.ts.map
|
package/lib/components/plugin-configuration-container/plugin-configuration-container.module.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-configuration-container.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/components/plugin-configuration-container/plugin-configuration-container.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin-configuration-container.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/components/plugin-configuration-container/plugin-configuration-container.module.ts"],"names":[],"mappings":";;;;;;AAuBA,qBAKa,kCAAkC;yCAAlC,kCAAkC;0CAAlC,kCAAkC;0CAAlC,kCAAkC;CAAG"}
|
package/lib/models/plugin.d.ts
CHANGED
|
@@ -2,9 +2,13 @@ import { EventEmitter, Type } from '@angular/core';
|
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
4
4
|
interface PluginConfigurationData {
|
|
5
|
+
configurationId: string;
|
|
5
6
|
configurationTitle: string;
|
|
6
7
|
[key: string]: any;
|
|
7
8
|
}
|
|
9
|
+
interface DefaultPluginConfigurationData {
|
|
10
|
+
configurationId: string;
|
|
11
|
+
}
|
|
8
12
|
interface FunctionConfigurationData {
|
|
9
13
|
[key: string]: any;
|
|
10
14
|
}
|
|
@@ -51,6 +55,7 @@ interface PluginConfiguration {
|
|
|
51
55
|
definitionKey?: string;
|
|
52
56
|
pluginDefinition?: PluginDefinition;
|
|
53
57
|
id?: string;
|
|
58
|
+
newId?: string;
|
|
54
59
|
title: string;
|
|
55
60
|
properties: object;
|
|
56
61
|
}
|
|
@@ -62,5 +67,5 @@ interface PluginFunction {
|
|
|
62
67
|
key: string;
|
|
63
68
|
title?: string;
|
|
64
69
|
}
|
|
65
|
-
export { PluginSpecification, PluginConfig, PluginConfigurationComponent, ConfigurationComponentType, PluginConfigurationData, FunctionConfigurationComponent, FunctionConfigurationData, PluginConfiguration, PluginDefinition, PluginFunction, PluginDefinitionWithLogo, PluginConfigurationWithLogo, };
|
|
70
|
+
export { PluginSpecification, PluginConfig, PluginConfigurationComponent, ConfigurationComponentType, PluginConfigurationData, DefaultPluginConfigurationData, FunctionConfigurationComponent, FunctionConfigurationData, PluginConfiguration, PluginDefinition, PluginFunction, PluginDefinitionWithLogo, PluginConfigurationWithLogo, };
|
|
66
71
|
//# 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":"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,KAAK,YAAY,GAAG,KAAK,CAAC,mBAAmB,CAAC,CAAC;AAE/C,KAAK,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"}
|
|
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,eAAe,EAAE,MAAM,CAAC;IACxB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,UAAU,8BAA8B;IACtC,eAAe,EAAE,MAAM,CAAC;CACzB;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,KAAK,YAAY,GAAG,KAAK,CAAC,mBAAmB,CAAC,CAAC;AAE/C,KAAK,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,CAAC,EAAE,MAAM,CAAC;IACf,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,8BAA8B,EAC9B,yBAAyB,EACzB,mBAAmB,EACnB,gBAAgB,EAChB,cAAc,EACd,wBAAwB,EACxB,2BAA2B,GAC5B,CAAC"}
|
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { FunctionConfigurationComponent } from '../../../../models';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
+
import { DownloadDocumentConfig } from '../../models';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DownloadDocumentConfigurationComponent implements FunctionConfigurationComponent, OnInit, OnDestroy {
|
|
6
7
|
save$: Observable<void>;
|
|
7
8
|
disabled$: Observable<boolean>;
|
|
8
9
|
pluginId: string;
|
|
9
|
-
prefillConfiguration$: Observable<
|
|
10
|
+
prefillConfiguration$: Observable<DownloadDocumentConfig>;
|
|
10
11
|
valid: EventEmitter<boolean>;
|
|
11
|
-
configuration: EventEmitter<
|
|
12
|
+
configuration: EventEmitter<DownloadDocumentConfig>;
|
|
12
13
|
private saveSubscription;
|
|
14
|
+
private readonly formValue$;
|
|
15
|
+
private readonly valid$;
|
|
13
16
|
ngOnInit(): void;
|
|
14
17
|
ngOnDestroy(): void;
|
|
15
18
|
private openSaveSubscription;
|
|
19
|
+
formValueChange(formValue: DownloadDocumentConfig): void;
|
|
20
|
+
private handleValid;
|
|
16
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadDocumentConfigurationComponent, never>;
|
|
17
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<DownloadDocumentConfigurationComponent, "valtimo-download-document-configuration", never, { "save$": { "alias": "save$"; "required": false; }; "disabled$": { "alias": "disabled$"; "required": false; }; "pluginId": { "alias": "pluginId"; "required": false; }; "prefillConfiguration$": { "alias": "prefillConfiguration$"; "required": false; }; }, { "valid": "valid"; "configuration": "configuration"; }, never, never, false, never>;
|
|
18
23
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"download-document-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/components/download-document/download-document-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAC,8BAA8B,EAAC,MAAM,oBAAoB,CAAC;AAClE,OAAO,
|
|
1
|
+
{"version":3,"file":"download-document-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/documenten-api/components/download-document/download-document-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAC,8BAA8B,EAAC,MAAM,oBAAoB,CAAC;AAClE,OAAO,EAAiC,UAAU,EAAqB,MAAM,MAAM,CAAC;AACpF,OAAO,EAAC,sBAAsB,EAAC,MAAM,cAAc,CAAC;;AAEpD,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,OAAO,CAAC,gBAAgB,CAAgB;IACxC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAA4D;IACvF,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAE9D,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAInB,OAAO,CAAC,oBAAoB;IAY5B,eAAe,CAAC,SAAS,EAAE,sBAAsB,GAAG,IAAI;IAKxD,OAAO,CAAC,WAAW;yCAzCR,sCAAsC;2CAAtC,sCAAsC;CA+ClD"}
|
|
@@ -1 +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;AAOjD,QAAA,MAAM,gCAAgC,EAAE,
|
|
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;AAOjD,QAAA,MAAM,gCAAgC,EAAE,mBA4LvC,CAAC;AAEF,OAAO,EAAC,gCAAgC,EAAC,CAAC"}
|
|
@@ -18,5 +18,8 @@ interface StoreTempDocumentConfig {
|
|
|
18
18
|
status: DocumentStatus;
|
|
19
19
|
informatieobjecttype: string;
|
|
20
20
|
}
|
|
21
|
+
export interface DownloadDocumentConfig {
|
|
22
|
+
processVariableName: string;
|
|
23
|
+
}
|
|
21
24
|
export { DocumentenApiConfig, StoreTempDocumentConfig, ConfidentialityLevel, DocumentLanguage, DocumentStatus, };
|
|
22
25
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -1 +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,KAAK,oBAAoB,GACrB,UAAU,GACV,kBAAkB,GAClB,QAAQ,GACR,mBAAmB,GACnB,eAAe,GACf,eAAe,GACf,QAAQ,GACR,aAAa,CAAC;AAElB,KAAK,gBAAgB,GAAG,KAAK,CAAC;AAE9B,KAAK,cAAc,GAAG,cAAc,GAAG,kBAAkB,GAAG,YAAY,GAAG,cAAc,CAAC;AAE1F,UAAU,uBAAuB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,oBAAoB,EAAE,oBAAoB,CAAC;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,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,EACL,mBAAmB,EACnB,uBAAuB,EACvB,oBAAoB,EACpB,gBAAgB,EAChB,cAAc,GACf,CAAC"}
|
|
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,KAAK,oBAAoB,GACrB,UAAU,GACV,kBAAkB,GAClB,QAAQ,GACR,mBAAmB,GACnB,eAAe,GACf,eAAe,GACf,QAAQ,GACR,aAAa,CAAC;AAElB,KAAK,gBAAgB,GAAG,KAAK,CAAC;AAE9B,KAAK,cAAc,GAAG,cAAc,GAAG,kBAAkB,GAAG,YAAY,GAAG,cAAc,CAAC;AAE1F,UAAU,uBAAuB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,oBAAoB,EAAE,oBAAoB,CAAC;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,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,MAAM,WAAW,sBAAsB;IACrC,mBAAmB,EAAE,MAAM,CAAC;CAC7B;AAED,OAAO,EACL,mBAAmB,EACnB,uBAAuB,EACvB,oBAAoB,EACpB,gBAAgB,EAChB,cAAc,GACf,CAAC"}
|
package/lib/plugins/smart-documents/components/get-template-names/get-template-names.component.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { GetTemplateNamesConfig } from "../../models";
|
|
4
|
+
import { FunctionConfigurationComponent } from "../../../../models";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class GetTemplateNamesComponent implements FunctionConfigurationComponent, OnInit, OnDestroy {
|
|
7
|
+
save$: Observable<void>;
|
|
8
|
+
disabled$: Observable<boolean>;
|
|
9
|
+
pluginId: string;
|
|
10
|
+
prefillConfiguration$: Observable<GetTemplateNamesConfig>;
|
|
11
|
+
configuration: EventEmitter<GetTemplateNamesConfig>;
|
|
12
|
+
valid: EventEmitter<boolean>;
|
|
13
|
+
private readonly formValue$;
|
|
14
|
+
private saveSubscription;
|
|
15
|
+
private readonly valid$;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
formValueChange(formValue: GetTemplateNamesConfig): void;
|
|
19
|
+
private handleValid;
|
|
20
|
+
private openSaveSubscription;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetTemplateNamesComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GetTemplateNamesComponent, "valtimo-get-template-names", never, { "save$": { "alias": "save$"; "required": false; }; "disabled$": { "alias": "disabled$"; "required": false; }; "pluginId": { "alias": "pluginId"; "required": false; }; "prefillConfiguration$": { "alias": "prefillConfiguration$"; "required": false; }; }, { "configuration": "configuration"; "valid": "valid"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=get-template-names.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-template-names.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/components/get-template-names/get-template-names.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAiC,UAAU,EAAqB,MAAM,MAAM,CAAC;AACpF,OAAO,EAAC,sBAAsB,EAAG,MAAM,cAAc,CAAC;AACtD,OAAO,EAAC,8BAA8B,EAAC,MAAM,oBAAoB,CAAA;;AACjE,qBAIa,yBACX,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,aAAa,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAChB;IACnC,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAGrE,OAAO,CAAC,QAAQ,CAAC,UAAU,CAA4D;IACvF,OAAO,CAAC,gBAAgB,CAAgB;IACxC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAE9D,QAAQ,IAAI,IAAI;IAIhB,WAAW;IAIX,eAAe,CAAC,SAAS,EAAE,sBAAsB,GAAG,IAAI;IAKxD,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,oBAAoB;yCApCjB,yBAAyB;2CAAzB,yBAAyB;CA+CrC"}
|
|
@@ -15,5 +15,9 @@ interface GenerateDocumentConfig {
|
|
|
15
15
|
value: string;
|
|
16
16
|
}>;
|
|
17
17
|
}
|
|
18
|
-
|
|
18
|
+
interface GetTemplateNamesConfig {
|
|
19
|
+
templateGroupName: string;
|
|
20
|
+
resultingTemplateNameListProcessVariableName: string;
|
|
21
|
+
}
|
|
22
|
+
export { SmartDocumentsConfig, GenerateDocumentConfig, GetTemplateNamesConfig, DocumentFormat };
|
|
19
23
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
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,KAAK,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,
|
|
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,KAAK,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,UAAU,sBAAsB;IAC9B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,4CAA4C,EAAE,MAAM,CAAC;CACtD;AAED,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EACtB,sBAAsB,EACtB,cAAc,EACf,CAAC"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./components/smart-documents-configuration/smart-documents-configuration.component";
|
|
3
3
|
import * as i2 from "./components/generate-document-configuration/generate-document-configuration.component";
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "
|
|
4
|
+
import * as i3 from "./components/get-template-names/get-template-names.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
|
|
7
|
+
import * as i6 from "@valtimo/components";
|
|
7
8
|
export declare class SmartDocumentsPluginModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartDocumentsPluginModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartDocumentsPluginModule, [typeof i1.SmartDocumentsConfigurationComponent, typeof i2.GenerateDocumentConfigurationComponent], [typeof
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartDocumentsPluginModule, [typeof i1.SmartDocumentsConfigurationComponent, typeof i2.GenerateDocumentConfigurationComponent, typeof i3.GetTemplateNamesComponent], [typeof i4.CommonModule, typeof i5.PluginTranslatePipeModule, typeof i6.FormModule, typeof i6.InputModule, typeof i6.SelectModule, typeof i6.CarbonMultiInputModule, typeof i6.ParagraphModule], [typeof i1.SmartDocumentsConfigurationComponent, typeof i2.GenerateDocumentConfigurationComponent, typeof i3.GetTemplateNamesComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartDocumentsPluginModule>;
|
|
11
12
|
}
|
|
12
13
|
//# sourceMappingURL=smart-documents-plugin.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smart-documents-plugin.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"smart-documents-plugin.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.module.ts"],"names":[],"mappings":";;;;;;;AA8BA,qBAoBa,0BAA0B;yCAA1B,0BAA0B;0CAA1B,0BAA0B;0CAA1B,0BAA0B;CAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smart-documents-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"smart-documents-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAMjD,QAAA,MAAM,iCAAiC,EAAE,mBAsFxC,CAAC;AAEF,OAAO,EAAC,iCAAiC,EAAC,CAAC"}
|
|
@@ -20,7 +20,7 @@ export declare class PluginManagementService {
|
|
|
20
20
|
getPluginConfigurationsWithActionsForActivityType(activityType: string): Observable<Array<PluginConfiguration>>;
|
|
21
21
|
getAllPluginConfigurationsWithLogos(activityType?: string): Observable<Array<PluginConfigurationWithLogo>>;
|
|
22
22
|
savePluginConfiguration(pluginConfiguration: PluginConfiguration): Observable<PluginConfiguration>;
|
|
23
|
-
updatePluginConfiguration(configurationId: string, configurationTitle: string, configurationProperties: object): Observable<PluginConfiguration>;
|
|
23
|
+
updatePluginConfiguration(configurationId: string, newConfigurationId: string, configurationTitle: string, configurationProperties: object): Observable<PluginConfiguration>;
|
|
24
24
|
deletePluginConfiguration(configurationId: string): Observable<void>;
|
|
25
25
|
private returnPluginConfigurationsWithLogos;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<PluginManagementService, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-management.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/services/plugin-management.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAgB,UAAU,EAAC,MAAM,MAAM,CAAC;AAC/C,OAAO,EACL,mBAAmB,EACnB,2BAA2B,EAC3B,gBAAgB,EAChB,cAAc,EACf,MAAM,WAAW,CAAC;AACnB,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAE9C,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;;AAEvD,qBAGa,uBAAuB;IAIhC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,IAAI;IANvB,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAoD;gBAG1E,aAAa,EAAE,aAAa,EAC5B,aAAa,EAAE,aAAa,EAC5B,SAAS,EAAE,YAAY,EACvB,IAAI,EAAE,UAAU;IAGnC,oBAAoB,IAAI,UAAU,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAM3D,kBAAkB,CAAC,kBAAkB,EAAE,MAAM,GAAG,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;IAMjF,0BAA0B,IAAI,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAMpE,4CAA4C,CAC1C,mBAAmB,EAAE,MAAM,GAC1B,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAMzC,iCAAiC,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAM7F,iDAAiD,CAC/C,YAAY,EAAE,MAAM,GACnB,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAMzC,mCAAmC,CACjC,YAAY,CAAC,EAAE,MAAM,GACpB,UAAU,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;IAQjD,uBAAuB,CACrB,mBAAmB,EAAE,mBAAmB,GACvC,UAAU,CAAC,mBAAmB,CAAC;IAOlC,yBAAyB,CACvB,eAAe,EAAE,MAAM,EACvB,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM,GAC9B,UAAU,CAAC,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin-management.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/services/plugin-management.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAgB,UAAU,EAAC,MAAM,MAAM,CAAC;AAC/C,OAAO,EACL,mBAAmB,EACnB,2BAA2B,EAC3B,gBAAgB,EAChB,cAAc,EACf,MAAM,WAAW,CAAC;AACnB,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAE9C,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;;AAEvD,qBAGa,uBAAuB;IAIhC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,IAAI;IANvB,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAoD;gBAG1E,aAAa,EAAE,aAAa,EAC5B,aAAa,EAAE,aAAa,EAC5B,SAAS,EAAE,YAAY,EACvB,IAAI,EAAE,UAAU;IAGnC,oBAAoB,IAAI,UAAU,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAM3D,kBAAkB,CAAC,kBAAkB,EAAE,MAAM,GAAG,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;IAMjF,0BAA0B,IAAI,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAMpE,4CAA4C,CAC1C,mBAAmB,EAAE,MAAM,GAC1B,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAMzC,iCAAiC,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAM7F,iDAAiD,CAC/C,YAAY,EAAE,MAAM,GACnB,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAMzC,mCAAmC,CACjC,YAAY,CAAC,EAAE,MAAM,GACpB,UAAU,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;IAQjD,uBAAuB,CACrB,mBAAmB,EAAE,mBAAmB,GACvC,UAAU,CAAC,mBAAmB,CAAC;IAOlC,yBAAyB,CACvB,eAAe,EAAE,MAAM,EACvB,kBAAkB,EAAE,MAAM,EAC1B,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM,GAC9B,UAAU,CAAC,mBAAmB,CAAC;IAWlC,yBAAyB,CAAC,eAAe,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAMpE,OAAO,CAAC,mCAAmC;yCA3FhC,uBAAuB;6CAAvB,uBAAuB;CAkHnC"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export * from './lib/plugins/smart-documents/smart-documents-plugin.module';
|
|
|
14
14
|
export * from './lib/plugins/smart-documents/smart-documents-plugin.specification';
|
|
15
15
|
export * from './lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component';
|
|
16
16
|
export * from './lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component';
|
|
17
|
+
export * from './lib/plugins/smart-documents/components/get-template-names/get-template-names.component';
|
|
17
18
|
export * from './lib/plugins/documenten-api/documenten-api-plugin.module';
|
|
18
19
|
export * from './lib/plugins/documenten-api/documenten-api-plugin.specification';
|
|
19
20
|
export * from './lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component';
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/plugin/src/public-api.ts"],"names":[],"mappings":"AAoBA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAEhC,cAAc,0FAA0F,CAAC;AACzG,cAAc,uFAAuF,CAAC;AAEtG,cAAc,iDAAiD,CAAC;AAChE,cAAc,8FAA8F,CAAC;AAC7G,cAAc,wDAAwD,CAAC;AAEvE,cAAc,qFAAqF,CAAC;AACpG,cAAc,4FAA4F,CAAC;AAC3G,cAAc,kJAAkJ,CAAC;AAEjK,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAC/H,cAAc,oHAAoH,CAAC;
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/plugin/src/public-api.ts"],"names":[],"mappings":"AAoBA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAEhC,cAAc,0FAA0F,CAAC;AACzG,cAAc,uFAAuF,CAAC;AAEtG,cAAc,iDAAiD,CAAC;AAChE,cAAc,8FAA8F,CAAC;AAC7G,cAAc,wDAAwD,CAAC;AAEvE,cAAc,qFAAqF,CAAC;AACpG,cAAc,4FAA4F,CAAC;AAC3G,cAAc,kJAAkJ,CAAC;AAEjK,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAC/H,cAAc,oHAAoH,CAAC;AACnI,cAAc,0FAA0F,CAAC;AAEzG,cAAc,2DAA2D,CAAC;AAC1E,cAAc,kEAAkE,CAAC;AACjF,cAAc,yGAAyG,CAAC;AACxH,cAAc,6GAA6G,CAAC;AAC5H,cAAc,iHAAiH,CAAC;AAChI,cAAc,qGAAqG,CAAC;AAEpH,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAE/H,cAAc,iDAAiD,CAAC;AAChE,cAAc,wDAAwD,CAAC;AACvE,cAAc,8FAA8F,CAAC;AAC7G,cAAc,wGAAwG,CAAC;AACvH,cAAc,4FAA4F,CAAC;AAC3G,cAAc,wGAAwG,CAAC;AACvH,cAAc,0HAA0H,CAAC;AACzI,cAAc,oHAAoH,CAAC;AACnI,cAAc,8HAA8H,CAAC;AAC7I,cAAc,oFAAoF,CAAC;AACnG,cAAc,sFAAsF,CAAC;AAErG,cAAc,uDAAuD,CAAC;AACtE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uGAAuG,CAAC;AACtH,cAAc,6EAA6E,CAAC;AAE5F,cAAc,uDAAuD,CAAC;AACtE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uGAAuG,CAAC;AACtH,cAAc,+FAA+F,CAAC;AAC9G,cAAc,mGAAmG,CAAC;AAClH,cAAc,6FAA6F,CAAC;AAE5G,cAAc,+DAA+D,CAAC;AAC9E,cAAc,sEAAsE,CAAC;AACrF,cAAc,mHAAmH,CAAC;AAElI,cAAc,+EAA+E,CAAC;AAC9F,cAAc,sFAAsF,CAAC;AACrG,cAAc,oIAAoI,CAAC;AAEnJ,cAAc,qDAAqD,CAAC;AACpE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,oGAAoG,CAAC;AACnH,cAAc,sFAAsF,CAAC;AACrG,cAAc,0FAA0F,CAAC;AAEzG,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AACnE,cAAc,wFAAwF,CAAC;AAEvG,cAAc,yDAAyD,CAAC;AACxE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,0GAA0G,CAAC;AACzH,cAAc,wGAAwG,CAAC;AACvH,cAAc,kHAAkH,CAAC"}
|