@cap-js/cds-types 0.1.0 → 0.3.0-beta.1
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/README.md +11 -0
- package/dist/cds-types.d.ts +2778 -0
- package/package.json +23 -8
- package/apis/cds.d.ts +0 -44
- package/apis/core.d.ts +0 -95
- package/apis/cqn.d.ts +0 -87
- package/apis/csn.d.ts +0 -117
- package/apis/env.d.ts +0 -22
- package/apis/events.d.ts +0 -105
- package/apis/internal/inference.d.ts +0 -32
- package/apis/linked.d.ts +0 -105
- package/apis/log.d.ts +0 -164
- package/apis/models.d.ts +0 -171
- package/apis/ql.d.ts +0 -327
- package/apis/server.d.ts +0 -143
- package/apis/services.d.ts +0 -414
- package/apis/test.d.ts +0 -87
- package/apis/utils.d.ts +0 -89
package/README.md
CHANGED
|
@@ -15,8 +15,19 @@ Find more information on the APIs in the [Node.js SDK documentation](https://cap
|
|
|
15
15
|
|
|
16
16
|
## Support, Feedback, Contributing
|
|
17
17
|
|
|
18
|
+
### Local Setup
|
|
19
|
+
|
|
20
|
+
After cloning, just run
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
npm run setup
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
which installs all dependencies.
|
|
27
|
+
|
|
18
28
|
This project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/cap-js/cds-types/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](CONTRIBUTING.md).
|
|
19
29
|
|
|
30
|
+
|
|
20
31
|
## Security / Disclosure
|
|
21
32
|
|
|
22
33
|
If you find any bug that may be a security problem, please follow our instructions at [in our security policy](https://github.com/SAP/.github/blob/main/SECURITY.md) on how to report it. Please do not create GitHub issues for security-related doubts or problems.
|