@chargetrip/types 1.63.0 → 1.64.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 = {
|
package/graphql.schema.json
CHANGED
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
|
|