Installation
npm install @scalekit-sdk/nodenpm install @scalekit-sdk/nodeimport { ScalekitClient } from '@scalekit-sdk/node';
const scalekit = new ScalekitClient( process.env.SCALEKIT_ENVIRONMENT_URL, process.env.SCALEKIT_CLIENT_ID, process.env.SCALEKIT_CLIENT_SECRET);
export default scalekit;Bump axios from 1.13.4 to 1.13.5 by @dependabot[bot] in #142
Using speckit: verify accuracy of snippets + make hyperlinks non-relative to base URL by @saif-at-scalekit in #145
Bump qs from 6.14.1 to 6.14.2 by @dependabot[bot] in #144
Bump axios and qs versions by @dhaneshbs in #147
Full Changelog: v2.2.0...v2.2.2
Full Changelog: v2.1.9...v2.2.0
Added optional type filtering to listDomains() method. Filter domains by ALLOWED_EMAIL_DOMAIN or ORGANIZATION_DOMAIN type.
API:
// List all domains (no filter)
await client.domain.listDomains('org_123456');
// Filter by type
await client.domain.listDomains('org_123456', {
domainType: DomainType.ALLOWED_EMAIL_DOMAIN // or 'ORGANIZATION_DOMAIN'
});Highlights:
Added:
listDomains()resolveDomainType() helper methodImproved:
No migration needed - existing code works unchanged. The domainType parameter is optional.
Documentation: Domain API Docs
Full Changelog: v2.1.8...v2.1.9
Full Changelog: v2.1.7...v2.1.8
Full Changelog: v2.1.6...v2.1.7
*Generate proto files to support given_name and family_name in user object in #126
Full Changelog: v2.1.5...v2.1.6
Full Changelog: v2.1.0...v2.1.1