@navios/react-query 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -318,27 +318,6 @@ export interface ClientFromEndpointMethods<
318
318
  ? MutationHelpers<Config['url'], Result>
319
319
  : {}) &
320
320
  (Config extends EndpointOptions
321
- ? EndpointHelper<
322
- {
323
- method: Config['method']
324
- url: Config['url']
325
- responseSchema: Config['responseSchema']
326
- querySchema: Config['querySchema']
327
- requestSchema: Config['requestSchema']
328
- errorSchema: Config['errorSchema']
329
- urlParamsSchema: Config['urlParamsSchema']
330
- },
331
- UseDiscriminator
332
- >
333
- : StreamHelper<
334
- {
335
- method: Config['method']
336
- url: Config['url']
337
- querySchema: Config['querySchema']
338
- requestSchema: Config['requestSchema']
339
- errorSchema: Config['errorSchema']
340
- urlParamsSchema: Config['urlParamsSchema']
341
- },
342
- UseDiscriminator
343
- >)
321
+ ? EndpointHelper<Config, UseDiscriminator>
322
+ : StreamHelper<Config, UseDiscriminator>)
344
323
  }