@talonic/docs 0.8.1 → 0.9.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/seo.d.ts CHANGED
@@ -2077,6 +2077,30 @@ declare const OPENAPI_SPEC: {
2077
2077
  };
2078
2078
  };
2079
2079
  };
2080
+ '/v1/agent/context': {
2081
+ get: {
2082
+ operationId: string;
2083
+ summary: string;
2084
+ tags: string[];
2085
+ responses: {
2086
+ '200': {
2087
+ description: string;
2088
+ };
2089
+ };
2090
+ };
2091
+ };
2092
+ '/v1/agent/tools': {
2093
+ get: {
2094
+ operationId: string;
2095
+ summary: string;
2096
+ tags: string[];
2097
+ responses: {
2098
+ '200': {
2099
+ description: string;
2100
+ };
2101
+ };
2102
+ };
2103
+ };
2080
2104
  };
2081
2105
  };
2082
2106
  declare const API_FAQ: {
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: "Inputs", children: [
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" },
@@ -128,6 +128,10 @@ var API_NAV_SECTIONS = [
128
128
  { id: "credits-usage-daily", label: "Daily Usage" },
129
129
  { id: "credits-usage-log", label: "Usage Log" }
130
130
  ] },
131
+ { id: "agent", label: "Agent", children: [
132
+ { id: "agent-context", label: "Get Workspace Context" },
133
+ { id: "agent-tools", label: "List Agent Tools" }
134
+ ] },
131
135
  { id: "errors-rate-limits", label: "Errors & Rate Limits", children: [
132
136
  { id: "error-format", label: "Error Format" },
133
137
  { id: "error-codes", label: "Error Codes" },
@@ -141,6 +145,11 @@ var PLATFORM_NAV_SECTIONS = [
141
145
  { id: "platform-flow", label: "Platform Flow" },
142
146
  { id: "getting-started", label: "Getting Started" }
143
147
  ] },
148
+ { id: "agent", label: "AI Agent", children: [
149
+ { id: "agent-capabilities", label: "Capabilities" },
150
+ { id: "agent-impact", label: "Impact Levels" },
151
+ { id: "agent-dashboard", label: "Dashboard" }
152
+ ] },
144
153
  { id: "sources-docs", label: "Inputs & Documents", children: [
145
154
  { id: "uploading", label: "Uploading Documents" },
146
155
  { id: "supported-formats", label: "Supported Formats" },
@@ -234,10 +243,12 @@ var API_SECTION_META = [
234
243
  { id: "structuring", title: "Structuring API", description: "Validation checks CRUD, approval gates with configurable rules, result check outcomes, pending approvals queue, and delivery triggers." },
235
244
  { id: "validation", title: "Validation API", description: "Golden sample management and validation runs for measuring extraction accuracy against ground truth datasets." },
236
245
  { id: "credits", title: "Credits API", description: "Credit balance, transaction history, aggregate usage summaries, daily usage breakdown, and per-request usage log." },
246
+ { id: "agent", title: "Agent API", description: "Workspace context snapshot and agent tool discovery endpoints for programmatic access to embedded AI assistant capabilities." },
237
247
  { id: "errors-rate-limits", title: "Errors & Rate Limits", description: "Error response format, error codes, rate limit tiers by plan, and rate limit headers." }
238
248
  ];
239
249
  var PLATFORM_SECTION_META = [
240
250
  { id: "overview", title: "Platform Overview", description: "Core concepts, platform flow, and getting started guide for the Talonic document structuring platform." },
251
+ { id: "agent", title: "AI Agent", description: "Embedded AI assistant accessible via Cmd+I from any page. Inspects schemas, searches documents, analyzes extraction quality, explores cases, and builds schemas through natural language." },
241
252
  { id: "sources-docs", title: "Inputs & Documents", description: "Upload documents via drag-and-drop, API, or connectors. 25+ formats supported with automatic OCR and classification." },
242
253
  { id: "field-intelligence", title: "Field Intelligence", description: "Unified field registry with tier system, semantic clustering, and AI-synthesized master extraction instructions." },
243
254
  { id: "schemas-templates", title: "Schemas & Templates", description: "AI-generated schemas per document type and user-defined templates with field matching, reference tables, and versioning." },
@@ -609,6 +620,13 @@ var OPENAPI_SPEC = {
609
620
  // Expanded: Reference Data
610
621
  "/v1/reference-data/create": {
611
622
  post: { operationId: "createReferenceDataJson", summary: "Create reference data from JSON", tags: ["Reference Data"], responses: { "201": { description: "Reference dataset created" } } }
623
+ },
624
+ // Agent
625
+ "/v1/agent/context": {
626
+ get: { operationId: "getAgentContext", summary: "Get comprehensive workspace context", tags: ["Agent"], responses: { "200": { description: "Workspace overview with documents, schemas, runs, field registry, and recent activity" } } }
627
+ },
628
+ "/v1/agent/tools": {
629
+ get: { operationId: "listAgentTools", summary: "List all agent tools", tags: ["Agent"], responses: { "200": { description: "List of available agent tools with impact level and description" } } }
612
630
  }
613
631
  }
614
632
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talonic/docs",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "description": "Talonic documentation components — API Reference & Platform Guide",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
@@ -1,45 +0,0 @@
1
- /**
2
- * Tailwind CSS preset for @talonic/docs consumers.
3
- * Adds the Void design system color tokens and font families
4
- * so doc components render correctly in any host app.
5
- */
6
- declare const voidDocsPreset: {
7
- darkMode: "class";
8
- theme: {
9
- extend: {
10
- colors: {
11
- 'void-bg': string;
12
- 'void-bg-elevated': string;
13
- 'void-surface': string;
14
- 'void-surface-2': string;
15
- 'void-surface-3': string;
16
- 'void-border': string;
17
- 'void-border-hover': string;
18
- 'void-text-primary': string;
19
- 'void-text-secondary': string;
20
- 'void-text-muted': string;
21
- 'void-text-tertiary': string;
22
- 'void-accent': string;
23
- 'void-accent-hover': string;
24
- 'void-accent-dim': string;
25
- 'void-accent-tint': string;
26
- 'void-danger': string;
27
- 'void-danger-solid': string;
28
- 'void-divider': string;
29
- 'void-warning': string;
30
- 'void-warning-dim': string;
31
- 'void-tier-1': string;
32
- 'void-tier-2': string;
33
- 'void-tier-3': string;
34
- };
35
- fontFamily: {
36
- space: string[];
37
- body: string[];
38
- mono: string[];
39
- };
40
- };
41
- };
42
- plugins: never[];
43
- };
44
-
45
- export { voidDocsPreset as default };
@@ -1,45 +0,0 @@
1
- /**
2
- * Tailwind CSS preset for @talonic/docs consumers.
3
- * Adds the Void design system color tokens and font families
4
- * so doc components render correctly in any host app.
5
- */
6
- declare const voidDocsPreset: {
7
- darkMode: "class";
8
- theme: {
9
- extend: {
10
- colors: {
11
- 'void-bg': string;
12
- 'void-bg-elevated': string;
13
- 'void-surface': string;
14
- 'void-surface-2': string;
15
- 'void-surface-3': string;
16
- 'void-border': string;
17
- 'void-border-hover': string;
18
- 'void-text-primary': string;
19
- 'void-text-secondary': string;
20
- 'void-text-muted': string;
21
- 'void-text-tertiary': string;
22
- 'void-accent': string;
23
- 'void-accent-hover': string;
24
- 'void-accent-dim': string;
25
- 'void-accent-tint': string;
26
- 'void-danger': string;
27
- 'void-danger-solid': string;
28
- 'void-divider': string;
29
- 'void-warning': string;
30
- 'void-warning-dim': string;
31
- 'void-tier-1': string;
32
- 'void-tier-2': string;
33
- 'void-tier-3': string;
34
- };
35
- fontFamily: {
36
- space: string[];
37
- body: string[];
38
- mono: string[];
39
- };
40
- };
41
- };
42
- plugins: never[];
43
- };
44
-
45
- export { voidDocsPreset as default };