@x12i/connectix-docs 0.1.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.
Files changed (45) hide show
  1. package/README.md +77 -0
  2. package/bin/connectix-docs.js +2 -0
  3. package/dist/cli.d.ts +3 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +56 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/generated/bundle.d.ts +7 -0
  8. package/dist/generated/bundle.d.ts.map +1 -0
  9. package/dist/generated/bundle.js +304 -0
  10. package/dist/generated/bundle.js.map +1 -0
  11. package/dist/index.d.ts +6 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +13 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/web/.deploy-ready +1 -0
  16. package/dist/web/agent-manifest.json +102 -0
  17. package/dist/web/agents.html +66 -0
  18. package/dist/web/app.js +164 -0
  19. package/dist/web/assets/book.css +783 -0
  20. package/dist/web/assets/extras.css +137 -0
  21. package/dist/web/assets/site.css +792 -0
  22. package/dist/web/assets/tokens.css +19 -0
  23. package/dist/web/books/00-orient-connectix/developers.html +174 -0
  24. package/dist/web/books/00-orient-connectix.html +56 -0
  25. package/dist/web/books/01-tools-and-simulator/developers.html +197 -0
  26. package/dist/web/books/01-tools-and-simulator.html +56 -0
  27. package/dist/web/catalog.html +83 -0
  28. package/dist/web/catalog.json +59 -0
  29. package/dist/web/docs.html +73 -0
  30. package/dist/web/downloads/books/00-orient-connectix/developers.chapters.json +26 -0
  31. package/dist/web/downloads/books/00-orient-connectix/developers.md +82 -0
  32. package/dist/web/downloads/books/01-tools-and-simulator/developers.chapters.json +32 -0
  33. package/dist/web/downloads/books/01-tools-and-simulator/developers.md +118 -0
  34. package/dist/web/downloads/use-cases/call-connect-tools.md +78 -0
  35. package/dist/web/downloads/use-cases/catalog-extension-overview.md +42 -0
  36. package/dist/web/downloads/use-cases/orient-connectix.md +95 -0
  37. package/dist/web/downloads/use-cases/run-package-simulator.md +48 -0
  38. package/dist/web/getting-started.html +74 -0
  39. package/dist/web/index.html +84 -0
  40. package/dist/web/pages.json +55 -0
  41. package/dist/web/read.html +121 -0
  42. package/dist/web/site.json +28 -0
  43. package/dist/web/use-cases.html +66 -0
  44. package/dist/web/use-cases.json +103 -0
  45. package/package.json +64 -0
