@sazito/client-sdk 1.1.0 → 1.1.3

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 (2) hide show
  1. package/README.md +12 -7
  2. 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.1`
15
+ - Version: see `package.json` / npm registry
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
- - `/Users/rezamahmoudi/sazito-sdk/scripts/visual-docs-server.js`
370
- - `/Users/rezamahmoudi/sazito-sdk/scripts/visual-api-playground/public/index.html`
371
- - `/Users/rezamahmoudi/sazito-sdk/scripts/visual-api-playground/public/app.js`
372
- - `/Users/rezamahmoudi/sazito-sdk/scripts/visual-api-playground/public/styles.css`
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 `/Users/rezamahmoudi/sazito-sdk/docs`.
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 `/Users/rezamahmoudi/sazito-sdk/package.json`, which only ships:
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sazito/client-sdk",
3
- "version": "1.1.0",
3
+ "version": "1.1.3",
4
4
  "description": "Official JavaScript/TypeScript SDK for Sazito e-commerce platform - Client Edition",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",