@ixo/editor 6.17.0 → 6.19.0
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/action-manifest.json +584 -10
- package/dist/{chunk-7GS4HTDO.js → chunk-2WSXLAX5.js} +331 -1
- package/dist/chunk-2WSXLAX5.js.map +1 -0
- package/dist/{chunk-WMWHTVQF.js → chunk-EO2K4IDP.js} +2 -2
- package/dist/{chunk-KRBHLUGP.js → chunk-JU22SRID.js} +2 -2
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/mantine/index.js +2 -2
- package/dist/{store-BsdF3BVv.d.ts → store-Ba-HGtSG.d.ts} +25 -0
- package/package.json +1 -1
- package/dist/chunk-7GS4HTDO.js.map +0 -1
- /package/dist/{chunk-WMWHTVQF.js.map → chunk-EO2K4IDP.js.map} +0 -0
- /package/dist/{chunk-KRBHLUGP.js.map → chunk-JU22SRID.js.map} +0 -0
|
@@ -255,6 +255,580 @@
|
|
|
255
255
|
}
|
|
256
256
|
]
|
|
257
257
|
},
|
|
258
|
+
{
|
|
259
|
+
"type": "qi/blueprint.artifact-preview",
|
|
260
|
+
"aliases": [],
|
|
261
|
+
"sideEffect": false,
|
|
262
|
+
"defaultRequiresConfirmation": false,
|
|
263
|
+
"proof": {
|
|
264
|
+
"kind": "fields",
|
|
265
|
+
"fields": [
|
|
266
|
+
"receiptRef"
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
"hasDynamicEvents": false,
|
|
270
|
+
"hasDynamicOutputSchema": false,
|
|
271
|
+
"eligibleForEventTrigger": false,
|
|
272
|
+
"hasCustomInputValidation": false,
|
|
273
|
+
"can": "blueprint/artifact-preview",
|
|
274
|
+
"inputSchema": {
|
|
275
|
+
"type": "object",
|
|
276
|
+
"required": [
|
|
277
|
+
"workspaceId",
|
|
278
|
+
"stage",
|
|
279
|
+
"content"
|
|
280
|
+
],
|
|
281
|
+
"properties": {
|
|
282
|
+
"workspaceId": {
|
|
283
|
+
"type": "string",
|
|
284
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
285
|
+
},
|
|
286
|
+
"stage": {
|
|
287
|
+
"type": "string",
|
|
288
|
+
"description": "Internal Blueprint control receiving the draft."
|
|
289
|
+
},
|
|
290
|
+
"content": {
|
|
291
|
+
"type": "object",
|
|
292
|
+
"description": "Draft artifact content to validate without saving."
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"outputSchema": [
|
|
297
|
+
{
|
|
298
|
+
"path": "receiptRef",
|
|
299
|
+
"displayName": "Runtime receipt",
|
|
300
|
+
"type": "string",
|
|
301
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"path": "result",
|
|
305
|
+
"displayName": "Result",
|
|
306
|
+
"type": "object",
|
|
307
|
+
"description": "The governed Blueprint Runtime result."
|
|
308
|
+
}
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"type": "qi/blueprint.artifact-save",
|
|
313
|
+
"aliases": [],
|
|
314
|
+
"sideEffect": true,
|
|
315
|
+
"defaultRequiresConfirmation": true,
|
|
316
|
+
"proof": {
|
|
317
|
+
"kind": "fields",
|
|
318
|
+
"fields": [
|
|
319
|
+
"receiptRef"
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
"hasDynamicEvents": false,
|
|
323
|
+
"hasDynamicOutputSchema": false,
|
|
324
|
+
"eligibleForEventTrigger": false,
|
|
325
|
+
"hasCustomInputValidation": false,
|
|
326
|
+
"can": "blueprint/artifact-save",
|
|
327
|
+
"inputSchema": {
|
|
328
|
+
"type": "object",
|
|
329
|
+
"required": [
|
|
330
|
+
"workspaceId",
|
|
331
|
+
"stage",
|
|
332
|
+
"content"
|
|
333
|
+
],
|
|
334
|
+
"properties": {
|
|
335
|
+
"workspaceId": {
|
|
336
|
+
"type": "string",
|
|
337
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
338
|
+
},
|
|
339
|
+
"stage": {
|
|
340
|
+
"type": "string",
|
|
341
|
+
"description": "Internal Blueprint control receiving the approved draft."
|
|
342
|
+
},
|
|
343
|
+
"content": {
|
|
344
|
+
"type": "object",
|
|
345
|
+
"description": "User-confirmed artifact content to save."
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"outputSchema": [
|
|
350
|
+
{
|
|
351
|
+
"path": "receiptRef",
|
|
352
|
+
"displayName": "Runtime receipt",
|
|
353
|
+
"type": "string",
|
|
354
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"path": "result",
|
|
358
|
+
"displayName": "Result",
|
|
359
|
+
"type": "object",
|
|
360
|
+
"description": "The governed Blueprint Runtime result."
|
|
361
|
+
}
|
|
362
|
+
]
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"type": "qi/blueprint.checklist-update",
|
|
366
|
+
"aliases": [],
|
|
367
|
+
"sideEffect": true,
|
|
368
|
+
"defaultRequiresConfirmation": true,
|
|
369
|
+
"proof": {
|
|
370
|
+
"kind": "fields",
|
|
371
|
+
"fields": [
|
|
372
|
+
"receiptRef"
|
|
373
|
+
]
|
|
374
|
+
},
|
|
375
|
+
"hasDynamicEvents": false,
|
|
376
|
+
"hasDynamicOutputSchema": false,
|
|
377
|
+
"eligibleForEventTrigger": false,
|
|
378
|
+
"hasCustomInputValidation": false,
|
|
379
|
+
"can": "blueprint/checklist-update",
|
|
380
|
+
"inputSchema": {
|
|
381
|
+
"type": "object",
|
|
382
|
+
"required": [
|
|
383
|
+
"workspaceId",
|
|
384
|
+
"operation"
|
|
385
|
+
],
|
|
386
|
+
"properties": {
|
|
387
|
+
"workspaceId": {
|
|
388
|
+
"type": "string",
|
|
389
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
390
|
+
},
|
|
391
|
+
"operation": {
|
|
392
|
+
"type": "string",
|
|
393
|
+
"description": "Add, accept for later, or resolve a checklist item."
|
|
394
|
+
},
|
|
395
|
+
"item": {
|
|
396
|
+
"type": "object",
|
|
397
|
+
"description": "Checklist proposal or disposition selected by the user."
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"outputSchema": [
|
|
402
|
+
{
|
|
403
|
+
"path": "receiptRef",
|
|
404
|
+
"displayName": "Runtime receipt",
|
|
405
|
+
"type": "string",
|
|
406
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"path": "result",
|
|
410
|
+
"displayName": "Result",
|
|
411
|
+
"type": "object",
|
|
412
|
+
"description": "The governed Blueprint Runtime result."
|
|
413
|
+
}
|
|
414
|
+
]
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"type": "qi/blueprint.guided-authoring",
|
|
418
|
+
"aliases": [],
|
|
419
|
+
"sideEffect": false,
|
|
420
|
+
"defaultRequiresConfirmation": false,
|
|
421
|
+
"proof": {
|
|
422
|
+
"kind": "fields",
|
|
423
|
+
"fields": [
|
|
424
|
+
"receiptRef"
|
|
425
|
+
]
|
|
426
|
+
},
|
|
427
|
+
"hasDynamicEvents": false,
|
|
428
|
+
"hasDynamicOutputSchema": false,
|
|
429
|
+
"eligibleForEventTrigger": false,
|
|
430
|
+
"hasCustomInputValidation": false,
|
|
431
|
+
"can": "blueprint/guided-authoring",
|
|
432
|
+
"inputSchema": {
|
|
433
|
+
"type": "object",
|
|
434
|
+
"required": [
|
|
435
|
+
"workspaceId",
|
|
436
|
+
"phase"
|
|
437
|
+
],
|
|
438
|
+
"properties": {
|
|
439
|
+
"workspaceId": {
|
|
440
|
+
"type": "string",
|
|
441
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
442
|
+
},
|
|
443
|
+
"phase": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"description": "The current product phase: discovery, design, validation, testing, or deployment."
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
"outputSchema": [
|
|
450
|
+
{
|
|
451
|
+
"path": "receiptRef",
|
|
452
|
+
"displayName": "Runtime receipt",
|
|
453
|
+
"type": "string",
|
|
454
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"path": "result",
|
|
458
|
+
"displayName": "Result",
|
|
459
|
+
"type": "object",
|
|
460
|
+
"description": "The governed Blueprint Runtime result."
|
|
461
|
+
}
|
|
462
|
+
]
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"type": "qi/blueprint.journey-resume",
|
|
466
|
+
"aliases": [],
|
|
467
|
+
"sideEffect": false,
|
|
468
|
+
"defaultRequiresConfirmation": false,
|
|
469
|
+
"proof": {
|
|
470
|
+
"kind": "fields",
|
|
471
|
+
"fields": [
|
|
472
|
+
"receiptRef"
|
|
473
|
+
]
|
|
474
|
+
},
|
|
475
|
+
"hasDynamicEvents": false,
|
|
476
|
+
"hasDynamicOutputSchema": false,
|
|
477
|
+
"eligibleForEventTrigger": false,
|
|
478
|
+
"hasCustomInputValidation": false,
|
|
479
|
+
"can": "blueprint/journey-resume",
|
|
480
|
+
"inputSchema": {
|
|
481
|
+
"type": "object",
|
|
482
|
+
"required": [
|
|
483
|
+
"workspaceId"
|
|
484
|
+
],
|
|
485
|
+
"properties": {
|
|
486
|
+
"workspaceId": {
|
|
487
|
+
"type": "string",
|
|
488
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
"outputSchema": [
|
|
493
|
+
{
|
|
494
|
+
"path": "receiptRef",
|
|
495
|
+
"displayName": "Runtime receipt",
|
|
496
|
+
"type": "string",
|
|
497
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"path": "result",
|
|
501
|
+
"displayName": "Result",
|
|
502
|
+
"type": "object",
|
|
503
|
+
"description": "The governed Blueprint Runtime result."
|
|
504
|
+
}
|
|
505
|
+
]
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"type": "qi/blueprint.phase-confirm",
|
|
509
|
+
"aliases": [],
|
|
510
|
+
"sideEffect": true,
|
|
511
|
+
"defaultRequiresConfirmation": true,
|
|
512
|
+
"proof": {
|
|
513
|
+
"kind": "fields",
|
|
514
|
+
"fields": [
|
|
515
|
+
"receiptRef"
|
|
516
|
+
]
|
|
517
|
+
},
|
|
518
|
+
"hasDynamicEvents": false,
|
|
519
|
+
"hasDynamicOutputSchema": false,
|
|
520
|
+
"eligibleForEventTrigger": false,
|
|
521
|
+
"hasCustomInputValidation": false,
|
|
522
|
+
"can": "blueprint/phase-confirm",
|
|
523
|
+
"inputSchema": {
|
|
524
|
+
"type": "object",
|
|
525
|
+
"required": [
|
|
526
|
+
"workspaceId",
|
|
527
|
+
"phase"
|
|
528
|
+
],
|
|
529
|
+
"properties": {
|
|
530
|
+
"workspaceId": {
|
|
531
|
+
"type": "string",
|
|
532
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
533
|
+
},
|
|
534
|
+
"phase": {
|
|
535
|
+
"type": "string",
|
|
536
|
+
"description": "Discovery, design, validation, testing, or deployment."
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
"outputSchema": [
|
|
541
|
+
{
|
|
542
|
+
"path": "receiptRef",
|
|
543
|
+
"displayName": "Runtime receipt",
|
|
544
|
+
"type": "string",
|
|
545
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"path": "result",
|
|
549
|
+
"displayName": "Result",
|
|
550
|
+
"type": "object",
|
|
551
|
+
"description": "The governed Blueprint Runtime result."
|
|
552
|
+
}
|
|
553
|
+
]
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"type": "qi/blueprint.publish",
|
|
557
|
+
"aliases": [],
|
|
558
|
+
"sideEffect": true,
|
|
559
|
+
"defaultRequiresConfirmation": true,
|
|
560
|
+
"proof": {
|
|
561
|
+
"kind": "fields",
|
|
562
|
+
"fields": [
|
|
563
|
+
"receiptRef"
|
|
564
|
+
]
|
|
565
|
+
},
|
|
566
|
+
"hasDynamicEvents": false,
|
|
567
|
+
"hasDynamicOutputSchema": false,
|
|
568
|
+
"eligibleForEventTrigger": false,
|
|
569
|
+
"hasCustomInputValidation": false,
|
|
570
|
+
"can": "blueprint/publish",
|
|
571
|
+
"inputSchema": {
|
|
572
|
+
"type": "object",
|
|
573
|
+
"required": [
|
|
574
|
+
"workspaceId",
|
|
575
|
+
"releaseRef",
|
|
576
|
+
"network"
|
|
577
|
+
],
|
|
578
|
+
"properties": {
|
|
579
|
+
"workspaceId": {
|
|
580
|
+
"type": "string",
|
|
581
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
582
|
+
},
|
|
583
|
+
"releaseRef": {
|
|
584
|
+
"type": "string",
|
|
585
|
+
"description": "Exact approved release to publish."
|
|
586
|
+
},
|
|
587
|
+
"network": {
|
|
588
|
+
"type": "string",
|
|
589
|
+
"description": "Target IXO network selected by the user."
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"outputSchema": [
|
|
594
|
+
{
|
|
595
|
+
"path": "receiptRef",
|
|
596
|
+
"displayName": "Runtime receipt",
|
|
597
|
+
"type": "string",
|
|
598
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"path": "result",
|
|
602
|
+
"displayName": "Result",
|
|
603
|
+
"type": "object",
|
|
604
|
+
"description": "The governed Blueprint Runtime result."
|
|
605
|
+
}
|
|
606
|
+
]
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"type": "qi/blueprint.release-compile",
|
|
610
|
+
"aliases": [],
|
|
611
|
+
"sideEffect": true,
|
|
612
|
+
"defaultRequiresConfirmation": true,
|
|
613
|
+
"proof": {
|
|
614
|
+
"kind": "fields",
|
|
615
|
+
"fields": [
|
|
616
|
+
"receiptRef"
|
|
617
|
+
]
|
|
618
|
+
},
|
|
619
|
+
"hasDynamicEvents": false,
|
|
620
|
+
"hasDynamicOutputSchema": false,
|
|
621
|
+
"eligibleForEventTrigger": false,
|
|
622
|
+
"hasCustomInputValidation": false,
|
|
623
|
+
"can": "blueprint/release-compile",
|
|
624
|
+
"inputSchema": {
|
|
625
|
+
"type": "object",
|
|
626
|
+
"required": [
|
|
627
|
+
"workspaceId"
|
|
628
|
+
],
|
|
629
|
+
"properties": {
|
|
630
|
+
"workspaceId": {
|
|
631
|
+
"type": "string",
|
|
632
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
"outputSchema": [
|
|
637
|
+
{
|
|
638
|
+
"path": "receiptRef",
|
|
639
|
+
"displayName": "Runtime receipt",
|
|
640
|
+
"type": "string",
|
|
641
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"path": "result",
|
|
645
|
+
"displayName": "Result",
|
|
646
|
+
"type": "object",
|
|
647
|
+
"description": "The governed Blueprint Runtime result."
|
|
648
|
+
}
|
|
649
|
+
]
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"type": "qi/blueprint.review-respond",
|
|
653
|
+
"aliases": [],
|
|
654
|
+
"sideEffect": true,
|
|
655
|
+
"defaultRequiresConfirmation": true,
|
|
656
|
+
"proof": {
|
|
657
|
+
"kind": "fields",
|
|
658
|
+
"fields": [
|
|
659
|
+
"receiptRef"
|
|
660
|
+
]
|
|
661
|
+
},
|
|
662
|
+
"hasDynamicEvents": false,
|
|
663
|
+
"hasDynamicOutputSchema": false,
|
|
664
|
+
"eligibleForEventTrigger": false,
|
|
665
|
+
"hasCustomInputValidation": false,
|
|
666
|
+
"can": "blueprint/review-respond",
|
|
667
|
+
"inputSchema": {
|
|
668
|
+
"type": "object",
|
|
669
|
+
"required": [
|
|
670
|
+
"workspaceId",
|
|
671
|
+
"response"
|
|
672
|
+
],
|
|
673
|
+
"properties": {
|
|
674
|
+
"workspaceId": {
|
|
675
|
+
"type": "string",
|
|
676
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
677
|
+
},
|
|
678
|
+
"response": {
|
|
679
|
+
"type": "object",
|
|
680
|
+
"description": "Reviewer decision or provider response bound to the complete revision set."
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
"outputSchema": [
|
|
685
|
+
{
|
|
686
|
+
"path": "receiptRef",
|
|
687
|
+
"displayName": "Runtime receipt",
|
|
688
|
+
"type": "string",
|
|
689
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"path": "result",
|
|
693
|
+
"displayName": "Result",
|
|
694
|
+
"type": "object",
|
|
695
|
+
"description": "The governed Blueprint Runtime result."
|
|
696
|
+
}
|
|
697
|
+
]
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"type": "qi/blueprint.review-submit",
|
|
701
|
+
"aliases": [],
|
|
702
|
+
"sideEffect": true,
|
|
703
|
+
"defaultRequiresConfirmation": true,
|
|
704
|
+
"proof": {
|
|
705
|
+
"kind": "fields",
|
|
706
|
+
"fields": [
|
|
707
|
+
"receiptRef"
|
|
708
|
+
]
|
|
709
|
+
},
|
|
710
|
+
"hasDynamicEvents": false,
|
|
711
|
+
"hasDynamicOutputSchema": false,
|
|
712
|
+
"eligibleForEventTrigger": false,
|
|
713
|
+
"hasCustomInputValidation": false,
|
|
714
|
+
"can": "blueprint/review-submit",
|
|
715
|
+
"inputSchema": {
|
|
716
|
+
"type": "object",
|
|
717
|
+
"required": [
|
|
718
|
+
"workspaceId"
|
|
719
|
+
],
|
|
720
|
+
"properties": {
|
|
721
|
+
"workspaceId": {
|
|
722
|
+
"type": "string",
|
|
723
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
"outputSchema": [
|
|
728
|
+
{
|
|
729
|
+
"path": "receiptRef",
|
|
730
|
+
"displayName": "Runtime receipt",
|
|
731
|
+
"type": "string",
|
|
732
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"path": "result",
|
|
736
|
+
"displayName": "Result",
|
|
737
|
+
"type": "object",
|
|
738
|
+
"description": "The governed Blueprint Runtime result."
|
|
739
|
+
}
|
|
740
|
+
]
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"type": "qi/blueprint.reviewer-assign",
|
|
744
|
+
"aliases": [],
|
|
745
|
+
"sideEffect": true,
|
|
746
|
+
"defaultRequiresConfirmation": true,
|
|
747
|
+
"proof": {
|
|
748
|
+
"kind": "fields",
|
|
749
|
+
"fields": [
|
|
750
|
+
"receiptRef"
|
|
751
|
+
]
|
|
752
|
+
},
|
|
753
|
+
"hasDynamicEvents": false,
|
|
754
|
+
"hasDynamicOutputSchema": false,
|
|
755
|
+
"eligibleForEventTrigger": false,
|
|
756
|
+
"hasCustomInputValidation": false,
|
|
757
|
+
"can": "blueprint/reviewer-assign",
|
|
758
|
+
"inputSchema": {
|
|
759
|
+
"type": "object",
|
|
760
|
+
"required": [
|
|
761
|
+
"workspaceId"
|
|
762
|
+
],
|
|
763
|
+
"properties": {
|
|
764
|
+
"workspaceId": {
|
|
765
|
+
"type": "string",
|
|
766
|
+
"description": "Opaque Blueprint workspace reference supplied by Portal."
|
|
767
|
+
},
|
|
768
|
+
"reviewer": {
|
|
769
|
+
"type": "object",
|
|
770
|
+
"description": "Portal-selected independent reviewer or IXO-supported review request."
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"outputSchema": [
|
|
775
|
+
{
|
|
776
|
+
"path": "receiptRef",
|
|
777
|
+
"displayName": "Runtime receipt",
|
|
778
|
+
"type": "string",
|
|
779
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"path": "result",
|
|
783
|
+
"displayName": "Result",
|
|
784
|
+
"type": "object",
|
|
785
|
+
"description": "The governed Blueprint Runtime result."
|
|
786
|
+
}
|
|
787
|
+
]
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"type": "qi/blueprint.workspace-start",
|
|
791
|
+
"aliases": [],
|
|
792
|
+
"sideEffect": true,
|
|
793
|
+
"defaultRequiresConfirmation": true,
|
|
794
|
+
"proof": {
|
|
795
|
+
"kind": "fields",
|
|
796
|
+
"fields": [
|
|
797
|
+
"receiptRef"
|
|
798
|
+
]
|
|
799
|
+
},
|
|
800
|
+
"hasDynamicEvents": false,
|
|
801
|
+
"hasDynamicOutputSchema": false,
|
|
802
|
+
"eligibleForEventTrigger": false,
|
|
803
|
+
"hasCustomInputValidation": false,
|
|
804
|
+
"can": "blueprint/workspace-start",
|
|
805
|
+
"inputSchema": {
|
|
806
|
+
"type": "object",
|
|
807
|
+
"required": [
|
|
808
|
+
"name"
|
|
809
|
+
],
|
|
810
|
+
"properties": {
|
|
811
|
+
"name": {
|
|
812
|
+
"type": "string",
|
|
813
|
+
"description": "Plain-language name for the professional Service POD."
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
},
|
|
817
|
+
"outputSchema": [
|
|
818
|
+
{
|
|
819
|
+
"path": "receiptRef",
|
|
820
|
+
"displayName": "Runtime receipt",
|
|
821
|
+
"type": "string",
|
|
822
|
+
"description": "Immutable Blueprint Runtime reference proving the governed operation completed."
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"path": "result",
|
|
826
|
+
"displayName": "Result",
|
|
827
|
+
"type": "object",
|
|
828
|
+
"description": "The governed Blueprint Runtime result."
|
|
829
|
+
}
|
|
830
|
+
]
|
|
831
|
+
},
|
|
258
832
|
{
|
|
259
833
|
"type": "qi/calendar.event.create",
|
|
260
834
|
"aliases": [],
|
|
@@ -1377,7 +1951,7 @@
|
|
|
1377
1951
|
"hasDynamicEvents": false,
|
|
1378
1952
|
"hasDynamicOutputSchema": true,
|
|
1379
1953
|
"eligibleForEventTrigger": true,
|
|
1380
|
-
"hasCustomInputValidation":
|
|
1954
|
+
"hasCustomInputValidation": true,
|
|
1381
1955
|
"can": "collection/users",
|
|
1382
1956
|
"requiredCapability": "flow/block/execute",
|
|
1383
1957
|
"inputSchema": {
|
|
@@ -1836,7 +2410,7 @@
|
|
|
1836
2410
|
"hasDynamicEvents": false,
|
|
1837
2411
|
"hasDynamicOutputSchema": false,
|
|
1838
2412
|
"eligibleForEventTrigger": true,
|
|
1839
|
-
"hasCustomInputValidation":
|
|
2413
|
+
"hasCustomInputValidation": true,
|
|
1840
2414
|
"can": "email/send",
|
|
1841
2415
|
"requiredCapability": "email/send",
|
|
1842
2416
|
"inputSchema": {
|
|
@@ -2184,7 +2758,7 @@
|
|
|
2184
2758
|
"hasDynamicEvents": false,
|
|
2185
2759
|
"hasDynamicOutputSchema": false,
|
|
2186
2760
|
"eligibleForEventTrigger": true,
|
|
2187
|
-
"hasCustomInputValidation":
|
|
2761
|
+
"hasCustomInputValidation": true,
|
|
2188
2762
|
"can": "gmail.email/send",
|
|
2189
2763
|
"requiredCapability": "flow/block/execute",
|
|
2190
2764
|
"outputSchema": [
|
|
@@ -2240,7 +2814,7 @@
|
|
|
2240
2814
|
"hasDynamicEvents": false,
|
|
2241
2815
|
"hasDynamicOutputSchema": false,
|
|
2242
2816
|
"eligibleForEventTrigger": true,
|
|
2243
|
-
"hasCustomInputValidation":
|
|
2817
|
+
"hasCustomInputValidation": true,
|
|
2244
2818
|
"can": "googlecalendar.event/create",
|
|
2245
2819
|
"requiredCapability": "flow/block/execute",
|
|
2246
2820
|
"outputSchema": [
|
|
@@ -3532,7 +4106,7 @@
|
|
|
3532
4106
|
"hasDynamicEvents": false,
|
|
3533
4107
|
"hasDynamicOutputSchema": false,
|
|
3534
4108
|
"eligibleForEventTrigger": false,
|
|
3535
|
-
"hasCustomInputValidation":
|
|
4109
|
+
"hasCustomInputValidation": true,
|
|
3536
4110
|
"can": "governance/member-proposal",
|
|
3537
4111
|
"requiredCapability": "flow/block/execute",
|
|
3538
4112
|
"outputSchema": [
|
|
@@ -3828,7 +4402,7 @@
|
|
|
3828
4402
|
"hasDynamicEvents": false,
|
|
3829
4403
|
"hasDynamicOutputSchema": false,
|
|
3830
4404
|
"eligibleForEventTrigger": false,
|
|
3831
|
-
"hasCustomInputValidation":
|
|
4405
|
+
"hasCustomInputValidation": true,
|
|
3832
4406
|
"can": "governance/settings-proposal",
|
|
3833
4407
|
"requiredCapability": "flow/block/execute",
|
|
3834
4408
|
"outputSchema": [
|
|
@@ -4284,7 +4858,7 @@
|
|
|
4284
4858
|
"hasDynamicEvents": false,
|
|
4285
4859
|
"hasDynamicOutputSchema": false,
|
|
4286
4860
|
"eligibleForEventTrigger": false,
|
|
4287
|
-
"hasCustomInputValidation":
|
|
4861
|
+
"hasCustomInputValidation": true,
|
|
4288
4862
|
"can": "governance.transaction/send-funds",
|
|
4289
4863
|
"requiredCapability": "flow/block/execute",
|
|
4290
4864
|
"outputSchema": [
|
|
@@ -4570,7 +5144,7 @@
|
|
|
4570
5144
|
"hasDynamicEvents": false,
|
|
4571
5145
|
"hasDynamicOutputSchema": false,
|
|
4572
5146
|
"eligibleForEventTrigger": true,
|
|
4573
|
-
"hasCustomInputValidation":
|
|
5147
|
+
"hasCustomInputValidation": true,
|
|
4574
5148
|
"can": "http/request",
|
|
4575
5149
|
"inputSchema": {
|
|
4576
5150
|
"type": "object",
|
|
@@ -6013,7 +6587,7 @@
|
|
|
6013
6587
|
"hasDynamicEvents": false,
|
|
6014
6588
|
"hasDynamicOutputSchema": false,
|
|
6015
6589
|
"eligibleForEventTrigger": true,
|
|
6016
|
-
"hasCustomInputValidation":
|
|
6590
|
+
"hasCustomInputValidation": true,
|
|
6017
6591
|
"can": "outlook.email/send",
|
|
6018
6592
|
"requiredCapability": "flow/block/execute",
|
|
6019
6593
|
"outputSchema": [
|
|
@@ -6796,7 +7370,7 @@
|
|
|
6796
7370
|
"hasDynamicEvents": false,
|
|
6797
7371
|
"hasDynamicOutputSchema": false,
|
|
6798
7372
|
"eligibleForEventTrigger": true,
|
|
6799
|
-
"hasCustomInputValidation":
|
|
7373
|
+
"hasCustomInputValidation": true,
|
|
6800
7374
|
"can": "slack.message/send",
|
|
6801
7375
|
"requiredCapability": "flow/block/execute",
|
|
6802
7376
|
"outputSchema": [
|