@lssm/example.workflow-system 0.0.0-canary-20251206181705 → 0.0.0-canary-20251207012602
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/dist/contracts/approval.d.ts +195 -195
- package/dist/contracts/instance.d.ts +345 -345
- package/dist/contracts/workflow.d.ts +341 -341
- package/dist/entities/approval.d.ts +36 -36
- package/dist/entities/index.d.ts +127 -127
- package/dist/entities/instance.d.ts +47 -47
- package/dist/entities/step.d.ts +32 -32
- package/dist/entities/workflow.d.ts +23 -23
- package/dist/events.d.ts +294 -294
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/events.d.ts
CHANGED
|
@@ -1,1105 +1,1105 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema296 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts4 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/events.d.ts
|
|
5
|
-
declare const WorkflowCreatedEvent:
|
|
5
|
+
declare const WorkflowCreatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
6
6
|
workflowId: {
|
|
7
|
-
type:
|
|
7
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
key: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
name: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
version: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
organizationId: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
createdBy: {
|
|
27
|
-
type:
|
|
27
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
timestamp: {
|
|
31
|
-
type:
|
|
31
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
}>>;
|
|
35
|
-
declare const WorkflowUpdatedEvent:
|
|
35
|
+
declare const WorkflowUpdatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
36
36
|
workflowId: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
key: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
name: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
version: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
organizationId: {
|
|
53
|
-
type:
|
|
53
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
54
54
|
isOptional: false;
|
|
55
55
|
};
|
|
56
56
|
createdBy: {
|
|
57
|
-
type:
|
|
57
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
58
58
|
isOptional: false;
|
|
59
59
|
};
|
|
60
60
|
timestamp: {
|
|
61
|
-
type:
|
|
61
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
62
62
|
isOptional: false;
|
|
63
63
|
};
|
|
64
64
|
}>>;
|
|
65
|
-
declare const WorkflowPublishedEvent:
|
|
65
|
+
declare const WorkflowPublishedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
66
66
|
workflowId: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
key: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
name: {
|
|
75
|
-
type:
|
|
75
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
version: {
|
|
79
|
-
type:
|
|
79
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
80
80
|
isOptional: false;
|
|
81
81
|
};
|
|
82
82
|
organizationId: {
|
|
83
|
-
type:
|
|
83
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
84
84
|
isOptional: false;
|
|
85
85
|
};
|
|
86
86
|
createdBy: {
|
|
87
|
-
type:
|
|
87
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
88
88
|
isOptional: false;
|
|
89
89
|
};
|
|
90
90
|
timestamp: {
|
|
91
|
-
type:
|
|
91
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
92
92
|
isOptional: false;
|
|
93
93
|
};
|
|
94
94
|
}>>;
|
|
95
|
-
declare const StepAddedEvent:
|
|
95
|
+
declare const StepAddedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
96
96
|
stepId: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
workflowId: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
102
102
|
isOptional: false;
|
|
103
103
|
};
|
|
104
104
|
stepKey: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
stepType: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
position: {
|
|
113
|
-
type:
|
|
113
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
114
114
|
isOptional: false;
|
|
115
115
|
};
|
|
116
116
|
timestamp: {
|
|
117
|
-
type:
|
|
117
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
}>>;
|
|
121
|
-
declare const InstanceStartedEvent:
|
|
121
|
+
declare const InstanceStartedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
122
122
|
instanceId: {
|
|
123
|
-
type:
|
|
123
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
124
124
|
isOptional: false;
|
|
125
125
|
};
|
|
126
126
|
workflowId: {
|
|
127
|
-
type:
|
|
127
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
128
128
|
isOptional: false;
|
|
129
129
|
};
|
|
130
130
|
workflowKey: {
|
|
131
|
-
type:
|
|
131
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
132
132
|
isOptional: false;
|
|
133
133
|
};
|
|
134
134
|
status: {
|
|
135
|
-
type:
|
|
135
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
136
136
|
isOptional: false;
|
|
137
137
|
};
|
|
138
138
|
referenceId: {
|
|
139
|
-
type:
|
|
139
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
140
140
|
isOptional: true;
|
|
141
141
|
};
|
|
142
142
|
referenceType: {
|
|
143
|
-
type:
|
|
143
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
144
144
|
isOptional: true;
|
|
145
145
|
};
|
|
146
146
|
triggeredBy: {
|
|
147
|
-
type:
|
|
147
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
148
148
|
isOptional: false;
|
|
149
149
|
};
|
|
150
150
|
organizationId: {
|
|
151
|
-
type:
|
|
151
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
152
152
|
isOptional: false;
|
|
153
153
|
};
|
|
154
154
|
timestamp: {
|
|
155
|
-
type:
|
|
155
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
156
156
|
isOptional: false;
|
|
157
157
|
};
|
|
158
158
|
}>>;
|
|
159
|
-
declare const StepEnteredEvent:
|
|
159
|
+
declare const StepEnteredEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
160
160
|
instanceId: {
|
|
161
|
-
type:
|
|
161
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
162
162
|
isOptional: false;
|
|
163
163
|
};
|
|
164
164
|
workflowId: {
|
|
165
|
-
type:
|
|
165
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
166
166
|
isOptional: false;
|
|
167
167
|
};
|
|
168
168
|
fromStepKey: {
|
|
169
|
-
type:
|
|
169
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
170
170
|
isOptional: true;
|
|
171
171
|
};
|
|
172
172
|
toStepKey: {
|
|
173
|
-
type:
|
|
173
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
174
174
|
isOptional: false;
|
|
175
175
|
};
|
|
176
176
|
action: {
|
|
177
|
-
type:
|
|
177
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
178
178
|
isOptional: true;
|
|
179
179
|
};
|
|
180
180
|
executedBy: {
|
|
181
|
-
type:
|
|
181
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
182
182
|
isOptional: false;
|
|
183
183
|
};
|
|
184
184
|
timestamp: {
|
|
185
|
-
type:
|
|
185
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
186
186
|
isOptional: false;
|
|
187
187
|
};
|
|
188
188
|
}>>;
|
|
189
|
-
declare const StepExitedEvent:
|
|
189
|
+
declare const StepExitedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
190
190
|
instanceId: {
|
|
191
|
-
type:
|
|
191
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
192
192
|
isOptional: false;
|
|
193
193
|
};
|
|
194
194
|
workflowId: {
|
|
195
|
-
type:
|
|
195
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
196
196
|
isOptional: false;
|
|
197
197
|
};
|
|
198
198
|
fromStepKey: {
|
|
199
|
-
type:
|
|
199
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
200
200
|
isOptional: true;
|
|
201
201
|
};
|
|
202
202
|
toStepKey: {
|
|
203
|
-
type:
|
|
203
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
204
204
|
isOptional: false;
|
|
205
205
|
};
|
|
206
206
|
action: {
|
|
207
|
-
type:
|
|
207
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
208
208
|
isOptional: true;
|
|
209
209
|
};
|
|
210
210
|
executedBy: {
|
|
211
|
-
type:
|
|
211
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
212
212
|
isOptional: false;
|
|
213
213
|
};
|
|
214
214
|
timestamp: {
|
|
215
|
-
type:
|
|
215
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
216
216
|
isOptional: false;
|
|
217
217
|
};
|
|
218
218
|
}>>;
|
|
219
|
-
declare const InstanceCompletedEvent:
|
|
219
|
+
declare const InstanceCompletedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
220
220
|
instanceId: {
|
|
221
|
-
type:
|
|
221
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
222
222
|
isOptional: false;
|
|
223
223
|
};
|
|
224
224
|
workflowId: {
|
|
225
|
-
type:
|
|
225
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
226
226
|
isOptional: false;
|
|
227
227
|
};
|
|
228
228
|
workflowKey: {
|
|
229
|
-
type:
|
|
229
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
230
230
|
isOptional: false;
|
|
231
231
|
};
|
|
232
232
|
outcome: {
|
|
233
|
-
type:
|
|
233
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
234
234
|
isOptional: false;
|
|
235
235
|
};
|
|
236
236
|
referenceId: {
|
|
237
|
-
type:
|
|
237
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
238
238
|
isOptional: true;
|
|
239
239
|
};
|
|
240
240
|
referenceType: {
|
|
241
|
-
type:
|
|
241
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
242
242
|
isOptional: true;
|
|
243
243
|
};
|
|
244
244
|
duration: {
|
|
245
|
-
type:
|
|
245
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
246
246
|
isOptional: false;
|
|
247
247
|
};
|
|
248
248
|
timestamp: {
|
|
249
|
-
type:
|
|
249
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
250
250
|
isOptional: false;
|
|
251
251
|
};
|
|
252
252
|
}>>;
|
|
253
|
-
declare const InstanceCancelledEvent:
|
|
253
|
+
declare const InstanceCancelledEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
254
254
|
instanceId: {
|
|
255
|
-
type:
|
|
255
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
256
256
|
isOptional: false;
|
|
257
257
|
};
|
|
258
258
|
workflowId: {
|
|
259
|
-
type:
|
|
259
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
260
260
|
isOptional: false;
|
|
261
261
|
};
|
|
262
262
|
workflowKey: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
264
264
|
isOptional: false;
|
|
265
265
|
};
|
|
266
266
|
status: {
|
|
267
|
-
type:
|
|
267
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
268
268
|
isOptional: false;
|
|
269
269
|
};
|
|
270
270
|
referenceId: {
|
|
271
|
-
type:
|
|
271
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
272
272
|
isOptional: true;
|
|
273
273
|
};
|
|
274
274
|
referenceType: {
|
|
275
|
-
type:
|
|
275
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
276
276
|
isOptional: true;
|
|
277
277
|
};
|
|
278
278
|
triggeredBy: {
|
|
279
|
-
type:
|
|
279
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
280
280
|
isOptional: false;
|
|
281
281
|
};
|
|
282
282
|
organizationId: {
|
|
283
|
-
type:
|
|
283
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
284
284
|
isOptional: false;
|
|
285
285
|
};
|
|
286
286
|
timestamp: {
|
|
287
|
-
type:
|
|
287
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
288
288
|
isOptional: false;
|
|
289
289
|
};
|
|
290
290
|
}>>;
|
|
291
|
-
declare const InstancePausedEvent:
|
|
291
|
+
declare const InstancePausedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
292
292
|
instanceId: {
|
|
293
|
-
type:
|
|
293
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
294
294
|
isOptional: false;
|
|
295
295
|
};
|
|
296
296
|
workflowId: {
|
|
297
|
-
type:
|
|
297
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
298
298
|
isOptional: false;
|
|
299
299
|
};
|
|
300
300
|
workflowKey: {
|
|
301
|
-
type:
|
|
301
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
302
302
|
isOptional: false;
|
|
303
303
|
};
|
|
304
304
|
status: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
306
306
|
isOptional: false;
|
|
307
307
|
};
|
|
308
308
|
referenceId: {
|
|
309
|
-
type:
|
|
309
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
310
310
|
isOptional: true;
|
|
311
311
|
};
|
|
312
312
|
referenceType: {
|
|
313
|
-
type:
|
|
313
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
314
314
|
isOptional: true;
|
|
315
315
|
};
|
|
316
316
|
triggeredBy: {
|
|
317
|
-
type:
|
|
317
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
318
318
|
isOptional: false;
|
|
319
319
|
};
|
|
320
320
|
organizationId: {
|
|
321
|
-
type:
|
|
321
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
322
322
|
isOptional: false;
|
|
323
323
|
};
|
|
324
324
|
timestamp: {
|
|
325
|
-
type:
|
|
325
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
326
326
|
isOptional: false;
|
|
327
327
|
};
|
|
328
328
|
}>>;
|
|
329
|
-
declare const InstanceResumedEvent:
|
|
329
|
+
declare const InstanceResumedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
330
330
|
instanceId: {
|
|
331
|
-
type:
|
|
331
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
332
332
|
isOptional: false;
|
|
333
333
|
};
|
|
334
334
|
workflowId: {
|
|
335
|
-
type:
|
|
335
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
336
336
|
isOptional: false;
|
|
337
337
|
};
|
|
338
338
|
workflowKey: {
|
|
339
|
-
type:
|
|
339
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
340
340
|
isOptional: false;
|
|
341
341
|
};
|
|
342
342
|
status: {
|
|
343
|
-
type:
|
|
343
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
344
344
|
isOptional: false;
|
|
345
345
|
};
|
|
346
346
|
referenceId: {
|
|
347
|
-
type:
|
|
347
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
348
348
|
isOptional: true;
|
|
349
349
|
};
|
|
350
350
|
referenceType: {
|
|
351
|
-
type:
|
|
351
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
352
352
|
isOptional: true;
|
|
353
353
|
};
|
|
354
354
|
triggeredBy: {
|
|
355
|
-
type:
|
|
355
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
356
356
|
isOptional: false;
|
|
357
357
|
};
|
|
358
358
|
organizationId: {
|
|
359
|
-
type:
|
|
359
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
360
360
|
isOptional: false;
|
|
361
361
|
};
|
|
362
362
|
timestamp: {
|
|
363
|
-
type:
|
|
363
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
364
364
|
isOptional: false;
|
|
365
365
|
};
|
|
366
366
|
}>>;
|
|
367
|
-
declare const InstanceFailedEvent:
|
|
367
|
+
declare const InstanceFailedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
368
368
|
instanceId: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
370
370
|
isOptional: false;
|
|
371
371
|
};
|
|
372
372
|
workflowId: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
374
374
|
isOptional: false;
|
|
375
375
|
};
|
|
376
376
|
workflowKey: {
|
|
377
|
-
type:
|
|
377
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
378
378
|
isOptional: false;
|
|
379
379
|
};
|
|
380
380
|
status: {
|
|
381
|
-
type:
|
|
381
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
382
382
|
isOptional: false;
|
|
383
383
|
};
|
|
384
384
|
referenceId: {
|
|
385
|
-
type:
|
|
385
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
386
386
|
isOptional: true;
|
|
387
387
|
};
|
|
388
388
|
referenceType: {
|
|
389
|
-
type:
|
|
389
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
390
390
|
isOptional: true;
|
|
391
391
|
};
|
|
392
392
|
triggeredBy: {
|
|
393
|
-
type:
|
|
393
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
394
394
|
isOptional: false;
|
|
395
395
|
};
|
|
396
396
|
organizationId: {
|
|
397
|
-
type:
|
|
397
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
398
398
|
isOptional: false;
|
|
399
399
|
};
|
|
400
400
|
timestamp: {
|
|
401
|
-
type:
|
|
401
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
402
402
|
isOptional: false;
|
|
403
403
|
};
|
|
404
404
|
}>>;
|
|
405
|
-
declare const InstanceTimedOutEvent:
|
|
405
|
+
declare const InstanceTimedOutEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
406
406
|
instanceId: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
408
408
|
isOptional: false;
|
|
409
409
|
};
|
|
410
410
|
workflowId: {
|
|
411
|
-
type:
|
|
411
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
412
412
|
isOptional: false;
|
|
413
413
|
};
|
|
414
414
|
workflowKey: {
|
|
415
|
-
type:
|
|
415
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
416
416
|
isOptional: false;
|
|
417
417
|
};
|
|
418
418
|
status: {
|
|
419
|
-
type:
|
|
419
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
420
420
|
isOptional: false;
|
|
421
421
|
};
|
|
422
422
|
referenceId: {
|
|
423
|
-
type:
|
|
423
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
424
424
|
isOptional: true;
|
|
425
425
|
};
|
|
426
426
|
referenceType: {
|
|
427
|
-
type:
|
|
427
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
428
428
|
isOptional: true;
|
|
429
429
|
};
|
|
430
430
|
triggeredBy: {
|
|
431
|
-
type:
|
|
431
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
432
432
|
isOptional: false;
|
|
433
433
|
};
|
|
434
434
|
organizationId: {
|
|
435
|
-
type:
|
|
435
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
436
436
|
isOptional: false;
|
|
437
437
|
};
|
|
438
438
|
timestamp: {
|
|
439
|
-
type:
|
|
439
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
440
440
|
isOptional: false;
|
|
441
441
|
};
|
|
442
442
|
}>>;
|
|
443
|
-
declare const ApprovalRequestedEvent:
|
|
443
|
+
declare const ApprovalRequestedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
444
444
|
requestId: {
|
|
445
|
-
type:
|
|
445
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
446
446
|
isOptional: false;
|
|
447
447
|
};
|
|
448
448
|
instanceId: {
|
|
449
|
-
type:
|
|
449
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
450
450
|
isOptional: false;
|
|
451
451
|
};
|
|
452
452
|
workflowKey: {
|
|
453
|
-
type:
|
|
453
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
454
454
|
isOptional: false;
|
|
455
455
|
};
|
|
456
456
|
approverId: {
|
|
457
|
-
type:
|
|
457
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
458
458
|
isOptional: false;
|
|
459
459
|
};
|
|
460
460
|
approverRole: {
|
|
461
|
-
type:
|
|
461
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
462
462
|
isOptional: true;
|
|
463
463
|
};
|
|
464
464
|
title: {
|
|
465
|
-
type:
|
|
465
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
466
466
|
isOptional: false;
|
|
467
467
|
};
|
|
468
468
|
dueAt: {
|
|
469
|
-
type:
|
|
469
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
470
470
|
isOptional: true;
|
|
471
471
|
};
|
|
472
472
|
timestamp: {
|
|
473
|
-
type:
|
|
473
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
474
474
|
isOptional: false;
|
|
475
475
|
};
|
|
476
476
|
}>>;
|
|
477
|
-
declare const ApprovalDecidedEvent:
|
|
477
|
+
declare const ApprovalDecidedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
478
478
|
requestId: {
|
|
479
|
-
type:
|
|
479
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
480
480
|
isOptional: false;
|
|
481
481
|
};
|
|
482
482
|
instanceId: {
|
|
483
|
-
type:
|
|
483
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
484
484
|
isOptional: false;
|
|
485
485
|
};
|
|
486
486
|
decision: {
|
|
487
|
-
type:
|
|
487
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
488
488
|
isOptional: false;
|
|
489
489
|
};
|
|
490
490
|
decidedBy: {
|
|
491
|
-
type:
|
|
491
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
492
492
|
isOptional: false;
|
|
493
493
|
};
|
|
494
494
|
comment: {
|
|
495
|
-
type:
|
|
495
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
496
496
|
isOptional: true;
|
|
497
497
|
};
|
|
498
498
|
timestamp: {
|
|
499
|
-
type:
|
|
499
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
500
500
|
isOptional: false;
|
|
501
501
|
};
|
|
502
502
|
}>>;
|
|
503
|
-
declare const ApprovalDelegatedEvent:
|
|
503
|
+
declare const ApprovalDelegatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
504
504
|
requestId: {
|
|
505
|
-
type:
|
|
505
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
506
506
|
isOptional: false;
|
|
507
507
|
};
|
|
508
508
|
instanceId: {
|
|
509
|
-
type:
|
|
509
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
510
510
|
isOptional: false;
|
|
511
511
|
};
|
|
512
512
|
fromUserId: {
|
|
513
|
-
type:
|
|
513
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
514
514
|
isOptional: false;
|
|
515
515
|
};
|
|
516
516
|
toUserId: {
|
|
517
|
-
type:
|
|
517
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
518
518
|
isOptional: false;
|
|
519
519
|
};
|
|
520
520
|
reason: {
|
|
521
|
-
type:
|
|
521
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
522
522
|
isOptional: true;
|
|
523
523
|
};
|
|
524
524
|
timestamp: {
|
|
525
|
-
type:
|
|
525
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
526
526
|
isOptional: false;
|
|
527
527
|
};
|
|
528
528
|
}>>;
|
|
529
|
-
declare const ApprovalEscalatedEvent:
|
|
529
|
+
declare const ApprovalEscalatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
530
530
|
requestId: {
|
|
531
|
-
type:
|
|
531
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
532
532
|
isOptional: false;
|
|
533
533
|
};
|
|
534
534
|
instanceId: {
|
|
535
|
-
type:
|
|
535
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
536
536
|
isOptional: false;
|
|
537
537
|
};
|
|
538
538
|
escalationLevel: {
|
|
539
|
-
type:
|
|
539
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
540
540
|
isOptional: false;
|
|
541
541
|
};
|
|
542
542
|
escalatedTo: {
|
|
543
|
-
type:
|
|
543
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
544
544
|
isOptional: false;
|
|
545
545
|
};
|
|
546
546
|
reason: {
|
|
547
|
-
type:
|
|
547
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
548
548
|
isOptional: false;
|
|
549
549
|
};
|
|
550
550
|
timestamp: {
|
|
551
|
-
type:
|
|
551
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
552
552
|
isOptional: false;
|
|
553
553
|
};
|
|
554
554
|
}>>;
|
|
555
555
|
declare const WorkflowSystemEvents: {
|
|
556
|
-
WorkflowCreatedEvent:
|
|
556
|
+
WorkflowCreatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
557
557
|
workflowId: {
|
|
558
|
-
type:
|
|
558
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
559
559
|
isOptional: false;
|
|
560
560
|
};
|
|
561
561
|
key: {
|
|
562
|
-
type:
|
|
562
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
563
563
|
isOptional: false;
|
|
564
564
|
};
|
|
565
565
|
name: {
|
|
566
|
-
type:
|
|
566
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
567
567
|
isOptional: false;
|
|
568
568
|
};
|
|
569
569
|
version: {
|
|
570
|
-
type:
|
|
570
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
571
571
|
isOptional: false;
|
|
572
572
|
};
|
|
573
573
|
organizationId: {
|
|
574
|
-
type:
|
|
574
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
575
575
|
isOptional: false;
|
|
576
576
|
};
|
|
577
577
|
createdBy: {
|
|
578
|
-
type:
|
|
578
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
579
579
|
isOptional: false;
|
|
580
580
|
};
|
|
581
581
|
timestamp: {
|
|
582
|
-
type:
|
|
582
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
583
583
|
isOptional: false;
|
|
584
584
|
};
|
|
585
585
|
}>>;
|
|
586
|
-
WorkflowUpdatedEvent:
|
|
586
|
+
WorkflowUpdatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
587
587
|
workflowId: {
|
|
588
|
-
type:
|
|
588
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
589
589
|
isOptional: false;
|
|
590
590
|
};
|
|
591
591
|
key: {
|
|
592
|
-
type:
|
|
592
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
593
593
|
isOptional: false;
|
|
594
594
|
};
|
|
595
595
|
name: {
|
|
596
|
-
type:
|
|
596
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
597
597
|
isOptional: false;
|
|
598
598
|
};
|
|
599
599
|
version: {
|
|
600
|
-
type:
|
|
600
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
601
601
|
isOptional: false;
|
|
602
602
|
};
|
|
603
603
|
organizationId: {
|
|
604
|
-
type:
|
|
604
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
605
605
|
isOptional: false;
|
|
606
606
|
};
|
|
607
607
|
createdBy: {
|
|
608
|
-
type:
|
|
608
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
609
609
|
isOptional: false;
|
|
610
610
|
};
|
|
611
611
|
timestamp: {
|
|
612
|
-
type:
|
|
612
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
613
613
|
isOptional: false;
|
|
614
614
|
};
|
|
615
615
|
}>>;
|
|
616
|
-
WorkflowPublishedEvent:
|
|
616
|
+
WorkflowPublishedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
617
617
|
workflowId: {
|
|
618
|
-
type:
|
|
618
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
619
619
|
isOptional: false;
|
|
620
620
|
};
|
|
621
621
|
key: {
|
|
622
|
-
type:
|
|
622
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
623
623
|
isOptional: false;
|
|
624
624
|
};
|
|
625
625
|
name: {
|
|
626
|
-
type:
|
|
626
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
627
627
|
isOptional: false;
|
|
628
628
|
};
|
|
629
629
|
version: {
|
|
630
|
-
type:
|
|
630
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
631
631
|
isOptional: false;
|
|
632
632
|
};
|
|
633
633
|
organizationId: {
|
|
634
|
-
type:
|
|
634
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
635
635
|
isOptional: false;
|
|
636
636
|
};
|
|
637
637
|
createdBy: {
|
|
638
|
-
type:
|
|
638
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
639
639
|
isOptional: false;
|
|
640
640
|
};
|
|
641
641
|
timestamp: {
|
|
642
|
-
type:
|
|
642
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
643
643
|
isOptional: false;
|
|
644
644
|
};
|
|
645
645
|
}>>;
|
|
646
|
-
StepAddedEvent:
|
|
646
|
+
StepAddedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
647
647
|
stepId: {
|
|
648
|
-
type:
|
|
648
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
649
649
|
isOptional: false;
|
|
650
650
|
};
|
|
651
651
|
workflowId: {
|
|
652
|
-
type:
|
|
652
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
653
653
|
isOptional: false;
|
|
654
654
|
};
|
|
655
655
|
stepKey: {
|
|
656
|
-
type:
|
|
656
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
657
657
|
isOptional: false;
|
|
658
658
|
};
|
|
659
659
|
stepType: {
|
|
660
|
-
type:
|
|
660
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
661
661
|
isOptional: false;
|
|
662
662
|
};
|
|
663
663
|
position: {
|
|
664
|
-
type:
|
|
664
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
665
665
|
isOptional: false;
|
|
666
666
|
};
|
|
667
667
|
timestamp: {
|
|
668
|
-
type:
|
|
668
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
669
669
|
isOptional: false;
|
|
670
670
|
};
|
|
671
671
|
}>>;
|
|
672
|
-
InstanceStartedEvent:
|
|
672
|
+
InstanceStartedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
673
673
|
instanceId: {
|
|
674
|
-
type:
|
|
674
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
675
675
|
isOptional: false;
|
|
676
676
|
};
|
|
677
677
|
workflowId: {
|
|
678
|
-
type:
|
|
678
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
679
679
|
isOptional: false;
|
|
680
680
|
};
|
|
681
681
|
workflowKey: {
|
|
682
|
-
type:
|
|
682
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
683
683
|
isOptional: false;
|
|
684
684
|
};
|
|
685
685
|
status: {
|
|
686
|
-
type:
|
|
686
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
687
687
|
isOptional: false;
|
|
688
688
|
};
|
|
689
689
|
referenceId: {
|
|
690
|
-
type:
|
|
690
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
691
691
|
isOptional: true;
|
|
692
692
|
};
|
|
693
693
|
referenceType: {
|
|
694
|
-
type:
|
|
694
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
695
695
|
isOptional: true;
|
|
696
696
|
};
|
|
697
697
|
triggeredBy: {
|
|
698
|
-
type:
|
|
698
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
699
699
|
isOptional: false;
|
|
700
700
|
};
|
|
701
701
|
organizationId: {
|
|
702
|
-
type:
|
|
702
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
703
703
|
isOptional: false;
|
|
704
704
|
};
|
|
705
705
|
timestamp: {
|
|
706
|
-
type:
|
|
706
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
707
707
|
isOptional: false;
|
|
708
708
|
};
|
|
709
709
|
}>>;
|
|
710
|
-
StepEnteredEvent:
|
|
710
|
+
StepEnteredEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
711
711
|
instanceId: {
|
|
712
|
-
type:
|
|
712
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
713
713
|
isOptional: false;
|
|
714
714
|
};
|
|
715
715
|
workflowId: {
|
|
716
|
-
type:
|
|
716
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
717
717
|
isOptional: false;
|
|
718
718
|
};
|
|
719
719
|
fromStepKey: {
|
|
720
|
-
type:
|
|
720
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
721
721
|
isOptional: true;
|
|
722
722
|
};
|
|
723
723
|
toStepKey: {
|
|
724
|
-
type:
|
|
724
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
725
725
|
isOptional: false;
|
|
726
726
|
};
|
|
727
727
|
action: {
|
|
728
|
-
type:
|
|
728
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
729
729
|
isOptional: true;
|
|
730
730
|
};
|
|
731
731
|
executedBy: {
|
|
732
|
-
type:
|
|
732
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
733
733
|
isOptional: false;
|
|
734
734
|
};
|
|
735
735
|
timestamp: {
|
|
736
|
-
type:
|
|
736
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
737
737
|
isOptional: false;
|
|
738
738
|
};
|
|
739
739
|
}>>;
|
|
740
|
-
StepExitedEvent:
|
|
740
|
+
StepExitedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
741
741
|
instanceId: {
|
|
742
|
-
type:
|
|
742
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
743
743
|
isOptional: false;
|
|
744
744
|
};
|
|
745
745
|
workflowId: {
|
|
746
|
-
type:
|
|
746
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
747
747
|
isOptional: false;
|
|
748
748
|
};
|
|
749
749
|
fromStepKey: {
|
|
750
|
-
type:
|
|
750
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
751
751
|
isOptional: true;
|
|
752
752
|
};
|
|
753
753
|
toStepKey: {
|
|
754
|
-
type:
|
|
754
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
755
755
|
isOptional: false;
|
|
756
756
|
};
|
|
757
757
|
action: {
|
|
758
|
-
type:
|
|
758
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
759
759
|
isOptional: true;
|
|
760
760
|
};
|
|
761
761
|
executedBy: {
|
|
762
|
-
type:
|
|
762
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
763
763
|
isOptional: false;
|
|
764
764
|
};
|
|
765
765
|
timestamp: {
|
|
766
|
-
type:
|
|
766
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
767
767
|
isOptional: false;
|
|
768
768
|
};
|
|
769
769
|
}>>;
|
|
770
|
-
InstanceCompletedEvent:
|
|
770
|
+
InstanceCompletedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
771
771
|
instanceId: {
|
|
772
|
-
type:
|
|
772
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
773
773
|
isOptional: false;
|
|
774
774
|
};
|
|
775
775
|
workflowId: {
|
|
776
|
-
type:
|
|
776
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
777
777
|
isOptional: false;
|
|
778
778
|
};
|
|
779
779
|
workflowKey: {
|
|
780
|
-
type:
|
|
780
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
781
781
|
isOptional: false;
|
|
782
782
|
};
|
|
783
783
|
outcome: {
|
|
784
|
-
type:
|
|
784
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
785
785
|
isOptional: false;
|
|
786
786
|
};
|
|
787
787
|
referenceId: {
|
|
788
|
-
type:
|
|
788
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
789
789
|
isOptional: true;
|
|
790
790
|
};
|
|
791
791
|
referenceType: {
|
|
792
|
-
type:
|
|
792
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
793
793
|
isOptional: true;
|
|
794
794
|
};
|
|
795
795
|
duration: {
|
|
796
|
-
type:
|
|
796
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
797
797
|
isOptional: false;
|
|
798
798
|
};
|
|
799
799
|
timestamp: {
|
|
800
|
-
type:
|
|
800
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
801
801
|
isOptional: false;
|
|
802
802
|
};
|
|
803
803
|
}>>;
|
|
804
|
-
InstanceCancelledEvent:
|
|
804
|
+
InstanceCancelledEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
805
805
|
instanceId: {
|
|
806
|
-
type:
|
|
806
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
807
807
|
isOptional: false;
|
|
808
808
|
};
|
|
809
809
|
workflowId: {
|
|
810
|
-
type:
|
|
810
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
811
811
|
isOptional: false;
|
|
812
812
|
};
|
|
813
813
|
workflowKey: {
|
|
814
|
-
type:
|
|
814
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
815
815
|
isOptional: false;
|
|
816
816
|
};
|
|
817
817
|
status: {
|
|
818
|
-
type:
|
|
818
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
819
819
|
isOptional: false;
|
|
820
820
|
};
|
|
821
821
|
referenceId: {
|
|
822
|
-
type:
|
|
822
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
823
823
|
isOptional: true;
|
|
824
824
|
};
|
|
825
825
|
referenceType: {
|
|
826
|
-
type:
|
|
826
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
827
827
|
isOptional: true;
|
|
828
828
|
};
|
|
829
829
|
triggeredBy: {
|
|
830
|
-
type:
|
|
830
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
831
831
|
isOptional: false;
|
|
832
832
|
};
|
|
833
833
|
organizationId: {
|
|
834
|
-
type:
|
|
834
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
835
835
|
isOptional: false;
|
|
836
836
|
};
|
|
837
837
|
timestamp: {
|
|
838
|
-
type:
|
|
838
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
839
839
|
isOptional: false;
|
|
840
840
|
};
|
|
841
841
|
}>>;
|
|
842
|
-
InstancePausedEvent:
|
|
842
|
+
InstancePausedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
843
843
|
instanceId: {
|
|
844
|
-
type:
|
|
844
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
845
845
|
isOptional: false;
|
|
846
846
|
};
|
|
847
847
|
workflowId: {
|
|
848
|
-
type:
|
|
848
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
849
849
|
isOptional: false;
|
|
850
850
|
};
|
|
851
851
|
workflowKey: {
|
|
852
|
-
type:
|
|
852
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
853
853
|
isOptional: false;
|
|
854
854
|
};
|
|
855
855
|
status: {
|
|
856
|
-
type:
|
|
856
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
857
857
|
isOptional: false;
|
|
858
858
|
};
|
|
859
859
|
referenceId: {
|
|
860
|
-
type:
|
|
860
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
861
861
|
isOptional: true;
|
|
862
862
|
};
|
|
863
863
|
referenceType: {
|
|
864
|
-
type:
|
|
864
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
865
865
|
isOptional: true;
|
|
866
866
|
};
|
|
867
867
|
triggeredBy: {
|
|
868
|
-
type:
|
|
868
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
869
869
|
isOptional: false;
|
|
870
870
|
};
|
|
871
871
|
organizationId: {
|
|
872
|
-
type:
|
|
872
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
873
873
|
isOptional: false;
|
|
874
874
|
};
|
|
875
875
|
timestamp: {
|
|
876
|
-
type:
|
|
876
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
877
877
|
isOptional: false;
|
|
878
878
|
};
|
|
879
879
|
}>>;
|
|
880
|
-
InstanceResumedEvent:
|
|
880
|
+
InstanceResumedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
881
881
|
instanceId: {
|
|
882
|
-
type:
|
|
882
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
883
883
|
isOptional: false;
|
|
884
884
|
};
|
|
885
885
|
workflowId: {
|
|
886
|
-
type:
|
|
886
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
887
887
|
isOptional: false;
|
|
888
888
|
};
|
|
889
889
|
workflowKey: {
|
|
890
|
-
type:
|
|
890
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
891
891
|
isOptional: false;
|
|
892
892
|
};
|
|
893
893
|
status: {
|
|
894
|
-
type:
|
|
894
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
895
895
|
isOptional: false;
|
|
896
896
|
};
|
|
897
897
|
referenceId: {
|
|
898
|
-
type:
|
|
898
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
899
899
|
isOptional: true;
|
|
900
900
|
};
|
|
901
901
|
referenceType: {
|
|
902
|
-
type:
|
|
902
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
903
903
|
isOptional: true;
|
|
904
904
|
};
|
|
905
905
|
triggeredBy: {
|
|
906
|
-
type:
|
|
906
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
907
907
|
isOptional: false;
|
|
908
908
|
};
|
|
909
909
|
organizationId: {
|
|
910
|
-
type:
|
|
910
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
911
911
|
isOptional: false;
|
|
912
912
|
};
|
|
913
913
|
timestamp: {
|
|
914
|
-
type:
|
|
914
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
915
915
|
isOptional: false;
|
|
916
916
|
};
|
|
917
917
|
}>>;
|
|
918
|
-
InstanceFailedEvent:
|
|
918
|
+
InstanceFailedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
919
919
|
instanceId: {
|
|
920
|
-
type:
|
|
920
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
921
921
|
isOptional: false;
|
|
922
922
|
};
|
|
923
923
|
workflowId: {
|
|
924
|
-
type:
|
|
924
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
925
925
|
isOptional: false;
|
|
926
926
|
};
|
|
927
927
|
workflowKey: {
|
|
928
|
-
type:
|
|
928
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
929
929
|
isOptional: false;
|
|
930
930
|
};
|
|
931
931
|
status: {
|
|
932
|
-
type:
|
|
932
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
933
933
|
isOptional: false;
|
|
934
934
|
};
|
|
935
935
|
referenceId: {
|
|
936
|
-
type:
|
|
936
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
937
937
|
isOptional: true;
|
|
938
938
|
};
|
|
939
939
|
referenceType: {
|
|
940
|
-
type:
|
|
940
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
941
941
|
isOptional: true;
|
|
942
942
|
};
|
|
943
943
|
triggeredBy: {
|
|
944
|
-
type:
|
|
944
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
945
945
|
isOptional: false;
|
|
946
946
|
};
|
|
947
947
|
organizationId: {
|
|
948
|
-
type:
|
|
948
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
949
949
|
isOptional: false;
|
|
950
950
|
};
|
|
951
951
|
timestamp: {
|
|
952
|
-
type:
|
|
952
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
953
953
|
isOptional: false;
|
|
954
954
|
};
|
|
955
955
|
}>>;
|
|
956
|
-
InstanceTimedOutEvent:
|
|
956
|
+
InstanceTimedOutEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
957
957
|
instanceId: {
|
|
958
|
-
type:
|
|
958
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
959
959
|
isOptional: false;
|
|
960
960
|
};
|
|
961
961
|
workflowId: {
|
|
962
|
-
type:
|
|
962
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
963
963
|
isOptional: false;
|
|
964
964
|
};
|
|
965
965
|
workflowKey: {
|
|
966
|
-
type:
|
|
966
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
967
967
|
isOptional: false;
|
|
968
968
|
};
|
|
969
969
|
status: {
|
|
970
|
-
type:
|
|
970
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
971
971
|
isOptional: false;
|
|
972
972
|
};
|
|
973
973
|
referenceId: {
|
|
974
|
-
type:
|
|
974
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
975
975
|
isOptional: true;
|
|
976
976
|
};
|
|
977
977
|
referenceType: {
|
|
978
|
-
type:
|
|
978
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
979
979
|
isOptional: true;
|
|
980
980
|
};
|
|
981
981
|
triggeredBy: {
|
|
982
|
-
type:
|
|
982
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
983
983
|
isOptional: false;
|
|
984
984
|
};
|
|
985
985
|
organizationId: {
|
|
986
|
-
type:
|
|
986
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
987
987
|
isOptional: false;
|
|
988
988
|
};
|
|
989
989
|
timestamp: {
|
|
990
|
-
type:
|
|
990
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
991
991
|
isOptional: false;
|
|
992
992
|
};
|
|
993
993
|
}>>;
|
|
994
|
-
ApprovalRequestedEvent:
|
|
994
|
+
ApprovalRequestedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
995
995
|
requestId: {
|
|
996
|
-
type:
|
|
996
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
997
997
|
isOptional: false;
|
|
998
998
|
};
|
|
999
999
|
instanceId: {
|
|
1000
|
-
type:
|
|
1000
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1001
1001
|
isOptional: false;
|
|
1002
1002
|
};
|
|
1003
1003
|
workflowKey: {
|
|
1004
|
-
type:
|
|
1004
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1005
1005
|
isOptional: false;
|
|
1006
1006
|
};
|
|
1007
1007
|
approverId: {
|
|
1008
|
-
type:
|
|
1008
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1009
1009
|
isOptional: false;
|
|
1010
1010
|
};
|
|
1011
1011
|
approverRole: {
|
|
1012
|
-
type:
|
|
1012
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1013
1013
|
isOptional: true;
|
|
1014
1014
|
};
|
|
1015
1015
|
title: {
|
|
1016
|
-
type:
|
|
1016
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1017
1017
|
isOptional: false;
|
|
1018
1018
|
};
|
|
1019
1019
|
dueAt: {
|
|
1020
|
-
type:
|
|
1020
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
1021
1021
|
isOptional: true;
|
|
1022
1022
|
};
|
|
1023
1023
|
timestamp: {
|
|
1024
|
-
type:
|
|
1024
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
1025
1025
|
isOptional: false;
|
|
1026
1026
|
};
|
|
1027
1027
|
}>>;
|
|
1028
|
-
ApprovalDecidedEvent:
|
|
1028
|
+
ApprovalDecidedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
1029
1029
|
requestId: {
|
|
1030
|
-
type:
|
|
1030
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1031
1031
|
isOptional: false;
|
|
1032
1032
|
};
|
|
1033
1033
|
instanceId: {
|
|
1034
|
-
type:
|
|
1034
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1035
1035
|
isOptional: false;
|
|
1036
1036
|
};
|
|
1037
1037
|
decision: {
|
|
1038
|
-
type:
|
|
1038
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1039
1039
|
isOptional: false;
|
|
1040
1040
|
};
|
|
1041
1041
|
decidedBy: {
|
|
1042
|
-
type:
|
|
1042
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1043
1043
|
isOptional: false;
|
|
1044
1044
|
};
|
|
1045
1045
|
comment: {
|
|
1046
|
-
type:
|
|
1046
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1047
1047
|
isOptional: true;
|
|
1048
1048
|
};
|
|
1049
1049
|
timestamp: {
|
|
1050
|
-
type:
|
|
1050
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
1051
1051
|
isOptional: false;
|
|
1052
1052
|
};
|
|
1053
1053
|
}>>;
|
|
1054
|
-
ApprovalDelegatedEvent:
|
|
1054
|
+
ApprovalDelegatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
1055
1055
|
requestId: {
|
|
1056
|
-
type:
|
|
1056
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1057
1057
|
isOptional: false;
|
|
1058
1058
|
};
|
|
1059
1059
|
instanceId: {
|
|
1060
|
-
type:
|
|
1060
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1061
1061
|
isOptional: false;
|
|
1062
1062
|
};
|
|
1063
1063
|
fromUserId: {
|
|
1064
|
-
type:
|
|
1064
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1065
1065
|
isOptional: false;
|
|
1066
1066
|
};
|
|
1067
1067
|
toUserId: {
|
|
1068
|
-
type:
|
|
1068
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1069
1069
|
isOptional: false;
|
|
1070
1070
|
};
|
|
1071
1071
|
reason: {
|
|
1072
|
-
type:
|
|
1072
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1073
1073
|
isOptional: true;
|
|
1074
1074
|
};
|
|
1075
1075
|
timestamp: {
|
|
1076
|
-
type:
|
|
1076
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
1077
1077
|
isOptional: false;
|
|
1078
1078
|
};
|
|
1079
1079
|
}>>;
|
|
1080
|
-
ApprovalEscalatedEvent:
|
|
1080
|
+
ApprovalEscalatedEvent: _lssm_lib_contracts4.EventSpec<_lssm_lib_schema296.SchemaModel<{
|
|
1081
1081
|
requestId: {
|
|
1082
|
-
type:
|
|
1082
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1083
1083
|
isOptional: false;
|
|
1084
1084
|
};
|
|
1085
1085
|
instanceId: {
|
|
1086
|
-
type:
|
|
1086
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1087
1087
|
isOptional: false;
|
|
1088
1088
|
};
|
|
1089
1089
|
escalationLevel: {
|
|
1090
|
-
type:
|
|
1090
|
+
type: _lssm_lib_schema296.FieldType<number, number>;
|
|
1091
1091
|
isOptional: false;
|
|
1092
1092
|
};
|
|
1093
1093
|
escalatedTo: {
|
|
1094
|
-
type:
|
|
1094
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1095
1095
|
isOptional: false;
|
|
1096
1096
|
};
|
|
1097
1097
|
reason: {
|
|
1098
|
-
type:
|
|
1098
|
+
type: _lssm_lib_schema296.FieldType<string, string>;
|
|
1099
1099
|
isOptional: false;
|
|
1100
1100
|
};
|
|
1101
1101
|
timestamp: {
|
|
1102
|
-
type:
|
|
1102
|
+
type: _lssm_lib_schema296.FieldType<Date, string>;
|
|
1103
1103
|
isOptional: false;
|
|
1104
1104
|
};
|
|
1105
1105
|
}>>;
|