@talonic/docs 0.20.3 → 0.20.5
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 +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/seo.js +1 -1
- package/package.json +1 -1
package/dist/content.js
CHANGED
|
@@ -1590,7 +1590,7 @@ var sections5 = [
|
|
|
1590
1590
|
},
|
|
1591
1591
|
{
|
|
1592
1592
|
type: "callout",
|
|
1593
|
-
text: "For the complete JSON Schema specification with all features, see the [Full Schema Reference](/docs
|
|
1593
|
+
text: "For the complete JSON Schema specification with all features, see the [Full Schema Reference](/docs/platform/schema-features) in the Platform Guide."
|
|
1594
1594
|
}
|
|
1595
1595
|
],
|
|
1596
1596
|
related: [
|
package/dist/index.js
CHANGED
|
@@ -5615,8 +5615,8 @@ function PlatformGuide({ LinkComponent }) {
|
|
|
5615
5615
|
/* @__PURE__ */ jsxs6(Callout, { children: [
|
|
5616
5616
|
"For the complete JSON Schema specification with all features, see the",
|
|
5617
5617
|
" ",
|
|
5618
|
-
/* @__PURE__ */ jsx6(LinkComp, { href: "/docs
|
|
5619
|
-
" in the
|
|
5618
|
+
/* @__PURE__ */ jsx6(LinkComp, { href: "/docs/platform/schema-features", children: "Full Schema Reference" }),
|
|
5619
|
+
" in the Platform Guide. A downloadable template is available in the",
|
|
5620
5620
|
" ",
|
|
5621
5621
|
/* @__PURE__ */ jsx6(LinkComp, { href: "https://github.com/talonicdev/platform/blob/main/packages/docs/src/schema-template.json", children: "repository" }),
|
|
5622
5622
|
"."
|
|
@@ -6747,7 +6747,7 @@ var API_FAQ = [
|
|
|
6747
6747
|
{ question: "What file formats does the Talonic API support?", answer: "PDF, DOCX, DOC, PPTX, PPT, XLSX, XLS, XLSM, PNG, JPG, JPEG, GIF, WEBP, TXT, MD, HTML, XML, JSON, EML, CSV, MSG, BMP, and ZIP archives." },
|
|
6748
6748
|
{ question: "How does authentication work?", answer: "All API requests require a Bearer token in the Authorization header. API keys carry the tlnc_ prefix and are scoped to a source. Create and manage keys from Settings \u2192 API Keys." },
|
|
6749
6749
|
{ question: "What schema formats are supported?", answer: "Three formats: JSON Schema (full control), simplified fields (recommended), and flat key-type maps (quick prototyping). Supported types: string, number, integer, boolean, date, array, object, enum." },
|
|
6750
|
-
{ question: "What are the rate limits?", answer: "
|
|
6750
|
+
{ question: "What are the rate limits?", answer: "Per-key rate limits: 100 req/s extraction, 1,000 req/s read, 200 req/s write. Rate-limit headers (X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset) are included on every response." },
|
|
6751
6751
|
{ question: "How do webhooks work?", answer: "Webhooks deliver POST requests with HMAC-SHA256 signed JSON payloads. Events: extraction.complete, extraction.failed, document.ingested. Failed deliveries retry with exponential backoff (1min, 5min, 30min, 4hr)." },
|
|
6752
6752
|
{ question: "Can I extract data asynchronously?", answer: "Yes. Set async: true or provide a webhook_url in the extract request. Returns a 202 with a job ID that you can poll at /v1/jobs/:id." }
|
|
6753
6753
|
];
|