@bitstack/ng-query-codegen-openapi 0.0.31-alpha.5 → 0.0.31-alpha.6

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
@@ -96,7 +96,7 @@ ${u}}`}}else n.additionalProperties?r=`Record<string, ${n.additionalProperties==
96
96
  * ${i.summary}
97
97
  */
98
98
  ${i.operationName}LazyQuery(): {
99
- trigger: (${i.isVoidArg?"":`args: IRestFulEndpointsQueryReturn<${i.argTypeName}>, `}options?: { skipCache?: boolean }) => Observable<${i.responseTypeName}>
99
+ trigger: (args: IRestFulEndpointsQueryReturn<${i.argTypeName}>, options?: { skipCache?: boolean }) => Observable<${i.responseTypeName}>
100
100
  } {
101
101
  return {
102
102
  trigger: (${i.isVoidArg?"":"args, "}options = {}) => {
@@ -107,7 +107,7 @@ ${u}}`}}else n.additionalProperties?r=`Record<string, ${n.additionalProperties==
107
107
  return cachedResult;
108
108
  }
109
109
  }
110
- return this.apiService.${i.operationName}('args');
110
+ return this.apiService.${i.operationName}(args);
111
111
  }
112
112
  };
113
113
  }`).join("");return`/* eslint-disable */