package/README.md ADDED
@@ -0,0 +1,77 @@
1
+ # @x12i/connectix-docs
2
+
3
+ Connectix **knowledge SDK** (agents) plus a deployable **`dist/web`** static site (humans).
4
+
5
+ Install as a **devDependency only** — do not add to production service dependencies.
6
+
7
+ ```bash
8
+ npm i -D @x12i/connectix-docs
9
+ ```
10
+
11
+ ## Knowledge SDK (agents)
12
+
13
+ ```ts
14
+ import { connectixDocs } from "@x12i/connectix-docs";
15
+
16
+ connectixDocs.getUseCaseMarkdown("orient-connectix");
17
+ connectixDocs.getBookMarkdown("01-tools-and-simulator", "developers");
18
+ connectixDocs.manifest();
19
+ ```
20
+
21
+ CLI:
22
+
23
+ ```bash
24
+ npx connectix-docs list-use-cases
25
+ npx connectix-docs use-case call-connect-tools > pack.md
26
+ npx connectix-docs book 00-orient-connectix developers > book.md
27
+ ```
28
+
29
+ | Use case id | Goal |
30
+ |-------------|------|
31
+ | `orient-connectix` | Understand the service, the four curated operations, and the caller contract |
32
+ | `call-connect-tools` | Expose Connectix as LLM tools via `@x12i/connectix-tools` |
33
+ | `run-package-simulator` | Develop against `@x12i/connectix-simulator` deterministic fixtures |
34
+ | `catalog-extension-overview` | Understand OpenConnector / n8n-node / Nango-derived provenance |
35
+
36
+ ## Deployable web site (`dist/web`)
37
+
38
+ After install (or after `npm run docs:web` in this repo), deploy the static tree:
39
+
40
+ ```text
41
+ node_modules/@x12i/connectix-docs/dist/web/
42
+ ```
43
+
44
+ It contains `index.html`, `docs.html`, book landings, `read.html`, `catalog.json`,
45
+ `use-cases.json`, `agent-manifest.json`, `downloads/`, and themed assets — ready for any
46
+ static host (nginx, S3, Cloudflare Pages, Netlify, …).
47
+
48
+ Locally:
49
+
50
+ ```bash
51
+ # from the Connectix monorepo
52
+ npm run docs:web # build dist/web
53
+ npm run docs:serve # serve on :4173 via @x12i/docify-web
54
+ ```
55
+
56
+ Or after installing the published package:
57
+
58
+ ```bash
59
+ npx docify-web serve node_modules/@x12i/connectix-docs/dist/web --port 4173
60
+ ```
61
+
62
+ ## Build pipeline (authors)
63
+
64
+ Content lives under `content/` (`data/*.json`, `site-pages/*.md`, `NN-slug/<audience>/BOOK.md`).
65
+
66
+ | Script | Job |
67
+ |--------|-----|
68
+ | `npm run docs:web` | `buildContentBundle` + `@x12i/docify-web` shell → `dist/web` |
69
+ | `npm run docs:knowledge` | Embed downloads into `src/generated/bundle.ts` |
70
+ | `npm run bundle` | web + knowledge |
71
+ | `npm run build` | TypeScript knowledge SDK (`prebuild` runs `bundle`) |
72
+
73
+ Set `DOCIFY_PDF=0` to skip PDF generation when `wkhtmltopdf` is unavailable.
74
+
75
+ Depends on published `@x12i/docify-{core,sdk,export,render,theme,web}`.
76
+
77
+ License: UNLICENSED (X12I internal; published for X12I service consumers).
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "../dist/cli.js";
package/dist/cli.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
package/dist/cli.js ADDED
@@ -0,0 +1,56 @@
1
+ #!/usr/bin/env node
2
+ import { connectixDocs } from "./index.js";
3
+ const [cmd, id, audience] = process.argv.slice(2);
4
+ function usage() {
5
+ console.error(`Usage:
6
+ connectix-docs use-case <id> Print assembled use-case markdown
7
+ connectix-docs book <id> <audience> Print book markdown
8
+ connectix-docs list-use-cases List use case ids
9
+ connectix-docs list-books List book ids
10
+ `);
11
+ }
12
+ if (!cmd || cmd === "help" || cmd === "--help") {
13
+ usage();
14
+ process.exit(cmd ? 0 : 1);
15
+ }
16
+ if (cmd === "list-use-cases") {
17
+ for (const uc of connectixDocs.listUseCases()) {
18
+ console.log(`${uc.id}\t${uc.title}`);
19
+ }
20
+ process.exit(0);
21
+ }
22
+ if (cmd === "list-books") {
23
+ for (const book of connectixDocs.listBooks()) {
24
+ console.log(`${book.id}\t${book.title}\t${book.audiences.join(",")}`);
25
+ }
26
+ process.exit(0);
27
+ }
28
+ if (cmd === "use-case") {
29
+ if (!id) {
30
+ usage();
31
+ process.exit(1);
32
+ }
33
+ const md = connectixDocs.getUseCaseMarkdown(id);
34
+ if (!md) {
35
+ console.error(`Unknown use case: ${id}`);
36
+ process.exit(1);
37
+ }
38
+ process.stdout.write(md);
39
+ process.exit(0);
40
+ }
41
+ if (cmd === "book") {
42
+ if (!id || (audience !== "developers" && audience !== "builders")) {
43
+ usage();
44
+ process.exit(1);
45
+ }
46
+ const md = connectixDocs.getBookMarkdown(id, audience);
47
+ if (!md) {
48
+ console.error(`Unknown book/audience: ${id} ${audience}`);
49
+ process.exit(1);
50
+ }
51
+ process.stdout.write(md);
52
+ process.exit(0);
53
+ }
54
+ usage();
55
+ process.exit(1);
56
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,GAAG,EAAE,EAAE,EAAE,QAAQ,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AAElD,SAAS,KAAK;IACZ,OAAO,CAAC,KAAK,CAAC;;;;;CAKf,CAAC,CAAC;AACH,CAAC;AAED,IAAI,CAAC,GAAG,IAAI,GAAG,KAAK,MAAM,IAAI,GAAG,KAAK,QAAQ,EAAE,CAAC;IAC/C,KAAK,EAAE,CAAC;IACR,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC5B,CAAC;AAED,IAAI,GAAG,KAAK,gBAAgB,EAAE,CAAC;IAC7B,KAAK,MAAM,EAAE,IAAI,aAAa,CAAC,YAAY,EAAE,EAAE,CAAC;QAC9C,OAAO,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC;IACvC,CAAC;IACD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,IAAI,GAAG,KAAK,YAAY,EAAE,CAAC;IACzB,KAAK,MAAM,IAAI,IAAI,aAAa,CAAC,SAAS,EAAE,EAAE,CAAC;QAC7C,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,EAAE,KAAK,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IACxE,CAAC;IACD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,IAAI,GAAG,KAAK,UAAU,EAAE,CAAC;IACvB,IAAI,CAAC,EAAE,EAAE,CAAC;QACR,KAAK,EAAE,CAAC;QACR,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IACD,MAAM,EAAE,GAAG,aAAa,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAC;IAChD,IAAI,CAAC,EAAE,EAAE,CAAC;QACR,OAAO,CAAC,KAAK,CAAC,qBAAqB,EAAE,EAAE,CAAC,CAAC;QACzC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IACD,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IACzB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,IAAI,GAAG,KAAK,MAAM,EAAE,CAAC;IACnB,IAAI,CAAC,EAAE,IAAI,CAAC,QAAQ,KAAK,YAAY,IAAI,QAAQ,KAAK,UAAU,CAAC,EAAE,CAAC;QAClE,KAAK,EAAE,CAAC;QACR,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IACD,MAAM,EAAE,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC;IACvD,IAAI,CAAC,EAAE,EAAE,CAAC;QACR,OAAO,CAAC,KAAK,CAAC,0BAA0B,EAAE,IAAI,QAAQ,EAAE,CAAC,CAAC;QAC1D,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IACD,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IACzB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,KAAK,EAAE,CAAC;AACR,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { AgentManifest, Catalog, SiteConfig, UseCasesFile } from "@x12i/docify-core";
2
+ export declare const catalog: Catalog;
3
+ export declare const useCases: UseCasesFile;
4
+ export declare const site: SiteConfig;
5
+ export declare const manifest: AgentManifest;
6
+ export declare const files: Record<string, string>;
7
+ //# sourceMappingURL=bundle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle.d.ts","sourceRoot":"","sources":["../../src/generated/bundle.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAE1F,eAAO,MAAM,OAAO,EAAE,OA0DrB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,YAsGtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,UA2BlB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,aAqGtB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAUxC,CAAC"}
@@ -0,0 +1,304 @@
1
+ export const catalog = {
2
+ "roles": [
3
+ {
4
+ "id": "developers",
5
+ "label": "Developers",
6
+ "tagline": "Call Connectix from services, tools, and pipelines",
7
+ "description": "Engineers integrating AI Skills, FuncX, or Memorix Pipeline Services with Connectix, or extending the Connectix catalog."
8
+ }
9
+ ],
10
+ "families": [
11
+ {
12
+ "id": "connectix-core",
13
+ "name": "Connectix Core",
14
+ "tagline": "Contracts, tools, and local simulation",
15
+ "description": "How Connectix executes provider actions, what callers may know, and how to develop against it locally.",
16
+ "color": "#2f6feb"
17
+ }
18
+ ],
19
+ "books": [
20
+ {
21
+ "id": "00-orient-connectix",
22
+ "familyId": "connectix-core",
23
+ "audiences": [
24
+ "developers"
25
+ ],
26
+ "status": "available",
27
+ "kicker": "Orientation",
28
+ "title": "Orient on Connectix",
29
+ "subtitle": "What the service is, how to call it, and who owns which fact",
30
+ "blurb": "The Connectix mental model: curated operations, bindings instead of secrets, stub versus live execution, and the Credorix/Memorix ownership boundaries.",
31
+ "tags": [
32
+ "orientation",
33
+ "contracts",
34
+ "auth"
35
+ ],
36
+ "color": "#2f6feb",
37
+ "dir": "00-orient-connectix"
38
+ },
39
+ {
40
+ "id": "01-tools-and-simulator",
41
+ "familyId": "connectix-core",
42
+ "audiences": [
43
+ "developers"
44
+ ],
45
+ "status": "available",
46
+ "kicker": "Tools",
47
+ "title": "AI Tools and the Package Simulator",
48
+ "subtitle": "Expose the four connect tools and develop against local fixtures",
49
+ "blurb": "How to expose Connectix as LLM tools with @x12i/connectix-tools, run the @x12i/connectix-simulator package simulator, and understand catalog extension provenance.",
50
+ "tags": [
51
+ "ai-tools",
52
+ "simulator",
53
+ "catalog"
54
+ ],
55
+ "color": "#7c3aed",
56
+ "dir": "01-tools-and-simulator"
57
+ }
58
+ ]
59
+ };
60
+ export const useCases = {
61
+ "useCases": [
62
+ {
63
+ "id": "orient-connectix",
64
+ "title": "Orient on Connectix",
65
+ "goal": "Understand what Connectix is, the four curated operations, and the caller contract before writing any integration code.",
66
+ "audiences": [
67
+ "developers"
68
+ ],
69
+ "tags": [
70
+ "orientation",
71
+ "getting-started"
72
+ ],
73
+ "path": [
74
+ {
75
+ "bookId": "00-orient-connectix",
76
+ "audience": "developers",
77
+ "chapters": [
78
+ "1-what-connectix-is",
79
+ "2-call-styles-and-auth",
80
+ "3-ownership-boundaries"
81
+ ]
82
+ }
83
+ ],
84
+ "alsoSee": [
85
+ "call-connect-tools"
86
+ ]
87
+ },
88
+ {
89
+ "id": "call-connect-tools",
90
+ "title": "Expose Connectix as AI tools",
91
+ "goal": "Register the four connect tools from @x12i/connectix-tools in an LLM tool registry and run them against a live service or the simulator.",
92
+ "audiences": [
93
+ "developers"
94
+ ],
95
+ "tags": [
96
+ "ai-tools",
97
+ "agents"
98
+ ],
99
+ "path": [
100
+ {
101
+ "bookId": "01-tools-and-simulator",
102
+ "audience": "developers",
103
+ "chapters": [
104
+ "1-the-four-connect-tools",
105
+ "3-stub-and-live-execution"
106
+ ]
107
+ }
108
+ ],
109
+ "alsoSee": [
110
+ "run-package-simulator"
111
+ ]
112
+ },
113
+ {
114
+ "id": "run-package-simulator",
115
+ "title": "Develop against the package simulator",
116
+ "goal": "Use @x12i/connectix-simulator for deterministic local development and tests without the service, Credorix, or providers.",
117
+ "audiences": [
118
+ "developers"
119
+ ],
120
+ "tags": [
121
+ "simulator",
122
+ "testing"
123
+ ],
124
+ "path": [
125
+ {
126
+ "bookId": "01-tools-and-simulator",
127
+ "audience": "developers",
128
+ "chapters": [
129
+ "2-run-the-package-simulator"
130
+ ]
131
+ }
132
+ ],
133
+ "alsoSee": [
134
+ "call-connect-tools"
135
+ ]
136
+ },
137
+ {
138
+ "id": "catalog-extension-overview",
139
+ "title": "Understand catalog extension provenance",
140
+ "goal": "Know how OpenConnector, n8n-node, and Nango-derived implementations reach the catalog while callers stay source-agnostic.",
141
+ "audiences": [
142
+ "developers"
143
+ ],
144
+ "tags": [
145
+ "catalog",
146
+ "provenance"
147
+ ],
148
+ "path": [
149
+ {
150
+ "bookId": "01-tools-and-simulator",
151
+ "audience": "developers",
152
+ "chapters": [
153
+ "4-catalog-extension-overview"
154
+ ]
155
+ }
156
+ ],
157
+ "alsoSee": [
158
+ "orient-connectix"
159
+ ]
160
+ }
161
+ ]
162
+ };
163
+ export const site = {
164
+ "product": "Connectix",
165
+ "brand": "Connectix",
166
+ "brandAccent": "#2f6feb",
167
+ "siteUrl": "https://docs.x12i.dev/connectix",
168
+ "knowledgePackage": "@x12i/connectix-docs",
169
+ "footer": "Connectix — internal X12I provider connectivity service.",
170
+ "accent": "#2f6feb",
171
+ "accentAlt": "#1f6e5c",
172
+ "nav": [
173
+ {
174
+ "label": "Getting started",
175
+ "href": "/getting-started"
176
+ },
177
+ {
178
+ "label": "Use cases",
179
+ "href": "/use-cases"
180
+ },
181
+ {
182
+ "label": "Catalog",
183
+ "href": "/catalog"
184
+ },
185
+ {
186
+ "label": "Agents/SDK",
187
+ "href": "/agents"
188
+ }
189
+ ]
190
+ };
191
+ export const manifest = {
192
+ "version": 1,
193
+ "product": "Connectix",
194
+ "site": "https://docs.x12i.dev/connectix",
195
+ "knowledgePackage": "@x12i/connectix-docs",
196
+ "roles": [
197
+ "developers"
198
+ ],
199
+ "books": [
200
+ {
201
+ "id": "00-orient-connectix",
202
+ "audiences": [
203
+ "developers"
204
+ ],
205
+ "md": {
206
+ "developers": "downloads/books/00-orient-connectix/developers.md"
207
+ },
208
+ "pdf": {
209
+ "developers": null
210
+ },
211
+ "chapters": {
212
+ "developers": "downloads/books/00-orient-connectix/developers.chapters.json"
213
+ }
214
+ },
215
+ {
216
+ "id": "01-tools-and-simulator",
217
+ "audiences": [
218
+ "developers"
219
+ ],
220
+ "md": {
221
+ "developers": "downloads/books/01-tools-and-simulator/developers.md"
222
+ },
223
+ "pdf": {
224
+ "developers": null
225
+ },
226
+ "chapters": {
227
+ "developers": "downloads/books/01-tools-and-simulator/developers.chapters.json"
228
+ }
229
+ }
230
+ ],
231
+ "useCases": [
232
+ {
233
+ "id": "orient-connectix",
234
+ "title": "Orient on Connectix",
235
+ "md": "downloads/use-cases/orient-connectix.md",
236
+ "path": [
237
+ {
238
+ "bookId": "00-orient-connectix",
239
+ "audience": "developers",
240
+ "chapters": [
241
+ "1-what-connectix-is",
242
+ "2-call-styles-and-auth",
243
+ "3-ownership-boundaries"
244
+ ]
245
+ }
246
+ ]
247
+ },
248
+ {
249
+ "id": "call-connect-tools",
250
+ "title": "Expose Connectix as AI tools",
251
+ "md": "downloads/use-cases/call-connect-tools.md",
252
+ "path": [
253
+ {
254
+ "bookId": "01-tools-and-simulator",
255
+ "audience": "developers",
256
+ "chapters": [
257
+ "1-the-four-connect-tools",
258
+ "3-stub-and-live-execution"
259
+ ]
260
+ }
261
+ ]
262
+ },
263
+ {
264
+ "id": "run-package-simulator",
265
+ "title": "Develop against the package simulator",
266
+ "md": "downloads/use-cases/run-package-simulator.md",
267
+ "path": [
268
+ {
269
+ "bookId": "01-tools-and-simulator",
270
+ "audience": "developers",
271
+ "chapters": [
272
+ "2-run-the-package-simulator"
273
+ ]
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "id": "catalog-extension-overview",
279
+ "title": "Understand catalog extension provenance",
280
+ "md": "downloads/use-cases/catalog-extension-overview.md",
281
+ "path": [
282
+ {
283
+ "bookId": "01-tools-and-simulator",
284
+ "audience": "developers",
285
+ "chapters": [
286
+ "4-catalog-extension-overview"
287
+ ]
288
+ }
289
+ ]
290
+ }
291
+ ]
292
+ };
293
+ export const files = {
294
+ "agent-manifest.json": "{\n \"version\": 1,\n \"product\": \"Connectix\",\n \"site\": \"https://docs.x12i.dev/connectix\",\n \"knowledgePackage\": \"@x12i/connectix-docs\",\n \"roles\": [\n \"developers\"\n ],\n \"books\": [\n {\n \"id\": \"00-orient-connectix\",\n \"audiences\": [\n \"developers\"\n ],\n \"md\": {\n \"developers\": \"downloads/books/00-orient-connectix/developers.md\"\n },\n \"pdf\": {\n \"developers\": null\n },\n \"chapters\": {\n \"developers\": \"downloads/books/00-orient-connectix/developers.chapters.json\"\n }\n },\n {\n \"id\": \"01-tools-and-simulator\",\n \"audiences\": [\n \"developers\"\n ],\n \"md\": {\n \"developers\": \"downloads/books/01-tools-and-simulator/developers.md\"\n },\n \"pdf\": {\n \"developers\": null\n },\n \"chapters\": {\n \"developers\": \"downloads/books/01-tools-and-simulator/developers.chapters.json\"\n }\n }\n ],\n \"useCases\": [\n {\n \"id\": \"orient-connectix\",\n \"title\": \"Orient on Connectix\",\n \"md\": \"downloads/use-cases/orient-connectix.md\",\n \"path\": [\n {\n \"bookId\": \"00-orient-connectix\",\n \"audience\": \"developers\",\n \"chapters\": [\n \"1-what-connectix-is\",\n \"2-call-styles-and-auth\",\n \"3-ownership-boundaries\"\n ]\n }\n ]\n },\n {\n \"id\": \"call-connect-tools\",\n \"title\": \"Expose Connectix as AI tools\",\n \"md\": \"downloads/use-cases/call-connect-tools.md\",\n \"path\": [\n {\n \"bookId\": \"01-tools-and-simulator\",\n \"audience\": \"developers\",\n \"chapters\": [\n \"1-the-four-connect-tools\",\n \"3-stub-and-live-execution\"\n ]\n }\n ]\n },\n {\n \"id\": \"run-package-simulator\",\n \"title\": \"Develop against the package simulator\",\n \"md\": \"downloads/use-cases/run-package-simulator.md\",\n \"path\": [\n {\n \"bookId\": \"01-tools-and-simulator\",\n \"audience\": \"developers\",\n \"chapters\": [\n \"2-run-the-package-simulator\"\n ]\n }\n ]\n },\n {\n \"id\": \"catalog-extension-overview\",\n \"title\": \"Understand catalog extension provenance\",\n \"md\": \"downloads/use-cases/catalog-extension-overview.md\",\n \"path\": [\n {\n \"bookId\": \"01-tools-and-simulator\",\n \"audience\": \"developers\",\n \"chapters\": [\n \"4-catalog-extension-overview\"\n ]\n }\n ]\n }\n ]\n}",
295
+ "downloads/books/00-orient-connectix/developers.md": "# Orient on Connectix\n\nConnectix is the internal X12I **provider connectivity** service. It sits between approved\ninternal callers (AI Skills, FuncX, Memorix Pipeline Services, Status UI) and external provider\nAPIs. It is not a customer-facing connector product: no signup, no billing, no public OAuth portal.\n\n## 1. What Connectix is\n\nConnectix executes **curated provider actions** through one stable contract. Callers never learn\nwhere an action implementation came from — OpenConnector, an n8n node, Nango-derived native code,\nor Connectix-native code all look identical behind the same envelope.\n\nThe service exposes exactly four curated operations (never the full upstream provider catalog):\n\n| Operation | Purpose |\n|-----------|---------|\n| `connect.listProviders` | List curated providers |\n| `connect.searchActions` | Search curated actions |\n| `connect.getAction` | Fetch one action descriptor |\n| `connect.executeAction` | Run an action (stub or live) |\n\nThe runtime flow for every execution: validate caller → resolve binding → lease credential →\nrun action → observe in Memorix.\n\nKey packages:\n\n| Package | Role |\n|---------|------|\n| `@x12i/connectix-contracts` | Shared types and envelopes (`ConnectActionRequest`, `PipelineRequest`, error codes) |\n| `@x12i/connectix-client` | Typed HTTP client for the service |\n| `@x12i/connectix-tools` | The four operations as machine-usable LLM tool definitions + runners |\n| `@x12i/connectix-simulator` | Package simulator for local development (no service required) |\n| `@x12i/connectix-docs` | This knowledge package |\n\n## 2. Call styles and auth\n\nEvery non-probe route requires two headers:\n\n```http\nAuthorization: Bearer <caller-token>\nx-connectix-caller-id: service:ai-skills\n```\n\nCaller identity always comes from headers. A `callerId` in the request body is overwritten by\nthe service. Public routes (no auth): `GET /health`, `GET /ready`, `GET /metadata`.\n\nThere are two equivalent call styles sharing one runtime:\n\n1. **Canonical execute** — `POST /v1/actions/execute` with a full `ConnectActionRequest`\n (contractVersion `\"1\"`, explicit `execution.mode` of `stub` or `live`).\n2. **Pipeline step** — `POST /pipeline` with `serviceId`, `serviceType` (one of the four\n operations), `input`, and optional `stub.enabled`. Preferred for Memorix Pipeline Services,\n the Status UI Try panel, and AI tools.\n\nDiscovery routes: `GET /v1/providers`, `GET /v1/actions/search?query=`, and\n`GET /v1/actions/:actionId`. Operation metadata (including example envelopes) is served by\n`GET /metadata` — UIs and tools must load catalogs from there, never hardcode them.\n\nFailures use stable error codes such as `ACTION_NOT_FOUND`, `ACTION_NOT_ALLOWED`,\n`CONNECTION_BINDING_NOT_FOUND`, `CREDENTIAL_NOT_AVAILABLE`, and\n`ACTION_IMPLEMENTATION_UNAVAILABLE`.\n\n## 3. Ownership boundaries\n\nEach fact has exactly one owner. Violating these boundaries is the primary review blocker:\n\n| Fact | Owner |\n|------|-------|\n| Provider secrets and OAuth refresh | **Credorix** — never stored in Connectix or Memorix |\n| Connection bindings and execution records | **Memorix adapter** (in-memory stub today) |\n| Action implementations and provenance | **Connectix executor registry** |\n| Provider definitions (catalog source) | `vendor/open-connector` (pinned engine) |\n\nCallers send a `bindingRef`, never a credential. A binding points at a Credorix\n`credentialRef` plus allowlisted action patterns for one provider. The runtime enforces:\nbinding exists and is enabled → binding provider matches the action provider → the action id\nmatches the binding's allowed patterns → only then lease a credential (live mode only).\n\nExecution mode is always explicit. **Stub** returns the deterministic fixture published with the\naction and records `mode=stub` in Memorix; **live** leases a credential and calls the provider.\nEvery published action must ship a schema-valid stub fixture, which is what makes local and CI\ndevelopment safe by default.\n",
296
+ "downloads/books/00-orient-connectix/developers.chapters.json": "[\n {\n \"slug\": \"preamble\",\n \"title\": \"Introduction\",\n \"level\": 2,\n \"order\": 0\n },\n {\n \"slug\": \"1-what-connectix-is\",\n \"title\": \"1. What Connectix is\",\n \"level\": 2,\n \"order\": 1\n },\n {\n \"slug\": \"2-call-styles-and-auth\",\n \"title\": \"2. Call styles and auth\",\n \"level\": 2,\n \"order\": 2\n },\n {\n \"slug\": \"3-ownership-boundaries\",\n \"title\": \"3. Ownership boundaries\",\n \"level\": 2,\n \"order\": 3\n }\n]",
297
+ "downloads/books/01-tools-and-simulator/developers.md": "# AI Tools and the Package Simulator\n\nHow to expose Connectix to LLMs as tools, develop against local fixtures, and understand where\ncatalog implementations come from.\n\n## 1. The four connect tools\n\n`@x12i/connectix-tools` publishes the four curated operations as machine-usable tool\ndefinitions with JSON Schema inputs and outputs:\n\n| Tool name | Operation |\n|-----------|-----------|\n| `connect_list_providers` | `connect.listProviders` |\n| `connect_search_actions` | `connect.searchActions` |\n| `connect_get_action` | `connect.getAction` |\n| `connect_execute_action` | `connect.executeAction` |\n\nRegister the definitions in your LLM tool registry, then route tool calls through a runner:\n\n```ts\nimport { CONNECT_TOOLS, createHttpConnectToolRunner } from \"@x12i/connectix-tools\";\n\nconst runner = createHttpConnectToolRunner({\n baseUrl: \"http://127.0.0.1:9400\",\n callerId: \"service:ai-skills\",\n callerToken: process.env.CONNECTIX_AI_SKILLS_TOKEN ?? \"change-me-caller\",\n});\n\nconst result = await runner.run({\n tool: \"connect_execute_action\",\n input: {\n actionId: \"example.echo\",\n bindingRef: \"demo-echo\",\n input: { message: \"hello\" },\n stubEnabled: true,\n },\n});\n```\n\nRules for tool callers:\n\n- The recommended flow is discover → describe → execute: search actions, fetch the descriptor,\n read its `inputSchema`, then execute.\n- Pass a `bindingRef`, never a credential. `stubEnabled: true` gives deterministic fixtures.\n- Never add executor-source branches (n8n, Nango, OpenConnector) to caller code. Provenance is\n internal to the service.\n\n## 2. Run the package simulator\n\n`@x12i/connectix-simulator` is a package simulator built on `@x12i/api-simulator`. It mirrors\nthe Connectix HTTP surface with deterministic fixtures so you can develop tools, callers, and\ntests without the service, Credorix, or providers:\n\n```ts\nimport { createConnectToolRunner } from \"@x12i/connectix-tools\";\nimport { createSimulatorPipelineCaller, createConnectixSimulator } from \"@x12i/connectix-simulator\";\n\n// In-process pipeline caller for tool runners:\nconst runner = createConnectToolRunner(createSimulatorPipelineCaller());\n\n// Or raw HTTP-shaped dispatch:\nconst { simulator } = createConnectixSimulator();\nawait simulator.dispatch({ method: \"GET\", path: \"/metadata\" });\n```\n\nSimulated fixtures mirror the service foundation: actions `example.echo`,\n`hackernews.get_item`, `hackernews.list_top_stories`, `github.issue.create` and bindings\n`demo-echo`, `demo-hackernews`, `demo-github`.\n\nAn optional HTTP entry (`startConnectixSimulatorServer`) binds `127.0.0.1:5524` in the\napi-simulator port zone (5520–5539) when a caller needs a real URL. Prefer in-process\n`dispatch()` for tests.\n\nThe simulator supports **stub mode only**. Live requests return\n`ACTION_IMPLEMENTATION_UNAVAILABLE` — switch `baseUrl` to the real service for live execution.\nBecause envelopes are identical, no caller code changes.\n\n## 3. Stub and live execution\n\nBoth call styles make execution mode explicit:\n\n- Pipeline style: `stub: { enabled: true }` → stub; omitted or `false` → live.\n- Canonical style: `execution: { mode: \"stub\" | \"live\" }`.\n\nStub execution validates binding policy exactly like live (unknown binding, provider mismatch,\nand disallowed patterns are still rejected), returns the deterministic fixture published with\nthe action, and records `mode=stub` in the Memorix execution record. It never leases a\ncredential.\n\nLive execution resolves the binding's `credentialRef` through Credorix (or the dev credential\nresolver when Credorix env is unset) and runs the registered executor.\n\nDevelopment default: stub everywhere — simulator, CI, and Status UI Try. Live is opt-in per\nrequest and per binding.\n\n## 4. Catalog extension overview\n\nThe catalog grows from three sources, all published behind the same caller contract:\n\n| Source kind | What it is |\n|-------------|------------|\n| `openconnector` | Curated actions executed by the pinned `vendor/open-connector` engine |\n| `n8n-node` | Selected n8n node resource/operations from an allowlisted, pinned package set |\n| `nango-derived` | Native Connectix/OpenConnector code adapted from offline Nango knowledge |\n| `connectix-native` | First-party executors (for example `example.echo`) |\n\nNon-negotiables:\n\n- Nango is **offline catalog intelligence only** — never a runtime dependency.\n- Executor selection happens in the executor registry by descriptor; callers never choose a\n backend.\n- Every published action carries provenance (`sourceId`, `sourceVersion`, `fingerprint`,\n license) which flows into Memorix execution records — but never secrets.\n- Offline tooling: `npm run n8n:catalog`, `npm run nango:catalog`, `npm run catalog:gaps`,\n `npm run catalog:review`, `npm run catalog:publish` (writes the reviewed publish list under\n `generated/catalog-candidates/`).\n\nFull design: `docs/Connectix-Catalog-Extension-Specification.md` in the Connectix repository.\n",
298
+ "downloads/books/01-tools-and-simulator/developers.chapters.json": "[\n {\n \"slug\": \"preamble\",\n \"title\": \"Introduction\",\n \"level\": 2,\n \"order\": 0\n },\n {\n \"slug\": \"1-the-four-connect-tools\",\n \"title\": \"1. The four connect tools\",\n \"level\": 2,\n \"order\": 1\n },\n {\n \"slug\": \"2-run-the-package-simulator\",\n \"title\": \"2. Run the package simulator\",\n \"level\": 2,\n \"order\": 2\n },\n {\n \"slug\": \"3-stub-and-live-execution\",\n \"title\": \"3. Stub and live execution\",\n \"level\": 2,\n \"order\": 3\n },\n {\n \"slug\": \"4-catalog-extension-overview\",\n \"title\": \"4. Catalog extension overview\",\n \"level\": 2,\n \"order\": 4\n }\n]",
299
+ "downloads/use-cases/orient-connectix.md": "# Orient on Connectix\n\n> **Use case id:** `orient-connectix`\n> **Goal:** Understand what Connectix is, the four curated operations, and the caller contract before writing any integration code.\n> **Audiences:** developers\n> **Tags:** orientation, getting-started\n\n## Reading path\n\n1. **Orient on Connectix** (developers) → chapters: `1-what-connectix-is`, `2-call-styles-and-auth`, `3-ownership-boundaries`\n\n## From: Orient on Connectix — 1. What Connectix is\n\nConnectix executes **curated provider actions** through one stable contract. Callers never learn\nwhere an action implementation came from — OpenConnector, an n8n node, Nango-derived native code,\nor Connectix-native code all look identical behind the same envelope.\n\nThe service exposes exactly four curated operations (never the full upstream provider catalog):\n\n| Operation | Purpose |\n|-----------|---------|\n| `connect.listProviders` | List curated providers |\n| `connect.searchActions` | Search curated actions |\n| `connect.getAction` | Fetch one action descriptor |\n| `connect.executeAction` | Run an action (stub or live) |\n\nThe runtime flow for every execution: validate caller → resolve binding → lease credential →\nrun action → observe in Memorix.\n\nKey packages:\n\n| Package | Role |\n|---------|------|\n| `@x12i/connectix-contracts` | Shared types and envelopes (`ConnectActionRequest`, `PipelineRequest`, error codes) |\n| `@x12i/connectix-client` | Typed HTTP client for the service |\n| `@x12i/connectix-tools` | The four operations as machine-usable LLM tool definitions + runners |\n| `@x12i/connectix-simulator` | Package simulator for local development (no service required) |\n| `@x12i/connectix-docs` | This knowledge package |\n\n## From: Orient on Connectix — 2. Call styles and auth\n\nEvery non-probe route requires two headers:\n\n```http\nAuthorization: Bearer <caller-token>\nx-connectix-caller-id: service:ai-skills\n```\n\nCaller identity always comes from headers. A `callerId` in the request body is overwritten by\nthe service. Public routes (no auth): `GET /health`, `GET /ready`, `GET /metadata`.\n\nThere are two equivalent call styles sharing one runtime:\n\n1. **Canonical execute** — `POST /v1/actions/execute` with a full `ConnectActionRequest`\n (contractVersion `\"1\"`, explicit `execution.mode` of `stub` or `live`).\n2. **Pipeline step** — `POST /pipeline` with `serviceId`, `serviceType` (one of the four\n operations), `input`, and optional `stub.enabled`. Preferred for Memorix Pipeline Services,\n the Status UI Try panel, and AI tools.\n\nDiscovery routes: `GET /v1/providers`, `GET /v1/actions/search?query=`, and\n`GET /v1/actions/:actionId`. Operation metadata (including example envelopes) is served by\n`GET /metadata` — UIs and tools must load catalogs from there, never hardcode them.\n\nFailures use stable error codes such as `ACTION_NOT_FOUND`, `ACTION_NOT_ALLOWED`,\n`CONNECTION_BINDING_NOT_FOUND`, `CREDENTIAL_NOT_AVAILABLE`, and\n`ACTION_IMPLEMENTATION_UNAVAILABLE`.\n\n## From: Orient on Connectix — 3. Ownership boundaries\n\nEach fact has exactly one owner. Violating these boundaries is the primary review blocker:\n\n| Fact | Owner |\n|------|-------|\n| Provider secrets and OAuth refresh | **Credorix** — never stored in Connectix or Memorix |\n| Connection bindings and execution records | **Memorix adapter** (in-memory stub today) |\n| Action implementations and provenance | **Connectix executor registry** |\n| Provider definitions (catalog source) | `vendor/open-connector` (pinned engine) |\n\nCallers send a `bindingRef`, never a credential. A binding points at a Credorix\n`credentialRef` plus allowlisted action patterns for one provider. The runtime enforces:\nbinding exists and is enabled → binding provider matches the action provider → the action id\nmatches the binding's allowed patterns → only then lease a credential (live mode only).\n\nExecution mode is always explicit. **Stub** returns the deterministic fixture published with the\naction and records `mode=stub` in Memorix; **live** leases a credential and calls the provider.\nEvery published action must ship a schema-valid stub fixture, which is what makes local and CI\ndevelopment safe by default.\n\n## Also see\n\n- **call-connect-tools** (`call-connect-tools`) — \n\n---\n\n_Generated use-case pack for agents and humans. See `agent-manifest.json` for discovery._\n",
300
+ "downloads/use-cases/call-connect-tools.md": "# Expose Connectix as AI tools\n\n> **Use case id:** `call-connect-tools`\n> **Goal:** Register the four connect tools from @x12i/connectix-tools in an LLM tool registry and run them against a live service or the simulator.\n> **Audiences:** developers\n> **Tags:** ai-tools, agents\n\n## Reading path\n\n1. **AI Tools and the Package Simulator** (developers) → chapters: `1-the-four-connect-tools`, `3-stub-and-live-execution`\n\n## From: AI Tools and the Package Simulator — 1. The four connect tools\n\n`@x12i/connectix-tools` publishes the four curated operations as machine-usable tool\ndefinitions with JSON Schema inputs and outputs:\n\n| Tool name | Operation |\n|-----------|-----------|\n| `connect_list_providers` | `connect.listProviders` |\n| `connect_search_actions` | `connect.searchActions` |\n| `connect_get_action` | `connect.getAction` |\n| `connect_execute_action` | `connect.executeAction` |\n\nRegister the definitions in your LLM tool registry, then route tool calls through a runner:\n\n```ts\nimport { CONNECT_TOOLS, createHttpConnectToolRunner } from \"@x12i/connectix-tools\";\n\nconst runner = createHttpConnectToolRunner({\n baseUrl: \"http://127.0.0.1:9400\",\n callerId: \"service:ai-skills\",\n callerToken: process.env.CONNECTIX_AI_SKILLS_TOKEN ?? \"change-me-caller\",\n});\n\nconst result = await runner.run({\n tool: \"connect_execute_action\",\n input: {\n actionId: \"example.echo\",\n bindingRef: \"demo-echo\",\n input: { message: \"hello\" },\n stubEnabled: true,\n },\n});\n```\n\nRules for tool callers:\n\n- The recommended flow is discover → describe → execute: search actions, fetch the descriptor,\n read its `inputSchema`, then execute.\n- Pass a `bindingRef`, never a credential. `stubEnabled: true` gives deterministic fixtures.\n- Never add executor-source branches (n8n, Nango, OpenConnector) to caller code. Provenance is\n internal to the service.\n\n## From: AI Tools and the Package Simulator — 3. Stub and live execution\n\nBoth call styles make execution mode explicit:\n\n- Pipeline style: `stub: { enabled: true }` → stub; omitted or `false` → live.\n- Canonical style: `execution: { mode: \"stub\" | \"live\" }`.\n\nStub execution validates binding policy exactly like live (unknown binding, provider mismatch,\nand disallowed patterns are still rejected), returns the deterministic fixture published with\nthe action, and records `mode=stub` in the Memorix execution record. It never leases a\ncredential.\n\nLive execution resolves the binding's `credentialRef` through Credorix (or the dev credential\nresolver when Credorix env is unset) and runs the registered executor.\n\nDevelopment default: stub everywhere — simulator, CI, and Status UI Try. Live is opt-in per\nrequest and per binding.\n\n## Also see\n\n- **run-package-simulator** (`run-package-simulator`) — \n\n---\n\n_Generated use-case pack for agents and humans. See `agent-manifest.json` for discovery._\n",
301
+ "downloads/use-cases/run-package-simulator.md": "# Develop against the package simulator\n\n> **Use case id:** `run-package-simulator`\n> **Goal:** Use @x12i/connectix-simulator for deterministic local development and tests without the service, Credorix, or providers.\n> **Audiences:** developers\n> **Tags:** simulator, testing\n\n## Reading path\n\n1. **AI Tools and the Package Simulator** (developers) → chapters: `2-run-the-package-simulator`\n\n## From: AI Tools and the Package Simulator — 2. Run the package simulator\n\n`@x12i/connectix-simulator` is a package simulator built on `@x12i/api-simulator`. It mirrors\nthe Connectix HTTP surface with deterministic fixtures so you can develop tools, callers, and\ntests without the service, Credorix, or providers:\n\n```ts\nimport { createConnectToolRunner } from \"@x12i/connectix-tools\";\nimport { createSimulatorPipelineCaller, createConnectixSimulator } from \"@x12i/connectix-simulator\";\n\n// In-process pipeline caller for tool runners:\nconst runner = createConnectToolRunner(createSimulatorPipelineCaller());\n\n// Or raw HTTP-shaped dispatch:\nconst { simulator } = createConnectixSimulator();\nawait simulator.dispatch({ method: \"GET\", path: \"/metadata\" });\n```\n\nSimulated fixtures mirror the service foundation: actions `example.echo`,\n`hackernews.get_item`, `hackernews.list_top_stories`, `github.issue.create` and bindings\n`demo-echo`, `demo-hackernews`, `demo-github`.\n\nAn optional HTTP entry (`startConnectixSimulatorServer`) binds `127.0.0.1:5524` in the\napi-simulator port zone (5520–5539) when a caller needs a real URL. Prefer in-process\n`dispatch()` for tests.\n\nThe simulator supports **stub mode only**. Live requests return\n`ACTION_IMPLEMENTATION_UNAVAILABLE` — switch `baseUrl` to the real service for live execution.\nBecause envelopes are identical, no caller code changes.\n\n## Also see\n\n- **call-connect-tools** (`call-connect-tools`) — \n\n---\n\n_Generated use-case pack for agents and humans. See `agent-manifest.json` for discovery._\n",
302
+ "downloads/use-cases/catalog-extension-overview.md": "# Understand catalog extension provenance\n\n> **Use case id:** `catalog-extension-overview`\n> **Goal:** Know how OpenConnector, n8n-node, and Nango-derived implementations reach the catalog while callers stay source-agnostic.\n> **Audiences:** developers\n> **Tags:** catalog, provenance\n\n## Reading path\n\n1. **AI Tools and the Package Simulator** (developers) → chapters: `4-catalog-extension-overview`\n\n## From: AI Tools and the Package Simulator — 4. Catalog extension overview\n\nThe catalog grows from three sources, all published behind the same caller contract:\n\n| Source kind | What it is |\n|-------------|------------|\n| `openconnector` | Curated actions executed by the pinned `vendor/open-connector` engine |\n| `n8n-node` | Selected n8n node resource/operations from an allowlisted, pinned package set |\n| `nango-derived` | Native Connectix/OpenConnector code adapted from offline Nango knowledge |\n| `connectix-native` | First-party executors (for example `example.echo`) |\n\nNon-negotiables:\n\n- Nango is **offline catalog intelligence only** — never a runtime dependency.\n- Executor selection happens in the executor registry by descriptor; callers never choose a\n backend.\n- Every published action carries provenance (`sourceId`, `sourceVersion`, `fingerprint`,\n license) which flows into Memorix execution records — but never secrets.\n- Offline tooling: `npm run n8n:catalog`, `npm run nango:catalog`, `npm run catalog:gaps`,\n `npm run catalog:review`, `npm run catalog:publish` (writes the reviewed publish list under\n `generated/catalog-candidates/`).\n\nFull design: `docs/Connectix-Catalog-Extension-Specification.md` in the Connectix repository.\n\n## Also see\n\n- **orient-connectix** (`orient-connectix`) — \n\n---\n\n_Generated use-case pack for agents and humans. See `agent-manifest.json` for discovery._\n"
303
+ };
304
+ //# sourceMappingURL=bundle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle.js","sourceRoot":"","sources":["../../src/generated/bundle.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ import { catalog, useCases, site, manifest, files } from "./generated/bundle.js";
2
+ /** Pre-wired Connectix knowledge SDK. Install as a **devDependency** only. */
3
+ export declare const connectixDocs: import("@x12i/docify-sdk").EbooksSdk;
4
+ export { catalog, useCases, site, manifest, files };
5
+ export default connectixDocs;
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAEjF,8EAA8E;AAC9E,eAAO,MAAM,aAAa,sCAMxB,CAAC;AAEH,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;AACpD,eAAe,aAAa,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,13 @@
1
+ import { createEbooksSdk } from "@x12i/docify-sdk";
2
+ import { catalog, useCases, site, manifest, files } from "./generated/bundle.js";
3
+ /** Pre-wired Connectix knowledge SDK. Install as a **devDependency** only. */
4
+ export const connectixDocs = createEbooksSdk({
5
+ catalog,
6
+ useCases,
7
+ site,
8
+ manifest,
9
+ files,
10
+ });
11
+ export { catalog, useCases, site, manifest, files };
12
+ export default connectixDocs;
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAEjF,8EAA8E;AAC9E,MAAM,CAAC,MAAM,aAAa,GAAG,eAAe,CAAC;IAC3C,OAAO;IACP,QAAQ;IACR,IAAI;IACJ,QAAQ;IACR,KAAK;CACN,CAAC,CAAC;AAEH,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;AACpD,eAAe,aAAa,CAAC"}
@@ -0,0 +1 @@
1
+ Connectix docs static site. Deploy this directory (dist/web) as a static root.