@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.
@@ -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
- /** Source of inputted data. */
121
+ /**
122
+ * Source of inputted data.
123
+ * @deprecated Not in use.
124
+ */
122
125
  source: TelemetryInputSource;
123
126
  };
124
127
  export declare type AlternativeStationRadiusInput = {
@@ -481,8 +481,8 @@
481
481
  "ofType": null
482
482
  }
483
483
  },
484
- "isDeprecated": false,
485
- "deprecationReason": null
484
+ "isDeprecated": true,
485
+ "deprecationReason": "Not in use."
486
486
  }
487
487
  ],
488
488
  "inputFields": null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chargetrip/types",
3
- "version": "1.63.0",
3
+ "version": "1.64.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "chargetrip",
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
- /** Source of inputted data. */
123
+ /**
124
+ * Source of inputted data.
125
+ * @deprecated Not in use.
126
+ */
124
127
  source: TelemetryInputSource;
125
128
  };
126
129