forked from axonivy/inscription-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inscription.ts
860 lines (858 loc) · 20 KB
/
inscription.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
/* eslint-disable */
// prettier-ignore
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type PID = string
export type ContentObjectType = "STRING" | "FILE" | "FOLDER";
export type WfFieldType = "STRING" | "TEXT" | "NUMBER" | "TIMESTAMP";
export type WorkflowType = "START" | "TASK" | "CASE";
export type WfLevel = "EXCEPTION" | "HIGH" | "NORMAL" | "LOW" | "SCRIPT";
export type WfActivatorType = "ROLE" | "ROLE_FROM_ATTRIBUTE" | "USER_FROM_ATTRIBUTE" | "DELETE_TASK";
export type CacheInvalidation = "NONE" | "FIXED_TIME" | "LIFETIME";
export type CacheMode = "DO_NOT_CACHE" | "CACHE" | "INVALIDATE_CACHE";
export type CacheScope = "SESSION" | "APPLICATION";
export type QueryKind = "READ" | "WRITE" | "UPDATE" | "DELETE" | "ANY";
export type IntermediateEventTimeoutAction = "NOTHING" | "DESTROY_TASK" | "CONTINUE_WITHOUT_EVENT";
export type HttpMethod = "GET" | "POST" | "PUT" | "HEAD" | "DELETE" | "PATCH" | "OPTIONS" | "JAX_RS";
export type InputType = "ENTITY" | "FORM" | "RAW";
export type WsAuth = "NONE" | "WS_SECURITY" | "HTTP_BASIC";
export type Type = "START" | "INTERMEDIATE" | "ACTIVITY";
export type Severity = "INFO" | "WARNING" | "ERROR";
export type Widget = Script | Label | Text;
export type WidgetType = "TEXT" | "LABEL" | "SCRIPT";
export interface Inscription {
apiDocRequest: ApiDocRequest;
boolean: boolean;
callableDialogRequest: CallableDialogRequest;
callableStart: CallableStart[];
categoryPathMeta: CategoryPathMeta[];
cmsMetaRequest: CmsMetaRequest;
connectorRef: ConnectorRef[];
contentObject: ContentObject[];
customFieldSchema: WfCustomField[];
databaseColumn: DatabaseColumn[];
databaseColumnRequest: DatabaseColumnRequest;
databaseTablesRequest: DatabaseTablesRequest;
dataClass: DataClass[];
errorCodeRequest: ErrorCodeRequest;
errorStartMeta: ErrorStartMeta[];
eventCodeMeta: EventCodeMeta[];
function: Function[];
inscriptionActionArgs: InscriptionActionArgs;
inscriptionContext: InscriptionContext;
inscriptionElementContext: InscriptionElementContext;
inscriptionRequest: InscriptionRequest;
inscriptionSaveRequest: InscriptionSaveRequest;
javaType: JavaType[];
programEditorRequest: ProgramEditorRequest;
programInterface: ProgramInterface[];
programInterfacesRequest: ProgramInterfacesRequest;
restClient: RestClient[];
restClientRequest: RestClientRequest;
restContentTypeRequest: RestContentTypeRequest;
restEntityInfoRequest: RestEntityInfoRequest;
restResource: RestResource;
restResourceRequest: RestResourceRequest;
roleMeta: RoleMeta[];
schemaKey: SchemaKey;
scriptingDataArgs: ScriptingDataArgs;
signalCodeRequest: SignalCodeRequest;
string: string[];
typeSearchRequest: TypeSearchRequest;
validationResult: ValidationResult[];
variableInfo: VariableInfo;
void: Void;
webServiceClient: WebServiceClient[];
webServiceClientRequest: WebServiceClientRequest;
webServiceOperation: WebServiceOperation[];
webServicePortRequest: WebServicePortRequest;
widget: Widget[];
workflowTypeRequest: WorkflowTypeRequest;
[k: string]: unknown;
}
export interface ApiDocRequest {
context: InscriptionContext;
method: string;
paramTypes: string[];
type: string;
}
export interface InscriptionContext {
app: string;
pmv: string;
}
export interface CallableDialogRequest {
context: InscriptionContext;
supportOffline: boolean;
}
export interface CallableStart {
callParameter: VariableInfo;
deprecated: boolean;
description: string;
id: string;
packageName: string;
process: string;
project: string;
startName: string;
}
export interface VariableInfo {
types: MapStringListVariable;
variables: Variable[];
}
export interface MapStringListVariable {
[k: string]: Variable[];
}
export interface Variable {
attribute: string;
description: string;
simpleType: string;
type: string;
}
export interface CategoryPathMeta {
path: string;
process: string;
project: string;
usage: number;
}
export interface CmsMetaRequest {
context: InscriptionContext;
requiredProjects: boolean;
}
export interface ConnectorRef {
name: string;
pid: PID;
source: NodeRef;
target: NodeRef;
}
export interface NodeRef {
name: string;
pid: PID;
type: InscriptionType;
}
export interface InscriptionType {
description: string;
helpUrl: string;
iconId: string;
id:
| "Alternative"
| "CallSubEnd"
| "CallSubStart"
| "CallableSubProcess"
| "Database"
| "DialogCall"
| "EMail"
| "EmbeddedEnd"
| "EmbeddedProcessElement"
| "EmbeddedStart"
| "ErrorBoundaryEvent"
| "ErrorEnd"
| "ErrorStartEvent"
| "GenericActivity"
| "GenericBpmnElement"
| "HtmlDialogEnd"
| "HtmlDialogEventStart"
| "HtmlDialogExit"
| "HtmlDialogMethodStart"
| "HtmlDialogProcess"
| "HtmlDialogStart"
| "Join"
| "ManualBpmnElement"
| "Process"
| "ProcessAnnotation"
| "ProgramInterface"
| "ProgramStart"
| "ReceiveBpmnElement"
| "RequestStart"
| "RestClientCall"
| "RuleBpmnElement"
| "Script"
| "ScriptBpmnElement"
| "SendBpmnElement"
| "ServiceBpmnElement"
| "SignalBoundaryEvent"
| "SignalStartEvent"
| "Split"
| "SubProcessCall"
| "TaskEnd"
| "TaskEndPage"
| "TaskSwitchEvent"
| "TaskSwitchGateway"
| "ThirdPartyProgramInterface"
| "ThirdPartyProgramStart"
| "ThirdPartyWaitEvent"
| "TriggerCall"
| "UserBpmnElement"
| "UserTask"
| "WaitEvent"
| "WebServiceCall"
| "WebserviceEnd"
| "WebserviceProcess"
| "WebserviceStart";
impl?: string;
label: string;
shortLabel: string;
}
export interface ContentObject {
children: ContentObject[];
fullPath: string;
name: string;
type: ContentObjectType;
values: MapStringString;
}
export interface MapStringString {
[k: string]: string;
}
export interface WfCustomField {
name: string;
type: WfFieldType;
value: string;
}
export interface DatabaseColumn {
ivyType: string;
name: string;
type: string;
}
export interface DatabaseColumnRequest {
context: InscriptionElementContext;
database: string;
table: string;
}
export interface InscriptionElementContext {
app: string;
pid: PID;
pmv: string;
}
export interface DatabaseTablesRequest {
context: InscriptionElementContext;
database: string;
}
export interface DataClass {
fullQualifiedName: string;
name: string;
packageName: string;
path: string;
}
export interface ErrorCodeRequest {
context: InscriptionContext;
thrower: boolean;
}
export interface ErrorStartMeta {
id: string;
label: string;
}
export interface EventCodeMeta {
eventCode: string;
process: string;
project: string;
usage: number;
}
export interface Function {
isField: boolean;
name: string;
params: Parameter[];
returnType: PublicType;
}
export interface Parameter {
name: string;
type: string;
}
export interface PublicType {
functions: Function[];
packageName: string;
simpleName: string;
}
export interface InscriptionActionArgs {
actionId:
| "newCmsString"
| "newHtmlDialog"
| "newProcess"
| "newProgram"
| "newRestClient"
| "newWebServiceClient"
| "openConfig"
| "openCustomField"
| "openEndPage"
| "openOrCreateCmsCategory"
| "openPage"
| "openProgram"
| "openTestWs";
context: InscriptionElementContext;
payload: string | OpenCustomField;
}
export interface OpenCustomField {
name: string;
type: WorkflowType;
}
export interface InscriptionRequest {
context: InscriptionElementContext;
data: Data;
defaults: unknown;
readonly: boolean;
type: InscriptionType;
}
export interface Data {
config:
| ElementTaskEndPage
| ElementTaskSwitchGateway
| ElementSubProcessCall
| ElementDatabase
| ElementCallSubStart
| ElementScript
| ElementAlternative
| ElementProgramInterface
| ElementHtmlDialogStart
| ElementSplit
| ElementErrorEnd
| ElementErrorBoundaryEvent
| ElementHtmlDialogEventStart
| ElementProgramStart
| ElementWebServiceCall
| ElementDialogCall
| ElementTriggerCall
| ElementErrorStartEvent
| ElementRequestStart
| ElementWebserviceStart
| ElementThirdPartyWaitEvent
| ElementUserTask
| ElementJoin
| ElementSignalBoundaryEvent
| ElementEMail
| ElementTaskSwitchEvent
| ElementHtmlDialogMethodStart
| ElementThirdPartyProgramInterface
| ElementWaitEvent
| ElementRestClientCall
| ElementThirdPartyProgramStart
| ElementSignalStartEvent
| ProcessConfig
| WebserviceProcessConfig;
description: string;
docs: Document[];
name: string;
tags: string[];
}
export interface ElementTaskEndPage {
page: string;
}
export interface ElementTaskSwitchGateway {
output: ScriptMapCode;
page: string;
case: WfCase;
tasks: WfTask[];
}
export interface ScriptMapCode {
code: string;
map: ScriptMappings;
}
export interface ScriptMappings {
[k: string]: string;
}
export interface WfCase {
attachToBusinessCase: boolean;
category: string;
customFields: WfCustomField[];
description: string;
name: string;
}
export interface WfTask {
category: string;
code: string;
customFields: WfCustomField[];
delay: string;
description: string;
expiry: WfExpiry;
id: string;
name: string;
notification: WfNotification;
priority: WfPriority;
responsible: WfActivator;
skipTasklist: boolean;
}
export interface WfExpiry {
error: string;
priority: WfPriority;
responsible: WfActivator;
timeout: string;
}
export interface WfPriority {
level: WfLevel;
script: string;
}
export interface WfActivator {
activator: string;
type: WfActivatorType;
}
export interface WfNotification {
suppress: boolean;
template: string;
}
export interface ElementSubProcessCall {
call: ScriptMapCode;
output: ScriptMapCode;
processCall: string;
}
export interface ElementDatabase {
output: ScriptMapCode;
cache: Cache;
query: DbQuery;
exceptionHandler: string;
}
export interface Cache {
entry: CacheArtifact;
group: CacheArtifact;
mode: CacheMode;
scope: CacheScope;
}
export interface CacheArtifact {
invalidation: CacheInvalidation;
name: string;
time: string;
}
export interface DbQuery {
dbName: string;
limit: string;
offset: string;
sql: DbSqlStatement;
}
export interface DbSqlStatement {
condition: string;
fields: ScriptMappings;
kind: QueryKind;
orderBy: string[];
quote: boolean;
select: string[];
stmt: string;
table: string;
}
export interface ElementCallSubStart {
result: ScriptParameterizedMapCode;
input: ScriptParameterizedMapCode;
signature: string;
}
export interface ScriptParameterizedMapCode {
code: string;
map: ScriptMappings;
params: ScriptVariable[];
}
export interface ScriptVariable {
desc: string;
name: string;
type: string;
}
export interface ElementScript {
output: ScriptMapCode;
sudo: boolean;
}
export interface ElementAlternative {
conditions: AlternativeConditions;
}
export interface AlternativeConditions {
[k: string]: string;
}
export interface ElementProgramInterface {
javaClass: string;
userConfig: JavaProgramConfig;
exceptionHandler: string;
timeout: JavaTimeout;
}
export interface JavaProgramConfig {
[k: string]: string;
}
export interface JavaTimeout {
error: string;
seconds: string;
}
export interface ElementHtmlDialogStart {
result: ScriptParameterizedMapCode;
input: ScriptParameterizedMapCode;
signature: string;
guid: string;
}
export interface ElementSplit {
output: ScriptMapCode;
}
export interface ElementErrorEnd {
code: string;
throws: ErrorDefinition;
}
export interface ErrorDefinition {
cause: string;
error: string;
}
export interface ElementErrorBoundaryEvent {
output: ScriptMapCode;
errorCode: string;
}
export interface ElementHtmlDialogEventStart {
output: ScriptMapCode;
guid: string;
}
export interface ElementProgramStart {
javaClass: string;
link: string;
permission: StartPermission;
userConfig: JavaProgramConfig;
}
export interface StartPermission {
anonymous: boolean;
error: string;
role: string;
}
export interface ElementWebServiceCall {
output: ScriptMapCode;
cache: Cache;
clientId: string;
operation: SoapOperation;
exceptionHandler: string;
properties: ScriptMappings;
}
export interface SoapOperation {
name: string;
parameters: ScriptMappings;
port: string;
}
export interface ElementDialogCall {
call: ScriptMapCode;
output: ScriptMapCode;
dialog: string;
}
export interface ElementTriggerCall {
call: ScriptMapCode;
output: ScriptMapCode;
processCall: string;
}
export interface ElementErrorStartEvent {
output: ScriptMapCode;
errorCode: string;
}
export interface ElementRequestStart {
input: ScriptParameterizedMapCode;
request: StartRequest;
task: WfTask;
signature: string;
permission: StartPermission;
triggerable: boolean;
case: WfCase;
persistOnStart: boolean;
}
export interface StartRequest {
category: string;
customFields: StartCustomStartField[];
description: string;
isHttpRequestable: boolean;
isVisibleOnStartList: boolean;
linkName: string;
name: string;
}
export interface StartCustomStartField {
name: string;
value: string;
}
export interface ElementWebserviceStart {
result: ScriptParameterizedMapCode;
exception: SoapWsProcessException;
input: ScriptParameterizedMapCode;
task: WfTask;
signature: string;
permission: StartPermission;
case: WfCase;
}
export interface SoapWsProcessException {
condition: string;
enabled: boolean;
message: string;
}
export interface ElementThirdPartyWaitEvent {
output: ScriptMapCode;
eventId: string;
task: WfTask;
javaClass: string;
userConfig: JavaProgramConfig;
timeout: JavaEventTimeout;
}
export interface JavaEventTimeout {
action: IntermediateEventTimeoutAction;
duration: string;
error: string;
}
export interface ElementUserTask {
call: ScriptMapCode;
output: ScriptMapCode;
dialog: string;
task: WfTask;
case: WfCase;
}
export interface ElementJoin {
output: ScriptMapCode;
}
export interface ElementSignalBoundaryEvent {
output: ScriptMapCode;
signalCode: string;
}
export interface ElementEMail {
headers: MailHeaders;
failIfMissingAttachments: boolean;
attachments: string[];
message: MailMessage;
exceptionHandler: string;
}
export interface MailHeaders {
bcc: string;
cc: string;
from: string;
replyTo: string;
subject: string;
to: string;
}
export interface MailMessage {
body: string;
contentType: string;
}
export interface ElementTaskSwitchEvent {
output: ScriptMapCode;
task: WfTask;
page: string;
case: WfCase;
}
export interface ElementHtmlDialogMethodStart {
result: ScriptParameterizedMapCode;
input: ScriptParameterizedMapCode;
signature: string;
guid: string;
}
export interface ElementThirdPartyProgramInterface {
javaClass: string;
userConfig: JavaProgramConfig;
exceptionHandler: string;
timeout: JavaTimeout;
}
export interface ElementWaitEvent {
output: ScriptMapCode;
eventId: string;
task: WfTask;
javaClass: string;
userConfig: JavaProgramConfig;
timeout: JavaEventTimeout;
}
export interface ElementRestClientCall {
code: string;
method: HttpMethod;
response: RestResponse;
body: RestBody;
target: RestTarget;
}
export interface RestResponse {
clientError: string;
entity: RestPayloadMapping;
statusError: string;
}
export interface RestPayloadMapping {
code: string;
map: ScriptMappings;
type: string;
}
export interface RestBody {
entity: RestPayloadMapping;
form: RestMultiValuedMap;
mediaType: string;
raw: string;
type: InputType;
}
export interface RestMultiValuedMap {
[k: string]: string[];
}
export interface RestTarget {
clientId: string;
headers: ScriptMappings;
path: string;
properties: ScriptMappings;
queryParams: ScriptMappings;
templateParams: ScriptMappings;
}
export interface ElementThirdPartyProgramStart {
javaClass: string;
link: string;
permission: StartPermission;
userConfig: JavaProgramConfig;
}
export interface ElementSignalStartEvent {
output: ScriptMapCode;
signalCode: string;
attachToBusinessCase: boolean;
}
export interface ProcessConfig {
data: string;
permissions: RootPermissions;
}
export interface RootPermissions {
view: RootView;
}
export interface RootView {
allowed: boolean;
}
export interface WebserviceProcessConfig {
wsAuth: WsAuth;
data: string;
permissions: RootPermissions;
wsTypeName: string;
}
export interface Document {
name: string;
url: string;
}
export interface InscriptionSaveRequest {
context: InscriptionElementContext;
data: Data;
}
export interface JavaType {
fullQualifiedName: string;
packageName: string;
simpleName: string;
}
export interface ProgramEditorRequest {
context: InscriptionContext;
type: string;
}
export interface ProgramInterface {
fullQualifiedName: string;
name: string;
packageName: string;
}
export interface ProgramInterfacesRequest {
context: InscriptionContext;
type: Type;
}
export interface RestClient {
clientId: string;
name: string;
}
export interface RestClientRequest {
clientId: string;
context: InscriptionContext;
}
export interface RestContentTypeRequest {
forBody: boolean;
}
export interface RestEntityInfoRequest {
context: InscriptionContext;
fullQualifiedName: string;
}
export interface RestResource {
doc: string;
headers: RestParameter[];
method: RestMethod;
path: string;
pathParams: RestParameter[];
queryParams: RestParameter[];
tags: string[];
}
export interface RestParameter {
doc: string;
name: string;
properties: RestParameter[];
required: boolean;
type: QualifiedType;
}
export interface QualifiedType {
fullQualifiedName: string;
}
export interface RestMethod {
httpMethod: string;
inBody: RestPayload;
outResult: RestPayload;
}
export interface RestPayload {
media: string;
type: RestParameter;
}
export interface RestResourceRequest {
clientId: string;
context: InscriptionContext;
method: string;
path: string;
}
export interface RoleMeta {
children: RoleMeta[];
id: string;
label: string;
}
export interface SchemaKey {
Common: "output" | "exceptionHandler" | "code" | "map";
Alternative: "conditions";
Cachable: "cache";
Callable: "signature" | "input" | "result" | "guid" | "params";
Caller: "dialog" | "processCall" | "call";
Database: "query";
Error: "errorCode" | "throws";
Mail: "headers" | "message" | "attachments" | "failIfMissingAttachments";
Process: "data" | "permissions";
Programmed: "javaClass" | "userConfig" | "link" | "timeout" | "eventId";
RestClient: {
Common: "method" | "target" | "body" | "response";
Body: "form" | "entity" | "raw";
};
Script: "sudo";
Signal: "signalCode" | "attachToBusinessCase";
Start: "request" | "permission" | "triggerable" | "persistOnStart";
WebService: "clientId" | "operation" | "properties";
Workflow: "task" | "tasks" | "case" | "page" | "customFields";
WsProcess: "wsAuth" | "wsTypeName" | "exception";
}
export interface ScriptingDataArgs {
context: InscriptionElementContext;
location: string;
}
export interface SignalCodeRequest {
context: InscriptionContext;
macro: boolean;
}
export interface TypeSearchRequest {
context: InscriptionContext;
limit: number;
type: string;
}
export interface ValidationResult {
message: string;
path: string;
severity: Severity;
}
export interface Void {}
export interface WebServiceClient {
clientId: string;
name: string;
}
export interface WebServiceClientRequest {
clientId: string;
context: InscriptionContext;
}
export interface WebServiceOperation {
name: string;
parameter: VariableInfo;
}
export interface WebServicePortRequest {
clientId: string;
context: InscriptionContext;
port: string;
}
export interface Script {
configKey: string;
multiline: boolean;
requiredType: string;
widgetType: WidgetType;
}
export interface Label {
multiline: boolean;
text: string;
widgetType: WidgetType;
}
export interface Text {
configKey: string;
multiline: boolean;
widgetType: WidgetType;
}
export interface WorkflowTypeRequest {
context: InscriptionContext;
type: WorkflowType;
}