@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
31 lines • 797 B
TypeScript
/**
* @simplyhomes/sos-sdk
*
* TypeScript SDK for Simply Homes SoS API v4
*
* @example
* ```typescript
* import SimplyHomesSDK, { V4 } from '@simplyhomes/sos-sdk';
*
* const sdk = new SimplyHomesSDK({
* environment: 'production',
* authToken: 'Bearer your-token-here',
* organizationId: 'your-org-id'
* });
*
* // Use the SDK
* const transactions = await sdk.v4.transactions.list.all();
*
* // Use types
* const property: V4.SoSPropertyEntityBase = { ... };
* ```
*/
export { SimplyHomesSDK } from './client';
export type { ClientOptions } from './client';
import * as V4 from './generated';
export { V4 };
export * from './generated';
export * from './utils';
import { SimplyHomesSDK } from './client';
export default SimplyHomesSDK;
//# sourceMappingURL=index.d.ts.map