@acmekit/dashboard 2.13.33 → 2.13.35

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.
Files changed (87) hide show
  1. package/dist/{api-key-management-create-4AG76FJV.mjs → api-key-management-create-U37VC624.mjs} +3 -3
  2. package/dist/{api-key-management-detail-T2TB4KST.mjs → api-key-management-detail-ZYKL4ATI.mjs} +10 -10
  3. package/dist/{api-key-management-edit-R44OHS7B.mjs → api-key-management-edit-TSZGMIBL.mjs} +3 -3
  4. package/dist/{api-key-management-list-QK4Q7Y5I.mjs → api-key-management-list-HCJFJWWB.mjs} +3 -3
  5. package/dist/app.css +31 -0
  6. package/dist/app.js +3726 -1386
  7. package/dist/app.mjs +240 -38
  8. package/dist/{chunk-GBFVWROS.mjs → chunk-5IEHCYJO.mjs} +1 -1
  9. package/dist/{chunk-DQCEH3X2.mjs → chunk-7F3CWXUH.mjs} +1 -1
  10. package/dist/chunk-A7ULKHDE.mjs +126 -0
  11. package/dist/{chunk-DN3MIYQH.mjs → chunk-FKTMBR44.mjs} +1 -1
  12. package/dist/chunk-GBPAZAJK.mjs +34 -0
  13. package/dist/{chunk-YRWSG3YM.mjs → chunk-HHPPTD3B.mjs} +1 -1
  14. package/dist/chunk-LP6CPB7N.mjs +213 -0
  15. package/dist/{chunk-EFRMWHRX.mjs → chunk-PFZQYK7R.mjs} +1 -1
  16. package/dist/{chunk-XIM7X4FB.mjs → chunk-SYACY6AL.mjs} +1 -1
  17. package/dist/{chunk-2U3RK3JG.mjs → chunk-VEI6HW6L.mjs} +3 -5
  18. package/dist/{chunk-ST2YB7JN.mjs → chunk-WLRJXEKL.mjs} +1 -1
  19. package/dist/{chunk-ULSPL3DR.mjs → chunk-XIP35KXF.mjs} +1 -1
  20. package/dist/{chunk-DTY37DDZ.mjs → chunk-YKIWIMJX.mjs} +1 -0
  21. package/dist/en.json +132 -3
  22. package/dist/{invite-XGPZZBUP.mjs → invite-3JSNOA2B.mjs} +3 -3
  23. package/dist/{login-GNP3QIPI.mjs → login-BEJ5EFGE.mjs} +9 -9
  24. package/dist/{profile-detail-YX27F7N6.mjs → profile-detail-QVTJC4JC.mjs} +3 -3
  25. package/dist/{profile-edit-2VRDU75O.mjs → profile-edit-MIO62TWH.mjs} +3 -3
  26. package/dist/{reset-password-TWRNZO6Z.mjs → reset-password-BN4KAJQL.mjs} +2 -2
  27. package/dist/{settings-3XWLL5LG.mjs → settings-GH5IWXHE.mjs} +3 -3
  28. package/dist/{translation-list-CCEQJNED.mjs → translation-list-JA22BUKN.mjs} +10 -10
  29. package/dist/{translations-edit-E57GVUFV.mjs → translations-edit-STTMANVT.mjs} +11 -11
  30. package/dist/{user-detail-KUSRRVNX.mjs → user-detail-WCXBFRGS.mjs} +3 -3
  31. package/dist/{user-edit-HTN3ZGCL.mjs → user-edit-XDVMJOS4.mjs} +3 -3
  32. package/dist/{user-invite-E3FAAU3V.mjs → user-invite-73ZDSDFC.mjs} +3 -3
  33. package/dist/{user-list-KNJ5S3IM.mjs → user-list-MPJXE3CA.mjs} +5 -5
  34. package/dist/{user-metadata-5GQK75DT.mjs → user-metadata-ADNTL3LT.mjs} +10 -10
  35. package/dist/workflow-analytics-4WCI4ODQ.mjs +152 -0
  36. package/dist/workflow-definition-detail-GI6CFBMG.mjs +94 -0
  37. package/dist/workflow-definition-list-GF3XAEPS.mjs +142 -0
  38. package/dist/workflow-execution-complete-step-WSRLO572.mjs +245 -0
  39. package/dist/workflow-execution-detail-3RH6EQSS.mjs +1411 -0
  40. package/dist/workflow-execution-list-AQEGAME4.mjs +596 -0
  41. package/dist/workflow-execution-rerun-WCYLYL3Q.mjs +138 -0
  42. package/dist/workflow-execution-run-MWN5KWNY.mjs +135 -0
  43. package/dist/workflow-scheduled-list-ZPXR7CZM.mjs +174 -0
  44. package/package.json +9 -9
  45. package/src/components/layout/main-layout/main-layout.tsx +28 -1
  46. package/src/dashboard-app/routes/get-route.map.tsx +71 -0
  47. package/src/hooks/api/workflow-definitions.tsx +79 -0
  48. package/src/hooks/api/workflow-executions.tsx +145 -1
  49. package/src/hooks/api/workflow-metrics.tsx +48 -0
  50. package/src/hooks/use-workflow-sse.tsx +78 -0
  51. package/src/i18n/translations/$schema.json +534 -4
  52. package/src/i18n/translations/en.json +132 -3
  53. package/src/routes/workflow-analytics/workflow-analytics.tsx +167 -0
  54. package/src/routes/workflow-definitions/workflow-definition-detail/workflow-definition-detail.tsx +98 -0
  55. package/src/routes/workflow-definitions/workflow-definition-list/components/workflow-definition-list-table/use-workflow-definition-table-columns.tsx +78 -0
  56. package/src/routes/workflow-definitions/workflow-definition-list/components/workflow-definition-list-table/workflow-definition-list-table.tsx +65 -0
  57. package/src/routes/workflow-definitions/workflow-definition-list/workflow-definition-list.tsx +15 -0
  58. package/src/routes/workflow-executions/constants.ts +16 -0
  59. package/src/routes/workflow-executions/utils.ts +170 -14
  60. package/src/routes/workflow-executions/workflow-execution-complete-step/workflow-execution-complete-step.tsx +270 -0
  61. package/src/routes/workflow-executions/workflow-execution-detail/breadcrumb.tsx +7 -1
  62. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-action-bar/index.ts +1 -0
  63. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-action-bar/workflow-execution-action-bar.tsx +212 -0
  64. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-error-card/index.ts +1 -0
  65. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-error-card/workflow-execution-error-card.tsx +59 -0
  66. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-history-section/workflow-execution-history-section.tsx +157 -6
  67. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-payload-section/workflow-execution-payload-section.tsx +122 -6
  68. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-timeline-section/workflow-execution-timeline-section.tsx +7 -1
  69. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-waiting-banner/index.ts +1 -0
  70. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-waiting-banner/workflow-execution-waiting-banner.tsx +63 -0
  71. package/src/routes/workflow-executions/workflow-execution-detail/workflow-detail.tsx +46 -1
  72. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-columns.tsx +7 -0
  73. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-filters.tsx +7 -1
  74. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-query.tsx +4 -2
  75. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-auto-refresh.tsx +73 -0
  76. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-list-table.tsx +17 -1
  77. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-row-actions.tsx +116 -0
  78. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-saved-views.tsx +84 -0
  79. package/src/routes/workflow-executions/workflow-execution-list/workflow-execution-list.tsx +1 -1
  80. package/src/routes/workflow-executions/workflow-execution-rerun/workflow-execution-rerun.tsx +159 -0
  81. package/src/routes/workflow-executions/workflow-execution-run/workflow-execution-run.tsx +139 -0
  82. package/src/routes/workflow-scheduled/workflow-scheduled-list.tsx +269 -0
  83. package/dist/chunk-LKWTBYYC.mjs +0 -35
  84. package/dist/chunk-RPAL6FHW.mjs +0 -73
  85. package/dist/workflow-execution-detail-5O5VCXL3.mjs +0 -870
  86. package/dist/workflow-execution-list-DETG4MRT.mjs +0 -347
  87. /package/dist/{chunk-22YYMH6M.mjs → chunk-RISX76YT.mjs} +0 -0
