Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: prevent importing the complete library implicitly, force import…
… types explicitly BREAKING CHANGE: Any imports from types/all should be modified to explicitly import the relevant types. Before: import { KalturaPermissionFilter, UserLoginByLoginIdAction } from 'kaltura-typescript-client/types/all'; After: import { KalturaPermissionFilter } from 'kaltura-typescript-client/types/KalturaPermissionFilter'; import { UserLoginByLoginIdAction } from 'kaltura-typescript-client/types/UserLoginByLoginIdAction';
- Loading branch information