@fatehan/tsrp 1.0.5 → 1.0.6

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.
Files changed (33) hide show
  1. package/dist/fatehan/areas/area.d.ts +33 -7
  2. package/dist/fatehan/areas/area.d.ts.map +1 -1
  3. package/dist/fatehan/areas/area.js +444 -35
  4. package/dist/fatehan/models/fusion.d.ts +14 -1
  5. package/dist/fatehan/models/fusion.d.ts.map +1 -1
  6. package/dist/fatehan/models/fusion.js +186 -2
  7. package/dist/fatehan/models/models.d.ts +2 -1
  8. package/dist/fatehan/models/models.d.ts.map +1 -1
  9. package/dist/fatehan/models/models.js +18 -2
  10. package/dist/fatehan/models/operation.d.ts +1 -1
  11. package/dist/fatehan/models/operation.d.ts.map +1 -1
  12. package/dist/fatehan/models/operation.js +1 -1
  13. package/dist/fatehan/notifies/notify.d.ts +1 -1
  14. package/dist/fatehan/notifies/notify.d.ts.map +1 -1
  15. package/dist/fatehan/notifies/notify.js +1 -1
  16. package/dist/fatehan/packets/dataModel.d.ts +77 -8
  17. package/dist/fatehan/packets/dataModel.d.ts.map +1 -1
  18. package/dist/fatehan/packets/dataModel.js +568 -42
  19. package/dist/fatehan/packets/messages.d.ts +1 -1
  20. package/dist/fatehan/packets/messages.d.ts.map +1 -1
  21. package/dist/fatehan/packets/messages.js +1 -1
  22. package/dist/fatehan/reports/report.d.ts +17 -1
  23. package/dist/fatehan/reports/report.d.ts.map +1 -1
  24. package/dist/fatehan/reports/report.js +232 -3
  25. package/dist/fatehan/trips/trip.d.ts +1 -1
  26. package/dist/fatehan/trips/trip.d.ts.map +1 -1
  27. package/dist/fatehan/trips/trip.js +1 -1
  28. package/dist/index.d.ts +2 -1
  29. package/dist/index.d.ts.map +1 -1
  30. package/dist/index.js +15 -0
  31. package/dist/index.test.js +12 -1
  32. package/package.json +2 -2
  33. package/readme.md +6 -3
package/readme.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # WSTS - Fatehan TypeScript Report Service
2
2
 
3
- ### Without GRPC
3
+ ## Without GRPC
4
4
 
5
5
  ```cmd
6
6
  protoc \
@@ -12,7 +12,7 @@ protoc \
12
12
  ../protocols/**/*.proto
13
13
  ```
14
14
 
15
- ### GRPC Including
15
+ ## GRPC Including
16
16
 
17
17
  ```cmd
18
18
  protoc \
@@ -25,11 +25,14 @@ protoc \
25
25
  ```
26
26
 
27
27
  ### Build
28
+
28
29
  ```cmd
29
30
  npm run build
30
31
  ```
32
+
31
33
  ### Deploy
34
+
32
35
  ```cmd
33
36
  npm version patch
34
37
  npm publish
35
- ```
38
+ ```