@chargetrip/types 1.63.0 → 1.65.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/ts/graphql.d.ts
CHANGED
|
@@ -118,7 +118,10 @@ export declare type AlternativeStationRadius = {
|
|
|
118
118
|
value: Scalars["Float"];
|
|
119
119
|
/** Preferred unit for the alternative station radius. */
|
|
120
120
|
type: DistanceUnit;
|
|
121
|
-
/**
|
|
121
|
+
/**
|
|
122
|
+
* Source of inputted data.
|
|
123
|
+
* @deprecated Not in use.
|
|
124
|
+
*/
|
|
122
125
|
source: TelemetryInputSource;
|
|
123
126
|
};
|
|
124
127
|
export declare type AlternativeStationRadiusInput = {
|
|
@@ -6305,6 +6308,8 @@ export declare type Station = {
|
|
|
6305
6308
|
adhoc_authorisation_payment_method?: Maybe<Array<StationAdhocAuthorisationPaymentMethod>>;
|
|
6306
6309
|
/** Type of access to the charging station. */
|
|
6307
6310
|
access_type?: Maybe<AccessType>;
|
|
6311
|
+
/** [ALPHA] List of active boosting groups to which the station belongs. */
|
|
6312
|
+
boosting_group_ids?: Maybe<Array<Scalars["ID"]>>;
|
|
6308
6313
|
};
|
|
6309
6314
|
export declare enum StationAdhocAuthorisationPaymentMethod {
|
|
6310
6315
|
/** Authentication by car through Plug and Charge. */
|
package/graphql.schema.json
CHANGED
|
@@ -481,8 +481,8 @@
|
|
|
481
481
|
"ofType": null
|
|
482
482
|
}
|
|
483
483
|
},
|
|
484
|
-
"isDeprecated":
|
|
485
|
-
"deprecationReason":
|
|
484
|
+
"isDeprecated": true,
|
|
485
|
+
"deprecationReason": "Not in use."
|
|
486
486
|
}
|
|
487
487
|
],
|
|
488
488
|
"inputFields": null,
|
|
@@ -35773,6 +35773,26 @@
|
|
|
35773
35773
|
},
|
|
35774
35774
|
"isDeprecated": false,
|
|
35775
35775
|
"deprecationReason": null
|
|
35776
|
+
},
|
|
35777
|
+
{
|
|
35778
|
+
"name": "boosting_group_ids",
|
|
35779
|
+
"description": "[ALPHA] List of active boosting groups to which the station belongs.",
|
|
35780
|
+
"args": [],
|
|
35781
|
+
"type": {
|
|
35782
|
+
"kind": "LIST",
|
|
35783
|
+
"name": null,
|
|
35784
|
+
"ofType": {
|
|
35785
|
+
"kind": "NON_NULL",
|
|
35786
|
+
"name": null,
|
|
35787
|
+
"ofType": {
|
|
35788
|
+
"kind": "SCALAR",
|
|
35789
|
+
"name": "ID",
|
|
35790
|
+
"ofType": null
|
|
35791
|
+
}
|
|
35792
|
+
}
|
|
35793
|
+
},
|
|
35794
|
+
"isDeprecated": false,
|
|
35795
|
+
"deprecationReason": null
|
|
35776
35796
|
}
|
|
35777
35797
|
],
|
|
35778
35798
|
"inputFields": null,
|
package/package.json
CHANGED
package/src/graphql.ts
CHANGED
|
@@ -120,7 +120,10 @@ export type AlternativeStationRadius = {
|
|
|
120
120
|
value: Scalars["Float"];
|
|
121
121
|
/** Preferred unit for the alternative station radius. */
|
|
122
122
|
type: DistanceUnit;
|
|
123
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Source of inputted data.
|
|
125
|
+
* @deprecated Not in use.
|
|
126
|
+
*/
|
|
124
127
|
source: TelemetryInputSource;
|
|
125
128
|
};
|
|
126
129
|
|
|
@@ -6889,6 +6892,8 @@ export type Station = {
|
|
|
6889
6892
|
>;
|
|
6890
6893
|
/** Type of access to the charging station. */
|
|
6891
6894
|
access_type?: Maybe<AccessType>;
|
|
6895
|
+
/** [ALPHA] List of active boosting groups to which the station belongs. */
|
|
6896
|
+
boosting_group_ids?: Maybe<Array<Scalars["ID"]>>;
|
|
6892
6897
|
};
|
|
6893
6898
|
|
|
6894
6899
|
export enum StationAdhocAuthorisationPaymentMethod {
|