@skenion/contracts 0.34.0 → 0.36.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.
@@ -511,6 +511,107 @@ export declare const graphV02Schema: {
511
511
  };
512
512
  };
513
513
  };
514
+ export declare const graphFragmentV02Schema: {
515
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
516
+ readonly $id: "https://skenion.dev/schemas/graph/v0.2/fragment.schema.json";
517
+ readonly title: "Skenion Graph Fragment v0.2";
518
+ readonly type: "object";
519
+ readonly required: readonly ["schema", "schemaVersion", "nodes", "edges"];
520
+ readonly properties: {
521
+ readonly schema: {
522
+ readonly const: "skenion.graph.fragment";
523
+ };
524
+ readonly schemaVersion: {
525
+ readonly const: "0.2.0";
526
+ };
527
+ readonly id: {
528
+ readonly type: "string";
529
+ readonly minLength: 1;
530
+ };
531
+ readonly nodes: {
532
+ readonly type: "array";
533
+ readonly items: {
534
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.2/graph.schema.json#/$defs/node";
535
+ };
536
+ };
537
+ readonly edges: {
538
+ readonly type: "array";
539
+ readonly items: {
540
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.2/graph.schema.json#/$defs/edge";
541
+ };
542
+ };
543
+ readonly view: {
544
+ readonly $ref: "#/$defs/fragmentView";
545
+ };
546
+ readonly omittedEdges: {
547
+ readonly type: "array";
548
+ readonly items: {
549
+ readonly $ref: "#/$defs/omittedEdge";
550
+ };
551
+ };
552
+ readonly metadata: {
553
+ readonly type: "object";
554
+ readonly additionalProperties: true;
555
+ };
556
+ };
557
+ readonly additionalProperties: false;
558
+ readonly $defs: {
559
+ readonly fragmentView: {
560
+ readonly type: "object";
561
+ readonly properties: {
562
+ readonly nodes: {
563
+ readonly type: "object";
564
+ readonly additionalProperties: {
565
+ readonly $ref: "#/$defs/nodeView";
566
+ };
567
+ };
568
+ };
569
+ readonly additionalProperties: false;
570
+ };
571
+ readonly nodeView: {
572
+ readonly type: "object";
573
+ readonly required: readonly ["x", "y"];
574
+ readonly properties: {
575
+ readonly x: {
576
+ readonly type: "number";
577
+ };
578
+ readonly y: {
579
+ readonly type: "number";
580
+ };
581
+ readonly width: {
582
+ readonly type: "number";
583
+ };
584
+ readonly height: {
585
+ readonly type: "number";
586
+ };
587
+ readonly collapsed: {
588
+ readonly type: "boolean";
589
+ };
590
+ };
591
+ readonly additionalProperties: false;
592
+ };
593
+ readonly omittedEdge: {
594
+ readonly type: "object";
595
+ readonly required: readonly ["id", "source", "target", "reason"];
596
+ readonly properties: {
597
+ readonly id: {
598
+ readonly type: "string";
599
+ readonly minLength: 1;
600
+ };
601
+ readonly source: {
602
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.2/graph.schema.json#/$defs/portEndpoint";
603
+ };
604
+ readonly target: {
605
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.2/graph.schema.json#/$defs/portEndpoint";
606
+ };
607
+ readonly reason: {
608
+ readonly enum: readonly ["outside-fragment", "policy-omit"];
609
+ };
610
+ };
611
+ readonly additionalProperties: false;
612
+ };
613
+ };
614
+ };
514
615
  export declare const viewStateV01Schema: {
515
616
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
516
617
  readonly $id: "https://skenion.dev/schemas/view/v0.1/view-state.schema.json";
@@ -642,6 +743,468 @@ export declare const projectV01Schema: {
642
743
  };
643
744
  readonly additionalProperties: false;
644
745
  };
