@cap-js/cds-typer
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -7,3 +7,3 @@ # Change Log | ||
## Version 0.6.1 - TBD | ||
## Version 0.6.2 - TBD | ||
@@ -15,4 +15,11 @@ ### Changed | ||
### Fixed | ||
## Version 0.6.1 - 2023-08-10 | ||
### Changed | ||
### Added | ||
### Fixed | ||
- Removed a warning about circular imports | ||
## Version 0.6.0 - 2023-08-07 | ||
@@ -19,0 +26,0 @@ |
@@ -47,3 +47,3 @@ #!/usr/bin/env node | ||
const hint = () => console.log('Missing or invalid parameter(s). Call with --help for more details.') | ||
const hint = () => 'Missing or invalid parameter(s). Call with --help for more details.' | ||
const indent = (s, indentation) => s.split(EOL).map(line => `${indentation}${line}`).join(EOL) | ||
@@ -50,0 +50,0 @@ |
@@ -6,3 +6,2 @@ 'use strict' | ||
const { deepRequire, createToManyAssociation, createToOneAssociation, createArrayOf, createCompositionOfMany, createCompositionOfOne } = require('./wrappers') | ||
const { Visitor } = require("../visitor") | ||
const { StructuredInlineDeclarationResolver } = require("./inline") | ||
@@ -12,2 +11,3 @@ | ||
/** @typedef {{ definitions?: Object<string, EntityCSN> }} CSN */ | ||
/** @typedef {import('../visitor').Visitor} Visitor */ | ||
@@ -14,0 +14,0 @@ /** |
{ | ||
"name": "@cap-js/cds-typer", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "Generates .ts files for a CDS model to receive code completion in VS Code", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
98934