@talonic/docs 0.18.0 → 0.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/content.js +2944 -15
- package/dist/index.js +74 -3
- package/dist/index.js.map +1 -1
- package/dist/seo.js +74 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6506,6 +6506,65 @@ var API_NAV_SECTIONS = [
|
|
|
6506
6506
|
{ id: "agent-context", label: "Get Workspace Context" },
|
|
6507
6507
|
{ id: "agent-tools", label: "List Agent Tools" }
|
|
6508
6508
|
] },
|
|
6509
|
+
{ id: "matching", label: "Matching", children: [
|
|
6510
|
+
{ id: "list-matching-configs", label: "List Configs" },
|
|
6511
|
+
{ id: "create-matching-config", label: "Create Config" },
|
|
6512
|
+
{ id: "get-matching-config", label: "Get / Update / Delete Config" },
|
|
6513
|
+
{ id: "run-matching", label: "Run Matching" },
|
|
6514
|
+
{ id: "get-matching-run", label: "Get Run" },
|
|
6515
|
+
{ id: "get-matching-results", label: "Get Results" },
|
|
6516
|
+
{ id: "generate-strategy", label: "Generate Strategy" }
|
|
6517
|
+
] },
|
|
6518
|
+
{ id: "delivery", label: "Delivery", children: [
|
|
6519
|
+
{ id: "list-delivery-destinations", label: "List Destinations" },
|
|
6520
|
+
{ id: "create-delivery-destination", label: "Create Destination" },
|
|
6521
|
+
{ id: "manage-delivery-destination", label: "Manage Destination" },
|
|
6522
|
+
{ id: "list-delivery-bindings", label: "List Bindings" },
|
|
6523
|
+
{ id: "create-delivery-binding", label: "Create Binding" },
|
|
6524
|
+
{ id: "manage-delivery-binding", label: "Manage Binding" },
|
|
6525
|
+
{ id: "delivery-history", label: "History" },
|
|
6526
|
+
{ id: "delivery-dlq", label: "Dead Letter Queue" },
|
|
6527
|
+
{ id: "delivery-catalog", label: "Catalog" }
|
|
6528
|
+
] },
|
|
6529
|
+
{ id: "batches", label: "Batches", children: [
|
|
6530
|
+
{ id: "list-batches", label: "List Batches" },
|
|
6531
|
+
{ id: "get-batch", label: "Get Batch" },
|
|
6532
|
+
{ id: "sync-batch", label: "Sync Batch" },
|
|
6533
|
+
{ id: "cancel-batch", label: "Cancel Batch" }
|
|
6534
|
+
] },
|
|
6535
|
+
{ id: "cases", label: "Cases", children: [
|
|
6536
|
+
{ id: "list-cases", label: "List Cases" },
|
|
6537
|
+
{ id: "get-case", label: "Get Case" },
|
|
6538
|
+
{ id: "case-anomalies", label: "Anomalies" },
|
|
6539
|
+
{ id: "case-evidence", label: "Evidence" },
|
|
6540
|
+
{ id: "case-operations", label: "Operations" },
|
|
6541
|
+
{ id: "case-edges", label: "Edges" },
|
|
6542
|
+
{ id: "case-documents", label: "Documents" },
|
|
6543
|
+
{ id: "case-merge-split", label: "Merge & Split" }
|
|
6544
|
+
] },
|
|
6545
|
+
{ id: "review", label: "Review", children: [
|
|
6546
|
+
{ id: "list-review-items", label: "List Items" },
|
|
6547
|
+
{ id: "review-stats", label: "Stats" },
|
|
6548
|
+
{ id: "get-review-item", label: "Get Item" },
|
|
6549
|
+
{ id: "review-action", label: "Take Action" },
|
|
6550
|
+
{ id: "review-batch", label: "Batch Action" },
|
|
6551
|
+
{ id: "review-assign", label: "Assign" }
|
|
6552
|
+
] },
|
|
6553
|
+
{ id: "quality", label: "Quality", children: [
|
|
6554
|
+
{ id: "list-quality-datasets", label: "List Datasets" },
|
|
6555
|
+
{ id: "create-quality-dataset", label: "Create Dataset" },
|
|
6556
|
+
{ id: "get-quality-dataset", label: "Get / Delete Dataset" },
|
|
6557
|
+
{ id: "quality-entries", label: "Entries" },
|
|
6558
|
+
{ id: "list-benchmarks", label: "List Benchmarks" },
|
|
6559
|
+
{ id: "create-benchmark", label: "Create Benchmark" },
|
|
6560
|
+
{ id: "get-benchmark-results", label: "Results & Compare" }
|
|
6561
|
+
] },
|
|
6562
|
+
{ id: "routing-rules", label: "Routing Rules", children: [
|
|
6563
|
+
{ id: "list-routing-rules", label: "List Rules" },
|
|
6564
|
+
{ id: "create-routing-rule", label: "Create Rule" },
|
|
6565
|
+
{ id: "manage-routing-rule", label: "Manage Rule" },
|
|
6566
|
+
{ id: "reorder-routing-rules", label: "Reorder" }
|
|
6567
|
+
] },
|
|
6509
6568
|
{ id: "errors-rate-limits", label: "Errors & Rate Limits", children: [
|
|
6510
6569
|
{ id: "error-format", label: "Error Format" },
|
|
6511
6570
|
{ id: "error-codes", label: "Error Codes" },
|
|
@@ -6530,7 +6589,8 @@ var PLATFORM_NAV_SECTIONS = [
|
|
|
6530
6589
|
{ id: "document-processing", label: "Document Processing" },
|
|
6531
6590
|
{ id: "document-types", label: "Document Types" },
|
|
6532
6591
|
{ id: "document-detail", label: "Document Detail" },
|
|
6533
|
-
{ id: "routing-rules", label: "Routing Rules" }
|
|
6592
|
+
{ id: "routing-rules", label: "Routing Rules" },
|
|
6593
|
+
{ id: "source-connectors", label: "Source Connectors" }
|
|
6534
6594
|
] },
|
|
6535
6595
|
{ id: "field-intelligence", label: "Field Intelligence", children: [
|
|
6536
6596
|
{ id: "field-registry", label: "Field Registry" },
|
|
@@ -6566,7 +6626,9 @@ var PLATFORM_NAV_SECTIONS = [
|
|
|
6566
6626
|
{ id: "link-keys", label: "Link Keys" },
|
|
6567
6627
|
{ id: "entity-linking", label: "Entity Linking" },
|
|
6568
6628
|
{ id: "cases", label: "Cases" },
|
|
6569
|
-
{ id: "document-graph", label: "Document Graph" }
|
|
6629
|
+
{ id: "document-graph", label: "Document Graph" },
|
|
6630
|
+
{ id: "anomaly-detection", label: "Anomaly Detection" },
|
|
6631
|
+
{ id: "evidence-validation", label: "Evidence Validation" }
|
|
6570
6632
|
] },
|
|
6571
6633
|
{ id: "batch-inference", label: "Batch Inference", children: [
|
|
6572
6634
|
{ id: "batch-overview", label: "Overview" },
|
|
@@ -6581,7 +6643,9 @@ var PLATFORM_NAV_SECTIONS = [
|
|
|
6581
6643
|
] },
|
|
6582
6644
|
{ id: "data-products", label: "Data Products", children: [
|
|
6583
6645
|
{ id: "dataset-templates", label: "Dataset Templates" },
|
|
6584
|
-
{ id: "assemblies", label: "Assemblies" }
|
|
6646
|
+
{ id: "assemblies", label: "Assemblies" },
|
|
6647
|
+
{ id: "id-dispensers", label: "ID Dispensers" },
|
|
6648
|
+
{ id: "data-product-sharing", label: "Sharing & Export" }
|
|
6585
6649
|
] },
|
|
6586
6650
|
{ id: "validation-quality", label: "Validation & Quality", children: [
|
|
6587
6651
|
{ id: "validation-checks", label: "Validation Checks" },
|
|
@@ -6639,6 +6703,13 @@ var API_SECTION_META = [
|
|
|
6639
6703
|
{ id: "validation", title: "Validation API", description: "Golden sample management and validation runs for measuring extraction accuracy against ground truth datasets." },
|
|
6640
6704
|
{ id: "credits", title: "Credits API", description: "Credit balance, transaction history, aggregate usage summaries, daily usage breakdown, and per-request usage log." },
|
|
6641
6705
|
{ id: "agent", title: "Agent API", description: "Workspace context snapshot and agent tool discovery endpoints for programmatic access to embedded AI assistant capabilities." },
|
|
6706
|
+
{ id: "matching", title: "Matching API", description: "Reference data matching \u2014 create configs with weighted field strategies, run matches, get top-5 candidates per document, and AI-generate strategies." },
|
|
6707
|
+
{ id: "delivery", title: "Delivery API", description: "Outbound delivery pipeline \u2014 destinations, bindings, delivery history, dead letter queue, and catalog discovery for signals, deliverables, serializers, and connectors." },
|
|
6708
|
+
{ id: "batches", title: "Batches API", description: "Batch extraction processing at 50% cost \u2014 list, get, sync with provider, and cancel batches." },
|
|
6709
|
+
{ id: "cases", title: "Cases API", description: "Case management \u2014 list, get, anomalies, evidence, narration, labels, edge confirmation, document pinning, merge and split operations." },
|
|
6710
|
+
{ id: "review", title: "Review API", description: "Review queue for validation records \u2014 list items, stats, take action (approve/reject/flag), batch operations, and assignment." },
|
|
6711
|
+
{ id: "quality", title: "Quality API", description: "Ground truth datasets, entries management with CSV import, benchmark runs, per-field accuracy results, and benchmark comparison." },
|
|
6712
|
+
{ id: "routing-rules", title: "Routing Rules API", description: "Document routing rules \u2014 create, manage, and reorder priority-based rules for automatic document workflow assignment." },
|
|
6642
6713
|
{ id: "errors-rate-limits", title: "Errors & Rate Limits", description: "Error response format, error codes, rate limit tiers by plan, and rate limit headers." }
|
|
6643
6714
|
];
|
|
6644
6715
|
var PLATFORM_SECTION_META = [
|