eventmodeler 0.6.0 → 0.6.2
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/index.js +7133 -34
- package/package.json +5 -4
- package/dist/api/client-config.js +0 -10
- package/dist/api/generated/client/client.gen.js +0 -235
- package/dist/api/generated/client/index.js +0 -6
- package/dist/api/generated/client/types.gen.js +0 -2
- package/dist/api/generated/client/utils.gen.js +0 -228
- package/dist/api/generated/client.gen.js +0 -4
- package/dist/api/generated/core/auth.gen.js +0 -14
- package/dist/api/generated/core/bodySerializer.gen.js +0 -57
- package/dist/api/generated/core/params.gen.js +0 -100
- package/dist/api/generated/core/pathSerializer.gen.js +0 -106
- package/dist/api/generated/core/queryKeySerializer.gen.js +0 -92
- package/dist/api/generated/core/serverSentEvents.gen.js +0 -133
- package/dist/api/generated/core/types.gen.js +0 -2
- package/dist/api/generated/core/utils.gen.js +0 -87
- package/dist/api/generated/index.js +0 -2
- package/dist/api/generated/sdk.gen.js +0 -4222
- package/dist/api/generated/types.gen.js +0 -2
- package/dist/api/generated/zod.gen.js +0 -7217
- package/dist/commands/add.js +0 -315
- package/dist/commands/auth.js +0 -14
- package/dist/commands/create.js +0 -192
- package/dist/commands/design.js +0 -108
- package/dist/commands/guide.js +0 -15
- package/dist/commands/init.js +0 -21
- package/dist/commands/list-schemas.js +0 -177
- package/dist/commands/list.js +0 -39
- package/dist/commands/loop.js +0 -101
- package/dist/commands/map.js +0 -40
- package/dist/commands/mark.js +0 -27
- package/dist/commands/move.js +0 -35
- package/dist/commands/remove.js +0 -170
- package/dist/commands/rename.js +0 -53
- package/dist/commands/resize.js +0 -30
- package/dist/commands/search.js +0 -14
- package/dist/commands/set.js +0 -199
- package/dist/commands/show-schemas.js +0 -259
- package/dist/commands/show.js +0 -56
- package/dist/commands/summary.js +0 -13
- package/dist/commands/update.js +0 -240
- package/dist/lib/auth.js +0 -331
- package/dist/lib/config.js +0 -80
- package/dist/lib/excalidraw-schema.js +0 -66
- package/dist/lib/globals.js +0 -8
- package/dist/lib/model.js +0 -11
- package/dist/lib/project-config.js +0 -103
- package/dist/lib/resolve.js +0 -59
- package/dist/lib/scenario.js +0 -15
- package/dist/slices/add-scenario/index.js +0 -103
- package/dist/slices/guide/guides/codegen.js +0 -339
- package/dist/slices/guide/guides/connect-slices.js +0 -202
- package/dist/slices/guide/guides/create-slices.js +0 -273
- package/dist/slices/guide/guides/explore.js +0 -238
- package/dist/slices/guide/guides/information-flow.js +0 -304
- package/dist/slices/guide/guides/scenarios.js +0 -214
- package/dist/slices/guide/index.js +0 -40
- package/dist/slices/help/index.js +0 -96
- package/dist/slices/help/topics/build-codegen.js +0 -109
- package/dist/slices/help/topics/build-slice.js +0 -147
- package/dist/slices/help/topics/check-completeness.js +0 -57
- package/dist/slices/help/topics/connect-slices.js +0 -99
- package/dist/slices/help/topics/explore-model.js +0 -112
- package/dist/slices/help/topics/json-reference.js +0 -188
- package/dist/slices/help/topics/linked-copies.js +0 -89
- package/dist/slices/help/topics/manipulate-canvas.js +0 -150
- package/dist/slices/help/topics/write-scenarios.js +0 -162
- package/dist/slices/init/index.js +0 -86
- package/dist/slices/init/loop.js +0 -60
- package/dist/slices/login/index.js +0 -20
- package/dist/slices/logout/index.js +0 -14
- package/dist/slices/open-app/index.js +0 -36
- package/dist/slices/whoami/index.js +0 -19
|
@@ -1,4222 +0,0 @@
|
|
|
1
|
-
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
-
import { client } from './client.gen';
|
|
3
|
-
/**
|
|
4
|
-
* Resize a swim lane
|
|
5
|
-
*/
|
|
6
|
-
export const resizeSwimLane = (options) => (options.client ?? client).post({
|
|
7
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
8
|
-
url: '/api/swim-lanes/resize-swim-lane',
|
|
9
|
-
...options,
|
|
10
|
-
headers: {
|
|
11
|
-
'Content-Type': 'application/json',
|
|
12
|
-
...options.headers
|
|
13
|
-
}
|
|
14
|
-
});
|
|
15
|
-
/**
|
|
16
|
-
* Rename a swim lane
|
|
17
|
-
*/
|
|
18
|
-
export const renameSwimLane = (options) => (options.client ?? client).post({
|
|
19
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
20
|
-
url: '/api/swim-lanes/rename-swim-lane',
|
|
21
|
-
...options,
|
|
22
|
-
headers: {
|
|
23
|
-
'Content-Type': 'application/json',
|
|
24
|
-
...options.headers
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
/**
|
|
28
|
-
* Remove a swim lane from the canvas
|
|
29
|
-
*/
|
|
30
|
-
export const removeSwimLane = (options) => (options.client ?? client).post({
|
|
31
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
32
|
-
url: '/api/swim-lanes/remove-swim-lane',
|
|
33
|
-
...options,
|
|
34
|
-
headers: {
|
|
35
|
-
'Content-Type': 'application/json',
|
|
36
|
-
...options.headers
|
|
37
|
-
}
|
|
38
|
-
});
|
|
39
|
-
/**
|
|
40
|
-
* Place a new swim lane on the canvas
|
|
41
|
-
*/
|
|
42
|
-
export const placeSwimLane = (options) => (options.client ?? client).post({
|
|
43
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
44
|
-
url: '/api/swim-lanes/place-swim-lane',
|
|
45
|
-
...options,
|
|
46
|
-
headers: {
|
|
47
|
-
'Content-Type': 'application/json',
|
|
48
|
-
...options.headers
|
|
49
|
-
}
|
|
50
|
-
});
|
|
51
|
-
/**
|
|
52
|
-
* Move a swim lane to a new position on the canvas
|
|
53
|
-
*/
|
|
54
|
-
export const moveSwimLane = (options) => (options.client ?? client).post({
|
|
55
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
56
|
-
url: '/api/swim-lanes/move-swim-lane',
|
|
57
|
-
...options,
|
|
58
|
-
headers: {
|
|
59
|
-
'Content-Type': 'application/json',
|
|
60
|
-
...options.headers
|
|
61
|
-
}
|
|
62
|
-
});
|
|
63
|
-
/**
|
|
64
|
-
* Resize a slice on the canvas
|
|
65
|
-
*/
|
|
66
|
-
export const resizeSlice = (options) => (options.client ?? client).post({
|
|
67
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
68
|
-
url: '/api/slices/resize-slice',
|
|
69
|
-
...options,
|
|
70
|
-
headers: {
|
|
71
|
-
'Content-Type': 'application/json',
|
|
72
|
-
...options.headers
|
|
73
|
-
}
|
|
74
|
-
});
|
|
75
|
-
/**
|
|
76
|
-
* Rename a slice
|
|
77
|
-
*/
|
|
78
|
-
export const renameSlice = (options) => (options.client ?? client).post({
|
|
79
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
80
|
-
url: '/api/slices/rename-slice',
|
|
81
|
-
...options,
|
|
82
|
-
headers: {
|
|
83
|
-
'Content-Type': 'application/json',
|
|
84
|
-
...options.headers
|
|
85
|
-
}
|
|
86
|
-
});
|
|
87
|
-
/**
|
|
88
|
-
* Remove a slice from the canvas
|
|
89
|
-
*/
|
|
90
|
-
export const removeSlice = (options) => (options.client ?? client).post({
|
|
91
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
92
|
-
url: '/api/slices/remove-slice',
|
|
93
|
-
...options,
|
|
94
|
-
headers: {
|
|
95
|
-
'Content-Type': 'application/json',
|
|
96
|
-
...options.headers
|
|
97
|
-
}
|
|
98
|
-
});
|
|
99
|
-
/**
|
|
100
|
-
* Place a new slice on the canvas
|
|
101
|
-
*/
|
|
102
|
-
export const placeSlice = (options) => (options.client ?? client).post({
|
|
103
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
104
|
-
url: '/api/slices/place-slice',
|
|
105
|
-
...options,
|
|
106
|
-
headers: {
|
|
107
|
-
'Content-Type': 'application/json',
|
|
108
|
-
...options.headers
|
|
109
|
-
}
|
|
110
|
-
});
|
|
111
|
-
/**
|
|
112
|
-
* Move a slice to a new position on the canvas
|
|
113
|
-
*/
|
|
114
|
-
export const moveSlice = (options) => (options.client ?? client).post({
|
|
115
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
116
|
-
url: '/api/slices/move-slice',
|
|
117
|
-
...options,
|
|
118
|
-
headers: {
|
|
119
|
-
'Content-Type': 'application/json',
|
|
120
|
-
...options.headers
|
|
121
|
-
}
|
|
122
|
-
});
|
|
123
|
-
/**
|
|
124
|
-
* Mark a slice as planned
|
|
125
|
-
*/
|
|
126
|
-
export const markSliceAsPlanned = (options) => (options.client ?? client).post({
|
|
127
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
128
|
-
url: '/api/slices/mark-slice-as-planned',
|
|
129
|
-
...options,
|
|
130
|
-
headers: {
|
|
131
|
-
'Content-Type': 'application/json',
|
|
132
|
-
...options.headers
|
|
133
|
-
}
|
|
134
|
-
});
|
|
135
|
-
/**
|
|
136
|
-
* Mark a slice as in progress
|
|
137
|
-
*/
|
|
138
|
-
export const markSliceAsInProgress = (options) => (options.client ?? client).post({
|
|
139
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
140
|
-
url: '/api/slices/mark-slice-as-in-progress',
|
|
141
|
-
...options,
|
|
142
|
-
headers: {
|
|
143
|
-
'Content-Type': 'application/json',
|
|
144
|
-
...options.headers
|
|
145
|
-
}
|
|
146
|
-
});
|
|
147
|
-
/**
|
|
148
|
-
* Mark a slice as done
|
|
149
|
-
*/
|
|
150
|
-
export const markSliceAsDone = (options) => (options.client ?? client).post({
|
|
151
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
152
|
-
url: '/api/slices/mark-slice-as-done',
|
|
153
|
-
...options,
|
|
154
|
-
headers: {
|
|
155
|
-
'Content-Type': 'application/json',
|
|
156
|
-
...options.headers
|
|
157
|
-
}
|
|
158
|
-
});
|
|
159
|
-
/**
|
|
160
|
-
* Mark a slice as created
|
|
161
|
-
*/
|
|
162
|
-
export const markSliceAsCreated = (options) => (options.client ?? client).post({
|
|
163
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
164
|
-
url: '/api/slices/mark-slice-as-created',
|
|
165
|
-
...options,
|
|
166
|
-
headers: {
|
|
167
|
-
'Content-Type': 'application/json',
|
|
168
|
-
...options.headers
|
|
169
|
-
}
|
|
170
|
-
});
|
|
171
|
-
/**
|
|
172
|
-
* Mark a slice as blocked
|
|
173
|
-
*/
|
|
174
|
-
export const markSliceAsBlocked = (options) => (options.client ?? client).post({
|
|
175
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
176
|
-
url: '/api/slices/mark-slice-as-blocked',
|
|
177
|
-
...options,
|
|
178
|
-
headers: {
|
|
179
|
-
'Content-Type': 'application/json',
|
|
180
|
-
...options.headers
|
|
181
|
-
}
|
|
182
|
-
});
|
|
183
|
-
/**
|
|
184
|
-
* Replace readmodel-to-screen flow with a linked copy
|
|
185
|
-
*/
|
|
186
|
-
export const replaceReadModelToScreenFlowWithCopy = (options) => (options.client ?? client).post({
|
|
187
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
188
|
-
url: '/api/shortcuts/replace-read-model-to-screen-flow-with-copy',
|
|
189
|
-
...options,
|
|
190
|
-
headers: {
|
|
191
|
-
'Content-Type': 'application/json',
|
|
192
|
-
...options.headers
|
|
193
|
-
}
|
|
194
|
-
});
|
|
195
|
-
/**
|
|
196
|
-
* Replace event-to-readmodel flow with a linked copy
|
|
197
|
-
*/
|
|
198
|
-
export const replaceEventToReadModelFlowWithCopy = (options) => (options.client ?? client).post({
|
|
199
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
200
|
-
url: '/api/shortcuts/replace-event-to-read-model-flow-with-copy',
|
|
201
|
-
...options,
|
|
202
|
-
headers: {
|
|
203
|
-
'Content-Type': 'application/json',
|
|
204
|
-
...options.headers
|
|
205
|
-
}
|
|
206
|
-
});
|
|
207
|
-
/**
|
|
208
|
-
* Remove multiple elements at once
|
|
209
|
-
*/
|
|
210
|
-
export const removeMultipleElements = (options) => (options.client ?? client).post({
|
|
211
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
212
|
-
url: '/api/shortcuts/remove-multiple-elements',
|
|
213
|
-
...options,
|
|
214
|
-
headers: {
|
|
215
|
-
'Content-Type': 'application/json',
|
|
216
|
-
...options.headers
|
|
217
|
-
}
|
|
218
|
-
});
|
|
219
|
-
/**
|
|
220
|
-
* Quick-place a screen from a read model and create the flow
|
|
221
|
-
*/
|
|
222
|
-
export const quickPlaceScreenFromReadModel = (options) => (options.client ?? client).post({
|
|
223
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
224
|
-
url: '/api/shortcuts/quick-place-screen-from-read-model',
|
|
225
|
-
...options,
|
|
226
|
-
headers: {
|
|
227
|
-
'Content-Type': 'application/json',
|
|
228
|
-
...options.headers
|
|
229
|
-
}
|
|
230
|
-
});
|
|
231
|
-
/**
|
|
232
|
-
* Quick-place a read model from an event and create the flow
|
|
233
|
-
*/
|
|
234
|
-
export const quickPlaceReadModelFromEvent = (options) => (options.client ?? client).post({
|
|
235
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
236
|
-
url: '/api/shortcuts/quick-place-read-model-from-event',
|
|
237
|
-
...options,
|
|
238
|
-
headers: {
|
|
239
|
-
'Content-Type': 'application/json',
|
|
240
|
-
...options.headers
|
|
241
|
-
}
|
|
242
|
-
});
|
|
243
|
-
/**
|
|
244
|
-
* Quick-place an event from a command and create the flow
|
|
245
|
-
*/
|
|
246
|
-
export const quickPlaceEventFromCommand = (options) => (options.client ?? client).post({
|
|
247
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
248
|
-
url: '/api/shortcuts/quick-place-event-from-command',
|
|
249
|
-
...options,
|
|
250
|
-
headers: {
|
|
251
|
-
'Content-Type': 'application/json',
|
|
252
|
-
...options.headers
|
|
253
|
-
}
|
|
254
|
-
});
|
|
255
|
-
/**
|
|
256
|
-
* Quick-place a command from a screen and create the flow
|
|
257
|
-
*/
|
|
258
|
-
export const quickPlaceCommandFromScreen = (options) => (options.client ?? client).post({
|
|
259
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
260
|
-
url: '/api/shortcuts/quick-place-command-from-screen',
|
|
261
|
-
...options,
|
|
262
|
-
headers: {
|
|
263
|
-
'Content-Type': 'application/json',
|
|
264
|
-
...options.headers
|
|
265
|
-
}
|
|
266
|
-
});
|
|
267
|
-
/**
|
|
268
|
-
* Quick-place a command from a processor and create the flow
|
|
269
|
-
*/
|
|
270
|
-
export const quickPlaceCommandFromProcessor = (options) => (options.client ?? client).post({
|
|
271
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
272
|
-
url: '/api/shortcuts/quick-place-command-from-processor',
|
|
273
|
-
...options,
|
|
274
|
-
headers: {
|
|
275
|
-
'Content-Type': 'application/json',
|
|
276
|
-
...options.headers
|
|
277
|
-
}
|
|
278
|
-
});
|
|
279
|
-
/**
|
|
280
|
-
* Propagate fields from screen to read model
|
|
281
|
-
*/
|
|
282
|
-
export const propagateFieldsScreenToReadModel = (options) => (options.client ?? client).post({
|
|
283
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
284
|
-
url: '/api/shortcuts/propagate-fields-screen-to-read-model',
|
|
285
|
-
...options,
|
|
286
|
-
headers: {
|
|
287
|
-
'Content-Type': 'application/json',
|
|
288
|
-
...options.headers
|
|
289
|
-
}
|
|
290
|
-
});
|
|
291
|
-
/**
|
|
292
|
-
* Propagate fields from screen to read model (linked copy aware)
|
|
293
|
-
*/
|
|
294
|
-
export const propagateFieldsScreenToReadModelLinkedCopy = (options) => (options.client ?? client).post({
|
|
295
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
296
|
-
url: '/api/shortcuts/propagate-fields-screen-to-read-model-linked-copy',
|
|
297
|
-
...options,
|
|
298
|
-
headers: {
|
|
299
|
-
'Content-Type': 'application/json',
|
|
300
|
-
...options.headers
|
|
301
|
-
}
|
|
302
|
-
});
|
|
303
|
-
/**
|
|
304
|
-
* Propagate fields from screen to command
|
|
305
|
-
*/
|
|
306
|
-
export const propagateFieldsScreenToCommand = (options) => (options.client ?? client).post({
|
|
307
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
308
|
-
url: '/api/shortcuts/propagate-fields-screen-to-command',
|
|
309
|
-
...options,
|
|
310
|
-
headers: {
|
|
311
|
-
'Content-Type': 'application/json',
|
|
312
|
-
...options.headers
|
|
313
|
-
}
|
|
314
|
-
});
|
|
315
|
-
/**
|
|
316
|
-
* Propagate fields from screen to command (linked copy aware)
|
|
317
|
-
*/
|
|
318
|
-
export const propagateFieldsScreenToCommandLinkedCopy = (options) => (options.client ?? client).post({
|
|
319
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
320
|
-
url: '/api/shortcuts/propagate-fields-screen-to-command-linked-copy',
|
|
321
|
-
...options,
|
|
322
|
-
headers: {
|
|
323
|
-
'Content-Type': 'application/json',
|
|
324
|
-
...options.headers
|
|
325
|
-
}
|
|
326
|
-
});
|
|
327
|
-
/**
|
|
328
|
-
* Propagate fields from read model to screen
|
|
329
|
-
*/
|
|
330
|
-
export const propagateFieldsReadModelToScreen = (options) => (options.client ?? client).post({
|
|
331
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
332
|
-
url: '/api/shortcuts/propagate-fields-read-model-to-screen',
|
|
333
|
-
...options,
|
|
334
|
-
headers: {
|
|
335
|
-
'Content-Type': 'application/json',
|
|
336
|
-
...options.headers
|
|
337
|
-
}
|
|
338
|
-
});
|
|
339
|
-
/**
|
|
340
|
-
* Propagate fields from read model to screen (linked copy aware)
|
|
341
|
-
*/
|
|
342
|
-
export const propagateFieldsReadModelToScreenLinkedCopy = (options) => (options.client ?? client).post({
|
|
343
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
344
|
-
url: '/api/shortcuts/propagate-fields-read-model-to-screen-linked-copy',
|
|
345
|
-
...options,
|
|
346
|
-
headers: {
|
|
347
|
-
'Content-Type': 'application/json',
|
|
348
|
-
...options.headers
|
|
349
|
-
}
|
|
350
|
-
});
|
|
351
|
-
/**
|
|
352
|
-
* Propagate fields from read model to processor
|
|
353
|
-
*/
|
|
354
|
-
export const propagateFieldsReadModelToProcessor = (options) => (options.client ?? client).post({
|
|
355
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
356
|
-
url: '/api/shortcuts/propagate-fields-read-model-to-processor',
|
|
357
|
-
...options,
|
|
358
|
-
headers: {
|
|
359
|
-
'Content-Type': 'application/json',
|
|
360
|
-
...options.headers
|
|
361
|
-
}
|
|
362
|
-
});
|
|
363
|
-
/**
|
|
364
|
-
* Propagate fields from read model to processor (linked copy aware)
|
|
365
|
-
*/
|
|
366
|
-
export const propagateFieldsReadModelToProcessorLinkedCopy = (options) => (options.client ?? client).post({
|
|
367
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
368
|
-
url: '/api/shortcuts/propagate-fields-read-model-to-processor-linked-copy',
|
|
369
|
-
...options,
|
|
370
|
-
headers: {
|
|
371
|
-
'Content-Type': 'application/json',
|
|
372
|
-
...options.headers
|
|
373
|
-
}
|
|
374
|
-
});
|
|
375
|
-
/**
|
|
376
|
-
* Propagate fields from read model to event
|
|
377
|
-
*/
|
|
378
|
-
export const propagateFieldsReadModelToEvent = (options) => (options.client ?? client).post({
|
|
379
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
380
|
-
url: '/api/shortcuts/propagate-fields-read-model-to-event',
|
|
381
|
-
...options,
|
|
382
|
-
headers: {
|
|
383
|
-
'Content-Type': 'application/json',
|
|
384
|
-
...options.headers
|
|
385
|
-
}
|
|
386
|
-
});
|
|
387
|
-
/**
|
|
388
|
-
* Propagate fields from read model to event (linked copy aware)
|
|
389
|
-
*/
|
|
390
|
-
export const propagateFieldsReadModelToEventLinkedCopy = (options) => (options.client ?? client).post({
|
|
391
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
392
|
-
url: '/api/shortcuts/propagate-fields-read-model-to-event-linked-copy',
|
|
393
|
-
...options,
|
|
394
|
-
headers: {
|
|
395
|
-
'Content-Type': 'application/json',
|
|
396
|
-
...options.headers
|
|
397
|
-
}
|
|
398
|
-
});
|
|
399
|
-
/**
|
|
400
|
-
* Propagate fields from processor to read model
|
|
401
|
-
*/
|
|
402
|
-
export const propagateFieldsProcessorToReadModel = (options) => (options.client ?? client).post({
|
|
403
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
404
|
-
url: '/api/shortcuts/propagate-fields-processor-to-read-model',
|
|
405
|
-
...options,
|
|
406
|
-
headers: {
|
|
407
|
-
'Content-Type': 'application/json',
|
|
408
|
-
...options.headers
|
|
409
|
-
}
|
|
410
|
-
});
|
|
411
|
-
/**
|
|
412
|
-
* Propagate fields from processor to read model (linked copy aware)
|
|
413
|
-
*/
|
|
414
|
-
export const propagateFieldsProcessorToReadModelLinkedCopy = (options) => (options.client ?? client).post({
|
|
415
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
416
|
-
url: '/api/shortcuts/propagate-fields-processor-to-read-model-linked-copy',
|
|
417
|
-
...options,
|
|
418
|
-
headers: {
|
|
419
|
-
'Content-Type': 'application/json',
|
|
420
|
-
...options.headers
|
|
421
|
-
}
|
|
422
|
-
});
|
|
423
|
-
/**
|
|
424
|
-
* Propagate fields from processor to external event
|
|
425
|
-
*/
|
|
426
|
-
export const propagateFieldsProcessorToExternalEvent = (options) => (options.client ?? client).post({
|
|
427
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
428
|
-
url: '/api/shortcuts/propagate-fields-processor-to-external-event',
|
|
429
|
-
...options,
|
|
430
|
-
headers: {
|
|
431
|
-
'Content-Type': 'application/json',
|
|
432
|
-
...options.headers
|
|
433
|
-
}
|
|
434
|
-
});
|
|
435
|
-
/**
|
|
436
|
-
* Propagate fields from processor to external event (linked copy aware)
|
|
437
|
-
*/
|
|
438
|
-
export const propagateFieldsProcessorToExternalEventLinkedCopy = (options) => (options.client ?? client).post({
|
|
439
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
440
|
-
url: '/api/shortcuts/propagate-fields-processor-to-external-event-linked-copy',
|
|
441
|
-
...options,
|
|
442
|
-
headers: {
|
|
443
|
-
'Content-Type': 'application/json',
|
|
444
|
-
...options.headers
|
|
445
|
-
}
|
|
446
|
-
});
|
|
447
|
-
/**
|
|
448
|
-
* Propagate fields from processor to command
|
|
449
|
-
*/
|
|
450
|
-
export const propagateFieldsProcessorToCommand = (options) => (options.client ?? client).post({
|
|
451
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
452
|
-
url: '/api/shortcuts/propagate-fields-processor-to-command',
|
|
453
|
-
...options,
|
|
454
|
-
headers: {
|
|
455
|
-
'Content-Type': 'application/json',
|
|
456
|
-
...options.headers
|
|
457
|
-
}
|
|
458
|
-
});
|
|
459
|
-
/**
|
|
460
|
-
* Propagate fields from external event to processor
|
|
461
|
-
*/
|
|
462
|
-
export const propagateFieldsExternalEventToProcessor = (options) => (options.client ?? client).post({
|
|
463
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
464
|
-
url: '/api/shortcuts/propagate-fields-external-event-to-processor',
|
|
465
|
-
...options,
|
|
466
|
-
headers: {
|
|
467
|
-
'Content-Type': 'application/json',
|
|
468
|
-
...options.headers
|
|
469
|
-
}
|
|
470
|
-
});
|
|
471
|
-
/**
|
|
472
|
-
* Propagate fields from external event to processor (linked copy aware)
|
|
473
|
-
*/
|
|
474
|
-
export const propagateFieldsExternalEventToProcessorLinkedCopy = (options) => (options.client ?? client).post({
|
|
475
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
476
|
-
url: '/api/shortcuts/propagate-fields-external-event-to-processor-linked-copy',
|
|
477
|
-
...options,
|
|
478
|
-
headers: {
|
|
479
|
-
'Content-Type': 'application/json',
|
|
480
|
-
...options.headers
|
|
481
|
-
}
|
|
482
|
-
});
|
|
483
|
-
/**
|
|
484
|
-
* Propagate fields from external event to command
|
|
485
|
-
*/
|
|
486
|
-
export const propagateFieldsExternalEventToCommand = (options) => (options.client ?? client).post({
|
|
487
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
488
|
-
url: '/api/shortcuts/propagate-fields-external-event-to-command',
|
|
489
|
-
...options,
|
|
490
|
-
headers: {
|
|
491
|
-
'Content-Type': 'application/json',
|
|
492
|
-
...options.headers
|
|
493
|
-
}
|
|
494
|
-
});
|
|
495
|
-
/**
|
|
496
|
-
* Propagate fields from external event to command (linked copy aware)
|
|
497
|
-
*/
|
|
498
|
-
export const propagateFieldsExternalEventToCommandLinkedCopy = (options) => (options.client ?? client).post({
|
|
499
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
500
|
-
url: '/api/shortcuts/propagate-fields-external-event-to-command-linked-copy',
|
|
501
|
-
...options,
|
|
502
|
-
headers: {
|
|
503
|
-
'Content-Type': 'application/json',
|
|
504
|
-
...options.headers
|
|
505
|
-
}
|
|
506
|
-
});
|
|
507
|
-
/**
|
|
508
|
-
* Propagate fields from event to read model
|
|
509
|
-
*/
|
|
510
|
-
export const propagateFieldsEventToReadModel = (options) => (options.client ?? client).post({
|
|
511
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
512
|
-
url: '/api/shortcuts/propagate-fields-event-to-read-model',
|
|
513
|
-
...options,
|
|
514
|
-
headers: {
|
|
515
|
-
'Content-Type': 'application/json',
|
|
516
|
-
...options.headers
|
|
517
|
-
}
|
|
518
|
-
});
|
|
519
|
-
/**
|
|
520
|
-
* Propagate fields from event to read model (linked copy aware)
|
|
521
|
-
*/
|
|
522
|
-
export const propagateFieldsEventToReadModelLinkedCopy = (options) => (options.client ?? client).post({
|
|
523
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
524
|
-
url: '/api/shortcuts/propagate-fields-event-to-read-model-linked-copy',
|
|
525
|
-
...options,
|
|
526
|
-
headers: {
|
|
527
|
-
'Content-Type': 'application/json',
|
|
528
|
-
...options.headers
|
|
529
|
-
}
|
|
530
|
-
});
|
|
531
|
-
/**
|
|
532
|
-
* Propagate fields from event to command
|
|
533
|
-
*/
|
|
534
|
-
export const propagateFieldsEventToCommand = (options) => (options.client ?? client).post({
|
|
535
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
536
|
-
url: '/api/shortcuts/propagate-fields-event-to-command',
|
|
537
|
-
...options,
|
|
538
|
-
headers: {
|
|
539
|
-
'Content-Type': 'application/json',
|
|
540
|
-
...options.headers
|
|
541
|
-
}
|
|
542
|
-
});
|
|
543
|
-
/**
|
|
544
|
-
* Propagate fields from event to command (linked copy aware)
|
|
545
|
-
*/
|
|
546
|
-
export const propagateFieldsEventToCommandLinkedCopy = (options) => (options.client ?? client).post({
|
|
547
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
548
|
-
url: '/api/shortcuts/propagate-fields-event-to-command-linked-copy',
|
|
549
|
-
...options,
|
|
550
|
-
headers: {
|
|
551
|
-
'Content-Type': 'application/json',
|
|
552
|
-
...options.headers
|
|
553
|
-
}
|
|
554
|
-
});
|
|
555
|
-
/**
|
|
556
|
-
* Propagate fields from command to screen
|
|
557
|
-
*/
|
|
558
|
-
export const propagateFieldsCommandToScreen = (options) => (options.client ?? client).post({
|
|
559
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
560
|
-
url: '/api/shortcuts/propagate-fields-command-to-screen',
|
|
561
|
-
...options,
|
|
562
|
-
headers: {
|
|
563
|
-
'Content-Type': 'application/json',
|
|
564
|
-
...options.headers
|
|
565
|
-
}
|
|
566
|
-
});
|
|
567
|
-
/**
|
|
568
|
-
* Propagate fields from command to screen (linked copy aware)
|
|
569
|
-
*/
|
|
570
|
-
export const propagateFieldsCommandToScreenLinkedCopy = (options) => (options.client ?? client).post({
|
|
571
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
572
|
-
url: '/api/shortcuts/propagate-fields-command-to-screen-linked-copy',
|
|
573
|
-
...options,
|
|
574
|
-
headers: {
|
|
575
|
-
'Content-Type': 'application/json',
|
|
576
|
-
...options.headers
|
|
577
|
-
}
|
|
578
|
-
});
|
|
579
|
-
/**
|
|
580
|
-
* Propagate fields from command to processor
|
|
581
|
-
*/
|
|
582
|
-
export const propagateFieldsCommandToProcessor = (options) => (options.client ?? client).post({
|
|
583
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
584
|
-
url: '/api/shortcuts/propagate-fields-command-to-processor',
|
|
585
|
-
...options,
|
|
586
|
-
headers: {
|
|
587
|
-
'Content-Type': 'application/json',
|
|
588
|
-
...options.headers
|
|
589
|
-
}
|
|
590
|
-
});
|
|
591
|
-
/**
|
|
592
|
-
* Propagate fields from command to external event
|
|
593
|
-
*/
|
|
594
|
-
export const propagateFieldsCommandToExternalEvent = (options) => (options.client ?? client).post({
|
|
595
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
596
|
-
url: '/api/shortcuts/propagate-fields-command-to-external-event',
|
|
597
|
-
...options,
|
|
598
|
-
headers: {
|
|
599
|
-
'Content-Type': 'application/json',
|
|
600
|
-
...options.headers
|
|
601
|
-
}
|
|
602
|
-
});
|
|
603
|
-
/**
|
|
604
|
-
* Propagate fields from command to external event (linked copy aware)
|
|
605
|
-
*/
|
|
606
|
-
export const propagateFieldsCommandToExternalEventLinkedCopy = (options) => (options.client ?? client).post({
|
|
607
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
608
|
-
url: '/api/shortcuts/propagate-fields-command-to-external-event-linked-copy',
|
|
609
|
-
...options,
|
|
610
|
-
headers: {
|
|
611
|
-
'Content-Type': 'application/json',
|
|
612
|
-
...options.headers
|
|
613
|
-
}
|
|
614
|
-
});
|
|
615
|
-
/**
|
|
616
|
-
* Propagate fields from command to event
|
|
617
|
-
*/
|
|
618
|
-
export const propagateFieldsCommandToEvent = (options) => (options.client ?? client).post({
|
|
619
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
620
|
-
url: '/api/shortcuts/propagate-fields-command-to-event',
|
|
621
|
-
...options,
|
|
622
|
-
headers: {
|
|
623
|
-
'Content-Type': 'application/json',
|
|
624
|
-
...options.headers
|
|
625
|
-
}
|
|
626
|
-
});
|
|
627
|
-
/**
|
|
628
|
-
* Propagate fields from command to event (linked copy aware)
|
|
629
|
-
*/
|
|
630
|
-
export const propagateFieldsCommandToEventLinkedCopy = (options) => (options.client ?? client).post({
|
|
631
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
632
|
-
url: '/api/shortcuts/propagate-fields-command-to-event-linked-copy',
|
|
633
|
-
...options,
|
|
634
|
-
headers: {
|
|
635
|
-
'Content-Type': 'application/json',
|
|
636
|
-
...options.headers
|
|
637
|
-
}
|
|
638
|
-
});
|
|
639
|
-
/**
|
|
640
|
-
* Move multiple elements at once
|
|
641
|
-
*/
|
|
642
|
-
export const moveMultipleStickies = (options) => (options.client ?? client).post({
|
|
643
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
644
|
-
url: '/api/shortcuts/move-multiple-stickies',
|
|
645
|
-
...options,
|
|
646
|
-
headers: {
|
|
647
|
-
'Content-Type': 'application/json',
|
|
648
|
-
...options.headers
|
|
649
|
-
}
|
|
650
|
-
});
|
|
651
|
-
/**
|
|
652
|
-
* Create a complete slice with elements and flows
|
|
653
|
-
*/
|
|
654
|
-
export const createSlice = (options) => (options.client ?? client).post({
|
|
655
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
656
|
-
url: '/api/shortcuts/create-slice',
|
|
657
|
-
...options,
|
|
658
|
-
headers: {
|
|
659
|
-
'Content-Type': 'application/json',
|
|
660
|
-
...options.headers
|
|
661
|
-
}
|
|
662
|
-
});
|
|
663
|
-
/**
|
|
664
|
-
* Create a complete scenario with given/when/then entries and field values in one shot
|
|
665
|
-
*/
|
|
666
|
-
export const createScenario = (options) => (options.client ?? client).post({
|
|
667
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
668
|
-
url: '/api/shortcuts/create-scenario',
|
|
669
|
-
...options,
|
|
670
|
-
headers: {
|
|
671
|
-
'Content-Type': 'application/json',
|
|
672
|
-
...options.headers
|
|
673
|
-
}
|
|
674
|
-
});
|
|
675
|
-
/**
|
|
676
|
-
* Update screen design (Excalidraw JSON)
|
|
677
|
-
*/
|
|
678
|
-
export const updateScreenDesign = (options) => (options.client ?? client).post({
|
|
679
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
680
|
-
url: '/api/screens/update-screen-design',
|
|
681
|
-
...options,
|
|
682
|
-
headers: {
|
|
683
|
-
'Content-Type': 'application/json',
|
|
684
|
-
...options.headers
|
|
685
|
-
}
|
|
686
|
-
});
|
|
687
|
-
/**
|
|
688
|
-
* UnmarkScreenSubfieldAsUserInput
|
|
689
|
-
*/
|
|
690
|
-
export const unmarkScreenSubfieldAsUserInput = (options) => (options.client ?? client).post({
|
|
691
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
692
|
-
url: '/api/screens/unmark-screen-subfield-as-user-input',
|
|
693
|
-
...options,
|
|
694
|
-
headers: {
|
|
695
|
-
'Content-Type': 'application/json',
|
|
696
|
-
...options.headers
|
|
697
|
-
}
|
|
698
|
-
});
|
|
699
|
-
/**
|
|
700
|
-
* UnmarkScreenSubfieldAsOptional
|
|
701
|
-
*/
|
|
702
|
-
export const unmarkScreenSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
703
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
704
|
-
url: '/api/screens/unmark-screen-subfield-as-optional',
|
|
705
|
-
...options,
|
|
706
|
-
headers: {
|
|
707
|
-
'Content-Type': 'application/json',
|
|
708
|
-
...options.headers
|
|
709
|
-
}
|
|
710
|
-
});
|
|
711
|
-
/**
|
|
712
|
-
* UnmarkScreenSubfieldAsList
|
|
713
|
-
*/
|
|
714
|
-
export const unmarkScreenSubfieldAsList = (options) => (options.client ?? client).post({
|
|
715
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
716
|
-
url: '/api/screens/unmark-screen-subfield-as-list',
|
|
717
|
-
...options,
|
|
718
|
-
headers: {
|
|
719
|
-
'Content-Type': 'application/json',
|
|
720
|
-
...options.headers
|
|
721
|
-
}
|
|
722
|
-
});
|
|
723
|
-
/**
|
|
724
|
-
* UnmarkScreenSubfieldAsGenerated
|
|
725
|
-
*/
|
|
726
|
-
export const unmarkScreenSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
727
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
728
|
-
url: '/api/screens/unmark-screen-subfield-as-generated',
|
|
729
|
-
...options,
|
|
730
|
-
headers: {
|
|
731
|
-
'Content-Type': 'application/json',
|
|
732
|
-
...options.headers
|
|
733
|
-
}
|
|
734
|
-
});
|
|
735
|
-
/**
|
|
736
|
-
* UnmarkScreenFieldAsUserInput
|
|
737
|
-
*/
|
|
738
|
-
export const unmarkScreenFieldAsUserInput = (options) => (options.client ?? client).post({
|
|
739
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
740
|
-
url: '/api/screens/unmark-screen-field-as-user-input',
|
|
741
|
-
...options,
|
|
742
|
-
headers: {
|
|
743
|
-
'Content-Type': 'application/json',
|
|
744
|
-
...options.headers
|
|
745
|
-
}
|
|
746
|
-
});
|
|
747
|
-
/**
|
|
748
|
-
* UnmarkScreenFieldAsOptional
|
|
749
|
-
*/
|
|
750
|
-
export const unmarkScreenFieldAsOptional = (options) => (options.client ?? client).post({
|
|
751
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
752
|
-
url: '/api/screens/unmark-screen-field-as-optional',
|
|
753
|
-
...options,
|
|
754
|
-
headers: {
|
|
755
|
-
'Content-Type': 'application/json',
|
|
756
|
-
...options.headers
|
|
757
|
-
}
|
|
758
|
-
});
|
|
759
|
-
/**
|
|
760
|
-
* UnmarkScreenFieldAsList
|
|
761
|
-
*/
|
|
762
|
-
export const unmarkScreenFieldAsList = (options) => (options.client ?? client).post({
|
|
763
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
764
|
-
url: '/api/screens/unmark-screen-field-as-list',
|
|
765
|
-
...options,
|
|
766
|
-
headers: {
|
|
767
|
-
'Content-Type': 'application/json',
|
|
768
|
-
...options.headers
|
|
769
|
-
}
|
|
770
|
-
});
|
|
771
|
-
/**
|
|
772
|
-
* UnmarkScreenFieldAsGenerated
|
|
773
|
-
*/
|
|
774
|
-
export const unmarkScreenFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
775
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
776
|
-
url: '/api/screens/unmark-screen-field-as-generated',
|
|
777
|
-
...options,
|
|
778
|
-
headers: {
|
|
779
|
-
'Content-Type': 'application/json',
|
|
780
|
-
...options.headers
|
|
781
|
-
}
|
|
782
|
-
});
|
|
783
|
-
/**
|
|
784
|
-
* ReorderScreenSubfield
|
|
785
|
-
*/
|
|
786
|
-
export const reorderScreenSubfield = (options) => (options.client ?? client).post({
|
|
787
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
788
|
-
url: '/api/screens/reorder-screen-subfield',
|
|
789
|
-
...options,
|
|
790
|
-
headers: {
|
|
791
|
-
'Content-Type': 'application/json',
|
|
792
|
-
...options.headers
|
|
793
|
-
}
|
|
794
|
-
});
|
|
795
|
-
/**
|
|
796
|
-
* ReorderScreenField
|
|
797
|
-
*/
|
|
798
|
-
export const reorderScreenField = (options) => (options.client ?? client).post({
|
|
799
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
800
|
-
url: '/api/screens/reorder-screen-field',
|
|
801
|
-
...options,
|
|
802
|
-
headers: {
|
|
803
|
-
'Content-Type': 'application/json',
|
|
804
|
-
...options.headers
|
|
805
|
-
}
|
|
806
|
-
});
|
|
807
|
-
/**
|
|
808
|
-
* Rename a screen
|
|
809
|
-
*/
|
|
810
|
-
export const renameScreen = (options) => (options.client ?? client).post({
|
|
811
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
812
|
-
url: '/api/screens/rename-screen',
|
|
813
|
-
...options,
|
|
814
|
-
headers: {
|
|
815
|
-
'Content-Type': 'application/json',
|
|
816
|
-
...options.headers
|
|
817
|
-
}
|
|
818
|
-
});
|
|
819
|
-
/**
|
|
820
|
-
* RenameScreenSubfield
|
|
821
|
-
*/
|
|
822
|
-
export const renameScreenSubfield = (options) => (options.client ?? client).post({
|
|
823
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
824
|
-
url: '/api/screens/rename-screen-subfield',
|
|
825
|
-
...options,
|
|
826
|
-
headers: {
|
|
827
|
-
'Content-Type': 'application/json',
|
|
828
|
-
...options.headers
|
|
829
|
-
}
|
|
830
|
-
});
|
|
831
|
-
/**
|
|
832
|
-
* RenameScreenField
|
|
833
|
-
*/
|
|
834
|
-
export const renameScreenField = (options) => (options.client ?? client).post({
|
|
835
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
836
|
-
url: '/api/screens/rename-screen-field',
|
|
837
|
-
...options,
|
|
838
|
-
headers: {
|
|
839
|
-
'Content-Type': 'application/json',
|
|
840
|
-
...options.headers
|
|
841
|
-
}
|
|
842
|
-
});
|
|
843
|
-
/**
|
|
844
|
-
* Remove a screen from the canvas
|
|
845
|
-
*/
|
|
846
|
-
export const removeScreen = (options) => (options.client ?? client).post({
|
|
847
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
848
|
-
url: '/api/screens/remove-screen',
|
|
849
|
-
...options,
|
|
850
|
-
headers: {
|
|
851
|
-
'Content-Type': 'application/json',
|
|
852
|
-
...options.headers
|
|
853
|
-
}
|
|
854
|
-
});
|
|
855
|
-
/**
|
|
856
|
-
* RemoveScreenSubfield
|
|
857
|
-
*/
|
|
858
|
-
export const removeScreenSubfield = (options) => (options.client ?? client).post({
|
|
859
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
860
|
-
url: '/api/screens/remove-screen-subfield',
|
|
861
|
-
...options,
|
|
862
|
-
headers: {
|
|
863
|
-
'Content-Type': 'application/json',
|
|
864
|
-
...options.headers
|
|
865
|
-
}
|
|
866
|
-
});
|
|
867
|
-
/**
|
|
868
|
-
* Remove a screen linked copy
|
|
869
|
-
*/
|
|
870
|
-
export const removeScreenLinkedCopy = (options) => (options.client ?? client).post({
|
|
871
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
872
|
-
url: '/api/screens/remove-screen-linked-copy',
|
|
873
|
-
...options,
|
|
874
|
-
headers: {
|
|
875
|
-
'Content-Type': 'application/json',
|
|
876
|
-
...options.headers
|
|
877
|
-
}
|
|
878
|
-
});
|
|
879
|
-
/**
|
|
880
|
-
* RemoveScreenField
|
|
881
|
-
*/
|
|
882
|
-
export const removeScreenField = (options) => (options.client ?? client).post({
|
|
883
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
884
|
-
url: '/api/screens/remove-screen-field',
|
|
885
|
-
...options,
|
|
886
|
-
headers: {
|
|
887
|
-
'Content-Type': 'application/json',
|
|
888
|
-
...options.headers
|
|
889
|
-
}
|
|
890
|
-
});
|
|
891
|
-
/**
|
|
892
|
-
* Place a new screen on the canvas
|
|
893
|
-
*/
|
|
894
|
-
export const placeScreen = (options) => (options.client ?? client).post({
|
|
895
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
896
|
-
url: '/api/screens/place-screen',
|
|
897
|
-
...options,
|
|
898
|
-
headers: {
|
|
899
|
-
'Content-Type': 'application/json',
|
|
900
|
-
...options.headers
|
|
901
|
-
}
|
|
902
|
-
});
|
|
903
|
-
/**
|
|
904
|
-
* Place a linked copy of a screen
|
|
905
|
-
*/
|
|
906
|
-
export const placeScreenLinkedCopy = (options) => (options.client ?? client).post({
|
|
907
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
908
|
-
url: '/api/screens/place-screen-linked-copy',
|
|
909
|
-
...options,
|
|
910
|
-
headers: {
|
|
911
|
-
'Content-Type': 'application/json',
|
|
912
|
-
...options.headers
|
|
913
|
-
}
|
|
914
|
-
});
|
|
915
|
-
/**
|
|
916
|
-
* Move a screen to a new position
|
|
917
|
-
*/
|
|
918
|
-
export const moveScreen = (options) => (options.client ?? client).post({
|
|
919
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
920
|
-
url: '/api/screens/move-screen',
|
|
921
|
-
...options,
|
|
922
|
-
headers: {
|
|
923
|
-
'Content-Type': 'application/json',
|
|
924
|
-
...options.headers
|
|
925
|
-
}
|
|
926
|
-
});
|
|
927
|
-
/**
|
|
928
|
-
* Move a screen linked copy to a new position on the canvas
|
|
929
|
-
*/
|
|
930
|
-
export const moveScreenLinkedCopy = (options) => (options.client ?? client).post({
|
|
931
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
932
|
-
url: '/api/screens/move-screen-linked-copy',
|
|
933
|
-
...options,
|
|
934
|
-
headers: {
|
|
935
|
-
'Content-Type': 'application/json',
|
|
936
|
-
...options.headers
|
|
937
|
-
}
|
|
938
|
-
});
|
|
939
|
-
/**
|
|
940
|
-
* MarkScreenSubfieldAsUserInput
|
|
941
|
-
*/
|
|
942
|
-
export const markScreenSubfieldAsUserInput = (options) => (options.client ?? client).post({
|
|
943
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
944
|
-
url: '/api/screens/mark-screen-subfield-as-user-input',
|
|
945
|
-
...options,
|
|
946
|
-
headers: {
|
|
947
|
-
'Content-Type': 'application/json',
|
|
948
|
-
...options.headers
|
|
949
|
-
}
|
|
950
|
-
});
|
|
951
|
-
/**
|
|
952
|
-
* MarkScreenSubfieldAsOptional
|
|
953
|
-
*/
|
|
954
|
-
export const markScreenSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
955
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
956
|
-
url: '/api/screens/mark-screen-subfield-as-optional',
|
|
957
|
-
...options,
|
|
958
|
-
headers: {
|
|
959
|
-
'Content-Type': 'application/json',
|
|
960
|
-
...options.headers
|
|
961
|
-
}
|
|
962
|
-
});
|
|
963
|
-
/**
|
|
964
|
-
* MarkScreenSubfieldAsList
|
|
965
|
-
*/
|
|
966
|
-
export const markScreenSubfieldAsList = (options) => (options.client ?? client).post({
|
|
967
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
968
|
-
url: '/api/screens/mark-screen-subfield-as-list',
|
|
969
|
-
...options,
|
|
970
|
-
headers: {
|
|
971
|
-
'Content-Type': 'application/json',
|
|
972
|
-
...options.headers
|
|
973
|
-
}
|
|
974
|
-
});
|
|
975
|
-
/**
|
|
976
|
-
* MarkScreenSubfieldAsGenerated
|
|
977
|
-
*/
|
|
978
|
-
export const markScreenSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
979
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
980
|
-
url: '/api/screens/mark-screen-subfield-as-generated',
|
|
981
|
-
...options,
|
|
982
|
-
headers: {
|
|
983
|
-
'Content-Type': 'application/json',
|
|
984
|
-
...options.headers
|
|
985
|
-
}
|
|
986
|
-
});
|
|
987
|
-
/**
|
|
988
|
-
* MarkScreenFieldAsUserInput
|
|
989
|
-
*/
|
|
990
|
-
export const markScreenFieldAsUserInput = (options) => (options.client ?? client).post({
|
|
991
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
992
|
-
url: '/api/screens/mark-screen-field-as-user-input',
|
|
993
|
-
...options,
|
|
994
|
-
headers: {
|
|
995
|
-
'Content-Type': 'application/json',
|
|
996
|
-
...options.headers
|
|
997
|
-
}
|
|
998
|
-
});
|
|
999
|
-
/**
|
|
1000
|
-
* MarkScreenFieldAsOptional
|
|
1001
|
-
*/
|
|
1002
|
-
export const markScreenFieldAsOptional = (options) => (options.client ?? client).post({
|
|
1003
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1004
|
-
url: '/api/screens/mark-screen-field-as-optional',
|
|
1005
|
-
...options,
|
|
1006
|
-
headers: {
|
|
1007
|
-
'Content-Type': 'application/json',
|
|
1008
|
-
...options.headers
|
|
1009
|
-
}
|
|
1010
|
-
});
|
|
1011
|
-
/**
|
|
1012
|
-
* MarkScreenFieldAsList
|
|
1013
|
-
*/
|
|
1014
|
-
export const markScreenFieldAsList = (options) => (options.client ?? client).post({
|
|
1015
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1016
|
-
url: '/api/screens/mark-screen-field-as-list',
|
|
1017
|
-
...options,
|
|
1018
|
-
headers: {
|
|
1019
|
-
'Content-Type': 'application/json',
|
|
1020
|
-
...options.headers
|
|
1021
|
-
}
|
|
1022
|
-
});
|
|
1023
|
-
/**
|
|
1024
|
-
* MarkScreenFieldAsGenerated
|
|
1025
|
-
*/
|
|
1026
|
-
export const markScreenFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
1027
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1028
|
-
url: '/api/screens/mark-screen-field-as-generated',
|
|
1029
|
-
...options,
|
|
1030
|
-
headers: {
|
|
1031
|
-
'Content-Type': 'application/json',
|
|
1032
|
-
...options.headers
|
|
1033
|
-
}
|
|
1034
|
-
});
|
|
1035
|
-
/**
|
|
1036
|
-
* ChangeScreenSubfieldType
|
|
1037
|
-
*/
|
|
1038
|
-
export const changeScreenSubfieldType = (options) => (options.client ?? client).post({
|
|
1039
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1040
|
-
url: '/api/screens/change-screen-subfield-type',
|
|
1041
|
-
...options,
|
|
1042
|
-
headers: {
|
|
1043
|
-
'Content-Type': 'application/json',
|
|
1044
|
-
...options.headers
|
|
1045
|
-
}
|
|
1046
|
-
});
|
|
1047
|
-
/**
|
|
1048
|
-
* ChangeScreenFieldType
|
|
1049
|
-
*/
|
|
1050
|
-
export const changeScreenFieldType = (options) => (options.client ?? client).post({
|
|
1051
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1052
|
-
url: '/api/screens/change-screen-field-type',
|
|
1053
|
-
...options,
|
|
1054
|
-
headers: {
|
|
1055
|
-
'Content-Type': 'application/json',
|
|
1056
|
-
...options.headers
|
|
1057
|
-
}
|
|
1058
|
-
});
|
|
1059
|
-
/**
|
|
1060
|
-
* AddScreenSubfield
|
|
1061
|
-
*/
|
|
1062
|
-
export const addScreenSubfield = (options) => (options.client ?? client).post({
|
|
1063
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1064
|
-
url: '/api/screens/add-screen-subfield',
|
|
1065
|
-
...options,
|
|
1066
|
-
headers: {
|
|
1067
|
-
'Content-Type': 'application/json',
|
|
1068
|
-
...options.headers
|
|
1069
|
-
}
|
|
1070
|
-
});
|
|
1071
|
-
/**
|
|
1072
|
-
* AddScreenField
|
|
1073
|
-
*/
|
|
1074
|
-
export const addScreenField = (options) => (options.client ?? client).post({
|
|
1075
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1076
|
-
url: '/api/screens/add-screen-field',
|
|
1077
|
-
...options,
|
|
1078
|
-
headers: {
|
|
1079
|
-
'Content-Type': 'application/json',
|
|
1080
|
-
...options.headers
|
|
1081
|
-
}
|
|
1082
|
-
});
|
|
1083
|
-
/**
|
|
1084
|
-
* Set Scenario Read Model Field Value
|
|
1085
|
-
*/
|
|
1086
|
-
export const setScenarioReadModelFieldValue = (options) => (options.client ?? client).post({
|
|
1087
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1088
|
-
url: '/api/scenarios/set-scenario-read-model-field-value',
|
|
1089
|
-
...options,
|
|
1090
|
-
headers: {
|
|
1091
|
-
'Content-Type': 'application/json',
|
|
1092
|
-
...options.headers
|
|
1093
|
-
}
|
|
1094
|
-
});
|
|
1095
|
-
/**
|
|
1096
|
-
* Set Scenario Read Model Field List Values
|
|
1097
|
-
*/
|
|
1098
|
-
export const setScenarioReadModelFieldListValues = (options) => (options.client ?? client).post({
|
|
1099
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1100
|
-
url: '/api/scenarios/set-scenario-read-model-field-list-values',
|
|
1101
|
-
...options,
|
|
1102
|
-
headers: {
|
|
1103
|
-
'Content-Type': 'application/json',
|
|
1104
|
-
...options.headers
|
|
1105
|
-
}
|
|
1106
|
-
});
|
|
1107
|
-
/**
|
|
1108
|
-
* Set Scenario ReadModel Field Custom Value
|
|
1109
|
-
*/
|
|
1110
|
-
export const setScenarioReadModelFieldCustomValue = (options) => (options.client ?? client).post({
|
|
1111
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1112
|
-
url: '/api/scenarios/set-scenario-read-model-field-custom-value',
|
|
1113
|
-
...options,
|
|
1114
|
-
headers: {
|
|
1115
|
-
'Content-Type': 'application/json',
|
|
1116
|
-
...options.headers
|
|
1117
|
-
}
|
|
1118
|
-
});
|
|
1119
|
-
/**
|
|
1120
|
-
* Set Scenario ReadModel Field Custom List Values
|
|
1121
|
-
*/
|
|
1122
|
-
export const setScenarioReadModelFieldCustomListValues = (options) => (options.client ?? client).post({
|
|
1123
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1124
|
-
url: '/api/scenarios/set-scenario-read-model-field-custom-list-values',
|
|
1125
|
-
...options,
|
|
1126
|
-
headers: {
|
|
1127
|
-
'Content-Type': 'application/json',
|
|
1128
|
-
...options.headers
|
|
1129
|
-
}
|
|
1130
|
-
});
|
|
1131
|
-
/**
|
|
1132
|
-
* Set Scenario Event Field Value
|
|
1133
|
-
*/
|
|
1134
|
-
export const setScenarioEventFieldValue = (options) => (options.client ?? client).post({
|
|
1135
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1136
|
-
url: '/api/scenarios/set-scenario-event-field-value',
|
|
1137
|
-
...options,
|
|
1138
|
-
headers: {
|
|
1139
|
-
'Content-Type': 'application/json',
|
|
1140
|
-
...options.headers
|
|
1141
|
-
}
|
|
1142
|
-
});
|
|
1143
|
-
/**
|
|
1144
|
-
* Set Scenario Event Field List Values
|
|
1145
|
-
*/
|
|
1146
|
-
export const setScenarioEventFieldListValues = (options) => (options.client ?? client).post({
|
|
1147
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1148
|
-
url: '/api/scenarios/set-scenario-event-field-list-values',
|
|
1149
|
-
...options,
|
|
1150
|
-
headers: {
|
|
1151
|
-
'Content-Type': 'application/json',
|
|
1152
|
-
...options.headers
|
|
1153
|
-
}
|
|
1154
|
-
});
|
|
1155
|
-
/**
|
|
1156
|
-
* Set Scenario Event Field Custom Value
|
|
1157
|
-
*/
|
|
1158
|
-
export const setScenarioEventFieldCustomValue = (options) => (options.client ?? client).post({
|
|
1159
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1160
|
-
url: '/api/scenarios/set-scenario-event-field-custom-value',
|
|
1161
|
-
...options,
|
|
1162
|
-
headers: {
|
|
1163
|
-
'Content-Type': 'application/json',
|
|
1164
|
-
...options.headers
|
|
1165
|
-
}
|
|
1166
|
-
});
|
|
1167
|
-
/**
|
|
1168
|
-
* Set Scenario Event Field Custom List Values
|
|
1169
|
-
*/
|
|
1170
|
-
export const setScenarioEventFieldCustomListValues = (options) => (options.client ?? client).post({
|
|
1171
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1172
|
-
url: '/api/scenarios/set-scenario-event-field-custom-list-values',
|
|
1173
|
-
...options,
|
|
1174
|
-
headers: {
|
|
1175
|
-
'Content-Type': 'application/json',
|
|
1176
|
-
...options.headers
|
|
1177
|
-
}
|
|
1178
|
-
});
|
|
1179
|
-
/**
|
|
1180
|
-
* Set Scenario Command Field Value
|
|
1181
|
-
*/
|
|
1182
|
-
export const setScenarioCommandFieldValue = (options) => (options.client ?? client).post({
|
|
1183
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1184
|
-
url: '/api/scenarios/set-scenario-command-field-value',
|
|
1185
|
-
...options,
|
|
1186
|
-
headers: {
|
|
1187
|
-
'Content-Type': 'application/json',
|
|
1188
|
-
...options.headers
|
|
1189
|
-
}
|
|
1190
|
-
});
|
|
1191
|
-
/**
|
|
1192
|
-
* Set Scenario Command Field List Values
|
|
1193
|
-
*/
|
|
1194
|
-
export const setScenarioCommandFieldListValues = (options) => (options.client ?? client).post({
|
|
1195
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1196
|
-
url: '/api/scenarios/set-scenario-command-field-list-values',
|
|
1197
|
-
...options,
|
|
1198
|
-
headers: {
|
|
1199
|
-
'Content-Type': 'application/json',
|
|
1200
|
-
...options.headers
|
|
1201
|
-
}
|
|
1202
|
-
});
|
|
1203
|
-
/**
|
|
1204
|
-
* Set Scenario Command Field Custom Value
|
|
1205
|
-
*/
|
|
1206
|
-
export const setScenarioCommandFieldCustomValue = (options) => (options.client ?? client).post({
|
|
1207
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1208
|
-
url: '/api/scenarios/set-scenario-command-field-custom-value',
|
|
1209
|
-
...options,
|
|
1210
|
-
headers: {
|
|
1211
|
-
'Content-Type': 'application/json',
|
|
1212
|
-
...options.headers
|
|
1213
|
-
}
|
|
1214
|
-
});
|
|
1215
|
-
/**
|
|
1216
|
-
* Set Scenario Command Field Custom List Values
|
|
1217
|
-
*/
|
|
1218
|
-
export const setScenarioCommandFieldCustomListValues = (options) => (options.client ?? client).post({
|
|
1219
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1220
|
-
url: '/api/scenarios/set-scenario-command-field-custom-list-values',
|
|
1221
|
-
...options,
|
|
1222
|
-
headers: {
|
|
1223
|
-
'Content-Type': 'application/json',
|
|
1224
|
-
...options.headers
|
|
1225
|
-
}
|
|
1226
|
-
});
|
|
1227
|
-
/**
|
|
1228
|
-
* Reorder a scenario within its slice
|
|
1229
|
-
*/
|
|
1230
|
-
export const reorderScenario = (options) => (options.client ?? client).post({
|
|
1231
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1232
|
-
url: '/api/scenarios/reorder-scenario',
|
|
1233
|
-
...options,
|
|
1234
|
-
headers: {
|
|
1235
|
-
'Content-Type': 'application/json',
|
|
1236
|
-
...options.headers
|
|
1237
|
-
}
|
|
1238
|
-
});
|
|
1239
|
-
/**
|
|
1240
|
-
* Reorder Scenario When Entry
|
|
1241
|
-
*/
|
|
1242
|
-
export const reorderScenarioWhenEntry = (options) => (options.client ?? client).post({
|
|
1243
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1244
|
-
url: '/api/scenarios/reorder-scenario-when-entry',
|
|
1245
|
-
...options,
|
|
1246
|
-
headers: {
|
|
1247
|
-
'Content-Type': 'application/json',
|
|
1248
|
-
...options.headers
|
|
1249
|
-
}
|
|
1250
|
-
});
|
|
1251
|
-
/**
|
|
1252
|
-
* Reorder Scenario Then Entry
|
|
1253
|
-
*/
|
|
1254
|
-
export const reorderScenarioThenEntry = (options) => (options.client ?? client).post({
|
|
1255
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1256
|
-
url: '/api/scenarios/reorder-scenario-then-entry',
|
|
1257
|
-
...options,
|
|
1258
|
-
headers: {
|
|
1259
|
-
'Content-Type': 'application/json',
|
|
1260
|
-
...options.headers
|
|
1261
|
-
}
|
|
1262
|
-
});
|
|
1263
|
-
/**
|
|
1264
|
-
* Reorder Scenario Given Entry
|
|
1265
|
-
*/
|
|
1266
|
-
export const reorderScenarioGivenEntry = (options) => (options.client ?? client).post({
|
|
1267
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1268
|
-
url: '/api/scenarios/reorder-scenario-given-entry',
|
|
1269
|
-
...options,
|
|
1270
|
-
headers: {
|
|
1271
|
-
'Content-Type': 'application/json',
|
|
1272
|
-
...options.headers
|
|
1273
|
-
}
|
|
1274
|
-
});
|
|
1275
|
-
/**
|
|
1276
|
-
* Rename Scenario
|
|
1277
|
-
*/
|
|
1278
|
-
export const renameScenario = (options) => (options.client ?? client).post({
|
|
1279
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1280
|
-
url: '/api/scenarios/rename-scenario',
|
|
1281
|
-
...options,
|
|
1282
|
-
headers: {
|
|
1283
|
-
'Content-Type': 'application/json',
|
|
1284
|
-
...options.headers
|
|
1285
|
-
}
|
|
1286
|
-
});
|
|
1287
|
-
/**
|
|
1288
|
-
* Remove Scenario
|
|
1289
|
-
*/
|
|
1290
|
-
export const removeScenario = (options) => (options.client ?? client).post({
|
|
1291
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1292
|
-
url: '/api/scenarios/remove-scenario',
|
|
1293
|
-
...options,
|
|
1294
|
-
headers: {
|
|
1295
|
-
'Content-Type': 'application/json',
|
|
1296
|
-
...options.headers
|
|
1297
|
-
}
|
|
1298
|
-
});
|
|
1299
|
-
/**
|
|
1300
|
-
* Remove Scenario When Entry
|
|
1301
|
-
*/
|
|
1302
|
-
export const removeScenarioWhenEntry = (options) => (options.client ?? client).post({
|
|
1303
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1304
|
-
url: '/api/scenarios/remove-scenario-when-entry',
|
|
1305
|
-
...options,
|
|
1306
|
-
headers: {
|
|
1307
|
-
'Content-Type': 'application/json',
|
|
1308
|
-
...options.headers
|
|
1309
|
-
}
|
|
1310
|
-
});
|
|
1311
|
-
/**
|
|
1312
|
-
* Remove Scenario Then Entry
|
|
1313
|
-
*/
|
|
1314
|
-
export const removeScenarioThenEntry = (options) => (options.client ?? client).post({
|
|
1315
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1316
|
-
url: '/api/scenarios/remove-scenario-then-entry',
|
|
1317
|
-
...options,
|
|
1318
|
-
headers: {
|
|
1319
|
-
'Content-Type': 'application/json',
|
|
1320
|
-
...options.headers
|
|
1321
|
-
}
|
|
1322
|
-
});
|
|
1323
|
-
/**
|
|
1324
|
-
* Remove Scenario Read Model Field Value
|
|
1325
|
-
*/
|
|
1326
|
-
export const removeScenarioReadModelFieldValue = (options) => (options.client ?? client).post({
|
|
1327
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1328
|
-
url: '/api/scenarios/remove-scenario-read-model-field-value',
|
|
1329
|
-
...options,
|
|
1330
|
-
headers: {
|
|
1331
|
-
'Content-Type': 'application/json',
|
|
1332
|
-
...options.headers
|
|
1333
|
-
}
|
|
1334
|
-
});
|
|
1335
|
-
/**
|
|
1336
|
-
* Remove Scenario Given Entry
|
|
1337
|
-
*/
|
|
1338
|
-
export const removeScenarioGivenEntry = (options) => (options.client ?? client).post({
|
|
1339
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1340
|
-
url: '/api/scenarios/remove-scenario-given-entry',
|
|
1341
|
-
...options,
|
|
1342
|
-
headers: {
|
|
1343
|
-
'Content-Type': 'application/json',
|
|
1344
|
-
...options.headers
|
|
1345
|
-
}
|
|
1346
|
-
});
|
|
1347
|
-
/**
|
|
1348
|
-
* Remove Scenario Event Field Value
|
|
1349
|
-
*/
|
|
1350
|
-
export const removeScenarioEventFieldValue = (options) => (options.client ?? client).post({
|
|
1351
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1352
|
-
url: '/api/scenarios/remove-scenario-event-field-value',
|
|
1353
|
-
...options,
|
|
1354
|
-
headers: {
|
|
1355
|
-
'Content-Type': 'application/json',
|
|
1356
|
-
...options.headers
|
|
1357
|
-
}
|
|
1358
|
-
});
|
|
1359
|
-
/**
|
|
1360
|
-
* Remove Scenario Command Field Value
|
|
1361
|
-
*/
|
|
1362
|
-
export const removeScenarioCommandFieldValue = (options) => (options.client ?? client).post({
|
|
1363
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1364
|
-
url: '/api/scenarios/remove-scenario-command-field-value',
|
|
1365
|
-
...options,
|
|
1366
|
-
headers: {
|
|
1367
|
-
'Content-Type': 'application/json',
|
|
1368
|
-
...options.headers
|
|
1369
|
-
}
|
|
1370
|
-
});
|
|
1371
|
-
/**
|
|
1372
|
-
* Redescribe Scenario
|
|
1373
|
-
*/
|
|
1374
|
-
export const redescribeScenario = (options) => (options.client ?? client).post({
|
|
1375
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1376
|
-
url: '/api/scenarios/redescribe-scenario',
|
|
1377
|
-
...options,
|
|
1378
|
-
headers: {
|
|
1379
|
-
'Content-Type': 'application/json',
|
|
1380
|
-
...options.headers
|
|
1381
|
-
}
|
|
1382
|
-
});
|
|
1383
|
-
/**
|
|
1384
|
-
* Create a scenario
|
|
1385
|
-
*/
|
|
1386
|
-
export const createScenario1 = (options) => (options.client ?? client).post({
|
|
1387
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1388
|
-
url: '/api/scenarios/create-scenario',
|
|
1389
|
-
...options,
|
|
1390
|
-
headers: {
|
|
1391
|
-
'Content-Type': 'application/json',
|
|
1392
|
-
...options.headers
|
|
1393
|
-
}
|
|
1394
|
-
});
|
|
1395
|
-
/**
|
|
1396
|
-
* Add Scenario When Event
|
|
1397
|
-
*/
|
|
1398
|
-
export const addScenarioWhenEvent = (options) => (options.client ?? client).post({
|
|
1399
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1400
|
-
url: '/api/scenarios/add-scenario-when-event',
|
|
1401
|
-
...options,
|
|
1402
|
-
headers: {
|
|
1403
|
-
'Content-Type': 'application/json',
|
|
1404
|
-
...options.headers
|
|
1405
|
-
}
|
|
1406
|
-
});
|
|
1407
|
-
/**
|
|
1408
|
-
* Add Scenario When Command
|
|
1409
|
-
*/
|
|
1410
|
-
export const addScenarioWhenCommand = (options) => (options.client ?? client).post({
|
|
1411
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1412
|
-
url: '/api/scenarios/add-scenario-when-command',
|
|
1413
|
-
...options,
|
|
1414
|
-
headers: {
|
|
1415
|
-
'Content-Type': 'application/json',
|
|
1416
|
-
...options.headers
|
|
1417
|
-
}
|
|
1418
|
-
});
|
|
1419
|
-
/**
|
|
1420
|
-
* Add Scenario Then Read Model
|
|
1421
|
-
*/
|
|
1422
|
-
export const addScenarioThenReadModel = (options) => (options.client ?? client).post({
|
|
1423
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1424
|
-
url: '/api/scenarios/add-scenario-then-read-model',
|
|
1425
|
-
...options,
|
|
1426
|
-
headers: {
|
|
1427
|
-
'Content-Type': 'application/json',
|
|
1428
|
-
...options.headers
|
|
1429
|
-
}
|
|
1430
|
-
});
|
|
1431
|
-
/**
|
|
1432
|
-
* Add Scenario Then Event
|
|
1433
|
-
*/
|
|
1434
|
-
export const addScenarioThenEvent = (options) => (options.client ?? client).post({
|
|
1435
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1436
|
-
url: '/api/scenarios/add-scenario-then-event',
|
|
1437
|
-
...options,
|
|
1438
|
-
headers: {
|
|
1439
|
-
'Content-Type': 'application/json',
|
|
1440
|
-
...options.headers
|
|
1441
|
-
}
|
|
1442
|
-
});
|
|
1443
|
-
/**
|
|
1444
|
-
* Add Scenario Then Error
|
|
1445
|
-
*/
|
|
1446
|
-
export const addScenarioThenError = (options) => (options.client ?? client).post({
|
|
1447
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1448
|
-
url: '/api/scenarios/add-scenario-then-error',
|
|
1449
|
-
...options,
|
|
1450
|
-
headers: {
|
|
1451
|
-
'Content-Type': 'application/json',
|
|
1452
|
-
...options.headers
|
|
1453
|
-
}
|
|
1454
|
-
});
|
|
1455
|
-
/**
|
|
1456
|
-
* Add Scenario Then Command
|
|
1457
|
-
*/
|
|
1458
|
-
export const addScenarioThenCommand = (options) => (options.client ?? client).post({
|
|
1459
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1460
|
-
url: '/api/scenarios/add-scenario-then-command',
|
|
1461
|
-
...options,
|
|
1462
|
-
headers: {
|
|
1463
|
-
'Content-Type': 'application/json',
|
|
1464
|
-
...options.headers
|
|
1465
|
-
}
|
|
1466
|
-
});
|
|
1467
|
-
/**
|
|
1468
|
-
* Add Scenario Given Read Model
|
|
1469
|
-
*/
|
|
1470
|
-
export const addScenarioGivenReadModel = (options) => (options.client ?? client).post({
|
|
1471
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1472
|
-
url: '/api/scenarios/add-scenario-given-read-model',
|
|
1473
|
-
...options,
|
|
1474
|
-
headers: {
|
|
1475
|
-
'Content-Type': 'application/json',
|
|
1476
|
-
...options.headers
|
|
1477
|
-
}
|
|
1478
|
-
});
|
|
1479
|
-
/**
|
|
1480
|
-
* Add Scenario Given Event
|
|
1481
|
-
*/
|
|
1482
|
-
export const addScenarioGivenEvent = (options) => (options.client ?? client).post({
|
|
1483
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1484
|
-
url: '/api/scenarios/add-scenario-given-event',
|
|
1485
|
-
...options,
|
|
1486
|
-
headers: {
|
|
1487
|
-
'Content-Type': 'application/json',
|
|
1488
|
-
...options.headers
|
|
1489
|
-
}
|
|
1490
|
-
});
|
|
1491
|
-
/**
|
|
1492
|
-
* Unmark a read model subfield as optional
|
|
1493
|
-
*/
|
|
1494
|
-
export const unmarkReadModelSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
1495
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1496
|
-
url: '/api/readmodel-stickies/unmark-read-model-subfield-as-optional',
|
|
1497
|
-
...options,
|
|
1498
|
-
headers: {
|
|
1499
|
-
'Content-Type': 'application/json',
|
|
1500
|
-
...options.headers
|
|
1501
|
-
}
|
|
1502
|
-
});
|
|
1503
|
-
/**
|
|
1504
|
-
* Unmark a read model subfield as list
|
|
1505
|
-
*/
|
|
1506
|
-
export const unmarkReadModelSubfieldAsList = (options) => (options.client ?? client).post({
|
|
1507
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1508
|
-
url: '/api/readmodel-stickies/unmark-read-model-subfield-as-list',
|
|
1509
|
-
...options,
|
|
1510
|
-
headers: {
|
|
1511
|
-
'Content-Type': 'application/json',
|
|
1512
|
-
...options.headers
|
|
1513
|
-
}
|
|
1514
|
-
});
|
|
1515
|
-
/**
|
|
1516
|
-
* Unmark a read model subfield as generated
|
|
1517
|
-
*/
|
|
1518
|
-
export const unmarkReadModelSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
1519
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1520
|
-
url: '/api/readmodel-stickies/unmark-read-model-subfield-as-generated',
|
|
1521
|
-
...options,
|
|
1522
|
-
headers: {
|
|
1523
|
-
'Content-Type': 'application/json',
|
|
1524
|
-
...options.headers
|
|
1525
|
-
}
|
|
1526
|
-
});
|
|
1527
|
-
/**
|
|
1528
|
-
* Unmark a read model field as optional
|
|
1529
|
-
*/
|
|
1530
|
-
export const unmarkReadModelFieldAsOptional = (options) => (options.client ?? client).post({
|
|
1531
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1532
|
-
url: '/api/readmodel-stickies/unmark-read-model-field-as-optional',
|
|
1533
|
-
...options,
|
|
1534
|
-
headers: {
|
|
1535
|
-
'Content-Type': 'application/json',
|
|
1536
|
-
...options.headers
|
|
1537
|
-
}
|
|
1538
|
-
});
|
|
1539
|
-
/**
|
|
1540
|
-
* Unmark a read model field as list
|
|
1541
|
-
*/
|
|
1542
|
-
export const unmarkReadModelFieldAsList = (options) => (options.client ?? client).post({
|
|
1543
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1544
|
-
url: '/api/readmodel-stickies/unmark-read-model-field-as-list',
|
|
1545
|
-
...options,
|
|
1546
|
-
headers: {
|
|
1547
|
-
'Content-Type': 'application/json',
|
|
1548
|
-
...options.headers
|
|
1549
|
-
}
|
|
1550
|
-
});
|
|
1551
|
-
/**
|
|
1552
|
-
* Unmark a read model field as generated
|
|
1553
|
-
*/
|
|
1554
|
-
export const unmarkReadModelFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
1555
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1556
|
-
url: '/api/readmodel-stickies/unmark-read-model-field-as-generated',
|
|
1557
|
-
...options,
|
|
1558
|
-
headers: {
|
|
1559
|
-
'Content-Type': 'application/json',
|
|
1560
|
-
...options.headers
|
|
1561
|
-
}
|
|
1562
|
-
});
|
|
1563
|
-
/**
|
|
1564
|
-
* Reorder a read model subfield
|
|
1565
|
-
*/
|
|
1566
|
-
export const reorderReadModelSubfield = (options) => (options.client ?? client).post({
|
|
1567
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1568
|
-
url: '/api/readmodel-stickies/reorder-read-model-subfield',
|
|
1569
|
-
...options,
|
|
1570
|
-
headers: {
|
|
1571
|
-
'Content-Type': 'application/json',
|
|
1572
|
-
...options.headers
|
|
1573
|
-
}
|
|
1574
|
-
});
|
|
1575
|
-
/**
|
|
1576
|
-
* Reorder a field on a read model sticky
|
|
1577
|
-
*/
|
|
1578
|
-
export const reorderReadModelField = (options) => (options.client ?? client).post({
|
|
1579
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1580
|
-
url: '/api/readmodel-stickies/reorder-read-model-field',
|
|
1581
|
-
...options,
|
|
1582
|
-
headers: {
|
|
1583
|
-
'Content-Type': 'application/json',
|
|
1584
|
-
...options.headers
|
|
1585
|
-
}
|
|
1586
|
-
});
|
|
1587
|
-
/**
|
|
1588
|
-
* Rename a subfield on a read model field
|
|
1589
|
-
*/
|
|
1590
|
-
export const renameReadModelSubfield = (options) => (options.client ?? client).post({
|
|
1591
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1592
|
-
url: '/api/readmodel-stickies/rename-read-model-subfield',
|
|
1593
|
-
...options,
|
|
1594
|
-
headers: {
|
|
1595
|
-
'Content-Type': 'application/json',
|
|
1596
|
-
...options.headers
|
|
1597
|
-
}
|
|
1598
|
-
});
|
|
1599
|
-
/**
|
|
1600
|
-
* Rename a read model sticky
|
|
1601
|
-
*/
|
|
1602
|
-
export const renameReadModelSticky = (options) => (options.client ?? client).post({
|
|
1603
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1604
|
-
url: '/api/readmodel-stickies/rename-read-model-sticky',
|
|
1605
|
-
...options,
|
|
1606
|
-
headers: {
|
|
1607
|
-
'Content-Type': 'application/json',
|
|
1608
|
-
...options.headers
|
|
1609
|
-
}
|
|
1610
|
-
});
|
|
1611
|
-
/**
|
|
1612
|
-
* Rename a field on a read model sticky
|
|
1613
|
-
*/
|
|
1614
|
-
export const renameReadModelField = (options) => (options.client ?? client).post({
|
|
1615
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1616
|
-
url: '/api/readmodel-stickies/rename-read-model-field',
|
|
1617
|
-
...options,
|
|
1618
|
-
headers: {
|
|
1619
|
-
'Content-Type': 'application/json',
|
|
1620
|
-
...options.headers
|
|
1621
|
-
}
|
|
1622
|
-
});
|
|
1623
|
-
/**
|
|
1624
|
-
* Remove a subfield from a read model field
|
|
1625
|
-
*/
|
|
1626
|
-
export const removeReadModelSubfield = (options) => (options.client ?? client).post({
|
|
1627
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1628
|
-
url: '/api/readmodel-stickies/remove-read-model-subfield',
|
|
1629
|
-
...options,
|
|
1630
|
-
headers: {
|
|
1631
|
-
'Content-Type': 'application/json',
|
|
1632
|
-
...options.headers
|
|
1633
|
-
}
|
|
1634
|
-
});
|
|
1635
|
-
/**
|
|
1636
|
-
* Remove a read model sticky from the canvas
|
|
1637
|
-
*/
|
|
1638
|
-
export const removeReadModelSticky = (options) => (options.client ?? client).post({
|
|
1639
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1640
|
-
url: '/api/readmodel-stickies/remove-read-model-sticky',
|
|
1641
|
-
...options,
|
|
1642
|
-
headers: {
|
|
1643
|
-
'Content-Type': 'application/json',
|
|
1644
|
-
...options.headers
|
|
1645
|
-
}
|
|
1646
|
-
});
|
|
1647
|
-
/**
|
|
1648
|
-
* Remove a linked copy of a read model sticky from the canvas
|
|
1649
|
-
*/
|
|
1650
|
-
export const removeReadModelStickyLinkedCopy = (options) => (options.client ?? client).post({
|
|
1651
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1652
|
-
url: '/api/readmodel-stickies/remove-read-model-sticky-linked-copy',
|
|
1653
|
-
...options,
|
|
1654
|
-
headers: {
|
|
1655
|
-
'Content-Type': 'application/json',
|
|
1656
|
-
...options.headers
|
|
1657
|
-
}
|
|
1658
|
-
});
|
|
1659
|
-
/**
|
|
1660
|
-
* Remove a field from a read model sticky
|
|
1661
|
-
*/
|
|
1662
|
-
export const removeReadModelField = (options) => (options.client ?? client).post({
|
|
1663
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1664
|
-
url: '/api/readmodel-stickies/remove-read-model-field',
|
|
1665
|
-
...options,
|
|
1666
|
-
headers: {
|
|
1667
|
-
'Content-Type': 'application/json',
|
|
1668
|
-
...options.headers
|
|
1669
|
-
}
|
|
1670
|
-
});
|
|
1671
|
-
/**
|
|
1672
|
-
* Place a new read model sticky on the canvas
|
|
1673
|
-
*/
|
|
1674
|
-
export const placeReadModelSticky = (options) => (options.client ?? client).post({
|
|
1675
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1676
|
-
url: '/api/readmodel-stickies/place-read-model-sticky',
|
|
1677
|
-
...options,
|
|
1678
|
-
headers: {
|
|
1679
|
-
'Content-Type': 'application/json',
|
|
1680
|
-
...options.headers
|
|
1681
|
-
}
|
|
1682
|
-
});
|
|
1683
|
-
/**
|
|
1684
|
-
* Place a linked copy of a read model sticky on the canvas
|
|
1685
|
-
*/
|
|
1686
|
-
export const placeReadModelStickyLinkedCopy = (options) => (options.client ?? client).post({
|
|
1687
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1688
|
-
url: '/api/readmodel-stickies/place-read-model-sticky-linked-copy',
|
|
1689
|
-
...options,
|
|
1690
|
-
headers: {
|
|
1691
|
-
'Content-Type': 'application/json',
|
|
1692
|
-
...options.headers
|
|
1693
|
-
}
|
|
1694
|
-
});
|
|
1695
|
-
/**
|
|
1696
|
-
* Move a read model sticky to a new position on the canvas
|
|
1697
|
-
*/
|
|
1698
|
-
export const moveReadModelSticky = (options) => (options.client ?? client).post({
|
|
1699
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1700
|
-
url: '/api/readmodel-stickies/move-read-model-sticky',
|
|
1701
|
-
...options,
|
|
1702
|
-
headers: {
|
|
1703
|
-
'Content-Type': 'application/json',
|
|
1704
|
-
...options.headers
|
|
1705
|
-
}
|
|
1706
|
-
});
|
|
1707
|
-
/**
|
|
1708
|
-
* Move a read model sticky linked copy to a new position on the canvas
|
|
1709
|
-
*/
|
|
1710
|
-
export const moveReadModelStickyLinkedCopy = (options) => (options.client ?? client).post({
|
|
1711
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1712
|
-
url: '/api/readmodel-stickies/move-read-model-sticky-linked-copy',
|
|
1713
|
-
...options,
|
|
1714
|
-
headers: {
|
|
1715
|
-
'Content-Type': 'application/json',
|
|
1716
|
-
...options.headers
|
|
1717
|
-
}
|
|
1718
|
-
});
|
|
1719
|
-
/**
|
|
1720
|
-
* Mark a read model subfield as optional
|
|
1721
|
-
*/
|
|
1722
|
-
export const markReadModelSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
1723
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1724
|
-
url: '/api/readmodel-stickies/mark-read-model-subfield-as-optional',
|
|
1725
|
-
...options,
|
|
1726
|
-
headers: {
|
|
1727
|
-
'Content-Type': 'application/json',
|
|
1728
|
-
...options.headers
|
|
1729
|
-
}
|
|
1730
|
-
});
|
|
1731
|
-
/**
|
|
1732
|
-
* Mark a read model subfield as list
|
|
1733
|
-
*/
|
|
1734
|
-
export const markReadModelSubfieldAsList = (options) => (options.client ?? client).post({
|
|
1735
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1736
|
-
url: '/api/readmodel-stickies/mark-read-model-subfield-as-list',
|
|
1737
|
-
...options,
|
|
1738
|
-
headers: {
|
|
1739
|
-
'Content-Type': 'application/json',
|
|
1740
|
-
...options.headers
|
|
1741
|
-
}
|
|
1742
|
-
});
|
|
1743
|
-
/**
|
|
1744
|
-
* Mark a read model subfield as generated
|
|
1745
|
-
*/
|
|
1746
|
-
export const markReadModelSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
1747
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1748
|
-
url: '/api/readmodel-stickies/mark-read-model-subfield-as-generated',
|
|
1749
|
-
...options,
|
|
1750
|
-
headers: {
|
|
1751
|
-
'Content-Type': 'application/json',
|
|
1752
|
-
...options.headers
|
|
1753
|
-
}
|
|
1754
|
-
});
|
|
1755
|
-
/**
|
|
1756
|
-
* Mark a read model field as optional
|
|
1757
|
-
*/
|
|
1758
|
-
export const markReadModelFieldAsOptional = (options) => (options.client ?? client).post({
|
|
1759
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1760
|
-
url: '/api/readmodel-stickies/mark-read-model-field-as-optional',
|
|
1761
|
-
...options,
|
|
1762
|
-
headers: {
|
|
1763
|
-
'Content-Type': 'application/json',
|
|
1764
|
-
...options.headers
|
|
1765
|
-
}
|
|
1766
|
-
});
|
|
1767
|
-
/**
|
|
1768
|
-
* Mark a read model field as list
|
|
1769
|
-
*/
|
|
1770
|
-
export const markReadModelFieldAsList = (options) => (options.client ?? client).post({
|
|
1771
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1772
|
-
url: '/api/readmodel-stickies/mark-read-model-field-as-list',
|
|
1773
|
-
...options,
|
|
1774
|
-
headers: {
|
|
1775
|
-
'Content-Type': 'application/json',
|
|
1776
|
-
...options.headers
|
|
1777
|
-
}
|
|
1778
|
-
});
|
|
1779
|
-
/**
|
|
1780
|
-
* Mark a read model field as generated
|
|
1781
|
-
*/
|
|
1782
|
-
export const markReadModelFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
1783
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1784
|
-
url: '/api/readmodel-stickies/mark-read-model-field-as-generated',
|
|
1785
|
-
...options,
|
|
1786
|
-
headers: {
|
|
1787
|
-
'Content-Type': 'application/json',
|
|
1788
|
-
...options.headers
|
|
1789
|
-
}
|
|
1790
|
-
});
|
|
1791
|
-
/**
|
|
1792
|
-
* Change the type of a subfield on a read model field
|
|
1793
|
-
*/
|
|
1794
|
-
export const changeReadModelSubfieldType = (options) => (options.client ?? client).post({
|
|
1795
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1796
|
-
url: '/api/readmodel-stickies/change-read-model-subfield-type',
|
|
1797
|
-
...options,
|
|
1798
|
-
headers: {
|
|
1799
|
-
'Content-Type': 'application/json',
|
|
1800
|
-
...options.headers
|
|
1801
|
-
}
|
|
1802
|
-
});
|
|
1803
|
-
/**
|
|
1804
|
-
* Change the type of a field on a read model sticky
|
|
1805
|
-
*/
|
|
1806
|
-
export const changeReadModelFieldType = (options) => (options.client ?? client).post({
|
|
1807
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1808
|
-
url: '/api/readmodel-stickies/change-read-model-field-type',
|
|
1809
|
-
...options,
|
|
1810
|
-
headers: {
|
|
1811
|
-
'Content-Type': 'application/json',
|
|
1812
|
-
...options.headers
|
|
1813
|
-
}
|
|
1814
|
-
});
|
|
1815
|
-
/**
|
|
1816
|
-
* Add a subfield to a read model field
|
|
1817
|
-
*/
|
|
1818
|
-
export const addReadModelSubfield = (options) => (options.client ?? client).post({
|
|
1819
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1820
|
-
url: '/api/readmodel-stickies/add-read-model-subfield',
|
|
1821
|
-
...options,
|
|
1822
|
-
headers: {
|
|
1823
|
-
'Content-Type': 'application/json',
|
|
1824
|
-
...options.headers
|
|
1825
|
-
}
|
|
1826
|
-
});
|
|
1827
|
-
/**
|
|
1828
|
-
* Add a field to a read model sticky
|
|
1829
|
-
*/
|
|
1830
|
-
export const addReadModelField = (options) => (options.client ?? client).post({
|
|
1831
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1832
|
-
url: '/api/readmodel-stickies/add-read-model-field',
|
|
1833
|
-
...options,
|
|
1834
|
-
headers: {
|
|
1835
|
-
'Content-Type': 'application/json',
|
|
1836
|
-
...options.headers
|
|
1837
|
-
}
|
|
1838
|
-
});
|
|
1839
|
-
/**
|
|
1840
|
-
* UnmarkProcessorSubfieldAsOptional
|
|
1841
|
-
*/
|
|
1842
|
-
export const unmarkProcessorSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
1843
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1844
|
-
url: '/api/processors/unmark-processor-subfield-as-optional',
|
|
1845
|
-
...options,
|
|
1846
|
-
headers: {
|
|
1847
|
-
'Content-Type': 'application/json',
|
|
1848
|
-
...options.headers
|
|
1849
|
-
}
|
|
1850
|
-
});
|
|
1851
|
-
/**
|
|
1852
|
-
* UnmarkProcessorSubfieldAsList
|
|
1853
|
-
*/
|
|
1854
|
-
export const unmarkProcessorSubfieldAsList = (options) => (options.client ?? client).post({
|
|
1855
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1856
|
-
url: '/api/processors/unmark-processor-subfield-as-list',
|
|
1857
|
-
...options,
|
|
1858
|
-
headers: {
|
|
1859
|
-
'Content-Type': 'application/json',
|
|
1860
|
-
...options.headers
|
|
1861
|
-
}
|
|
1862
|
-
});
|
|
1863
|
-
/**
|
|
1864
|
-
* UnmarkProcessorSubfieldAsGenerated
|
|
1865
|
-
*/
|
|
1866
|
-
export const unmarkProcessorSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
1867
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1868
|
-
url: '/api/processors/unmark-processor-subfield-as-generated',
|
|
1869
|
-
...options,
|
|
1870
|
-
headers: {
|
|
1871
|
-
'Content-Type': 'application/json',
|
|
1872
|
-
...options.headers
|
|
1873
|
-
}
|
|
1874
|
-
});
|
|
1875
|
-
/**
|
|
1876
|
-
* UnmarkProcessorFieldAsOptional
|
|
1877
|
-
*/
|
|
1878
|
-
export const unmarkProcessorFieldAsOptional = (options) => (options.client ?? client).post({
|
|
1879
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1880
|
-
url: '/api/processors/unmark-processor-field-as-optional',
|
|
1881
|
-
...options,
|
|
1882
|
-
headers: {
|
|
1883
|
-
'Content-Type': 'application/json',
|
|
1884
|
-
...options.headers
|
|
1885
|
-
}
|
|
1886
|
-
});
|
|
1887
|
-
/**
|
|
1888
|
-
* UnmarkProcessorFieldAsList
|
|
1889
|
-
*/
|
|
1890
|
-
export const unmarkProcessorFieldAsList = (options) => (options.client ?? client).post({
|
|
1891
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1892
|
-
url: '/api/processors/unmark-processor-field-as-list',
|
|
1893
|
-
...options,
|
|
1894
|
-
headers: {
|
|
1895
|
-
'Content-Type': 'application/json',
|
|
1896
|
-
...options.headers
|
|
1897
|
-
}
|
|
1898
|
-
});
|
|
1899
|
-
/**
|
|
1900
|
-
* UnmarkProcessorFieldAsGenerated
|
|
1901
|
-
*/
|
|
1902
|
-
export const unmarkProcessorFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
1903
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1904
|
-
url: '/api/processors/unmark-processor-field-as-generated',
|
|
1905
|
-
...options,
|
|
1906
|
-
headers: {
|
|
1907
|
-
'Content-Type': 'application/json',
|
|
1908
|
-
...options.headers
|
|
1909
|
-
}
|
|
1910
|
-
});
|
|
1911
|
-
/**
|
|
1912
|
-
* ReorderProcessorSubfield
|
|
1913
|
-
*/
|
|
1914
|
-
export const reorderProcessorSubfield = (options) => (options.client ?? client).post({
|
|
1915
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1916
|
-
url: '/api/processors/reorder-processor-subfield',
|
|
1917
|
-
...options,
|
|
1918
|
-
headers: {
|
|
1919
|
-
'Content-Type': 'application/json',
|
|
1920
|
-
...options.headers
|
|
1921
|
-
}
|
|
1922
|
-
});
|
|
1923
|
-
/**
|
|
1924
|
-
* ReorderProcessorField
|
|
1925
|
-
*/
|
|
1926
|
-
export const reorderProcessorField = (options) => (options.client ?? client).post({
|
|
1927
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1928
|
-
url: '/api/processors/reorder-processor-field',
|
|
1929
|
-
...options,
|
|
1930
|
-
headers: {
|
|
1931
|
-
'Content-Type': 'application/json',
|
|
1932
|
-
...options.headers
|
|
1933
|
-
}
|
|
1934
|
-
});
|
|
1935
|
-
/**
|
|
1936
|
-
* Rename a processor
|
|
1937
|
-
*/
|
|
1938
|
-
export const renameProcessor = (options) => (options.client ?? client).post({
|
|
1939
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1940
|
-
url: '/api/processors/rename-processor',
|
|
1941
|
-
...options,
|
|
1942
|
-
headers: {
|
|
1943
|
-
'Content-Type': 'application/json',
|
|
1944
|
-
...options.headers
|
|
1945
|
-
}
|
|
1946
|
-
});
|
|
1947
|
-
/**
|
|
1948
|
-
* RenameProcessorSubfield
|
|
1949
|
-
*/
|
|
1950
|
-
export const renameProcessorSubfield = (options) => (options.client ?? client).post({
|
|
1951
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1952
|
-
url: '/api/processors/rename-processor-subfield',
|
|
1953
|
-
...options,
|
|
1954
|
-
headers: {
|
|
1955
|
-
'Content-Type': 'application/json',
|
|
1956
|
-
...options.headers
|
|
1957
|
-
}
|
|
1958
|
-
});
|
|
1959
|
-
/**
|
|
1960
|
-
* RenameProcessorField
|
|
1961
|
-
*/
|
|
1962
|
-
export const renameProcessorField = (options) => (options.client ?? client).post({
|
|
1963
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1964
|
-
url: '/api/processors/rename-processor-field',
|
|
1965
|
-
...options,
|
|
1966
|
-
headers: {
|
|
1967
|
-
'Content-Type': 'application/json',
|
|
1968
|
-
...options.headers
|
|
1969
|
-
}
|
|
1970
|
-
});
|
|
1971
|
-
/**
|
|
1972
|
-
* Remove a processor from the canvas
|
|
1973
|
-
*/
|
|
1974
|
-
export const removeProcessor = (options) => (options.client ?? client).post({
|
|
1975
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1976
|
-
url: '/api/processors/remove-processor',
|
|
1977
|
-
...options,
|
|
1978
|
-
headers: {
|
|
1979
|
-
'Content-Type': 'application/json',
|
|
1980
|
-
...options.headers
|
|
1981
|
-
}
|
|
1982
|
-
});
|
|
1983
|
-
/**
|
|
1984
|
-
* RemoveProcessorSubfield
|
|
1985
|
-
*/
|
|
1986
|
-
export const removeProcessorSubfield = (options) => (options.client ?? client).post({
|
|
1987
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
1988
|
-
url: '/api/processors/remove-processor-subfield',
|
|
1989
|
-
...options,
|
|
1990
|
-
headers: {
|
|
1991
|
-
'Content-Type': 'application/json',
|
|
1992
|
-
...options.headers
|
|
1993
|
-
}
|
|
1994
|
-
});
|
|
1995
|
-
/**
|
|
1996
|
-
* RemoveProcessorField
|
|
1997
|
-
*/
|
|
1998
|
-
export const removeProcessorField = (options) => (options.client ?? client).post({
|
|
1999
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2000
|
-
url: '/api/processors/remove-processor-field',
|
|
2001
|
-
...options,
|
|
2002
|
-
headers: {
|
|
2003
|
-
'Content-Type': 'application/json',
|
|
2004
|
-
...options.headers
|
|
2005
|
-
}
|
|
2006
|
-
});
|
|
2007
|
-
/**
|
|
2008
|
-
* Place a new processor on the canvas
|
|
2009
|
-
*/
|
|
2010
|
-
export const placeProcessor = (options) => (options.client ?? client).post({
|
|
2011
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2012
|
-
url: '/api/processors/place-processor',
|
|
2013
|
-
...options,
|
|
2014
|
-
headers: {
|
|
2015
|
-
'Content-Type': 'application/json',
|
|
2016
|
-
...options.headers
|
|
2017
|
-
}
|
|
2018
|
-
});
|
|
2019
|
-
/**
|
|
2020
|
-
* Move a processor to a new position
|
|
2021
|
-
*/
|
|
2022
|
-
export const moveProcessor = (options) => (options.client ?? client).post({
|
|
2023
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2024
|
-
url: '/api/processors/move-processor',
|
|
2025
|
-
...options,
|
|
2026
|
-
headers: {
|
|
2027
|
-
'Content-Type': 'application/json',
|
|
2028
|
-
...options.headers
|
|
2029
|
-
}
|
|
2030
|
-
});
|
|
2031
|
-
/**
|
|
2032
|
-
* MarkProcessorSubfieldAsOptional
|
|
2033
|
-
*/
|
|
2034
|
-
export const markProcessorSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
2035
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2036
|
-
url: '/api/processors/mark-processor-subfield-as-optional',
|
|
2037
|
-
...options,
|
|
2038
|
-
headers: {
|
|
2039
|
-
'Content-Type': 'application/json',
|
|
2040
|
-
...options.headers
|
|
2041
|
-
}
|
|
2042
|
-
});
|
|
2043
|
-
/**
|
|
2044
|
-
* MarkProcessorSubfieldAsList
|
|
2045
|
-
*/
|
|
2046
|
-
export const markProcessorSubfieldAsList = (options) => (options.client ?? client).post({
|
|
2047
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2048
|
-
url: '/api/processors/mark-processor-subfield-as-list',
|
|
2049
|
-
...options,
|
|
2050
|
-
headers: {
|
|
2051
|
-
'Content-Type': 'application/json',
|
|
2052
|
-
...options.headers
|
|
2053
|
-
}
|
|
2054
|
-
});
|
|
2055
|
-
/**
|
|
2056
|
-
* MarkProcessorSubfieldAsGenerated
|
|
2057
|
-
*/
|
|
2058
|
-
export const markProcessorSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
2059
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2060
|
-
url: '/api/processors/mark-processor-subfield-as-generated',
|
|
2061
|
-
...options,
|
|
2062
|
-
headers: {
|
|
2063
|
-
'Content-Type': 'application/json',
|
|
2064
|
-
...options.headers
|
|
2065
|
-
}
|
|
2066
|
-
});
|
|
2067
|
-
/**
|
|
2068
|
-
* MarkProcessorFieldAsOptional
|
|
2069
|
-
*/
|
|
2070
|
-
export const markProcessorFieldAsOptional = (options) => (options.client ?? client).post({
|
|
2071
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2072
|
-
url: '/api/processors/mark-processor-field-as-optional',
|
|
2073
|
-
...options,
|
|
2074
|
-
headers: {
|
|
2075
|
-
'Content-Type': 'application/json',
|
|
2076
|
-
...options.headers
|
|
2077
|
-
}
|
|
2078
|
-
});
|
|
2079
|
-
/**
|
|
2080
|
-
* MarkProcessorFieldAsList
|
|
2081
|
-
*/
|
|
2082
|
-
export const markProcessorFieldAsList = (options) => (options.client ?? client).post({
|
|
2083
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2084
|
-
url: '/api/processors/mark-processor-field-as-list',
|
|
2085
|
-
...options,
|
|
2086
|
-
headers: {
|
|
2087
|
-
'Content-Type': 'application/json',
|
|
2088
|
-
...options.headers
|
|
2089
|
-
}
|
|
2090
|
-
});
|
|
2091
|
-
/**
|
|
2092
|
-
* MarkProcessorFieldAsGenerated
|
|
2093
|
-
*/
|
|
2094
|
-
export const markProcessorFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
2095
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2096
|
-
url: '/api/processors/mark-processor-field-as-generated',
|
|
2097
|
-
...options,
|
|
2098
|
-
headers: {
|
|
2099
|
-
'Content-Type': 'application/json',
|
|
2100
|
-
...options.headers
|
|
2101
|
-
}
|
|
2102
|
-
});
|
|
2103
|
-
/**
|
|
2104
|
-
* ChangeProcessorSubfieldType
|
|
2105
|
-
*/
|
|
2106
|
-
export const changeProcessorSubfieldType = (options) => (options.client ?? client).post({
|
|
2107
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2108
|
-
url: '/api/processors/change-processor-subfield-type',
|
|
2109
|
-
...options,
|
|
2110
|
-
headers: {
|
|
2111
|
-
'Content-Type': 'application/json',
|
|
2112
|
-
...options.headers
|
|
2113
|
-
}
|
|
2114
|
-
});
|
|
2115
|
-
/**
|
|
2116
|
-
* ChangeProcessorFieldType
|
|
2117
|
-
*/
|
|
2118
|
-
export const changeProcessorFieldType = (options) => (options.client ?? client).post({
|
|
2119
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2120
|
-
url: '/api/processors/change-processor-field-type',
|
|
2121
|
-
...options,
|
|
2122
|
-
headers: {
|
|
2123
|
-
'Content-Type': 'application/json',
|
|
2124
|
-
...options.headers
|
|
2125
|
-
}
|
|
2126
|
-
});
|
|
2127
|
-
/**
|
|
2128
|
-
* AddProcessorSubfield
|
|
2129
|
-
*/
|
|
2130
|
-
export const addProcessorSubfield = (options) => (options.client ?? client).post({
|
|
2131
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2132
|
-
url: '/api/processors/add-processor-subfield',
|
|
2133
|
-
...options,
|
|
2134
|
-
headers: {
|
|
2135
|
-
'Content-Type': 'application/json',
|
|
2136
|
-
...options.headers
|
|
2137
|
-
}
|
|
2138
|
-
});
|
|
2139
|
-
/**
|
|
2140
|
-
* AddProcessorField
|
|
2141
|
-
*/
|
|
2142
|
-
export const addProcessorField = (options) => (options.client ?? client).post({
|
|
2143
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2144
|
-
url: '/api/processors/add-processor-field',
|
|
2145
|
-
...options,
|
|
2146
|
-
headers: {
|
|
2147
|
-
'Content-Type': 'application/json',
|
|
2148
|
-
...options.headers
|
|
2149
|
-
}
|
|
2150
|
-
});
|
|
2151
|
-
/**
|
|
2152
|
-
* Rename a note
|
|
2153
|
-
*/
|
|
2154
|
-
export const renameNote = (options) => (options.client ?? client).post({
|
|
2155
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2156
|
-
url: '/api/notes/rename-note',
|
|
2157
|
-
...options,
|
|
2158
|
-
headers: {
|
|
2159
|
-
'Content-Type': 'application/json',
|
|
2160
|
-
...options.headers
|
|
2161
|
-
}
|
|
2162
|
-
});
|
|
2163
|
-
/**
|
|
2164
|
-
* Remove a note from the canvas
|
|
2165
|
-
*/
|
|
2166
|
-
export const removeNote = (options) => (options.client ?? client).post({
|
|
2167
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2168
|
-
url: '/api/notes/remove-note',
|
|
2169
|
-
...options,
|
|
2170
|
-
headers: {
|
|
2171
|
-
'Content-Type': 'application/json',
|
|
2172
|
-
...options.headers
|
|
2173
|
-
}
|
|
2174
|
-
});
|
|
2175
|
-
/**
|
|
2176
|
-
* Change a note's description
|
|
2177
|
-
*/
|
|
2178
|
-
export const redescribeNote = (options) => (options.client ?? client).post({
|
|
2179
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2180
|
-
url: '/api/notes/redescribe-note',
|
|
2181
|
-
...options,
|
|
2182
|
-
headers: {
|
|
2183
|
-
'Content-Type': 'application/json',
|
|
2184
|
-
...options.headers
|
|
2185
|
-
}
|
|
2186
|
-
});
|
|
2187
|
-
/**
|
|
2188
|
-
* Place a new note on the canvas
|
|
2189
|
-
*/
|
|
2190
|
-
export const placeNote = (options) => (options.client ?? client).post({
|
|
2191
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2192
|
-
url: '/api/notes/place-note',
|
|
2193
|
-
...options,
|
|
2194
|
-
headers: {
|
|
2195
|
-
'Content-Type': 'application/json',
|
|
2196
|
-
...options.headers
|
|
2197
|
-
}
|
|
2198
|
-
});
|
|
2199
|
-
/**
|
|
2200
|
-
* Move a note to a new position
|
|
2201
|
-
*/
|
|
2202
|
-
export const moveNote = (options) => (options.client ?? client).post({
|
|
2203
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2204
|
-
url: '/api/notes/move-note',
|
|
2205
|
-
...options,
|
|
2206
|
-
headers: {
|
|
2207
|
-
'Content-Type': 'application/json',
|
|
2208
|
-
...options.headers
|
|
2209
|
-
}
|
|
2210
|
-
});
|
|
2211
|
-
/**
|
|
2212
|
-
* Remove a collaborator or viewer from an event model
|
|
2213
|
-
*/
|
|
2214
|
-
export const removeShare = (options) => (options.client ?? client).post({
|
|
2215
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2216
|
-
url: '/api/model-management/remove-share',
|
|
2217
|
-
...options,
|
|
2218
|
-
headers: {
|
|
2219
|
-
'Content-Type': 'application/json',
|
|
2220
|
-
...options.headers
|
|
2221
|
-
}
|
|
2222
|
-
});
|
|
2223
|
-
/**
|
|
2224
|
-
* Invite a viewer to an event model
|
|
2225
|
-
*/
|
|
2226
|
-
export const inviteViewer = (options) => (options.client ?? client).post({
|
|
2227
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2228
|
-
url: '/api/model-management/invite-viewer',
|
|
2229
|
-
...options,
|
|
2230
|
-
headers: {
|
|
2231
|
-
'Content-Type': 'application/json',
|
|
2232
|
-
...options.headers
|
|
2233
|
-
}
|
|
2234
|
-
});
|
|
2235
|
-
/**
|
|
2236
|
-
* Invite a collaborator to an event model
|
|
2237
|
-
*/
|
|
2238
|
-
export const inviteCollaborator = (options) => (options.client ?? client).post({
|
|
2239
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2240
|
-
url: '/api/model-management/invite-collaborator',
|
|
2241
|
-
...options,
|
|
2242
|
-
headers: {
|
|
2243
|
-
'Content-Type': 'application/json',
|
|
2244
|
-
...options.headers
|
|
2245
|
-
}
|
|
2246
|
-
});
|
|
2247
|
-
/**
|
|
2248
|
-
* Create a new event model
|
|
2249
|
-
*/
|
|
2250
|
-
export const createModel = (options) => (options.client ?? client).post({
|
|
2251
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2252
|
-
url: '/api/model-management/create-model',
|
|
2253
|
-
...options,
|
|
2254
|
-
headers: {
|
|
2255
|
-
'Content-Type': 'application/json',
|
|
2256
|
-
...options.headers
|
|
2257
|
-
}
|
|
2258
|
-
});
|
|
2259
|
-
/**
|
|
2260
|
-
* specify screen to command flow
|
|
2261
|
-
*/
|
|
2262
|
-
export const specifyScreenToCommandFlow = (options) => (options.client ?? client).post({
|
|
2263
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2264
|
-
url: '/api/information-flows/specify-screen-to-command-flow',
|
|
2265
|
-
...options,
|
|
2266
|
-
headers: {
|
|
2267
|
-
'Content-Type': 'application/json',
|
|
2268
|
-
...options.headers
|
|
2269
|
-
}
|
|
2270
|
-
});
|
|
2271
|
-
/**
|
|
2272
|
-
* specify read model to screen flow
|
|
2273
|
-
*/
|
|
2274
|
-
export const specifyReadModelToScreenFlow = (options) => (options.client ?? client).post({
|
|
2275
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2276
|
-
url: '/api/information-flows/specify-read-model-to-screen-flow',
|
|
2277
|
-
...options,
|
|
2278
|
-
headers: {
|
|
2279
|
-
'Content-Type': 'application/json',
|
|
2280
|
-
...options.headers
|
|
2281
|
-
}
|
|
2282
|
-
});
|
|
2283
|
-
/**
|
|
2284
|
-
* specify read model to processor flow
|
|
2285
|
-
*/
|
|
2286
|
-
export const specifyReadModelToProcessorFlow = (options) => (options.client ?? client).post({
|
|
2287
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2288
|
-
url: '/api/information-flows/specify-read-model-to-processor-flow',
|
|
2289
|
-
...options,
|
|
2290
|
-
headers: {
|
|
2291
|
-
'Content-Type': 'application/json',
|
|
2292
|
-
...options.headers
|
|
2293
|
-
}
|
|
2294
|
-
});
|
|
2295
|
-
/**
|
|
2296
|
-
* specify processor to command flow
|
|
2297
|
-
*/
|
|
2298
|
-
export const specifyProcessorToCommandFlow = (options) => (options.client ?? client).post({
|
|
2299
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2300
|
-
url: '/api/information-flows/specify-processor-to-command-flow',
|
|
2301
|
-
...options,
|
|
2302
|
-
headers: {
|
|
2303
|
-
'Content-Type': 'application/json',
|
|
2304
|
-
...options.headers
|
|
2305
|
-
}
|
|
2306
|
-
});
|
|
2307
|
-
/**
|
|
2308
|
-
* specify external event to processor flow
|
|
2309
|
-
*/
|
|
2310
|
-
export const specifyExternalEventToProcessorFlow = (options) => (options.client ?? client).post({
|
|
2311
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2312
|
-
url: '/api/information-flows/specify-external-event-to-processor-flow',
|
|
2313
|
-
...options,
|
|
2314
|
-
headers: {
|
|
2315
|
-
'Content-Type': 'application/json',
|
|
2316
|
-
...options.headers
|
|
2317
|
-
}
|
|
2318
|
-
});
|
|
2319
|
-
/**
|
|
2320
|
-
* specify event to read model flow
|
|
2321
|
-
*/
|
|
2322
|
-
export const specifyEventToReadModelFlow = (options) => (options.client ?? client).post({
|
|
2323
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2324
|
-
url: '/api/information-flows/specify-event-to-read-model-flow',
|
|
2325
|
-
...options,
|
|
2326
|
-
headers: {
|
|
2327
|
-
'Content-Type': 'application/json',
|
|
2328
|
-
...options.headers
|
|
2329
|
-
}
|
|
2330
|
-
});
|
|
2331
|
-
/**
|
|
2332
|
-
* specify command to external event flow
|
|
2333
|
-
*/
|
|
2334
|
-
export const specifyCommandToExternalEventFlow = (options) => (options.client ?? client).post({
|
|
2335
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2336
|
-
url: '/api/information-flows/specify-command-to-external-event-flow',
|
|
2337
|
-
...options,
|
|
2338
|
-
headers: {
|
|
2339
|
-
'Content-Type': 'application/json',
|
|
2340
|
-
...options.headers
|
|
2341
|
-
}
|
|
2342
|
-
});
|
|
2343
|
-
/**
|
|
2344
|
-
* specify command to event flow
|
|
2345
|
-
*/
|
|
2346
|
-
export const specifyCommandToEventFlow = (options) => (options.client ?? client).post({
|
|
2347
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2348
|
-
url: '/api/information-flows/specify-command-to-event-flow',
|
|
2349
|
-
...options,
|
|
2350
|
-
headers: {
|
|
2351
|
-
'Content-Type': 'application/json',
|
|
2352
|
-
...options.headers
|
|
2353
|
-
}
|
|
2354
|
-
});
|
|
2355
|
-
/**
|
|
2356
|
-
* remove flow
|
|
2357
|
-
*/
|
|
2358
|
-
export const removeFlow = (options) => (options.client ?? client).post({
|
|
2359
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2360
|
-
url: '/api/information-flows/remove-flow',
|
|
2361
|
-
...options,
|
|
2362
|
-
headers: {
|
|
2363
|
-
'Content-Type': 'application/json',
|
|
2364
|
-
...options.headers
|
|
2365
|
-
}
|
|
2366
|
-
});
|
|
2367
|
-
/**
|
|
2368
|
-
* remove field mapping
|
|
2369
|
-
*/
|
|
2370
|
-
export const removeFieldMapping = (options) => (options.client ?? client).post({
|
|
2371
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2372
|
-
url: '/api/information-flows/remove-field-mapping',
|
|
2373
|
-
...options,
|
|
2374
|
-
headers: {
|
|
2375
|
-
'Content-Type': 'application/json',
|
|
2376
|
-
...options.headers
|
|
2377
|
-
}
|
|
2378
|
-
});
|
|
2379
|
-
/**
|
|
2380
|
-
* add field mapping
|
|
2381
|
-
*/
|
|
2382
|
-
export const addFieldMapping = (options) => (options.client ?? client).post({
|
|
2383
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2384
|
-
url: '/api/information-flows/add-field-mapping',
|
|
2385
|
-
...options,
|
|
2386
|
-
headers: {
|
|
2387
|
-
'Content-Type': 'application/json',
|
|
2388
|
-
...options.headers
|
|
2389
|
-
}
|
|
2390
|
-
});
|
|
2391
|
-
/**
|
|
2392
|
-
* UnmarkExternalEventSubfieldAsOptional
|
|
2393
|
-
*/
|
|
2394
|
-
export const unmarkExternalEventSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
2395
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2396
|
-
url: '/api/external-event-stickies/unmark-external-event-subfield-as-optional',
|
|
2397
|
-
...options,
|
|
2398
|
-
headers: {
|
|
2399
|
-
'Content-Type': 'application/json',
|
|
2400
|
-
...options.headers
|
|
2401
|
-
}
|
|
2402
|
-
});
|
|
2403
|
-
/**
|
|
2404
|
-
* UnmarkExternalEventSubfieldAsList
|
|
2405
|
-
*/
|
|
2406
|
-
export const unmarkExternalEventSubfieldAsList = (options) => (options.client ?? client).post({
|
|
2407
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2408
|
-
url: '/api/external-event-stickies/unmark-external-event-subfield-as-list',
|
|
2409
|
-
...options,
|
|
2410
|
-
headers: {
|
|
2411
|
-
'Content-Type': 'application/json',
|
|
2412
|
-
...options.headers
|
|
2413
|
-
}
|
|
2414
|
-
});
|
|
2415
|
-
/**
|
|
2416
|
-
* Unmark an external event field as optional
|
|
2417
|
-
*/
|
|
2418
|
-
export const unmarkExternalEventFieldAsOptional = (options) => (options.client ?? client).post({
|
|
2419
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2420
|
-
url: '/api/external-event-stickies/unmark-external-event-field-as-optional',
|
|
2421
|
-
...options,
|
|
2422
|
-
headers: {
|
|
2423
|
-
'Content-Type': 'application/json',
|
|
2424
|
-
...options.headers
|
|
2425
|
-
}
|
|
2426
|
-
});
|
|
2427
|
-
/**
|
|
2428
|
-
* Unmark an external event field as a list
|
|
2429
|
-
*/
|
|
2430
|
-
export const unmarkExternalEventFieldAsList = (options) => (options.client ?? client).post({
|
|
2431
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2432
|
-
url: '/api/external-event-stickies/unmark-external-event-field-as-list',
|
|
2433
|
-
...options,
|
|
2434
|
-
headers: {
|
|
2435
|
-
'Content-Type': 'application/json',
|
|
2436
|
-
...options.headers
|
|
2437
|
-
}
|
|
2438
|
-
});
|
|
2439
|
-
/**
|
|
2440
|
-
* ReorderExternalEventSubfield
|
|
2441
|
-
*/
|
|
2442
|
-
export const reorderExternalEventSubfield = (options) => (options.client ?? client).post({
|
|
2443
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2444
|
-
url: '/api/external-event-stickies/reorder-external-event-subfield',
|
|
2445
|
-
...options,
|
|
2446
|
-
headers: {
|
|
2447
|
-
'Content-Type': 'application/json',
|
|
2448
|
-
...options.headers
|
|
2449
|
-
}
|
|
2450
|
-
});
|
|
2451
|
-
/**
|
|
2452
|
-
* Reorder an external event field
|
|
2453
|
-
*/
|
|
2454
|
-
export const reorderExternalEventField = (options) => (options.client ?? client).post({
|
|
2455
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2456
|
-
url: '/api/external-event-stickies/reorder-external-event-field',
|
|
2457
|
-
...options,
|
|
2458
|
-
headers: {
|
|
2459
|
-
'Content-Type': 'application/json',
|
|
2460
|
-
...options.headers
|
|
2461
|
-
}
|
|
2462
|
-
});
|
|
2463
|
-
/**
|
|
2464
|
-
* Rename a external event
|
|
2465
|
-
*/
|
|
2466
|
-
export const renameExternalEvent = (options) => (options.client ?? client).post({
|
|
2467
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2468
|
-
url: '/api/external-event-stickies/rename-external-event',
|
|
2469
|
-
...options,
|
|
2470
|
-
headers: {
|
|
2471
|
-
'Content-Type': 'application/json',
|
|
2472
|
-
...options.headers
|
|
2473
|
-
}
|
|
2474
|
-
});
|
|
2475
|
-
/**
|
|
2476
|
-
* Rename an external event subfield
|
|
2477
|
-
*/
|
|
2478
|
-
export const renameExternalEventSubfield = (options) => (options.client ?? client).post({
|
|
2479
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2480
|
-
url: '/api/external-event-stickies/rename-external-event-subfield',
|
|
2481
|
-
...options,
|
|
2482
|
-
headers: {
|
|
2483
|
-
'Content-Type': 'application/json',
|
|
2484
|
-
...options.headers
|
|
2485
|
-
}
|
|
2486
|
-
});
|
|
2487
|
-
/**
|
|
2488
|
-
* Rename an external event field
|
|
2489
|
-
*/
|
|
2490
|
-
export const renameExternalEventField = (options) => (options.client ?? client).post({
|
|
2491
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2492
|
-
url: '/api/external-event-stickies/rename-external-event-field',
|
|
2493
|
-
...options,
|
|
2494
|
-
headers: {
|
|
2495
|
-
'Content-Type': 'application/json',
|
|
2496
|
-
...options.headers
|
|
2497
|
-
}
|
|
2498
|
-
});
|
|
2499
|
-
/**
|
|
2500
|
-
* Remove a external event from the canvas
|
|
2501
|
-
*/
|
|
2502
|
-
export const removeExternalEvent = (options) => (options.client ?? client).post({
|
|
2503
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2504
|
-
url: '/api/external-event-stickies/remove-external-event',
|
|
2505
|
-
...options,
|
|
2506
|
-
headers: {
|
|
2507
|
-
'Content-Type': 'application/json',
|
|
2508
|
-
...options.headers
|
|
2509
|
-
}
|
|
2510
|
-
});
|
|
2511
|
-
/**
|
|
2512
|
-
* Remove a subfield from an external event field
|
|
2513
|
-
*/
|
|
2514
|
-
export const removeExternalEventSubfield = (options) => (options.client ?? client).post({
|
|
2515
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2516
|
-
url: '/api/external-event-stickies/remove-external-event-subfield',
|
|
2517
|
-
...options,
|
|
2518
|
-
headers: {
|
|
2519
|
-
'Content-Type': 'application/json',
|
|
2520
|
-
...options.headers
|
|
2521
|
-
}
|
|
2522
|
-
});
|
|
2523
|
-
/**
|
|
2524
|
-
* Remove a linked copy of an external event from the canvas
|
|
2525
|
-
*/
|
|
2526
|
-
export const removeExternalEventLinkedCopy = (options) => (options.client ?? client).post({
|
|
2527
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2528
|
-
url: '/api/external-event-stickies/remove-external-event-linked-copy',
|
|
2529
|
-
...options,
|
|
2530
|
-
headers: {
|
|
2531
|
-
'Content-Type': 'application/json',
|
|
2532
|
-
...options.headers
|
|
2533
|
-
}
|
|
2534
|
-
});
|
|
2535
|
-
/**
|
|
2536
|
-
* Remove a field from an external event
|
|
2537
|
-
*/
|
|
2538
|
-
export const removeExternalEventField = (options) => (options.client ?? client).post({
|
|
2539
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2540
|
-
url: '/api/external-event-stickies/remove-external-event-field',
|
|
2541
|
-
...options,
|
|
2542
|
-
headers: {
|
|
2543
|
-
'Content-Type': 'application/json',
|
|
2544
|
-
...options.headers
|
|
2545
|
-
}
|
|
2546
|
-
});
|
|
2547
|
-
/**
|
|
2548
|
-
* Place a new external event on the canvas
|
|
2549
|
-
*/
|
|
2550
|
-
export const placeExternalEvent = (options) => (options.client ?? client).post({
|
|
2551
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2552
|
-
url: '/api/external-event-stickies/place-external-event',
|
|
2553
|
-
...options,
|
|
2554
|
-
headers: {
|
|
2555
|
-
'Content-Type': 'application/json',
|
|
2556
|
-
...options.headers
|
|
2557
|
-
}
|
|
2558
|
-
});
|
|
2559
|
-
/**
|
|
2560
|
-
* Place a linked copy of an external event on the canvas
|
|
2561
|
-
*/
|
|
2562
|
-
export const placeExternalEventLinkedCopy = (options) => (options.client ?? client).post({
|
|
2563
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2564
|
-
url: '/api/external-event-stickies/place-external-event-linked-copy',
|
|
2565
|
-
...options,
|
|
2566
|
-
headers: {
|
|
2567
|
-
'Content-Type': 'application/json',
|
|
2568
|
-
...options.headers
|
|
2569
|
-
}
|
|
2570
|
-
});
|
|
2571
|
-
/**
|
|
2572
|
-
* Move a external event to a new position on the canvas
|
|
2573
|
-
*/
|
|
2574
|
-
export const moveExternalEvent = (options) => (options.client ?? client).post({
|
|
2575
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2576
|
-
url: '/api/external-event-stickies/move-external-event',
|
|
2577
|
-
...options,
|
|
2578
|
-
headers: {
|
|
2579
|
-
'Content-Type': 'application/json',
|
|
2580
|
-
...options.headers
|
|
2581
|
-
}
|
|
2582
|
-
});
|
|
2583
|
-
/**
|
|
2584
|
-
* Move an external event linked copy to a new position on the canvas
|
|
2585
|
-
*/
|
|
2586
|
-
export const moveExternalEventLinkedCopy = (options) => (options.client ?? client).post({
|
|
2587
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2588
|
-
url: '/api/external-event-stickies/move-external-event-linked-copy',
|
|
2589
|
-
...options,
|
|
2590
|
-
headers: {
|
|
2591
|
-
'Content-Type': 'application/json',
|
|
2592
|
-
...options.headers
|
|
2593
|
-
}
|
|
2594
|
-
});
|
|
2595
|
-
/**
|
|
2596
|
-
* MarkExternalEventSubfieldAsOptional
|
|
2597
|
-
*/
|
|
2598
|
-
export const markExternalEventSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
2599
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2600
|
-
url: '/api/external-event-stickies/mark-external-event-subfield-as-optional',
|
|
2601
|
-
...options,
|
|
2602
|
-
headers: {
|
|
2603
|
-
'Content-Type': 'application/json',
|
|
2604
|
-
...options.headers
|
|
2605
|
-
}
|
|
2606
|
-
});
|
|
2607
|
-
/**
|
|
2608
|
-
* MarkExternalEventSubfieldAsList
|
|
2609
|
-
*/
|
|
2610
|
-
export const markExternalEventSubfieldAsList = (options) => (options.client ?? client).post({
|
|
2611
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2612
|
-
url: '/api/external-event-stickies/mark-external-event-subfield-as-list',
|
|
2613
|
-
...options,
|
|
2614
|
-
headers: {
|
|
2615
|
-
'Content-Type': 'application/json',
|
|
2616
|
-
...options.headers
|
|
2617
|
-
}
|
|
2618
|
-
});
|
|
2619
|
-
/**
|
|
2620
|
-
* Mark an external event field as optional
|
|
2621
|
-
*/
|
|
2622
|
-
export const markExternalEventFieldAsOptional = (options) => (options.client ?? client).post({
|
|
2623
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2624
|
-
url: '/api/external-event-stickies/mark-external-event-field-as-optional',
|
|
2625
|
-
...options,
|
|
2626
|
-
headers: {
|
|
2627
|
-
'Content-Type': 'application/json',
|
|
2628
|
-
...options.headers
|
|
2629
|
-
}
|
|
2630
|
-
});
|
|
2631
|
-
/**
|
|
2632
|
-
* Mark an external event field as a list
|
|
2633
|
-
*/
|
|
2634
|
-
export const markExternalEventFieldAsList = (options) => (options.client ?? client).post({
|
|
2635
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2636
|
-
url: '/api/external-event-stickies/mark-external-event-field-as-list',
|
|
2637
|
-
...options,
|
|
2638
|
-
headers: {
|
|
2639
|
-
'Content-Type': 'application/json',
|
|
2640
|
-
...options.headers
|
|
2641
|
-
}
|
|
2642
|
-
});
|
|
2643
|
-
/**
|
|
2644
|
-
* Change the type of an external event subfield
|
|
2645
|
-
*/
|
|
2646
|
-
export const changeExternalEventSubfieldType = (options) => (options.client ?? client).post({
|
|
2647
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2648
|
-
url: '/api/external-event-stickies/change-external-event-subfield-type',
|
|
2649
|
-
...options,
|
|
2650
|
-
headers: {
|
|
2651
|
-
'Content-Type': 'application/json',
|
|
2652
|
-
...options.headers
|
|
2653
|
-
}
|
|
2654
|
-
});
|
|
2655
|
-
/**
|
|
2656
|
-
* Change the type of an external event field
|
|
2657
|
-
*/
|
|
2658
|
-
export const changeExternalEventFieldType = (options) => (options.client ?? client).post({
|
|
2659
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2660
|
-
url: '/api/external-event-stickies/change-external-event-field-type',
|
|
2661
|
-
...options,
|
|
2662
|
-
headers: {
|
|
2663
|
-
'Content-Type': 'application/json',
|
|
2664
|
-
...options.headers
|
|
2665
|
-
}
|
|
2666
|
-
});
|
|
2667
|
-
/**
|
|
2668
|
-
* Add a subfield to an external event field
|
|
2669
|
-
*/
|
|
2670
|
-
export const addExternalEventSubfield = (options) => (options.client ?? client).post({
|
|
2671
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2672
|
-
url: '/api/external-event-stickies/add-external-event-subfield',
|
|
2673
|
-
...options,
|
|
2674
|
-
headers: {
|
|
2675
|
-
'Content-Type': 'application/json',
|
|
2676
|
-
...options.headers
|
|
2677
|
-
}
|
|
2678
|
-
});
|
|
2679
|
-
/**
|
|
2680
|
-
* Add a field to an external event
|
|
2681
|
-
*/
|
|
2682
|
-
export const addExternalEventField = (options) => (options.client ?? client).post({
|
|
2683
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2684
|
-
url: '/api/external-event-stickies/add-external-event-field',
|
|
2685
|
-
...options,
|
|
2686
|
-
headers: {
|
|
2687
|
-
'Content-Type': 'application/json',
|
|
2688
|
-
...options.headers
|
|
2689
|
-
}
|
|
2690
|
-
});
|
|
2691
|
-
/**
|
|
2692
|
-
* Unmark an event subfield as optional
|
|
2693
|
-
*/
|
|
2694
|
-
export const unmarkEventSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
2695
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2696
|
-
url: '/api/event-stickies/unmark-event-subfield-as-optional',
|
|
2697
|
-
...options,
|
|
2698
|
-
headers: {
|
|
2699
|
-
'Content-Type': 'application/json',
|
|
2700
|
-
...options.headers
|
|
2701
|
-
}
|
|
2702
|
-
});
|
|
2703
|
-
/**
|
|
2704
|
-
* Unmark an event subfield as list
|
|
2705
|
-
*/
|
|
2706
|
-
export const unmarkEventSubfieldAsList = (options) => (options.client ?? client).post({
|
|
2707
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2708
|
-
url: '/api/event-stickies/unmark-event-subfield-as-list',
|
|
2709
|
-
...options,
|
|
2710
|
-
headers: {
|
|
2711
|
-
'Content-Type': 'application/json',
|
|
2712
|
-
...options.headers
|
|
2713
|
-
}
|
|
2714
|
-
});
|
|
2715
|
-
/**
|
|
2716
|
-
* Unmark an event subfield as generated
|
|
2717
|
-
*/
|
|
2718
|
-
export const unmarkEventSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
2719
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2720
|
-
url: '/api/event-stickies/unmark-event-subfield-as-generated',
|
|
2721
|
-
...options,
|
|
2722
|
-
headers: {
|
|
2723
|
-
'Content-Type': 'application/json',
|
|
2724
|
-
...options.headers
|
|
2725
|
-
}
|
|
2726
|
-
});
|
|
2727
|
-
/**
|
|
2728
|
-
* Unmark an event sticky field as optional
|
|
2729
|
-
*/
|
|
2730
|
-
export const unmarkEventFieldAsOptional = (options) => (options.client ?? client).post({
|
|
2731
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2732
|
-
url: '/api/event-stickies/unmark-event-field-as-optional',
|
|
2733
|
-
...options,
|
|
2734
|
-
headers: {
|
|
2735
|
-
'Content-Type': 'application/json',
|
|
2736
|
-
...options.headers
|
|
2737
|
-
}
|
|
2738
|
-
});
|
|
2739
|
-
/**
|
|
2740
|
-
* Unmark an event sticky field as a list
|
|
2741
|
-
*/
|
|
2742
|
-
export const unmarkEventFieldAsList = (options) => (options.client ?? client).post({
|
|
2743
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2744
|
-
url: '/api/event-stickies/unmark-event-field-as-list',
|
|
2745
|
-
...options,
|
|
2746
|
-
headers: {
|
|
2747
|
-
'Content-Type': 'application/json',
|
|
2748
|
-
...options.headers
|
|
2749
|
-
}
|
|
2750
|
-
});
|
|
2751
|
-
/**
|
|
2752
|
-
* Unmark an event sticky field as generated
|
|
2753
|
-
*/
|
|
2754
|
-
export const unmarkEventFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
2755
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2756
|
-
url: '/api/event-stickies/unmark-event-field-as-generated',
|
|
2757
|
-
...options,
|
|
2758
|
-
headers: {
|
|
2759
|
-
'Content-Type': 'application/json',
|
|
2760
|
-
...options.headers
|
|
2761
|
-
}
|
|
2762
|
-
});
|
|
2763
|
-
/**
|
|
2764
|
-
* Reorder an event subfield
|
|
2765
|
-
*/
|
|
2766
|
-
export const reorderEventSubfield = (options) => (options.client ?? client).post({
|
|
2767
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2768
|
-
url: '/api/event-stickies/reorder-event-subfield',
|
|
2769
|
-
...options,
|
|
2770
|
-
headers: {
|
|
2771
|
-
'Content-Type': 'application/json',
|
|
2772
|
-
...options.headers
|
|
2773
|
-
}
|
|
2774
|
-
});
|
|
2775
|
-
/**
|
|
2776
|
-
* Reorder a field on an event sticky
|
|
2777
|
-
*/
|
|
2778
|
-
export const reorderEventField = (options) => (options.client ?? client).post({
|
|
2779
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2780
|
-
url: '/api/event-stickies/reorder-event-field',
|
|
2781
|
-
...options,
|
|
2782
|
-
headers: {
|
|
2783
|
-
'Content-Type': 'application/json',
|
|
2784
|
-
...options.headers
|
|
2785
|
-
}
|
|
2786
|
-
});
|
|
2787
|
-
/**
|
|
2788
|
-
* Rename an event sticky subfield
|
|
2789
|
-
*/
|
|
2790
|
-
export const renameEventSubfield = (options) => (options.client ?? client).post({
|
|
2791
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2792
|
-
url: '/api/event-stickies/rename-event-subfield',
|
|
2793
|
-
...options,
|
|
2794
|
-
headers: {
|
|
2795
|
-
'Content-Type': 'application/json',
|
|
2796
|
-
...options.headers
|
|
2797
|
-
}
|
|
2798
|
-
});
|
|
2799
|
-
/**
|
|
2800
|
-
* Rename an event sticky
|
|
2801
|
-
*/
|
|
2802
|
-
export const renameEventSticky = (options) => (options.client ?? client).post({
|
|
2803
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2804
|
-
url: '/api/event-stickies/rename-event-sticky',
|
|
2805
|
-
...options,
|
|
2806
|
-
headers: {
|
|
2807
|
-
'Content-Type': 'application/json',
|
|
2808
|
-
...options.headers
|
|
2809
|
-
}
|
|
2810
|
-
});
|
|
2811
|
-
/**
|
|
2812
|
-
* Rename an event sticky field
|
|
2813
|
-
*/
|
|
2814
|
-
export const renameEventField = (options) => (options.client ?? client).post({
|
|
2815
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2816
|
-
url: '/api/event-stickies/rename-event-field',
|
|
2817
|
-
...options,
|
|
2818
|
-
headers: {
|
|
2819
|
-
'Content-Type': 'application/json',
|
|
2820
|
-
...options.headers
|
|
2821
|
-
}
|
|
2822
|
-
});
|
|
2823
|
-
/**
|
|
2824
|
-
* Remove a subfield from an event sticky field
|
|
2825
|
-
*/
|
|
2826
|
-
export const removeEventSubfield = (options) => (options.client ?? client).post({
|
|
2827
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2828
|
-
url: '/api/event-stickies/remove-event-subfield',
|
|
2829
|
-
...options,
|
|
2830
|
-
headers: {
|
|
2831
|
-
'Content-Type': 'application/json',
|
|
2832
|
-
...options.headers
|
|
2833
|
-
}
|
|
2834
|
-
});
|
|
2835
|
-
/**
|
|
2836
|
-
* Remove an event sticky from the canvas
|
|
2837
|
-
*/
|
|
2838
|
-
export const removeEventSticky = (options) => (options.client ?? client).post({
|
|
2839
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2840
|
-
url: '/api/event-stickies/remove-event-sticky',
|
|
2841
|
-
...options,
|
|
2842
|
-
headers: {
|
|
2843
|
-
'Content-Type': 'application/json',
|
|
2844
|
-
...options.headers
|
|
2845
|
-
}
|
|
2846
|
-
});
|
|
2847
|
-
/**
|
|
2848
|
-
* Remove a linked copy of an event sticky from the canvas
|
|
2849
|
-
*/
|
|
2850
|
-
export const removeEventStickyLinkedCopy = (options) => (options.client ?? client).post({
|
|
2851
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2852
|
-
url: '/api/event-stickies/remove-event-sticky-linked-copy',
|
|
2853
|
-
...options,
|
|
2854
|
-
headers: {
|
|
2855
|
-
'Content-Type': 'application/json',
|
|
2856
|
-
...options.headers
|
|
2857
|
-
}
|
|
2858
|
-
});
|
|
2859
|
-
/**
|
|
2860
|
-
* Remove a field from an event sticky
|
|
2861
|
-
*/
|
|
2862
|
-
export const removeEventField = (options) => (options.client ?? client).post({
|
|
2863
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2864
|
-
url: '/api/event-stickies/remove-event-field',
|
|
2865
|
-
...options,
|
|
2866
|
-
headers: {
|
|
2867
|
-
'Content-Type': 'application/json',
|
|
2868
|
-
...options.headers
|
|
2869
|
-
}
|
|
2870
|
-
});
|
|
2871
|
-
/**
|
|
2872
|
-
* Place a new event sticky on the canvas
|
|
2873
|
-
*/
|
|
2874
|
-
export const placeEventSticky = (options) => (options.client ?? client).post({
|
|
2875
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2876
|
-
url: '/api/event-stickies/place-event-sticky',
|
|
2877
|
-
...options,
|
|
2878
|
-
headers: {
|
|
2879
|
-
'Content-Type': 'application/json',
|
|
2880
|
-
...options.headers
|
|
2881
|
-
}
|
|
2882
|
-
});
|
|
2883
|
-
/**
|
|
2884
|
-
* Place a linked copy of an event sticky on the canvas
|
|
2885
|
-
*/
|
|
2886
|
-
export const placeEventStickyLinkedCopy = (options) => (options.client ?? client).post({
|
|
2887
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2888
|
-
url: '/api/event-stickies/place-event-sticky-linked-copy',
|
|
2889
|
-
...options,
|
|
2890
|
-
headers: {
|
|
2891
|
-
'Content-Type': 'application/json',
|
|
2892
|
-
...options.headers
|
|
2893
|
-
}
|
|
2894
|
-
});
|
|
2895
|
-
/**
|
|
2896
|
-
* Move an event sticky to a new position on the canvas
|
|
2897
|
-
*/
|
|
2898
|
-
export const moveEventSticky = (options) => (options.client ?? client).post({
|
|
2899
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2900
|
-
url: '/api/event-stickies/move-event-sticky',
|
|
2901
|
-
...options,
|
|
2902
|
-
headers: {
|
|
2903
|
-
'Content-Type': 'application/json',
|
|
2904
|
-
...options.headers
|
|
2905
|
-
}
|
|
2906
|
-
});
|
|
2907
|
-
/**
|
|
2908
|
-
* Move an event sticky linked copy to a new position on the canvas
|
|
2909
|
-
*/
|
|
2910
|
-
export const moveEventStickyLinkedCopy = (options) => (options.client ?? client).post({
|
|
2911
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2912
|
-
url: '/api/event-stickies/move-event-sticky-linked-copy',
|
|
2913
|
-
...options,
|
|
2914
|
-
headers: {
|
|
2915
|
-
'Content-Type': 'application/json',
|
|
2916
|
-
...options.headers
|
|
2917
|
-
}
|
|
2918
|
-
});
|
|
2919
|
-
/**
|
|
2920
|
-
* Mark an event subfield as optional
|
|
2921
|
-
*/
|
|
2922
|
-
export const markEventSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
2923
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2924
|
-
url: '/api/event-stickies/mark-event-subfield-as-optional',
|
|
2925
|
-
...options,
|
|
2926
|
-
headers: {
|
|
2927
|
-
'Content-Type': 'application/json',
|
|
2928
|
-
...options.headers
|
|
2929
|
-
}
|
|
2930
|
-
});
|
|
2931
|
-
/**
|
|
2932
|
-
* Mark an event subfield as list
|
|
2933
|
-
*/
|
|
2934
|
-
export const markEventSubfieldAsList = (options) => (options.client ?? client).post({
|
|
2935
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2936
|
-
url: '/api/event-stickies/mark-event-subfield-as-list',
|
|
2937
|
-
...options,
|
|
2938
|
-
headers: {
|
|
2939
|
-
'Content-Type': 'application/json',
|
|
2940
|
-
...options.headers
|
|
2941
|
-
}
|
|
2942
|
-
});
|
|
2943
|
-
/**
|
|
2944
|
-
* Mark an event subfield as generated
|
|
2945
|
-
*/
|
|
2946
|
-
export const markEventSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
2947
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2948
|
-
url: '/api/event-stickies/mark-event-subfield-as-generated',
|
|
2949
|
-
...options,
|
|
2950
|
-
headers: {
|
|
2951
|
-
'Content-Type': 'application/json',
|
|
2952
|
-
...options.headers
|
|
2953
|
-
}
|
|
2954
|
-
});
|
|
2955
|
-
/**
|
|
2956
|
-
* Mark an event sticky field as optional
|
|
2957
|
-
*/
|
|
2958
|
-
export const markEventFieldAsOptional = (options) => (options.client ?? client).post({
|
|
2959
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2960
|
-
url: '/api/event-stickies/mark-event-field-as-optional',
|
|
2961
|
-
...options,
|
|
2962
|
-
headers: {
|
|
2963
|
-
'Content-Type': 'application/json',
|
|
2964
|
-
...options.headers
|
|
2965
|
-
}
|
|
2966
|
-
});
|
|
2967
|
-
/**
|
|
2968
|
-
* Mark an event sticky field as a list
|
|
2969
|
-
*/
|
|
2970
|
-
export const markEventFieldAsList = (options) => (options.client ?? client).post({
|
|
2971
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2972
|
-
url: '/api/event-stickies/mark-event-field-as-list',
|
|
2973
|
-
...options,
|
|
2974
|
-
headers: {
|
|
2975
|
-
'Content-Type': 'application/json',
|
|
2976
|
-
...options.headers
|
|
2977
|
-
}
|
|
2978
|
-
});
|
|
2979
|
-
/**
|
|
2980
|
-
* Mark an event sticky field as generated
|
|
2981
|
-
*/
|
|
2982
|
-
export const markEventFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
2983
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2984
|
-
url: '/api/event-stickies/mark-event-field-as-generated',
|
|
2985
|
-
...options,
|
|
2986
|
-
headers: {
|
|
2987
|
-
'Content-Type': 'application/json',
|
|
2988
|
-
...options.headers
|
|
2989
|
-
}
|
|
2990
|
-
});
|
|
2991
|
-
/**
|
|
2992
|
-
* Change the type of an event sticky subfield
|
|
2993
|
-
*/
|
|
2994
|
-
export const changeEventSubfieldType = (options) => (options.client ?? client).post({
|
|
2995
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
2996
|
-
url: '/api/event-stickies/change-event-subfield-type',
|
|
2997
|
-
...options,
|
|
2998
|
-
headers: {
|
|
2999
|
-
'Content-Type': 'application/json',
|
|
3000
|
-
...options.headers
|
|
3001
|
-
}
|
|
3002
|
-
});
|
|
3003
|
-
/**
|
|
3004
|
-
* Change the type of an event sticky field
|
|
3005
|
-
*/
|
|
3006
|
-
export const changeEventFieldType = (options) => (options.client ?? client).post({
|
|
3007
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3008
|
-
url: '/api/event-stickies/change-event-field-type',
|
|
3009
|
-
...options,
|
|
3010
|
-
headers: {
|
|
3011
|
-
'Content-Type': 'application/json',
|
|
3012
|
-
...options.headers
|
|
3013
|
-
}
|
|
3014
|
-
});
|
|
3015
|
-
/**
|
|
3016
|
-
* Add a subfield to an event sticky field
|
|
3017
|
-
*/
|
|
3018
|
-
export const addEventSubfield = (options) => (options.client ?? client).post({
|
|
3019
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3020
|
-
url: '/api/event-stickies/add-event-subfield',
|
|
3021
|
-
...options,
|
|
3022
|
-
headers: {
|
|
3023
|
-
'Content-Type': 'application/json',
|
|
3024
|
-
...options.headers
|
|
3025
|
-
}
|
|
3026
|
-
});
|
|
3027
|
-
/**
|
|
3028
|
-
* Add a field to an event sticky
|
|
3029
|
-
*/
|
|
3030
|
-
export const addEventField = (options) => (options.client ?? client).post({
|
|
3031
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3032
|
-
url: '/api/event-stickies/add-event-field',
|
|
3033
|
-
...options,
|
|
3034
|
-
headers: {
|
|
3035
|
-
'Content-Type': 'application/json',
|
|
3036
|
-
...options.headers
|
|
3037
|
-
}
|
|
3038
|
-
});
|
|
3039
|
-
/**
|
|
3040
|
-
* Resize a context
|
|
3041
|
-
*/
|
|
3042
|
-
export const resizeContext = (options) => (options.client ?? client).post({
|
|
3043
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3044
|
-
url: '/api/contexts/resize-context',
|
|
3045
|
-
...options,
|
|
3046
|
-
headers: {
|
|
3047
|
-
'Content-Type': 'application/json',
|
|
3048
|
-
...options.headers
|
|
3049
|
-
}
|
|
3050
|
-
});
|
|
3051
|
-
/**
|
|
3052
|
-
* Rename a context
|
|
3053
|
-
*/
|
|
3054
|
-
export const renameContext = (options) => (options.client ?? client).post({
|
|
3055
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3056
|
-
url: '/api/contexts/rename-context',
|
|
3057
|
-
...options,
|
|
3058
|
-
headers: {
|
|
3059
|
-
'Content-Type': 'application/json',
|
|
3060
|
-
...options.headers
|
|
3061
|
-
}
|
|
3062
|
-
});
|
|
3063
|
-
/**
|
|
3064
|
-
* Remove a context from the canvas
|
|
3065
|
-
*/
|
|
3066
|
-
export const removeContext = (options) => (options.client ?? client).post({
|
|
3067
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3068
|
-
url: '/api/contexts/remove-context',
|
|
3069
|
-
...options,
|
|
3070
|
-
headers: {
|
|
3071
|
-
'Content-Type': 'application/json',
|
|
3072
|
-
...options.headers
|
|
3073
|
-
}
|
|
3074
|
-
});
|
|
3075
|
-
/**
|
|
3076
|
-
* Place a new context on the canvas
|
|
3077
|
-
*/
|
|
3078
|
-
export const placeContext = (options) => (options.client ?? client).post({
|
|
3079
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3080
|
-
url: '/api/contexts/place-context',
|
|
3081
|
-
...options,
|
|
3082
|
-
headers: {
|
|
3083
|
-
'Content-Type': 'application/json',
|
|
3084
|
-
...options.headers
|
|
3085
|
-
}
|
|
3086
|
-
});
|
|
3087
|
-
/**
|
|
3088
|
-
* Move a context to a new position on the canvas
|
|
3089
|
-
*/
|
|
3090
|
-
export const moveContext = (options) => (options.client ?? client).post({
|
|
3091
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3092
|
-
url: '/api/contexts/move-context',
|
|
3093
|
-
...options,
|
|
3094
|
-
headers: {
|
|
3095
|
-
'Content-Type': 'application/json',
|
|
3096
|
-
...options.headers
|
|
3097
|
-
}
|
|
3098
|
-
});
|
|
3099
|
-
/**
|
|
3100
|
-
* Unmark a command subfield as optional
|
|
3101
|
-
*/
|
|
3102
|
-
export const unmarkCommandSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
3103
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3104
|
-
url: '/api/command-stickies/unmark-command-subfield-as-optional',
|
|
3105
|
-
...options,
|
|
3106
|
-
headers: {
|
|
3107
|
-
'Content-Type': 'application/json',
|
|
3108
|
-
...options.headers
|
|
3109
|
-
}
|
|
3110
|
-
});
|
|
3111
|
-
/**
|
|
3112
|
-
* Unmark a command subfield as list
|
|
3113
|
-
*/
|
|
3114
|
-
export const unmarkCommandSubfieldAsList = (options) => (options.client ?? client).post({
|
|
3115
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3116
|
-
url: '/api/command-stickies/unmark-command-subfield-as-list',
|
|
3117
|
-
...options,
|
|
3118
|
-
headers: {
|
|
3119
|
-
'Content-Type': 'application/json',
|
|
3120
|
-
...options.headers
|
|
3121
|
-
}
|
|
3122
|
-
});
|
|
3123
|
-
/**
|
|
3124
|
-
* Unmark a command subfield as generated
|
|
3125
|
-
*/
|
|
3126
|
-
export const unmarkCommandSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
3127
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3128
|
-
url: '/api/command-stickies/unmark-command-subfield-as-generated',
|
|
3129
|
-
...options,
|
|
3130
|
-
headers: {
|
|
3131
|
-
'Content-Type': 'application/json',
|
|
3132
|
-
...options.headers
|
|
3133
|
-
}
|
|
3134
|
-
});
|
|
3135
|
-
/**
|
|
3136
|
-
* Unmark a command field as optional
|
|
3137
|
-
*/
|
|
3138
|
-
export const unmarkCommandFieldAsOptional = (options) => (options.client ?? client).post({
|
|
3139
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3140
|
-
url: '/api/command-stickies/unmark-command-field-as-optional',
|
|
3141
|
-
...options,
|
|
3142
|
-
headers: {
|
|
3143
|
-
'Content-Type': 'application/json',
|
|
3144
|
-
...options.headers
|
|
3145
|
-
}
|
|
3146
|
-
});
|
|
3147
|
-
/**
|
|
3148
|
-
* Unmark a command field as list
|
|
3149
|
-
*/
|
|
3150
|
-
export const unmarkCommandFieldAsList = (options) => (options.client ?? client).post({
|
|
3151
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3152
|
-
url: '/api/command-stickies/unmark-command-field-as-list',
|
|
3153
|
-
...options,
|
|
3154
|
-
headers: {
|
|
3155
|
-
'Content-Type': 'application/json',
|
|
3156
|
-
...options.headers
|
|
3157
|
-
}
|
|
3158
|
-
});
|
|
3159
|
-
/**
|
|
3160
|
-
* Unmark a command field as generated
|
|
3161
|
-
*/
|
|
3162
|
-
export const unmarkCommandFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
3163
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3164
|
-
url: '/api/command-stickies/unmark-command-field-as-generated',
|
|
3165
|
-
...options,
|
|
3166
|
-
headers: {
|
|
3167
|
-
'Content-Type': 'application/json',
|
|
3168
|
-
...options.headers
|
|
3169
|
-
}
|
|
3170
|
-
});
|
|
3171
|
-
/**
|
|
3172
|
-
* Reorder a command subfield
|
|
3173
|
-
*/
|
|
3174
|
-
export const reorderCommandSubfield = (options) => (options.client ?? client).post({
|
|
3175
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3176
|
-
url: '/api/command-stickies/reorder-command-subfield',
|
|
3177
|
-
...options,
|
|
3178
|
-
headers: {
|
|
3179
|
-
'Content-Type': 'application/json',
|
|
3180
|
-
...options.headers
|
|
3181
|
-
}
|
|
3182
|
-
});
|
|
3183
|
-
/**
|
|
3184
|
-
* Reorder a field on a command sticky
|
|
3185
|
-
*/
|
|
3186
|
-
export const reorderCommandField = (options) => (options.client ?? client).post({
|
|
3187
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3188
|
-
url: '/api/command-stickies/reorder-command-field',
|
|
3189
|
-
...options,
|
|
3190
|
-
headers: {
|
|
3191
|
-
'Content-Type': 'application/json',
|
|
3192
|
-
...options.headers
|
|
3193
|
-
}
|
|
3194
|
-
});
|
|
3195
|
-
/**
|
|
3196
|
-
* Rename a subfield on a command field
|
|
3197
|
-
*/
|
|
3198
|
-
export const renameCommandSubfield = (options) => (options.client ?? client).post({
|
|
3199
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3200
|
-
url: '/api/command-stickies/rename-command-subfield',
|
|
3201
|
-
...options,
|
|
3202
|
-
headers: {
|
|
3203
|
-
'Content-Type': 'application/json',
|
|
3204
|
-
...options.headers
|
|
3205
|
-
}
|
|
3206
|
-
});
|
|
3207
|
-
/**
|
|
3208
|
-
* Rename a command sticky
|
|
3209
|
-
*/
|
|
3210
|
-
export const renameCommandSticky = (options) => (options.client ?? client).post({
|
|
3211
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3212
|
-
url: '/api/command-stickies/rename-command-sticky',
|
|
3213
|
-
...options,
|
|
3214
|
-
headers: {
|
|
3215
|
-
'Content-Type': 'application/json',
|
|
3216
|
-
...options.headers
|
|
3217
|
-
}
|
|
3218
|
-
});
|
|
3219
|
-
/**
|
|
3220
|
-
* Rename a field on a command sticky
|
|
3221
|
-
*/
|
|
3222
|
-
export const renameCommandField = (options) => (options.client ?? client).post({
|
|
3223
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3224
|
-
url: '/api/command-stickies/rename-command-field',
|
|
3225
|
-
...options,
|
|
3226
|
-
headers: {
|
|
3227
|
-
'Content-Type': 'application/json',
|
|
3228
|
-
...options.headers
|
|
3229
|
-
}
|
|
3230
|
-
});
|
|
3231
|
-
/**
|
|
3232
|
-
* Remove a subfield from a command field
|
|
3233
|
-
*/
|
|
3234
|
-
export const removeCommandSubfield = (options) => (options.client ?? client).post({
|
|
3235
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3236
|
-
url: '/api/command-stickies/remove-command-subfield',
|
|
3237
|
-
...options,
|
|
3238
|
-
headers: {
|
|
3239
|
-
'Content-Type': 'application/json',
|
|
3240
|
-
...options.headers
|
|
3241
|
-
}
|
|
3242
|
-
});
|
|
3243
|
-
/**
|
|
3244
|
-
* Remove a command sticky from the canvas
|
|
3245
|
-
*/
|
|
3246
|
-
export const removeCommandSticky = (options) => (options.client ?? client).post({
|
|
3247
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3248
|
-
url: '/api/command-stickies/remove-command-sticky',
|
|
3249
|
-
...options,
|
|
3250
|
-
headers: {
|
|
3251
|
-
'Content-Type': 'application/json',
|
|
3252
|
-
...options.headers
|
|
3253
|
-
}
|
|
3254
|
-
});
|
|
3255
|
-
/**
|
|
3256
|
-
* Remove a field from a command sticky
|
|
3257
|
-
*/
|
|
3258
|
-
export const removeCommandField = (options) => (options.client ?? client).post({
|
|
3259
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3260
|
-
url: '/api/command-stickies/remove-command-field',
|
|
3261
|
-
...options,
|
|
3262
|
-
headers: {
|
|
3263
|
-
'Content-Type': 'application/json',
|
|
3264
|
-
...options.headers
|
|
3265
|
-
}
|
|
3266
|
-
});
|
|
3267
|
-
/**
|
|
3268
|
-
* Place a new command sticky on the canvas
|
|
3269
|
-
*/
|
|
3270
|
-
export const placeCommandSticky = (options) => (options.client ?? client).post({
|
|
3271
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3272
|
-
url: '/api/command-stickies/place-command-sticky',
|
|
3273
|
-
...options,
|
|
3274
|
-
headers: {
|
|
3275
|
-
'Content-Type': 'application/json',
|
|
3276
|
-
...options.headers
|
|
3277
|
-
}
|
|
3278
|
-
});
|
|
3279
|
-
/**
|
|
3280
|
-
* Paste a command sticky as an independent copy
|
|
3281
|
-
*/
|
|
3282
|
-
export const pasteCommandSticky = (options) => (options.client ?? client).post({
|
|
3283
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3284
|
-
url: '/api/command-stickies/paste-command-sticky',
|
|
3285
|
-
...options,
|
|
3286
|
-
headers: {
|
|
3287
|
-
'Content-Type': 'application/json',
|
|
3288
|
-
...options.headers
|
|
3289
|
-
}
|
|
3290
|
-
});
|
|
3291
|
-
/**
|
|
3292
|
-
* Move a command sticky to a new position on the canvas
|
|
3293
|
-
*/
|
|
3294
|
-
export const moveCommandSticky = (options) => (options.client ?? client).post({
|
|
3295
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3296
|
-
url: '/api/command-stickies/move-command-sticky',
|
|
3297
|
-
...options,
|
|
3298
|
-
headers: {
|
|
3299
|
-
'Content-Type': 'application/json',
|
|
3300
|
-
...options.headers
|
|
3301
|
-
}
|
|
3302
|
-
});
|
|
3303
|
-
/**
|
|
3304
|
-
* Mark a command subfield as optional
|
|
3305
|
-
*/
|
|
3306
|
-
export const markCommandSubfieldAsOptional = (options) => (options.client ?? client).post({
|
|
3307
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3308
|
-
url: '/api/command-stickies/mark-command-subfield-as-optional',
|
|
3309
|
-
...options,
|
|
3310
|
-
headers: {
|
|
3311
|
-
'Content-Type': 'application/json',
|
|
3312
|
-
...options.headers
|
|
3313
|
-
}
|
|
3314
|
-
});
|
|
3315
|
-
/**
|
|
3316
|
-
* Mark a command subfield as list
|
|
3317
|
-
*/
|
|
3318
|
-
export const markCommandSubfieldAsList = (options) => (options.client ?? client).post({
|
|
3319
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3320
|
-
url: '/api/command-stickies/mark-command-subfield-as-list',
|
|
3321
|
-
...options,
|
|
3322
|
-
headers: {
|
|
3323
|
-
'Content-Type': 'application/json',
|
|
3324
|
-
...options.headers
|
|
3325
|
-
}
|
|
3326
|
-
});
|
|
3327
|
-
/**
|
|
3328
|
-
* Mark a command subfield as generated
|
|
3329
|
-
*/
|
|
3330
|
-
export const markCommandSubfieldAsGenerated = (options) => (options.client ?? client).post({
|
|
3331
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3332
|
-
url: '/api/command-stickies/mark-command-subfield-as-generated',
|
|
3333
|
-
...options,
|
|
3334
|
-
headers: {
|
|
3335
|
-
'Content-Type': 'application/json',
|
|
3336
|
-
...options.headers
|
|
3337
|
-
}
|
|
3338
|
-
});
|
|
3339
|
-
/**
|
|
3340
|
-
* Mark a command field as optional
|
|
3341
|
-
*/
|
|
3342
|
-
export const markCommandFieldAsOptional = (options) => (options.client ?? client).post({
|
|
3343
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3344
|
-
url: '/api/command-stickies/mark-command-field-as-optional',
|
|
3345
|
-
...options,
|
|
3346
|
-
headers: {
|
|
3347
|
-
'Content-Type': 'application/json',
|
|
3348
|
-
...options.headers
|
|
3349
|
-
}
|
|
3350
|
-
});
|
|
3351
|
-
/**
|
|
3352
|
-
* Mark a command field as list
|
|
3353
|
-
*/
|
|
3354
|
-
export const markCommandFieldAsList = (options) => (options.client ?? client).post({
|
|
3355
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3356
|
-
url: '/api/command-stickies/mark-command-field-as-list',
|
|
3357
|
-
...options,
|
|
3358
|
-
headers: {
|
|
3359
|
-
'Content-Type': 'application/json',
|
|
3360
|
-
...options.headers
|
|
3361
|
-
}
|
|
3362
|
-
});
|
|
3363
|
-
/**
|
|
3364
|
-
* Mark a command field as generated
|
|
3365
|
-
*/
|
|
3366
|
-
export const markCommandFieldAsGenerated = (options) => (options.client ?? client).post({
|
|
3367
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3368
|
-
url: '/api/command-stickies/mark-command-field-as-generated',
|
|
3369
|
-
...options,
|
|
3370
|
-
headers: {
|
|
3371
|
-
'Content-Type': 'application/json',
|
|
3372
|
-
...options.headers
|
|
3373
|
-
}
|
|
3374
|
-
});
|
|
3375
|
-
/**
|
|
3376
|
-
* Change the type of a command subfield
|
|
3377
|
-
*/
|
|
3378
|
-
export const changeCommandSubfieldType = (options) => (options.client ?? client).post({
|
|
3379
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3380
|
-
url: '/api/command-stickies/change-command-subfield-type',
|
|
3381
|
-
...options,
|
|
3382
|
-
headers: {
|
|
3383
|
-
'Content-Type': 'application/json',
|
|
3384
|
-
...options.headers
|
|
3385
|
-
}
|
|
3386
|
-
});
|
|
3387
|
-
/**
|
|
3388
|
-
* Change the type of a command field
|
|
3389
|
-
*/
|
|
3390
|
-
export const changeCommandFieldType = (options) => (options.client ?? client).post({
|
|
3391
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3392
|
-
url: '/api/command-stickies/change-command-field-type',
|
|
3393
|
-
...options,
|
|
3394
|
-
headers: {
|
|
3395
|
-
'Content-Type': 'application/json',
|
|
3396
|
-
...options.headers
|
|
3397
|
-
}
|
|
3398
|
-
});
|
|
3399
|
-
/**
|
|
3400
|
-
* Add a subfield to a command field
|
|
3401
|
-
*/
|
|
3402
|
-
export const addCommandSubfield = (options) => (options.client ?? client).post({
|
|
3403
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3404
|
-
url: '/api/command-stickies/add-command-subfield',
|
|
3405
|
-
...options,
|
|
3406
|
-
headers: {
|
|
3407
|
-
'Content-Type': 'application/json',
|
|
3408
|
-
...options.headers
|
|
3409
|
-
}
|
|
3410
|
-
});
|
|
3411
|
-
/**
|
|
3412
|
-
* Add a field to a command sticky
|
|
3413
|
-
*/
|
|
3414
|
-
export const addCommandField = (options) => (options.client ?? client).post({
|
|
3415
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3416
|
-
url: '/api/command-stickies/add-command-field',
|
|
3417
|
-
...options,
|
|
3418
|
-
headers: {
|
|
3419
|
-
'Content-Type': 'application/json',
|
|
3420
|
-
...options.headers
|
|
3421
|
-
}
|
|
3422
|
-
});
|
|
3423
|
-
/**
|
|
3424
|
-
* Resize a chapter
|
|
3425
|
-
*/
|
|
3426
|
-
export const resizeChapter = (options) => (options.client ?? client).post({
|
|
3427
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3428
|
-
url: '/api/chapters/resize-chapter',
|
|
3429
|
-
...options,
|
|
3430
|
-
headers: {
|
|
3431
|
-
'Content-Type': 'application/json',
|
|
3432
|
-
...options.headers
|
|
3433
|
-
}
|
|
3434
|
-
});
|
|
3435
|
-
/**
|
|
3436
|
-
* Rename a chapter
|
|
3437
|
-
*/
|
|
3438
|
-
export const renameChapter = (options) => (options.client ?? client).post({
|
|
3439
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3440
|
-
url: '/api/chapters/rename-chapter',
|
|
3441
|
-
...options,
|
|
3442
|
-
headers: {
|
|
3443
|
-
'Content-Type': 'application/json',
|
|
3444
|
-
...options.headers
|
|
3445
|
-
}
|
|
3446
|
-
});
|
|
3447
|
-
/**
|
|
3448
|
-
* Remove a chapter from the canvas
|
|
3449
|
-
*/
|
|
3450
|
-
export const removeChapter = (options) => (options.client ?? client).post({
|
|
3451
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3452
|
-
url: '/api/chapters/remove-chapter',
|
|
3453
|
-
...options,
|
|
3454
|
-
headers: {
|
|
3455
|
-
'Content-Type': 'application/json',
|
|
3456
|
-
...options.headers
|
|
3457
|
-
}
|
|
3458
|
-
});
|
|
3459
|
-
/**
|
|
3460
|
-
* Place a new chapter on the canvas
|
|
3461
|
-
*/
|
|
3462
|
-
export const placeChapter = (options) => (options.client ?? client).post({
|
|
3463
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3464
|
-
url: '/api/chapters/place-chapter',
|
|
3465
|
-
...options,
|
|
3466
|
-
headers: {
|
|
3467
|
-
'Content-Type': 'application/json',
|
|
3468
|
-
...options.headers
|
|
3469
|
-
}
|
|
3470
|
-
});
|
|
3471
|
-
/**
|
|
3472
|
-
* Move a chapter to a new position on the canvas
|
|
3473
|
-
*/
|
|
3474
|
-
export const moveChapter = (options) => (options.client ?? client).post({
|
|
3475
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3476
|
-
url: '/api/chapters/move-chapter',
|
|
3477
|
-
...options,
|
|
3478
|
-
headers: {
|
|
3479
|
-
'Content-Type': 'application/json',
|
|
3480
|
-
...options.headers
|
|
3481
|
-
}
|
|
3482
|
-
});
|
|
3483
|
-
/**
|
|
3484
|
-
* Set the ID field name and type for an aggregate
|
|
3485
|
-
*/
|
|
3486
|
-
export const setAggregateIdField = (options) => (options.client ?? client).post({
|
|
3487
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3488
|
-
url: '/api/aggregates/set-aggregate-id-field',
|
|
3489
|
-
...options,
|
|
3490
|
-
headers: {
|
|
3491
|
-
'Content-Type': 'application/json',
|
|
3492
|
-
...options.headers
|
|
3493
|
-
}
|
|
3494
|
-
});
|
|
3495
|
-
/**
|
|
3496
|
-
* Resize an aggregate on the canvas
|
|
3497
|
-
*/
|
|
3498
|
-
export const resizeAggregate = (options) => (options.client ?? client).post({
|
|
3499
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3500
|
-
url: '/api/aggregates/resize-aggregate',
|
|
3501
|
-
...options,
|
|
3502
|
-
headers: {
|
|
3503
|
-
'Content-Type': 'application/json',
|
|
3504
|
-
...options.headers
|
|
3505
|
-
}
|
|
3506
|
-
});
|
|
3507
|
-
/**
|
|
3508
|
-
* Rename an aggregate
|
|
3509
|
-
*/
|
|
3510
|
-
export const renameAggregate = (options) => (options.client ?? client).post({
|
|
3511
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3512
|
-
url: '/api/aggregates/rename-aggregate',
|
|
3513
|
-
...options,
|
|
3514
|
-
headers: {
|
|
3515
|
-
'Content-Type': 'application/json',
|
|
3516
|
-
...options.headers
|
|
3517
|
-
}
|
|
3518
|
-
});
|
|
3519
|
-
/**
|
|
3520
|
-
* Remove an aggregate from the canvas
|
|
3521
|
-
*/
|
|
3522
|
-
export const removeAggregate = (options) => (options.client ?? client).post({
|
|
3523
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3524
|
-
url: '/api/aggregates/remove-aggregate',
|
|
3525
|
-
...options,
|
|
3526
|
-
headers: {
|
|
3527
|
-
'Content-Type': 'application/json',
|
|
3528
|
-
...options.headers
|
|
3529
|
-
}
|
|
3530
|
-
});
|
|
3531
|
-
/**
|
|
3532
|
-
* Place a new aggregate on the canvas
|
|
3533
|
-
*/
|
|
3534
|
-
export const placeAggregate = (options) => (options.client ?? client).post({
|
|
3535
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3536
|
-
url: '/api/aggregates/place-aggregate',
|
|
3537
|
-
...options,
|
|
3538
|
-
headers: {
|
|
3539
|
-
'Content-Type': 'application/json',
|
|
3540
|
-
...options.headers
|
|
3541
|
-
}
|
|
3542
|
-
});
|
|
3543
|
-
/**
|
|
3544
|
-
* Move an aggregate to a new position on the canvas
|
|
3545
|
-
*/
|
|
3546
|
-
export const moveAggregate = (options) => (options.client ?? client).post({
|
|
3547
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3548
|
-
url: '/api/aggregates/move-aggregate',
|
|
3549
|
-
...options,
|
|
3550
|
-
headers: {
|
|
3551
|
-
'Content-Type': 'application/json',
|
|
3552
|
-
...options.headers
|
|
3553
|
-
}
|
|
3554
|
-
});
|
|
3555
|
-
/**
|
|
3556
|
-
* Resize an actor on the canvas
|
|
3557
|
-
*/
|
|
3558
|
-
export const resizeActor = (options) => (options.client ?? client).post({
|
|
3559
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3560
|
-
url: '/api/actors/resize-actor',
|
|
3561
|
-
...options,
|
|
3562
|
-
headers: {
|
|
3563
|
-
'Content-Type': 'application/json',
|
|
3564
|
-
...options.headers
|
|
3565
|
-
}
|
|
3566
|
-
});
|
|
3567
|
-
/**
|
|
3568
|
-
* Rename an actor
|
|
3569
|
-
*/
|
|
3570
|
-
export const renameActor = (options) => (options.client ?? client).post({
|
|
3571
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3572
|
-
url: '/api/actors/rename-actor',
|
|
3573
|
-
...options,
|
|
3574
|
-
headers: {
|
|
3575
|
-
'Content-Type': 'application/json',
|
|
3576
|
-
...options.headers
|
|
3577
|
-
}
|
|
3578
|
-
});
|
|
3579
|
-
/**
|
|
3580
|
-
* Remove an actor from the canvas
|
|
3581
|
-
*/
|
|
3582
|
-
export const removeActor = (options) => (options.client ?? client).post({
|
|
3583
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3584
|
-
url: '/api/actors/remove-actor',
|
|
3585
|
-
...options,
|
|
3586
|
-
headers: {
|
|
3587
|
-
'Content-Type': 'application/json',
|
|
3588
|
-
...options.headers
|
|
3589
|
-
}
|
|
3590
|
-
});
|
|
3591
|
-
/**
|
|
3592
|
-
* Place a new actor on the canvas
|
|
3593
|
-
*/
|
|
3594
|
-
export const placeActor = (options) => (options.client ?? client).post({
|
|
3595
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3596
|
-
url: '/api/actors/place-actor',
|
|
3597
|
-
...options,
|
|
3598
|
-
headers: {
|
|
3599
|
-
'Content-Type': 'application/json',
|
|
3600
|
-
...options.headers
|
|
3601
|
-
}
|
|
3602
|
-
});
|
|
3603
|
-
/**
|
|
3604
|
-
* Move an actor to a new position on the canvas
|
|
3605
|
-
*/
|
|
3606
|
-
export const moveActor = (options) => (options.client ?? client).post({
|
|
3607
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3608
|
-
url: '/api/actors/move-actor',
|
|
3609
|
-
...options,
|
|
3610
|
-
headers: {
|
|
3611
|
-
'Content-Type': 'application/json',
|
|
3612
|
-
...options.headers
|
|
3613
|
-
}
|
|
3614
|
-
});
|
|
3615
|
-
/**
|
|
3616
|
-
* List swim lanes with optional search
|
|
3617
|
-
*/
|
|
3618
|
-
export const listSwimLanes = (options) => (options.client ?? client).get({
|
|
3619
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3620
|
-
url: '/api/swim-lanes/{modelId}/swim-lane-list',
|
|
3621
|
-
...options
|
|
3622
|
-
});
|
|
3623
|
-
/**
|
|
3624
|
-
* List slices with optional search
|
|
3625
|
-
*/
|
|
3626
|
-
export const listSlices = (options) => (options.client ?? client).get({
|
|
3627
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3628
|
-
url: '/api/slices/{modelId}/slice-list',
|
|
3629
|
-
...options
|
|
3630
|
-
});
|
|
3631
|
-
/**
|
|
3632
|
-
* List screens with optional search
|
|
3633
|
-
*/
|
|
3634
|
-
export const listScreens = (options) => (options.client ?? client).get({
|
|
3635
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3636
|
-
url: '/api/screens/{modelId}/screen-list',
|
|
3637
|
-
...options
|
|
3638
|
-
});
|
|
3639
|
-
/**
|
|
3640
|
-
* Get all scenarios for a model
|
|
3641
|
-
*/
|
|
3642
|
-
export const scenarios = (options) => (options.client ?? client).get({
|
|
3643
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3644
|
-
url: '/api/scenarios/{modelId}/scenarios',
|
|
3645
|
-
...options
|
|
3646
|
-
});
|
|
3647
|
-
/**
|
|
3648
|
-
* Stream scenario updates in real-time
|
|
3649
|
-
*/
|
|
3650
|
-
export const stream = (options) => (options.client ?? client).sse.get({
|
|
3651
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3652
|
-
url: '/api/scenarios/{modelId}/scenarios/stream',
|
|
3653
|
-
...options
|
|
3654
|
-
});
|
|
3655
|
-
/**
|
|
3656
|
-
* List scenarios with optional search
|
|
3657
|
-
*/
|
|
3658
|
-
export const listScenarios = (options) => (options.client ?? client).get({
|
|
3659
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3660
|
-
url: '/api/scenarios/{modelId}/scenario-list',
|
|
3661
|
-
...options
|
|
3662
|
-
});
|
|
3663
|
-
/**
|
|
3664
|
-
* Get all read models for a model
|
|
3665
|
-
*/
|
|
3666
|
-
export const readModels = (options) => (options.client ?? client).get({
|
|
3667
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3668
|
-
url: '/api/readmodel-stickies/{modelId}/read-models',
|
|
3669
|
-
...options
|
|
3670
|
-
});
|
|
3671
|
-
/**
|
|
3672
|
-
* Stream read model updates in real-time
|
|
3673
|
-
*/
|
|
3674
|
-
export const stream1 = (options) => (options.client ?? client).sse.get({
|
|
3675
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3676
|
-
url: '/api/readmodel-stickies/{modelId}/read-models/stream',
|
|
3677
|
-
...options
|
|
3678
|
-
});
|
|
3679
|
-
/**
|
|
3680
|
-
* List read models with optional search
|
|
3681
|
-
*/
|
|
3682
|
-
export const listReadModels = (options) => (options.client ?? client).get({
|
|
3683
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3684
|
-
url: '/api/readmodel-stickies/{modelId}/read-model-list',
|
|
3685
|
-
...options
|
|
3686
|
-
});
|
|
3687
|
-
/**
|
|
3688
|
-
* List processors with optional search
|
|
3689
|
-
*/
|
|
3690
|
-
export const listProcessors = (options) => (options.client ?? client).get({
|
|
3691
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3692
|
-
url: '/api/processors/{modelId}/processor-list',
|
|
3693
|
-
...options
|
|
3694
|
-
});
|
|
3695
|
-
/**
|
|
3696
|
-
* Get all processors for a model
|
|
3697
|
-
*/
|
|
3698
|
-
export const processors = (options) => (options.client ?? client).get({
|
|
3699
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3700
|
-
url: '/api/processors/processors/{modelId}',
|
|
3701
|
-
...options
|
|
3702
|
-
});
|
|
3703
|
-
/**
|
|
3704
|
-
* Stream processor updates in real-time
|
|
3705
|
-
*/
|
|
3706
|
-
export const stream2 = (options) => (options.client ?? client).sse.get({
|
|
3707
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3708
|
-
url: '/api/processors/processors/{modelId}/stream',
|
|
3709
|
-
...options
|
|
3710
|
-
});
|
|
3711
|
-
/**
|
|
3712
|
-
* Get all processor fields for a model
|
|
3713
|
-
*/
|
|
3714
|
-
export const processorFields = (options) => (options.client ?? client).get({
|
|
3715
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3716
|
-
url: '/api/processors/processor-fields/{modelId}',
|
|
3717
|
-
...options
|
|
3718
|
-
});
|
|
3719
|
-
/**
|
|
3720
|
-
* Stream processor field updates in real-time
|
|
3721
|
-
*/
|
|
3722
|
-
export const stream3 = (options) => (options.client ?? client).sse.get({
|
|
3723
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3724
|
-
url: '/api/processors/processor-fields/{modelId}/stream',
|
|
3725
|
-
...options
|
|
3726
|
-
});
|
|
3727
|
-
/**
|
|
3728
|
-
* List notes with optional search
|
|
3729
|
-
*/
|
|
3730
|
-
export const listNotes = (options) => (options.client ?? client).get({
|
|
3731
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3732
|
-
url: '/api/notes/{modelId}/note-list',
|
|
3733
|
-
...options
|
|
3734
|
-
});
|
|
3735
|
-
/**
|
|
3736
|
-
* List models accessible to the current user
|
|
3737
|
-
*/
|
|
3738
|
-
export const listModels = (options) => (options?.client ?? client).get({
|
|
3739
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3740
|
-
url: '/api/models',
|
|
3741
|
-
...options
|
|
3742
|
-
});
|
|
3743
|
-
/**
|
|
3744
|
-
* Get all swim lanes for a model
|
|
3745
|
-
*/
|
|
3746
|
-
export const swimLanes = (options) => (options.client ?? client).get({
|
|
3747
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3748
|
-
url: '/api/models/{modelId}/swim-lanes',
|
|
3749
|
-
...options
|
|
3750
|
-
});
|
|
3751
|
-
/**
|
|
3752
|
-
* Stream swim lane updates in real-time
|
|
3753
|
-
*/
|
|
3754
|
-
export const stream4 = (options) => (options.client ?? client).sse.get({
|
|
3755
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3756
|
-
url: '/api/models/{modelId}/swim-lanes/stream',
|
|
3757
|
-
...options
|
|
3758
|
-
});
|
|
3759
|
-
/**
|
|
3760
|
-
* Unified SSE stream for all model updates
|
|
3761
|
-
*/
|
|
3762
|
-
export const stream5 = (options) => (options.client ?? client).sse.get({
|
|
3763
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3764
|
-
url: '/api/models/{modelId}/stream',
|
|
3765
|
-
...options
|
|
3766
|
-
});
|
|
3767
|
-
/**
|
|
3768
|
-
* List all slices for a model
|
|
3769
|
-
*/
|
|
3770
|
-
export const slices = (options) => (options.client ?? client).get({
|
|
3771
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3772
|
-
url: '/api/models/{modelId}/slices',
|
|
3773
|
-
...options
|
|
3774
|
-
});
|
|
3775
|
-
/**
|
|
3776
|
-
* Stream slice updates in real-time
|
|
3777
|
-
*/
|
|
3778
|
-
export const stream6 = (options) => (options.client ?? client).sse.get({
|
|
3779
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3780
|
-
url: '/api/models/{modelId}/slices/stream',
|
|
3781
|
-
...options
|
|
3782
|
-
});
|
|
3783
|
-
/**
|
|
3784
|
-
* Get all screens for a model
|
|
3785
|
-
*/
|
|
3786
|
-
export const screens = (options) => (options.client ?? client).get({
|
|
3787
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3788
|
-
url: '/api/models/{modelId}/screens',
|
|
3789
|
-
...options
|
|
3790
|
-
});
|
|
3791
|
-
/**
|
|
3792
|
-
* Stream screen updates in real-time
|
|
3793
|
-
*/
|
|
3794
|
-
export const stream7 = (options) => (options.client ?? client).sse.get({
|
|
3795
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3796
|
-
url: '/api/models/{modelId}/screens/stream',
|
|
3797
|
-
...options
|
|
3798
|
-
});
|
|
3799
|
-
/**
|
|
3800
|
-
* List all screen fields for a model
|
|
3801
|
-
*/
|
|
3802
|
-
export const screenFields = (options) => (options.client ?? client).get({
|
|
3803
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3804
|
-
url: '/api/models/{modelId}/screen-fields',
|
|
3805
|
-
...options
|
|
3806
|
-
});
|
|
3807
|
-
/**
|
|
3808
|
-
* Stream screen field updates in real-time
|
|
3809
|
-
*/
|
|
3810
|
-
export const stream8 = (options) => (options.client ?? client).sse.get({
|
|
3811
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3812
|
-
url: '/api/models/{modelId}/screen-fields/stream',
|
|
3813
|
-
...options
|
|
3814
|
-
});
|
|
3815
|
-
/**
|
|
3816
|
-
* Get all read model fields for a model
|
|
3817
|
-
*/
|
|
3818
|
-
export const readModelFields = (options) => (options.client ?? client).get({
|
|
3819
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3820
|
-
url: '/api/models/{modelId}/read-model-fields',
|
|
3821
|
-
...options
|
|
3822
|
-
});
|
|
3823
|
-
/**
|
|
3824
|
-
* Stream read model field updates in real-time
|
|
3825
|
-
*/
|
|
3826
|
-
export const stream9 = (options) => (options.client ?? client).sse.get({
|
|
3827
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3828
|
-
url: '/api/models/{modelId}/read-model-fields/stream',
|
|
3829
|
-
...options
|
|
3830
|
-
});
|
|
3831
|
-
/**
|
|
3832
|
-
* List all notes for a model
|
|
3833
|
-
*/
|
|
3834
|
-
export const notes = (options) => (options.client ?? client).get({
|
|
3835
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3836
|
-
url: '/api/models/{modelId}/notes',
|
|
3837
|
-
...options
|
|
3838
|
-
});
|
|
3839
|
-
/**
|
|
3840
|
-
* Stream note updates in real-time
|
|
3841
|
-
*/
|
|
3842
|
-
export const stream10 = (options) => (options.client ?? client).sse.get({
|
|
3843
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3844
|
-
url: '/api/models/{modelId}/notes/stream',
|
|
3845
|
-
...options
|
|
3846
|
-
});
|
|
3847
|
-
/**
|
|
3848
|
-
* List all flows for a model
|
|
3849
|
-
*/
|
|
3850
|
-
export const flows = (options) => (options.client ?? client).get({
|
|
3851
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3852
|
-
url: '/api/models/{modelId}/flows',
|
|
3853
|
-
...options
|
|
3854
|
-
});
|
|
3855
|
-
/**
|
|
3856
|
-
* Stream flow updates in real-time
|
|
3857
|
-
*/
|
|
3858
|
-
export const stream11 = (options) => (options.client ?? client).sse.get({
|
|
3859
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3860
|
-
url: '/api/models/{modelId}/flows/stream',
|
|
3861
|
-
...options
|
|
3862
|
-
});
|
|
3863
|
-
/**
|
|
3864
|
-
* List all external events for a model
|
|
3865
|
-
*/
|
|
3866
|
-
export const externalEvents = (options) => (options.client ?? client).get({
|
|
3867
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3868
|
-
url: '/api/models/{modelId}/external-events',
|
|
3869
|
-
...options
|
|
3870
|
-
});
|
|
3871
|
-
/**
|
|
3872
|
-
* Stream external event updates in real-time
|
|
3873
|
-
*/
|
|
3874
|
-
export const stream12 = (options) => (options.client ?? client).sse.get({
|
|
3875
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3876
|
-
url: '/api/models/{modelId}/external-events/stream',
|
|
3877
|
-
...options
|
|
3878
|
-
});
|
|
3879
|
-
/**
|
|
3880
|
-
* List external event fields for a model
|
|
3881
|
-
*/
|
|
3882
|
-
export const externalEventFields = (options) => (options.client ?? client).get({
|
|
3883
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3884
|
-
url: '/api/models/{modelId}/external-event-fields',
|
|
3885
|
-
...options
|
|
3886
|
-
});
|
|
3887
|
-
/**
|
|
3888
|
-
* Stream external event field updates in real-time
|
|
3889
|
-
*/
|
|
3890
|
-
export const stream13 = (options) => (options.client ?? client).sse.get({
|
|
3891
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3892
|
-
url: '/api/models/{modelId}/external-event-fields/stream',
|
|
3893
|
-
...options
|
|
3894
|
-
});
|
|
3895
|
-
/**
|
|
3896
|
-
* List all events for a model
|
|
3897
|
-
*/
|
|
3898
|
-
export const events = (options) => (options.client ?? client).get({
|
|
3899
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3900
|
-
url: '/api/models/{modelId}/events',
|
|
3901
|
-
...options
|
|
3902
|
-
});
|
|
3903
|
-
/**
|
|
3904
|
-
* Stream event updates in real-time
|
|
3905
|
-
*/
|
|
3906
|
-
export const stream14 = (options) => (options.client ?? client).sse.get({
|
|
3907
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3908
|
-
url: '/api/models/{modelId}/events/stream',
|
|
3909
|
-
...options
|
|
3910
|
-
});
|
|
3911
|
-
/**
|
|
3912
|
-
* List all fields for events in a model
|
|
3913
|
-
*/
|
|
3914
|
-
export const eventFields = (options) => (options.client ?? client).get({
|
|
3915
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3916
|
-
url: '/api/models/{modelId}/event-fields',
|
|
3917
|
-
...options
|
|
3918
|
-
});
|
|
3919
|
-
/**
|
|
3920
|
-
* Stream event field updates in real-time
|
|
3921
|
-
*/
|
|
3922
|
-
export const stream15 = (options) => (options.client ?? client).sse.get({
|
|
3923
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3924
|
-
url: '/api/models/{modelId}/event-fields/stream',
|
|
3925
|
-
...options
|
|
3926
|
-
});
|
|
3927
|
-
/**
|
|
3928
|
-
* View all contexts for a model
|
|
3929
|
-
*/
|
|
3930
|
-
export const contexts = (options) => (options.client ?? client).get({
|
|
3931
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3932
|
-
url: '/api/models/{modelId}/contexts',
|
|
3933
|
-
...options
|
|
3934
|
-
});
|
|
3935
|
-
/**
|
|
3936
|
-
* Stream context updates in real-time
|
|
3937
|
-
*/
|
|
3938
|
-
export const stream16 = (options) => (options.client ?? client).sse.get({
|
|
3939
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3940
|
-
url: '/api/models/{modelId}/contexts/stream',
|
|
3941
|
-
...options
|
|
3942
|
-
});
|
|
3943
|
-
/**
|
|
3944
|
-
* View all commands for a model
|
|
3945
|
-
*/
|
|
3946
|
-
export const commands = (options) => (options.client ?? client).get({
|
|
3947
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3948
|
-
url: '/api/models/{modelId}/commands',
|
|
3949
|
-
...options
|
|
3950
|
-
});
|
|
3951
|
-
/**
|
|
3952
|
-
* Stream command updates in real-time
|
|
3953
|
-
*/
|
|
3954
|
-
export const stream17 = (options) => (options.client ?? client).sse.get({
|
|
3955
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3956
|
-
url: '/api/models/{modelId}/commands/stream',
|
|
3957
|
-
...options
|
|
3958
|
-
});
|
|
3959
|
-
/**
|
|
3960
|
-
* View all command fields for a model
|
|
3961
|
-
*/
|
|
3962
|
-
export const commandFields = (options) => (options.client ?? client).get({
|
|
3963
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3964
|
-
url: '/api/models/{modelId}/command-fields',
|
|
3965
|
-
...options
|
|
3966
|
-
});
|
|
3967
|
-
/**
|
|
3968
|
-
* Stream command field updates in real-time
|
|
3969
|
-
*/
|
|
3970
|
-
export const stream18 = (options) => (options.client ?? client).sse.get({
|
|
3971
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3972
|
-
url: '/api/models/{modelId}/command-fields/stream',
|
|
3973
|
-
...options
|
|
3974
|
-
});
|
|
3975
|
-
/**
|
|
3976
|
-
* List all chapters for a model
|
|
3977
|
-
*/
|
|
3978
|
-
export const chapters = (options) => (options.client ?? client).get({
|
|
3979
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3980
|
-
url: '/api/models/{modelId}/chapters',
|
|
3981
|
-
...options
|
|
3982
|
-
});
|
|
3983
|
-
/**
|
|
3984
|
-
* Stream chapter updates in real-time
|
|
3985
|
-
*/
|
|
3986
|
-
export const stream19 = (options) => (options.client ?? client).sse.get({
|
|
3987
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3988
|
-
url: '/api/models/{modelId}/chapters/stream',
|
|
3989
|
-
...options
|
|
3990
|
-
});
|
|
3991
|
-
/**
|
|
3992
|
-
* List all aggregates for a model
|
|
3993
|
-
*/
|
|
3994
|
-
export const aggregates = (options) => (options.client ?? client).get({
|
|
3995
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
3996
|
-
url: '/api/models/{modelId}/aggregates',
|
|
3997
|
-
...options
|
|
3998
|
-
});
|
|
3999
|
-
/**
|
|
4000
|
-
* Stream aggregate updates in real-time
|
|
4001
|
-
*/
|
|
4002
|
-
export const stream20 = (options) => (options.client ?? client).sse.get({
|
|
4003
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4004
|
-
url: '/api/models/{modelId}/aggregates/stream',
|
|
4005
|
-
...options
|
|
4006
|
-
});
|
|
4007
|
-
/**
|
|
4008
|
-
* Get all actors for a model
|
|
4009
|
-
*/
|
|
4010
|
-
export const actors = (options) => (options.client ?? client).get({
|
|
4011
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4012
|
-
url: '/api/models/{modelId}/actors',
|
|
4013
|
-
...options
|
|
4014
|
-
});
|
|
4015
|
-
/**
|
|
4016
|
-
* Stream actor updates in real-time
|
|
4017
|
-
*/
|
|
4018
|
-
export const stream21 = (options) => (options.client ?? client).sse.get({
|
|
4019
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4020
|
-
url: '/api/models/{modelId}/actors/stream',
|
|
4021
|
-
...options
|
|
4022
|
-
});
|
|
4023
|
-
/**
|
|
4024
|
-
* List shares with optional search
|
|
4025
|
-
*/
|
|
4026
|
-
export const listShares = (options) => (options.client ?? client).get({
|
|
4027
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4028
|
-
url: '/api/model-management/{modelId}/share-list',
|
|
4029
|
-
...options
|
|
4030
|
-
});
|
|
4031
|
-
/**
|
|
4032
|
-
* Get permission level for a user on a model
|
|
4033
|
-
*/
|
|
4034
|
-
export const modelAuth = (options) => (options.client ?? client).get({
|
|
4035
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4036
|
-
url: '/api/model-management/model-auth/{modelId}',
|
|
4037
|
-
...options
|
|
4038
|
-
});
|
|
4039
|
-
/**
|
|
4040
|
-
* List external events with optional search
|
|
4041
|
-
*/
|
|
4042
|
-
export const listExternalEvents = (options) => (options.client ?? client).get({
|
|
4043
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4044
|
-
url: '/api/external-event-stickies/{modelId}/external-event-list',
|
|
4045
|
-
...options
|
|
4046
|
-
});
|
|
4047
|
-
/**
|
|
4048
|
-
* List events with optional search
|
|
4049
|
-
*/
|
|
4050
|
-
export const listEvents = (options) => (options.client ?? client).get({
|
|
4051
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4052
|
-
url: '/api/event-stickies/{modelId}/event-list',
|
|
4053
|
-
...options
|
|
4054
|
-
});
|
|
4055
|
-
/**
|
|
4056
|
-
* List contexts with optional search
|
|
4057
|
-
*/
|
|
4058
|
-
export const listContexts = (options) => (options.client ?? client).get({
|
|
4059
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4060
|
-
url: '/api/contexts/{modelId}/context-list',
|
|
4061
|
-
...options
|
|
4062
|
-
});
|
|
4063
|
-
/**
|
|
4064
|
-
* Show completeness for an entire model
|
|
4065
|
-
*/
|
|
4066
|
-
export const showCompleteness = (options) => (options.client ?? client).get({
|
|
4067
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4068
|
-
url: '/api/completeness/show-completeness/{modelId}',
|
|
4069
|
-
...options
|
|
4070
|
-
});
|
|
4071
|
-
/**
|
|
4072
|
-
* List element completeness entries for a model
|
|
4073
|
-
*/
|
|
4074
|
-
export const informationCompleteness = (options) => (options.client ?? client).get({
|
|
4075
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4076
|
-
url: '/api/completeness/information-completeness/{modelId}',
|
|
4077
|
-
...options
|
|
4078
|
-
});
|
|
4079
|
-
/**
|
|
4080
|
-
* Stream element completeness updates in real-time
|
|
4081
|
-
*/
|
|
4082
|
-
export const stream22 = (options) => (options.client ?? client).sse.get({
|
|
4083
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4084
|
-
url: '/api/completeness/information-completeness/{modelId}/stream',
|
|
4085
|
-
...options
|
|
4086
|
-
});
|
|
4087
|
-
/**
|
|
4088
|
-
* List aggregate completeness entries for a model
|
|
4089
|
-
*/
|
|
4090
|
-
export const aggregateCompleteness = (options) => (options.client ?? client).get({
|
|
4091
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4092
|
-
url: '/api/completeness/aggregate-completeness/{modelId}',
|
|
4093
|
-
...options
|
|
4094
|
-
});
|
|
4095
|
-
/**
|
|
4096
|
-
* Stream aggregate completeness updates in real-time
|
|
4097
|
-
*/
|
|
4098
|
-
export const stream23 = (options) => (options.client ?? client).sse.get({
|
|
4099
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4100
|
-
url: '/api/completeness/aggregate-completeness/{modelId}/stream',
|
|
4101
|
-
...options
|
|
4102
|
-
});
|
|
4103
|
-
/**
|
|
4104
|
-
* List commands with optional search
|
|
4105
|
-
*/
|
|
4106
|
-
export const listCommands = (options) => (options.client ?? client).get({
|
|
4107
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4108
|
-
url: '/api/command-stickies/{modelId}/command-list',
|
|
4109
|
-
...options
|
|
4110
|
-
});
|
|
4111
|
-
/**
|
|
4112
|
-
* Resolve scenario name to UUID
|
|
4113
|
-
*/
|
|
4114
|
-
export const resolveScenario = (options) => (options.client ?? client).get({
|
|
4115
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4116
|
-
url: '/api/cli/resolve-scenario',
|
|
4117
|
-
...options
|
|
4118
|
-
});
|
|
4119
|
-
/**
|
|
4120
|
-
* Resolve flow by source and target to UUID
|
|
4121
|
-
*/
|
|
4122
|
-
export const resolveFlow = (options) => (options.client ?? client).get({
|
|
4123
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4124
|
-
url: '/api/cli/resolve-flow',
|
|
4125
|
-
...options
|
|
4126
|
-
});
|
|
4127
|
-
/**
|
|
4128
|
-
* Resolve field name to UUID within an element
|
|
4129
|
-
*/
|
|
4130
|
-
export const resolveField = (options) => (options.client ?? client).get({
|
|
4131
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4132
|
-
url: '/api/cli/resolve-field',
|
|
4133
|
-
...options
|
|
4134
|
-
});
|
|
4135
|
-
/**
|
|
4136
|
-
* Resolve element name to UUID by type
|
|
4137
|
-
*/
|
|
4138
|
-
export const resolveElement = (options) => (options.client ?? client).get({
|
|
4139
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4140
|
-
url: '/api/cli/resolve-element',
|
|
4141
|
-
...options
|
|
4142
|
-
});
|
|
4143
|
-
/**
|
|
4144
|
-
* Get model summary with element counts
|
|
4145
|
-
*/
|
|
4146
|
-
export const summary = (options) => (options.client ?? client).get({
|
|
4147
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4148
|
-
url: '/api/cli/models/{modelId}/summary',
|
|
4149
|
-
...options
|
|
4150
|
-
});
|
|
4151
|
-
/**
|
|
4152
|
-
* Show slice with all elements, flows, and scenarios
|
|
4153
|
-
*/
|
|
4154
|
-
export const showSlice = (options) => (options.client ?? client).get({
|
|
4155
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4156
|
-
url: '/api/cli/models/{modelId}/slices/{sliceId}/show',
|
|
4157
|
-
...options
|
|
4158
|
-
});
|
|
4159
|
-
/**
|
|
4160
|
-
* Show full model hierarchy
|
|
4161
|
-
*/
|
|
4162
|
-
export const showModel = (options) => (options.client ?? client).get({
|
|
4163
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4164
|
-
url: '/api/cli/models/{modelId}/show',
|
|
4165
|
-
...options
|
|
4166
|
-
});
|
|
4167
|
-
/**
|
|
4168
|
-
* Search elements by name within a model
|
|
4169
|
-
*/
|
|
4170
|
-
export const search = (options) => (options.client ?? client).get({
|
|
4171
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4172
|
-
url: '/api/cli/models/{modelId}/search',
|
|
4173
|
-
...options
|
|
4174
|
-
});
|
|
4175
|
-
/**
|
|
4176
|
-
* Show element detail with fields, flows, copies, and slice membership
|
|
4177
|
-
*/
|
|
4178
|
-
export const showElement = (options) => (options.client ?? client).get({
|
|
4179
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4180
|
-
url: '/api/cli/models/{modelId}/elements/{elementId}/show',
|
|
4181
|
-
...options
|
|
4182
|
-
});
|
|
4183
|
-
/**
|
|
4184
|
-
* Show context with contained chapters and slices
|
|
4185
|
-
*/
|
|
4186
|
-
export const showContext = (options) => (options.client ?? client).get({
|
|
4187
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4188
|
-
url: '/api/cli/models/{modelId}/contexts/{contextId}/show',
|
|
4189
|
-
...options
|
|
4190
|
-
});
|
|
4191
|
-
/**
|
|
4192
|
-
* Show chapter with contained slices
|
|
4193
|
-
*/
|
|
4194
|
-
export const showChapter = (options) => (options.client ?? client).get({
|
|
4195
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4196
|
-
url: '/api/cli/models/{modelId}/chapters/{chapterId}/show',
|
|
4197
|
-
...options
|
|
4198
|
-
});
|
|
4199
|
-
/**
|
|
4200
|
-
* List chapters with optional search
|
|
4201
|
-
*/
|
|
4202
|
-
export const listChapters = (options) => (options.client ?? client).get({
|
|
4203
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4204
|
-
url: '/api/chapters/{modelId}/chapter-list',
|
|
4205
|
-
...options
|
|
4206
|
-
});
|
|
4207
|
-
/**
|
|
4208
|
-
* List aggregates with optional search
|
|
4209
|
-
*/
|
|
4210
|
-
export const listAggregates = (options) => (options.client ?? client).get({
|
|
4211
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4212
|
-
url: '/api/aggregates/{modelId}/aggregate-list',
|
|
4213
|
-
...options
|
|
4214
|
-
});
|
|
4215
|
-
/**
|
|
4216
|
-
* List actors with optional search
|
|
4217
|
-
*/
|
|
4218
|
-
export const listActors = (options) => (options.client ?? client).get({
|
|
4219
|
-
security: [{ scheme: 'bearer', type: 'http' }],
|
|
4220
|
-
url: '/api/actors/{modelId}/actor-list',
|
|
4221
|
-
...options
|
|
4222
|
-
});
|