Skip to content

Commit 02b54ed

Browse files
run pnpm graphql:codegen
1 parent 8fc9ddf commit 02b54ed

File tree

1 file changed

+15
-1
lines changed
  • packages/app/src/cli/api/graphql/app-dev/generated

1 file changed

+15
-1
lines changed

packages/app/src/cli/api/graphql/app-dev/generated/types.d.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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 */
22
import {JsonMapType} from '@shopify/cli-kit/node/toml'
33

44
export 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

Comments
 (0)