@chargetrip/types 1.30.1 → 1.32.2
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/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +25 -3
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +25 -3
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +134 -3
- package/graphql.schema.json +855 -3
- package/package.json +1 -1
- package/src/graphql.ts +156 -3
- package/CHANGELOG.md +0 -234
package/package.json
CHANGED
package/src/graphql.ts
CHANGED
|
@@ -15,7 +15,7 @@ export type Scalars = {
|
|
|
15
15
|
Float: number;
|
|
16
16
|
/** The date and time scalar */
|
|
17
17
|
DateTime: string;
|
|
18
|
-
/** Any JSON object
|
|
18
|
+
/** Any JSON object */
|
|
19
19
|
JSON: { [key: string]: number | string | boolean | null | Scalars["JSON"] };
|
|
20
20
|
/**
|
|
21
21
|
* The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.
|
|
@@ -24,7 +24,7 @@ export type Scalars = {
|
|
|
24
24
|
PlainString: any;
|
|
25
25
|
/** The File Upload scalar */
|
|
26
26
|
Upload: any;
|
|
27
|
-
/**
|
|
27
|
+
/** Returns null */
|
|
28
28
|
Void: any;
|
|
29
29
|
};
|
|
30
30
|
|
|
@@ -115,6 +115,18 @@ export type AmenityStats = {
|
|
|
115
115
|
total?: Maybe<Scalars["Int"]>;
|
|
116
116
|
};
|
|
117
117
|
|
|
118
|
+
export type AuthorizeConnectedVehicleInput = {
|
|
119
|
+
/** Id from the connected vehicle */
|
|
120
|
+
id: Scalars["ID"];
|
|
121
|
+
/** Provider specific options. See the developer portal for more details */
|
|
122
|
+
options: AuthorizeConnectedVehicleOptions;
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
export type AuthorizeConnectedVehicleOptions = {
|
|
126
|
+
/** OAuth code returned as a query parameter on the OAuth callback */
|
|
127
|
+
code?: Maybe<Scalars["PlainString"]>;
|
|
128
|
+
};
|
|
129
|
+
|
|
118
130
|
/** The type of the batter value */
|
|
119
131
|
export enum BatteryInputType {
|
|
120
132
|
KWH = "kwh",
|
|
@@ -334,6 +346,10 @@ export type CarBody = {
|
|
|
334
346
|
seats?: Maybe<Scalars["Int"]>;
|
|
335
347
|
};
|
|
336
348
|
|
|
349
|
+
export enum CarConnectivityProvider {
|
|
350
|
+
ENODE = "Enode"
|
|
351
|
+
}
|
|
352
|
+
|
|
337
353
|
/** Deprecated */
|
|
338
354
|
export type CarConsumption = {
|
|
339
355
|
/** Worst conditions are based on -10°C and use of heating */
|
|
@@ -1409,6 +1425,11 @@ export type Connect = {
|
|
|
1409
1425
|
providers?: Maybe<Array<Maybe<ConnectProvider>>>;
|
|
1410
1426
|
};
|
|
1411
1427
|
|
|
1428
|
+
export type ConnectBattery = {
|
|
1429
|
+
percentage?: Maybe<Scalars["Int"]>;
|
|
1430
|
+
date?: Maybe<Scalars["String"]>;
|
|
1431
|
+
};
|
|
1432
|
+
|
|
1412
1433
|
export type ConnectFilter = {
|
|
1413
1434
|
/** List of connectivity providers to which a vehicle can connect */
|
|
1414
1435
|
providers?: Maybe<Array<Maybe<ConnectProvider>>>;
|
|
@@ -1418,6 +1439,43 @@ export enum ConnectProvider {
|
|
|
1418
1439
|
ENODE = "Enode"
|
|
1419
1440
|
}
|
|
1420
1441
|
|
|
1442
|
+
export type ConnectedVehicle = {
|
|
1443
|
+
/** Unique ID of the connected vehicle */
|
|
1444
|
+
id: Scalars["ID"];
|
|
1445
|
+
/** ID of the user */
|
|
1446
|
+
user_id: Scalars["ID"];
|
|
1447
|
+
/** Unique ID of the vehicle */
|
|
1448
|
+
vehicle_id: Scalars["ID"];
|
|
1449
|
+
/** Status of the connected vehicle */
|
|
1450
|
+
status: ConnectedVehicleStatus;
|
|
1451
|
+
/** URL to connect the vehicle to the connectivity provider */
|
|
1452
|
+
authorization_url?: Maybe<Scalars["String"]>;
|
|
1453
|
+
/** Connectivity provider */
|
|
1454
|
+
provider: CarConnectivityProvider;
|
|
1455
|
+
/** Permissions for data retrieval from the connected vehicle */
|
|
1456
|
+
permissions?: Maybe<Array<Maybe<ConnectedVehiclePermission>>>;
|
|
1457
|
+
/** Custom label for a connected vehicle that can be assigned by a user */
|
|
1458
|
+
label?: Maybe<Scalars["String"]>;
|
|
1459
|
+
/** Vehicle identification number, unique identifier for a vehicle */
|
|
1460
|
+
vin?: Maybe<Scalars["String"]>;
|
|
1461
|
+
};
|
|
1462
|
+
|
|
1463
|
+
export enum ConnectedVehiclePermission {
|
|
1464
|
+
/** Permission to retrieve the location of the vehicle */
|
|
1465
|
+
LOCATION = "location",
|
|
1466
|
+
/** Permission to retrieve the state of the battery */
|
|
1467
|
+
BATTERY = "battery"
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
export enum ConnectedVehicleStatus {
|
|
1471
|
+
/** Vehicle was added to the Chargetrip platform but not yet authorized */
|
|
1472
|
+
PENDING = "pending",
|
|
1473
|
+
/** Vehicle was authorized. Chargetrip can retrieve data on behave of the user */
|
|
1474
|
+
AUTHORIZED = "authorized",
|
|
1475
|
+
/** User did revoke permissions to retrieve data from the vehicle */
|
|
1476
|
+
DEAUTHORIZED = "deauthorized"
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1421
1479
|
/** Connector data which extends OCPI Connector */
|
|
1422
1480
|
export type Connector = {
|
|
1423
1481
|
/** Identifier of a connector within an EVSE. Two connectors may have the same ID as long as they do not belong to the same EVSE object. */
|
|
@@ -1822,6 +1880,17 @@ export enum CountryCodeAlpha2 {
|
|
|
1822
1880
|
ZW = "ZW"
|
|
1823
1881
|
}
|
|
1824
1882
|
|
|
1883
|
+
export type CreateConnectedVehicleInput = {
|
|
1884
|
+
/** Id from the vehicle */
|
|
1885
|
+
vehicle_id: Scalars["ID"];
|
|
1886
|
+
/** Connectivity provider used to retrieve data from the vehicle */
|
|
1887
|
+
provider: CarConnectivityProvider;
|
|
1888
|
+
/** Label for a connected vehicle */
|
|
1889
|
+
label?: Maybe<Scalars["PlainString"]>;
|
|
1890
|
+
/** Provider specific options. See the developer portal for more details */
|
|
1891
|
+
options: NewConnectedVehicleOptions;
|
|
1892
|
+
};
|
|
1893
|
+
|
|
1825
1894
|
/** EVSE data which extends OCPI EVSE */
|
|
1826
1895
|
export type EVSE = {
|
|
1827
1896
|
/**
|
|
@@ -1865,7 +1934,7 @@ export type FeaturePoint = {
|
|
|
1865
1934
|
type: FeatureType;
|
|
1866
1935
|
/** Geometry of the feature */
|
|
1867
1936
|
geometry: Point;
|
|
1868
|
-
/**
|
|
1937
|
+
/** Additional data */
|
|
1869
1938
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1870
1939
|
};
|
|
1871
1940
|
|
|
@@ -1928,6 +1997,12 @@ export enum FeatureType {
|
|
|
1928
1997
|
FEATURE = "Feature"
|
|
1929
1998
|
}
|
|
1930
1999
|
|
|
2000
|
+
/** Geometry point with GPS coordinates */
|
|
2001
|
+
export type GeometryPoint = {
|
|
2002
|
+
type: PointType;
|
|
2003
|
+
coordinates: Array<Scalars["Float"]>;
|
|
2004
|
+
};
|
|
2005
|
+
|
|
1931
2006
|
/** Navigation service providers available */
|
|
1932
2007
|
export enum InstructionsFormat {
|
|
1933
2008
|
/** Chargetrip raw instructions */
|
|
@@ -2003,6 +2078,14 @@ export enum MappingProvider {
|
|
|
2003
2078
|
}
|
|
2004
2079
|
|
|
2005
2080
|
export type Mutation = {
|
|
2081
|
+
/** [BETA] Create a connected vehicle for a given vehicle id and a connectivity provider */
|
|
2082
|
+
createConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2083
|
+
/** [BETA] Authorize a vehicle by providing the callback url from the connectivity provider which will be exchanged for access tokens */
|
|
2084
|
+
authorizeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2085
|
+
/** [BETA] Update a connected vehicle */
|
|
2086
|
+
updateConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2087
|
+
/** [BETA] Revoke access for a connected vehicle */
|
|
2088
|
+
removeConnectedVehicle?: Maybe<Scalars["Void"]>;
|
|
2006
2089
|
/** [BETA] Generate a set of consumption based Isolines */
|
|
2007
2090
|
createIsoline?: Maybe<Scalars["ID"]>;
|
|
2008
2091
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
@@ -2030,6 +2113,22 @@ export type Mutation = {
|
|
|
2030
2113
|
newRoute?: Maybe<Scalars["ID"]>;
|
|
2031
2114
|
};
|
|
2032
2115
|
|
|
2116
|
+
export type MutationcreateConnectedVehicleArgs = {
|
|
2117
|
+
input?: Maybe<CreateConnectedVehicleInput>;
|
|
2118
|
+
};
|
|
2119
|
+
|
|
2120
|
+
export type MutationauthorizeConnectedVehicleArgs = {
|
|
2121
|
+
input?: Maybe<AuthorizeConnectedVehicleInput>;
|
|
2122
|
+
};
|
|
2123
|
+
|
|
2124
|
+
export type MutationupdateConnectedVehicleArgs = {
|
|
2125
|
+
input: UpdateConnectedVehicleInput;
|
|
2126
|
+
};
|
|
2127
|
+
|
|
2128
|
+
export type MutationremoveConnectedVehicleArgs = {
|
|
2129
|
+
input: RemoveConnectedVehicleInput;
|
|
2130
|
+
};
|
|
2131
|
+
|
|
2033
2132
|
export type MutationcreateIsolineArgs = {
|
|
2034
2133
|
input: IsolineInput;
|
|
2035
2134
|
};
|
|
@@ -2193,6 +2292,11 @@ export type NavigationUpdateLocationsInput = {
|
|
|
2193
2292
|
properties: NavigationUpdateLocationPropertiesInput;
|
|
2194
2293
|
};
|
|
2195
2294
|
|
|
2295
|
+
export type NewConnectedVehicleOptions = {
|
|
2296
|
+
/** Redirect uri */
|
|
2297
|
+
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
2298
|
+
};
|
|
2299
|
+
|
|
2196
2300
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2197
2301
|
export type OCPIAdditionalGeoLocation = {
|
|
2198
2302
|
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
@@ -2900,6 +3004,12 @@ export type Query = {
|
|
|
2900
3004
|
carPremium?: Maybe<CarPremium>;
|
|
2901
3005
|
/** Get a full list of cars */
|
|
2902
3006
|
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
3007
|
+
/** [BETA] Get connected vehicles for the current user */
|
|
3008
|
+
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
3009
|
+
/** [BETA] Get a connected vehicle by id */
|
|
3010
|
+
connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;
|
|
3011
|
+
/** [BETA] Retrieve live vehicle data by connected vehicle id */
|
|
3012
|
+
connectedVehicleData?: Maybe<VehicleData>;
|
|
2903
3013
|
/** [BETA] Get an isoline by ID */
|
|
2904
3014
|
isoline?: Maybe<Isoline>;
|
|
2905
3015
|
/** [BETA] Get a navigation session by ID */
|
|
@@ -2957,6 +3067,14 @@ export type QuerycarListArgs = {
|
|
|
2957
3067
|
page?: Maybe<Scalars["Int"]>;
|
|
2958
3068
|
};
|
|
2959
3069
|
|
|
3070
|
+
export type QueryconnectedVehicleArgs = {
|
|
3071
|
+
id: Scalars["ID"];
|
|
3072
|
+
};
|
|
3073
|
+
|
|
3074
|
+
export type QueryconnectedVehicleDataArgs = {
|
|
3075
|
+
id: Scalars["ID"];
|
|
3076
|
+
};
|
|
3077
|
+
|
|
2960
3078
|
export type QueryisolineArgs = {
|
|
2961
3079
|
id: Scalars["ID"];
|
|
2962
3080
|
};
|
|
@@ -3034,6 +3152,11 @@ export type QuerynavigationMappingArgs = {
|
|
|
3034
3152
|
language?: Maybe<MappingLanguage>;
|
|
3035
3153
|
};
|
|
3036
3154
|
|
|
3155
|
+
export type RemoveConnectedVehicleInput = {
|
|
3156
|
+
/** Id from the connected vehicle */
|
|
3157
|
+
id: Scalars["ID"];
|
|
3158
|
+
};
|
|
3159
|
+
|
|
3037
3160
|
/** EV specific data for a route request */
|
|
3038
3161
|
export type RequestEv = {
|
|
3039
3162
|
/** Internal ID of a Car */
|
|
@@ -3993,6 +4116,8 @@ export enum StepType {
|
|
|
3993
4116
|
}
|
|
3994
4117
|
|
|
3995
4118
|
export type Subscription = {
|
|
4119
|
+
/** [BETA] Subscribe to a connected vehicle. */
|
|
4120
|
+
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
3996
4121
|
/** [BETA] Subscribe to an isoline label in order to receive updates */
|
|
3997
4122
|
isoline?: Maybe<Isoline>;
|
|
3998
4123
|
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates */
|
|
@@ -4001,6 +4126,10 @@ export type Subscription = {
|
|
|
4001
4126
|
routeUpdatedById?: Maybe<Route>;
|
|
4002
4127
|
};
|
|
4003
4128
|
|
|
4129
|
+
export type SubscriptionconnectedVehicleArgs = {
|
|
4130
|
+
id: Scalars["ID"];
|
|
4131
|
+
};
|
|
4132
|
+
|
|
4004
4133
|
export type SubscriptionisolineArgs = {
|
|
4005
4134
|
id: Scalars["ID"];
|
|
4006
4135
|
};
|
|
@@ -4012,3 +4141,27 @@ export type SubscriptionnavigationUpdatedByIdArgs = {
|
|
|
4012
4141
|
export type SubscriptionrouteUpdatedByIdArgs = {
|
|
4013
4142
|
id: Scalars["ID"];
|
|
4014
4143
|
};
|
|
4144
|
+
|
|
4145
|
+
export type UpdateConnectedVehicleInput = {
|
|
4146
|
+
/** Id from the connected vehicle */
|
|
4147
|
+
id: Scalars["ID"];
|
|
4148
|
+
/** New label for a connected vehicle */
|
|
4149
|
+
label?: Maybe<Scalars["PlainString"]>;
|
|
4150
|
+
};
|
|
4151
|
+
|
|
4152
|
+
export type VehicleData = {
|
|
4153
|
+
battery?: Maybe<ConnectBattery>;
|
|
4154
|
+
location?: Maybe<VehicleLocation>;
|
|
4155
|
+
};
|
|
4156
|
+
|
|
4157
|
+
/** Location of the vehicle */
|
|
4158
|
+
export type VehicleLocation = {
|
|
4159
|
+
type: FeatureType;
|
|
4160
|
+
geometry: GeometryPoint;
|
|
4161
|
+
properties?: Maybe<VehicleLocationProperties>;
|
|
4162
|
+
};
|
|
4163
|
+
|
|
4164
|
+
/** Properties of a vehicle location */
|
|
4165
|
+
export type VehicleLocationProperties = {
|
|
4166
|
+
date: Scalars["String"];
|
|
4167
|
+
};
|
package/CHANGELOG.md
DELETED
|
@@ -1,234 +0,0 @@
|
|
|
1
|
-
## [1.30.1](https://github.com/chargetrip/types/compare/v1.30.0...v1.30.1) (2022-08-11)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* added script to fetch subscriptions in graphql schema ([7fc6ef9](https://github.com/chargetrip/types/commit/7fc6ef9e96fe8fa746cb986d8e08d4ecf35f4a77))
|
|
7
|
-
|
|
8
|
-
# [1.30.0](https://github.com/chargetrip/types/compare/v1.29.0...v1.30.0) (2022-08-10)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Features
|
|
12
|
-
|
|
13
|
-
* fix build ([52b0e8b](https://github.com/chargetrip/types/commit/52b0e8bad89bdde50df6429a3fe05ef748c0ee54))
|
|
14
|
-
|
|
15
|
-
# [1.29.0](https://github.com/chargetrip/types/compare/v1.28.0...v1.29.0) (2022-08-08)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
### Features
|
|
19
|
-
|
|
20
|
-
* release 1.30.0 ([a08af20](https://github.com/chargetrip/types/commit/a08af20c43c0a9c6534b4bdff79e6d7c924cdd3a))
|
|
21
|
-
|
|
22
|
-
# [1.28.0](https://github.com/chargetrip/types/compare/v1.27.0...v1.28.0) (2022-07-06)
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Features
|
|
26
|
-
|
|
27
|
-
* release 1.29.0 ([96c653d](https://github.com/chargetrip/types/commit/96c653dfb088533401b1b12691c9df38fcd5e74c))
|
|
28
|
-
|
|
29
|
-
# [1.27.0](https://github.com/chargetrip/types/compare/v1.26.0...v1.27.0) (2022-05-05)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Features
|
|
33
|
-
|
|
34
|
-
* bump to 1.27.0 ([666367f](https://github.com/chargetrip/types/commit/666367f41f25ab2750c33367a56bd9522d3082ba))
|
|
35
|
-
* release 1.27.0 ([9e141fe](https://github.com/chargetrip/types/commit/9e141fe33b194cf3d3a14918134742e4901545d7))
|
|
36
|
-
* release 1.27.0 ([b8d4422](https://github.com/chargetrip/types/commit/b8d44226f8e2934f97796f3dbea810962e1dae7b))
|
|
37
|
-
|
|
38
|
-
# [1.26.0](https://github.com/chargetrip/types/compare/v1.25.0...v1.26.0) (2022-04-29)
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Features
|
|
42
|
-
|
|
43
|
-
* bump version to 1.26 ([7391685](https://github.com/chargetrip/types/commit/7391685f3965f764792779cca789ada0c2701a61))
|
|
44
|
-
|
|
45
|
-
# [1.25.0](https://github.com/chargetrip/types/compare/v1.24.0...v1.25.0) (2022-04-08)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
### Features
|
|
49
|
-
|
|
50
|
-
* release 1.25.0 ([17cb284](https://github.com/chargetrip/types/commit/17cb284aed39a79dc6432e258099e4ee361482fb))
|
|
51
|
-
|
|
52
|
-
# [1.24.0](https://github.com/chargetrip/types/compare/v1.23.0...v1.24.0) (2022-02-24)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Features
|
|
56
|
-
|
|
57
|
-
* version bump ([8521626](https://github.com/chargetrip/types/commit/85216262da8954d4107cc4da4ab75c9e3da3e4d6))
|
|
58
|
-
|
|
59
|
-
# [1.23.0](https://github.com/chargetrip/types/compare/v1.22.0...v1.23.0) (2022-02-24)
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
### Features
|
|
63
|
-
|
|
64
|
-
* force release ([501a282](https://github.com/chargetrip/types/commit/501a2822cb13f0343a06f370f1f00784db5fb557))
|
|
65
|
-
* force release 1.23.0 ([6845063](https://github.com/chargetrip/types/commit/684506312100679bb376fb7815e393dbef1f3bc6))
|
|
66
|
-
|
|
67
|
-
# [1.22.0](https://github.com/chargetrip/types/compare/v1.21.0...v1.22.0) (2022-02-24).
|
|
68
|
-
|
|
69
|
-
### Features
|
|
70
|
-
|
|
71
|
-
* release 1.23.0 ([#22](https://github.com/chargetrip/types/issues/22)) ([b052711](https://github.com/chargetrip/types/commit/b0527117ffd7f2a4b8f86c76f72b27277b84a424))
|
|
72
|
-
|
|
73
|
-
# [1.21.0](https://github.com/chargetrip/types/compare/v1.20.0...v1.21.0) (2022-02-24)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
### Features
|
|
77
|
-
|
|
78
|
-
* bump version ([#19](https://github.com/chargetrip/types/issues/19)) ([d15773a](https://github.com/chargetrip/types/commit/d15773a60bb875e17830788ff3489f592ffa6728))
|
|
79
|
-
* release 1.22.0 ([#21](https://github.com/chargetrip/types/issues/21)) ([25ef7e0](https://github.com/chargetrip/types/commit/25ef7e0dbb3cdf1c8c082fc3605c54545b6e9ecf))
|
|
80
|
-
|
|
81
|
-
# [1.20.0](https://github.com/chargetrip/types/compare/v1.19.0...v1.20.0) (2021-11-17)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
### Features
|
|
85
|
-
|
|
86
|
-
* update to 1.20.0 ([#18](https://github.com/chargetrip/types/issues/18)) ([ec0472e](https://github.com/chargetrip/types/commit/ec0472ed36050f9a064781facf54063f4c16dc02))
|
|
87
|
-
|
|
88
|
-
# [1.19.0](https://github.com/chargetrip/types/compare/v1.18.0...v1.19.0) (2021-10-28)
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
### Features
|
|
92
|
-
|
|
93
|
-
* bump to version 1.19.0 ([#17](https://github.com/chargetrip/types/issues/17)) ([1c3f78b](https://github.com/chargetrip/types/commit/1c3f78b23fac3d826a53f422a0ff9e5e31bf7557))
|
|
94
|
-
|
|
95
|
-
# [1.18.0](https://github.com/chargetrip/types/compare/v1.17.0...v1.18.0) (2021-09-16)
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
### Features
|
|
99
|
-
|
|
100
|
-
* release version 1.18.0 ([#16](https://github.com/chargetrip/types/issues/16)) ([d2cd7db](https://github.com/chargetrip/types/commit/d2cd7dbea8b19ac35f19e08c1e827310d7dacdf0))
|
|
101
|
-
|
|
102
|
-
# [1.17.0](https://github.com/chargetrip/types/compare/v1.16.0...v1.17.0) (2021-08-25)
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
### Features
|
|
106
|
-
|
|
107
|
-
* release 1.17.0 ([#15](https://github.com/chargetrip/types/issues/15)) ([8ea19af](https://github.com/chargetrip/types/commit/8ea19afd19e2f6a74d4f7db2ca2ba7e7a14fc4f6))
|
|
108
|
-
|
|
109
|
-
# [1.16.0](https://github.com/chargetrip/types/compare/v1.15.0...v1.16.0) (2021-08-18)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
### Features
|
|
113
|
-
|
|
114
|
-
* update to 1.16.0 ([#14](https://github.com/chargetrip/types/issues/14)) ([ac772b0](https://github.com/chargetrip/types/commit/ac772b087e4f744834723bc2d0acc890f0e15a61))
|
|
115
|
-
|
|
116
|
-
# [1.15.0](https://github.com/chargetrip/types/compare/v1.14.0...v1.15.0) (2021-08-11)
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
### Features
|
|
120
|
-
|
|
121
|
-
* update to 1.15.0 ([#13](https://github.com/chargetrip/types/issues/13)) ([4076f5d](https://github.com/chargetrip/types/commit/4076f5d76a91e6794c662c5a61ceb847b21067cc))
|
|
122
|
-
|
|
123
|
-
# [1.14.0](https://github.com/chargetrip/types/compare/v1.13.0...v1.14.0) (2021-06-24)
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
### Features
|
|
127
|
-
|
|
128
|
-
* Update to 1.14.0 ([4bb7d9d](https://github.com/chargetrip/types/commit/4bb7d9d00e1804357e77b1c69e4b5738d021d971))
|
|
129
|
-
|
|
130
|
-
# [1.13.0](https://github.com/chargetrip/types/compare/v1.12.0...v1.13.0) (2021-06-02)
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
### Features
|
|
134
|
-
|
|
135
|
-
* update to 1.13.0 ([#11](https://github.com/chargetrip/types/issues/11)) ([24bbd40](https://github.com/chargetrip/types/commit/24bbd4008c0dba480ff21ba92bd90230ac8d686b))
|
|
136
|
-
|
|
137
|
-
# [1.12.0](https://github.com/chargetrip/types/compare/v1.11.0...v1.12.0) (2021-05-11)
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
### Features
|
|
141
|
-
|
|
142
|
-
* release new version 1.13.0 ([#10](https://github.com/chargetrip/types/issues/10)) ([2f02ac9](https://github.com/chargetrip/types/commit/2f02ac97868578b1449eae93139a2a5b48eed34d))
|
|
143
|
-
|
|
144
|
-
# [1.11.0](https://github.com/chargetrip/types/compare/v1.10.0...v1.11.0) (2021-01-27)
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
### Features
|
|
148
|
-
|
|
149
|
-
* update version ([#7](https://github.com/chargetrip/types/issues/7)) ([91becff](https://github.com/chargetrip/types/commit/91becff7006a6e837fd43671f74b157d0f3f7401))
|
|
150
|
-
|
|
151
|
-
# [1.10.0](https://github.com/chargetrip/types/compare/v1.9.0...v1.10.0) (2021-01-27)
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
### Features
|
|
155
|
-
|
|
156
|
-
* update to version 2.0.0 (car improvements) ([#6](https://github.com/chargetrip/types/issues/6)) ([8c007eb](https://github.com/chargetrip/types/commit/8c007eb2fcd50200e52850b0d2bd59cf5e69f8d4))
|
|
157
|
-
|
|
158
|
-
# [1.9.0](https://github.com/chargetrip/types/compare/v1.8.0...v1.9.0) (2020-11-20)
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
### Features
|
|
162
|
-
|
|
163
|
-
* version bump to 1.9.0 add "predicted_availability stations ([#5](https://github.com/chargetrip/types/issues/5)) ([e768efc](https://github.com/chargetrip/types/commit/e768efcb4b147158b69177c4f47c02c31c87c5c9))
|
|
164
|
-
|
|
165
|
-
# [1.8.0](https://github.com/chargetrip/types/compare/v1.7.0...v1.8.0) (2020-11-18)
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
### Features
|
|
169
|
-
|
|
170
|
-
* version bump to 1.8.0 ([#4](https://github.com/chargetrip/types/issues/4)) ([e2d07e9](https://github.com/chargetrip/types/commit/e2d07e9444ded33802fa6562581b2b353d9d14ee))
|
|
171
|
-
|
|
172
|
-
# [1.7.0](https://github.com/chargetrip/types/compare/v1.6.0...v1.7.0) (2020-10-26)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
### Features
|
|
176
|
-
|
|
177
|
-
* version bump to 1.7.0 ([#3](https://github.com/chargetrip/types/issues/3)) ([e2dec14](https://github.com/chargetrip/types/commit/e2dec1441d1c8e411979f18d8605c79195c5e606))
|
|
178
|
-
|
|
179
|
-
# [1.1.0](https://github.com/chargetrip/types/compare/v1.0.0...v1.1.0) (2020-10-26)
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
### Features
|
|
183
|
-
|
|
184
|
-
* car schema updates ([#2](https://github.com/chargetrip/types/issues/2)) ([3a4e84f](https://github.com/chargetrip/types/commit/3a4e84f28a98a6cd9cfb7bbeaf52a539a3163562))
|
|
185
|
-
|
|
186
|
-
# 1.5.1 (2020-09-25)
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
### Features
|
|
190
|
-
|
|
191
|
-
* Version 1.5.0 did not contain the type declaration and did not work properly and is now deprecated.
|
|
192
|
-
|
|
193
|
-
# 1.5.0 (2020-09-21)
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
### Features
|
|
197
|
-
|
|
198
|
-
* update descriptions and add chargetripEdition field on Car ([#1](https://github.com/chargetrip/types/issues/1)) ([98cff40](https://github.com/chargetrip/types/commit/98cff40379cf6a9ab2eccee931bbb7c211992d8f))
|
|
199
|
-
|
|
200
|
-
# [1.4.0](https://github.com/chargetrip/types/compare/v1.3.0...v1.4.0) (2020-07-23)
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
### Features
|
|
204
|
-
|
|
205
|
-
* fix entry points ([dd186b1](https://github.com/chargetrip/types/commit/dd186b1c3963c0b43a4ff72faa1b1189a473a85f))
|
|
206
|
-
|
|
207
|
-
# [1.3.0](https://github.com/chargetrip/types/compare/v1.2.0...v1.3.0) (2020-07-22)
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
### Features
|
|
211
|
-
|
|
212
|
-
* Add build step ([8249d96](https://github.com/chargetrip/types/commit/8249d962e05c9452670888c5d9a0c4781dd15cf8))
|
|
213
|
-
* add setup ([4c6021e](https://github.com/chargetrip/types/commit/4c6021e35ce1b4a8f27ff5becad74b1efb9f2806))
|
|
214
|
-
|
|
215
|
-
# [1.2.0](https://github.com/chargetrip/types/compare/v1.1.0...v1.2.0) (2020-07-22)
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
### Features
|
|
219
|
-
|
|
220
|
-
* include dist folder ([8fe894f](https://github.com/chargetrip/types/commit/8fe894f07f9d2d2c18e92d23a5bf8544eae21f56))
|
|
221
|
-
|
|
222
|
-
# [1.1.0](https://github.com/chargetrip/types/compare/v1.0.4...v1.1.0) (2020-07-22)
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
### Features
|
|
226
|
-
|
|
227
|
-
* add rollup and babel setup ([5a78e7b](https://github.com/chargetrip/types/commit/5a78e7b658878a83d2e52f86148dd7438c69613b))
|
|
228
|
-
|
|
229
|
-
## [1.0.4](https://github.com/chargetrip/types/compare/v1.0.3...v1.0.4) (2020-07-22)
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
### Bug Fixes
|
|
233
|
-
|
|
234
|
-
* fix plugins semantic release ([4108bc5](https://github.com/chargetrip/types/commit/4108bc528c11dd5049f58e637f630be05b4051a6))
|