Hello,
I have set on my LB server 3 files for diffenrent environments:
model-config.json with:
"User": { "dataSource": "db", "public": true },
model-config.development.json:
"User": { "dataSource": "db", "public": true },
model-config.production.json
"User": { "dataSource": "db", "public": false },
and I have a class that extends User (Customer).
When generating the SDK, all that links to USER is not generated, preventing the app to compile except import { UserApi } from './services/custom/User'; .
./services/customer/User does not exists.
What type of issue are you creating?
What version of this module are you using?
Write other if any:
Hello, I have set on my LB server 3 files for diffenrent environments: model-config.json with:
"User": { "dataSource": "db", "public": true },
model-config.development.json:"User": { "dataSource": "db", "public": true },
model-config.production.json"User": { "dataSource": "db", "public": false },
and I have a class that extends User (Customer).When generating the SDK, all that links to USER is not generated, preventing the app to compile except
import { UserApi } from './services/custom/User';
. ./services/customer/User does not exists.