# IMPORTANT: DO NOT IMPORT DIRECTLY FROM THIS DIRECTORY

This directory contains compiled internal modules that should not be imported directly.
Please use the main package entry point instead:

```js
// ❌ DO NOT DO THIS
import { Configuration } from '@meeting-baas/sdk/dist/baas/configuration';

// ✅ DO THIS INSTEAD
import { BaasClient } from '@meeting-baas/sdk';
```

If you need specific types from this package, they should be re-exported from the main entry point.
