@bitstack/ng-query-codegen-openapi 0.0.38-alpha.2 → 0.0.38-alpha.3

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.
package/lib/bin/cli.mjs CHANGED
@@ -69,7 +69,7 @@ ${u}}`}}else r.additionalProperties?n=`Record<string, ${r.additionalProperties==
69
69
  /**
70
70
  * ${i.summary}
71
71
  */
72
- ${i.operationName}Query(args: IRestFulEndpointsQueryReturn<${i.argTypeName}>, queryOptions?: QueryOptions): Observable<QueryState<${i.responseTypeName}>> {
72
+ ${i.operationName}Query(args: IRestFulEndpointsQueryReturn<${i.argTypeName}>, queryOptions?: BaseQueryOptions): Observable<QueryState<${i.responseTypeName}>> {
73
73
  if (queryOptions?.skip) {
74
74
  return this.ntkQuery.skipQuery<${i.responseTypeName}>();
75
75
  }
@@ -111,7 +111,7 @@ ${u}}`}}else r.additionalProperties?n=`Record<string, ${r.additionalProperties==
111
111
  import {Injectable, inject} from '@angular/core';
112
112
  import {Observable} from 'rxjs';
113
113
  import {HttpErrorResponse} from '@angular/common/http';
114
- import {NtkQueryService, MutationState, QueryState, QueryOptions, MutationResponse, LazyQueryResult, LazyQueryTriggerOptions} from '@core/ntk-query';
114
+ import {NtkQueryService, MutationState, QueryState, BaseQueryOptions, MutationResponse, LazyQueryResult, LazyQueryTriggerOptions} from '@core/ntk-query';
115
115
  import {ECacheTagTypes} from '../tagTypes';
116
116
  import {${s}} from './enhanceEndpoints';
117
117
  import {IRestFulEndpointsQueryReturn, RequestOptions} from '../common-types';