Fix nullability in javascript proxy types in abp built-in modules
Is there an existing issue for this?
- [x] I have searched the existing issues
Is your feature request related to a problem? Please describe the problem.
Since we have rolled out https://github.com/abpframework/abp/pull/22120, all (well, most) user-generated proxies now have nullabilities correctly reflect their backend counterparts. However in abp's built-in modules, some types still have incorrect nullability. E.g. EntityDto<TKey> in the @abp/ng.core package:
export declare class EntityDto<TKey = string> {
id?: TKey; // should not be nullable
constructor(initialValues?: Partial<EntityDto<TKey>>);
}
Describe the solution you'd like
Update these types with correct nullability.
Additional context
No response
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I think this worths a bump...
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I am closing this since it is duplicate of https://github.com/abpframework/abp/issues/22132
@sumeyyeKurtulus They are not exactly the same issue, although it is reasonable to kill both birds with the same stone.
That is why I closed it, we can refer to this on the other issue either.