mobx-tanstack-query-api 0.0.94 → 0.0.96

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.
@@ -33,10 +33,10 @@ export const dataContractTmpl = async ({ contract, configuration, addExportKeywo
33
33
  let result = '';
34
34
  let jsdoc = '';
35
35
  if (contract.description) {
36
- jsdoc = `/**\n * ${formatDescription(contract.description, true)}\n */`;
36
+ jsdoc = `/**\n * ${formatDescription(contract.description, true)}\n */\n`;
37
37
  }
38
38
  if (jsdoc) {
39
- result += jsdoc + '\n\n';
39
+ result += jsdoc;
40
40
  }
41
41
  const templateFn = dataContractTemplates[contract.typeIdentifier] ||
42
42
  dataContractTemplates.type;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobx-tanstack-query-api",
3
- "version": "0.0.94",
3
+ "version": "0.0.96",
4
4
  "keywords": [],
5
5
  "author": "js2me",
6
6
  "license": "MIT",
@@ -24,7 +24,7 @@
24
24
  "@types/lodash-es": "^4.17.12",
25
25
  "http-status-code-types": "^0.0.2",
26
26
  "mobx-tanstack-query": "^5.3.1",
27
- "swagger-typescript-api": "13.2.3",
27
+ "swagger-typescript-api": "13.2.4",
28
28
  "ts-morph": "^26.0.0",
29
29
  "yummies": "^4.0.0"
30
30
  },