@praxium/sdk 0.2.11 → 0.2.13

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,10 +14,10 @@ npm install @praxium/sdk
14
14
  import { createTenantClient } from '@praxium/sdk'
15
15
 
16
16
  const client = createTenantClient({
17
- baseUrl: process.env.PRAXIUM_API_URL!, // e.g. 'https://your-practice.praxium.nl'
18
- apiKey: process.env.PRAXIUM_API_KEY!, // HMAC-signed key: 'hmac_v1_mytenant_1234567890_abc...'
19
- tenantSlug: 'mytenant', // must match the slug in the API key
20
- locale: 'nl', // 'nl' (Dutch) or 'en' (English)
17
+ baseUrl: process.env.PRAXIUM_API_URL!, // 'https://platform.praxium.nl'
18
+ apiKey: process.env.PRAXIUM_API_KEY!, // HMAC key: 'hmac_v1_mypractice_1234567890_abc...'
19
+ tenantSlug: 'mypractice', // must match the slug in the API key
20
+ locale: 'en', // 'en' (English) or 'nl' (Dutch)
21
21
  })
22
22
 
23
23
  // Returns data directly — throws PraxiumError on failure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxium/sdk",
3
- "version": "0.2.11",
3
+ "version": "0.2.13",
4
4
  "description": "Official TypeScript SDK for the Praxium platform API",
5
5
  "type": "module",
6
6
  "exports": {