The TypeScript SDK for the Aignostics Platform.
npm install @aignostics/sdkimport { PlatformSDKHttp } from '@aignostics/sdk';
// Create SDK instance with a token provider
const sdk = new PlatformSDKHttp({
baseURL: 'https://api.aignostics.com',
tokenProvider: () => 'your-access-token-here',
});
// Use the SDK
const applications = await sdk.listApplications();
console.log(applications);For detailed API documentation, see the main project documentation.
Authentication utilities are not included in this SDK. The SDK focuses solely on API communication and requires you to provide your own token management.