trm-registry-types 1.0.3 → 1.1.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/LICENSE +2 -2
- package/README.md +16 -1
- package/dist/response/View.d.ts +1 -0
- package/package.json +3 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2023 RegestaItalia
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,11 +1,26 @@
|
|
|
1
1
|
# TRM Registry Types
|
|
2
2
|
|
|
3
|
+
[](https://github.com/RegestaItalia/trm-docs/blob/main/CODE_OF_CONDUCT.md)
|
|
4
|
+

|
|
5
|
+
|
|
3
6
|
[trm-registry-types](https://www.npmjs.com/package/trm-registry-types) is a Node package that contains the type declaration of all TRM Registry REST APIs requests and responses.
|
|
4
7
|
|
|
8
|
+
# Documentation <!-- {docsify-remove} -->
|
|
9
|
+
|
|
5
10
|
The documentation of TRM Registry Types is only related to the request and response objects.
|
|
6
11
|
|
|
7
12
|
The API documentation (and object usage) can be found [here](https://docs.trmregistry.com).
|
|
8
13
|
|
|
9
14
|
<!-- START TABLE_OF_CONTENTS.md -->
|
|
10
15
|
- [Request types](docs/requests.md)
|
|
11
|
-
- [Response types](docs/responses.md)<!-- END TABLE_OF_CONTENTS.md -->
|
|
16
|
+
- [Response types](docs/responses.md)<!-- END TABLE_OF_CONTENTS.md -->
|
|
17
|
+
|
|
18
|
+
# Contributing <!-- {docsify-remove} -->
|
|
19
|
+
|
|
20
|
+
Like every other TRM open-soruce projects, contributions are always welcomed ❤️.
|
|
21
|
+
|
|
22
|
+
Make sure to open an issue first.
|
|
23
|
+
|
|
24
|
+
Contributions will be merged upon approval.
|
|
25
|
+
|
|
26
|
+
[Click here](https://docs.trmregistry.com/#/CONTRIBUTING) for the full list of TRM contribution guidelines.
|
package/dist/response/View.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trm-registry-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "TRM Registry Types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"/dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "tsc"
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"prepublishOnly": "npm run build"
|
|
12
13
|
},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"trm",
|