@@ -11071,9 +11071,23 @@
11071
11071
  "properties": {
11072
11072
  "noRecordsMessage": {
11073
11073
  "type": "string"
11074
+ },
11075
+ "noFilterResults": {
11076
+ "type": "string"
11077
+ },
11078
+ "clearFilters": {
11079
+ "type": "string"
11080
+ },
11081
+ "viewAll": {
11082
+ "type": "string"
11074
11083
  }
11075
11084
  },
11076
- "required": ["noRecordsMessage"],
11085
+ "required": [
11086
+ "noRecordsMessage",
11087
+ "noFilterResults",
11088
+ "clearFilters",
11089
+ "viewAll"
11090
+ ],
11077
11091
  "additionalProperties": false
11078
11092
  },
11079
11093
  "history": {
@@ -11111,6 +11125,18 @@
11111
11125
  },
11112
11126
  "errorLabel": {
11113
11127
  "type": "string"
11128
+ },
11129
+ "idempotencyKeyLabel": {
11130
+ "type": "string"
11131
+ },
11132
+ "showCompensation": {
11133
+ "type": "string"
11134
+ },
11135
+ "showInvoke": {
11136
+ "type": "string"
11137
+ },
11138
+ "retryFromStep": {
11139
+ "type": "string"
11114
11140
  }
