From eee9ea60a77fb3d659cee6cccdd1986a22707cdc Mon Sep 17 00:00:00 2001 From: Felix Scholze Date: Fri, 31 Jan 2025 02:04:59 +0100 Subject: [PATCH] chore(types): update --- graphql.schema.json | 183 +++++++++++++++++++++++++++++++ src/types/generated/graphql.d.ts | 30 +++++ 2 files changed, 213 insertions(+) diff --git a/graphql.schema.json b/graphql.schema.json index 9ba7ab71..01e7a6a0 100644 --- a/graphql.schema.json +++ b/graphql.schema.json @@ -14618,6 +14618,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "statusIn", + "description": "One or more Comment Statuses to limit results by", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentStatusEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "userId", "description": "Include comments for a specific user ID.", @@ -15250,6 +15266,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "statusIn", + "description": "One or more Comment Statuses to limit results by", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentStatusEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "userId", "description": "Include comments for a specific user ID.", @@ -86141,6 +86173,18 @@ "isDeprecated": true, "deprecationReason": "Use `EnqueuedScript.extraData` instead." }, + { + "name": "group", + "description": "The loading group to which this asset belongs.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "handle", "description": "The handle of the enqueued asset", @@ -86311,6 +86355,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "group", + "description": "The loading group to which this asset belongs.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groupLocation", + "description": "The location where this script should be loaded", + "args": [], + "type": { + "kind": "ENUM", + "name": "ScriptLoadingGroupLocationEnum", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "handle", "description": "The handle of the enqueued asset", @@ -86772,6 +86840,18 @@ "isDeprecated": true, "deprecationReason": "Use `EnqueuedScript.extraData` instead." }, + { + "name": "group", + "description": "The loading group to which this asset belongs.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "handle", "description": "The handle of the enqueued asset", @@ -92371,6 +92451,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "statusIn", + "description": "One or more Comment Statuses to limit results by", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentStatusEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "userId", "description": "Include comments for a specific user ID.", @@ -99606,6 +99702,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "statusIn", + "description": "One or more Comment Statuses to limit results by", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentStatusEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "userId", "description": "Include comments for a specific user ID.", @@ -106356,6 +106468,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "statusIn", + "description": "One or more Comment Statuses to limit results by", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentStatusEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "userId", "description": "Include comments for a specific user ID.", @@ -119805,6 +119933,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "statusIn", + "description": "One or more Comment Statuses to limit results by", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentStatusEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "userId", "description": "Include comments for a specific user ID.", @@ -129920,6 +130064,29 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "ScriptLoadingGroupLocationEnum", + "description": "Location in the document where the script to be loaded", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "FOOTER", + "description": "A script to be loaded in document at right before the closing `` tag", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "HEADER", + "description": "A script to be loaded in document `` tag", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "ENUM", "name": "ScriptLoadingStrategyEnum", @@ -141781,6 +141948,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "statusIn", + "description": "One or more Comment Statuses to limit results by", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentStatusEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "userId", "description": "Include comments for a specific user ID.", diff --git a/src/types/generated/graphql.d.ts b/src/types/generated/graphql.d.ts index a099a4a5..15a94676 100644 --- a/src/types/generated/graphql.d.ts +++ b/src/types/generated/graphql.d.ts @@ -2204,6 +2204,8 @@ export type CommentToCommentConnectionWhereArgs = { search?: InputMaybe; /** Comment status to limit results by. */ status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -2301,6 +2303,8 @@ export type CommentToParentCommentConnectionWhereArgs = { search?: InputMaybe; /** Comment status to limit results by. */ status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -10339,6 +10343,8 @@ export type EnqueuedAsset = { * @deprecated Use `EnqueuedScript.extraData` instead. */ extra?: Maybe; + /** The loading group to which this asset belongs. */ + group?: Maybe; /** The handle of the enqueued asset */ handle?: Maybe; /** The ID of the enqueued asset */ @@ -10372,6 +10378,10 @@ export type EnqueuedScript = EnqueuedAsset & Node & { extra?: Maybe; /** Extra data supplied to the enqueued script */ extraData?: Maybe; + /** The loading group to which this asset belongs. */ + group?: Maybe; + /** The location where this script should be loaded */ + groupLocation?: Maybe; /** The handle of the enqueued asset */ handle?: Maybe; /** The global ID of the enqueued script */ @@ -10438,6 +10448,8 @@ export type EnqueuedStylesheet = EnqueuedAsset & Node & { * @deprecated Use `EnqueuedScript.extraData` instead. */ extra?: Maybe; + /** The loading group to which this asset belongs. */ + group?: Maybe; /** The handle of the enqueued asset */ handle?: Maybe; /** The global ID of the enqueued stylesheet */ @@ -11345,6 +11357,8 @@ export type MediaItemToCommentConnectionWhereArgs = { search?: InputMaybe; /** Comment status to limit results by. */ status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -12504,6 +12518,8 @@ export type PageToCommentConnectionWhereArgs = { search?: InputMaybe; /** Comment status to limit results by. */ status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -13611,6 +13627,8 @@ export type PostToCommentConnectionWhereArgs = { search?: InputMaybe; /** Comment status to limit results by. */ status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -16009,6 +16027,8 @@ export type RootQueryToCommentConnectionWhereArgs = { search?: InputMaybe; /** Comment status to limit results by. */ status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; }; @@ -17516,6 +17536,14 @@ export type SafeSvgSvgIconBlockAttributes = { type: Scalars['String']['output']; }; +/** Location in the document where the script to be loaded */ +export enum ScriptLoadingGroupLocationEnum { + /** A script to be loaded in document at right before the closing `` tag */ + Footer = 'FOOTER', + /** A script to be loaded in document `` tag */ + Header = 'HEADER' +} + /** The strategy to use when loading the script */ export enum ScriptLoadingStrategyEnum { /** Use the script `async` attribute */ @@ -19458,6 +19486,8 @@ export type UserToCommentConnectionWhereArgs = { search?: InputMaybe; /** Comment status to limit results by. */ status?: InputMaybe; + /** One or more Comment Statuses to limit results by */ + statusIn?: InputMaybe>>; /** Include comments for a specific user ID. */ userId?: InputMaybe; };