@ampeco/public-api-mcp 3.238.1 → 3.239.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/dist/generated/build-stats.json +6 -6
- package/dist/generated/endpoints.json +51 -14
- package/dist/generated/response-schemas.json +72 -12
- package/dist/generated/schemas.d.ts +12 -0
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +8 -4
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +8 -4
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"totalEndpoints": 637,
|
|
3
|
-
"originalSize":
|
|
4
|
-
"optimizedSize":
|
|
5
|
-
"reductionPercent": 72.
|
|
6
|
-
"buildDuration":
|
|
3
|
+
"originalSize": 5659591,
|
|
4
|
+
"optimizedSize": 1582995,
|
|
5
|
+
"reductionPercent": 72.03,
|
|
6
|
+
"buildDuration": 1478,
|
|
7
7
|
"responseSchemas": {
|
|
8
8
|
"total": 637,
|
|
9
9
|
"withSchemas": 637,
|
|
10
|
-
"totalSchemaSize":
|
|
11
|
-
"averageSchemaSize":
|
|
10
|
+
"totalSchemaSize": 3215585,
|
|
11
|
+
"averageSchemaSize": 5048
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -10620,7 +10620,8 @@
|
|
|
10620
10620
|
"type": "integer",
|
|
10621
10621
|
"description": "Required for ocpp 1.5 (SOAP)"
|
|
10622
10622
|
}
|
|
10623
|
-
}
|
|
10623
|
+
},
|
|
10624
|
+
"description": "Required and non-empty for charge points communicating directly over OCPP, which is the default communication mode. The requirement applies when `communicationMode` is `direct_ocpp`, or when `communicationMode` is omitted and `managedByOperator` is omitted or `true`; it does not apply to `none`, `via_ocpp_connected_charge_point`, or `managedByOperator: false` charge points."
|
|
10624
10625
|
},
|
|
10625
10626
|
"capabilities": {
|
|
10626
10627
|
"type": "array",
|
|
@@ -10673,7 +10674,8 @@
|
|
|
10673
10674
|
},
|
|
10674
10675
|
"required": [
|
|
10675
10676
|
"currentProfile"
|
|
10676
|
-
]
|
|
10677
|
+
],
|
|
10678
|
+
"description": "Required with a non-null `desiredProfile` for direct OCPP charge points (the default mode); use `{\"desiredProfile\": 0}` when no profile is enforced. The requirement applies when `communicationMode` is `direct_ocpp`, or when `communicationMode` is omitted and `managedByOperator` is omitted or `true`."
|
|
10677
10679
|
},
|
|
10678
10680
|
"modelId": {
|
|
10679
10681
|
"type": "integer",
|
|
@@ -25195,6 +25197,11 @@
|
|
|
25195
25197
|
],
|
|
25196
25198
|
"description": "RFID card standard."
|
|
25197
25199
|
},
|
|
25200
|
+
"isHomeChargingOnly": {
|
|
25201
|
+
"type": "string",
|
|
25202
|
+
"pattern": "^(true|false|1|0)?$",
|
|
25203
|
+
"description": "Filter by the home charging use only restriction: - `true` (or `1`) returns only ID tags restricted to home charging. - `false` (or `0`) returns only ID tags without the restriction. Omit the filter or send it with an empty value to return both."
|
|
25204
|
+
},
|
|
25198
25205
|
"partnerId": {
|
|
25199
25206
|
"type": "string",
|
|
25200
25207
|
"format": "integer",
|
|
@@ -25267,6 +25274,7 @@
|
|
|
25267
25274
|
},
|
|
25268
25275
|
"idTagUid": {
|
|
25269
25276
|
"type": "string",
|
|
25277
|
+
"maxLength": 255,
|
|
25270
25278
|
"example": 123456,
|
|
25271
25279
|
"description": "Token used for authorization"
|
|
25272
25280
|
},
|
|
@@ -25315,7 +25323,13 @@
|
|
|
25315
25323
|
"company_car",
|
|
25316
25324
|
"private_car"
|
|
25317
25325
|
],
|
|
25318
|
-
"nullable": true
|
|
25326
|
+
"nullable": true,
|
|
25327
|
+
"description": "Marks how the ID tag is used. The value only applies when the ID tag has no associated vehicle; an ID tag associated with a vehicle takes the vehicle's usage type instead and this value has no effect. * `private_car` - suppresses company reimbursement for the home charging sessions of the ID tag. * `company_car` - does not suppress company reimbursement. It never makes a session eligible for reimbursement on its own; eligibility is still decided by the existing checks. * `null` - contributes no signal. The existing reimbursement classification decides the outcome unchanged. The reimbursement effect applies only where the home charging reimbursement feature is enabled; elsewhere the value is stored and returned but changes no reimbursement outcome."
|
|
25328
|
+
},
|
|
25329
|
+
"isHomeChargingOnly": {
|
|
25330
|
+
"type": "boolean",
|
|
25331
|
+
"example": false,
|
|
25332
|
+
"description": "Restricts the ID tag to the holder's own home charge points, including charge points shared with the holder. The tag is not authorized anywhere else. Applicable to tags of type `rfid` only. Supplying this property on a create or update request for a tag of any other type is rejected with `422`. * **Read** - returned for RFID tags; omitted for all other tag types. * **Create** - optional. Defaults to `false` when omitted. * **Update** - optional. An omitted value preserves the current setting; send `false` to lift the restriction. There is no null value - `false` is the clear value."
|
|
25319
25333
|
},
|
|
25320
25334
|
"paymentMethodId": {
|
|
25321
25335
|
"type": "string",
|
|
@@ -25450,6 +25464,7 @@
|
|
|
25450
25464
|
},
|
|
25451
25465
|
"idTagUid": {
|
|
25452
25466
|
"type": "string",
|
|
25467
|
+
"maxLength": 255,
|
|
25453
25468
|
"example": 123456,
|
|
25454
25469
|
"description": "Token used for authorization"
|
|
25455
25470
|
},
|
|
@@ -25503,7 +25518,13 @@
|
|
|
25503
25518
|
"company_car",
|
|
25504
25519
|
"private_car"
|
|
25505
25520
|
],
|
|
25506
|
-
"nullable": true
|
|
25521
|
+
"nullable": true,
|
|
25522
|
+
"description": "Marks how the ID tag is used. The value only applies when the ID tag has no associated vehicle; an ID tag associated with a vehicle takes the vehicle's usage type instead and this value has no effect. * `private_car` - suppresses company reimbursement for the home charging sessions of the ID tag. * `company_car` - does not suppress company reimbursement. It never makes a session eligible for reimbursement on its own; eligibility is still decided by the existing checks. * `null` - contributes no signal. The existing reimbursement classification decides the outcome unchanged. The reimbursement effect applies only where the home charging reimbursement feature is enabled; elsewhere the value is stored and returned but changes no reimbursement outcome."
|
|
25523
|
+
},
|
|
25524
|
+
"isHomeChargingOnly": {
|
|
25525
|
+
"type": "boolean",
|
|
25526
|
+
"example": false,
|
|
25527
|
+
"description": "Restricts the ID tag to the holder's own home charge points, including charge points shared with the holder. The tag is not authorized anywhere else. Applicable to tags of type `rfid` only. Supplying this property on a create or update request for a tag of any other type is rejected with `422`. * **Read** - returned for RFID tags; omitted for all other tag types. * **Create** - optional. Defaults to `false` when omitted. * **Update** - optional. An omitted value preserves the current setting; send `false` to lift the restriction. There is no null value - `false` is the clear value."
|
|
25507
25528
|
},
|
|
25508
25529
|
"paymentMethodId": {
|
|
25509
25530
|
"type": "string",
|
|
@@ -30455,6 +30476,15 @@
|
|
|
30455
30476
|
"nullable": true,
|
|
30456
30477
|
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival. **Valid values:** - `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations - `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use - `PARKING_LOT` - Surface parking lot, open-air parking area - `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business - `ON_STREET` - Street-side parking, curbside charging locations - `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility - `IS_TENT` - Site located on the Trans-European Transport Network (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners) - `SECURE` - Restricted-access parking such as gated lots, key-card access, or staffed parking (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners) **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear the parking type - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no parking type is configured (null in database) - When present, returns one of the valid enum values listed above"
|
|
30457
30478
|
},
|
|
30479
|
+
"accessibilityType": {
|
|
30480
|
+
"type": "string",
|
|
30481
|
+
"enum": [
|
|
30482
|
+
"free_publicly_accessible",
|
|
30483
|
+
"restricted_access",
|
|
30484
|
+
"paid_publicly_accessible"
|
|
30485
|
+
],
|
|
30486
|
+
"description": "Determines how the accessibility of the location is reported to OICP (Hubject) roaming partners. - `free_publicly_accessible` - The charge point is reachable without a fee - `restricted_access` - Permission is required to reach the charge point (e.g. company or building complex) - `paid_publicly_accessible` - A fee is required to reach the charge point (e.g. a paid parking garage)"
|
|
30487
|
+
},
|
|
30458
30488
|
"accessMethods": {
|
|
30459
30489
|
"type": "array",
|
|
30460
30490
|
"items": {
|
|
@@ -31440,6 +31470,15 @@
|
|
|
31440
31470
|
"nullable": true,
|
|
31441
31471
|
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival. **Valid values:** - `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations - `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use - `PARKING_LOT` - Surface parking lot, open-air parking area - `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business - `ON_STREET` - Street-side parking, curbside charging locations - `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility - `IS_TENT` - Site located on the Trans-European Transport Network (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners) - `SECURE` - Restricted-access parking such as gated lots, key-card access, or staffed parking (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners) **Request behavior (POST/PATCH):** - Optional field when creating or updating locations - Send `null` to clear the parking type - Omit the field in PATCH requests to leave the existing value unchanged **Response behavior (GET):** - Field is omitted from the response when no parking type is configured (null in database) - When present, returns one of the valid enum values listed above"
|
|
31442
31472
|
},
|
|
31473
|
+
"accessibilityType": {
|
|
31474
|
+
"type": "string",
|
|
31475
|
+
"enum": [
|
|
31476
|
+
"free_publicly_accessible",
|
|
31477
|
+
"restricted_access",
|
|
31478
|
+
"paid_publicly_accessible"
|
|
31479
|
+
],
|
|
31480
|
+
"description": "Determines how the accessibility of the location is reported to OICP (Hubject) roaming partners. - `free_publicly_accessible` - The charge point is reachable without a fee - `restricted_access` - Permission is required to reach the charge point (e.g. company or building complex) - `paid_publicly_accessible` - A fee is required to reach the charge point (e.g. a paid parking garage)"
|
|
31481
|
+
},
|
|
31443
31482
|
"accessMethods": {
|
|
31444
31483
|
"type": "array",
|
|
31445
31484
|
"items": {
|
|
@@ -48748,7 +48787,6 @@
|
|
|
48748
48787
|
},
|
|
48749
48788
|
"rfidTagUid": {
|
|
48750
48789
|
"type": "string",
|
|
48751
|
-
"maxLength": 255,
|
|
48752
48790
|
"example": 123456,
|
|
48753
48791
|
"description": "Token used for authorization"
|
|
48754
48792
|
},
|
|
@@ -48887,7 +48925,6 @@
|
|
|
48887
48925
|
},
|
|
48888
48926
|
"rfidTagUid": {
|
|
48889
48927
|
"type": "string",
|
|
48890
|
-
"maxLength": 255,
|
|
48891
48928
|
"example": 123456,
|
|
48892
48929
|
"description": "Token used for authorization"
|
|
48893
48930
|
},
|
|
@@ -70979,7 +71016,7 @@
|
|
|
70979
71016
|
],
|
|
70980
71017
|
"info": {
|
|
70981
71018
|
"title": "Public API",
|
|
70982
|
-
"version": "3.
|
|
71019
|
+
"version": "3.239.0",
|
|
70983
71020
|
"description": "The Public API provides server-to-server integration capabilities for your EV charging platform.\n\n**Authentication.** Existing integrations continue to work unchanged — long-lived UUID admin tokens are sent in `Authorization: Bearer ...` with no exchange required. Two security schemes are documented for OpenAPI client tooling, both resulting in the same Bearer header at the wire level:\n - `bearerAuth` — the token in the `Authorization: Bearer ...` header is either a long-lived UUID admin token (issued via the admin UI, used directly) or a short-lived access token previously obtained via OAuth.\n - `oauth2ClientCredentials` - a `client_id` / `client_secret` pair should be exchanged for a short-lived access token at `/public-api/oauth/token` per RFC 6749 Section 4.4 (Client Credentials Grant), and the short-lived token should be used in the `Authorization: Bearer ...` header. The OAuth `client_secret` itself cannot be sent directly as a bearer token — it must be exchanged first.\n"
|
|
70984
71021
|
},
|
|
70985
71022
|
"servers": [
|
|
@@ -70993,18 +71030,18 @@
|
|
|
70993
71030
|
}
|
|
70994
71031
|
}
|
|
70995
71032
|
],
|
|
70996
|
-
"buildTimestamp": "2026-08-
|
|
71033
|
+
"buildTimestamp": "2026-08-26T11:29:33.578Z",
|
|
70997
71034
|
"stats": {
|
|
70998
71035
|
"totalEndpoints": 637,
|
|
70999
|
-
"originalSize":
|
|
71000
|
-
"optimizedSize":
|
|
71001
|
-
"reductionPercent": 72.
|
|
71002
|
-
"buildDuration":
|
|
71036
|
+
"originalSize": 5659591,
|
|
71037
|
+
"optimizedSize": 1582995,
|
|
71038
|
+
"reductionPercent": 72.03,
|
|
71039
|
+
"buildDuration": 1478,
|
|
71003
71040
|
"responseSchemas": {
|
|
71004
71041
|
"total": 637,
|
|
71005
71042
|
"withSchemas": 637,
|
|
71006
|
-
"totalSchemaSize":
|
|
71007
|
-
"averageSchemaSize":
|
|
71043
|
+
"totalSchemaSize": 3215585,
|
|
71044
|
+
"averageSchemaSize": 5048
|
|
71008
71045
|
}
|
|
71009
71046
|
}
|
|
71010
71047
|
}
|
|
@@ -59425,7 +59425,13 @@
|
|
|
59425
59425
|
null,
|
|
59426
59426
|
"company_car",
|
|
59427
59427
|
"private_car"
|
|
59428
|
-
]
|
|
59428
|
+
],
|
|
59429
|
+
"description": "Marks how the ID tag is used. The value only applies when the ID tag has no associated vehicle; an ID tag associated with a vehicle takes the vehicle's usage type instead and this value has no effect.\n\n* `private_car` - suppresses company reimbursement for the home charging sessions of the ID tag.\n* `company_car` - does not suppress company reimbursement. It never makes a session eligible for reimbursement on its own; eligibility is still decided by the existing checks.\n* `null` - contributes no signal. The existing reimbursement classification decides the outcome unchanged.\n\nThe reimbursement effect applies only where the home charging reimbursement feature is enabled; elsewhere the value is stored and returned but changes no reimbursement outcome.\n"
|
|
59430
|
+
},
|
|
59431
|
+
"isHomeChargingOnly": {
|
|
59432
|
+
"type": "boolean",
|
|
59433
|
+
"description": "Restricts the ID tag to the holder's own home charge points, including charge points shared with the holder. The tag is not authorized anywhere else.\n\nApplicable to tags of type `rfid` only. Supplying this property on a create or update request for a tag of any other type is rejected with `422`.\n\n* **Read** - returned for RFID tags; omitted for all other tag types.\n* **Create** - optional. Defaults to `false` when omitted.\n* **Update** - optional. An omitted value preserves the current setting; send `false` to lift the restriction. There is no null value - `false` is the clear value.\n",
|
|
59434
|
+
"example": false
|
|
59429
59435
|
},
|
|
59430
59436
|
"paymentMethodId": {
|
|
59431
59437
|
"type": "string",
|
|
@@ -59716,7 +59722,13 @@
|
|
|
59716
59722
|
null,
|
|
59717
59723
|
"company_car",
|
|
59718
59724
|
"private_car"
|
|
59719
|
-
]
|
|
59725
|
+
],
|
|
59726
|
+
"description": "Marks how the ID tag is used. The value only applies when the ID tag has no associated vehicle; an ID tag associated with a vehicle takes the vehicle's usage type instead and this value has no effect.\n\n* `private_car` - suppresses company reimbursement for the home charging sessions of the ID tag.\n* `company_car` - does not suppress company reimbursement. It never makes a session eligible for reimbursement on its own; eligibility is still decided by the existing checks.\n* `null` - contributes no signal. The existing reimbursement classification decides the outcome unchanged.\n\nThe reimbursement effect applies only where the home charging reimbursement feature is enabled; elsewhere the value is stored and returned but changes no reimbursement outcome.\n"
|
|
59727
|
+
},
|
|
59728
|
+
"isHomeChargingOnly": {
|
|
59729
|
+
"type": "boolean",
|
|
59730
|
+
"description": "Restricts the ID tag to the holder's own home charge points, including charge points shared with the holder. The tag is not authorized anywhere else.\n\nApplicable to tags of type `rfid` only. Supplying this property on a create or update request for a tag of any other type is rejected with `422`.\n\n* **Read** - returned for RFID tags; omitted for all other tag types.\n* **Create** - optional. Defaults to `false` when omitted.\n* **Update** - optional. An omitted value preserves the current setting; send `false` to lift the restriction. There is no null value - `false` is the clear value.\n",
|
|
59731
|
+
"example": false
|
|
59720
59732
|
},
|
|
59721
59733
|
"paymentMethodId": {
|
|
59722
59734
|
"type": "string",
|
|
@@ -59892,7 +59904,13 @@
|
|
|
59892
59904
|
null,
|
|
59893
59905
|
"company_car",
|
|
59894
59906
|
"private_car"
|
|
59895
|
-
]
|
|
59907
|
+
],
|
|
59908
|
+
"description": "Marks how the ID tag is used. The value only applies when the ID tag has no associated vehicle; an ID tag associated with a vehicle takes the vehicle's usage type instead and this value has no effect.\n\n* `private_car` - suppresses company reimbursement for the home charging sessions of the ID tag.\n* `company_car` - does not suppress company reimbursement. It never makes a session eligible for reimbursement on its own; eligibility is still decided by the existing checks.\n* `null` - contributes no signal. The existing reimbursement classification decides the outcome unchanged.\n\nThe reimbursement effect applies only where the home charging reimbursement feature is enabled; elsewhere the value is stored and returned but changes no reimbursement outcome.\n"
|
|
59909
|
+
},
|
|
59910
|
+
"isHomeChargingOnly": {
|
|
59911
|
+
"type": "boolean",
|
|
59912
|
+
"description": "Restricts the ID tag to the holder's own home charge points, including charge points shared with the holder. The tag is not authorized anywhere else.\n\nApplicable to tags of type `rfid` only. Supplying this property on a create or update request for a tag of any other type is rejected with `422`.\n\n* **Read** - returned for RFID tags; omitted for all other tag types.\n* **Create** - optional. Defaults to `false` when omitted.\n* **Update** - optional. An omitted value preserves the current setting; send `false` to lift the restriction. There is no null value - `false` is the clear value.\n",
|
|
59913
|
+
"example": false
|
|
59896
59914
|
},
|
|
59897
59915
|
"paymentMethodId": {
|
|
59898
59916
|
"type": "string",
|
|
@@ -60089,7 +60107,13 @@
|
|
|
60089
60107
|
null,
|
|
60090
60108
|
"company_car",
|
|
60091
60109
|
"private_car"
|
|
60092
|
-
]
|
|
60110
|
+
],
|
|
60111
|
+
"description": "Marks how the ID tag is used. The value only applies when the ID tag has no associated vehicle; an ID tag associated with a vehicle takes the vehicle's usage type instead and this value has no effect.\n\n* `private_car` - suppresses company reimbursement for the home charging sessions of the ID tag.\n* `company_car` - does not suppress company reimbursement. It never makes a session eligible for reimbursement on its own; eligibility is still decided by the existing checks.\n* `null` - contributes no signal. The existing reimbursement classification decides the outcome unchanged.\n\nThe reimbursement effect applies only where the home charging reimbursement feature is enabled; elsewhere the value is stored and returned but changes no reimbursement outcome.\n"
|
|
60112
|
+
},
|
|
60113
|
+
"isHomeChargingOnly": {
|
|
60114
|
+
"type": "boolean",
|
|
60115
|
+
"description": "Restricts the ID tag to the holder's own home charge points, including charge points shared with the holder. The tag is not authorized anywhere else.\n\nApplicable to tags of type `rfid` only. Supplying this property on a create or update request for a tag of any other type is rejected with `422`.\n\n* **Read** - returned for RFID tags; omitted for all other tag types.\n* **Create** - optional. Defaults to `false` when omitted.\n* **Update** - optional. An omitted value preserves the current setting; send `false` to lift the restriction. There is no null value - `false` is the clear value.\n",
|
|
60116
|
+
"example": false
|
|
60093
60117
|
},
|
|
60094
60118
|
"paymentMethodId": {
|
|
60095
60119
|
"type": "string",
|
|
@@ -68063,7 +68087,8 @@
|
|
|
68063
68087
|
"city",
|
|
68064
68088
|
"country",
|
|
68065
68089
|
"roamingOperatorId",
|
|
68066
|
-
"isRoaming"
|
|
68090
|
+
"isRoaming",
|
|
68091
|
+
"accessibilityType"
|
|
68067
68092
|
],
|
|
68068
68093
|
"type": "object",
|
|
68069
68094
|
"properties": {
|
|
@@ -68667,6 +68692,15 @@
|
|
|
68667
68692
|
],
|
|
68668
68693
|
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival.\n\n**Valid values:**\n- `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations\n- `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use\n- `PARKING_LOT` - Surface parking lot, open-air parking area\n- `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business\n- `ON_STREET` - Street-side parking, curbside charging locations\n- `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility\n- `IS_TENT` - Site located on the Trans-European Transport Network (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n- `SECURE` - Restricted-access parking such as gated lots, key-card access, or staffed parking (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n\n**Request behavior (POST/PATCH):**\n- Optional field when creating or updating locations\n- Send `null` to clear the parking type\n- Omit the field in PATCH requests to leave the existing value unchanged\n\n**Response behavior (GET):**\n- Field is omitted from the response when no parking type is configured (null in database)\n- When present, returns one of the valid enum values listed above\n"
|
|
68669
68694
|
},
|
|
68695
|
+
"accessibilityType": {
|
|
68696
|
+
"description": "Determines how the accessibility of the location is reported to OICP (Hubject) roaming partners.\n\n- `free_publicly_accessible` - The charge point is reachable without a fee\n- `restricted_access` - Permission is required to reach the charge point (e.g. company or building complex)\n- `paid_publicly_accessible` - A fee is required to reach the charge point (e.g. a paid parking garage)\n",
|
|
68697
|
+
"type": "string",
|
|
68698
|
+
"enum": [
|
|
68699
|
+
"free_publicly_accessible",
|
|
68700
|
+
"restricted_access",
|
|
68701
|
+
"paid_publicly_accessible"
|
|
68702
|
+
]
|
|
68703
|
+
},
|
|
68670
68704
|
"accessMethods": {
|
|
68671
68705
|
"type": "array",
|
|
68672
68706
|
"nullable": true,
|
|
@@ -69380,7 +69414,8 @@
|
|
|
69380
69414
|
"city",
|
|
69381
69415
|
"country",
|
|
69382
69416
|
"roamingOperatorId",
|
|
69383
|
-
"isRoaming"
|
|
69417
|
+
"isRoaming",
|
|
69418
|
+
"accessibilityType"
|
|
69384
69419
|
],
|
|
69385
69420
|
"type": "object",
|
|
69386
69421
|
"properties": {
|
|
@@ -69984,6 +70019,15 @@
|
|
|
69984
70019
|
],
|
|
69985
70020
|
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival.\n\n**Valid values:**\n- `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations\n- `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use\n- `PARKING_LOT` - Surface parking lot, open-air parking area\n- `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business\n- `ON_STREET` - Street-side parking, curbside charging locations\n- `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility\n- `IS_TENT` - Site located on the Trans-European Transport Network (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n- `SECURE` - Restricted-access parking such as gated lots, key-card access, or staffed parking (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n\n**Request behavior (POST/PATCH):**\n- Optional field when creating or updating locations\n- Send `null` to clear the parking type\n- Omit the field in PATCH requests to leave the existing value unchanged\n\n**Response behavior (GET):**\n- Field is omitted from the response when no parking type is configured (null in database)\n- When present, returns one of the valid enum values listed above\n"
|
|
69986
70021
|
},
|
|
70022
|
+
"accessibilityType": {
|
|
70023
|
+
"description": "Determines how the accessibility of the location is reported to OICP (Hubject) roaming partners.\n\n- `free_publicly_accessible` - The charge point is reachable without a fee\n- `restricted_access` - Permission is required to reach the charge point (e.g. company or building complex)\n- `paid_publicly_accessible` - A fee is required to reach the charge point (e.g. a paid parking garage)\n",
|
|
70024
|
+
"type": "string",
|
|
70025
|
+
"enum": [
|
|
70026
|
+
"free_publicly_accessible",
|
|
70027
|
+
"restricted_access",
|
|
70028
|
+
"paid_publicly_accessible"
|
|
70029
|
+
]
|
|
70030
|
+
},
|
|
69987
70031
|
"accessMethods": {
|
|
69988
70032
|
"type": "array",
|
|
69989
70033
|
"nullable": true,
|
|
@@ -70670,7 +70714,8 @@
|
|
|
70670
70714
|
"city",
|
|
70671
70715
|
"country",
|
|
70672
70716
|
"roamingOperatorId",
|
|
70673
|
-
"isRoaming"
|
|
70717
|
+
"isRoaming",
|
|
70718
|
+
"accessibilityType"
|
|
70674
70719
|
],
|
|
70675
70720
|
"type": "object",
|
|
70676
70721
|
"properties": {
|
|
@@ -71274,6 +71319,15 @@
|
|
|
71274
71319
|
],
|
|
71275
71320
|
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival.\n\n**Valid values:**\n- `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations\n- `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use\n- `PARKING_LOT` - Surface parking lot, open-air parking area\n- `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business\n- `ON_STREET` - Street-side parking, curbside charging locations\n- `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility\n- `IS_TENT` - Site located on the Trans-European Transport Network (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n- `SECURE` - Restricted-access parking such as gated lots, key-card access, or staffed parking (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n\n**Request behavior (POST/PATCH):**\n- Optional field when creating or updating locations\n- Send `null` to clear the parking type\n- Omit the field in PATCH requests to leave the existing value unchanged\n\n**Response behavior (GET):**\n- Field is omitted from the response when no parking type is configured (null in database)\n- When present, returns one of the valid enum values listed above\n"
|
|
71276
71321
|
},
|
|
71322
|
+
"accessibilityType": {
|
|
71323
|
+
"description": "Determines how the accessibility of the location is reported to OICP (Hubject) roaming partners.\n\n- `free_publicly_accessible` - The charge point is reachable without a fee\n- `restricted_access` - Permission is required to reach the charge point (e.g. company or building complex)\n- `paid_publicly_accessible` - A fee is required to reach the charge point (e.g. a paid parking garage)\n",
|
|
71324
|
+
"type": "string",
|
|
71325
|
+
"enum": [
|
|
71326
|
+
"free_publicly_accessible",
|
|
71327
|
+
"restricted_access",
|
|
71328
|
+
"paid_publicly_accessible"
|
|
71329
|
+
]
|
|
71330
|
+
},
|
|
71277
71331
|
"accessMethods": {
|
|
71278
71332
|
"type": "array",
|
|
71279
71333
|
"nullable": true,
|
|
@@ -71981,7 +72035,8 @@
|
|
|
71981
72035
|
"city",
|
|
71982
72036
|
"country",
|
|
71983
72037
|
"roamingOperatorId",
|
|
71984
|
-
"isRoaming"
|
|
72038
|
+
"isRoaming",
|
|
72039
|
+
"accessibilityType"
|
|
71985
72040
|
],
|
|
71986
72041
|
"type": "object",
|
|
71987
72042
|
"properties": {
|
|
@@ -72585,6 +72640,15 @@
|
|
|
72585
72640
|
],
|
|
72586
72641
|
"description": "Indicates the type of parking available at the charging location. This field helps EV drivers understand the physical parking environment before arrival.\n\n**Valid values:**\n- `ALONG_MOTORWAY` - Located along a motorway/highway, typically at rest areas or service stations\n- `PARKING_GARAGE` - Multi-level parking garage structure, either above-ground or mixed-use\n- `PARKING_LOT` - Surface parking lot, open-air parking area\n- `ON_DRIVEWAY` - Located on a private driveway, typically residential or small business\n- `ON_STREET` - Street-side parking, curbside charging locations\n- `UNDERGROUND_GARAGE` - Underground parking structure, subterranean parking facility\n- `IS_TENT` - Site located on the Trans-European Transport Network (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n- `SECURE` - Restricted-access parking such as gated lots, key-card access, or staffed parking (Lithuania NAP / Via Lietuva extension; may not be interpreted by all roaming partners)\n\n**Request behavior (POST/PATCH):**\n- Optional field when creating or updating locations\n- Send `null` to clear the parking type\n- Omit the field in PATCH requests to leave the existing value unchanged\n\n**Response behavior (GET):**\n- Field is omitted from the response when no parking type is configured (null in database)\n- When present, returns one of the valid enum values listed above\n"
|
|
72587
72642
|
},
|
|
72643
|
+
"accessibilityType": {
|
|
72644
|
+
"description": "Determines how the accessibility of the location is reported to OICP (Hubject) roaming partners.\n\n- `free_publicly_accessible` - The charge point is reachable without a fee\n- `restricted_access` - Permission is required to reach the charge point (e.g. company or building complex)\n- `paid_publicly_accessible` - A fee is required to reach the charge point (e.g. a paid parking garage)\n",
|
|
72645
|
+
"type": "string",
|
|
72646
|
+
"enum": [
|
|
72647
|
+
"free_publicly_accessible",
|
|
72648
|
+
"restricted_access",
|
|
72649
|
+
"paid_publicly_accessible"
|
|
72650
|
+
]
|
|
72651
|
+
},
|
|
72588
72652
|
"accessMethods": {
|
|
72589
72653
|
"type": "array",
|
|
72590
72654
|
"nullable": true,
|
|
@@ -117250,7 +117314,6 @@
|
|
|
117250
117314
|
},
|
|
117251
117315
|
"rfidTagUid": {
|
|
117252
117316
|
"type": "string",
|
|
117253
|
-
"maxLength": 255,
|
|
117254
117317
|
"description": "Token used for authorization",
|
|
117255
117318
|
"example": 123456
|
|
117256
117319
|
},
|
|
@@ -117459,7 +117522,6 @@
|
|
|
117459
117522
|
},
|
|
117460
117523
|
"rfidTagUid": {
|
|
117461
117524
|
"type": "string",
|
|
117462
|
-
"maxLength": 255,
|
|
117463
117525
|
"description": "Token used for authorization",
|
|
117464
117526
|
"example": 123456
|
|
117465
117527
|
},
|
|
@@ -117575,7 +117637,6 @@
|
|
|
117575
117637
|
},
|
|
117576
117638
|
"rfidTagUid": {
|
|
117577
117639
|
"type": "string",
|
|
117578
|
-
"maxLength": 255,
|
|
117579
117640
|
"description": "Token used for authorization",
|
|
117580
117641
|
"example": 123456
|
|
117581
117642
|
},
|
|
@@ -117712,7 +117773,6 @@
|
|
|
117712
117773
|
},
|
|
117713
117774
|
"rfidTagUid": {
|
|
117714
117775
|
"type": "string",
|
|
117715
|
-
"maxLength": 255,
|
|
117716
117776
|
"description": "Token used for authorization",
|
|
117717
117777
|
"example": 123456
|
|
117718
117778
|
},
|
|
@@ -6726,6 +6726,7 @@ export declare const idTagCreateBody: z.ZodObject<{
|
|
|
6726
6726
|
type: z.ZodEnum<["rfid", "mac_address"]>;
|
|
6727
6727
|
rfidStandard: z.ZodOptional<z.ZodEnum<["iso14443", "iso15693"]>>;
|
|
6728
6728
|
vehicleType: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodLiteral<"company_car">, z.ZodLiteral<"private_car">]>>;
|
|
6729
|
+
isHomeChargingOnly: z.ZodOptional<z.ZodBoolean>;
|
|
6729
6730
|
paymentMethodId: z.ZodOptional<z.ZodString>;
|
|
6730
6731
|
defaultPaymentOption: z.ZodOptional<z.ZodString>;
|
|
6731
6732
|
userId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6750,6 +6751,7 @@ export declare const idTagCreateBody: z.ZodObject<{
|
|
|
6750
6751
|
idLabel?: string | undefined;
|
|
6751
6752
|
expireAt?: string | undefined;
|
|
6752
6753
|
rfidStandard?: "iso14443" | "iso15693" | undefined;
|
|
6754
|
+
isHomeChargingOnly?: boolean | undefined;
|
|
6753
6755
|
vehicleId?: number | undefined;
|
|
6754
6756
|
}, {
|
|
6755
6757
|
type: "rfid" | "mac_address";
|
|
@@ -6768,6 +6770,7 @@ export declare const idTagCreateBody: z.ZodObject<{
|
|
|
6768
6770
|
idLabel?: string | undefined;
|
|
6769
6771
|
expireAt?: string | undefined;
|
|
6770
6772
|
rfidStandard?: "iso14443" | "iso15693" | undefined;
|
|
6773
|
+
isHomeChargingOnly?: boolean | undefined;
|
|
6771
6774
|
vehicleId?: number | undefined;
|
|
6772
6775
|
}>;
|
|
6773
6776
|
export declare const idTagUpdateBody: z.ZodObject<{
|
|
@@ -6781,6 +6784,7 @@ export declare const idTagUpdateBody: z.ZodObject<{
|
|
|
6781
6784
|
type: z.ZodOptional<z.ZodEnum<["rfid", "mac_address"]>>;
|
|
6782
6785
|
rfidStandard: z.ZodOptional<z.ZodEnum<["iso14443", "iso15693"]>>;
|
|
6783
6786
|
vehicleType: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodLiteral<"company_car">, z.ZodLiteral<"private_car">]>>;
|
|
6787
|
+
isHomeChargingOnly: z.ZodOptional<z.ZodBoolean>;
|
|
6784
6788
|
paymentMethodId: z.ZodOptional<z.ZodString>;
|
|
6785
6789
|
defaultPaymentOption: z.ZodOptional<z.ZodString>;
|
|
6786
6790
|
userId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6804,6 +6808,7 @@ export declare const idTagUpdateBody: z.ZodObject<{
|
|
|
6804
6808
|
idLabel?: string | undefined;
|
|
6805
6809
|
expireAt?: string | undefined;
|
|
6806
6810
|
rfidStandard?: "iso14443" | "iso15693" | undefined;
|
|
6811
|
+
isHomeChargingOnly?: boolean | undefined;
|
|
6807
6812
|
vehicleId?: number | undefined;
|
|
6808
6813
|
userLabel?: string | undefined;
|
|
6809
6814
|
}, {
|
|
@@ -6822,6 +6827,7 @@ export declare const idTagUpdateBody: z.ZodObject<{
|
|
|
6822
6827
|
idLabel?: string | undefined;
|
|
6823
6828
|
expireAt?: string | undefined;
|
|
6824
6829
|
rfidStandard?: "iso14443" | "iso15693" | undefined;
|
|
6830
|
+
isHomeChargingOnly?: boolean | undefined;
|
|
6825
6831
|
vehicleId?: number | undefined;
|
|
6826
6832
|
userLabel?: string | undefined;
|
|
6827
6833
|
}>;
|
|
@@ -7923,6 +7929,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
7923
7929
|
postCode: z.ZodOptional<z.ZodString>;
|
|
7924
7930
|
timezone: z.ZodOptional<z.ZodString>;
|
|
7925
7931
|
parkingType: z.ZodOptional<z.ZodEnum<["ALONG_MOTORWAY", "PARKING_GARAGE", "PARKING_LOT", "ON_DRIVEWAY", "ON_STREET", "UNDERGROUND_GARAGE", "IS_TENT", "SECURE"]>>;
|
|
7932
|
+
accessibilityType: z.ZodOptional<z.ZodEnum<["free_publicly_accessible", "restricted_access", "paid_publicly_accessible"]>>;
|
|
7926
7933
|
accessMethods: z.ZodOptional<z.ZodArray<z.ZodEnum<["OPEN", "TOKEN", "LICENSE_PLATE", "ACCESS_CODE", "INTERCOM", "PARKING_TICKET"]>, "many">>;
|
|
7927
7934
|
facilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["AIRPORT", "BATHROOM", "BIKE_SHARING", "BUS_STOP", "CAFE", "CARPOOL_PARKING", "FUEL_STATION", "HOTEL", "MALL", "METRO_STATION", "MUSEUM", "NATURE", "PARKING_LOT", "RECREATION_AREA", "RESTAURANT", "SPORT", "STAFFED", "SUPERMARKET", "TAXI_STAND", "TRAIN_STATION", "TRAM_STOP", "WIFI"]>, "many">>;
|
|
7928
7935
|
paymentOptions: z.ZodOptional<z.ZodArray<z.ZodEnum<["EMV_CHIP_TERMINAL", "NFC_CONTACTLESS_TERMINAL", "QR_CODE_PAYMENT", "WEB_PAYMENT", "CASH_PAYMENT"]>, "many">>;
|
|
@@ -8176,6 +8183,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
8176
8183
|
}[] | undefined;
|
|
8177
8184
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
8178
8185
|
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | "IS_TENT" | "SECURE" | undefined;
|
|
8186
|
+
accessibilityType?: "free_publicly_accessible" | "restricted_access" | "paid_publicly_accessible" | undefined;
|
|
8179
8187
|
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
8180
8188
|
facilities?: ("PARKING_LOT" | "AIRPORT" | "BATHROOM" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "STAFFED" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
8181
8189
|
paymentOptions?: ("EMV_CHIP_TERMINAL" | "NFC_CONTACTLESS_TERMINAL" | "QR_CODE_PAYMENT" | "WEB_PAYMENT" | "CASH_PAYMENT")[] | undefined;
|
|
@@ -8258,6 +8266,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
8258
8266
|
}[] | undefined;
|
|
8259
8267
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
8260
8268
|
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | "IS_TENT" | "SECURE" | undefined;
|
|
8269
|
+
accessibilityType?: "free_publicly_accessible" | "restricted_access" | "paid_publicly_accessible" | undefined;
|
|
8261
8270
|
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
8262
8271
|
facilities?: ("PARKING_LOT" | "AIRPORT" | "BATHROOM" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "STAFFED" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
8263
8272
|
paymentOptions?: ("EMV_CHIP_TERMINAL" | "NFC_CONTACTLESS_TERMINAL" | "QR_CODE_PAYMENT" | "WEB_PAYMENT" | "CASH_PAYMENT")[] | undefined;
|
|
@@ -8381,6 +8390,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
8381
8390
|
postCode: z.ZodOptional<z.ZodString>;
|
|
8382
8391
|
timezone: z.ZodOptional<z.ZodString>;
|
|
8383
8392
|
parkingType: z.ZodOptional<z.ZodEnum<["ALONG_MOTORWAY", "PARKING_GARAGE", "PARKING_LOT", "ON_DRIVEWAY", "ON_STREET", "UNDERGROUND_GARAGE", "IS_TENT", "SECURE"]>>;
|
|
8393
|
+
accessibilityType: z.ZodOptional<z.ZodEnum<["free_publicly_accessible", "restricted_access", "paid_publicly_accessible"]>>;
|
|
8384
8394
|
accessMethods: z.ZodOptional<z.ZodArray<z.ZodEnum<["OPEN", "TOKEN", "LICENSE_PLATE", "ACCESS_CODE", "INTERCOM", "PARKING_TICKET"]>, "many">>;
|
|
8385
8395
|
facilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["AIRPORT", "BATHROOM", "BIKE_SHARING", "BUS_STOP", "CAFE", "CARPOOL_PARKING", "FUEL_STATION", "HOTEL", "MALL", "METRO_STATION", "MUSEUM", "NATURE", "PARKING_LOT", "RECREATION_AREA", "RESTAURANT", "SPORT", "STAFFED", "SUPERMARKET", "TAXI_STAND", "TRAIN_STATION", "TRAM_STOP", "WIFI"]>, "many">>;
|
|
8386
8396
|
workingHours: z.ZodOptional<z.ZodObject<{
|
|
@@ -8631,6 +8641,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
8631
8641
|
}[] | undefined;
|
|
8632
8642
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
8633
8643
|
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | "IS_TENT" | "SECURE" | undefined;
|
|
8644
|
+
accessibilityType?: "free_publicly_accessible" | "restricted_access" | "paid_publicly_accessible" | undefined;
|
|
8634
8645
|
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
8635
8646
|
facilities?: ("PARKING_LOT" | "AIRPORT" | "BATHROOM" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "STAFFED" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
8636
8647
|
workingHours?: {
|
|
@@ -8710,6 +8721,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
8710
8721
|
}[] | undefined;
|
|
8711
8722
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
8712
8723
|
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | "IS_TENT" | "SECURE" | undefined;
|
|
8724
|
+
accessibilityType?: "free_publicly_accessible" | "restricted_access" | "paid_publicly_accessible" | undefined;
|
|
8713
8725
|
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
8714
8726
|
facilities?: ("PARKING_LOT" | "AIRPORT" | "BATHROOM" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "STAFFED" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
8715
8727
|
workingHours?: {
|