gtfs-realtime-bindings 1.0.0 → 1.1.0
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 +1 -1
- package/UPDATING.md +1 -0
- package/gtfs-realtime.d.ts +2250 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/js/gtfs-realtime-bindings)
|
|
4
4
|
|
|
5
|
-
Provides JavaScript classes generated from the
|
|
5
|
+
Provides JavaScript classes and their associated types generated from the
|
|
6
6
|
[GTFS-realtime](https://github.com/google/transit/tree/master/gtfs-realtime) Protocol
|
|
7
7
|
Buffer specification. These classes will allow you to parse a binary Protocol
|
|
8
8
|
Buffer GTFS-realtime data feed into JavaScript objects.
|
package/UPDATING.md
CHANGED
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
# -it to make sure docker run can be killed with ctrl-c
|
|
24
24
|
# -t uses TTY, which causes linux to include carriage returns, which are stripped using tr
|
|
25
25
|
docker run -it --rm gtfs-nodejs cat /lib/gtfs-realtime.js | tr -d '\r' > nodejs/gtfs-realtime.js
|
|
26
|
+
docker run -it --rm gtfs-nodejs cat /lib/gtfs-realtime.d.ts | tr -d '\r' > nodejs/gtfs-realtime.d.ts
|
|
26
27
|
```
|
|
27
28
|
|
|
28
29
|
1. Add the license header back to the generated source file.
|