@talonic/docs 0.8.0 → 0.8.1
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.d.ts +2 -2
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/seo.d.ts +2 -2
- package/dist/seo.js +8 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1492,7 +1492,7 @@ declare const OPENAPI_SPEC: {
|
|
|
1492
1492
|
};
|
|
1493
1493
|
};
|
|
1494
1494
|
};
|
|
1495
|
-
'/v1/validation/
|
|
1495
|
+
'/v1/validation/ground-truth': {
|
|
1496
1496
|
get: {
|
|
1497
1497
|
operationId: string;
|
|
1498
1498
|
summary: string;
|
|
@@ -1504,7 +1504,7 @@ declare const OPENAPI_SPEC: {
|
|
|
1504
1504
|
};
|
|
1505
1505
|
};
|
|
1506
1506
|
};
|
|
1507
|
-
'/v1/validation/
|
|
1507
|
+
'/v1/validation/ground-truth/{id}': {
|
|
1508
1508
|
get: {
|
|
1509
1509
|
operationId: string;
|
|
1510
1510
|
summary: string;
|
package/dist/index.js
CHANGED
|
@@ -4782,8 +4782,8 @@ var API_NAV_SECTIONS = [
|
|
|
4782
4782
|
{ id: "run-telemetry-summary", label: "Run Summary" }
|
|
4783
4783
|
] },
|
|
4784
4784
|
{ id: "validation", label: "Validation", children: [
|
|
4785
|
-
{ id: "list-
|
|
4786
|
-
{ id: "get-
|
|
4785
|
+
{ id: "list-ground-truth", label: "List Golden Samples" },
|
|
4786
|
+
{ id: "get-ground-truth", label: "Get / Delete Golden Sample" },
|
|
4787
4787
|
{ id: "list-validation-runs", label: "List Validation Runs" },
|
|
4788
4788
|
{ id: "create-validation-run", label: "Create Validation Run" },
|
|
4789
4789
|
{ id: "get-validation-run", label: "Get / Delete Validation Run" },
|
|
@@ -4850,7 +4850,7 @@ var PLATFORM_NAV_SECTIONS = [
|
|
|
4850
4850
|
] },
|
|
4851
4851
|
{ id: "validation-quality", label: "Validation & Quality", children: [
|
|
4852
4852
|
{ id: "validation-checks", label: "Validation Checks" },
|
|
4853
|
-
{ id: "
|
|
4853
|
+
{ id: "ground-truth", label: "Golden Samples" },
|
|
4854
4854
|
{ id: "approval-gates", label: "Approval Gates" }
|
|
4855
4855
|
] },
|
|
4856
4856
|
{ id: "delivery", label: "Outputs", children: [
|
|
@@ -5158,12 +5158,12 @@ var OPENAPI_SPEC = {
|
|
|
5158
5158
|
get: { operationId: "getTelemetryRunSummary", summary: "Get telemetry summary for a run", tags: ["Telemetry"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Run telemetry summary" } } }
|
|
5159
5159
|
},
|
|
5160
5160
|
// Validation
|
|
5161
|
-
"/v1/validation/
|
|
5162
|
-
get: { operationId: "
|
|
5161
|
+
"/v1/validation/ground-truth": {
|
|
5162
|
+
get: { operationId: "listGroundTruths", summary: "List golden samples", tags: ["Validation"], responses: { "200": { description: "Paginated list of golden samples" } } }
|
|
5163
5163
|
},
|
|
5164
|
-
"/v1/validation/
|
|
5165
|
-
get: { operationId: "
|
|
5166
|
-
delete: { operationId: "
|
|
5164
|
+
"/v1/validation/ground-truth/{id}": {
|
|
5165
|
+
get: { operationId: "getGroundTruth", summary: "Get a golden sample", tags: ["Validation"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Golden sample detail" } } },
|
|
5166
|
+
delete: { operationId: "deleteGroundTruth", summary: "Delete a golden sample", tags: ["Validation"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Golden sample deleted" } } }
|
|
5167
5167
|
},
|
|
5168
5168
|
"/v1/validation/runs": {
|
|
5169
5169
|
get: { operationId: "listValidationRuns", summary: "List validation runs", tags: ["Validation"], responses: { "200": { description: "Paginated list of validation runs" } } },
|