@nexo-labs/payload-taxonomies 1.4.4 → 1.5.1
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.
- package/dist/index.d.mts +30 -31
- package/dist/index.d.mts.map +1 -1
- package/package.json +9 -8
package/dist/index.d.mts
CHANGED
|
@@ -28,7 +28,6 @@ import React$1, { CSSProperties, Component as Component$1, ReactNode, cloneEleme
|
|
|
28
28
|
import { URL as URL$1, URLSearchParams as URLSearchParams$1 } from "url";
|
|
29
29
|
import GraphQL, { ExecutionArgs, ExecutionResult, GraphQLFormattedError, GraphQLInputObjectType, GraphQLNonNull, GraphQLObjectType, GraphQLSchema, ValidationRule } from "graphql";
|
|
30
30
|
import { BusboyConfig } from "busboy";
|
|
31
|
-
import { JSONSchema4 } from "json-schema";
|
|
32
31
|
import { Agent } from "http";
|
|
33
32
|
import { Agent as Agent$1 } from "https";
|
|
34
33
|
import { ParsedUrlQuery } from "querystring";
|
|
@@ -80,7 +79,7 @@ type JSONSchema4Version = string;
|
|
|
80
79
|
* JSON Schema V4
|
|
81
80
|
* @see https://tools.ietf.org/html/draft-zyp-json-schema-04
|
|
82
81
|
*/
|
|
83
|
-
interface JSONSchema4
|
|
82
|
+
interface JSONSchema4 {
|
|
84
83
|
id?: string | undefined;
|
|
85
84
|
$ref?: string | undefined;
|
|
86
85
|
$schema?: JSONSchema4Version | undefined;
|
|
@@ -120,7 +119,7 @@ interface JSONSchema4$1 {
|
|
|
120
119
|
*
|
|
121
120
|
* @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.6
|
|
122
121
|
*/
|
|
123
|
-
additionalItems?: boolean | JSONSchema4
|
|
122
|
+
additionalItems?: boolean | JSONSchema4 | undefined;
|
|
124
123
|
|
|
125
124
|
/**
|
|
126
125
|
* This attribute defines the allowed items in an instance array, and
|
|
@@ -141,7 +140,7 @@ interface JSONSchema4$1 {
|
|
|
141
140
|
*
|
|
142
141
|
* @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.5
|
|
143
142
|
*/
|
|
144
|
-
items?: JSONSchema4
|
|
143
|
+
items?: JSONSchema4 | JSONSchema4[] | undefined;
|
|
145
144
|
maxItems?: number | undefined;
|
|
146
145
|
minItems?: number | undefined;
|
|
147
146
|
uniqueItems?: boolean | undefined;
|
|
@@ -167,9 +166,9 @@ interface JSONSchema4$1 {
|
|
|
167
166
|
*
|
|
168
167
|
* @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.4
|
|
169
168
|
*/
|
|
170
|
-
additionalProperties?: boolean | JSONSchema4
|
|
169
|
+
additionalProperties?: boolean | JSONSchema4 | undefined;
|
|
171
170
|
definitions?: {
|
|
172
|
-
[k: string]: JSONSchema4
|
|
171
|
+
[k: string]: JSONSchema4;
|
|
173
172
|
} | undefined;
|
|
174
173
|
|
|
175
174
|
/**
|
|
@@ -186,7 +185,7 @@ interface JSONSchema4$1 {
|
|
|
186
185
|
* @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.2
|
|
187
186
|
*/
|
|
188
187
|
properties?: {
|
|
189
|
-
[k: string]: JSONSchema4
|
|
188
|
+
[k: string]: JSONSchema4;
|
|
190
189
|
} | undefined;
|
|
191
190
|
|
|
192
191
|
/**
|
|
@@ -201,10 +200,10 @@ interface JSONSchema4$1 {
|
|
|
201
200
|
* @see https://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.3
|
|
202
201
|
*/
|
|
203
202
|
patternProperties?: {
|
|
204
|
-
[k: string]: JSONSchema4
|
|
203
|
+
[k: string]: JSONSchema4;
|
|
205
204
|
} | undefined;
|
|
206
205
|
dependencies?: {
|
|
207
|
-
[k: string]: JSONSchema4
|
|
206
|
+
[k: string]: JSONSchema4 | string[];
|
|
208
207
|
} | undefined;
|
|
209
208
|
|
|
210
209
|
/**
|
|
@@ -222,10 +221,10 @@ interface JSONSchema4$1 {
|
|
|
222
221
|
* A single type, or a union of simple types
|
|
223
222
|
*/
|
|
224
223
|
type?: JSONSchema4TypeName | JSONSchema4TypeName[] | undefined;
|
|
225
|
-
allOf?: JSONSchema4
|
|
226
|
-
anyOf?: JSONSchema4
|
|
227
|
-
oneOf?: JSONSchema4
|
|
228
|
-
not?: JSONSchema4
|
|
224
|
+
allOf?: JSONSchema4[] | undefined;
|
|
225
|
+
anyOf?: JSONSchema4[] | undefined;
|
|
226
|
+
oneOf?: JSONSchema4[] | undefined;
|
|
227
|
+
not?: JSONSchema4 | undefined;
|
|
229
228
|
|
|
230
229
|
/**
|
|
231
230
|
* The value of this property MUST be another schema which will provide
|
|
@@ -1362,7 +1361,7 @@ type OptionalKeys<Type> = Type extends object ? keyof { [Key in keyof Type as Ty
|
|
|
1362
1361
|
//#region ../../node_modules/.pnpm/ts-essentials@10.0.3_typescript@5.7.3/node_modules/ts-essentials/dist/required-keys/index.d.ts
|
|
1363
1362
|
type RequiredKeys<Type> = Type extends unknown ? Exclude<keyof Type, OptionalKeys<Type>> : never;
|
|
1364
1363
|
//#endregion
|
|
1365
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1364
|
+
//#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
|
|
1366
1365
|
type RouteHas = {
|
|
1367
1366
|
type: string;
|
|
1368
1367
|
key: string;
|
|
@@ -1373,7 +1372,7 @@ type RouteHas = {
|
|
|
1373
1372
|
value: string;
|
|
1374
1373
|
};
|
|
1375
1374
|
//#endregion
|
|
1376
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1375
|
+
//#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
|
|
1377
1376
|
type MiddlewareMatcher = {
|
|
1378
1377
|
regexp: string;
|
|
1379
1378
|
locale?: false;
|
|
@@ -1382,14 +1381,14 @@ type MiddlewareMatcher = {
|
|
|
1382
1381
|
originalSource: string;
|
|
1383
1382
|
};
|
|
1384
1383
|
//#endregion
|
|
1385
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1384
|
+
//#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
|
|
1386
1385
|
declare const COMPILER_NAMES: {
|
|
1387
1386
|
readonly client: "client";
|
|
1388
1387
|
readonly server: "server";
|
|
1389
1388
|
readonly edgeServer: "edge-server";
|
|
1390
1389
|
};
|
|
1391
1390
|
//#endregion
|
|
1392
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1391
|
+
//#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
|
|
1393
1392
|
declare global {
|
|
1394
1393
|
interface Window {
|
|
1395
1394
|
__BUILD_MANIFEST?: Record<string, string[]>;
|
|
@@ -1406,7 +1405,7 @@ declare global {
|
|
|
1406
1405
|
}
|
|
1407
1406
|
}
|
|
1408
1407
|
//#endregion
|
|
1409
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1408
|
+
//#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
|
|
1410
1409
|
declare global {
|
|
1411
1410
|
interface Window {
|
|
1412
1411
|
__DEV_MIDDLEWARE_MATCHERS?: MiddlewareMatcher[];
|
|
@@ -1418,21 +1417,21 @@ declare global {
|
|
|
1418
1417
|
}
|
|
1419
1418
|
}
|
|
1420
1419
|
//#endregion
|
|
1421
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1420
|
+
//#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
|
|
1422
1421
|
declare global {
|
|
1423
1422
|
interface Window {
|
|
1424
1423
|
__NEXT_DATA__: NEXT_DATA;
|
|
1425
1424
|
}
|
|
1426
1425
|
}
|
|
1427
1426
|
//#endregion
|
|
1428
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1427
|
+
//#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
|
|
1429
1428
|
declare global {
|
|
1430
1429
|
interface Window {
|
|
1431
1430
|
__NEXT_PRELOADREADY?: (ids?: (string | number)[]) => Promise<void>;
|
|
1432
1431
|
}
|
|
1433
1432
|
}
|
|
1434
1433
|
//#endregion
|
|
1435
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1434
|
+
//#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
|
|
1436
1435
|
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}`;
|
|
1437
1436
|
type UnmatchedLang = 'x-default';
|
|
1438
1437
|
type HrefLang = LangCode | UnmatchedLang;
|
|
@@ -1452,7 +1451,7 @@ type AlternateURLs = {
|
|
|
1452
1451
|
} | undefined;
|
|
1453
1452
|
};
|
|
1454
1453
|
//#endregion
|
|
1455
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1454
|
+
//#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
|
|
1456
1455
|
type AppLinks = {
|
|
1457
1456
|
ios?: AppLinksApple | Array<AppLinksApple> | undefined;
|
|
1458
1457
|
iphone?: AppLinksApple | Array<AppLinksApple> | undefined;
|
|
@@ -1529,7 +1528,7 @@ type FormatDetection = {
|
|
|
1529
1528
|
url?: boolean | undefined;
|
|
1530
1529
|
};
|
|
1531
1530
|
//#endregion
|
|
1532
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1531
|
+
//#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
|
|
1533
1532
|
/**
|
|
1534
1533
|
*
|
|
1535
1534
|
* Metadata types
|
|
@@ -1630,7 +1629,7 @@ type ThemeColorDescriptor = {
|
|
|
1630
1629
|
media?: string | undefined;
|
|
1631
1630
|
};
|
|
1632
1631
|
//#endregion
|
|
1633
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1632
|
+
//#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
|
|
1634
1633
|
type OpenGraph = OpenGraphWebsite | OpenGraphArticle | OpenGraphBook | OpenGraphProfile | OpenGraphMusicSong | OpenGraphMusicAlbum | OpenGraphMusicPlaylist | OpenGraphRadioStation | OpenGraphVideoMovie | OpenGraphVideoEpisode | OpenGraphVideoTVShow | OpenGraphVideoOther | OpenGraphMetadata;
|
|
1635
1634
|
type Locale$3 = string;
|
|
1636
1635
|
type OpenGraphMetadata = {
|
|
@@ -1760,7 +1759,7 @@ type OGActor = {
|
|
|
1760
1759
|
role?: string | undefined;
|
|
1761
1760
|
};
|
|
1762
1761
|
//#endregion
|
|
1763
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1762
|
+
//#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
|
|
1764
1763
|
type Twitter = TwitterSummary | TwitterSummaryLargeImage | TwitterPlayer | TwitterApp | TwitterMetadata;
|
|
1765
1764
|
type TwitterMetadata = {
|
|
1766
1765
|
site?: string | undefined;
|
|
@@ -1814,7 +1813,7 @@ type TwitterPlayerDescriptor = {
|
|
|
1814
1813
|
height: number;
|
|
1815
1814
|
};
|
|
1816
1815
|
//#endregion
|
|
1817
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
1816
|
+
//#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
|
|
1818
1817
|
/**
|
|
1819
1818
|
* Metadata interface to describe all the metadata fields that can be set in a document.
|
|
1820
1819
|
*
|
|
@@ -2285,7 +2284,7 @@ interface Metadata$1 extends DeprecatedMetadataFields {
|
|
|
2285
2284
|
* and relative URLs are composed with `metadataBase`.
|
|
2286
2285
|
*/
|
|
2287
2286
|
//#endregion
|
|
2288
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
2287
|
+
//#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
|
|
2289
2288
|
interface DomainLocale {
|
|
2290
2289
|
defaultLocale: string;
|
|
2291
2290
|
domain: string;
|
|
@@ -2293,7 +2292,7 @@ interface DomainLocale {
|
|
|
2293
2292
|
locales?: readonly string[];
|
|
2294
2293
|
}
|
|
2295
2294
|
//#endregion
|
|
2296
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
2295
|
+
//#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
|
|
2297
2296
|
type NEXT_DATA = {
|
|
2298
2297
|
props: Record<string, any>;
|
|
2299
2298
|
page: string;
|
|
@@ -2326,7 +2325,7 @@ type NEXT_DATA = {
|
|
|
2326
2325
|
notFoundSrcPage?: string;
|
|
2327
2326
|
};
|
|
2328
2327
|
//#endregion
|
|
2329
|
-
//#region ../../node_modules/.pnpm/next@15.4.
|
|
2328
|
+
//#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
|
|
2330
2329
|
declare module 'react' {
|
|
2331
2330
|
interface HtmlHTMLAttributes<T> extends React$1.HTMLAttributes<T> {
|
|
2332
2331
|
amp?: string;
|
|
@@ -25444,8 +25443,8 @@ interface GlobalAdminCustom extends Record<string, any> {}
|
|
|
25444
25443
|
declare const COLLECTION_SLUG_TAXONOMY: "taxonomy";
|
|
25445
25444
|
type TaxonomyTypescriptSchema = {
|
|
25446
25445
|
payloadTypescriptSchema?: Array<(args: {
|
|
25447
|
-
jsonSchema: JSONSchema4
|
|
25448
|
-
}) => JSONSchema4
|
|
25446
|
+
jsonSchema: JSONSchema4;
|
|
25447
|
+
}) => JSONSchema4>;
|
|
25449
25448
|
};
|
|
25450
25449
|
declare const taxonomiesCollection: (config: Partial<CollectionConfig> & TaxonomyTypescriptSchema) => CollectionConfig;
|
|
25451
25450
|
//#endregion
|