11115
11141
  },
11116
11142
  "required": [
@@ -11124,7 +11150,11 @@
11124
11150
  "outputLabel",
11125
11151
  "compensateInputLabel",
11126
11152
  "revertedLabel",
11127
- "errorLabel"
11153
+ "errorLabel",
11154
+ "idempotencyKeyLabel",
11155
+ "showCompensation",
11156
+ "showInvoke",
11157
+ "retryFromStep"
11128
11158
  ],
11129
11159
  "additionalProperties": false
11130
11160
  },
@@ -11148,6 +11178,9 @@
11148
11178
  },
11149
11179
  "notStarted": {
11150
11180
  "type": "string"
11181
+ },
11182
+ "waitingResponse": {
11183
+ "type": "string"
11151
11184
  }
11152
11185
  },
11153
11186
  "required": [
@@ -11156,7 +11189,8 @@
11156
11189
  "reverted",
11157
11190
  "invoking",
11158
11191
  "compensating",
11159
- "notStarted"
11192
+ "notStarted",
11193
+ "waitingResponse"
11160
11194
  ],
11161
11195
  "additionalProperties": false
11162
11196
  },
@@ -11202,6 +11236,490 @@
11202
11236
  },
11203
11237
  "required": ["state"],
11204
11238
  "additionalProperties": false
