mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
25 lines
387 B
Bash
25 lines
387 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
cd $(realpath $(dirname $0))
|
||
|
|
||
|
src="transport-apis/data"
|
||
|
|
||
|
query="{\
|
||
|
auth: {
|
||
|
type: \"AID\",
|
||
|
aid: .options.auth.aid?, \
|
||
|
}, \
|
||
|
salt: .options.checksumSalt, \
|
||
|
client: {
|
||
|
type: .options.client.type?, \
|
||
|
id: .options.client.id?, \
|
||
|
v: .options.client.v?, \
|
||
|
name: .options.client.name?, \
|
||
|
}, \
|
||
|
endpoint: .options.endpoint, \
|
||
|
ext: .options.ext, \
|
||
|
ver: .options.version, \
|
||
|
}"
|
||
|
|