mobility-toolbox-js 2.1.0 → 2.2.0-beta.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mobility-toolbox-js",
3
3
  "license": "MIT",
4
4
  "description": "Toolbox for JavaScript applications in the domains of mobility and logistics.",
5
- "version": "2.1.0",
5
+ "version": "2.2.0-beta.0",
6
6
  "homepage": "https://mobility-toolbox-js.geops.io/",
7
7
  "module": "index.js",
8
8
  "exports": {
@@ -109,7 +109,7 @@
109
109
  "prepare": "is-ci || husky install",
110
110
  "publish:beta": "HUSKY=0 yarn release -- --prerelease beta --skip.changelog && git push origin HEAD && yarn run build && cd build && HUSKY=0 yarn publish --tag beta && git push --tags ",
111
111
  "publish:beta:dryrun": "yarn release -- --prerelease beta --dry-run --skip.changelog",
112
- "publish:public": "yarn release --skip.changelog && git push origin HEAD && yarn run build && cd build && HUSKY=0 yarn publish && git push --tags ",
112
+ "publish:public": "yarn release && git push origin HEAD && yarn run build && cd build && HUSKY=0 yarn publish && git push --tags ",
113
113
  "publish:public:dryrun": "yarn release --dry-run",
114
114
  "release": "standard-version",
115
115
  "start": "yarn doc && cd doc && yarn start",
package/types/index.d.ts CHANGED
@@ -9,3 +9,5 @@ export type RoutingResponse = Routing['/']['get']['responses']['200']['schema'];
9
9
 
10
10
  export type StopsParameters = Stops['/']['get']['parameters']['query'];
11
11
  export type StopsResponse = Stops['/']['get']['responses']['200']['schema'];
12
+
13
+ export type RealtimeVersion = '1' | '2';