11239
+ },
11240
+ "actions": {
11241
+ "type": "object",
11242
+ "properties": {
11243
+ "retry": {
11244
+ "type": "string"
11245
+ },
11246
+ "retryWithSameInput": {
11247
+ "type": "string"
11248
+ },
11249
+ "retryWithNewInput": {
11250
+ "type": "string"
11251
+ },
11252
+ "cancel": {
11253
+ "type": "string"
11254
+ },
11255
+ "cancelConfirmTitle": {
11256
+ "type": "string"
11257
+ },
11258
+ "cancelConfirmDescription": {
11259
+ "type": "string"
11260
+ },
11261
+ "cancelReasonLabel": {
11262
+ "type": "string"
11263
+ },
11264
+ "cancelSuccess": {
11265
+ "type": "string"
11266
+ },
11267
+ "retrySuccess": {
11268
+ "type": "string"
11269
+ },
11270
+ "retryStepSuccess": {
11271
+ "type": "string"
11272
+ },
11273
+ "runWorkflow": {
11274
+ "type": "string"
11275
+ },
11276
+ "exportJson": {
11277
+ "type": "string"
11278
+ },
11279
+ "exportCsv": {
11280
+ "type": "string"
11281
+ },
11282
+ "completeStep": {
11283
+ "type": "string"
11284
+ },
11285
+ "markAsSuccessful": {
11286
+ "type": "string"
11287
+ },
11288
+ "markAsFailed": {
11289
+ "type": "string"
11290
+ },
11291
+ "viewDetails": {
11292
+ "type": "string"
11293
+ }
11294
+ },
11295
+ "required": [
11296
+ "retry",
11297
+ "retryWithSameInput",
11298
+ "retryWithNewInput",
11299
+ "cancel",
11300
+ "cancelConfirmTitle",
11301
+ "cancelConfirmDescription",
11302
+ "cancelReasonLabel",
11303
+ "cancelSuccess",
11304
+ "retrySuccess",
11305
+ "retryStepSuccess",
11306
+ "runWorkflow",
11307
+ "exportJson",
11308
+ "exportCsv",
11309
+ "completeStep",
11310
+ "markAsSuccessful",
11311
+ "markAsFailed",
11312
+ "viewDetails"
11313
+ ],
11314
+ "additionalProperties": false
11315
+ },
11316
+ "rerun": {
11317
+ "type": "object",
11318
+ "properties": {
11319
+ "title": {
11320
+ "type": "string"
11321
+ },
11322
+ "inputLabel": {
11323
+ "type": "string"
11324
+ },
11325
+ "transactionIdLabel": {
11326
+ "type": "string"
11327
+ },
11328
+ "submit": {
11329
+ "type": "string"
11330
+ },
11331
+ "autoGenerated": {
11332
+ "type": "string"
11333
+ },
11334
+ "success": {
11335
+ "type": "string"
11336
+ }
11337
+ },
11338
+ "required": [
11339
+ "title",
11340
+ "inputLabel",
11341
+ "transactionIdLabel",
11342
+ "submit",
11343
+ "autoGenerated",
11344
+ "success"
11345
+ ],
11346
+ "additionalProperties": false
11347
+ },
11348
+ "error": {
11349
+ "type": "object",
11350
+ "properties": {
11351
+ "failureAtStep": {
11352
+ "type": "string"
11353
+ },
11354
+ "jumpToStep": {
11355
+ "type": "string"
11356
+ },
11357
+ "attemptInfo": {
11358
+ "type": "string"
11359
+ },
11360
+ "failedAt": {
11361
+ "type": "string"
11362
+ }
11363
+ },
11364
+ "required": [
11365
+ "failureAtStep",
11366
+ "jumpToStep",
11367
+ "attemptInfo",
11368
+ "failedAt"
11369
+ ],
11370
+ "additionalProperties": false
11371
+ },
11372
+ "filters": {
11373
+ "type": "object",
11374
+ "properties": {
11375
+ "savedViews": {
11376
+ "type": "string"
11377
+ },
11378
+ "saveCurrentFilter": {
11379
+ "type": "string"
11380
+ },
11381
+ "savedViewName": {
11382
+ "type": "string"
11383
+ },
11384
+ "autoRefresh": {
11385
+ "type": "string"
11386
+ },
11387
+ "refreshNow": {
11388
+ "type": "string"
11389
+ },
11390
+ "everyNSeconds": {
11391
+ "type": "string"
11392
+ },
11393
+ "off": {
11394
+ "type": "string"
11395
+ },
11396
+ "hasErrors": {
11397
+ "type": "string"
11398
+ },
11399
+ "all": {
11400
+ "type": "string"
11401
+ },
11402
+ "allExecutions": {
11403
+ "type": "string"
11404
+ },
11405
+ "running": {
11406
+ "type": "string"
11407
+ },
11408
+ "failedToday": {
11409
+ "type": "string"
11410
+ }
11411
+ },
11412
+ "required": [
11413
+ "savedViews",
11414
+ "saveCurrentFilter",
11415
+ "savedViewName",
11416
+ "autoRefresh",
11417
+ "refreshNow",
11418
+ "everyNSeconds",
11419
+ "off",
11420
+ "hasErrors",
11421
+ "all",
11422
+ "allExecutions",
11423
+ "running",
11424
+ "failedToday"
11425
+ ],
11426
+ "additionalProperties": false
11427
+ },
11428
+ "definitions": {
11429
+ "type": "object",
11430
+ "properties": {
11431
+ "domain": {
11432
+ "type": "string"
11433
+ },
11434
+ "subtitle": {
11435
+ "type": "string"
11436
+ },
11437
+ "name": {
11438
+ "type": "string"
11439
+ },
11440
+ "steps": {
11441
+ "type": "string"
11442
+ },
11443
+ "stepCount": {
11444
+ "type": "string"
11445
+ },
11446
+ "handlers": {
11447
+ "type": "string"
11448
+ },
11449
+ "lastRun": {
11450
+ "type": "string"
11451
+ },
11452
+ "nextRun": {
11453
+ "type": "string"
11454
+ },
11455
+ "scheduled": {
11456
+ "type": "string"
11457
+ },
11458
+ "runThisWorkflow": {
11459
+ "type": "string"
11460
+ },
11461
+ "noRecordsMessage": {
11462
+ "type": "string"
11463
+ }
11464
+ },
11465
+ "required": [
11466
+ "domain",
11467
+ "subtitle",
11468
+ "name",
11469
+ "steps",
11470
+ "stepCount",
11471
+ "handlers",
11472
+ "lastRun",
11473
+ "nextRun",
11474
+ "scheduled",
11475
+ "runThisWorkflow",
11476
+ "noRecordsMessage"
11477
+ ],
11478
+ "additionalProperties": false
11479
+ },
11480
+ "scheduled": {
11481
+ "type": "object",
11482
+ "properties": {
11483
+ "domain": {
11484
+ "type": "string"
11485
+ },
11486
+ "subtitle": {
11487
+ "type": "string"
11488
+ },
11489
+ "schedule": {
11490
+ "type": "string"
11491
+ },
11492
+ "nextRun": {
11493
+ "type": "string"
11494
+ },
11495
+ "lastRun": {
11496
+ "type": "string"
11497
+ },
11498
+ "pause": {
11499
+ "type": "string"
11500
+ },
11501
+ "resume": {
11502
+ "type": "string"
11503
+ },
11504
+ "runNow": {
11505
+ "type": "string"
11506
+ },
11507
+ "noRecordsMessage": {
11508
+ "type": "string"
11509
+ }
11510
+ },
11511
+ "required": [
11512
+ "domain",
11513
+ "subtitle",
11514
+ "schedule",
11515
+ "nextRun",
11516
+ "lastRun",
11517
+ "pause",
11518
+ "resume",
11519
+ "runNow",
11520
+ "noRecordsMessage"
11521
+ ],
11522
+ "additionalProperties": false
11523
+ },
11524
+ "analytics": {
11525
+ "type": "object",
11526
+ "properties": {
11527
+ "domain": {
11528
+ "type": "string"
11529
+ },
11530
+ "subtitle": {
11531
+ "type": "string"
11532
+ },
11533
+ "executions24h": {
11534
+ "type": "string"
11535
+ },
11536
+ "successRate": {
11537
+ "type": "string"
11538
+ },
11539
+ "avgDuration": {
11540
+ "type": "string"
11541
+ },
11542
+ "runningNow": {
11543
+ "type": "string"
11544
+ },
11545
+ "executionsOverTime": {
11546
+ "type": "string"
11547
+ },
11548
+ "perWorkflowBreakdown": {
11549
+ "type": "string"
11550
+ },
11551
+ "slowestSteps": {
11552
+ "type": "string"
11553
+ },
11554
+ "noDataMessage": {
11555
+ "type": "string"
11556
+ }
11557
+ },
11558
+ "required": [
11559
+ "domain",
11560
+ "subtitle",
11561
+ "executions24h",
11562
+ "successRate",
11563
+ "avgDuration",
11564
+ "runningNow",
11565
+ "executionsOverTime",
11566
+ "perWorkflowBreakdown",
11567
+ "slowestSteps",
11568
+ "noDataMessage"
11569
+ ],
11570
+ "additionalProperties": false
11571
+ },
11572
+ "asyncStep": {
11573
+ "type": "object",
11574
+ "properties": {
11575
+ "waitingBanner": {
11576
+ "type": "string"
11577
+ },
11578
+ "waitingDescription": {
11579
+ "type": "string"
11580
+ },
11581
+ "idempotencyKey": {
11582
+ "type": "string"
11583
+ },
11584
+ "completeTitle": {
11585
+ "type": "string"
11586
+ },
11587
+ "responsePayload": {
11588
+ "type": "string"
11589
+ },
11590
+ "expiresIn": {
11591
+ "type": "string"
11592
+ },
11593
+ "stepLabel": {
11594
+ "type": "string"
11595
+ },
11596
+ "outcomeLabel": {
11597
+ "type": "string"
11598
+ },
11599
+ "success": {
11600
+ "type": "string"
11601
+ },
11602
+ "failure": {
11603
+ "type": "string"
11604
+ },
11605
+ "markSuccess": {
11606
+ "type": "string"
11607
+ },
11608
+ "markFailure": {
11609
+ "type": "string"
11610
+ },
11611
+ "completedSuccess": {
11612
+ "type": "string"
11613
+ }
11614
+ },
11615
+ "required": [
11616
+ "waitingBanner",
11617
+ "waitingDescription",
11618
+ "idempotencyKey",
11619
+ "completeTitle",
11620
+ "responsePayload",
11621
+ "expiresIn",
11622
+ "stepLabel",
11623
+ "outcomeLabel",
11624
+ "success",
11625
+ "failure",
11626
+ "markSuccess",
11627
+ "markFailure",
11628
+ "completedSuccess"
11629
+ ],
11630
+ "additionalProperties": false
11631
+ },
11632
+ "tabs": {
11633
+ "type": "object",
11634
+ "properties": {
11635
+ "executions": {
11636
+ "type": "string"
11637
+ },
11638
+ "definitions": {
11639
+ "type": "string"
11640
+ },
11641
+ "scheduled": {
11642
+ "type": "string"
11643
+ },
11644
+ "analytics": {
11645
+ "type": "string"
11646
+ }
11647
+ },
11648
+ "required": [
11649
+ "executions",
11650
+ "definitions",
11651
+ "scheduled",
11652
+ "analytics"
11653
+ ],
11654
+ "additionalProperties": false
11655
+ },
11656
+ "payload": {
11657
+ "type": "object",
11658
+ "properties": {
11659
+ "inputPayload": {
11660
+ "type": "string"
11661
+ },
11662
+ "fullCheckpoint": {
11663
+ "type": "string"
11664
+ },
11665
+ "stepOutputs": {
11666
+ "type": "string"
11667
+ },
11668
+ "errors": {
11669
+ "type": "string"
11670
+ },
11671
+ "copyAll": {
11672
+ "type": "string"
11673
+ },
11674
+ "downloadJson": {
11675
+ "type": "string"
11676
+ }
11677
+ },
11678
+ "required": [
11679
+ "inputPayload",
11680
+ "fullCheckpoint",
11681
+ "stepOutputs",
11682
+ "errors",
11683
+ "copyAll",
11684
+ "downloadJson"
11685
+ ],
11686
+ "additionalProperties": false
11687
+ },
11688
+ "codeSnippet": {
11689
+ "type": "object",
11690
+ "properties": {
11691
+ "curl": {
11692
+ "type": "string"
11693
+ },
11694
+ "sdk": {
11695
+ "type": "string"
11696
+ },
11697
+ "replicateCall": {
11698
+ "type": "string"
11699
+ }
11700
+ },
11701
+ "required": [
11702
+ "curl",
11703
+ "sdk",
11704
+ "replicateCall"
11705
+ ],
11706
+ "additionalProperties": false
11707
+ },
11708
+ "compare": {
11709
+ "type": "object",
11710
+ "properties": {
11711
+ "title": {
11712
+ "type": "string"
11713
+ },
11714
+ "selectExecution": {
11715
+ "type": "string"
11716
+ }
11717
+ },
11718
+ "required": [
11719
+ "title",
11720
+ "selectExecution"
11721
+ ],
11722
+ "additionalProperties": false
11205
11723
  }
11206
11724
  },
11207
11725
  "required": [
@@ -11217,7 +11735,19 @@
11217
11735
  "history",
11218
11736
  "state",
11219
11737
  "transaction",
11220
- "step"
11738
+ "step",
11739
+ "actions",
11740
+ "rerun",
11741
+ "error",
11742
+ "filters",
11743
+ "definitions",
11744
+ "scheduled",
11745
+ "analytics",
11746
+ "asyncStep",
11747
+ "tabs",
11748
+ "payload",
11749
+ "codeSnippet",
11750
+ "compare"
11221
11751
  ],
11222
11752
  "additionalProperties": false
11223
11753
  },