@talonic/docs 0.8.0 → 0.8.2
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 +14 -14
- package/dist/index.js.map +1 -1
- package/dist/seo.d.ts +2 -2
- package/dist/seo.js +9 -9
- package/package.json +1 -1
package/dist/seo.d.ts
CHANGED
|
@@ -1377,7 +1377,7 @@ declare const OPENAPI_SPEC: {
|
|
|
1377
1377
|
};
|
|
1378
1378
|
};
|
|
1379
1379
|
};
|
|
1380
|
-
'/v1/validation/
|
|
1380
|
+
'/v1/validation/ground-truth': {
|
|
1381
1381
|
get: {
|
|
1382
1382
|
operationId: string;
|
|
1383
1383
|
summary: string;
|
|
@@ -1389,7 +1389,7 @@ declare const OPENAPI_SPEC: {
|
|
|
1389
1389
|
};
|
|
1390
1390
|
};
|
|
1391
1391
|
};
|
|
1392
|
-
'/v1/validation/
|
|
1392
|
+
'/v1/validation/ground-truth/{id}': {
|
|
1393
1393
|
get: {
|
|
1394
1394
|
operationId: string;
|
|
1395
1395
|
summary: string;
|
package/dist/seo.js
CHANGED
|
@@ -35,7 +35,7 @@ var API_NAV_SECTIONS = [
|
|
|
35
35
|
{ id: "get-job", label: "Get Job" },
|
|
36
36
|
{ id: "cancel-job", label: "Cancel Job" }
|
|
37
37
|
] },
|
|
38
|
-
{ id: "sources", label: "
|
|
38
|
+
{ id: "sources", label: "Sources", children: [
|
|
39
39
|
{ id: "list-sources", label: "List Inputs" },
|
|
40
40
|
{ id: "create-source", label: "Create Input" },
|
|
41
41
|
{ id: "manage-source", label: "Get / Update / Delete" },
|
|
@@ -114,8 +114,8 @@ var API_NAV_SECTIONS = [
|
|
|
114
114
|
{ id: "run-telemetry-summary", label: "Run Summary" }
|
|
115
115
|
] },
|
|
116
116
|
{ id: "validation", label: "Validation", children: [
|
|
117
|
-
{ id: "list-
|
|
118
|
-
{ id: "get-
|
|
117
|
+
{ id: "list-ground-truth", label: "List Golden Samples" },
|
|
118
|
+
{ id: "get-ground-truth", label: "Get / Delete Golden Sample" },
|
|
119
119
|
{ id: "list-validation-runs", label: "List Validation Runs" },
|
|
120
120
|
{ id: "create-validation-run", label: "Create Validation Run" },
|
|
121
121
|
{ id: "get-validation-run", label: "Get / Delete Validation Run" },
|
|
@@ -182,7 +182,7 @@ var PLATFORM_NAV_SECTIONS = [
|
|
|
182
182
|
] },
|
|
183
183
|
{ id: "validation-quality", label: "Validation & Quality", children: [
|
|
184
184
|
{ id: "validation-checks", label: "Validation Checks" },
|
|
185
|
-
{ id: "
|
|
185
|
+
{ id: "ground-truth", label: "Golden Samples" },
|
|
186
186
|
{ id: "approval-gates", label: "Approval Gates" }
|
|
187
187
|
] },
|
|
188
188
|
{ id: "delivery", label: "Outputs", children: [
|
|
@@ -490,12 +490,12 @@ var OPENAPI_SPEC = {
|
|
|
490
490
|
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" } } }
|
|
491
491
|
},
|
|
492
492
|
// Validation
|
|
493
|
-
"/v1/validation/
|
|
494
|
-
get: { operationId: "
|
|
493
|
+
"/v1/validation/ground-truth": {
|
|
494
|
+
get: { operationId: "listGroundTruths", summary: "List golden samples", tags: ["Validation"], responses: { "200": { description: "Paginated list of golden samples" } } }
|
|
495
495
|
},
|
|
496
|
-
"/v1/validation/
|
|
497
|
-
get: { operationId: "
|
|
498
|
-
delete: { operationId: "
|
|
496
|
+
"/v1/validation/ground-truth/{id}": {
|
|
497
|
+
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" } } },
|
|
498
|
+
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" } } }
|
|
499
499
|
},
|
|
500
500
|
"/v1/validation/runs": {
|
|
501
501
|
get: { operationId: "listValidationRuns", summary: "List validation runs", tags: ["Validation"], responses: { "200": { description: "Paginated list of validation runs" } } },
|