Unable to run type scripts

Hi Team,

Unable to run types with dependent files, Can you please help me run forcefully with liquibase

Unexpected error running Liquibase: Migration failed for changeset TYPES/CLAIM_QUERY_TYPE.sql::raw::includeAll:
Reason: liquibase.exception.DatabaseException: ORA-02303: cannot drop or replace a type with type or table dependents
[Failed SQL: (2303) CREATE OR REPLACE TYPE “CL_QUERY_TYPE” IS OBJECT
(
OV_NB_CUST_NAME varchar2(500),
OV_NB_STATUS varchar2(50),
OV_NB_STATUS_DESC varchar2(30),
OV_NB_EVENT_CODE varchar2(30),
CONSTRUCTOR FUNCTION CL_QUERY_TYPE RETURN SELF AS RESULT
);]

If you are using includeAll then Liquibase will execute the files in your directory in filename alphabetical order, so you need to manually sequence your files by filename in the proper sequence.