@chargetrip/types 1.59.0 → 1.60.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.
@@ -3880,9 +3880,9 @@ export declare type Review = {
3880
3880
  /** Boolean tags for a station review. */
3881
3881
  tags?: Maybe<ReviewTags>;
3882
3882
  /** Date and time when a review was created. */
3883
- createdAt?: Maybe<Scalars["String"]>;
3883
+ createdAt?: Maybe<Scalars["DateTime"]>;
3884
3884
  /** Date and time when a review was updated. */
3885
- updatedAt?: Maybe<Scalars["String"]>;
3885
+ updatedAt?: Maybe<Scalars["DateTime"]>;
3886
3886
  };
3887
3887
  /** Form input to add a new review. */
3888
3888
  export declare type ReviewAdd = {
@@ -21126,7 +21126,7 @@
21126
21126
  "args": [],
21127
21127
  "type": {
21128
21128
  "kind": "SCALAR",
21129
- "name": "String",
21129
+ "name": "DateTime",
21130
21130
  "ofType": null
21131
21131
  },
21132
21132
  "isDeprecated": false,
@@ -21138,7 +21138,7 @@
21138
21138
  "args": [],
21139
21139
  "type": {
21140
21140
  "kind": "SCALAR",
21141
- "name": "String",
21141
+ "name": "DateTime",
21142
21142
  "ofType": null
21143
21143
  },
21144
21144
  "isDeprecated": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chargetrip/types",
3
- "version": "1.59.0",
3
+ "version": "1.60.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "chargetrip",
package/src/graphql.ts CHANGED
@@ -4196,9 +4196,9 @@ export type Review = {
4196
4196
  /** Boolean tags for a station review. */
4197
4197
  tags?: Maybe<ReviewTags>;
4198
4198
  /** Date and time when a review was created. */
4199
- createdAt?: Maybe<Scalars["String"]>;
4199
+ createdAt?: Maybe<Scalars["DateTime"]>;
4200
4200
  /** Date and time when a review was updated. */
4201
- updatedAt?: Maybe<Scalars["String"]>;
4201
+ updatedAt?: Maybe<Scalars["DateTime"]>;
4202
4202
  };
4203
4203
 
4204
4204
  /** Form input to add a new review. */