746
+ export declare const projectV02Schema: {
747
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
748
+ readonly $id: "https://skenion.dev/schemas/project/v0.2/project.schema.json";
749
+ readonly title: "Skenion Project Document v0.2";
750
+ readonly type: "object";
751
+ readonly required: readonly ["schema", "schemaVersion", "id", "revision", "graph", "viewState", "patchLibrary"];
752
+ readonly properties: {
753
+ readonly schema: {
754
+ readonly const: "skenion.project";
755
+ };
756
+ readonly schemaVersion: {
757
+ readonly const: "0.2.0";
758
+ };
759
+ readonly id: {
760
+ readonly type: "string";
761
+ readonly minLength: 1;
762
+ };
763
+ readonly revision: {
764
+ readonly type: "string";
765
+ readonly minLength: 1;
766
+ };
767
+ readonly metadata: {
768
+ readonly $ref: "#/$defs/metadata";
769
+ };
770
+ readonly graph: {
771
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.2/graph.schema.json";
772
+ };
773
+ readonly viewState: {
774
+ readonly $ref: "https://skenion.dev/schemas/view/v0.1/view-state.schema.json";
775
+ };
776
+ readonly patchLibrary: {
777
+ readonly type: "array";
778
+ readonly items: {
779
+ readonly $ref: "#/$defs/patchDefinition";
780
+ };
781
+ };
782
+ readonly tutorial: {
783
+ readonly type: "object";
784
+ readonly additionalProperties: true;
785
+ };
786
+ readonly help: {
787
+ readonly type: "object";
788
+ readonly additionalProperties: true;
789
+ };
790
+ };
791
+ readonly additionalProperties: false;
792
+ readonly $defs: {
793
+ readonly metadata: {
794
+ readonly type: "object";
795
+ readonly properties: {
796
+ readonly title: {
797
+ readonly type: "string";
798
+ };
799
+ readonly description: {
800
+ readonly type: "string";
801
+ };
802
+ readonly createdAt: {
803
+ readonly type: "string";
804
+ };
805
+ readonly updatedAt: {
806
+ readonly type: "string";
807
+ };
808
+ };
809
+ readonly additionalProperties: true;
810
+ };
811
+ readonly patchDefinition: {
812
+ readonly type: "object";
813
+ readonly required: readonly ["id", "revision", "graph"];
814
+ readonly properties: {
815
+ readonly id: {
816
+ readonly type: "string";
817
+ readonly minLength: 1;
818
+ };
819
+ readonly revision: {
820
+ readonly type: "string";
821
+ readonly minLength: 1;
822
+ };
823
+ readonly metadata: {
824
+ readonly $ref: "#/$defs/metadata";
825
+ };
826
+ readonly graph: {
827
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.2/graph.schema.json";
828
+ };
829
+ readonly viewState: {
830
+ readonly $ref: "https://skenion.dev/schemas/view/v0.1/view-state.schema.json";
831
+ };
832
+ };
833
+ readonly additionalProperties: false;
834
+ };
835
+ };
836
+ };
837
+ export declare const runtimeOperationV0Schema: {
838
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
839
+ readonly $id: "https://skenion.dev/schemas/runtime/v0/operation.schema.json";
840
+ readonly title: "Skenion Runtime Operation Envelope v0";
841
+ readonly type: "object";
842
+ readonly required: readonly ["schema", "schemaVersion", "id", "kind", "request"];
843
+ readonly properties: {
844
+ readonly schema: {
845
+ readonly const: "skenion.runtime.operation";
846
+ };
847
+ readonly schemaVersion: {
848
+ readonly const: "0.1.0";
849
+ };
850
+ readonly id: {
851
+ readonly type: "string";
852
+ readonly minLength: 1;
853
+ };
854
+ readonly kind: {
855
+ readonly const: "pasteGraphFragment";
856
+ };
857
+ readonly request: {
858
+ readonly $ref: "#/$defs/pasteGraphFragmentRequest";
859
+ };
860
+ readonly attribution: {
861
+ readonly $ref: "#/$defs/runtimeOperationAttribution";
862
+ };
863
+ readonly correlationId: {
864
+ readonly type: "string";
865
+ readonly minLength: 1;
866
+ };
867
+ readonly createdAt: {
868
+ readonly type: "string";
869
+ };
870
+ };
871
+ readonly additionalProperties: false;
872
+ readonly $defs: {
873
+ readonly patchPath: {
874
+ readonly oneOf: readonly [{
875
+ readonly type: "object";
876
+ readonly required: readonly ["kind"];
877
+ readonly properties: {
878
+ readonly kind: {
879
+ readonly const: "root";
880
+ };
881
+ };
882
+ readonly additionalProperties: false;
883
+ }, {
884
+ readonly type: "object";
885
+ readonly required: readonly ["kind", "patchId"];
886
+ readonly properties: {
887
+ readonly kind: {
888
+ readonly const: "project-patch-definition";
889
+ };
890
+ readonly patchId: {
891
+ readonly type: "string";
892
+ readonly minLength: 1;
893
+ };
894
+ };
895
+ readonly additionalProperties: false;
896
+ }, {
897
+ readonly type: "object";
898
+ readonly required: readonly ["kind", "packageId", "patchId"];
899
+ readonly properties: {
900
+ readonly kind: {
901
+ readonly const: "package-patch-definition";
902
+ };
903
+ readonly packageId: {
904
+ readonly type: "string";
905
+ readonly minLength: 1;
906
+ };
907
+ readonly patchId: {
908
+ readonly type: "string";
909
+ readonly minLength: 1;
910
+ };
911
+ readonly version: {
912
+ readonly type: "string";
913
+ readonly minLength: 1;
914
+ };
915
+ };
916
+ readonly additionalProperties: false;
917
+ }, {
918
+ readonly type: "object";
919
+ readonly required: readonly ["kind", "ownerPath", "nodeId"];
920
+ readonly properties: {
921
+ readonly kind: {
922
+ readonly const: "embedded-patch-instance";
923
+ };
924
+ readonly ownerPath: {
925
+ readonly type: "array";
926
+ readonly items: {
927
+ readonly type: "string";
928
+ readonly minLength: 1;
929
+ };
930
+ };
931
+ readonly nodeId: {
932
+ readonly type: "string";
933
+ readonly minLength: 1;
934
+ };
935
+ };
936
+ readonly additionalProperties: false;
937
+ }, {
938
+ readonly type: "object";
939
+ readonly required: readonly ["kind", "workingCopyId"];
940
+ readonly properties: {
941
+ readonly kind: {
942
+ readonly const: "help-working-copy";
943
+ };
944
+ readonly workingCopyId: {
945
+ readonly type: "string";
946
+ readonly minLength: 1;
947
+ };
948
+ readonly sourcePackageId: {
949
+ readonly type: "string";
950
+ readonly minLength: 1;
951
+ };
952
+ readonly sourcePatchId: {
953
+ readonly type: "string";
954
+ readonly minLength: 1;
955
+ };
956
+ };
957
+ readonly additionalProperties: false;
958
+ }];
959
+ };
960
+ readonly graphTargetRef: {
961
+ readonly type: "object";
962
+ readonly required: readonly ["path", "baseRevision"];
963
+ readonly properties: {
964
+ readonly path: {
965
+ readonly $ref: "#/$defs/patchPath";
966
+ };
967
+ readonly baseRevision: {
968
+ readonly type: "string";
969
+ readonly minLength: 1;
970
+ };
971
+ readonly targetRevision: {
972
+ readonly type: "string";
973
+ readonly minLength: 1;
974
+ };
975
+ };
976
+ readonly additionalProperties: false;
977
+ };
978
+ readonly pastePlacement: {
979
+ readonly oneOf: readonly [{
980
+ readonly type: "object";
981
+ readonly required: readonly ["kind", "x", "y"];
982
+ readonly properties: {
983
+ readonly kind: {
984
+ readonly const: "position";
985
+ };
986
+ readonly x: {
987
+ readonly type: "number";
988
+ };
989
+ readonly y: {
990
+ readonly type: "number";
991
+ };
992
+ };
993
+ readonly additionalProperties: false;
994
+ }, {
995
+ readonly type: "object";
996
+ readonly required: readonly ["kind", "nodeId"];
997
+ readonly properties: {
998
+ readonly kind: {
999
+ readonly const: "anchor";
1000
+ };
1001
+ readonly nodeId: {
1002
+ readonly type: "string";
1003
+ readonly minLength: 1;
1004
+ };
1005
+ readonly offsetX: {
1006
+ readonly type: "number";
1007
+ };
1008
+ readonly offsetY: {
1009
+ readonly type: "number";
1010
+ };
1011
+ };
1012
+ readonly additionalProperties: false;
1013
+ }];
1014
+ };
1015
+ readonly pasteGraphFragmentOptions: {
1016
+ readonly type: "object";
1017
+ readonly properties: {
1018
+ readonly outsideEndpointPolicy: {
1019
+ readonly enum: readonly ["reject", "omit"];
1020
+ readonly default: "reject";
1021
+ };
1022
+ readonly idConflictPolicy: {
1023
+ readonly enum: readonly ["remap", "reject"];
1024
+ readonly default: "remap";
1025
+ };
1026
+ readonly preserveRelativePositions: {
1027
+ readonly type: "boolean";
1028
+ readonly default: true;
1029
+ };
1030
+ };
1031
+ readonly additionalProperties: false;
1032
+ };
1033
+ readonly pasteGraphFragmentRequest: {
1034
+ readonly type: "object";
1035
+ readonly required: readonly ["target", "fragment"];
1036
+ readonly properties: {
1037
+ readonly target: {
1038
+ readonly $ref: "#/$defs/graphTargetRef";
1039
+ };
1040
+ readonly fragment: {
1041
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.2/fragment.schema.json";
1042
+ };
1043
+ readonly placement: {
1044
+ readonly $ref: "#/$defs/pastePlacement";
1045
+ };
1046
+ readonly options: {
1047
+ readonly $ref: "#/$defs/pasteGraphFragmentOptions";
1048
+ };
1049
+ };
1050
+ readonly additionalProperties: false;
1051
+ };
1052
+ readonly runtimeOperationAttribution: {
1053
+ readonly type: "object";
1054
+ readonly properties: {
1055
+ readonly actorId: {
1056
+ readonly type: "string";
1057
+ readonly minLength: 1;
1058
+ };
1059
+ readonly clientId: {
1060
+ readonly type: "string";
1061
+ readonly minLength: 1;
1062
+ };
1063
+ readonly label: {
1064
+ readonly type: "string";
1065
+ };
1066
+ };
1067
+ readonly additionalProperties: false;
1068
+ };
1069
+ readonly idRemapResult: {
1070
+ readonly type: "object";
1071
+ readonly required: readonly ["nodeIdMap", "edgeIdMap", "omittedEdgeIds"];
1072
+ readonly properties: {
1073
+ readonly nodeIdMap: {
1074
+ readonly type: "object";
1075
+ readonly additionalProperties: {
1076
+ readonly type: "string";
1077
+ readonly minLength: 1;
1078
+ };
1079
+ };
1080
+ readonly edgeIdMap: {
1081
+ readonly type: "object";
1082
+ readonly additionalProperties: {
1083
+ readonly type: "string";
1084
+ readonly minLength: 1;
1085
+ };
1086
+ };
1087
+ readonly omittedEdgeIds: {
1088
+ readonly type: "array";
1089
+ readonly items: {
1090
+ readonly type: "string";
1091
+ readonly minLength: 1;
1092
+ };
1093
+ };
1094
+ };
1095
+ readonly additionalProperties: false;
1096
+ };
1097
+ readonly runtimeOperationDiagnosticSeverity: {
1098
+ readonly enum: readonly ["error", "warning", "info"];
1099
+ };
1100
+ readonly runtimeOperationDiagnostic: {
1101
+ readonly type: "object";
1102
+ readonly required: readonly ["severity", "code", "message"];
1103
+ readonly properties: {
1104
+ readonly severity: {
1105
+ readonly $ref: "#/$defs/runtimeOperationDiagnosticSeverity";
1106
+ };
1107
+ readonly code: {
1108
+ readonly enum: readonly ["base-revision-mismatch", "duplicate-edge-id", "duplicate-node-id", "duplicate-target-path", "fragment-edge-outside-selection", "id-conflict", "invalid-target-path", "operation-rebased", "target-not-found", "unsupported-operation"];
1109
+ };
1110
+ readonly message: {
1111
+ readonly type: "string";
1112
+ };
1113
+ readonly path: {
1114
+ readonly type: "string";
1115
+ readonly minLength: 1;
1116
+ };
1117
+ readonly target: {
1118
+ readonly $ref: "#/$defs/graphTargetRef";
1119
+ };
1120
+ readonly expectedRevision: {
1121
+ readonly type: "string";
1122
+ readonly minLength: 1;
1123
+ };
1124
+ readonly actualRevision: {
1125
+ readonly type: "string";
1126
+ readonly minLength: 1;
1127
+ };
1128
+ readonly duplicates: {
1129
+ readonly type: "array";
1130
+ readonly items: {
1131
+ readonly type: "string";
1132
+ readonly minLength: 1;
1133
+ };
1134
+ };
1135
+ readonly nodes: {
1136
+ readonly type: "array";
1137
+ readonly items: {
1138
+ readonly type: "string";
1139
+ readonly minLength: 1;
1140
+ };
1141
+ };
1142
+ readonly edges: {
1143
+ readonly type: "array";
1144
+ readonly items: {
1145
+ readonly type: "string";
1146
+ readonly minLength: 1;
1147
+ };
1148
+ };
1149
+ };
1150
+ readonly additionalProperties: false;
1151
+ };
1152
+ readonly pasteGraphFragmentResponse: {
1153
+ readonly type: "object";
1154
+ readonly required: readonly ["schema", "schemaVersion", "ok", "applied", "conflict", "target", "revisionBefore", "revisionAfter", "historyEntryId", "idRemap", "diagnostics"];
1155
+ readonly properties: {
1156
+ readonly schema: {
1157
+ readonly const: "skenion.runtime.paste-graph-fragment.response";
1158
+ };
1159
+ readonly schemaVersion: {
1160
+ readonly const: "0.1.0";
1161
+ };
1162
+ readonly ok: {
1163
+ readonly type: "boolean";
1164
+ };
1165
+ readonly applied: {
1166
+ readonly type: "boolean";
1167
+ };
1168
+ readonly conflict: {
1169
+ readonly type: "boolean";
1170
+ };
1171
+ readonly target: {
1172
+ readonly $ref: "#/$defs/graphTargetRef";
1173
+ };
1174
+ readonly revisionBefore: {
1175
+ readonly type: "string";
1176
+ readonly minLength: 1;
1177
+ };
1178
+ readonly revisionAfter: {
1179
+ readonly anyOf: readonly [{
1180
+ readonly type: "string";
1181
+ readonly minLength: 1;
1182
+ }, {
1183
+ readonly type: "null";
1184
+ }];
1185
+ };
1186
+ readonly historyEntryId: {
1187
+ readonly anyOf: readonly [{
1188
+ readonly type: "string";
1189
+ readonly minLength: 1;
1190
+ }, {
1191
+ readonly type: "null";
1192
+ }];
1193
+ };
1194
+ readonly idRemap: {
1195
+ readonly $ref: "#/$defs/idRemapResult";
1196
+ };
1197
+ readonly diagnostics: {
1198
+ readonly type: "array";
1199
+ readonly items: {
1200
+ readonly $ref: "#/$defs/runtimeOperationDiagnostic";
1201
+ };
1202
+ };
1203
+ };
1204
+ readonly additionalProperties: false;
1205
+ };
1206
+ };
1207
+ };
645
1208
  export declare const graphPatchV01Schema: {
646
1209
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
647
1210
  readonly $id: "https://skenion.dev/schemas/graph/v0.1/patch.schema.json";
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/generated/schemas.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/generated/schemas.ts"],"names":[],"mappings":"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"}