@praxium/sdk 0.2.11 → 0.2.12

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 +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,9 +14,9 @@ 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
17
+ baseUrl: process.env.PRAXIUM_API_URL!, // e.g. 'https://platform.praxium.nl'
18
+ apiKey: process.env.PRAXIUM_API_KEY!, // HMAC-signed key: 'hmac_v1_ijfysio_1234567890_abc...'
19
+ tenantSlug: 'ijfysio', // must match the slug in the API key
20
20
  locale: 'nl', // 'nl' (Dutch) or 'en' (English)
21
21
  })
22
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxium/sdk",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "Official TypeScript SDK for the Praxium platform API",
5
5
  "type": "module",
6
6
  "exports": {