@chargetrip/types 1.20.0 → 1.23.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 +14 -0
- package/graphql.schema.json +1073 -55
- package/package.json +4 -3
- package/src/graphql.ts +316 -63
- package/dist/browser/index.js +0 -2
- package/dist/browser/index.js.map +0 -1
- package/dist/node/index.js +0 -674
- package/dist/node/index.js.map +0 -1
- package/dist/react-native/graphql.js +0 -670
- package/dist/react-native/graphql.js.map +0 -1
- package/dist/react-native/index.js +0 -2
- package/dist/react-native/index.js.map +0 -1
- package/dist/ts/graphql.d.ts +0 -3135
- package/dist/ts/index.d.ts +0 -1
package/graphql.schema.json
CHANGED
|
@@ -2637,7 +2637,7 @@
|
|
|
2637
2637
|
"args": [],
|
|
2638
2638
|
"type": {
|
|
2639
2639
|
"kind": "ENUM",
|
|
2640
|
-
"name": "
|
|
2640
|
+
"name": "ConnectorType",
|
|
2641
2641
|
"ofType": null
|
|
2642
2642
|
},
|
|
2643
2643
|
"isDeprecated": false,
|
|
@@ -3796,7 +3796,7 @@
|
|
|
3796
3796
|
"args": [],
|
|
3797
3797
|
"type": {
|
|
3798
3798
|
"kind": "ENUM",
|
|
3799
|
-
"name": "
|
|
3799
|
+
"name": "ConnectorType",
|
|
3800
3800
|
"ofType": null
|
|
3801
3801
|
},
|
|
3802
3802
|
"isDeprecated": false,
|
|
@@ -5825,7 +5825,7 @@
|
|
|
5825
5825
|
"args": [],
|
|
5826
5826
|
"type": {
|
|
5827
5827
|
"kind": "ENUM",
|
|
5828
|
-
"name": "
|
|
5828
|
+
"name": "ConnectorType",
|
|
5829
5829
|
"ofType": null
|
|
5830
5830
|
},
|
|
5831
5831
|
"isDeprecated": false,
|
|
@@ -6049,7 +6049,7 @@
|
|
|
6049
6049
|
"args": [],
|
|
6050
6050
|
"type": {
|
|
6051
6051
|
"kind": "ENUM",
|
|
6052
|
-
"name": "
|
|
6052
|
+
"name": "ConnectorType",
|
|
6053
6053
|
"ofType": null
|
|
6054
6054
|
},
|
|
6055
6055
|
"isDeprecated": false,
|
|
@@ -6194,6 +6194,18 @@
|
|
|
6194
6194
|
},
|
|
6195
6195
|
"isDeprecated": false,
|
|
6196
6196
|
"deprecationReason": null
|
|
6197
|
+
},
|
|
6198
|
+
{
|
|
6199
|
+
"name": "pricing",
|
|
6200
|
+
"description": "Charging prices, only available when using the EcoMovement database",
|
|
6201
|
+
"args": [],
|
|
6202
|
+
"type": {
|
|
6203
|
+
"kind": "OBJECT",
|
|
6204
|
+
"name": "Pricing",
|
|
6205
|
+
"ofType": null
|
|
6206
|
+
},
|
|
6207
|
+
"isDeprecated": false,
|
|
6208
|
+
"deprecationReason": null
|
|
6197
6209
|
}
|
|
6198
6210
|
],
|
|
6199
6211
|
"inputFields": null,
|
|
@@ -6201,6 +6213,251 @@
|
|
|
6201
6213
|
"enumValues": null,
|
|
6202
6214
|
"possibleTypes": null
|
|
6203
6215
|
},
|
|
6216
|
+
{
|
|
6217
|
+
"kind": "ENUM",
|
|
6218
|
+
"name": "ConnectorType",
|
|
6219
|
+
"description": "The socket or plug standard of the charging point.",
|
|
6220
|
+
"fields": null,
|
|
6221
|
+
"inputFields": null,
|
|
6222
|
+
"interfaces": null,
|
|
6223
|
+
"enumValues": [
|
|
6224
|
+
{
|
|
6225
|
+
"name": "CHADEMO",
|
|
6226
|
+
"description": "The connector type is CHAdeMO, DC",
|
|
6227
|
+
"isDeprecated": false,
|
|
6228
|
+
"deprecationReason": null
|
|
6229
|
+
},
|
|
6230
|
+
{
|
|
6231
|
+
"name": "DOMESTIC_A",
|
|
6232
|
+
"description": "Standard/domestic household, type \"A\", NEMA 1-15, 2 pins",
|
|
6233
|
+
"isDeprecated": false,
|
|
6234
|
+
"deprecationReason": null
|
|
6235
|
+
},
|
|
6236
|
+
{
|
|
6237
|
+
"name": "DOMESTIC_B",
|
|
6238
|
+
"description": "Standard/domestic household, type \"B\", NEMA 5-15, 3 pins",
|
|
6239
|
+
"isDeprecated": false,
|
|
6240
|
+
"deprecationReason": null
|
|
6241
|
+
},
|
|
6242
|
+
{
|
|
6243
|
+
"name": "DOMESTIC_C",
|
|
6244
|
+
"description": "Standard/domestic household, type \"C\", CEE 7/17, 2 pins",
|
|
6245
|
+
"isDeprecated": false,
|
|
6246
|
+
"deprecationReason": null
|
|
6247
|
+
},
|
|
6248
|
+
{
|
|
6249
|
+
"name": "DOMESTIC_D",
|
|
6250
|
+
"description": "Standard/domestic household, type \"D\", 3 pins",
|
|
6251
|
+
"isDeprecated": false,
|
|
6252
|
+
"deprecationReason": null
|
|
6253
|
+
},
|
|
6254
|
+
{
|
|
6255
|
+
"name": "DOMESTIC_E",
|
|
6256
|
+
"description": "Standard/domestic household, type \"E\", CEE 7/5 3 pins",
|
|
6257
|
+
"isDeprecated": false,
|
|
6258
|
+
"deprecationReason": null
|
|
6259
|
+
},
|
|
6260
|
+
{
|
|
6261
|
+
"name": "DOMESTIC_F",
|
|
6262
|
+
"description": "Standard/domestic household, type \"F\", CEE 7/4, Schuko, 3 pins",
|
|
6263
|
+
"isDeprecated": false,
|
|
6264
|
+
"deprecationReason": null
|
|
6265
|
+
},
|
|
6266
|
+
{
|
|
6267
|
+
"name": "DOMESTIC_G",
|
|
6268
|
+
"description": "Standard/domestic household, type \"G\", BS 1363, Commonwealth, 3 pins",
|
|
6269
|
+
"isDeprecated": false,
|
|
6270
|
+
"deprecationReason": null
|
|
6271
|
+
},
|
|
6272
|
+
{
|
|
6273
|
+
"name": "DOMESTIC_H",
|
|
6274
|
+
"description": "Standard/domestic household, type \"H\", SI-32, 3 pins",
|
|
6275
|
+
"isDeprecated": false,
|
|
6276
|
+
"deprecationReason": null
|
|
6277
|
+
},
|
|
6278
|
+
{
|
|
6279
|
+
"name": "DOMESTIC_I",
|
|
6280
|
+
"description": "Standard/domestic household, type \"I\", AS 3112, 3 pins",
|
|
6281
|
+
"isDeprecated": false,
|
|
6282
|
+
"deprecationReason": null
|
|
6283
|
+
},
|
|
6284
|
+
{
|
|
6285
|
+
"name": "DOMESTIC_J",
|
|
6286
|
+
"description": "Standard/domestic household, type \"J\", SEV 1011, 3 pins",
|
|
6287
|
+
"isDeprecated": false,
|
|
6288
|
+
"deprecationReason": null
|
|
6289
|
+
},
|
|
6290
|
+
{
|
|
6291
|
+
"name": "DOMESTIC_K",
|
|
6292
|
+
"description": "Standard/domestic household, type \"K\", DS 60884-2-D1, 3 pins",
|
|
6293
|
+
"isDeprecated": false,
|
|
6294
|
+
"deprecationReason": null
|
|
6295
|
+
},
|
|
6296
|
+
{
|
|
6297
|
+
"name": "DOMESTIC_L",
|
|
6298
|
+
"description": "Standard/domestic household, type \"L\", CEI 23-16-VII, 3 pins",
|
|
6299
|
+
"isDeprecated": false,
|
|
6300
|
+
"deprecationReason": null
|
|
6301
|
+
},
|
|
6302
|
+
{
|
|
6303
|
+
"name": "DOMESTIC_M",
|
|
6304
|
+
"description": "Standard/Domestic household, type \"M\", BS 546, 3 pins",
|
|
6305
|
+
"isDeprecated": false,
|
|
6306
|
+
"deprecationReason": null
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
"name": "DOMESTIC_N",
|
|
6310
|
+
"description": "Standard/Domestic household, type \"N\", NBR 14136, 3 pins",
|
|
6311
|
+
"isDeprecated": false,
|
|
6312
|
+
"deprecationReason": null
|
|
6313
|
+
},
|
|
6314
|
+
{
|
|
6315
|
+
"name": "DOMESTIC_O",
|
|
6316
|
+
"description": "Standard/Domestic household, type \"O\", TIS 166-2549, 3 pins",
|
|
6317
|
+
"isDeprecated": false,
|
|
6318
|
+
"deprecationReason": null
|
|
6319
|
+
},
|
|
6320
|
+
{
|
|
6321
|
+
"name": "IEC_60309_2_single_16",
|
|
6322
|
+
"description": "IEC 60309-2 Industrial connector single phase 16 amperes (usually blue)",
|
|
6323
|
+
"isDeprecated": false,
|
|
6324
|
+
"deprecationReason": null
|
|
6325
|
+
},
|
|
6326
|
+
{
|
|
6327
|
+
"name": "IEC_60309_2_three_16",
|
|
6328
|
+
"description": "IEC 60309-2 Industrial connector three phase 16 amperes (usually red)",
|
|
6329
|
+
"isDeprecated": false,
|
|
6330
|
+
"deprecationReason": null
|
|
6331
|
+
},
|
|
6332
|
+
{
|
|
6333
|
+
"name": "IEC_60309_2_three_32",
|
|
6334
|
+
"description": "IEC 60309-2 Industrial connector three phase 32 amperes (usually red)",
|
|
6335
|
+
"isDeprecated": false,
|
|
6336
|
+
"deprecationReason": null
|
|
6337
|
+
},
|
|
6338
|
+
{
|
|
6339
|
+
"name": "IEC_60309_2_three_64",
|
|
6340
|
+
"description": "IEC 60309-2 Industrial connector three phase 64 amperes (usually red)",
|
|
6341
|
+
"isDeprecated": false,
|
|
6342
|
+
"deprecationReason": null
|
|
6343
|
+
},
|
|
6344
|
+
{
|
|
6345
|
+
"name": "IEC_62196_T1",
|
|
6346
|
+
"description": "IEC 62196 Type 1 \"SAE J1772\"",
|
|
6347
|
+
"isDeprecated": false,
|
|
6348
|
+
"deprecationReason": null
|
|
6349
|
+
},
|
|
6350
|
+
{
|
|
6351
|
+
"name": "IEC_62196_T1_COMBO",
|
|
6352
|
+
"description": "Combo Type 1 based, DC",
|
|
6353
|
+
"isDeprecated": false,
|
|
6354
|
+
"deprecationReason": null
|
|
6355
|
+
},
|
|
6356
|
+
{
|
|
6357
|
+
"name": "IEC_62196_T2",
|
|
6358
|
+
"description": "IEC 62196 Type 2 \"Mennekes\"",
|
|
6359
|
+
"isDeprecated": false,
|
|
6360
|
+
"deprecationReason": null
|
|
6361
|
+
},
|
|
6362
|
+
{
|
|
6363
|
+
"name": "IEC_62196_T2_COMBO",
|
|
6364
|
+
"description": "Combo Type 2 based, DC",
|
|
6365
|
+
"isDeprecated": false,
|
|
6366
|
+
"deprecationReason": null
|
|
6367
|
+
},
|
|
6368
|
+
{
|
|
6369
|
+
"name": "IEC_62196_T3A",
|
|
6370
|
+
"description": "IEC 62196 Type 3A",
|
|
6371
|
+
"isDeprecated": false,
|
|
6372
|
+
"deprecationReason": null
|
|
6373
|
+
},
|
|
6374
|
+
{
|
|
6375
|
+
"name": "IEC_62196_T3C",
|
|
6376
|
+
"description": "IEC 62196 Type 3C \"Scame\"",
|
|
6377
|
+
"isDeprecated": false,
|
|
6378
|
+
"deprecationReason": null
|
|
6379
|
+
},
|
|
6380
|
+
{
|
|
6381
|
+
"name": "PANTOGRAPH_BOTTOM_UP",
|
|
6382
|
+
"description": "On-board bottom-up-pantograph typically for bus charging",
|
|
6383
|
+
"isDeprecated": false,
|
|
6384
|
+
"deprecationReason": null
|
|
6385
|
+
},
|
|
6386
|
+
{
|
|
6387
|
+
"name": "PANTOGRAPH_TOP_DOWN",
|
|
6388
|
+
"description": "Off-board top-down-pantograph typically for bus charging",
|
|
6389
|
+
"isDeprecated": false,
|
|
6390
|
+
"deprecationReason": null
|
|
6391
|
+
},
|
|
6392
|
+
{
|
|
6393
|
+
"name": "TESLA_R",
|
|
6394
|
+
"description": "Tesla connector \"Roadster\"-type (round, 4 pins)",
|
|
6395
|
+
"isDeprecated": false,
|
|
6396
|
+
"deprecationReason": null
|
|
6397
|
+
},
|
|
6398
|
+
{
|
|
6399
|
+
"name": "TESLA_S",
|
|
6400
|
+
"description": "Tesla connector \"Model-S\"-type (oval, 5 pins)",
|
|
6401
|
+
"isDeprecated": false,
|
|
6402
|
+
"deprecationReason": null
|
|
6403
|
+
},
|
|
6404
|
+
{
|
|
6405
|
+
"name": "GB_T",
|
|
6406
|
+
"description": "The connector type is GB_T (Chinese standard), DC",
|
|
6407
|
+
"isDeprecated": false,
|
|
6408
|
+
"deprecationReason": null
|
|
6409
|
+
},
|
|
6410
|
+
{
|
|
6411
|
+
"name": "CHAOJI",
|
|
6412
|
+
"description": "The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC.",
|
|
6413
|
+
"isDeprecated": false,
|
|
6414
|
+
"deprecationReason": null
|
|
6415
|
+
},
|
|
6416
|
+
{
|
|
6417
|
+
"name": "NEMA_5_20",
|
|
6418
|
+
"description": "The connector type is NEMA 5-20, 3 pins",
|
|
6419
|
+
"isDeprecated": false,
|
|
6420
|
+
"deprecationReason": null
|
|
6421
|
+
},
|
|
6422
|
+
{
|
|
6423
|
+
"name": "NEMA_6_30",
|
|
6424
|
+
"description": "The connector type is NEMA 6-30, 3 pins",
|
|
6425
|
+
"isDeprecated": false,
|
|
6426
|
+
"deprecationReason": null
|
|
6427
|
+
},
|
|
6428
|
+
{
|
|
6429
|
+
"name": "NEMA_6_50",
|
|
6430
|
+
"description": "The connector type is NEMA 6-50, 3 pins",
|
|
6431
|
+
"isDeprecated": false,
|
|
6432
|
+
"deprecationReason": null
|
|
6433
|
+
},
|
|
6434
|
+
{
|
|
6435
|
+
"name": "NEMA_10_30",
|
|
6436
|
+
"description": "The connector type is NEMA 10-30, 3 pins",
|
|
6437
|
+
"isDeprecated": false,
|
|
6438
|
+
"deprecationReason": null
|
|
6439
|
+
},
|
|
6440
|
+
{
|
|
6441
|
+
"name": "NEMA_10_50",
|
|
6442
|
+
"description": "The connector type is NEMA 10-50, 3 pins",
|
|
6443
|
+
"isDeprecated": false,
|
|
6444
|
+
"deprecationReason": null
|
|
6445
|
+
},
|
|
6446
|
+
{
|
|
6447
|
+
"name": "NEMA_14_30",
|
|
6448
|
+
"description": "The connector type is NEMA 14-30, 3 pins, rating of 30 A",
|
|
6449
|
+
"isDeprecated": false,
|
|
6450
|
+
"deprecationReason": null
|
|
6451
|
+
},
|
|
6452
|
+
{
|
|
6453
|
+
"name": "NEMA_14_50",
|
|
6454
|
+
"description": "The connector type is NEMA 14-50, 3 pins, rating of 50 A",
|
|
6455
|
+
"isDeprecated": false,
|
|
6456
|
+
"deprecationReason": null
|
|
6457
|
+
}
|
|
6458
|
+
],
|
|
6459
|
+
"possibleTypes": null
|
|
6460
|
+
},
|
|
6204
6461
|
{
|
|
6205
6462
|
"kind": "OBJECT",
|
|
6206
6463
|
"name": "Contact",
|
|
@@ -8066,7 +8323,7 @@
|
|
|
8066
8323
|
{
|
|
8067
8324
|
"kind": "ENUM",
|
|
8068
8325
|
"name": "LegType",
|
|
8069
|
-
"description": "
|
|
8326
|
+
"description": "Types of a leg",
|
|
8070
8327
|
"fields": null,
|
|
8071
8328
|
"inputFields": null,
|
|
8072
8329
|
"interfaces": null,
|
|
@@ -8105,27 +8362,61 @@
|
|
|
8105
8362
|
"possibleTypes": null
|
|
8106
8363
|
},
|
|
8107
8364
|
{
|
|
8108
|
-
"kind": "
|
|
8109
|
-
"name": "
|
|
8110
|
-
"description":
|
|
8111
|
-
"fields":
|
|
8365
|
+
"kind": "ENUM",
|
|
8366
|
+
"name": "MappingLanguage",
|
|
8367
|
+
"description": "Preferred language for the mapping",
|
|
8368
|
+
"fields": null,
|
|
8369
|
+
"inputFields": null,
|
|
8370
|
+
"interfaces": null,
|
|
8371
|
+
"enumValues": [
|
|
8112
8372
|
{
|
|
8113
|
-
"name": "
|
|
8114
|
-
"description":
|
|
8115
|
-
"
|
|
8116
|
-
|
|
8117
|
-
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
|
|
8121
|
-
|
|
8122
|
-
|
|
8123
|
-
|
|
8124
|
-
|
|
8125
|
-
|
|
8126
|
-
|
|
8127
|
-
|
|
8128
|
-
|
|
8373
|
+
"name": "en",
|
|
8374
|
+
"description": null,
|
|
8375
|
+
"isDeprecated": false,
|
|
8376
|
+
"deprecationReason": null
|
|
8377
|
+
}
|
|
8378
|
+
],
|
|
8379
|
+
"possibleTypes": null
|
|
8380
|
+
},
|
|
8381
|
+
{
|
|
8382
|
+
"kind": "ENUM",
|
|
8383
|
+
"name": "MappingProvider",
|
|
8384
|
+
"description": "Navigation service providers available",
|
|
8385
|
+
"fields": null,
|
|
8386
|
+
"inputFields": null,
|
|
8387
|
+
"interfaces": null,
|
|
8388
|
+
"enumValues": [
|
|
8389
|
+
{
|
|
8390
|
+
"name": "MapboxV5",
|
|
8391
|
+
"description": "Mapbox Navigation",
|
|
8392
|
+
"isDeprecated": false,
|
|
8393
|
+
"deprecationReason": null
|
|
8394
|
+
}
|
|
8395
|
+
],
|
|
8396
|
+
"possibleTypes": null
|
|
8397
|
+
},
|
|
8398
|
+
{
|
|
8399
|
+
"kind": "OBJECT",
|
|
8400
|
+
"name": "Mutation",
|
|
8401
|
+
"description": null,
|
|
8402
|
+
"fields": [
|
|
8403
|
+
{
|
|
8404
|
+
"name": "addReview",
|
|
8405
|
+
"description": "Add a new review.\nIf the `x-token` header is send for a valid user, the review will belong to it, otherwise will be added for an anonymouse user",
|
|
8406
|
+
"args": [
|
|
8407
|
+
{
|
|
8408
|
+
"name": "review",
|
|
8409
|
+
"description": null,
|
|
8410
|
+
"type": {
|
|
8411
|
+
"kind": "NON_NULL",
|
|
8412
|
+
"name": null,
|
|
8413
|
+
"ofType": {
|
|
8414
|
+
"kind": "INPUT_OBJECT",
|
|
8415
|
+
"name": "ReviewAdd",
|
|
8416
|
+
"ofType": null
|
|
8417
|
+
}
|
|
8418
|
+
},
|
|
8419
|
+
"defaultValue": null,
|
|
8129
8420
|
"isDeprecated": false,
|
|
8130
8421
|
"deprecationReason": null
|
|
8131
8422
|
}
|
|
@@ -8332,6 +8623,12 @@
|
|
|
8332
8623
|
"description": "Connectors have a mechanical lock that can be requested by the eMSP to be unlocked.",
|
|
8333
8624
|
"isDeprecated": false,
|
|
8334
8625
|
"deprecationReason": null
|
|
8626
|
+
},
|
|
8627
|
+
{
|
|
8628
|
+
"name": "START_SESSION_CONNECTOR_REQUIRED",
|
|
8629
|
+
"description": "When a StartSession is sent to this EVSE, the MSP is required to add the optional connector_id field in the StartSession object.",
|
|
8630
|
+
"isDeprecated": false,
|
|
8631
|
+
"deprecationReason": null
|
|
8335
8632
|
}
|
|
8336
8633
|
],
|
|
8337
8634
|
"possibleTypes": null
|
|
@@ -8362,7 +8659,7 @@
|
|
|
8362
8659
|
{
|
|
8363
8660
|
"kind": "ENUM",
|
|
8364
8661
|
"name": "OCPIConnectorType",
|
|
8365
|
-
"description": "
|
|
8662
|
+
"description": "Deprecated: Please use ConnectorType instead",
|
|
8366
8663
|
"fields": null,
|
|
8367
8664
|
"inputFields": null,
|
|
8368
8665
|
"interfaces": null,
|
|
@@ -8445,6 +8742,24 @@
|
|
|
8445
8742
|
"isDeprecated": false,
|
|
8446
8743
|
"deprecationReason": null
|
|
8447
8744
|
},
|
|
8745
|
+
{
|
|
8746
|
+
"name": "DOMESTIC_M",
|
|
8747
|
+
"description": "Standard/Domestic household, type \"M\", BS 546, 3 pins",
|
|
8748
|
+
"isDeprecated": false,
|
|
8749
|
+
"deprecationReason": null
|
|
8750
|
+
},
|
|
8751
|
+
{
|
|
8752
|
+
"name": "DOMESTIC_N",
|
|
8753
|
+
"description": "Standard/Domestic household, type \"N\", NBR 14136, 3 pins",
|
|
8754
|
+
"isDeprecated": false,
|
|
8755
|
+
"deprecationReason": null
|
|
8756
|
+
},
|
|
8757
|
+
{
|
|
8758
|
+
"name": "DOMESTIC_O",
|
|
8759
|
+
"description": "Standard/Domestic household, type \"O\", TIS 166-2549, 3 pins",
|
|
8760
|
+
"isDeprecated": false,
|
|
8761
|
+
"deprecationReason": null
|
|
8762
|
+
},
|
|
8448
8763
|
{
|
|
8449
8764
|
"name": "IEC_60309_2_single_16",
|
|
8450
8765
|
"description": "IEC 60309-2 Industrial connector single phase 16 amperes (usually blue)",
|
|
@@ -8534,6 +8849,54 @@
|
|
|
8534
8849
|
"description": "The connector type is GB_T (Chinese standard), DC",
|
|
8535
8850
|
"isDeprecated": false,
|
|
8536
8851
|
"deprecationReason": null
|
|
8852
|
+
},
|
|
8853
|
+
{
|
|
8854
|
+
"name": "CHAOJI",
|
|
8855
|
+
"description": "The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC.",
|
|
8856
|
+
"isDeprecated": false,
|
|
8857
|
+
"deprecationReason": null
|
|
8858
|
+
},
|
|
8859
|
+
{
|
|
8860
|
+
"name": "NEMA_5_20",
|
|
8861
|
+
"description": "The connector type is NEMA 5-20, 3 pins",
|
|
8862
|
+
"isDeprecated": false,
|
|
8863
|
+
"deprecationReason": null
|
|
8864
|
+
},
|
|
8865
|
+
{
|
|
8866
|
+
"name": "NEMA_6_30",
|
|
8867
|
+
"description": "The connector type is NEMA 6-30, 3 pins",
|
|
8868
|
+
"isDeprecated": false,
|
|
8869
|
+
"deprecationReason": null
|
|
8870
|
+
},
|
|
8871
|
+
{
|
|
8872
|
+
"name": "NEMA_6_50",
|
|
8873
|
+
"description": "The connector type is NEMA 6-50, 3 pins",
|
|
8874
|
+
"isDeprecated": false,
|
|
8875
|
+
"deprecationReason": null
|
|
8876
|
+
},
|
|
8877
|
+
{
|
|
8878
|
+
"name": "NEMA_10_30",
|
|
8879
|
+
"description": "The connector type is NEMA 10-30, 3 pins",
|
|
8880
|
+
"isDeprecated": false,
|
|
8881
|
+
"deprecationReason": null
|
|
8882
|
+
},
|
|
8883
|
+
{
|
|
8884
|
+
"name": "NEMA_10_50",
|
|
8885
|
+
"description": "The connector type is NEMA 10-50, 3 pins",
|
|
8886
|
+
"isDeprecated": false,
|
|
8887
|
+
"deprecationReason": null
|
|
8888
|
+
},
|
|
8889
|
+
{
|
|
8890
|
+
"name": "NEMA_14_30",
|
|
8891
|
+
"description": "The connector type is NEMA 14-30, 3 pins, rating of 30 A",
|
|
8892
|
+
"isDeprecated": false,
|
|
8893
|
+
"deprecationReason": null
|
|
8894
|
+
},
|
|
8895
|
+
{
|
|
8896
|
+
"name": "NEMA_14_50",
|
|
8897
|
+
"description": "The connector type is NEMA 14-50, 3 pins, rating of 50 A",
|
|
8898
|
+
"isDeprecated": false,
|
|
8899
|
+
"deprecationReason": null
|
|
8537
8900
|
}
|
|
8538
8901
|
],
|
|
8539
8902
|
"possibleTypes": null
|
|
@@ -9373,6 +9736,18 @@
|
|
|
9373
9736
|
"isDeprecated": false,
|
|
9374
9737
|
"deprecationReason": null
|
|
9375
9738
|
},
|
|
9739
|
+
{
|
|
9740
|
+
"name": "AC_2_PHASE",
|
|
9741
|
+
"description": "AC two phases, only two of the three available phases connected.",
|
|
9742
|
+
"isDeprecated": false,
|
|
9743
|
+
"deprecationReason": null
|
|
9744
|
+
},
|
|
9745
|
+
{
|
|
9746
|
+
"name": "AC_2_PHASE_SPLIT",
|
|
9747
|
+
"description": "AC two phases using split phase system.",
|
|
9748
|
+
"isDeprecated": false,
|
|
9749
|
+
"deprecationReason": null
|
|
9750
|
+
},
|
|
9376
9751
|
{
|
|
9377
9752
|
"name": "DC",
|
|
9378
9753
|
"description": "Direct Current.",
|
|
@@ -10251,6 +10626,30 @@
|
|
|
10251
10626
|
},
|
|
10252
10627
|
"isDeprecated": false,
|
|
10253
10628
|
"deprecationReason": null
|
|
10629
|
+
},
|
|
10630
|
+
{
|
|
10631
|
+
"name": "ranking",
|
|
10632
|
+
"description": "Ranking level on which the operator is placed or null in case the operator is not on any ranking level",
|
|
10633
|
+
"args": [],
|
|
10634
|
+
"type": {
|
|
10635
|
+
"kind": "SCALAR",
|
|
10636
|
+
"name": "Int",
|
|
10637
|
+
"ofType": null
|
|
10638
|
+
},
|
|
10639
|
+
"isDeprecated": false,
|
|
10640
|
+
"deprecationReason": null
|
|
10641
|
+
},
|
|
10642
|
+
{
|
|
10643
|
+
"name": "excluded",
|
|
10644
|
+
"description": "Flag which indicates if the operator is in the excluded list",
|
|
10645
|
+
"args": [],
|
|
10646
|
+
"type": {
|
|
10647
|
+
"kind": "SCALAR",
|
|
10648
|
+
"name": "Boolean",
|
|
10649
|
+
"ofType": null
|
|
10650
|
+
},
|
|
10651
|
+
"isDeprecated": false,
|
|
10652
|
+
"deprecationReason": null
|
|
10254
10653
|
}
|
|
10255
10654
|
],
|
|
10256
10655
|
"inputFields": null,
|
|
@@ -10283,6 +10682,38 @@
|
|
|
10283
10682
|
"defaultValue": null,
|
|
10284
10683
|
"isDeprecated": false,
|
|
10285
10684
|
"deprecationReason": null
|
|
10685
|
+
},
|
|
10686
|
+
{
|
|
10687
|
+
"name": "ranking",
|
|
10688
|
+
"description": "List of ranking level(s) to be retrieved. Valid values are 1 to 10",
|
|
10689
|
+
"type": {
|
|
10690
|
+
"kind": "LIST",
|
|
10691
|
+
"name": null,
|
|
10692
|
+
"ofType": {
|
|
10693
|
+
"kind": "NON_NULL",
|
|
10694
|
+
"name": null,
|
|
10695
|
+
"ofType": {
|
|
10696
|
+
"kind": "SCALAR",
|
|
10697
|
+
"name": "Int",
|
|
10698
|
+
"ofType": null
|
|
10699
|
+
}
|
|
10700
|
+
}
|
|
10701
|
+
},
|
|
10702
|
+
"defaultValue": null,
|
|
10703
|
+
"isDeprecated": false,
|
|
10704
|
+
"deprecationReason": null
|
|
10705
|
+
},
|
|
10706
|
+
{
|
|
10707
|
+
"name": "excluded",
|
|
10708
|
+
"description": "Only retrieve operators that are in the excluded list",
|
|
10709
|
+
"type": {
|
|
10710
|
+
"kind": "SCALAR",
|
|
10711
|
+
"name": "Boolean",
|
|
10712
|
+
"ofType": null
|
|
10713
|
+
},
|
|
10714
|
+
"defaultValue": null,
|
|
10715
|
+
"isDeprecated": false,
|
|
10716
|
+
"deprecationReason": null
|
|
10286
10717
|
}
|
|
10287
10718
|
],
|
|
10288
10719
|
"interfaces": null,
|
|
@@ -10690,7 +11121,250 @@
|
|
|
10690
11121
|
},
|
|
10691
11122
|
{
|
|
10692
11123
|
"name": "displayValue",
|
|
10693
|
-
"description": "The value of the price which should be
|
|
11124
|
+
"description": "The value of the price which should be display by the frontend",
|
|
11125
|
+
"args": [],
|
|
11126
|
+
"type": {
|
|
11127
|
+
"kind": "SCALAR",
|
|
11128
|
+
"name": "String",
|
|
11129
|
+
"ofType": null
|
|
11130
|
+
},
|
|
11131
|
+
"isDeprecated": false,
|
|
11132
|
+
"deprecationReason": null
|
|
11133
|
+
}
|
|
11134
|
+
],
|
|
11135
|
+
"inputFields": null,
|
|
11136
|
+
"interfaces": [],
|
|
11137
|
+
"enumValues": null,
|
|
11138
|
+
"possibleTypes": null
|
|
11139
|
+
},
|
|
11140
|
+
{
|
|
11141
|
+
"kind": "OBJECT",
|
|
11142
|
+
"name": "Pricing",
|
|
11143
|
+
"description": null,
|
|
11144
|
+
"fields": [
|
|
11145
|
+
{
|
|
11146
|
+
"name": "id",
|
|
11147
|
+
"description": "Unique ID of a price",
|
|
11148
|
+
"args": [],
|
|
11149
|
+
"type": {
|
|
11150
|
+
"kind": "SCALAR",
|
|
11151
|
+
"name": "String",
|
|
11152
|
+
"ofType": null
|
|
11153
|
+
},
|
|
11154
|
+
"isDeprecated": false,
|
|
11155
|
+
"deprecationReason": null
|
|
11156
|
+
},
|
|
11157
|
+
{
|
|
11158
|
+
"name": "price_list",
|
|
11159
|
+
"description": "Price details",
|
|
11160
|
+
"args": [],
|
|
11161
|
+
"type": {
|
|
11162
|
+
"kind": "LIST",
|
|
11163
|
+
"name": null,
|
|
11164
|
+
"ofType": {
|
|
11165
|
+
"kind": "OBJECT",
|
|
11166
|
+
"name": "PricingList",
|
|
11167
|
+
"ofType": null
|
|
11168
|
+
}
|
|
11169
|
+
},
|
|
11170
|
+
"isDeprecated": false,
|
|
11171
|
+
"deprecationReason": null
|
|
11172
|
+
}
|
|
11173
|
+
],
|
|
11174
|
+
"inputFields": null,
|
|
11175
|
+
"interfaces": [],
|
|
11176
|
+
"enumValues": null,
|
|
11177
|
+
"possibleTypes": null
|
|
11178
|
+
},
|
|
11179
|
+
{
|
|
11180
|
+
"kind": "OBJECT",
|
|
11181
|
+
"name": "PricingList",
|
|
11182
|
+
"description": null,
|
|
11183
|
+
"fields": [
|
|
11184
|
+
{
|
|
11185
|
+
"name": "partner",
|
|
11186
|
+
"description": "(MSP) Mobility Service Provider",
|
|
11187
|
+
"args": [],
|
|
11188
|
+
"type": {
|
|
11189
|
+
"kind": "SCALAR",
|
|
11190
|
+
"name": "String",
|
|
11191
|
+
"ofType": null
|
|
11192
|
+
},
|
|
11193
|
+
"isDeprecated": false,
|
|
11194
|
+
"deprecationReason": null
|
|
11195
|
+
},
|
|
11196
|
+
{
|
|
11197
|
+
"name": "product",
|
|
11198
|
+
"description": "Product details",
|
|
11199
|
+
"args": [],
|
|
11200
|
+
"type": {
|
|
11201
|
+
"kind": "OBJECT",
|
|
11202
|
+
"name": "PricingListProduct",
|
|
11203
|
+
"ofType": null
|
|
11204
|
+
},
|
|
11205
|
+
"isDeprecated": false,
|
|
11206
|
+
"deprecationReason": null
|
|
11207
|
+
},
|
|
11208
|
+
{
|
|
11209
|
+
"name": "elements",
|
|
11210
|
+
"description": "Price product elements",
|
|
11211
|
+
"args": [],
|
|
11212
|
+
"type": {
|
|
11213
|
+
"kind": "LIST",
|
|
11214
|
+
"name": null,
|
|
11215
|
+
"ofType": {
|
|
11216
|
+
"kind": "OBJECT",
|
|
11217
|
+
"name": "PricingListElement",
|
|
11218
|
+
"ofType": null
|
|
11219
|
+
}
|
|
11220
|
+
},
|
|
11221
|
+
"isDeprecated": false,
|
|
11222
|
+
"deprecationReason": null
|
|
11223
|
+
}
|
|
11224
|
+
],
|
|
11225
|
+
"inputFields": null,
|
|
11226
|
+
"interfaces": [],
|
|
11227
|
+
"enumValues": null,
|
|
11228
|
+
"possibleTypes": null
|
|
11229
|
+
},
|
|
11230
|
+
{
|
|
11231
|
+
"kind": "OBJECT",
|
|
11232
|
+
"name": "PricingListElement",
|
|
11233
|
+
"description": null,
|
|
11234
|
+
"fields": [
|
|
11235
|
+
{
|
|
11236
|
+
"name": "type",
|
|
11237
|
+
"description": "Price element type.",
|
|
11238
|
+
"args": [],
|
|
11239
|
+
"type": {
|
|
11240
|
+
"kind": "ENUM",
|
|
11241
|
+
"name": "PricingListElementType",
|
|
11242
|
+
"ofType": null
|
|
11243
|
+
},
|
|
11244
|
+
"isDeprecated": false,
|
|
11245
|
+
"deprecationReason": null
|
|
11246
|
+
},
|
|
11247
|
+
{
|
|
11248
|
+
"name": "price_excl_vat",
|
|
11249
|
+
"description": "Price of the element type without VAT.",
|
|
11250
|
+
"args": [],
|
|
11251
|
+
"type": {
|
|
11252
|
+
"kind": "SCALAR",
|
|
11253
|
+
"name": "Float",
|
|
11254
|
+
"ofType": null
|
|
11255
|
+
},
|
|
11256
|
+
"isDeprecated": false,
|
|
11257
|
+
"deprecationReason": null
|
|
11258
|
+
},
|
|
11259
|
+
{
|
|
11260
|
+
"name": "vat",
|
|
11261
|
+
"description": "VAT percentage to apply",
|
|
11262
|
+
"args": [],
|
|
11263
|
+
"type": {
|
|
11264
|
+
"kind": "SCALAR",
|
|
11265
|
+
"name": "Float",
|
|
11266
|
+
"ofType": null
|
|
11267
|
+
},
|
|
11268
|
+
"isDeprecated": false,
|
|
11269
|
+
"deprecationReason": null
|
|
11270
|
+
}
|
|
11271
|
+
],
|
|
11272
|
+
"inputFields": null,
|
|
11273
|
+
"interfaces": [],
|
|
11274
|
+
"enumValues": null,
|
|
11275
|
+
"possibleTypes": null
|
|
11276
|
+
},
|
|
11277
|
+
{
|
|
11278
|
+
"kind": "ENUM",
|
|
11279
|
+
"name": "PricingListElementType",
|
|
11280
|
+
"description": null,
|
|
11281
|
+
"fields": null,
|
|
11282
|
+
"inputFields": null,
|
|
11283
|
+
"interfaces": null,
|
|
11284
|
+
"enumValues": [
|
|
11285
|
+
{
|
|
11286
|
+
"name": "ENERGY",
|
|
11287
|
+
"description": "Price per kWh",
|
|
11288
|
+
"isDeprecated": false,
|
|
11289
|
+
"deprecationReason": null
|
|
11290
|
+
},
|
|
11291
|
+
{
|
|
11292
|
+
"name": "FLAT",
|
|
11293
|
+
"description": "Starting price, fixed fee per charge session",
|
|
11294
|
+
"isDeprecated": false,
|
|
11295
|
+
"deprecationReason": null
|
|
11296
|
+
},
|
|
11297
|
+
{
|
|
11298
|
+
"name": "TIME",
|
|
11299
|
+
"description": "Fixed price per hour",
|
|
11300
|
+
"isDeprecated": false,
|
|
11301
|
+
"deprecationReason": null
|
|
11302
|
+
},
|
|
11303
|
+
{
|
|
11304
|
+
"name": "PARKING_TIME",
|
|
11305
|
+
"description": "Parking price per hour",
|
|
11306
|
+
"isDeprecated": false,
|
|
11307
|
+
"deprecationReason": null
|
|
11308
|
+
}
|
|
11309
|
+
],
|
|
11310
|
+
"possibleTypes": null
|
|
11311
|
+
},
|
|
11312
|
+
{
|
|
11313
|
+
"kind": "OBJECT",
|
|
11314
|
+
"name": "PricingListProduct",
|
|
11315
|
+
"description": null,
|
|
11316
|
+
"fields": [
|
|
11317
|
+
{
|
|
11318
|
+
"name": "name",
|
|
11319
|
+
"description": "Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price",
|
|
11320
|
+
"args": [],
|
|
11321
|
+
"type": {
|
|
11322
|
+
"kind": "SCALAR",
|
|
11323
|
+
"name": "String",
|
|
11324
|
+
"ofType": null
|
|
11325
|
+
},
|
|
11326
|
+
"isDeprecated": false,
|
|
11327
|
+
"deprecationReason": null
|
|
11328
|
+
},
|
|
11329
|
+
{
|
|
11330
|
+
"name": "description",
|
|
11331
|
+
"description": "Description of the product",
|
|
11332
|
+
"args": [],
|
|
11333
|
+
"type": {
|
|
11334
|
+
"kind": "SCALAR",
|
|
11335
|
+
"name": "String",
|
|
11336
|
+
"ofType": null
|
|
11337
|
+
},
|
|
11338
|
+
"isDeprecated": false,
|
|
11339
|
+
"deprecationReason": null
|
|
11340
|
+
},
|
|
11341
|
+
{
|
|
11342
|
+
"name": "subscription_type",
|
|
11343
|
+
"description": "Subscription type",
|
|
11344
|
+
"args": [],
|
|
11345
|
+
"type": {
|
|
11346
|
+
"kind": "SCALAR",
|
|
11347
|
+
"name": "String",
|
|
11348
|
+
"ofType": null
|
|
11349
|
+
},
|
|
11350
|
+
"isDeprecated": false,
|
|
11351
|
+
"deprecationReason": null
|
|
11352
|
+
},
|
|
11353
|
+
{
|
|
11354
|
+
"name": "subscription_fee_excl_vat",
|
|
11355
|
+
"description": "Subscription fee without VAT",
|
|
11356
|
+
"args": [],
|
|
11357
|
+
"type": {
|
|
11358
|
+
"kind": "SCALAR",
|
|
11359
|
+
"name": "Float",
|
|
11360
|
+
"ofType": null
|
|
11361
|
+
},
|
|
11362
|
+
"isDeprecated": false,
|
|
11363
|
+
"deprecationReason": null
|
|
11364
|
+
},
|
|
11365
|
+
{
|
|
11366
|
+
"name": "currency",
|
|
11367
|
+
"description": "Currency",
|
|
10694
11368
|
"args": [],
|
|
10695
11369
|
"type": {
|
|
10696
11370
|
"kind": "SCALAR",
|
|
@@ -11391,13 +12065,82 @@
|
|
|
11391
12065
|
}
|
|
11392
12066
|
],
|
|
11393
12067
|
"type": {
|
|
11394
|
-
"kind": "LIST",
|
|
11395
|
-
"name": null,
|
|
11396
|
-
"ofType": {
|
|
11397
|
-
"kind": "OBJECT",
|
|
11398
|
-
"name": "OCPITariff",
|
|
11399
|
-
"ofType": null
|
|
11400
|
-
}
|
|
12068
|
+
"kind": "LIST",
|
|
12069
|
+
"name": null,
|
|
12070
|
+
"ofType": {
|
|
12071
|
+
"kind": "OBJECT",
|
|
12072
|
+
"name": "OCPITariff",
|
|
12073
|
+
"ofType": null
|
|
12074
|
+
}
|
|
12075
|
+
},
|
|
12076
|
+
"isDeprecated": false,
|
|
12077
|
+
"deprecationReason": null
|
|
12078
|
+
},
|
|
12079
|
+
{
|
|
12080
|
+
"name": "navigationMapping",
|
|
12081
|
+
"description": "Convert a route to navigation instructions for a specified mapping provider",
|
|
12082
|
+
"args": [
|
|
12083
|
+
{
|
|
12084
|
+
"name": "id",
|
|
12085
|
+
"description": "ID of a route",
|
|
12086
|
+
"type": {
|
|
12087
|
+
"kind": "NON_NULL",
|
|
12088
|
+
"name": null,
|
|
12089
|
+
"ofType": {
|
|
12090
|
+
"kind": "SCALAR",
|
|
12091
|
+
"name": "ID",
|
|
12092
|
+
"ofType": null
|
|
12093
|
+
}
|
|
12094
|
+
},
|
|
12095
|
+
"defaultValue": null,
|
|
12096
|
+
"isDeprecated": false,
|
|
12097
|
+
"deprecationReason": null
|
|
12098
|
+
},
|
|
12099
|
+
{
|
|
12100
|
+
"name": "provider",
|
|
12101
|
+
"description": "Navigation service provider",
|
|
12102
|
+
"type": {
|
|
12103
|
+
"kind": "NON_NULL",
|
|
12104
|
+
"name": null,
|
|
12105
|
+
"ofType": {
|
|
12106
|
+
"kind": "ENUM",
|
|
12107
|
+
"name": "MappingProvider",
|
|
12108
|
+
"ofType": null
|
|
12109
|
+
}
|
|
12110
|
+
},
|
|
12111
|
+
"defaultValue": null,
|
|
12112
|
+
"isDeprecated": false,
|
|
12113
|
+
"deprecationReason": null
|
|
12114
|
+
},
|
|
12115
|
+
{
|
|
12116
|
+
"name": "precision",
|
|
12117
|
+
"description": "Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6, the default is 5",
|
|
12118
|
+
"type": {
|
|
12119
|
+
"kind": "SCALAR",
|
|
12120
|
+
"name": "Int",
|
|
12121
|
+
"ofType": null
|
|
12122
|
+
},
|
|
12123
|
+
"defaultValue": null,
|
|
12124
|
+
"isDeprecated": false,
|
|
12125
|
+
"deprecationReason": null
|
|
12126
|
+
},
|
|
12127
|
+
{
|
|
12128
|
+
"name": "language",
|
|
12129
|
+
"description": "Preferred language, the default is English",
|
|
12130
|
+
"type": {
|
|
12131
|
+
"kind": "ENUM",
|
|
12132
|
+
"name": "MappingLanguage",
|
|
12133
|
+
"ofType": null
|
|
12134
|
+
},
|
|
12135
|
+
"defaultValue": null,
|
|
12136
|
+
"isDeprecated": false,
|
|
12137
|
+
"deprecationReason": null
|
|
12138
|
+
}
|
|
12139
|
+
],
|
|
12140
|
+
"type": {
|
|
12141
|
+
"kind": "SCALAR",
|
|
12142
|
+
"name": "JSON",
|
|
12143
|
+
"ofType": null
|
|
11401
12144
|
},
|
|
11402
12145
|
"isDeprecated": false,
|
|
11403
12146
|
"deprecationReason": null
|
|
@@ -11502,6 +12245,18 @@
|
|
|
11502
12245
|
"name": "Int",
|
|
11503
12246
|
"ofType": null
|
|
11504
12247
|
},
|
|
12248
|
+
"isDeprecated": true,
|
|
12249
|
+
"deprecationReason": "In favor of occupants"
|
|
12250
|
+
},
|
|
12251
|
+
{
|
|
12252
|
+
"name": "occupants",
|
|
12253
|
+
"description": "Number of occupants",
|
|
12254
|
+
"args": [],
|
|
12255
|
+
"type": {
|
|
12256
|
+
"kind": "SCALAR",
|
|
12257
|
+
"name": "Int",
|
|
12258
|
+
"ofType": null
|
|
12259
|
+
},
|
|
11505
12260
|
"isDeprecated": false,
|
|
11506
12261
|
"deprecationReason": null
|
|
11507
12262
|
},
|
|
@@ -11924,8 +12679,8 @@
|
|
|
11924
12679
|
"deprecationReason": null
|
|
11925
12680
|
},
|
|
11926
12681
|
{
|
|
11927
|
-
"name": "
|
|
11928
|
-
"description": "Number of
|
|
12682
|
+
"name": "occupants",
|
|
12683
|
+
"description": "Number of occupants",
|
|
11929
12684
|
"type": {
|
|
11930
12685
|
"kind": "SCALAR",
|
|
11931
12686
|
"name": "Int",
|
|
@@ -11987,7 +12742,7 @@
|
|
|
11987
12742
|
"args": [],
|
|
11988
12743
|
"type": {
|
|
11989
12744
|
"kind": "ENUM",
|
|
11990
|
-
"name": "
|
|
12745
|
+
"name": "ConnectorType",
|
|
11991
12746
|
"ofType": null
|
|
11992
12747
|
},
|
|
11993
12748
|
"isDeprecated": false,
|
|
@@ -12025,7 +12780,7 @@
|
|
|
12025
12780
|
"name": null,
|
|
12026
12781
|
"ofType": {
|
|
12027
12782
|
"kind": "ENUM",
|
|
12028
|
-
"name": "
|
|
12783
|
+
"name": "ConnectorType",
|
|
12029
12784
|
"ofType": null
|
|
12030
12785
|
}
|
|
12031
12786
|
},
|
|
@@ -12160,7 +12915,7 @@
|
|
|
12160
12915
|
},
|
|
12161
12916
|
{
|
|
12162
12917
|
"name": "operators",
|
|
12163
|
-
"description": "Operator
|
|
12918
|
+
"description": "Operator prioritization for a route",
|
|
12164
12919
|
"args": [],
|
|
12165
12920
|
"type": {
|
|
12166
12921
|
"kind": "OBJECT",
|
|
@@ -12340,7 +13095,7 @@
|
|
|
12340
13095
|
},
|
|
12341
13096
|
{
|
|
12342
13097
|
"name": "operators",
|
|
12343
|
-
"description": "Operator
|
|
13098
|
+
"description": "Operator prioritization for a route",
|
|
12344
13099
|
"type": {
|
|
12345
13100
|
"kind": "INPUT_OBJECT",
|
|
12346
13101
|
"name": "RouteOperatorsInput",
|
|
@@ -12585,7 +13340,7 @@
|
|
|
12585
13340
|
"args": [],
|
|
12586
13341
|
"type": {
|
|
12587
13342
|
"kind": "ENUM",
|
|
12588
|
-
"name": "
|
|
13343
|
+
"name": "ConnectorType",
|
|
12589
13344
|
"ofType": null
|
|
12590
13345
|
},
|
|
12591
13346
|
"isDeprecated": false,
|
|
@@ -12724,7 +13479,7 @@
|
|
|
12724
13479
|
"description": "Plug type that was provided/selected by a user",
|
|
12725
13480
|
"type": {
|
|
12726
13481
|
"kind": "ENUM",
|
|
12727
|
-
"name": "
|
|
13482
|
+
"name": "ConnectorType",
|
|
12728
13483
|
"ofType": null
|
|
12729
13484
|
},
|
|
12730
13485
|
"defaultValue": null,
|
|
@@ -13232,8 +13987,8 @@
|
|
|
13232
13987
|
"name": "Int",
|
|
13233
13988
|
"ofType": null
|
|
13234
13989
|
},
|
|
13235
|
-
"isDeprecated":
|
|
13236
|
-
"deprecationReason":
|
|
13990
|
+
"isDeprecated": true,
|
|
13991
|
+
"deprecationReason": "Will be removed in the future"
|
|
13237
13992
|
},
|
|
13238
13993
|
{
|
|
13239
13994
|
"name": "rangeStart",
|
|
@@ -13325,7 +14080,7 @@
|
|
|
13325
14080
|
"args": [
|
|
13326
14081
|
{
|
|
13327
14082
|
"name": "decimals",
|
|
13328
|
-
"description": "Number of decimals used
|
|
14083
|
+
"description": "Number of decimals used by the algorithm to encode [long, lat] pairs. Allowed values are 5 or 6, default is 5",
|
|
13329
14084
|
"type": {
|
|
13330
14085
|
"kind": "SCALAR",
|
|
13331
14086
|
"name": "Int",
|
|
@@ -13471,6 +14226,22 @@
|
|
|
13471
14226
|
},
|
|
13472
14227
|
"isDeprecated": false,
|
|
13473
14228
|
"deprecationReason": null
|
|
14229
|
+
},
|
|
14230
|
+
{
|
|
14231
|
+
"name": "tags",
|
|
14232
|
+
"description": "Tags of a route alternative. Values: road, highway, toll, ferry, etc.",
|
|
14233
|
+
"args": [],
|
|
14234
|
+
"type": {
|
|
14235
|
+
"kind": "LIST",
|
|
14236
|
+
"name": null,
|
|
14237
|
+
"ofType": {
|
|
14238
|
+
"kind": "ENUM",
|
|
14239
|
+
"name": "RouteTagType",
|
|
14240
|
+
"ofType": null
|
|
14241
|
+
}
|
|
14242
|
+
},
|
|
14243
|
+
"isDeprecated": false,
|
|
14244
|
+
"deprecationReason": null
|
|
13474
14245
|
}
|
|
13475
14246
|
],
|
|
13476
14247
|
"inputFields": null,
|
|
@@ -13565,7 +14336,7 @@
|
|
|
13565
14336
|
},
|
|
13566
14337
|
{
|
|
13567
14338
|
"name": "bestMatching",
|
|
13568
|
-
"description": "Best matching
|
|
14339
|
+
"description": "Best matching route based on operator and amenities preferences",
|
|
13569
14340
|
"isDeprecated": false,
|
|
13570
14341
|
"deprecationReason": null
|
|
13571
14342
|
},
|
|
@@ -14042,7 +14813,19 @@
|
|
|
14042
14813
|
},
|
|
14043
14814
|
{
|
|
14044
14815
|
"name": "operatorId",
|
|
14045
|
-
"description": "ID of
|
|
14816
|
+
"description": "ID of an operator",
|
|
14817
|
+
"args": [],
|
|
14818
|
+
"type": {
|
|
14819
|
+
"kind": "SCALAR",
|
|
14820
|
+
"name": "String",
|
|
14821
|
+
"ofType": null
|
|
14822
|
+
},
|
|
14823
|
+
"isDeprecated": false,
|
|
14824
|
+
"deprecationReason": null
|
|
14825
|
+
},
|
|
14826
|
+
{
|
|
14827
|
+
"name": "operatorName",
|
|
14828
|
+
"description": "Name of an operator",
|
|
14046
14829
|
"args": [],
|
|
14047
14830
|
"type": {
|
|
14048
14831
|
"kind": "SCALAR",
|
|
@@ -14052,6 +14835,18 @@
|
|
|
14052
14835
|
"isDeprecated": false,
|
|
14053
14836
|
"deprecationReason": null
|
|
14054
14837
|
},
|
|
14838
|
+
{
|
|
14839
|
+
"name": "operatorRanking",
|
|
14840
|
+
"description": "Ranking of an operator",
|
|
14841
|
+
"args": [],
|
|
14842
|
+
"type": {
|
|
14843
|
+
"kind": "SCALAR",
|
|
14844
|
+
"name": "Int",
|
|
14845
|
+
"ofType": null
|
|
14846
|
+
},
|
|
14847
|
+
"isDeprecated": false,
|
|
14848
|
+
"deprecationReason": null
|
|
14849
|
+
},
|
|
14055
14850
|
{
|
|
14056
14851
|
"name": "chargeTime",
|
|
14057
14852
|
"description": "Total time required to charge a battery until 80%, in seconds",
|
|
@@ -14147,6 +14942,63 @@
|
|
|
14147
14942
|
},
|
|
14148
14943
|
"isDeprecated": false,
|
|
14149
14944
|
"deprecationReason": null
|
|
14945
|
+
},
|
|
14946
|
+
{
|
|
14947
|
+
"name": "polyline",
|
|
14948
|
+
"description": "Polyline containing encoded coordinates",
|
|
14949
|
+
"args": [
|
|
14950
|
+
{
|
|
14951
|
+
"name": "decimals",
|
|
14952
|
+
"description": "Number of decimals used by the algorithm to encode [long, lat] pairs. Allowed values are 5 or 6, default is 5",
|
|
14953
|
+
"type": {
|
|
14954
|
+
"kind": "SCALAR",
|
|
14955
|
+
"name": "Int",
|
|
14956
|
+
"ofType": null
|
|
14957
|
+
},
|
|
14958
|
+
"defaultValue": null,
|
|
14959
|
+
"isDeprecated": false,
|
|
14960
|
+
"deprecationReason": null
|
|
14961
|
+
}
|
|
14962
|
+
],
|
|
14963
|
+
"type": {
|
|
14964
|
+
"kind": "SCALAR",
|
|
14965
|
+
"name": "String",
|
|
14966
|
+
"ofType": null
|
|
14967
|
+
},
|
|
14968
|
+
"isDeprecated": false,
|
|
14969
|
+
"deprecationReason": null
|
|
14970
|
+
},
|
|
14971
|
+
{
|
|
14972
|
+
"name": "steps",
|
|
14973
|
+
"description": "Steps of a leg",
|
|
14974
|
+
"args": [],
|
|
14975
|
+
"type": {
|
|
14976
|
+
"kind": "LIST",
|
|
14977
|
+
"name": null,
|
|
14978
|
+
"ofType": {
|
|
14979
|
+
"kind": "OBJECT",
|
|
14980
|
+
"name": "RouteStep",
|
|
14981
|
+
"ofType": null
|
|
14982
|
+
}
|
|
14983
|
+
},
|
|
14984
|
+
"isDeprecated": false,
|
|
14985
|
+
"deprecationReason": null
|
|
14986
|
+
},
|
|
14987
|
+
{
|
|
14988
|
+
"name": "tags",
|
|
14989
|
+
"description": "Tags of a leg. Values: road, highway, toll, ferry",
|
|
14990
|
+
"args": [],
|
|
14991
|
+
"type": {
|
|
14992
|
+
"kind": "LIST",
|
|
14993
|
+
"name": null,
|
|
14994
|
+
"ofType": {
|
|
14995
|
+
"kind": "ENUM",
|
|
14996
|
+
"name": "RouteTagType",
|
|
14997
|
+
"ofType": null
|
|
14998
|
+
}
|
|
14999
|
+
},
|
|
15000
|
+
"isDeprecated": false,
|
|
15001
|
+
"deprecationReason": null
|
|
14150
15002
|
}
|
|
14151
15003
|
],
|
|
14152
15004
|
"inputFields": null,
|
|
@@ -14157,7 +15009,7 @@
|
|
|
14157
15009
|
{
|
|
14158
15010
|
"kind": "OBJECT",
|
|
14159
15011
|
"name": "RouteOperators",
|
|
14160
|
-
"description":
|
|
15012
|
+
"description": "Prioritized operators for a route calculation",
|
|
14161
15013
|
"fields": [
|
|
14162
15014
|
{
|
|
14163
15015
|
"name": "type",
|
|
@@ -14208,7 +15060,7 @@
|
|
|
14208
15060
|
{
|
|
14209
15061
|
"kind": "INPUT_OBJECT",
|
|
14210
15062
|
"name": "RouteOperatorsInput",
|
|
14211
|
-
"description": "
|
|
15063
|
+
"description": "Prioritized operators for a route calculation",
|
|
14212
15064
|
"fields": null,
|
|
14213
15065
|
"inputFields": [
|
|
14214
15066
|
{
|
|
@@ -14259,7 +15111,7 @@
|
|
|
14259
15111
|
{
|
|
14260
15112
|
"kind": "OBJECT",
|
|
14261
15113
|
"name": "RouteOperatorsRanking",
|
|
14262
|
-
"description": "Ranking configuration for
|
|
15114
|
+
"description": "Ranking configuration for prioritized operators",
|
|
14263
15115
|
"fields": [
|
|
14264
15116
|
{
|
|
14265
15117
|
"name": "level1",
|
|
@@ -14430,7 +15282,7 @@
|
|
|
14430
15282
|
{
|
|
14431
15283
|
"kind": "INPUT_OBJECT",
|
|
14432
15284
|
"name": "RouteOperatorsRankingInput",
|
|
14433
|
-
"description": "Ranking configuration for
|
|
15285
|
+
"description": "Ranking configuration for prioritized operators",
|
|
14434
15286
|
"fields": null,
|
|
14435
15287
|
"inputFields": [
|
|
14436
15288
|
{
|
|
@@ -14601,7 +15453,7 @@
|
|
|
14601
15453
|
{
|
|
14602
15454
|
"kind": "ENUM",
|
|
14603
15455
|
"name": "RouteOperatorsType",
|
|
14604
|
-
"description": "Type of operator
|
|
15456
|
+
"description": "Type of operator prioritization for a route",
|
|
14605
15457
|
"fields": null,
|
|
14606
15458
|
"inputFields": null,
|
|
14607
15459
|
"interfaces": null,
|
|
@@ -14620,7 +15472,7 @@
|
|
|
14620
15472
|
},
|
|
14621
15473
|
{
|
|
14622
15474
|
"name": "required",
|
|
14623
|
-
"description": "Operators given in the operators ranking will be required when calculating routes,
|
|
15475
|
+
"description": "Operators given in the operators ranking will be required when calculating routes, all other operators will be ignored",
|
|
14624
15476
|
"isDeprecated": false,
|
|
14625
15477
|
"deprecationReason": null
|
|
14626
15478
|
}
|
|
@@ -14887,6 +15739,137 @@
|
|
|
14887
15739
|
],
|
|
14888
15740
|
"possibleTypes": null
|
|
14889
15741
|
},
|
|
15742
|
+
{
|
|
15743
|
+
"kind": "OBJECT",
|
|
15744
|
+
"name": "RouteStep",
|
|
15745
|
+
"description": null,
|
|
15746
|
+
"fields": [
|
|
15747
|
+
{
|
|
15748
|
+
"name": "id",
|
|
15749
|
+
"description": "ID of a step",
|
|
15750
|
+
"args": [],
|
|
15751
|
+
"type": {
|
|
15752
|
+
"kind": "SCALAR",
|
|
15753
|
+
"name": "ID",
|
|
15754
|
+
"ofType": null
|
|
15755
|
+
},
|
|
15756
|
+
"isDeprecated": false,
|
|
15757
|
+
"deprecationReason": null
|
|
15758
|
+
},
|
|
15759
|
+
{
|
|
15760
|
+
"name": "type",
|
|
15761
|
+
"description": "Type of a step",
|
|
15762
|
+
"args": [],
|
|
15763
|
+
"type": {
|
|
15764
|
+
"kind": "ENUM",
|
|
15765
|
+
"name": "StepType",
|
|
15766
|
+
"ofType": null
|
|
15767
|
+
},
|
|
15768
|
+
"isDeprecated": false,
|
|
15769
|
+
"deprecationReason": null
|
|
15770
|
+
},
|
|
15771
|
+
{
|
|
15772
|
+
"name": "polyline",
|
|
15773
|
+
"description": "Polyline containing encoded coordinates",
|
|
15774
|
+
"args": [
|
|
15775
|
+
{
|
|
15776
|
+
"name": "decimals",
|
|
15777
|
+
"description": "Number of decimals used by the algorithm to encode [long, lat] pairs. Allowed values are 5 or 6, default is 5",
|
|
15778
|
+
"type": {
|
|
15779
|
+
"kind": "SCALAR",
|
|
15780
|
+
"name": "Int",
|
|
15781
|
+
"ofType": null
|
|
15782
|
+
},
|
|
15783
|
+
"defaultValue": null,
|
|
15784
|
+
"isDeprecated": false,
|
|
15785
|
+
"deprecationReason": null
|
|
15786
|
+
}
|
|
15787
|
+
],
|
|
15788
|
+
"type": {
|
|
15789
|
+
"kind": "SCALAR",
|
|
15790
|
+
"name": "String",
|
|
15791
|
+
"ofType": null
|
|
15792
|
+
},
|
|
15793
|
+
"isDeprecated": false,
|
|
15794
|
+
"deprecationReason": null
|
|
15795
|
+
},
|
|
15796
|
+
{
|
|
15797
|
+
"name": "distance",
|
|
15798
|
+
"description": "Distance from the start to the end of a step, in meters",
|
|
15799
|
+
"args": [],
|
|
15800
|
+
"type": {
|
|
15801
|
+
"kind": "SCALAR",
|
|
15802
|
+
"name": "Int",
|
|
15803
|
+
"ofType": null
|
|
15804
|
+
},
|
|
15805
|
+
"isDeprecated": false,
|
|
15806
|
+
"deprecationReason": null
|
|
15807
|
+
},
|
|
15808
|
+
{
|
|
15809
|
+
"name": "duration",
|
|
15810
|
+
"description": "Total drive time from the start to the end of a step, in seconds",
|
|
15811
|
+
"args": [],
|
|
15812
|
+
"type": {
|
|
15813
|
+
"kind": "SCALAR",
|
|
15814
|
+
"name": "Int",
|
|
15815
|
+
"ofType": null
|
|
15816
|
+
},
|
|
15817
|
+
"isDeprecated": false,
|
|
15818
|
+
"deprecationReason": null
|
|
15819
|
+
},
|
|
15820
|
+
{
|
|
15821
|
+
"name": "consumption",
|
|
15822
|
+
"description": "Total enery used in a step in kWh",
|
|
15823
|
+
"args": [],
|
|
15824
|
+
"type": {
|
|
15825
|
+
"kind": "SCALAR",
|
|
15826
|
+
"name": "Float",
|
|
15827
|
+
"ofType": null
|
|
15828
|
+
},
|
|
15829
|
+
"isDeprecated": false,
|
|
15830
|
+
"deprecationReason": null
|
|
15831
|
+
}
|
|
15832
|
+
],
|
|
15833
|
+
"inputFields": null,
|
|
15834
|
+
"interfaces": [],
|
|
15835
|
+
"enumValues": null,
|
|
15836
|
+
"possibleTypes": null
|
|
15837
|
+
},
|
|
15838
|
+
{
|
|
15839
|
+
"kind": "ENUM",
|
|
15840
|
+
"name": "RouteTagType",
|
|
15841
|
+
"description": "Tags of a route",
|
|
15842
|
+
"fields": null,
|
|
15843
|
+
"inputFields": null,
|
|
15844
|
+
"interfaces": null,
|
|
15845
|
+
"enumValues": [
|
|
15846
|
+
{
|
|
15847
|
+
"name": "road",
|
|
15848
|
+
"description": null,
|
|
15849
|
+
"isDeprecated": false,
|
|
15850
|
+
"deprecationReason": null
|
|
15851
|
+
},
|
|
15852
|
+
{
|
|
15853
|
+
"name": "highway",
|
|
15854
|
+
"description": null,
|
|
15855
|
+
"isDeprecated": false,
|
|
15856
|
+
"deprecationReason": null
|
|
15857
|
+
},
|
|
15858
|
+
{
|
|
15859
|
+
"name": "toll",
|
|
15860
|
+
"description": null,
|
|
15861
|
+
"isDeprecated": false,
|
|
15862
|
+
"deprecationReason": null
|
|
15863
|
+
},
|
|
15864
|
+
{
|
|
15865
|
+
"name": "ferry",
|
|
15866
|
+
"description": null,
|
|
15867
|
+
"isDeprecated": false,
|
|
15868
|
+
"deprecationReason": null
|
|
15869
|
+
}
|
|
15870
|
+
],
|
|
15871
|
+
"possibleTypes": null
|
|
15872
|
+
},
|
|
14890
15873
|
{
|
|
14891
15874
|
"kind": "OBJECT",
|
|
14892
15875
|
"name": "StandardStats",
|
|
@@ -14898,7 +15881,7 @@
|
|
|
14898
15881
|
"args": [],
|
|
14899
15882
|
"type": {
|
|
14900
15883
|
"kind": "ENUM",
|
|
14901
|
-
"name": "
|
|
15884
|
+
"name": "ConnectorType",
|
|
14902
15885
|
"ofType": null
|
|
14903
15886
|
},
|
|
14904
15887
|
"isDeprecated": false,
|
|
@@ -15317,7 +16300,7 @@
|
|
|
15317
16300
|
},
|
|
15318
16301
|
{
|
|
15319
16302
|
"name": "amenities",
|
|
15320
|
-
"description": "
|
|
16303
|
+
"description": "Amenities located at this location",
|
|
15321
16304
|
"args": [],
|
|
15322
16305
|
"type": {
|
|
15323
16306
|
"kind": "SCALAR",
|
|
@@ -15757,6 +16740,41 @@
|
|
|
15757
16740
|
"enumValues": null,
|
|
15758
16741
|
"possibleTypes": null
|
|
15759
16742
|
},
|
|
16743
|
+
{
|
|
16744
|
+
"kind": "ENUM",
|
|
16745
|
+
"name": "StepType",
|
|
16746
|
+
"description": "Types of a route step",
|
|
16747
|
+
"fields": null,
|
|
16748
|
+
"inputFields": null,
|
|
16749
|
+
"interfaces": null,
|
|
16750
|
+
"enumValues": [
|
|
16751
|
+
{
|
|
16752
|
+
"name": "road",
|
|
16753
|
+
"description": "This step is a road",
|
|
16754
|
+
"isDeprecated": false,
|
|
16755
|
+
"deprecationReason": null
|
|
16756
|
+
},
|
|
16757
|
+
{
|
|
16758
|
+
"name": "highway",
|
|
16759
|
+
"description": "This step is a highway",
|
|
16760
|
+
"isDeprecated": false,
|
|
16761
|
+
"deprecationReason": null
|
|
16762
|
+
},
|
|
16763
|
+
{
|
|
16764
|
+
"name": "toll",
|
|
16765
|
+
"description": "This step is a toll road",
|
|
16766
|
+
"isDeprecated": false,
|
|
16767
|
+
"deprecationReason": null
|
|
16768
|
+
},
|
|
16769
|
+
{
|
|
16770
|
+
"name": "ferry",
|
|
16771
|
+
"description": "This step is a ferry",
|
|
16772
|
+
"isDeprecated": false,
|
|
16773
|
+
"deprecationReason": null
|
|
16774
|
+
}
|
|
16775
|
+
],
|
|
16776
|
+
"possibleTypes": null
|
|
16777
|
+
},
|
|
15760
16778
|
{
|
|
15761
16779
|
"kind": "OBJECT",
|
|
15762
16780
|
"name": "Subscription",
|