diff --git a/src/types.ts b/src/types.ts index f060ef14..30032f7d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -226,22 +226,22 @@ export type ApiPlatformAdminDataProviderTypeParams = T extends typeof GET_LIST ? ApiPlatformAdminGetListParams : T extends typeof GET_ONE - ? ApiPlatformAdminGetOneParams - : T extends typeof GET_MANY - ? ApiPlatformAdminGetManyParams - : T extends typeof GET_MANY_REFERENCE - ? ApiPlatformAdminGetManyReferenceParams - : T extends typeof UPDATE - ? ApiPlatformAdminUpdateParams - : T extends typeof UPDATE_MANY - ? ApiPlatformAdminUpdateManyParams - : T extends typeof CREATE - ? ApiPlatformAdminCreateParams - : T extends typeof DELETE - ? ApiPlatformAdminDeleteParams - : T extends typeof DELETE_MANY - ? ApiPlatformAdminDeleteManyParams - : never; + ? ApiPlatformAdminGetOneParams + : T extends typeof GET_MANY + ? ApiPlatformAdminGetManyParams + : T extends typeof GET_MANY_REFERENCE + ? ApiPlatformAdminGetManyReferenceParams + : T extends typeof UPDATE + ? ApiPlatformAdminUpdateParams + : T extends typeof UPDATE_MANY + ? ApiPlatformAdminUpdateManyParams + : T extends typeof CREATE + ? ApiPlatformAdminCreateParams + : T extends typeof DELETE + ? ApiPlatformAdminDeleteParams + : T extends typeof DELETE_MANY + ? ApiPlatformAdminDeleteManyParams + : never; export interface ApiPlatformAdminDataProviderFactoryParams { entrypoint: string;