1- /* eslint-disable @typescript-eslint/consistent-type-definitions, @typescript-eslint/naming-convention, tsdoc/syntax */
1+ /* eslint-disable @typescript-eslint/consistent-type-definitions, @typescript-eslint/naming-convention, @typescript-eslint/no-explicit-any, tsdoc/syntax */
22import { JsonMapType } from '@shopify/cli-kit/node/toml'
33
44export type Maybe < T > = T | null
@@ -15,6 +15,12 @@ export type Scalars = {
1515 Boolean : { input : boolean ; output : boolean }
1616 Int : { input : number ; output : number }
1717 Float : { input : number ; output : number }
18+ /**
19+ * Represents an [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)-encoded date and time string.
20+ * For example, 3:50 pm on September 7, 2019 in the time zone of UTC (Coordinated Universal Time) is
21+ * represented as `"2019-09-07T15:50:00Z`".
22+ */
23+ DateTime : { input : any ; output : any }
1824 /**
1925 * A [JSON](https://www.json.org/json-en.html) object.
2026 *
@@ -31,4 +37,12 @@ export type Scalars = {
3137 * }`
3238 */
3339 JSON : { input : JsonMapType | string ; output : JsonMapType }
40+ /**
41+ * Represents an [RFC 3986](https://datatracker.ietf.org/doc/html/rfc3986) and
42+ * [RFC 3987](https://datatracker.ietf.org/doc/html/rfc3987)-compliant URI string.
43+ *
44+ * For example, `"https://example.myshopify.com"` is a valid URL. It includes a scheme (`https`) and a host
45+ * (`example.myshopify.com`).
46+ */
47+ URL : { input : string ; output : string }
3448}
0 commit comments