@sazito/client-sdk 1.1.0 → 1.1.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/README.md +12 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ This SDK is built for application developers who want a typed, framework-agnosti
|
|
|
12
12
|
## Package
|
|
13
13
|
|
|
14
14
|
- Name: `@sazito/client-sdk`
|
|
15
|
-
- Version: `1.0.
|
|
15
|
+
- Version: `1.0.0`
|
|
16
16
|
- License: `MIT`
|
|
17
17
|
|
|
18
18
|
## Requirements
|
|
@@ -366,10 +366,10 @@ Then open:
|
|
|
366
366
|
- `http://127.0.0.1:4173`
|
|
367
367
|
|
|
368
368
|
Files:
|
|
369
|
-
-
|
|
370
|
-
-
|
|
371
|
-
-
|
|
372
|
-
-
|
|
369
|
+
- `scripts/visual-docs-server.js`
|
|
370
|
+
- `scripts/visual-api-playground/public/index.html`
|
|
371
|
+
- `scripts/visual-api-playground/public/app.js`
|
|
372
|
+
- `scripts/visual-api-playground/public/styles.css`
|
|
373
373
|
|
|
374
374
|
## Development
|
|
375
375
|
|
|
@@ -385,7 +385,7 @@ yarn validate # typecheck + lint
|
|
|
385
385
|
|
|
386
386
|
## Fumadocs Documentation Site
|
|
387
387
|
|
|
388
|
-
SDK docs are implemented as a separate Fumadocs app in
|
|
388
|
+
SDK docs are implemented as a separate Fumadocs app in `docs/`.
|
|
389
389
|
|
|
390
390
|
Run docs locally from the repository root:
|
|
391
391
|
|
|
@@ -402,11 +402,16 @@ yarn docs:start
|
|
|
402
402
|
```
|
|
403
403
|
|
|
404
404
|
This docs app is tracked in GitHub, but it is not included in the published npm package.
|
|
405
|
-
Publishing is controlled by the root `files` list in
|
|
405
|
+
Publishing is controlled by the root `files` list in `package.json`, which only ships:
|
|
406
406
|
- `dist/`
|
|
407
407
|
- `README.md`
|
|
408
408
|
- `LICENSE`
|
|
409
409
|
|
|
410
|
+
Relevant docs routes:
|
|
411
|
+
- `app/docs/[[...slug]]` for the rendered docs pages
|
|
412
|
+
- `app/llms-docs/[[...slug]]` for markdown-friendly LLM exports (`/docs/*.mdx` rewrite target)
|
|
413
|
+
- `app/llms.txt` and `app/llms-full.txt` for index/full LLM text exports
|
|
414
|
+
|
|
410
415
|
Output formats:
|
|
411
416
|
- `dist/index.js` (CJS)
|
|
412
417
|
- `dist/index.esm.js` (ESM)
|
package/package.json
CHANGED