@chargetrip/types 1.44.0 → 1.45.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/CHANGELOG.md +12 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +187 -1
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +187 -1
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +291 -60
- package/graphql.schema.json +1558 -238
- package/package.json +1 -1
- package/src/graphql.ts +301 -60
package/graphql.schema.json
CHANGED
|
@@ -328,6 +328,130 @@
|
|
|
328
328
|
],
|
|
329
329
|
"possibleTypes": null
|
|
330
330
|
},
|
|
331
|
+
{
|
|
332
|
+
"kind": "OBJECT",
|
|
333
|
+
"name": "AlternativeStationRadius",
|
|
334
|
+
"description": null,
|
|
335
|
+
"fields": [
|
|
336
|
+
{
|
|
337
|
+
"name": "value",
|
|
338
|
+
"description": "Value of the alternative station radius.",
|
|
339
|
+
"args": [],
|
|
340
|
+
"type": {
|
|
341
|
+
"kind": "NON_NULL",
|
|
342
|
+
"name": null,
|
|
343
|
+
"ofType": {
|
|
344
|
+
"kind": "SCALAR",
|
|
345
|
+
"name": "Float",
|
|
346
|
+
"ofType": null
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"isDeprecated": false,
|
|
350
|
+
"deprecationReason": null
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "type",
|
|
354
|
+
"description": "Type of the alternative station radius.",
|
|
355
|
+
"args": [],
|
|
356
|
+
"type": {
|
|
357
|
+
"kind": "NON_NULL",
|
|
358
|
+
"name": null,
|
|
359
|
+
"ofType": {
|
|
360
|
+
"kind": "ENUM",
|
|
361
|
+
"name": "DistanceUnit",
|
|
362
|
+
"ofType": null
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"isDeprecated": false,
|
|
366
|
+
"deprecationReason": null
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "source",
|
|
370
|
+
"description": "Source of inputted data.",
|
|
371
|
+
"args": [],
|
|
372
|
+
"type": {
|
|
373
|
+
"kind": "NON_NULL",
|
|
374
|
+
"name": null,
|
|
375
|
+
"ofType": {
|
|
376
|
+
"kind": "ENUM",
|
|
377
|
+
"name": "TelemetryInputSource",
|
|
378
|
+
"ofType": null
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"isDeprecated": false,
|
|
382
|
+
"deprecationReason": null
|
|
383
|
+
}
|
|
384
|
+
],
|
|
385
|
+
"inputFields": null,
|
|
386
|
+
"interfaces": [],
|
|
387
|
+
"enumValues": null,
|
|
388
|
+
"possibleTypes": null
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"kind": "SCALAR",
|
|
392
|
+
"name": "Float",
|
|
393
|
+
"description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
|
|
394
|
+
"fields": null,
|
|
395
|
+
"inputFields": null,
|
|
396
|
+
"interfaces": null,
|
|
397
|
+
"enumValues": null,
|
|
398
|
+
"possibleTypes": null
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"kind": "INPUT_OBJECT",
|
|
402
|
+
"name": "AlternativeStationRadiusInput",
|
|
403
|
+
"description": null,
|
|
404
|
+
"fields": null,
|
|
405
|
+
"inputFields": [
|
|
406
|
+
{
|
|
407
|
+
"name": "value",
|
|
408
|
+
"description": "Value of the alternative station radius.",
|
|
409
|
+
"type": {
|
|
410
|
+
"kind": "NON_NULL",
|
|
411
|
+
"name": null,
|
|
412
|
+
"ofType": {
|
|
413
|
+
"kind": "SCALAR",
|
|
414
|
+
"name": "Float",
|
|
415
|
+
"ofType": null
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"defaultValue": null,
|
|
419
|
+
"isDeprecated": false,
|
|
420
|
+
"deprecationReason": null
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "type",
|
|
424
|
+
"description": "Type of the alternative station radius.",
|
|
425
|
+
"type": {
|
|
426
|
+
"kind": "NON_NULL",
|
|
427
|
+
"name": null,
|
|
428
|
+
"ofType": {
|
|
429
|
+
"kind": "ENUM",
|
|
430
|
+
"name": "DistanceUnit",
|
|
431
|
+
"ofType": null
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"defaultValue": null,
|
|
435
|
+
"isDeprecated": false,
|
|
436
|
+
"deprecationReason": null
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "source",
|
|
440
|
+
"description": "Source of inputted data.",
|
|
441
|
+
"type": {
|
|
442
|
+
"kind": "ENUM",
|
|
443
|
+
"name": "TelemetryInputSource",
|
|
444
|
+
"ofType": null
|
|
445
|
+
},
|
|
446
|
+
"defaultValue": "manual",
|
|
447
|
+
"isDeprecated": false,
|
|
448
|
+
"deprecationReason": null
|
|
449
|
+
}
|
|
450
|
+
],
|
|
451
|
+
"interfaces": null,
|
|
452
|
+
"enumValues": null,
|
|
453
|
+
"possibleTypes": null
|
|
454
|
+
},
|
|
331
455
|
{
|
|
332
456
|
"kind": "ENUM",
|
|
333
457
|
"name": "Amenities",
|
|
@@ -556,16 +680,6 @@
|
|
|
556
680
|
"enumValues": null,
|
|
557
681
|
"possibleTypes": null
|
|
558
682
|
},
|
|
559
|
-
{
|
|
560
|
-
"kind": "SCALAR",
|
|
561
|
-
"name": "Float",
|
|
562
|
-
"description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
|
|
563
|
-
"fields": null,
|
|
564
|
-
"inputFields": null,
|
|
565
|
-
"interfaces": null,
|
|
566
|
-
"enumValues": null,
|
|
567
|
-
"possibleTypes": null
|
|
568
|
-
},
|
|
569
683
|
{
|
|
570
684
|
"kind": "SCALAR",
|
|
571
685
|
"name": "Int",
|
|
@@ -900,13 +1014,9 @@
|
|
|
900
1014
|
"name": "source",
|
|
901
1015
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
902
1016
|
"type": {
|
|
903
|
-
"kind": "
|
|
904
|
-
"name":
|
|
905
|
-
"ofType":
|
|
906
|
-
"kind": "ENUM",
|
|
907
|
-
"name": "TelemetryInputSource",
|
|
908
|
-
"ofType": null
|
|
909
|
-
}
|
|
1017
|
+
"kind": "ENUM",
|
|
1018
|
+
"name": "TelemetryInputSource",
|
|
1019
|
+
"ofType": null
|
|
910
1020
|
},
|
|
911
1021
|
"defaultValue": "manual",
|
|
912
1022
|
"isDeprecated": false,
|
|
@@ -6620,13 +6730,9 @@
|
|
|
6620
6730
|
"name": "source",
|
|
6621
6731
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
6622
6732
|
"type": {
|
|
6623
|
-
"kind": "
|
|
6624
|
-
"name":
|
|
6625
|
-
"ofType":
|
|
6626
|
-
"kind": "ENUM",
|
|
6627
|
-
"name": "TelemetryInputSource",
|
|
6628
|
-
"ofType": null
|
|
6629
|
-
}
|
|
6733
|
+
"kind": "ENUM",
|
|
6734
|
+
"name": "TelemetryInputSource",
|
|
6735
|
+
"ofType": null
|
|
6630
6736
|
},
|
|
6631
6737
|
"defaultValue": "manual",
|
|
6632
6738
|
"isDeprecated": false,
|
|
@@ -10871,11 +10977,11 @@
|
|
|
10871
10977
|
},
|
|
10872
10978
|
{
|
|
10873
10979
|
"name": "alternative_station_radius",
|
|
10874
|
-
"description": "Alternative stations along a route within a specified radius
|
|
10980
|
+
"description": "Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit.",
|
|
10875
10981
|
"args": [],
|
|
10876
10982
|
"type": {
|
|
10877
|
-
"kind": "
|
|
10878
|
-
"name": "
|
|
10983
|
+
"kind": "OBJECT",
|
|
10984
|
+
"name": "AlternativeStationRadius",
|
|
10879
10985
|
"ofType": null
|
|
10880
10986
|
},
|
|
10881
10987
|
"isDeprecated": false,
|
|
@@ -10999,10 +11105,10 @@
|
|
|
10999
11105
|
},
|
|
11000
11106
|
{
|
|
11001
11107
|
"name": "alternative_station_radius",
|
|
11002
|
-
"description": "Alternative stations along a route within a specified radius
|
|
11108
|
+
"description": "Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit.",
|
|
11003
11109
|
"type": {
|
|
11004
|
-
"kind": "
|
|
11005
|
-
"name": "
|
|
11110
|
+
"kind": "INPUT_OBJECT",
|
|
11111
|
+
"name": "AlternativeStationRadiusInput",
|
|
11006
11112
|
"ofType": null
|
|
11007
11113
|
},
|
|
11008
11114
|
"defaultValue": null,
|
|
@@ -11028,30 +11134,1115 @@
|
|
|
11028
11134
|
},
|
|
11029
11135
|
{
|
|
11030
11136
|
"kind": "ENUM",
|
|
11031
|
-
"name": "
|
|
11032
|
-
"description": "Currency
|
|
11137
|
+
"name": "Currency",
|
|
11138
|
+
"description": "Currency in the ISO 4217 format.",
|
|
11033
11139
|
"fields": null,
|
|
11034
11140
|
"inputFields": null,
|
|
11035
11141
|
"interfaces": null,
|
|
11036
11142
|
"enumValues": [
|
|
11037
|
-
{
|
|
11038
|
-
"name": "
|
|
11039
|
-
"description":
|
|
11040
|
-
"isDeprecated": false,
|
|
11041
|
-
"deprecationReason": null
|
|
11042
|
-
},
|
|
11043
|
-
{
|
|
11044
|
-
"name": "
|
|
11045
|
-
"description":
|
|
11046
|
-
"isDeprecated": false,
|
|
11047
|
-
"deprecationReason": null
|
|
11048
|
-
},
|
|
11049
|
-
{
|
|
11050
|
-
"name": "
|
|
11051
|
-
"description":
|
|
11052
|
-
"isDeprecated": false,
|
|
11053
|
-
"deprecationReason": null
|
|
11054
|
-
},
|
|
11143
|
+
{
|
|
11144
|
+
"name": "AED",
|
|
11145
|
+
"description": null,
|
|
11146
|
+
"isDeprecated": false,
|
|
11147
|
+
"deprecationReason": null
|
|
11148
|
+
},
|
|
11149
|
+
{
|
|
11150
|
+
"name": "AFN",
|
|
11151
|
+
"description": null,
|
|
11152
|
+
"isDeprecated": false,
|
|
11153
|
+
"deprecationReason": null
|
|
11154
|
+
},
|
|
11155
|
+
{
|
|
11156
|
+
"name": "ALL",
|
|
11157
|
+
"description": null,
|
|
11158
|
+
"isDeprecated": false,
|
|
11159
|
+
"deprecationReason": null
|
|
11160
|
+
},
|
|
11161
|
+
{
|
|
11162
|
+
"name": "AMD",
|
|
11163
|
+
"description": null,
|
|
11164
|
+
"isDeprecated": false,
|
|
11165
|
+
"deprecationReason": null
|
|
11166
|
+
},
|
|
11167
|
+
{
|
|
11168
|
+
"name": "ANG",
|
|
11169
|
+
"description": null,
|
|
11170
|
+
"isDeprecated": false,
|
|
11171
|
+
"deprecationReason": null
|
|
11172
|
+
},
|
|
11173
|
+
{
|
|
11174
|
+
"name": "AOA",
|
|
11175
|
+
"description": null,
|
|
11176
|
+
"isDeprecated": false,
|
|
11177
|
+
"deprecationReason": null
|
|
11178
|
+
},
|
|
11179
|
+
{
|
|
11180
|
+
"name": "ARS",
|
|
11181
|
+
"description": null,
|
|
11182
|
+
"isDeprecated": false,
|
|
11183
|
+
"deprecationReason": null
|
|
11184
|
+
},
|
|
11185
|
+
{
|
|
11186
|
+
"name": "AUD",
|
|
11187
|
+
"description": null,
|
|
11188
|
+
"isDeprecated": false,
|
|
11189
|
+
"deprecationReason": null
|
|
11190
|
+
},
|
|
11191
|
+
{
|
|
11192
|
+
"name": "AWG",
|
|
11193
|
+
"description": null,
|
|
11194
|
+
"isDeprecated": false,
|
|
11195
|
+
"deprecationReason": null
|
|
11196
|
+
},
|
|
11197
|
+
{
|
|
11198
|
+
"name": "AZN",
|
|
11199
|
+
"description": null,
|
|
11200
|
+
"isDeprecated": false,
|
|
11201
|
+
"deprecationReason": null
|
|
11202
|
+
},
|
|
11203
|
+
{
|
|
11204
|
+
"name": "BAM",
|
|
11205
|
+
"description": null,
|
|
11206
|
+
"isDeprecated": false,
|
|
11207
|
+
"deprecationReason": null
|
|
11208
|
+
},
|
|
11209
|
+
{
|
|
11210
|
+
"name": "BBD",
|
|
11211
|
+
"description": null,
|
|
11212
|
+
"isDeprecated": false,
|
|
11213
|
+
"deprecationReason": null
|
|
11214
|
+
},
|
|
11215
|
+
{
|
|
11216
|
+
"name": "BDT",
|
|
11217
|
+
"description": null,
|
|
11218
|
+
"isDeprecated": false,
|
|
11219
|
+
"deprecationReason": null
|
|
11220
|
+
},
|
|
11221
|
+
{
|
|
11222
|
+
"name": "BGN",
|
|
11223
|
+
"description": null,
|
|
11224
|
+
"isDeprecated": false,
|
|
11225
|
+
"deprecationReason": null
|
|
11226
|
+
},
|
|
11227
|
+
{
|
|
11228
|
+
"name": "BHD",
|
|
11229
|
+
"description": null,
|
|
11230
|
+
"isDeprecated": false,
|
|
11231
|
+
"deprecationReason": null
|
|
11232
|
+
},
|
|
11233
|
+
{
|
|
11234
|
+
"name": "BIF",
|
|
11235
|
+
"description": null,
|
|
11236
|
+
"isDeprecated": false,
|
|
11237
|
+
"deprecationReason": null
|
|
11238
|
+
},
|
|
11239
|
+
{
|
|
11240
|
+
"name": "BMD",
|
|
11241
|
+
"description": null,
|
|
11242
|
+
"isDeprecated": false,
|
|
11243
|
+
"deprecationReason": null
|
|
11244
|
+
},
|
|
11245
|
+
{
|
|
11246
|
+
"name": "BND",
|
|
11247
|
+
"description": null,
|
|
11248
|
+
"isDeprecated": false,
|
|
11249
|
+
"deprecationReason": null
|
|
11250
|
+
},
|
|
11251
|
+
{
|
|
11252
|
+
"name": "BOB",
|
|
11253
|
+
"description": null,
|
|
11254
|
+
"isDeprecated": false,
|
|
11255
|
+
"deprecationReason": null
|
|
11256
|
+
},
|
|
11257
|
+
{
|
|
11258
|
+
"name": "BRL",
|
|
11259
|
+
"description": null,
|
|
11260
|
+
"isDeprecated": false,
|
|
11261
|
+
"deprecationReason": null
|
|
11262
|
+
},
|
|
11263
|
+
{
|
|
11264
|
+
"name": "BSD",
|
|
11265
|
+
"description": null,
|
|
11266
|
+
"isDeprecated": false,
|
|
11267
|
+
"deprecationReason": null
|
|
11268
|
+
},
|
|
11269
|
+
{
|
|
11270
|
+
"name": "BTN",
|
|
11271
|
+
"description": null,
|
|
11272
|
+
"isDeprecated": false,
|
|
11273
|
+
"deprecationReason": null
|
|
11274
|
+
},
|
|
11275
|
+
{
|
|
11276
|
+
"name": "BWP",
|
|
11277
|
+
"description": null,
|
|
11278
|
+
"isDeprecated": false,
|
|
11279
|
+
"deprecationReason": null
|
|
11280
|
+
},
|
|
11281
|
+
{
|
|
11282
|
+
"name": "BYN",
|
|
11283
|
+
"description": null,
|
|
11284
|
+
"isDeprecated": false,
|
|
11285
|
+
"deprecationReason": null
|
|
11286
|
+
},
|
|
11287
|
+
{
|
|
11288
|
+
"name": "BYR",
|
|
11289
|
+
"description": null,
|
|
11290
|
+
"isDeprecated": false,
|
|
11291
|
+
"deprecationReason": null
|
|
11292
|
+
},
|
|
11293
|
+
{
|
|
11294
|
+
"name": "BZD",
|
|
11295
|
+
"description": null,
|
|
11296
|
+
"isDeprecated": false,
|
|
11297
|
+
"deprecationReason": null
|
|
11298
|
+
},
|
|
11299
|
+
{
|
|
11300
|
+
"name": "CAD",
|
|
11301
|
+
"description": null,
|
|
11302
|
+
"isDeprecated": false,
|
|
11303
|
+
"deprecationReason": null
|
|
11304
|
+
},
|
|
11305
|
+
{
|
|
11306
|
+
"name": "CDF",
|
|
11307
|
+
"description": null,
|
|
11308
|
+
"isDeprecated": false,
|
|
11309
|
+
"deprecationReason": null
|
|
11310
|
+
},
|
|
11311
|
+
{
|
|
11312
|
+
"name": "CHF",
|
|
11313
|
+
"description": null,
|
|
11314
|
+
"isDeprecated": false,
|
|
11315
|
+
"deprecationReason": null
|
|
11316
|
+
},
|
|
11317
|
+
{
|
|
11318
|
+
"name": "CLF",
|
|
11319
|
+
"description": null,
|
|
11320
|
+
"isDeprecated": false,
|
|
11321
|
+
"deprecationReason": null
|
|
11322
|
+
},
|
|
11323
|
+
{
|
|
11324
|
+
"name": "CLP",
|
|
11325
|
+
"description": null,
|
|
11326
|
+
"isDeprecated": false,
|
|
11327
|
+
"deprecationReason": null
|
|
11328
|
+
},
|
|
11329
|
+
{
|
|
11330
|
+
"name": "CNY",
|
|
11331
|
+
"description": null,
|
|
11332
|
+
"isDeprecated": false,
|
|
11333
|
+
"deprecationReason": null
|
|
11334
|
+
},
|
|
11335
|
+
{
|
|
11336
|
+
"name": "COP",
|
|
11337
|
+
"description": null,
|
|
11338
|
+
"isDeprecated": false,
|
|
11339
|
+
"deprecationReason": null
|
|
11340
|
+
},
|
|
11341
|
+
{
|
|
11342
|
+
"name": "CRC",
|
|
11343
|
+
"description": null,
|
|
11344
|
+
"isDeprecated": false,
|
|
11345
|
+
"deprecationReason": null
|
|
11346
|
+
},
|
|
11347
|
+
{
|
|
11348
|
+
"name": "CUC",
|
|
11349
|
+
"description": null,
|
|
11350
|
+
"isDeprecated": false,
|
|
11351
|
+
"deprecationReason": null
|
|
11352
|
+
},
|
|
11353
|
+
{
|
|
11354
|
+
"name": "CUP",
|
|
11355
|
+
"description": null,
|
|
11356
|
+
"isDeprecated": false,
|
|
11357
|
+
"deprecationReason": null
|
|
11358
|
+
},
|
|
11359
|
+
{
|
|
11360
|
+
"name": "CVE",
|
|
11361
|
+
"description": null,
|
|
11362
|
+
"isDeprecated": false,
|
|
11363
|
+
"deprecationReason": null
|
|
11364
|
+
},
|
|
11365
|
+
{
|
|
11366
|
+
"name": "CZK",
|
|
11367
|
+
"description": null,
|
|
11368
|
+
"isDeprecated": false,
|
|
11369
|
+
"deprecationReason": null
|
|
11370
|
+
},
|
|
11371
|
+
{
|
|
11372
|
+
"name": "DJF",
|
|
11373
|
+
"description": null,
|
|
11374
|
+
"isDeprecated": false,
|
|
11375
|
+
"deprecationReason": null
|
|
11376
|
+
},
|
|
11377
|
+
{
|
|
11378
|
+
"name": "DKK",
|
|
11379
|
+
"description": null,
|
|
11380
|
+
"isDeprecated": false,
|
|
11381
|
+
"deprecationReason": null
|
|
11382
|
+
},
|
|
11383
|
+
{
|
|
11384
|
+
"name": "DOP",
|
|
11385
|
+
"description": null,
|
|
11386
|
+
"isDeprecated": false,
|
|
11387
|
+
"deprecationReason": null
|
|
11388
|
+
},
|
|
11389
|
+
{
|
|
11390
|
+
"name": "DZD",
|
|
11391
|
+
"description": null,
|
|
11392
|
+
"isDeprecated": false,
|
|
11393
|
+
"deprecationReason": null
|
|
11394
|
+
},
|
|
11395
|
+
{
|
|
11396
|
+
"name": "EGP",
|
|
11397
|
+
"description": null,
|
|
11398
|
+
"isDeprecated": false,
|
|
11399
|
+
"deprecationReason": null
|
|
11400
|
+
},
|
|
11401
|
+
{
|
|
11402
|
+
"name": "ERN",
|
|
11403
|
+
"description": null,
|
|
11404
|
+
"isDeprecated": false,
|
|
11405
|
+
"deprecationReason": null
|
|
11406
|
+
},
|
|
11407
|
+
{
|
|
11408
|
+
"name": "ETB",
|
|
11409
|
+
"description": null,
|
|
11410
|
+
"isDeprecated": false,
|
|
11411
|
+
"deprecationReason": null
|
|
11412
|
+
},
|
|
11413
|
+
{
|
|
11414
|
+
"name": "EUR",
|
|
11415
|
+
"description": null,
|
|
11416
|
+
"isDeprecated": false,
|
|
11417
|
+
"deprecationReason": null
|
|
11418
|
+
},
|
|
11419
|
+
{
|
|
11420
|
+
"name": "FJD",
|
|
11421
|
+
"description": null,
|
|
11422
|
+
"isDeprecated": false,
|
|
11423
|
+
"deprecationReason": null
|
|
11424
|
+
},
|
|
11425
|
+
{
|
|
11426
|
+
"name": "FKP",
|
|
11427
|
+
"description": null,
|
|
11428
|
+
"isDeprecated": false,
|
|
11429
|
+
"deprecationReason": null
|
|
11430
|
+
},
|
|
11431
|
+
{
|
|
11432
|
+
"name": "GBP",
|
|
11433
|
+
"description": null,
|
|
11434
|
+
"isDeprecated": false,
|
|
11435
|
+
"deprecationReason": null
|
|
11436
|
+
},
|
|
11437
|
+
{
|
|
11438
|
+
"name": "GEL",
|
|
11439
|
+
"description": null,
|
|
11440
|
+
"isDeprecated": false,
|
|
11441
|
+
"deprecationReason": null
|
|
11442
|
+
},
|
|
11443
|
+
{
|
|
11444
|
+
"name": "GGP",
|
|
11445
|
+
"description": null,
|
|
11446
|
+
"isDeprecated": false,
|
|
11447
|
+
"deprecationReason": null
|
|
11448
|
+
},
|
|
11449
|
+
{
|
|
11450
|
+
"name": "GHS",
|
|
11451
|
+
"description": null,
|
|
11452
|
+
"isDeprecated": false,
|
|
11453
|
+
"deprecationReason": null
|
|
11454
|
+
},
|
|
11455
|
+
{
|
|
11456
|
+
"name": "GIP",
|
|
11457
|
+
"description": null,
|
|
11458
|
+
"isDeprecated": false,
|
|
11459
|
+
"deprecationReason": null
|
|
11460
|
+
},
|
|
11461
|
+
{
|
|
11462
|
+
"name": "GMD",
|
|
11463
|
+
"description": null,
|
|
11464
|
+
"isDeprecated": false,
|
|
11465
|
+
"deprecationReason": null
|
|
11466
|
+
},
|
|
11467
|
+
{
|
|
11468
|
+
"name": "GNF",
|
|
11469
|
+
"description": null,
|
|
11470
|
+
"isDeprecated": false,
|
|
11471
|
+
"deprecationReason": null
|
|
11472
|
+
},
|
|
11473
|
+
{
|
|
11474
|
+
"name": "GTQ",
|
|
11475
|
+
"description": null,
|
|
11476
|
+
"isDeprecated": false,
|
|
11477
|
+
"deprecationReason": null
|
|
11478
|
+
},
|
|
11479
|
+
{
|
|
11480
|
+
"name": "GYD",
|
|
11481
|
+
"description": null,
|
|
11482
|
+
"isDeprecated": false,
|
|
11483
|
+
"deprecationReason": null
|
|
11484
|
+
},
|
|
11485
|
+
{
|
|
11486
|
+
"name": "HKD",
|
|
11487
|
+
"description": null,
|
|
11488
|
+
"isDeprecated": false,
|
|
11489
|
+
"deprecationReason": null
|
|
11490
|
+
},
|
|
11491
|
+
{
|
|
11492
|
+
"name": "HNL",
|
|
11493
|
+
"description": null,
|
|
11494
|
+
"isDeprecated": false,
|
|
11495
|
+
"deprecationReason": null
|
|
11496
|
+
},
|
|
11497
|
+
{
|
|
11498
|
+
"name": "HRK",
|
|
11499
|
+
"description": null,
|
|
11500
|
+
"isDeprecated": false,
|
|
11501
|
+
"deprecationReason": null
|
|
11502
|
+
},
|
|
11503
|
+
{
|
|
11504
|
+
"name": "HTG",
|
|
11505
|
+
"description": null,
|
|
11506
|
+
"isDeprecated": false,
|
|
11507
|
+
"deprecationReason": null
|
|
11508
|
+
},
|
|
11509
|
+
{
|
|
11510
|
+
"name": "HUF",
|
|
11511
|
+
"description": null,
|
|
11512
|
+
"isDeprecated": false,
|
|
11513
|
+
"deprecationReason": null
|
|
11514
|
+
},
|
|
11515
|
+
{
|
|
11516
|
+
"name": "IDR",
|
|
11517
|
+
"description": null,
|
|
11518
|
+
"isDeprecated": false,
|
|
11519
|
+
"deprecationReason": null
|
|
11520
|
+
},
|
|
11521
|
+
{
|
|
11522
|
+
"name": "ILS",
|
|
11523
|
+
"description": null,
|
|
11524
|
+
"isDeprecated": false,
|
|
11525
|
+
"deprecationReason": null
|
|
11526
|
+
},
|
|
11527
|
+
{
|
|
11528
|
+
"name": "IMP",
|
|
11529
|
+
"description": null,
|
|
11530
|
+
"isDeprecated": false,
|
|
11531
|
+
"deprecationReason": null
|
|
11532
|
+
},
|
|
11533
|
+
{
|
|
11534
|
+
"name": "INR",
|
|
11535
|
+
"description": null,
|
|
11536
|
+
"isDeprecated": false,
|
|
11537
|
+
"deprecationReason": null
|
|
11538
|
+
},
|
|
11539
|
+
{
|
|
11540
|
+
"name": "IQD",
|
|
11541
|
+
"description": null,
|
|
11542
|
+
"isDeprecated": false,
|
|
11543
|
+
"deprecationReason": null
|
|
11544
|
+
},
|
|
11545
|
+
{
|
|
11546
|
+
"name": "IRR",
|
|
11547
|
+
"description": null,
|
|
11548
|
+
"isDeprecated": false,
|
|
11549
|
+
"deprecationReason": null
|
|
11550
|
+
},
|
|
11551
|
+
{
|
|
11552
|
+
"name": "ISK",
|
|
11553
|
+
"description": null,
|
|
11554
|
+
"isDeprecated": false,
|
|
11555
|
+
"deprecationReason": null
|
|
11556
|
+
},
|
|
11557
|
+
{
|
|
11558
|
+
"name": "JEP",
|
|
11559
|
+
"description": null,
|
|
11560
|
+
"isDeprecated": false,
|
|
11561
|
+
"deprecationReason": null
|
|
11562
|
+
},
|
|
11563
|
+
{
|
|
11564
|
+
"name": "JMD",
|
|
11565
|
+
"description": null,
|
|
11566
|
+
"isDeprecated": false,
|
|
11567
|
+
"deprecationReason": null
|
|
11568
|
+
},
|
|
11569
|
+
{
|
|
11570
|
+
"name": "JOD",
|
|
11571
|
+
"description": null,
|
|
11572
|
+
"isDeprecated": false,
|
|
11573
|
+
"deprecationReason": null
|
|
11574
|
+
},
|
|
11575
|
+
{
|
|
11576
|
+
"name": "JPY",
|
|
11577
|
+
"description": null,
|
|
11578
|
+
"isDeprecated": false,
|
|
11579
|
+
"deprecationReason": null
|
|
11580
|
+
},
|
|
11581
|
+
{
|
|
11582
|
+
"name": "KES",
|
|
11583
|
+
"description": null,
|
|
11584
|
+
"isDeprecated": false,
|
|
11585
|
+
"deprecationReason": null
|
|
11586
|
+
},
|
|
11587
|
+
{
|
|
11588
|
+
"name": "KGS",
|
|
11589
|
+
"description": null,
|
|
11590
|
+
"isDeprecated": false,
|
|
11591
|
+
"deprecationReason": null
|
|
11592
|
+
},
|
|
11593
|
+
{
|
|
11594
|
+
"name": "KHR",
|
|
11595
|
+
"description": null,
|
|
11596
|
+
"isDeprecated": false,
|
|
11597
|
+
"deprecationReason": null
|
|
11598
|
+
},
|
|
11599
|
+
{
|
|
11600
|
+
"name": "KMF",
|
|
11601
|
+
"description": null,
|
|
11602
|
+
"isDeprecated": false,
|
|
11603
|
+
"deprecationReason": null
|
|
11604
|
+
},
|
|
11605
|
+
{
|
|
11606
|
+
"name": "KPW",
|
|
11607
|
+
"description": null,
|
|
11608
|
+
"isDeprecated": false,
|
|
11609
|
+
"deprecationReason": null
|
|
11610
|
+
},
|
|
11611
|
+
{
|
|
11612
|
+
"name": "KRW",
|
|
11613
|
+
"description": null,
|
|
11614
|
+
"isDeprecated": false,
|
|
11615
|
+
"deprecationReason": null
|
|
11616
|
+
},
|
|
11617
|
+
{
|
|
11618
|
+
"name": "KWD",
|
|
11619
|
+
"description": null,
|
|
11620
|
+
"isDeprecated": false,
|
|
11621
|
+
"deprecationReason": null
|
|
11622
|
+
},
|
|
11623
|
+
{
|
|
11624
|
+
"name": "KYD",
|
|
11625
|
+
"description": null,
|
|
11626
|
+
"isDeprecated": false,
|
|
11627
|
+
"deprecationReason": null
|
|
11628
|
+
},
|
|
11629
|
+
{
|
|
11630
|
+
"name": "KZT",
|
|
11631
|
+
"description": null,
|
|
11632
|
+
"isDeprecated": false,
|
|
11633
|
+
"deprecationReason": null
|
|
11634
|
+
},
|
|
11635
|
+
{
|
|
11636
|
+
"name": "LAK",
|
|
11637
|
+
"description": null,
|
|
11638
|
+
"isDeprecated": false,
|
|
11639
|
+
"deprecationReason": null
|
|
11640
|
+
},
|
|
11641
|
+
{
|
|
11642
|
+
"name": "LBP",
|
|
11643
|
+
"description": null,
|
|
11644
|
+
"isDeprecated": false,
|
|
11645
|
+
"deprecationReason": null
|
|
11646
|
+
},
|
|
11647
|
+
{
|
|
11648
|
+
"name": "LKR",
|
|
11649
|
+
"description": null,
|
|
11650
|
+
"isDeprecated": false,
|
|
11651
|
+
"deprecationReason": null
|
|
11652
|
+
},
|
|
11653
|
+
{
|
|
11654
|
+
"name": "LRD",
|
|
11655
|
+
"description": null,
|
|
11656
|
+
"isDeprecated": false,
|
|
11657
|
+
"deprecationReason": null
|
|
11658
|
+
},
|
|
11659
|
+
{
|
|
11660
|
+
"name": "LSL",
|
|
11661
|
+
"description": null,
|
|
11662
|
+
"isDeprecated": false,
|
|
11663
|
+
"deprecationReason": null
|
|
11664
|
+
},
|
|
11665
|
+
{
|
|
11666
|
+
"name": "LTL",
|
|
11667
|
+
"description": null,
|
|
11668
|
+
"isDeprecated": false,
|
|
11669
|
+
"deprecationReason": null
|
|
11670
|
+
},
|
|
11671
|
+
{
|
|
11672
|
+
"name": "LVL",
|
|
11673
|
+
"description": null,
|
|
11674
|
+
"isDeprecated": false,
|
|
11675
|
+
"deprecationReason": null
|
|
11676
|
+
},
|
|
11677
|
+
{
|
|
11678
|
+
"name": "LYD",
|
|
11679
|
+
"description": null,
|
|
11680
|
+
"isDeprecated": false,
|
|
11681
|
+
"deprecationReason": null
|
|
11682
|
+
},
|
|
11683
|
+
{
|
|
11684
|
+
"name": "MAD",
|
|
11685
|
+
"description": null,
|
|
11686
|
+
"isDeprecated": false,
|
|
11687
|
+
"deprecationReason": null
|
|
11688
|
+
},
|
|
11689
|
+
{
|
|
11690
|
+
"name": "MDL",
|
|
11691
|
+
"description": null,
|
|
11692
|
+
"isDeprecated": false,
|
|
11693
|
+
"deprecationReason": null
|
|
11694
|
+
},
|
|
11695
|
+
{
|
|
11696
|
+
"name": "MGA",
|
|
11697
|
+
"description": null,
|
|
11698
|
+
"isDeprecated": false,
|
|
11699
|
+
"deprecationReason": null
|
|
11700
|
+
},
|
|
11701
|
+
{
|
|
11702
|
+
"name": "MKD",
|
|
11703
|
+
"description": null,
|
|
11704
|
+
"isDeprecated": false,
|
|
11705
|
+
"deprecationReason": null
|
|
11706
|
+
},
|
|
11707
|
+
{
|
|
11708
|
+
"name": "MMK",
|
|
11709
|
+
"description": null,
|
|
11710
|
+
"isDeprecated": false,
|
|
11711
|
+
"deprecationReason": null
|
|
11712
|
+
},
|
|
11713
|
+
{
|
|
11714
|
+
"name": "MNT",
|
|
11715
|
+
"description": null,
|
|
11716
|
+
"isDeprecated": false,
|
|
11717
|
+
"deprecationReason": null
|
|
11718
|
+
},
|
|
11719
|
+
{
|
|
11720
|
+
"name": "MOP",
|
|
11721
|
+
"description": null,
|
|
11722
|
+
"isDeprecated": false,
|
|
11723
|
+
"deprecationReason": null
|
|
11724
|
+
},
|
|
11725
|
+
{
|
|
11726
|
+
"name": "MRO",
|
|
11727
|
+
"description": null,
|
|
11728
|
+
"isDeprecated": false,
|
|
11729
|
+
"deprecationReason": null
|
|
11730
|
+
},
|
|
11731
|
+
{
|
|
11732
|
+
"name": "MUR",
|
|
11733
|
+
"description": null,
|
|
11734
|
+
"isDeprecated": false,
|
|
11735
|
+
"deprecationReason": null
|
|
11736
|
+
},
|
|
11737
|
+
{
|
|
11738
|
+
"name": "MVR",
|
|
11739
|
+
"description": null,
|
|
11740
|
+
"isDeprecated": false,
|
|
11741
|
+
"deprecationReason": null
|
|
11742
|
+
},
|
|
11743
|
+
{
|
|
11744
|
+
"name": "MWK",
|
|
11745
|
+
"description": null,
|
|
11746
|
+
"isDeprecated": false,
|
|
11747
|
+
"deprecationReason": null
|
|
11748
|
+
},
|
|
11749
|
+
{
|
|
11750
|
+
"name": "MXN",
|
|
11751
|
+
"description": null,
|
|
11752
|
+
"isDeprecated": false,
|
|
11753
|
+
"deprecationReason": null
|
|
11754
|
+
},
|
|
11755
|
+
{
|
|
11756
|
+
"name": "MYR",
|
|
11757
|
+
"description": null,
|
|
11758
|
+
"isDeprecated": false,
|
|
11759
|
+
"deprecationReason": null
|
|
11760
|
+
},
|
|
11761
|
+
{
|
|
11762
|
+
"name": "MZN",
|
|
11763
|
+
"description": null,
|
|
11764
|
+
"isDeprecated": false,
|
|
11765
|
+
"deprecationReason": null
|
|
11766
|
+
},
|
|
11767
|
+
{
|
|
11768
|
+
"name": "NAD",
|
|
11769
|
+
"description": null,
|
|
11770
|
+
"isDeprecated": false,
|
|
11771
|
+
"deprecationReason": null
|
|
11772
|
+
},
|
|
11773
|
+
{
|
|
11774
|
+
"name": "NGN",
|
|
11775
|
+
"description": null,
|
|
11776
|
+
"isDeprecated": false,
|
|
11777
|
+
"deprecationReason": null
|
|
11778
|
+
},
|
|
11779
|
+
{
|
|
11780
|
+
"name": "NIO",
|
|
11781
|
+
"description": null,
|
|
11782
|
+
"isDeprecated": false,
|
|
11783
|
+
"deprecationReason": null
|
|
11784
|
+
},
|
|
11785
|
+
{
|
|
11786
|
+
"name": "NOK",
|
|
11787
|
+
"description": null,
|
|
11788
|
+
"isDeprecated": false,
|
|
11789
|
+
"deprecationReason": null
|
|
11790
|
+
},
|
|
11791
|
+
{
|
|
11792
|
+
"name": "NPR",
|
|
11793
|
+
"description": null,
|
|
11794
|
+
"isDeprecated": false,
|
|
11795
|
+
"deprecationReason": null
|
|
11796
|
+
},
|
|
11797
|
+
{
|
|
11798
|
+
"name": "NZD",
|
|
11799
|
+
"description": null,
|
|
11800
|
+
"isDeprecated": false,
|
|
11801
|
+
"deprecationReason": null
|
|
11802
|
+
},
|
|
11803
|
+
{
|
|
11804
|
+
"name": "OMR",
|
|
11805
|
+
"description": null,
|
|
11806
|
+
"isDeprecated": false,
|
|
11807
|
+
"deprecationReason": null
|
|
11808
|
+
},
|
|
11809
|
+
{
|
|
11810
|
+
"name": "PAB",
|
|
11811
|
+
"description": null,
|
|
11812
|
+
"isDeprecated": false,
|
|
11813
|
+
"deprecationReason": null
|
|
11814
|
+
},
|
|
11815
|
+
{
|
|
11816
|
+
"name": "PEN",
|
|
11817
|
+
"description": null,
|
|
11818
|
+
"isDeprecated": false,
|
|
11819
|
+
"deprecationReason": null
|
|
11820
|
+
},
|
|
11821
|
+
{
|
|
11822
|
+
"name": "PGK",
|
|
11823
|
+
"description": null,
|
|
11824
|
+
"isDeprecated": false,
|
|
11825
|
+
"deprecationReason": null
|
|
11826
|
+
},
|
|
11827
|
+
{
|
|
11828
|
+
"name": "PHP",
|
|
11829
|
+
"description": null,
|
|
11830
|
+
"isDeprecated": false,
|
|
11831
|
+
"deprecationReason": null
|
|
11832
|
+
},
|
|
11833
|
+
{
|
|
11834
|
+
"name": "PKR",
|
|
11835
|
+
"description": null,
|
|
11836
|
+
"isDeprecated": false,
|
|
11837
|
+
"deprecationReason": null
|
|
11838
|
+
},
|
|
11839
|
+
{
|
|
11840
|
+
"name": "PLN",
|
|
11841
|
+
"description": null,
|
|
11842
|
+
"isDeprecated": false,
|
|
11843
|
+
"deprecationReason": null
|
|
11844
|
+
},
|
|
11845
|
+
{
|
|
11846
|
+
"name": "PYG",
|
|
11847
|
+
"description": null,
|
|
11848
|
+
"isDeprecated": false,
|
|
11849
|
+
"deprecationReason": null
|
|
11850
|
+
},
|
|
11851
|
+
{
|
|
11852
|
+
"name": "QAR",
|
|
11853
|
+
"description": null,
|
|
11854
|
+
"isDeprecated": false,
|
|
11855
|
+
"deprecationReason": null
|
|
11856
|
+
},
|
|
11857
|
+
{
|
|
11858
|
+
"name": "RON",
|
|
11859
|
+
"description": null,
|
|
11860
|
+
"isDeprecated": false,
|
|
11861
|
+
"deprecationReason": null
|
|
11862
|
+
},
|
|
11863
|
+
{
|
|
11864
|
+
"name": "RSD",
|
|
11865
|
+
"description": null,
|
|
11866
|
+
"isDeprecated": false,
|
|
11867
|
+
"deprecationReason": null
|
|
11868
|
+
},
|
|
11869
|
+
{
|
|
11870
|
+
"name": "RUB",
|
|
11871
|
+
"description": null,
|
|
11872
|
+
"isDeprecated": false,
|
|
11873
|
+
"deprecationReason": null
|
|
11874
|
+
},
|
|
11875
|
+
{
|
|
11876
|
+
"name": "RWF",
|
|
11877
|
+
"description": null,
|
|
11878
|
+
"isDeprecated": false,
|
|
11879
|
+
"deprecationReason": null
|
|
11880
|
+
},
|
|
11881
|
+
{
|
|
11882
|
+
"name": "SAR",
|
|
11883
|
+
"description": null,
|
|
11884
|
+
"isDeprecated": false,
|
|
11885
|
+
"deprecationReason": null
|
|
11886
|
+
},
|
|
11887
|
+
{
|
|
11888
|
+
"name": "SBD",
|
|
11889
|
+
"description": null,
|
|
11890
|
+
"isDeprecated": false,
|
|
11891
|
+
"deprecationReason": null
|
|
11892
|
+
},
|
|
11893
|
+
{
|
|
11894
|
+
"name": "SCR",
|
|
11895
|
+
"description": null,
|
|
11896
|
+
"isDeprecated": false,
|
|
11897
|
+
"deprecationReason": null
|
|
11898
|
+
},
|
|
11899
|
+
{
|
|
11900
|
+
"name": "SDG",
|
|
11901
|
+
"description": null,
|
|
11902
|
+
"isDeprecated": false,
|
|
11903
|
+
"deprecationReason": null
|
|
11904
|
+
},
|
|
11905
|
+
{
|
|
11906
|
+
"name": "SEK",
|
|
11907
|
+
"description": null,
|
|
11908
|
+
"isDeprecated": false,
|
|
11909
|
+
"deprecationReason": null
|
|
11910
|
+
},
|
|
11911
|
+
{
|
|
11912
|
+
"name": "SGD",
|
|
11913
|
+
"description": null,
|
|
11914
|
+
"isDeprecated": false,
|
|
11915
|
+
"deprecationReason": null
|
|
11916
|
+
},
|
|
11917
|
+
{
|
|
11918
|
+
"name": "SHP",
|
|
11919
|
+
"description": null,
|
|
11920
|
+
"isDeprecated": false,
|
|
11921
|
+
"deprecationReason": null
|
|
11922
|
+
},
|
|
11923
|
+
{
|
|
11924
|
+
"name": "SLL",
|
|
11925
|
+
"description": null,
|
|
11926
|
+
"isDeprecated": false,
|
|
11927
|
+
"deprecationReason": null
|
|
11928
|
+
},
|
|
11929
|
+
{
|
|
11930
|
+
"name": "SOS",
|
|
11931
|
+
"description": null,
|
|
11932
|
+
"isDeprecated": false,
|
|
11933
|
+
"deprecationReason": null
|
|
11934
|
+
},
|
|
11935
|
+
{
|
|
11936
|
+
"name": "SRD",
|
|
11937
|
+
"description": null,
|
|
11938
|
+
"isDeprecated": false,
|
|
11939
|
+
"deprecationReason": null
|
|
11940
|
+
},
|
|
11941
|
+
{
|
|
11942
|
+
"name": "STD",
|
|
11943
|
+
"description": null,
|
|
11944
|
+
"isDeprecated": false,
|
|
11945
|
+
"deprecationReason": null
|
|
11946
|
+
},
|
|
11947
|
+
{
|
|
11948
|
+
"name": "SVC",
|
|
11949
|
+
"description": null,
|
|
11950
|
+
"isDeprecated": false,
|
|
11951
|
+
"deprecationReason": null
|
|
11952
|
+
},
|
|
11953
|
+
{
|
|
11954
|
+
"name": "SYP",
|
|
11955
|
+
"description": null,
|
|
11956
|
+
"isDeprecated": false,
|
|
11957
|
+
"deprecationReason": null
|
|
11958
|
+
},
|
|
11959
|
+
{
|
|
11960
|
+
"name": "SZL",
|
|
11961
|
+
"description": null,
|
|
11962
|
+
"isDeprecated": false,
|
|
11963
|
+
"deprecationReason": null
|
|
11964
|
+
},
|
|
11965
|
+
{
|
|
11966
|
+
"name": "THB",
|
|
11967
|
+
"description": null,
|
|
11968
|
+
"isDeprecated": false,
|
|
11969
|
+
"deprecationReason": null
|
|
11970
|
+
},
|
|
11971
|
+
{
|
|
11972
|
+
"name": "TJS",
|
|
11973
|
+
"description": null,
|
|
11974
|
+
"isDeprecated": false,
|
|
11975
|
+
"deprecationReason": null
|
|
11976
|
+
},
|
|
11977
|
+
{
|
|
11978
|
+
"name": "TMT",
|
|
11979
|
+
"description": null,
|
|
11980
|
+
"isDeprecated": false,
|
|
11981
|
+
"deprecationReason": null
|
|
11982
|
+
},
|
|
11983
|
+
{
|
|
11984
|
+
"name": "TND",
|
|
11985
|
+
"description": null,
|
|
11986
|
+
"isDeprecated": false,
|
|
11987
|
+
"deprecationReason": null
|
|
11988
|
+
},
|
|
11989
|
+
{
|
|
11990
|
+
"name": "TOP",
|
|
11991
|
+
"description": null,
|
|
11992
|
+
"isDeprecated": false,
|
|
11993
|
+
"deprecationReason": null
|
|
11994
|
+
},
|
|
11995
|
+
{
|
|
11996
|
+
"name": "TRY",
|
|
11997
|
+
"description": null,
|
|
11998
|
+
"isDeprecated": false,
|
|
11999
|
+
"deprecationReason": null
|
|
12000
|
+
},
|
|
12001
|
+
{
|
|
12002
|
+
"name": "TTD",
|
|
12003
|
+
"description": null,
|
|
12004
|
+
"isDeprecated": false,
|
|
12005
|
+
"deprecationReason": null
|
|
12006
|
+
},
|
|
12007
|
+
{
|
|
12008
|
+
"name": "TWD",
|
|
12009
|
+
"description": null,
|
|
12010
|
+
"isDeprecated": false,
|
|
12011
|
+
"deprecationReason": null
|
|
12012
|
+
},
|
|
12013
|
+
{
|
|
12014
|
+
"name": "TZS",
|
|
12015
|
+
"description": null,
|
|
12016
|
+
"isDeprecated": false,
|
|
12017
|
+
"deprecationReason": null
|
|
12018
|
+
},
|
|
12019
|
+
{
|
|
12020
|
+
"name": "UAH",
|
|
12021
|
+
"description": null,
|
|
12022
|
+
"isDeprecated": false,
|
|
12023
|
+
"deprecationReason": null
|
|
12024
|
+
},
|
|
12025
|
+
{
|
|
12026
|
+
"name": "UGX",
|
|
12027
|
+
"description": null,
|
|
12028
|
+
"isDeprecated": false,
|
|
12029
|
+
"deprecationReason": null
|
|
12030
|
+
},
|
|
12031
|
+
{
|
|
12032
|
+
"name": "USD",
|
|
12033
|
+
"description": null,
|
|
12034
|
+
"isDeprecated": false,
|
|
12035
|
+
"deprecationReason": null
|
|
12036
|
+
},
|
|
12037
|
+
{
|
|
12038
|
+
"name": "UYU",
|
|
12039
|
+
"description": null,
|
|
12040
|
+
"isDeprecated": false,
|
|
12041
|
+
"deprecationReason": null
|
|
12042
|
+
},
|
|
12043
|
+
{
|
|
12044
|
+
"name": "UZS",
|
|
12045
|
+
"description": null,
|
|
12046
|
+
"isDeprecated": false,
|
|
12047
|
+
"deprecationReason": null
|
|
12048
|
+
},
|
|
12049
|
+
{
|
|
12050
|
+
"name": "VEF",
|
|
12051
|
+
"description": null,
|
|
12052
|
+
"isDeprecated": false,
|
|
12053
|
+
"deprecationReason": null
|
|
12054
|
+
},
|
|
12055
|
+
{
|
|
12056
|
+
"name": "VND",
|
|
12057
|
+
"description": null,
|
|
12058
|
+
"isDeprecated": false,
|
|
12059
|
+
"deprecationReason": null
|
|
12060
|
+
},
|
|
12061
|
+
{
|
|
12062
|
+
"name": "VUV",
|
|
12063
|
+
"description": null,
|
|
12064
|
+
"isDeprecated": false,
|
|
12065
|
+
"deprecationReason": null
|
|
12066
|
+
},
|
|
12067
|
+
{
|
|
12068
|
+
"name": "WST",
|
|
12069
|
+
"description": null,
|
|
12070
|
+
"isDeprecated": false,
|
|
12071
|
+
"deprecationReason": null
|
|
12072
|
+
},
|
|
12073
|
+
{
|
|
12074
|
+
"name": "XAF",
|
|
12075
|
+
"description": null,
|
|
12076
|
+
"isDeprecated": false,
|
|
12077
|
+
"deprecationReason": null
|
|
12078
|
+
},
|
|
12079
|
+
{
|
|
12080
|
+
"name": "XAG",
|
|
12081
|
+
"description": null,
|
|
12082
|
+
"isDeprecated": false,
|
|
12083
|
+
"deprecationReason": null
|
|
12084
|
+
},
|
|
12085
|
+
{
|
|
12086
|
+
"name": "XAU",
|
|
12087
|
+
"description": null,
|
|
12088
|
+
"isDeprecated": false,
|
|
12089
|
+
"deprecationReason": null
|
|
12090
|
+
},
|
|
12091
|
+
{
|
|
12092
|
+
"name": "XCD",
|
|
12093
|
+
"description": null,
|
|
12094
|
+
"isDeprecated": false,
|
|
12095
|
+
"deprecationReason": null
|
|
12096
|
+
},
|
|
12097
|
+
{
|
|
12098
|
+
"name": "XDR",
|
|
12099
|
+
"description": null,
|
|
12100
|
+
"isDeprecated": false,
|
|
12101
|
+
"deprecationReason": null
|
|
12102
|
+
},
|
|
12103
|
+
{
|
|
12104
|
+
"name": "XOF",
|
|
12105
|
+
"description": null,
|
|
12106
|
+
"isDeprecated": false,
|
|
12107
|
+
"deprecationReason": null
|
|
12108
|
+
},
|
|
12109
|
+
{
|
|
12110
|
+
"name": "XPF",
|
|
12111
|
+
"description": null,
|
|
12112
|
+
"isDeprecated": false,
|
|
12113
|
+
"deprecationReason": null
|
|
12114
|
+
},
|
|
12115
|
+
{
|
|
12116
|
+
"name": "YER",
|
|
12117
|
+
"description": null,
|
|
12118
|
+
"isDeprecated": false,
|
|
12119
|
+
"deprecationReason": null
|
|
12120
|
+
},
|
|
12121
|
+
{
|
|
12122
|
+
"name": "ZAR",
|
|
12123
|
+
"description": null,
|
|
12124
|
+
"isDeprecated": false,
|
|
12125
|
+
"deprecationReason": null
|
|
12126
|
+
},
|
|
12127
|
+
{
|
|
12128
|
+
"name": "ZMK",
|
|
12129
|
+
"description": null,
|
|
12130
|
+
"isDeprecated": false,
|
|
12131
|
+
"deprecationReason": null
|
|
12132
|
+
},
|
|
12133
|
+
{
|
|
12134
|
+
"name": "ZMW",
|
|
12135
|
+
"description": null,
|
|
12136
|
+
"isDeprecated": false,
|
|
12137
|
+
"deprecationReason": null
|
|
12138
|
+
},
|
|
12139
|
+
{
|
|
12140
|
+
"name": "ZWL",
|
|
12141
|
+
"description": null,
|
|
12142
|
+
"isDeprecated": false,
|
|
12143
|
+
"deprecationReason": null
|
|
12144
|
+
},
|
|
12145
|
+
{
|
|
12146
|
+
"name": "XPT",
|
|
12147
|
+
"description": null,
|
|
12148
|
+
"isDeprecated": false,
|
|
12149
|
+
"deprecationReason": null
|
|
12150
|
+
},
|
|
12151
|
+
{
|
|
12152
|
+
"name": "XPD",
|
|
12153
|
+
"description": null,
|
|
12154
|
+
"isDeprecated": false,
|
|
12155
|
+
"deprecationReason": null
|
|
12156
|
+
},
|
|
12157
|
+
{
|
|
12158
|
+
"name": "BTC",
|
|
12159
|
+
"description": null,
|
|
12160
|
+
"isDeprecated": false,
|
|
12161
|
+
"deprecationReason": null
|
|
12162
|
+
},
|
|
12163
|
+
{
|
|
12164
|
+
"name": "ETH",
|
|
12165
|
+
"description": null,
|
|
12166
|
+
"isDeprecated": false,
|
|
12167
|
+
"deprecationReason": null
|
|
12168
|
+
},
|
|
12169
|
+
{
|
|
12170
|
+
"name": "BNB",
|
|
12171
|
+
"description": null,
|
|
12172
|
+
"isDeprecated": false,
|
|
12173
|
+
"deprecationReason": null
|
|
12174
|
+
},
|
|
12175
|
+
{
|
|
12176
|
+
"name": "XRP",
|
|
12177
|
+
"description": null,
|
|
12178
|
+
"isDeprecated": false,
|
|
12179
|
+
"deprecationReason": null
|
|
12180
|
+
},
|
|
12181
|
+
{
|
|
12182
|
+
"name": "SOL",
|
|
12183
|
+
"description": null,
|
|
12184
|
+
"isDeprecated": false,
|
|
12185
|
+
"deprecationReason": null
|
|
12186
|
+
},
|
|
12187
|
+
{
|
|
12188
|
+
"name": "DOT",
|
|
12189
|
+
"description": null,
|
|
12190
|
+
"isDeprecated": false,
|
|
12191
|
+
"deprecationReason": null
|
|
12192
|
+
},
|
|
12193
|
+
{
|
|
12194
|
+
"name": "AVAX",
|
|
12195
|
+
"description": null,
|
|
12196
|
+
"isDeprecated": false,
|
|
12197
|
+
"deprecationReason": null
|
|
12198
|
+
},
|
|
12199
|
+
{
|
|
12200
|
+
"name": "MATIC",
|
|
12201
|
+
"description": null,
|
|
12202
|
+
"isDeprecated": false,
|
|
12203
|
+
"deprecationReason": null
|
|
12204
|
+
},
|
|
12205
|
+
{
|
|
12206
|
+
"name": "LTC",
|
|
12207
|
+
"description": null,
|
|
12208
|
+
"isDeprecated": false,
|
|
12209
|
+
"deprecationReason": null
|
|
12210
|
+
},
|
|
12211
|
+
{
|
|
12212
|
+
"name": "ADA",
|
|
12213
|
+
"description": null,
|
|
12214
|
+
"isDeprecated": false,
|
|
12215
|
+
"deprecationReason": null
|
|
12216
|
+
}
|
|
12217
|
+
],
|
|
12218
|
+
"possibleTypes": null
|
|
12219
|
+
},
|
|
12220
|
+
{
|
|
12221
|
+
"kind": "ENUM",
|
|
12222
|
+
"name": "CurrencyUnit",
|
|
12223
|
+
"description": "Currency according to the ISO 4217 standard.",
|
|
12224
|
+
"fields": null,
|
|
12225
|
+
"inputFields": null,
|
|
12226
|
+
"interfaces": null,
|
|
12227
|
+
"enumValues": [
|
|
12228
|
+
{
|
|
12229
|
+
"name": "EUR",
|
|
12230
|
+
"description": "Return the currency in EUR.",
|
|
12231
|
+
"isDeprecated": false,
|
|
12232
|
+
"deprecationReason": null
|
|
12233
|
+
},
|
|
12234
|
+
{
|
|
12235
|
+
"name": "USD",
|
|
12236
|
+
"description": "Return the currency in USD.",
|
|
12237
|
+
"isDeprecated": false,
|
|
12238
|
+
"deprecationReason": null
|
|
12239
|
+
},
|
|
12240
|
+
{
|
|
12241
|
+
"name": "GBP",
|
|
12242
|
+
"description": "Return the currency in GBP.",
|
|
12243
|
+
"isDeprecated": false,
|
|
12244
|
+
"deprecationReason": null
|
|
12245
|
+
},
|
|
11055
12246
|
{
|
|
11056
12247
|
"name": "AED",
|
|
11057
12248
|
"description": null,
|
|
@@ -18164,13 +19355,9 @@
|
|
|
18164
19355
|
"name": "source",
|
|
18165
19356
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
18166
19357
|
"type": {
|
|
18167
|
-
"kind": "
|
|
18168
|
-
"name":
|
|
18169
|
-
"ofType":
|
|
18170
|
-
"kind": "ENUM",
|
|
18171
|
-
"name": "TelemetryInputSource",
|
|
18172
|
-
"ofType": null
|
|
18173
|
-
}
|
|
19358
|
+
"kind": "ENUM",
|
|
19359
|
+
"name": "TelemetryInputSource",
|
|
19360
|
+
"ofType": null
|
|
18174
19361
|
},
|
|
18175
19362
|
"defaultValue": "manual",
|
|
18176
19363
|
"isDeprecated": false,
|
|
@@ -18526,6 +19713,120 @@
|
|
|
18526
19713
|
"enumValues": null,
|
|
18527
19714
|
"possibleTypes": null
|
|
18528
19715
|
},
|
|
19716
|
+
{
|
|
19717
|
+
"kind": "OBJECT",
|
|
19718
|
+
"name": "OutsideTemperature",
|
|
19719
|
+
"description": null,
|
|
19720
|
+
"fields": [
|
|
19721
|
+
{
|
|
19722
|
+
"name": "value",
|
|
19723
|
+
"description": "Value of the temperature.",
|
|
19724
|
+
"args": [],
|
|
19725
|
+
"type": {
|
|
19726
|
+
"kind": "NON_NULL",
|
|
19727
|
+
"name": null,
|
|
19728
|
+
"ofType": {
|
|
19729
|
+
"kind": "SCALAR",
|
|
19730
|
+
"name": "Float",
|
|
19731
|
+
"ofType": null
|
|
19732
|
+
}
|
|
19733
|
+
},
|
|
19734
|
+
"isDeprecated": false,
|
|
19735
|
+
"deprecationReason": null
|
|
19736
|
+
},
|
|
19737
|
+
{
|
|
19738
|
+
"name": "type",
|
|
19739
|
+
"description": "Type of the temperature.",
|
|
19740
|
+
"args": [],
|
|
19741
|
+
"type": {
|
|
19742
|
+
"kind": "NON_NULL",
|
|
19743
|
+
"name": null,
|
|
19744
|
+
"ofType": {
|
|
19745
|
+
"kind": "ENUM",
|
|
19746
|
+
"name": "TemperatureUnit",
|
|
19747
|
+
"ofType": null
|
|
19748
|
+
}
|
|
19749
|
+
},
|
|
19750
|
+
"isDeprecated": false,
|
|
19751
|
+
"deprecationReason": null
|
|
19752
|
+
},
|
|
19753
|
+
{
|
|
19754
|
+
"name": "source",
|
|
19755
|
+
"description": "Source of inputted data.",
|
|
19756
|
+
"args": [],
|
|
19757
|
+
"type": {
|
|
19758
|
+
"kind": "NON_NULL",
|
|
19759
|
+
"name": null,
|
|
19760
|
+
"ofType": {
|
|
19761
|
+
"kind": "ENUM",
|
|
19762
|
+
"name": "TelemetryInputSource",
|
|
19763
|
+
"ofType": null
|
|
19764
|
+
}
|
|
19765
|
+
},
|
|
19766
|
+
"isDeprecated": false,
|
|
19767
|
+
"deprecationReason": null
|
|
19768
|
+
}
|
|
19769
|
+
],
|
|
19770
|
+
"inputFields": null,
|
|
19771
|
+
"interfaces": [],
|
|
19772
|
+
"enumValues": null,
|
|
19773
|
+
"possibleTypes": null
|
|
19774
|
+
},
|
|
19775
|
+
{
|
|
19776
|
+
"kind": "INPUT_OBJECT",
|
|
19777
|
+
"name": "OutsideTemperatureInput",
|
|
19778
|
+
"description": null,
|
|
19779
|
+
"fields": null,
|
|
19780
|
+
"inputFields": [
|
|
19781
|
+
{
|
|
19782
|
+
"name": "value",
|
|
19783
|
+
"description": "Value of the outside temperature.",
|
|
19784
|
+
"type": {
|
|
19785
|
+
"kind": "NON_NULL",
|
|
19786
|
+
"name": null,
|
|
19787
|
+
"ofType": {
|
|
19788
|
+
"kind": "SCALAR",
|
|
19789
|
+
"name": "Float",
|
|
19790
|
+
"ofType": null
|
|
19791
|
+
}
|
|
19792
|
+
},
|
|
19793
|
+
"defaultValue": null,
|
|
19794
|
+
"isDeprecated": false,
|
|
19795
|
+
"deprecationReason": null
|
|
19796
|
+
},
|
|
19797
|
+
{
|
|
19798
|
+
"name": "type",
|
|
19799
|
+
"description": "Type of the value of the outside temperature.",
|
|
19800
|
+
"type": {
|
|
19801
|
+
"kind": "NON_NULL",
|
|
19802
|
+
"name": null,
|
|
19803
|
+
"ofType": {
|
|
19804
|
+
"kind": "ENUM",
|
|
19805
|
+
"name": "TemperatureUnit",
|
|
19806
|
+
"ofType": null
|
|
19807
|
+
}
|
|
19808
|
+
},
|
|
19809
|
+
"defaultValue": null,
|
|
19810
|
+
"isDeprecated": false,
|
|
19811
|
+
"deprecationReason": null
|
|
19812
|
+
},
|
|
19813
|
+
{
|
|
19814
|
+
"name": "source",
|
|
19815
|
+
"description": "Source of inputted data.",
|
|
19816
|
+
"type": {
|
|
19817
|
+
"kind": "ENUM",
|
|
19818
|
+
"name": "TelemetryInputSource",
|
|
19819
|
+
"ofType": null
|
|
19820
|
+
},
|
|
19821
|
+
"defaultValue": "manual",
|
|
19822
|
+
"isDeprecated": false,
|
|
19823
|
+
"deprecationReason": null
|
|
19824
|
+
}
|
|
19825
|
+
],
|
|
19826
|
+
"interfaces": null,
|
|
19827
|
+
"enumValues": null,
|
|
19828
|
+
"possibleTypes": null
|
|
19829
|
+
},
|
|
18529
19830
|
{
|
|
18530
19831
|
"kind": "ENUM",
|
|
18531
19832
|
"name": "ParkingCost",
|
|
@@ -22472,7 +23773,7 @@
|
|
|
22472
23773
|
},
|
|
22473
23774
|
{
|
|
22474
23775
|
"name": "charges",
|
|
22475
|
-
"description": "Number of
|
|
23776
|
+
"description": "Number of charging stops required for this route.",
|
|
22476
23777
|
"args": [],
|
|
22477
23778
|
"type": {
|
|
22478
23779
|
"kind": "SCALAR",
|
|
@@ -23367,35 +24668,19 @@
|
|
|
23367
24668
|
"isDeprecated": false,
|
|
23368
24669
|
"deprecationReason": null
|
|
23369
24670
|
},
|
|
23370
|
-
{
|
|
23371
|
-
"name": "via",
|
|
23372
|
-
"description": "Text information about a route direction.",
|
|
23373
|
-
"args": [],
|
|
23374
|
-
"type": {
|
|
23375
|
-
"kind": "SCALAR",
|
|
23376
|
-
"name": "String",
|
|
23377
|
-
"ofType": null
|
|
23378
|
-
},
|
|
23379
|
-
"isDeprecated": false,
|
|
23380
|
-
"deprecationReason": null
|
|
23381
|
-
},
|
|
23382
24671
|
{
|
|
23383
24672
|
"name": "polyline",
|
|
23384
24673
|
"description": "Polyline containing encoded coordinates.",
|
|
23385
24674
|
"args": [
|
|
23386
24675
|
{
|
|
23387
24676
|
"name": "decimals",
|
|
23388
|
-
"description":
|
|
24677
|
+
"description": "Polyline decimals",
|
|
23389
24678
|
"type": {
|
|
23390
|
-
"kind": "
|
|
23391
|
-
"name":
|
|
23392
|
-
"ofType":
|
|
23393
|
-
"kind": "ENUM",
|
|
23394
|
-
"name": "PolylineInputDecimals",
|
|
23395
|
-
"ofType": null
|
|
23396
|
-
}
|
|
24679
|
+
"kind": "ENUM",
|
|
24680
|
+
"name": "PolylineInputDecimals",
|
|
24681
|
+
"ofType": null
|
|
23397
24682
|
},
|
|
23398
|
-
"defaultValue":
|
|
24683
|
+
"defaultValue": "five",
|
|
23399
24684
|
"isDeprecated": false,
|
|
23400
24685
|
"deprecationReason": null
|
|
23401
24686
|
}
|
|
@@ -23486,7 +24771,7 @@
|
|
|
23486
24771
|
},
|
|
23487
24772
|
{
|
|
23488
24773
|
"name": "alternative_stations",
|
|
23489
|
-
"description":
|
|
24774
|
+
"description": "Alternative stations along a route within specified radius.",
|
|
23490
24775
|
"args": [],
|
|
23491
24776
|
"type": {
|
|
23492
24777
|
"kind": "NON_NULL",
|
|
@@ -23534,7 +24819,7 @@
|
|
|
23534
24819
|
},
|
|
23535
24820
|
{
|
|
23536
24821
|
"name": "charges",
|
|
23537
|
-
"description": "Number of
|
|
24822
|
+
"description": "Number of charging stops required for this route.",
|
|
23538
24823
|
"args": [],
|
|
23539
24824
|
"type": {
|
|
23540
24825
|
"kind": "NON_NULL",
|
|
@@ -24169,18 +25454,6 @@
|
|
|
24169
25454
|
"isDeprecated": false,
|
|
24170
25455
|
"deprecationReason": null
|
|
24171
25456
|
},
|
|
24172
|
-
{
|
|
24173
|
-
"name": "name",
|
|
24174
|
-
"description": "Name of a destination. This is the station name in case a user should charge or the name of the location in case this was provided.",
|
|
24175
|
-
"args": [],
|
|
24176
|
-
"type": {
|
|
24177
|
-
"kind": "SCALAR",
|
|
24178
|
-
"name": "String",
|
|
24179
|
-
"ofType": null
|
|
24180
|
-
},
|
|
24181
|
-
"isDeprecated": false,
|
|
24182
|
-
"deprecationReason": null
|
|
24183
|
-
},
|
|
24184
25457
|
{
|
|
24185
25458
|
"name": "station",
|
|
24186
25459
|
"description": "Information about the station at the origin of this leg.",
|
|
@@ -24199,17 +25472,13 @@
|
|
|
24199
25472
|
"args": [
|
|
24200
25473
|
{
|
|
24201
25474
|
"name": "decimals",
|
|
24202
|
-
"description":
|
|
25475
|
+
"description": "Polyline decimals",
|
|
24203
25476
|
"type": {
|
|
24204
|
-
"kind": "
|
|
24205
|
-
"name":
|
|
24206
|
-
"ofType":
|
|
24207
|
-
"kind": "ENUM",
|
|
24208
|
-
"name": "PolylineInputDecimals",
|
|
24209
|
-
"ofType": null
|
|
24210
|
-
}
|
|
25477
|
+
"kind": "ENUM",
|
|
25478
|
+
"name": "PolylineInputDecimals",
|
|
25479
|
+
"ofType": null
|
|
24211
25480
|
},
|
|
24212
|
-
"defaultValue":
|
|
25481
|
+
"defaultValue": "five",
|
|
24213
25482
|
"isDeprecated": false,
|
|
24214
25483
|
"deprecationReason": null
|
|
24215
25484
|
}
|
|
@@ -24487,7 +25756,7 @@
|
|
|
24487
25756
|
},
|
|
24488
25757
|
{
|
|
24489
25758
|
"name": "total_occupant_weight",
|
|
24490
|
-
"description": "Value of the
|
|
25759
|
+
"description": "Value of the combined weight of the occupants.",
|
|
24491
25760
|
"args": [
|
|
24492
25761
|
{
|
|
24493
25762
|
"name": "unit",
|
|
@@ -24818,17 +26087,13 @@
|
|
|
24818
26087
|
"args": [
|
|
24819
26088
|
{
|
|
24820
26089
|
"name": "decimals",
|
|
24821
|
-
"description":
|
|
26090
|
+
"description": "Polyline decimals",
|
|
24822
26091
|
"type": {
|
|
24823
|
-
"kind": "
|
|
24824
|
-
"name":
|
|
24825
|
-
"ofType":
|
|
24826
|
-
"kind": "ENUM",
|
|
24827
|
-
"name": "PolylineInputDecimals",
|
|
24828
|
-
"ofType": null
|
|
24829
|
-
}
|
|
26092
|
+
"kind": "ENUM",
|
|
26093
|
+
"name": "PolylineInputDecimals",
|
|
26094
|
+
"ofType": null
|
|
24830
26095
|
},
|
|
24831
|
-
"defaultValue":
|
|
26096
|
+
"defaultValue": "five",
|
|
24832
26097
|
"isDeprecated": false,
|
|
24833
26098
|
"deprecationReason": null
|
|
24834
26099
|
}
|
|
@@ -24872,7 +26137,7 @@
|
|
|
24872
26137
|
},
|
|
24873
26138
|
{
|
|
24874
26139
|
"name": "duration",
|
|
24875
|
-
"description": "Total
|
|
26140
|
+
"description": "Total duration of a section, in seconds. The value will be 0 for walking sections.",
|
|
24876
26141
|
"args": [],
|
|
24877
26142
|
"type": {
|
|
24878
26143
|
"kind": "NON_NULL",
|
|
@@ -24888,7 +26153,7 @@
|
|
|
24888
26153
|
},
|
|
24889
26154
|
{
|
|
24890
26155
|
"name": "consumption",
|
|
24891
|
-
"description": "Total energy used in a section in kilowatt-hours.",
|
|
26156
|
+
"description": "Total energy used in a section in kilowatt-hours. The value will be 0 for walking sections.",
|
|
24892
26157
|
"args": [],
|
|
24893
26158
|
"type": {
|
|
24894
26159
|
"kind": "NON_NULL",
|
|
@@ -25002,7 +26267,7 @@
|
|
|
25002
26267
|
},
|
|
25003
26268
|
{
|
|
25004
26269
|
"name": "total_occupant_weight",
|
|
25005
|
-
"description": "Value of the
|
|
26270
|
+
"description": "Value of the combined weight of the occupants.",
|
|
25006
26271
|
"args": [
|
|
25007
26272
|
{
|
|
25008
26273
|
"name": "unit",
|
|
@@ -25214,7 +26479,7 @@
|
|
|
25214
26479
|
"args": [],
|
|
25215
26480
|
"type": {
|
|
25216
26481
|
"kind": "OBJECT",
|
|
25217
|
-
"name": "
|
|
26482
|
+
"name": "RouteDetailsLegSectionFeaturePoint",
|
|
25218
26483
|
"ofType": null
|
|
25219
26484
|
},
|
|
25220
26485
|
"isDeprecated": false,
|
|
@@ -25493,7 +26758,7 @@
|
|
|
25493
26758
|
"deprecationReason": null
|
|
25494
26759
|
},
|
|
25495
26760
|
{
|
|
25496
|
-
"name": "
|
|
26761
|
+
"name": "maximum_speed",
|
|
25497
26762
|
"description": "Maximum vehicle speed of a route path segment.",
|
|
25498
26763
|
"args": [
|
|
25499
26764
|
{
|
|
@@ -25535,7 +26800,20 @@
|
|
|
25535
26800
|
{
|
|
25536
26801
|
"name": "money",
|
|
25537
26802
|
"description": "Money saved by a user driving this route with an electric vehicle.",
|
|
25538
|
-
"args": [
|
|
26803
|
+
"args": [
|
|
26804
|
+
{
|
|
26805
|
+
"name": "currency",
|
|
26806
|
+
"description": "Currency to convert the amount to.",
|
|
26807
|
+
"type": {
|
|
26808
|
+
"kind": "ENUM",
|
|
26809
|
+
"name": "Currency",
|
|
26810
|
+
"ofType": null
|
|
26811
|
+
},
|
|
26812
|
+
"defaultValue": "EUR",
|
|
26813
|
+
"isDeprecated": false,
|
|
26814
|
+
"deprecationReason": null
|
|
26815
|
+
}
|
|
26816
|
+
],
|
|
25539
26817
|
"type": {
|
|
25540
26818
|
"kind": "SCALAR",
|
|
25541
26819
|
"name": "Float",
|
|
@@ -25547,11 +26825,28 @@
|
|
|
25547
26825
|
{
|
|
25548
26826
|
"name": "average_gas_price",
|
|
25549
26827
|
"description": "Average gas price with which the calculation was made.",
|
|
25550
|
-
"args": [
|
|
26828
|
+
"args": [
|
|
26829
|
+
{
|
|
26830
|
+
"name": "currency",
|
|
26831
|
+
"description": "Currency to convert the amount to.",
|
|
26832
|
+
"type": {
|
|
26833
|
+
"kind": "ENUM",
|
|
26834
|
+
"name": "Currency",
|
|
26835
|
+
"ofType": null
|
|
26836
|
+
},
|
|
26837
|
+
"defaultValue": "EUR",
|
|
26838
|
+
"isDeprecated": false,
|
|
26839
|
+
"deprecationReason": null
|
|
26840
|
+
}
|
|
26841
|
+
],
|
|
25551
26842
|
"type": {
|
|
25552
|
-
"kind": "
|
|
25553
|
-
"name":
|
|
25554
|
-
"ofType":
|
|
26843
|
+
"kind": "NON_NULL",
|
|
26844
|
+
"name": null,
|
|
26845
|
+
"ofType": {
|
|
26846
|
+
"kind": "SCALAR",
|
|
26847
|
+
"name": "Float",
|
|
26848
|
+
"ofType": null
|
|
26849
|
+
}
|
|
25555
26850
|
},
|
|
25556
26851
|
"isDeprecated": false,
|
|
25557
26852
|
"deprecationReason": null
|
|
@@ -25559,11 +26854,28 @@
|
|
|
25559
26854
|
{
|
|
25560
26855
|
"name": "average_energy_price",
|
|
25561
26856
|
"description": "Average energy price with which the calculation was made.",
|
|
25562
|
-
"args": [
|
|
26857
|
+
"args": [
|
|
26858
|
+
{
|
|
26859
|
+
"name": "currency",
|
|
26860
|
+
"description": "Currency to convert the amount to.",
|
|
26861
|
+
"type": {
|
|
26862
|
+
"kind": "ENUM",
|
|
26863
|
+
"name": "Currency",
|
|
26864
|
+
"ofType": null
|
|
26865
|
+
},
|
|
26866
|
+
"defaultValue": "EUR",
|
|
26867
|
+
"isDeprecated": false,
|
|
26868
|
+
"deprecationReason": null
|
|
26869
|
+
}
|
|
26870
|
+
],
|
|
25563
26871
|
"type": {
|
|
25564
|
-
"kind": "
|
|
25565
|
-
"name":
|
|
25566
|
-
"ofType":
|
|
26872
|
+
"kind": "NON_NULL",
|
|
26873
|
+
"name": null,
|
|
26874
|
+
"ofType": {
|
|
26875
|
+
"kind": "SCALAR",
|
|
26876
|
+
"name": "Float",
|
|
26877
|
+
"ofType": null
|
|
26878
|
+
}
|
|
25567
26879
|
},
|
|
25568
26880
|
"isDeprecated": false,
|
|
25569
26881
|
"deprecationReason": null
|
|
@@ -30781,18 +32093,6 @@
|
|
|
30781
32093
|
},
|
|
30782
32094
|
"isDeprecated": false,
|
|
30783
32095
|
"deprecationReason": null
|
|
30784
|
-
},
|
|
30785
|
-
{
|
|
30786
|
-
"name": "stop_duration",
|
|
30787
|
-
"description": "Duration to stay at this point.",
|
|
30788
|
-
"args": [],
|
|
30789
|
-
"type": {
|
|
30790
|
-
"kind": "SCALAR",
|
|
30791
|
-
"name": "Int",
|
|
30792
|
-
"ofType": null
|
|
30793
|
-
},
|
|
30794
|
-
"isDeprecated": false,
|
|
30795
|
-
"deprecationReason": null
|
|
30796
32096
|
}
|
|
30797
32097
|
],
|
|
30798
32098
|
"inputFields": null,
|
|
@@ -30817,18 +32117,6 @@
|
|
|
30817
32117
|
"defaultValue": null,
|
|
30818
32118
|
"isDeprecated": false,
|
|
30819
32119
|
"deprecationReason": null
|
|
30820
|
-
},
|
|
30821
|
-
{
|
|
30822
|
-
"name": "stop_duration",
|
|
30823
|
-
"description": "Duration to stay at this point.",
|
|
30824
|
-
"type": {
|
|
30825
|
-
"kind": "SCALAR",
|
|
30826
|
-
"name": "Int",
|
|
30827
|
-
"ofType": null
|
|
30828
|
-
},
|
|
30829
|
-
"defaultValue": null,
|
|
30830
|
-
"isDeprecated": false,
|
|
30831
|
-
"deprecationReason": null
|
|
30832
32120
|
}
|
|
30833
32121
|
],
|
|
30834
32122
|
"interfaces": null,
|
|
@@ -30924,7 +32212,7 @@
|
|
|
30924
32212
|
},
|
|
30925
32213
|
{
|
|
30926
32214
|
"name": "total_occupant_weight",
|
|
30927
|
-
"description": "Combined weight of the occupants.",
|
|
32215
|
+
"description": "Combined weight of the occupants. This can only be used in combination with occupants.",
|
|
30928
32216
|
"args": [],
|
|
30929
32217
|
"type": {
|
|
30930
32218
|
"kind": "OBJECT",
|
|
@@ -30972,7 +32260,7 @@
|
|
|
30972
32260
|
},
|
|
30973
32261
|
{
|
|
30974
32262
|
"name": "total_occupant_weight",
|
|
30975
|
-
"description": "Combined weight of the occupants.",
|
|
32263
|
+
"description": "Combined weight of the occupants. This can only be used in combination with occupants.",
|
|
30976
32264
|
"type": {
|
|
30977
32265
|
"kind": "INPUT_OBJECT",
|
|
30978
32266
|
"name": "TotalOccupantWeightInput",
|
|
@@ -30999,6 +32287,76 @@
|
|
|
30999
32287
|
"enumValues": null,
|
|
31000
32288
|
"possibleTypes": null
|
|
31001
32289
|
},
|
|
32290
|
+
{
|
|
32291
|
+
"kind": "OBJECT",
|
|
32292
|
+
"name": "RoutePropertiesViaLocation",
|
|
32293
|
+
"description": null,
|
|
32294
|
+
"fields": [
|
|
32295
|
+
{
|
|
32296
|
+
"name": "name",
|
|
32297
|
+
"description": "Name that should overwrite the name that is automatically assigned to this location (for example: address or station name).",
|
|
32298
|
+
"args": [],
|
|
32299
|
+
"type": {
|
|
32300
|
+
"kind": "SCALAR",
|
|
32301
|
+
"name": "String",
|
|
32302
|
+
"ofType": null
|
|
32303
|
+
},
|
|
32304
|
+
"isDeprecated": false,
|
|
32305
|
+
"deprecationReason": null
|
|
32306
|
+
},
|
|
32307
|
+
{
|
|
32308
|
+
"name": "stop_duration",
|
|
32309
|
+
"description": "Duration to stay at this point, in seconds.",
|
|
32310
|
+
"args": [],
|
|
32311
|
+
"type": {
|
|
32312
|
+
"kind": "SCALAR",
|
|
32313
|
+
"name": "Int",
|
|
32314
|
+
"ofType": null
|
|
32315
|
+
},
|
|
32316
|
+
"isDeprecated": false,
|
|
32317
|
+
"deprecationReason": null
|
|
32318
|
+
}
|
|
32319
|
+
],
|
|
32320
|
+
"inputFields": null,
|
|
32321
|
+
"interfaces": [],
|
|
32322
|
+
"enumValues": null,
|
|
32323
|
+
"possibleTypes": null
|
|
32324
|
+
},
|
|
32325
|
+
{
|
|
32326
|
+
"kind": "INPUT_OBJECT",
|
|
32327
|
+
"name": "RoutePropertiesViaLocationInput",
|
|
32328
|
+
"description": null,
|
|
32329
|
+
"fields": null,
|
|
32330
|
+
"inputFields": [
|
|
32331
|
+
{
|
|
32332
|
+
"name": "name",
|
|
32333
|
+
"description": "Name that should overwrite the name that is automatically assigned to this location (for example: address or station name).",
|
|
32334
|
+
"type": {
|
|
32335
|
+
"kind": "SCALAR",
|
|
32336
|
+
"name": "String",
|
|
32337
|
+
"ofType": null
|
|
32338
|
+
},
|
|
32339
|
+
"defaultValue": null,
|
|
32340
|
+
"isDeprecated": false,
|
|
32341
|
+
"deprecationReason": null
|
|
32342
|
+
},
|
|
32343
|
+
{
|
|
32344
|
+
"name": "stop_duration",
|
|
32345
|
+
"description": "Duration to stay at this point, in seconds.",
|
|
32346
|
+
"type": {
|
|
32347
|
+
"kind": "SCALAR",
|
|
32348
|
+
"name": "Int",
|
|
32349
|
+
"ofType": null
|
|
32350
|
+
},
|
|
32351
|
+
"defaultValue": null,
|
|
32352
|
+
"isDeprecated": false,
|
|
32353
|
+
"deprecationReason": null
|
|
32354
|
+
}
|
|
32355
|
+
],
|
|
32356
|
+
"interfaces": null,
|
|
32357
|
+
"enumValues": null,
|
|
32358
|
+
"possibleTypes": null
|
|
32359
|
+
},
|
|
31002
32360
|
{
|
|
31003
32361
|
"kind": "OBJECT",
|
|
31004
32362
|
"name": "RouteResponse",
|
|
@@ -31079,22 +32437,6 @@
|
|
|
31079
32437
|
},
|
|
31080
32438
|
"isDeprecated": false,
|
|
31081
32439
|
"deprecationReason": null
|
|
31082
|
-
},
|
|
31083
|
-
{
|
|
31084
|
-
"name": "region",
|
|
31085
|
-
"description": "Region of a route calculation.",
|
|
31086
|
-
"args": [],
|
|
31087
|
-
"type": {
|
|
31088
|
-
"kind": "NON_NULL",
|
|
31089
|
-
"name": null,
|
|
31090
|
-
"ofType": {
|
|
31091
|
-
"kind": "SCALAR",
|
|
31092
|
-
"name": "String",
|
|
31093
|
-
"ofType": null
|
|
31094
|
-
}
|
|
31095
|
-
},
|
|
31096
|
-
"isDeprecated": false,
|
|
31097
|
-
"deprecationReason": null
|
|
31098
32440
|
}
|
|
31099
32441
|
],
|
|
31100
32442
|
"inputFields": null,
|
|
@@ -31616,7 +32958,7 @@
|
|
|
31616
32958
|
"args": [],
|
|
31617
32959
|
"type": {
|
|
31618
32960
|
"kind": "OBJECT",
|
|
31619
|
-
"name": "
|
|
32961
|
+
"name": "OutsideTemperature",
|
|
31620
32962
|
"ofType": null
|
|
31621
32963
|
},
|
|
31622
32964
|
"isDeprecated": false,
|
|
@@ -31624,7 +32966,7 @@
|
|
|
31624
32966
|
},
|
|
31625
32967
|
{
|
|
31626
32968
|
"name": "is_parked",
|
|
31627
|
-
"description": "
|
|
32969
|
+
"description": "Flag which indicates if vehicle is in park, neutral or turned off.",
|
|
31628
32970
|
"args": [],
|
|
31629
32971
|
"type": {
|
|
31630
32972
|
"kind": "SCALAR",
|
|
@@ -31703,7 +33045,7 @@
|
|
|
31703
33045
|
},
|
|
31704
33046
|
{
|
|
31705
33047
|
"name": "final_state_of_charge",
|
|
31706
|
-
"description": "Minimum final battery state of charge.",
|
|
33048
|
+
"description": "Minimum final battery state of charge. The value should be between 0 and 60% of the battery capacity.",
|
|
31707
33049
|
"args": [],
|
|
31708
33050
|
"type": {
|
|
31709
33051
|
"kind": "NON_NULL",
|
|
@@ -31755,7 +33097,7 @@
|
|
|
31755
33097
|
},
|
|
31756
33098
|
{
|
|
31757
33099
|
"name": "power",
|
|
31758
|
-
"description": "Value of the positive or negative power. When negative, the vehicle is charging.",
|
|
33100
|
+
"description": "Value of the positive or negative power, in kWh. When negative, the vehicle is charging.",
|
|
31759
33101
|
"args": [],
|
|
31760
33102
|
"type": {
|
|
31761
33103
|
"kind": "SCALAR",
|
|
@@ -31767,7 +33109,7 @@
|
|
|
31767
33109
|
},
|
|
31768
33110
|
{
|
|
31769
33111
|
"name": "is_charging",
|
|
31770
|
-
"description": "
|
|
33112
|
+
"description": "Flag which indicates if the vehicle is charging.",
|
|
31771
33113
|
"args": [],
|
|
31772
33114
|
"type": {
|
|
31773
33115
|
"kind": "SCALAR",
|
|
@@ -31815,7 +33157,7 @@
|
|
|
31815
33157
|
},
|
|
31816
33158
|
{
|
|
31817
33159
|
"name": "final_state_of_charge",
|
|
31818
|
-
"description": "Minimum battery state of charge.",
|
|
33160
|
+
"description": "Minimum final battery state of charge. The value should be between 0 and 60% of the battery capacity.",
|
|
31819
33161
|
"type": {
|
|
31820
33162
|
"kind": "INPUT_OBJECT",
|
|
31821
33163
|
"name": "StateOfChargeInput",
|
|
@@ -31863,7 +33205,7 @@
|
|
|
31863
33205
|
},
|
|
31864
33206
|
{
|
|
31865
33207
|
"name": "power",
|
|
31866
|
-
"description": "
|
|
33208
|
+
"description": "Value of the positive or negative power, in kWh. When negative, the vehicle is charging.",
|
|
31867
33209
|
"type": {
|
|
31868
33210
|
"kind": "SCALAR",
|
|
31869
33211
|
"name": "Float",
|
|
@@ -31875,7 +33217,7 @@
|
|
|
31875
33217
|
},
|
|
31876
33218
|
{
|
|
31877
33219
|
"name": "is_charging",
|
|
31878
|
-
"description": "
|
|
33220
|
+
"description": "Flag which indicates if the vehicle is charging.",
|
|
31879
33221
|
"type": {
|
|
31880
33222
|
"kind": "SCALAR",
|
|
31881
33223
|
"name": "Boolean",
|
|
@@ -31943,13 +33285,9 @@
|
|
|
31943
33285
|
"name": "is_preconditioned",
|
|
31944
33286
|
"description": "Flag which indicates if the vehicle cabin was preconditioned for the desired temperature.",
|
|
31945
33287
|
"type": {
|
|
31946
|
-
"kind": "
|
|
31947
|
-
"name":
|
|
31948
|
-
"ofType":
|
|
31949
|
-
"kind": "SCALAR",
|
|
31950
|
-
"name": "Boolean",
|
|
31951
|
-
"ofType": null
|
|
31952
|
-
}
|
|
33288
|
+
"kind": "SCALAR",
|
|
33289
|
+
"name": "Boolean",
|
|
33290
|
+
"ofType": null
|
|
31953
33291
|
},
|
|
31954
33292
|
"defaultValue": "false",
|
|
31955
33293
|
"isDeprecated": false,
|
|
@@ -31959,13 +33297,9 @@
|
|
|
31959
33297
|
"name": "desired_temperature",
|
|
31960
33298
|
"description": "Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit.",
|
|
31961
33299
|
"type": {
|
|
31962
|
-
"kind": "
|
|
31963
|
-
"name":
|
|
31964
|
-
"ofType":
|
|
31965
|
-
"kind": "INPUT_OBJECT",
|
|
31966
|
-
"name": "TemperatureInput",
|
|
31967
|
-
"ofType": null
|
|
31968
|
-
}
|
|
33300
|
+
"kind": "INPUT_OBJECT",
|
|
33301
|
+
"name": "TemperatureInput",
|
|
33302
|
+
"ofType": null
|
|
31969
33303
|
},
|
|
31970
33304
|
"defaultValue": null,
|
|
31971
33305
|
"isDeprecated": false,
|
|
@@ -31999,14 +33333,14 @@
|
|
|
31999
33333
|
},
|
|
32000
33334
|
{
|
|
32001
33335
|
"name": "minimum_power",
|
|
32002
|
-
"description": "Minimum desired power of chargers.",
|
|
33336
|
+
"description": "Minimum desired power of chargers, in kWh.",
|
|
32003
33337
|
"args": [],
|
|
32004
33338
|
"type": {
|
|
32005
33339
|
"kind": "NON_NULL",
|
|
32006
33340
|
"name": null,
|
|
32007
33341
|
"ofType": {
|
|
32008
33342
|
"kind": "SCALAR",
|
|
32009
|
-
"name": "
|
|
33343
|
+
"name": "Float",
|
|
32010
33344
|
"ofType": null
|
|
32011
33345
|
}
|
|
32012
33346
|
},
|
|
@@ -32097,7 +33431,7 @@
|
|
|
32097
33431
|
"deprecationReason": null
|
|
32098
33432
|
},
|
|
32099
33433
|
{
|
|
32100
|
-
"name": "
|
|
33434
|
+
"name": "maximum_charge_speed",
|
|
32101
33435
|
"description": "Maximum charging speed for the plug.",
|
|
32102
33436
|
"args": [],
|
|
32103
33437
|
"type": {
|
|
@@ -32141,7 +33475,7 @@
|
|
|
32141
33475
|
"deprecationReason": null
|
|
32142
33476
|
},
|
|
32143
33477
|
{
|
|
32144
|
-
"name": "
|
|
33478
|
+
"name": "maximum_charge_speed",
|
|
32145
33479
|
"description": "Maximum charging speed for this plug.",
|
|
32146
33480
|
"type": {
|
|
32147
33481
|
"kind": "NON_NULL",
|
|
@@ -32175,13 +33509,13 @@
|
|
|
32175
33509
|
"name": "ChargeMode",
|
|
32176
33510
|
"ofType": null
|
|
32177
33511
|
},
|
|
32178
|
-
"defaultValue":
|
|
33512
|
+
"defaultValue": null,
|
|
32179
33513
|
"isDeprecated": false,
|
|
32180
33514
|
"deprecationReason": null
|
|
32181
33515
|
},
|
|
32182
33516
|
{
|
|
32183
33517
|
"name": "minimum_power",
|
|
32184
|
-
"description": "Minimum desired power of chargers.",
|
|
33518
|
+
"description": "Minimum desired power of chargers, in kWh.",
|
|
32185
33519
|
"type": {
|
|
32186
33520
|
"kind": "SCALAR",
|
|
32187
33521
|
"name": "Float",
|
|
@@ -32199,7 +33533,7 @@
|
|
|
32199
33533
|
"name": "Int",
|
|
32200
33534
|
"ofType": null
|
|
32201
33535
|
},
|
|
32202
|
-
"defaultValue":
|
|
33536
|
+
"defaultValue": null,
|
|
32203
33537
|
"isDeprecated": false,
|
|
32204
33538
|
"deprecationReason": null
|
|
32205
33539
|
},
|
|
@@ -32524,7 +33858,7 @@
|
|
|
32524
33858
|
"description": "Outside temperature.",
|
|
32525
33859
|
"type": {
|
|
32526
33860
|
"kind": "INPUT_OBJECT",
|
|
32527
|
-
"name": "
|
|
33861
|
+
"name": "OutsideTemperatureInput",
|
|
32528
33862
|
"ofType": null
|
|
32529
33863
|
},
|
|
32530
33864
|
"defaultValue": null,
|
|
@@ -32533,7 +33867,7 @@
|
|
|
32533
33867
|
},
|
|
32534
33868
|
{
|
|
32535
33869
|
"name": "is_parked",
|
|
32536
|
-
"description": "
|
|
33870
|
+
"description": "Flag which indicates if vehicle is in park, neutral or turned off.",
|
|
32537
33871
|
"type": {
|
|
32538
33872
|
"kind": "SCALAR",
|
|
32539
33873
|
"name": "Boolean",
|
|
@@ -33010,7 +34344,7 @@
|
|
|
33010
34344
|
"args": [],
|
|
33011
34345
|
"type": {
|
|
33012
34346
|
"kind": "OBJECT",
|
|
33013
|
-
"name": "
|
|
34347
|
+
"name": "RoutePropertiesViaLocation",
|
|
33014
34348
|
"ofType": null
|
|
33015
34349
|
},
|
|
33016
34350
|
"isDeprecated": false,
|
|
@@ -33057,7 +34391,7 @@
|
|
|
33057
34391
|
"description": "Location data of the via point.",
|
|
33058
34392
|
"type": {
|
|
33059
34393
|
"kind": "INPUT_OBJECT",
|
|
33060
|
-
"name": "
|
|
34394
|
+
"name": "RoutePropertiesViaLocationInput",
|
|
33061
34395
|
"ofType": null
|
|
33062
34396
|
},
|
|
33063
34397
|
"defaultValue": null,
|
|
@@ -33366,13 +34700,9 @@
|
|
|
33366
34700
|
"name": "source",
|
|
33367
34701
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
33368
34702
|
"type": {
|
|
33369
|
-
"kind": "
|
|
33370
|
-
"name":
|
|
33371
|
-
"ofType":
|
|
33372
|
-
"kind": "ENUM",
|
|
33373
|
-
"name": "TelemetryInputSource",
|
|
33374
|
-
"ofType": null
|
|
33375
|
-
}
|
|
34703
|
+
"kind": "ENUM",
|
|
34704
|
+
"name": "TelemetryInputSource",
|
|
34705
|
+
"ofType": null
|
|
33376
34706
|
},
|
|
33377
34707
|
"defaultValue": "manual",
|
|
33378
34708
|
"isDeprecated": false,
|
|
@@ -36240,6 +37570,12 @@
|
|
|
36240
37570
|
"description": "Value from the vehicle's telemetry.",
|
|
36241
37571
|
"isDeprecated": false,
|
|
36242
37572
|
"deprecationReason": null
|
|
37573
|
+
},
|
|
37574
|
+
{
|
|
37575
|
+
"name": "default",
|
|
37576
|
+
"description": "Default value.",
|
|
37577
|
+
"isDeprecated": false,
|
|
37578
|
+
"deprecationReason": null
|
|
36243
37579
|
}
|
|
36244
37580
|
],
|
|
36245
37581
|
"possibleTypes": null
|
|
@@ -36470,13 +37806,9 @@
|
|
|
36470
37806
|
"name": "source",
|
|
36471
37807
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
36472
37808
|
"type": {
|
|
36473
|
-
"kind": "
|
|
36474
|
-
"name":
|
|
36475
|
-
"ofType":
|
|
36476
|
-
"kind": "ENUM",
|
|
36477
|
-
"name": "TelemetryInputSource",
|
|
36478
|
-
"ofType": null
|
|
36479
|
-
}
|
|
37809
|
+
"kind": "ENUM",
|
|
37810
|
+
"name": "TelemetryInputSource",
|
|
37811
|
+
"ofType": null
|
|
36480
37812
|
},
|
|
36481
37813
|
"defaultValue": "manual",
|
|
36482
37814
|
"isDeprecated": false,
|
|
@@ -36611,13 +37943,9 @@
|
|
|
36611
37943
|
"name": "source",
|
|
36612
37944
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
36613
37945
|
"type": {
|
|
36614
|
-
"kind": "
|
|
36615
|
-
"name":
|
|
36616
|
-
"ofType":
|
|
36617
|
-
"kind": "ENUM",
|
|
36618
|
-
"name": "TelemetryInputSource",
|
|
36619
|
-
"ofType": null
|
|
36620
|
-
}
|
|
37946
|
+
"kind": "ENUM",
|
|
37947
|
+
"name": "TelemetryInputSource",
|
|
37948
|
+
"ofType": null
|
|
36621
37949
|
},
|
|
36622
37950
|
"defaultValue": "manual",
|
|
36623
37951
|
"isDeprecated": false,
|
|
@@ -36635,7 +37963,7 @@
|
|
|
36635
37963
|
"fields": [
|
|
36636
37964
|
{
|
|
36637
37965
|
"name": "value",
|
|
36638
|
-
"description": "Value of the
|
|
37966
|
+
"description": "Value of the combined weight of the occupants.",
|
|
36639
37967
|
"args": [],
|
|
36640
37968
|
"type": {
|
|
36641
37969
|
"kind": "NON_NULL",
|
|
@@ -36695,7 +38023,7 @@
|
|
|
36695
38023
|
"inputFields": [
|
|
36696
38024
|
{
|
|
36697
38025
|
"name": "value",
|
|
36698
|
-
"description": "Value of the
|
|
38026
|
+
"description": "Value of the combined weight of the occupants.",
|
|
36699
38027
|
"type": {
|
|
36700
38028
|
"kind": "NON_NULL",
|
|
36701
38029
|
"name": null,
|
|
@@ -36729,13 +38057,9 @@
|
|
|
36729
38057
|
"name": "source",
|
|
36730
38058
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
36731
38059
|
"type": {
|
|
36732
|
-
"kind": "
|
|
36733
|
-
"name":
|
|
36734
|
-
"ofType":
|
|
36735
|
-
"kind": "ENUM",
|
|
36736
|
-
"name": "TelemetryInputSource",
|
|
36737
|
-
"ofType": null
|
|
36738
|
-
}
|
|
38060
|
+
"kind": "ENUM",
|
|
38061
|
+
"name": "TelemetryInputSource",
|
|
38062
|
+
"ofType": null
|
|
36739
38063
|
},
|
|
36740
38064
|
"defaultValue": "manual",
|
|
36741
38065
|
"isDeprecated": false,
|
|
@@ -43812,13 +45136,9 @@
|
|
|
43812
45136
|
"name": "source",
|
|
43813
45137
|
"description": "Source of inputted data, defaults to 'manual'.",
|
|
43814
45138
|
"type": {
|
|
43815
|
-
"kind": "
|
|
43816
|
-
"name":
|
|
43817
|
-
"ofType":
|
|
43818
|
-
"kind": "ENUM",
|
|
43819
|
-
"name": "TelemetryInputSource",
|
|
43820
|
-
"ofType": null
|
|
43821
|
-
}
|
|
45139
|
+
"kind": "ENUM",
|
|
45140
|
+
"name": "TelemetryInputSource",
|
|
45141
|
+
"ofType": null
|
|
43822
45142
|
},
|
|
43823
45143
|
"defaultValue": "manual",
|
|
43824
45144
|
"isDeprecated": false,
|