@chargetrip/types 1.64.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
|
@@ -6308,6 +6308,8 @@ export declare type Station = {
|
|
|
6308
6308
|
adhoc_authorisation_payment_method?: Maybe<Array<StationAdhocAuthorisationPaymentMethod>>;
|
|
6309
6309
|
/** Type of access to the charging station. */
|
|
6310
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"]>>;
|
|
6311
6313
|
};
|
|
6312
6314
|
export declare enum StationAdhocAuthorisationPaymentMethod {
|
|
6313
6315
|
/** Authentication by car through Plug and Charge. */
|
package/graphql.schema.json
CHANGED
|
@@ -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
|
@@ -6892,6 +6892,8 @@ export type Station = {
|
|
|
6892
6892
|
>;
|
|
6893
6893
|
/** Type of access to the charging station. */
|
|
6894
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"]>>;
|
|
6895
6897
|
};
|
|
6896
6898
|
|
|
6897
6899
|
export enum StationAdhocAuthorisationPaymentMethod {
|