Skip to content

Commit aa765ca

Browse files
committed
add more missing graphql types
1 parent 3b05ed6 commit aa765ca

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
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
}

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,6 @@ export type BulkOperationsSortKeys =
210210
| 'COMPLETED_AT'
211211
/** Sort by the `created_at` value. */
212212
| 'CREATED_AT'
213-
/** Sort by the `status` value. */
214-
| 'STATUS'
215213

216214
/**
217215
* The possible HTTP methods that can be used when sending a request to upload a file using information from a

0 commit comments

Comments
 (0)