@treeseed/sdk 0.13.0-rc.63 → 0.13.0-rc.65
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/.treeseed-build-complete.json +1 -1
- package/dist/agent-capacity/validation/agent-definition-schema.d.ts +36 -36
- package/dist/capacity-provider/capability-ontology.d.ts +4 -4
- package/dist/content/validation/content-model-schemas.d.ts +66 -66
- package/dist/content/validation/portable-content-data.d.ts +6 -6
- package/dist/deployment/schemas.d.ts +352 -0
- package/dist/deployment/schemas.js +30 -0
- package/dist/operator-contracts/canonical-command-tree.js +31 -1
- package/dist/operator-contracts/catalog/communication-operations.d.ts +4 -4
- package/dist/operator-contracts/communication/contracts.d.ts +12 -12
- package/dist/operator-contracts/control-plane-operations.d.ts +4 -4
- package/package.json +1 -1
|
@@ -324,6 +324,7 @@ export declare const communicationTargetSchema: z.ZodObject<{
|
|
|
324
324
|
projectId: string;
|
|
325
325
|
invocationId: string | null;
|
|
326
326
|
completedAt: string | null;
|
|
327
|
+
requirement: "required" | "optional";
|
|
327
328
|
agentSlug: string;
|
|
328
329
|
capacity: {
|
|
329
330
|
status: string | null;
|
|
@@ -367,7 +368,6 @@ export declare const communicationTargetSchema: z.ZodObject<{
|
|
|
367
368
|
agentDefinition: string;
|
|
368
369
|
chatProfile: string;
|
|
369
370
|
};
|
|
370
|
-
requirement: "required" | "optional";
|
|
371
371
|
parentInvocationId: string | null;
|
|
372
372
|
depth: number;
|
|
373
373
|
requestedAt: string;
|
|
@@ -383,6 +383,7 @@ export declare const communicationTargetSchema: z.ZodObject<{
|
|
|
383
383
|
projectId: string;
|
|
384
384
|
invocationId: string | null;
|
|
385
385
|
completedAt: string | null;
|
|
386
|
+
requirement: "required" | "optional";
|
|
386
387
|
agentSlug: string;
|
|
387
388
|
capacity: {
|
|
388
389
|
status: string | null;
|
|
@@ -426,7 +427,6 @@ export declare const communicationTargetSchema: z.ZodObject<{
|
|
|
426
427
|
agentDefinition: string;
|
|
427
428
|
chatProfile: string;
|
|
428
429
|
};
|
|
429
|
-
requirement: "required" | "optional";
|
|
430
430
|
parentInvocationId: string | null;
|
|
431
431
|
depth: number;
|
|
432
432
|
requestedAt: string;
|
|
@@ -456,9 +456,9 @@ export declare const communicationResponseSchema: z.ZodObject<{
|
|
|
456
456
|
createdAt: string;
|
|
457
457
|
assignmentId: string | null;
|
|
458
458
|
invocationId: string;
|
|
459
|
+
requirement: "required" | "optional";
|
|
459
460
|
agentSlug: string;
|
|
460
461
|
projectSlug: string;
|
|
461
|
-
requirement: "required" | "optional";
|
|
462
462
|
messageRef: string;
|
|
463
463
|
markdown: string;
|
|
464
464
|
}, {
|
|
@@ -467,9 +467,9 @@ export declare const communicationResponseSchema: z.ZodObject<{
|
|
|
467
467
|
createdAt: string;
|
|
468
468
|
assignmentId: string | null;
|
|
469
469
|
invocationId: string;
|
|
470
|
+
requirement: "required" | "optional";
|
|
470
471
|
agentSlug: string;
|
|
471
472
|
projectSlug: string;
|
|
472
|
-
requirement: "required" | "optional";
|
|
473
473
|
messageRef: string;
|
|
474
474
|
markdown: string;
|
|
475
475
|
}>;
|
|
@@ -669,6 +669,7 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
669
669
|
projectId: string;
|
|
670
670
|
invocationId: string | null;
|
|
671
671
|
completedAt: string | null;
|
|
672
|
+
requirement: "required" | "optional";
|
|
672
673
|
agentSlug: string;
|
|
673
674
|
capacity: {
|
|
674
675
|
status: string | null;
|
|
@@ -712,7 +713,6 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
712
713
|
agentDefinition: string;
|
|
713
714
|
chatProfile: string;
|
|
714
715
|
};
|
|
715
|
-
requirement: "required" | "optional";
|
|
716
716
|
parentInvocationId: string | null;
|
|
717
717
|
depth: number;
|
|
718
718
|
requestedAt: string;
|
|
@@ -728,6 +728,7 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
728
728
|
projectId: string;
|
|
729
729
|
invocationId: string | null;
|
|
730
730
|
completedAt: string | null;
|
|
731
|
+
requirement: "required" | "optional";
|
|
731
732
|
agentSlug: string;
|
|
732
733
|
capacity: {
|
|
733
734
|
status: string | null;
|
|
@@ -771,7 +772,6 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
771
772
|
agentDefinition: string;
|
|
772
773
|
chatProfile: string;
|
|
773
774
|
};
|
|
774
|
-
requirement: "required" | "optional";
|
|
775
775
|
parentInvocationId: string | null;
|
|
776
776
|
depth: number;
|
|
777
777
|
requestedAt: string;
|
|
@@ -801,9 +801,9 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
801
801
|
createdAt: string;
|
|
802
802
|
assignmentId: string | null;
|
|
803
803
|
invocationId: string;
|
|
804
|
+
requirement: "required" | "optional";
|
|
804
805
|
agentSlug: string;
|
|
805
806
|
projectSlug: string;
|
|
806
|
-
requirement: "required" | "optional";
|
|
807
807
|
messageRef: string;
|
|
808
808
|
markdown: string;
|
|
809
809
|
}, {
|
|
@@ -812,9 +812,9 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
812
812
|
createdAt: string;
|
|
813
813
|
assignmentId: string | null;
|
|
814
814
|
invocationId: string;
|
|
815
|
+
requirement: "required" | "optional";
|
|
815
816
|
agentSlug: string;
|
|
816
817
|
projectSlug: string;
|
|
817
|
-
requirement: "required" | "optional";
|
|
818
818
|
messageRef: string;
|
|
819
819
|
markdown: string;
|
|
820
820
|
}>, "many">;
|
|
@@ -892,6 +892,7 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
892
892
|
projectId: string;
|
|
893
893
|
invocationId: string | null;
|
|
894
894
|
completedAt: string | null;
|
|
895
|
+
requirement: "required" | "optional";
|
|
895
896
|
agentSlug: string;
|
|
896
897
|
capacity: {
|
|
897
898
|
status: string | null;
|
|
@@ -935,7 +936,6 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
935
936
|
agentDefinition: string;
|
|
936
937
|
chatProfile: string;
|
|
937
938
|
};
|
|
938
|
-
requirement: "required" | "optional";
|
|
939
939
|
parentInvocationId: string | null;
|
|
940
940
|
depth: number;
|
|
941
941
|
requestedAt: string;
|
|
@@ -956,9 +956,9 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
956
956
|
createdAt: string;
|
|
957
957
|
assignmentId: string | null;
|
|
958
958
|
invocationId: string;
|
|
959
|
+
requirement: "required" | "optional";
|
|
959
960
|
agentSlug: string;
|
|
960
961
|
projectSlug: string;
|
|
961
|
-
requirement: "required" | "optional";
|
|
962
962
|
messageRef: string;
|
|
963
963
|
markdown: string;
|
|
964
964
|
}[];
|
|
@@ -1003,6 +1003,7 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
1003
1003
|
projectId: string;
|
|
1004
1004
|
invocationId: string | null;
|
|
1005
1005
|
completedAt: string | null;
|
|
1006
|
+
requirement: "required" | "optional";
|
|
1006
1007
|
agentSlug: string;
|
|
1007
1008
|
capacity: {
|
|
1008
1009
|
status: string | null;
|
|
@@ -1046,7 +1047,6 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
1046
1047
|
agentDefinition: string;
|
|
1047
1048
|
chatProfile: string;
|
|
1048
1049
|
};
|
|
1049
|
-
requirement: "required" | "optional";
|
|
1050
1050
|
parentInvocationId: string | null;
|
|
1051
1051
|
depth: number;
|
|
1052
1052
|
requestedAt: string;
|
|
@@ -1067,9 +1067,9 @@ export declare const communicationSendReceiptSchema: z.ZodObject<{
|
|
|
1067
1067
|
createdAt: string;
|
|
1068
1068
|
assignmentId: string | null;
|
|
1069
1069
|
invocationId: string;
|
|
1070
|
+
requirement: "required" | "optional";
|
|
1070
1071
|
agentSlug: string;
|
|
1071
1072
|
projectSlug: string;
|
|
1072
|
-
requirement: "required" | "optional";
|
|
1073
1073
|
messageRef: string;
|
|
1074
1074
|
markdown: string;
|
|
1075
1075
|
}[];
|
|
@@ -933,6 +933,7 @@ export declare const CONTROL_PLANE_OPERATIONS: {
|
|
|
933
933
|
projectId: string;
|
|
934
934
|
invocationId: string | null;
|
|
935
935
|
completedAt: string | null;
|
|
936
|
+
requirement: "required" | "optional";
|
|
936
937
|
agentSlug: string;
|
|
937
938
|
capacity: {
|
|
938
939
|
status: string | null;
|
|
@@ -976,7 +977,6 @@ export declare const CONTROL_PLANE_OPERATIONS: {
|
|
|
976
977
|
agentDefinition: string;
|
|
977
978
|
chatProfile: string;
|
|
978
979
|
};
|
|
979
|
-
requirement: "required" | "optional";
|
|
980
980
|
parentInvocationId: string | null;
|
|
981
981
|
depth: number;
|
|
982
982
|
requestedAt: string;
|
|
@@ -997,9 +997,9 @@ export declare const CONTROL_PLANE_OPERATIONS: {
|
|
|
997
997
|
createdAt: string;
|
|
998
998
|
assignmentId: string | null;
|
|
999
999
|
invocationId: string;
|
|
1000
|
+
requirement: "required" | "optional";
|
|
1000
1001
|
agentSlug: string;
|
|
1001
1002
|
projectSlug: string;
|
|
1002
|
-
requirement: "required" | "optional";
|
|
1003
1003
|
messageRef: string;
|
|
1004
1004
|
markdown: string;
|
|
1005
1005
|
}[];
|
|
@@ -1050,6 +1050,7 @@ export declare const CONTROL_PLANE_OPERATIONS: {
|
|
|
1050
1050
|
projectId: string;
|
|
1051
1051
|
invocationId: string | null;
|
|
1052
1052
|
completedAt: string | null;
|
|
1053
|
+
requirement: "required" | "optional";
|
|
1053
1054
|
agentSlug: string;
|
|
1054
1055
|
capacity: {
|
|
1055
1056
|
status: string | null;
|
|
@@ -1093,7 +1094,6 @@ export declare const CONTROL_PLANE_OPERATIONS: {
|
|
|
1093
1094
|
agentDefinition: string;
|
|
1094
1095
|
chatProfile: string;
|
|
1095
1096
|
};
|
|
1096
|
-
requirement: "required" | "optional";
|
|
1097
1097
|
parentInvocationId: string | null;
|
|
1098
1098
|
depth: number;
|
|
1099
1099
|
requestedAt: string;
|
|
@@ -1114,9 +1114,9 @@ export declare const CONTROL_PLANE_OPERATIONS: {
|
|
|
1114
1114
|
createdAt: string;
|
|
1115
1115
|
assignmentId: string | null;
|
|
1116
1116
|
invocationId: string;
|
|
1117
|
+
requirement: "required" | "optional";
|
|
1117
1118
|
agentSlug: string;
|
|
1118
1119
|
projectSlug: string;
|
|
1119
|
-
requirement: "required" | "optional";
|
|
1120
1120
|
messageRef: string;
|
|
1121
1121
|
markdown: string;
|
|
1122
1122
|
}[];
|