@nexo-labs/payload-lexical-blocks-builder 1.4.4 → 1.5.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.
@@ -29,7 +29,6 @@ import React$1, { CSSProperties, Component as Component$1, ReactNode, cloneEleme
29
29
  import { URL as URL$1, URLSearchParams as URLSearchParams$1 } from "url";
30
30
  import GraphQL, { ExecutionArgs, ExecutionResult, GraphQLFormattedError, GraphQLInputObjectType, GraphQLNonNull, GraphQLObjectType, GraphQLSchema, ValidationRule } from "graphql";
31
31
  import { BusboyConfig } from "busboy";
32
- import { JSONSchema4 } from "json-schema";
33
32
  import { Agent } from "http";
34
33
  import { Agent as Agent$1 } from "https";
35
34
  import { ParsedUrlQuery } from "querystring";
@@ -1151,7 +1150,219 @@ type OptionalKeys<Type> = Type extends object ? keyof { [Key in keyof Type as Ty
1151
1150
  //#region ../../node_modules/.pnpm/ts-essentials@10.0.3_typescript@5.7.3/node_modules/ts-essentials/dist/required-keys/index.d.ts
1152
1151
  type RequiredKeys<Type> = Type extends unknown ? Exclude<keyof Type, OptionalKeys<Type>> : never;
1153
1152
  //#endregion
1154
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/lib/load-custom-routes.d.ts
1153
+ //#region ../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts
1154
+ // ==================================================================================================
1155
+ // JSON Schema Draft 04
1156
+ // ==================================================================================================
1157
+
1158
+ /**
1159
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
1160
+ */
1161
+ type JSONSchema4TypeName = "string" //
1162
+ | "number" | "integer" | "boolean" | "object" | "array" | "null" | "any";
1163
+ /**
1164
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-04#section-3.5
1165
+ */
1166
+ type JSONSchema4Type = string //
1167
+ | number | boolean | JSONSchema4Object | JSONSchema4Array | null;
1168
+ // Workaround for infinite type recursion
1169
+ interface JSONSchema4Object {
1170
+ [key: string]: JSONSchema4Type;
1171
+ }
1172
+ // Workaround for infinite type recursion
1173
+ // https://github.com/Microsoft/TypeScript/issues/3496#issuecomment-128553540
1174
+ interface JSONSchema4Array extends Array<JSONSchema4Type> {}
1175
+ /**
1176
+ * Meta schema
1177
+ *
1178
+ * Recommended values:
1179
+ * - 'http://json-schema.org/schema#'
1180
+ * - 'http://json-schema.org/hyper-schema#'
1181
+ * - 'http://json-schema.org/draft-04/schema#'
1182
+ * - 'http://json-schema.org/draft-04/hyper-schema#'
1183
+ * - 'http://json-schema.org/draft-03/schema#'
1184
+ * - 'http://json-schema.org/draft-03/hyper-schema#'
1185
+ *
1186
+ * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-5
1187
+ */
1188
+ type JSONSchema4Version = string;
1189
+ /**
1190
+ * JSON Schema V4
1191
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-04
1192
+ */
1193
+ interface JSONSchema4 {
1194
+ id?: string | undefined;
1195
+ $ref?: string | undefined;
1196
+ $schema?: JSONSchema4Version | undefined;
1197
+
1198
+ /**
1199
+ * This attribute is a string that provides a short description of the
1200
+ * instance property.
1201
+ *
1202
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.21
1203
+ */
1204
+ title?: string | undefined;
1205
+
1206
+ /**
1207
+ * This attribute is a string that provides a full description of the of
1208
+ * purpose the instance property.
1209
+ *
1210
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.22
1211
+ */
1212
+ description?: string | undefined;
1213
+ default?: JSONSchema4Type | undefined;
1214
+ multipleOf?: number | undefined;
1215
+ maximum?: number | undefined;
1216
+ exclusiveMaximum?: boolean | undefined;
1217
+ minimum?: number | undefined;
1218
+ exclusiveMinimum?: boolean | undefined;
1219
+ maxLength?: number | undefined;
1220
+ minLength?: number | undefined;
1221
+ pattern?: string | undefined;
1222
+
1223
+ /**
1224
+ * May only be defined when "items" is defined, and is a tuple of JSONSchemas.
1225
+ *
1226
+ * This provides a definition for additional items in an array instance
1227
+ * when tuple definitions of the items is provided. This can be false
1228
+ * to indicate additional items in the array are not allowed, or it can
1229
+ * be a schema that defines the schema of the additional items.
1230
+ *
1231
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.6
1232
+ */
1233
+ additionalItems?: boolean | JSONSchema4 | undefined;
1234
+
1235
+ /**
1236
+ * This attribute defines the allowed items in an instance array, and
1237
+ * MUST be a schema or an array of schemas. The default value is an
1238
+ * empty schema which allows any value for items in the instance array.
1239
+ *
1240
+ * When this attribute value is a schema and the instance value is an
1241
+ * array, then all the items in the array MUST be valid according to the
1242
+ * schema.
1243
+ *
1244
+ * When this attribute value is an array of schemas and the instance
1245
+ * value is an array, each position in the instance array MUST conform
1246
+ * to the schema in the corresponding position for this array. This
1247
+ * called tuple typing. When tuple typing is used, additional items are
1248
+ * allowed, disallowed, or constrained by the "additionalItems"
1249
+ * (Section 5.6) attribute using the same rules as
1250
+ * "additionalProperties" (Section 5.4) for objects.
1251
+ *
1252
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.5
1253
+ */
1254
+ items?: JSONSchema4 | JSONSchema4[] | undefined;
1255
+ maxItems?: number | undefined;
1256
+ minItems?: number | undefined;
1257
+ uniqueItems?: boolean | undefined;
1258
+ maxProperties?: number | undefined;
1259
+ minProperties?: number | undefined;
1260
+
1261
+ /**
1262
+ * This attribute indicates if the instance must have a value, and not
1263
+ * be undefined. This is false by default, making the instance
1264
+ * optional.
1265
+ *
1266
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.7
1267
+ */
1268
+ required?: boolean | string[] | undefined;
1269
+
1270
+ /**
1271
+ * This attribute defines a schema for all properties that are not
1272
+ * explicitly defined in an object type definition. If specified, the
1273
+ * value MUST be a schema or a boolean. If false is provided, no
1274
+ * additional properties are allowed beyond the properties defined in
1275
+ * the schema. The default value is an empty schema which allows any
1276
+ * value for additional properties.
1277
+ *
1278
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.4
1279
+ */
1280
+ additionalProperties?: boolean | JSONSchema4 | undefined;
1281
+ definitions?: {
1282
+ [k: string]: JSONSchema4;
1283
+ } | undefined;
1284
+
1285
+ /**
1286
+ * This attribute is an object with property definitions that define the
1287
+ * valid values of instance object property values. When the instance
1288
+ * value is an object, the property values of the instance object MUST
1289
+ * conform to the property definitions in this object. In this object,
1290
+ * each property definition's value MUST be a schema, and the property's
1291
+ * name MUST be the name of the instance property that it defines. The
1292
+ * instance property value MUST be valid according to the schema from
1293
+ * the property definition. Properties are considered unordered, the
1294
+ * order of the instance properties MAY be in any order.
1295
+ *
1296
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.2
1297
+ */
1298
+ properties?: {
1299
+ [k: string]: JSONSchema4;
1300
+ } | undefined;
1301
+
1302
+ /**
1303
+ * This attribute is an object that defines the schema for a set of
1304
+ * property names of an object instance. The name of each property of
1305
+ * this attribute's object is a regular expression pattern in the ECMA
1306
+ * 262/Perl 5 format, while the value is a schema. If the pattern
1307
+ * matches the name of a property on the instance object, the value of
1308
+ * the instance's property MUST be valid against the pattern name's
1309
+ * schema value.
1310
+ *
1311
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.3
1312
+ */
1313
+ patternProperties?: {
1314
+ [k: string]: JSONSchema4;
1315
+ } | undefined;
1316
+ dependencies?: {
1317
+ [k: string]: JSONSchema4 | string[];
1318
+ } | undefined;
1319
+
1320
+ /**
1321
+ * This provides an enumeration of all possible values that are valid
1322
+ * for the instance property. This MUST be an array, and each item in
1323
+ * the array represents a possible value for the instance value. If
1324
+ * this attribute is defined, the instance value MUST be one of the
1325
+ * values in the array in order for the schema to be valid.
1326
+ *
1327
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.19
1328
+ */
1329
+ enum?: JSONSchema4Type[] | undefined;
1330
+
1331
+ /**
1332
+ * A single type, or a union of simple types
1333
+ */
1334
+ type?: JSONSchema4TypeName | JSONSchema4TypeName[] | undefined;
1335
+ allOf?: JSONSchema4[] | undefined;
1336
+ anyOf?: JSONSchema4[] | undefined;
1337
+ oneOf?: JSONSchema4[] | undefined;
1338
+ not?: JSONSchema4 | undefined;
1339
+
1340
+ /**
1341
+ * The value of this property MUST be another schema which will provide
1342
+ * a base schema which the current schema will inherit from. The
1343
+ * inheritance rules are such that any instance that is valid according
1344
+ * to the current schema MUST be valid according to the referenced
1345
+ * schema. This MAY also be an array, in which case, the instance MUST
1346
+ * be valid for all the schemas in the array. A schema that extends
1347
+ * another schema MAY define additional attributes, constrain existing
1348
+ * attributes, or add other constraints.
1349
+ *
1350
+ * Conceptually, the behavior of extends can be seen as validating an
1351
+ * instance against all constraints in the extending schema as well as
1352
+ * the extended schema(s).
1353
+ *
1354
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.26
1355
+ */
1356
+ extends?: string | string[] | undefined;
1357
+
1358
+ /**
1359
+ * @see https://tools.ietf.org/html/draft-zyp-json-schema-04#section-5.6
1360
+ */
1361
+ [k: string]: any;
1362
+ format?: string | undefined;
1363
+ }
1364
+ //#endregion
1365
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/lib/load-custom-routes.d.ts
1155
1366
  type RouteHas = {
1156
1367
  type: string;
1157
1368
  key: string;
@@ -1162,7 +1373,7 @@ type RouteHas = {
1162
1373
  value: string;
1163
1374
  };
1164
1375
  //#endregion
1165
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/build/analysis/get-page-static-info.d.ts
1376
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/build/analysis/get-page-static-info.d.ts
1166
1377
  type MiddlewareMatcher = {
1167
1378
  regexp: string;
1168
1379
  locale?: false;
@@ -1171,14 +1382,14 @@ type MiddlewareMatcher = {
1171
1382
  originalSource: string;
1172
1383
  };
1173
1384
  //#endregion
1174
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/shared/lib/constants.d.ts
1385
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/shared/lib/constants.d.ts
1175
1386
  declare const COMPILER_NAMES: {
1176
1387
  readonly client: "client";
1177
1388
  readonly server: "server";
1178
1389
  readonly edgeServer: "edge-server";
1179
1390
  };
1180
1391
  //#endregion
1181
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/client/route-loader.d.ts
1392
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/client/route-loader.d.ts
1182
1393
  declare global {
1183
1394
  interface Window {
1184
1395
  __BUILD_MANIFEST?: Record<string, string[]>;
@@ -1195,7 +1406,7 @@ declare global {
1195
1406
  }
1196
1407
  }
1197
1408
  //#endregion
1198
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/client/page-loader.d.ts
1409
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/client/page-loader.d.ts
1199
1410
  declare global {
1200
1411
  interface Window {
1201
1412
  __DEV_MIDDLEWARE_MATCHERS?: MiddlewareMatcher[];
@@ -1207,21 +1418,21 @@ declare global {
1207
1418
  }
1208
1419
  }
1209
1420
  //#endregion
1210
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/shared/lib/router/router.d.ts
1421
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/shared/lib/router/router.d.ts
1211
1422
  declare global {
1212
1423
  interface Window {
1213
1424
  __NEXT_DATA__: NEXT_DATA;
1214
1425
  }
1215
1426
  }
1216
1427
  //#endregion
1217
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts
1428
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts
1218
1429
  declare global {
1219
1430
  interface Window {
1220
1431
  __NEXT_PRELOADREADY?: (ids?: (string | number)[]) => Promise<void>;
1221
1432
  }
1222
1433
  }
1223
1434
  //#endregion
1224
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts
1435
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts
1225
1436
  type LangCode = 'aa' | 'ab' | 'ae' | 'af' | 'ak' | 'am' | 'an' | 'ar' | 'as' | 'av' | 'ay' | 'az' | 'ba' | 'be' | 'bg' | 'bh' | 'bi' | 'bm' | 'bn' | 'bo' | 'br' | 'bs' | 'ca' | 'ce' | 'ch' | 'co' | 'cr' | 'cs' | 'cu' | 'cv' | 'cy' | 'da' | 'de' | 'dv' | 'dz' | 'ee' | 'el' | 'en' | 'eo' | 'es' | 'et' | 'eu' | 'fa' | 'ff' | 'fi' | 'fj' | 'fo' | 'fr' | 'fy' | 'ga' | 'gd' | 'gl' | 'gn' | 'gu' | 'gv' | 'ha' | 'he' | 'hi' | 'ho' | 'hr' | 'ht' | 'hu' | 'hy' | 'hz' | 'ia' | 'id' | 'ie' | 'ig' | 'ii' | 'ik' | 'io' | 'is' | 'it' | 'iu' | 'ja' | 'jv' | 'ka' | 'kg' | 'ki' | 'kj' | 'kk' | 'kl' | 'km' | 'kn' | 'ko' | 'kr' | 'ks' | 'ku' | 'kv' | 'kw' | 'ky' | 'la' | 'lb' | 'lg' | 'li' | 'ln' | 'lo' | 'lt' | 'lu' | 'lv' | 'mg' | 'mh' | 'mi' | 'mk' | 'ml' | 'mn' | 'mr' | 'ms' | 'mt' | 'my' | 'na' | 'nb' | 'nd' | 'ne' | 'ng' | 'nl' | 'nn' | 'no' | 'nr' | 'nv' | 'ny' | 'oc' | 'oj' | 'om' | 'or' | 'os' | 'pa' | 'pi' | 'pl' | 'ps' | 'pt' | 'qu' | 'rm' | 'rn' | 'ro' | 'ru' | 'rw' | 'sa' | 'sc' | 'sd' | 'se' | 'sg' | 'si' | 'sk' | 'sl' | 'sm' | 'sn' | 'so' | 'sq' | 'sr' | 'ss' | 'st' | 'su' | 'sv' | 'sw' | 'ta' | 'te' | 'tg' | 'th' | 'ti' | 'tk' | 'tl' | 'tn' | 'to' | 'tr' | 'ts' | 'tt' | 'tw' | 'ty' | 'ug' | 'uk' | 'ur' | 'uz' | 've' | 'vi' | 'vo' | 'wa' | 'wo' | 'xh' | 'yi' | 'yo' | 'za' | 'zh' | 'zu' | 'af-ZA' | 'am-ET' | 'ar-AE' | 'ar-BH' | 'ar-DZ' | 'ar-EG' | 'ar-IQ' | 'ar-JO' | 'ar-KW' | 'ar-LB' | 'ar-LY' | 'ar-MA' | 'arn-CL' | 'ar-OM' | 'ar-QA' | 'ar-SA' | 'ar-SD' | 'ar-SY' | 'ar-TN' | 'ar-YE' | 'as-IN' | 'az-az' | 'az-Cyrl-AZ' | 'az-Latn-AZ' | 'ba-RU' | 'be-BY' | 'bg-BG' | 'bn-BD' | 'bn-IN' | 'bo-CN' | 'br-FR' | 'bs-Cyrl-BA' | 'bs-Latn-BA' | 'ca-ES' | 'co-FR' | 'cs-CZ' | 'cy-GB' | 'da-DK' | 'de-AT' | 'de-CH' | 'de-DE' | 'de-LI' | 'de-LU' | 'dsb-DE' | 'dv-MV' | 'el-CY' | 'el-GR' | 'en-029' | 'en-AU' | 'en-BZ' | 'en-CA' | 'en-cb' | 'en-GB' | 'en-IE' | 'en-IN' | 'en-JM' | 'en-MT' | 'en-MY' | 'en-NZ' | 'en-PH' | 'en-SG' | 'en-TT' | 'en-US' | 'en-ZA' | 'en-ZW' | 'es-AR' | 'es-BO' | 'es-CL' | 'es-CO' | 'es-CR' | 'es-DO' | 'es-EC' | 'es-ES' | 'es-GT' | 'es-HN' | 'es-MX' | 'es-NI' | 'es-PA' | 'es-PE' | 'es-PR' | 'es-PY' | 'es-SV' | 'es-US' | 'es-UY' | 'es-VE' | 'et-EE' | 'eu-ES' | 'fa-IR' | 'fi-FI' | 'fil-PH' | 'fo-FO' | 'fr-BE' | 'fr-CA' | 'fr-CH' | 'fr-FR' | 'fr-LU' | 'fr-MC' | 'fy-NL' | 'ga-IE' | 'gd-GB' | 'gd-ie' | 'gl-ES' | 'gsw-FR' | 'gu-IN' | 'ha-Latn-NG' | 'he-IL' | 'hi-IN' | 'hr-BA' | 'hr-HR' | 'hsb-DE' | 'hu-HU' | 'hy-AM' | 'id-ID' | 'ig-NG' | 'ii-CN' | 'in-ID' | 'is-IS' | 'it-CH' | 'it-IT' | 'iu-Cans-CA' | 'iu-Latn-CA' | 'iw-IL' | 'ja-JP' | 'ka-GE' | 'kk-KZ' | 'kl-GL' | 'km-KH' | 'kn-IN' | 'kok-IN' | 'ko-KR' | 'ky-KG' | 'lb-LU' | 'lo-LA' | 'lt-LT' | 'lv-LV' | 'mi-NZ' | 'mk-MK' | 'ml-IN' | 'mn-MN' | 'mn-Mong-CN' | 'moh-CA' | 'mr-IN' | 'ms-BN' | 'ms-MY' | 'mt-MT' | 'nb-NO' | 'ne-NP' | 'nl-BE' | 'nl-NL' | 'nn-NO' | 'no-no' | 'nso-ZA' | 'oc-FR' | 'or-IN' | 'pa-IN' | 'pl-PL' | 'prs-AF' | 'ps-AF' | 'pt-BR' | 'pt-PT' | 'qut-GT' | 'quz-BO' | 'quz-EC' | 'quz-PE' | 'rm-CH' | 'ro-mo' | 'ro-RO' | 'ru-mo' | 'ru-RU' | 'rw-RW' | 'sah-RU' | 'sa-IN' | 'se-FI' | 'se-NO' | 'se-SE' | 'si-LK' | 'sk-SK' | 'sl-SI' | 'sma-NO' | 'sma-SE' | 'smj-NO' | 'smj-SE' | 'smn-FI' | 'sms-FI' | 'sq-AL' | 'sr-BA' | 'sr-CS' | 'sr-Cyrl-BA' | 'sr-Cyrl-CS' | 'sr-Cyrl-ME' | 'sr-Cyrl-RS' | 'sr-Latn-BA' | 'sr-Latn-CS' | 'sr-Latn-ME' | 'sr-Latn-RS' | 'sr-ME' | 'sr-RS' | 'sr-sp' | 'sv-FI' | 'sv-SE' | 'sw-KE' | 'syr-SY' | 'ta-IN' | 'te-IN' | 'tg-Cyrl-TJ' | 'th-TH' | 'tk-TM' | 'tlh-QS' | 'tn-ZA' | 'tr-TR' | 'tt-RU' | 'tzm-Latn-DZ' | 'ug-CN' | 'uk-UA' | 'ur-PK' | 'uz-Cyrl-UZ' | 'uz-Latn-UZ' | 'uz-uz' | 'vi-VN' | 'wo-SN' | 'xh-ZA' | 'yo-NG' | 'zh-CN' | 'zh-HK' | 'zh-MO' | 'zh-SG' | 'zh-TW' | 'zh-Hans' | 'zh-Hant' | 'zu-ZA' | `${Lowercase<string>}-${string}`;
1226
1437
  type UnmatchedLang = 'x-default';
1227
1438
  type HrefLang = LangCode | UnmatchedLang;
@@ -1241,7 +1452,7 @@ type AlternateURLs = {
1241
1452
  } | undefined;
1242
1453
  };
1243
1454
  //#endregion
1244
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/lib/metadata/types/extra-types.d.ts
1455
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/lib/metadata/types/extra-types.d.ts
1245
1456
  type AppLinks = {
1246
1457
  ios?: AppLinksApple | Array<AppLinksApple> | undefined;
1247
1458
  iphone?: AppLinksApple | Array<AppLinksApple> | undefined;
@@ -1318,7 +1529,7 @@ type FormatDetection = {
1318
1529
  url?: boolean | undefined;
1319
1530
  };
1320
1531
  //#endregion
1321
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/lib/metadata/types/metadata-types.d.ts
1532
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/lib/metadata/types/metadata-types.d.ts
1322
1533
  /**
1323
1534
  *
1324
1535
  * Metadata types
@@ -1419,7 +1630,7 @@ type ThemeColorDescriptor = {
1419
1630
  media?: string | undefined;
1420
1631
  };
1421
1632
  //#endregion
1422
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts
1633
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts
1423
1634
  type OpenGraph = OpenGraphWebsite | OpenGraphArticle | OpenGraphBook | OpenGraphProfile | OpenGraphMusicSong | OpenGraphMusicAlbum | OpenGraphMusicPlaylist | OpenGraphRadioStation | OpenGraphVideoMovie | OpenGraphVideoEpisode | OpenGraphVideoTVShow | OpenGraphVideoOther | OpenGraphMetadata;
1424
1635
  type Locale$3 = string;
1425
1636
  type OpenGraphMetadata = {
@@ -1549,7 +1760,7 @@ type OGActor = {
1549
1760
  role?: string | undefined;
1550
1761
  };
1551
1762
  //#endregion
1552
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/lib/metadata/types/twitter-types.d.ts
1763
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/lib/metadata/types/twitter-types.d.ts
1553
1764
  type Twitter = TwitterSummary | TwitterSummaryLargeImage | TwitterPlayer | TwitterApp | TwitterMetadata;
1554
1765
  type TwitterMetadata = {
1555
1766
  site?: string | undefined;
@@ -1603,7 +1814,7 @@ type TwitterPlayerDescriptor = {
1603
1814
  height: number;
1604
1815
  };
1605
1816
  //#endregion
1606
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts
1817
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts
1607
1818
  /**
1608
1819
  * Metadata interface to describe all the metadata fields that can be set in a document.
1609
1820
  *
@@ -2074,7 +2285,7 @@ interface Metadata$1 extends DeprecatedMetadataFields {
2074
2285
  * and relative URLs are composed with `metadataBase`.
2075
2286
  */
2076
2287
  //#endregion
2077
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/server/config-shared.d.ts
2288
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/server/config-shared.d.ts
2078
2289
  interface DomainLocale {
2079
2290
  defaultLocale: string;
2080
2291
  domain: string;
@@ -2082,7 +2293,7 @@ interface DomainLocale {
2082
2293
  locales?: readonly string[];
2083
2294
  }
2084
2295
  //#endregion
2085
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/shared/lib/utils.d.ts
2296
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/shared/lib/utils.d.ts
2086
2297
  type NEXT_DATA = {
2087
2298
  props: Record<string, any>;
2088
2299
  page: string;
@@ -2115,7 +2326,7 @@ type NEXT_DATA = {
2115
2326
  notFoundSrcPage?: string;
2116
2327
  };
2117
2328
  //#endregion
2118
- //#region ../../node_modules/.pnpm/next@15.4.8_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-p_1eda7325b4c551db31b014561614ff25/node_modules/next/dist/types.d.ts
2329
+ //#region ../../node_modules/.pnpm/next@15.4.10_@babel+core@7.27.7_@opentelemetry+api@1.9.0_@playwright+test@1.56.1_babel-_7611c050995f5fd562decbf9927e8c4b/node_modules/next/dist/types.d.ts
2119
2330
  declare module 'react' {
2120
2331
  interface HtmlHTMLAttributes<T> extends React$1.HTMLAttributes<T> {
2121
2332
  amp?: string;
@@ -25742,4 +25953,4 @@ declare function buildLexicalByFeatures(features: () => FeatureProviderServer<an
25742
25953
  declare function filterBlocksAtLexicalBuilder<T extends string>(builder: LexicalBuilder, blocks: () => Block[], slugs: T[]): Config["editor"];
25743
25954
  //#endregion
25744
25955
  export { buildLexicalByFeatures as n, filterBlocksAtLexicalBuilder as r, LexicalBuilder as t };
25745
- //# sourceMappingURL=builder-BcH620CD.d.mts.map
25956
+ //# sourceMappingURL=builder-BhjgvNFy.d.mts.map