@hey-api/openapi-ts 0.97.2 → 0.98.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.
Files changed (44) hide show
  1. package/README.md +54 -53
  2. package/dist/clients/angular/index.ts +1 -0
  3. package/dist/clients/angular/types.ts +3 -2
  4. package/dist/clients/angular/utils.ts +3 -3
  5. package/dist/clients/axios/index.ts +1 -0
  6. package/dist/clients/axios/types.ts +7 -2
  7. package/dist/clients/axios/utils.ts +2 -2
  8. package/dist/clients/core/auth.ts +7 -0
  9. package/dist/clients/core/params.ts +14 -12
  10. package/dist/clients/core/pathSerializer.ts +6 -6
  11. package/dist/clients/core/queryKeySerializer.ts +1 -1
  12. package/dist/clients/core/utils.ts +4 -4
  13. package/dist/clients/fetch/index.ts +1 -0
  14. package/dist/clients/fetch/types.ts +3 -2
  15. package/dist/clients/fetch/utils.ts +2 -2
  16. package/dist/clients/ky/index.ts +1 -0
  17. package/dist/clients/ky/types.ts +3 -2
  18. package/dist/clients/ky/utils.ts +2 -2
  19. package/dist/clients/next/index.ts +1 -0
  20. package/dist/clients/next/types.ts +7 -2
  21. package/dist/clients/next/utils.ts +3 -3
  22. package/dist/clients/nuxt/index.ts +1 -0
  23. package/dist/clients/nuxt/utils.ts +3 -3
  24. package/dist/clients/ofetch/index.ts +1 -0
  25. package/dist/clients/ofetch/types.ts +3 -2
  26. package/dist/clients/ofetch/utils.ts +2 -2
  27. package/dist/index.d.mts +852 -689
  28. package/dist/index.d.mts.map +1 -1
  29. package/dist/index.mjs +3 -3
  30. package/dist/{init-CitwzRmB.mjs → init-BENFi6V7.mjs} +2711 -3023
  31. package/dist/init-BENFi6V7.mjs.map +1 -0
  32. package/dist/internal.d.mts +1 -1
  33. package/dist/internal.d.mts.map +1 -1
  34. package/dist/internal.mjs +1 -1
  35. package/dist/run.mjs +2 -2
  36. package/dist/run.mjs.map +1 -1
  37. package/dist/{src-DEol_iHK.mjs → src-BXIUXBF6.mjs} +5 -5
  38. package/dist/src-BXIUXBF6.mjs.map +1 -0
  39. package/dist/{types-KzipN7UT.d.mts → types-DH7EVLYi.d.mts} +2 -10
  40. package/dist/types-DH7EVLYi.d.mts.map +1 -0
  41. package/package.json +7 -7
  42. package/dist/init-CitwzRmB.mjs.map +0 -1
  43. package/dist/src-DEol_iHK.mjs.map +0 -1
  44. package/dist/types-KzipN7UT.d.mts.map +0 -1
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
- import { n as UserConfig } from "./types-KzipN7UT.mjs";
2
- import { AnalysisContext, BindingKind, ExportModule, File, FromRef, ImportModule, Language, Logger, Logger as Logger$1, Node, NodeName, NodeNameSanitizer, NodeRelationship, NodeScope, Ref, RenderContext, Renderer, Symbol } from "@hey-api/codegen-core";
3
- import { BaseOutput, Casing, Context, DefinePlugin, DefinePlugin as DefinePlugin$1, FeatureToggle, IR, IR as IR$1, NameTransformer, NamingConfig, NamingOptions, NamingRule, OpenApi, OpenApiMetaObject, OpenApiOperationObject, OpenApiParameterObject, OpenApiRequestBodyObject, OpenApiResponseObject, OpenApiSchemaObject, OperationPath, OperationPathStrategy, OperationStrategy, OperationsStrategy, Plugin, Plugin as Plugin$1, RequestSchemaContext, ResolvedRequestValidatorLayer, SchemaVisitorContext, SchemaWithType, Walker, defaultPaginationKeywords, definePluginConfig, utils } from "@hey-api/shared";
1
+ import { n as UserConfig } from "./types-DH7EVLYi.mjs";
2
+ import { AnalysisContext, BindingKind, ExportModule, File, FromRef, ImportModule, Language, Logger, Node, NodeName, NodeNameSanitizer, NodeRelationship, NodeScope, Ref, RenderContext, Renderer, Symbol } from "@hey-api/codegen-core";
3
+ import { AnyPluginName, BaseOutput, Casing, Coercer, CoercerMap, ConfigTable, Context, DefinePlugin, DefinePlugin as DefinePlugin$1, FeatureToggle, IR, IR as IR$1, NameTransformer, NamingConfig, NamingOptions, NamingRule, OpenApi, OpenApiMetaObject, OpenApiOperationObject, OpenApiParameterObject, OpenApiRequestBodyObject, OpenApiResponseObject, OpenApiSchemaObject, OperationPath, OperationPathStrategy, OperationStrategy, OperationsStrategy, Plugin, Plugin as Plugin$1, PluginContext, PluginInstance, PluginInstance as PluginInstance$1, RequestSchemaContext, ResolvedRequestValidatorLayer, SchemaVisitorContext, SchemaWithType, TableDirectives, Walker, applyNaming, coerce, defaultPaginationKeywords, defineConfig as defineConfigTable, definePluginConfig, toCase, utils } from "@hey-api/shared";
4
4
  import ts from "typescript";
5
5
  import { AnyString, LazyOrAsync, MaybeArray, MaybeFunc } from "@hey-api/types";
6
6
  import { HttpClient, HttpErrorResponse, HttpHeaders, HttpRequest, HttpResponse } from "@angular/common/http";
@@ -629,7 +629,7 @@ declare class DocTsDsl extends TsDsl<ts.Node> {
629
629
  analyze(ctx: AnalysisContext): void;
630
630
  add(lines: DocLines): this;
631
631
  apply<T extends ts.Node>(node: T): T;
632
- toAst(): ts.Identifier;
632
+ toAst(): any;
633
633
  }
634
634
  //#endregion
635
635
  //#region src/ts-dsl/mixins/doc.d.ts
@@ -1156,7 +1156,7 @@ declare abstract class TsDsl<T extends ts.Node = ts.Node> implements Node<T> {
1156
1156
  structuralParents?: Map<TsDsl, NodeRelationship>;
1157
1157
  symbol?: Symbol;
1158
1158
  toAst(): T;
1159
- readonly '~brand' = "heyapi.node";
1159
+ readonly '~brand': any;
1160
1160
  /** Branding property to identify the DSL class at runtime. */
1161
1161
  abstract readonly '~dsl': AnyString;
1162
1162
  /** Conditionally applies a callback to this builder. */
@@ -1225,27 +1225,7 @@ declare class HintTsDsl extends TsDsl<ts.Node> {
1225
1225
  analyze(ctx: AnalysisContext): void;
1226
1226
  add(lines: HintLines): this;
1227
1227
  apply<T extends ts.Node>(node: T): T;
1228
- toAst(): ts.Identifier;
1229
- }
1230
- //#endregion
1231
- //#region src/ts-dsl/stmt/if.d.ts
1232
- type IfCondition = NodeName | MaybeTsDsl<ts.Expression>;
1233
- declare const Mixed$37: MixinCtor<abstract new () => TsDsl<ts.IfStatement>, DoMethods>;
1234
- declare class IfTsDsl extends Mixed$37 {
1235
- readonly '~dsl' = "IfTsDsl";
1236
- protected _condition?: IfCondition;
1237
- protected _else?: Array<DoExpr>;
1238
- constructor(condition?: IfCondition);
1239
- analyze(ctx: AnalysisContext): void;
1240
- /** Returns true when all required builder calls are present. */
1241
- get isValid(): boolean;
1242
- condition(condition: IfCondition): this;
1243
- otherwise(...items: Array<DoExpr>): this;
1244
- toAst(): ts.IfStatement;
1245
- $validate(): asserts this is this & {
1246
- _condition: IfCondition;
1247
- };
1248
- private missingRequiredCalls;
1228
+ toAst(): any;
1249
1229
  }
1250
1230
  //#endregion
1251
1231
  //#region src/ts-dsl/utils/lazy.d.ts
@@ -1331,8 +1311,8 @@ declare function createLiteral(value: TsLiteralValue, leadingComments?: Readonly
1331
1311
  //#region src/ts-dsl/expr/prefix.d.ts
1332
1312
  type PrefixExpr = string | MaybeTsDsl<ts.Expression>;
1333
1313
  type PrefixOp = ts.PrefixUnaryOperator;
1334
- declare const Mixed$36: abstract new () => TsDsl<ts.PrefixUnaryExpression>;
1335
- declare class PrefixTsDsl extends Mixed$36 {
1314
+ declare const Mixed$37: abstract new () => TsDsl<ts.PrefixUnaryExpression>;
1315
+ declare class PrefixTsDsl extends Mixed$37 {
1336
1316
  readonly '~dsl' = "PrefixTsDsl";
1337
1317
  protected _expr?: PrefixExpr;
1338
1318
  protected _op?: PrefixOp;
@@ -1367,25 +1347,13 @@ declare class NoteTsDsl extends TsDsl<ts.Node> {
1367
1347
  analyze(ctx: AnalysisContext): void;
1368
1348
  add(lines: NoteLines): this;
1369
1349
  apply<T extends ts.Node>(node: T): T;
1370
- toAst(): ts.Identifier;
1371
- }
1372
- //#endregion
1373
- //#region src/ts-dsl/expr/template.d.ts
1374
- type TemplatePart = NodeName | MaybeTsDsl<ts.Expression>;
1375
- declare const Mixed$35: abstract new () => TsDsl<ts.TemplateExpression | ts.NoSubstitutionTemplateLiteral>;
1376
- declare class TemplateTsDsl extends Mixed$35 {
1377
- readonly '~dsl' = "TemplateTsDsl";
1378
- protected parts: Array<Ref<TemplatePart>>;
1379
- constructor(value?: TemplatePart);
1380
- analyze(ctx: AnalysisContext): void;
1381
- add(value: TemplatePart): this;
1382
- toAst(): ts.TemplateExpression | ts.NoSubstitutionTemplateLiteral;
1350
+ toAst(): any;
1383
1351
  }
1384
1352
  //#endregion
1385
1353
  //#region src/ts-dsl/decl/field.d.ts
1386
1354
  type FieldType = NodeName | TypeTsDsl;
1387
- declare const Mixed$34: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.PropertyDeclaration>, ValueMethods>, StaticMethods>, ReadonlyMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, OptionalMethods>, DocMethods>, DecoratorMethods>;
1388
- declare class FieldTsDsl extends Mixed$34 {
1355
+ declare const Mixed$36: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.PropertyDeclaration>, ValueMethods>, StaticMethods>, ReadonlyMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, OptionalMethods>, DocMethods>, DecoratorMethods>;
1356
+ declare class FieldTsDsl extends Mixed$36 {
1389
1357
  readonly '~dsl' = "FieldTsDsl";
1390
1358
  readonly nameSanitizer: (name: string) => string;
1391
1359
  protected _type?: TypeTsDsl;
@@ -1397,8 +1365,8 @@ declare class FieldTsDsl extends Mixed$34 {
1397
1365
  }
1398
1366
  //#endregion
1399
1367
  //#region src/ts-dsl/decl/init.d.ts
1400
- declare const Mixed$33: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ConstructorDeclaration>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, DocMethods>, DoMethods>, DecoratorMethods>;
1401
- declare class InitTsDsl extends Mixed$33 {
1368
+ declare const Mixed$35: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ConstructorDeclaration>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, DocMethods>, DoMethods>, DecoratorMethods>;
1369
+ declare class InitTsDsl extends Mixed$35 {
1402
1370
  readonly '~dsl' = "InitTsDsl";
1403
1371
  constructor(fn?: (i: InitTsDsl) => void);
1404
1372
  analyze(ctx: AnalysisContext): void;
@@ -1407,8 +1375,8 @@ declare class InitTsDsl extends Mixed$33 {
1407
1375
  //#endregion
1408
1376
  //#region src/ts-dsl/decl/class.d.ts
1409
1377
  type Body = Array<MaybeTsDsl<ts.ClassElement | ts.Node>>;
1410
- declare const Mixed$32: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ClassDeclaration>, TypeParamsMethods>, ExportMethods>, DocMethods>, DefaultMethods>, DecoratorMethods>, AbstractMethods>;
1411
- declare class ClassTsDsl extends Mixed$32 {
1378
+ declare const Mixed$34: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ClassDeclaration>, TypeParamsMethods>, ExportMethods>, DocMethods>, DefaultMethods>, DecoratorMethods>, AbstractMethods>;
1379
+ declare class ClassTsDsl extends Mixed$34 {
1412
1380
  readonly '~dsl' = "ClassTsDsl";
1413
1381
  readonly nameSanitizer: (name: string) => string;
1414
1382
  protected baseClass?: Ref<NodeName>;
@@ -1435,8 +1403,8 @@ declare class ClassTsDsl extends Mixed$32 {
1435
1403
  }
1436
1404
  //#endregion
1437
1405
  //#region src/ts-dsl/decl/decorator.d.ts
1438
- declare const Mixed$31: MixinCtor<abstract new () => TsDsl<ts.Decorator>, ArgsMethods>;
1439
- declare class DecoratorTsDsl extends Mixed$31 {
1406
+ declare const Mixed$33: MixinCtor<abstract new () => TsDsl<ts.Decorator>, ArgsMethods>;
1407
+ declare class DecoratorTsDsl extends Mixed$33 {
1440
1408
  readonly '~dsl' = "DecoratorTsDsl";
1441
1409
  readonly nameSanitizer: (name: string) => string;
1442
1410
  constructor(name: NodeName, ...args: ReadonlyArray<string | MaybeTsDsl<ts.Expression>>);
@@ -1447,8 +1415,8 @@ declare class DecoratorTsDsl extends Mixed$31 {
1447
1415
  //#region src/ts-dsl/decl/member.d.ts
1448
1416
  type Value$2 = string | number | MaybeTsDsl<ts.Expression>;
1449
1417
  type ValueFn$1 = Value$2 | ((m: EnumMemberTsDsl) => void);
1450
- declare const Mixed$30: MixinCtor<abstract new () => TsDsl<ts.EnumMember>, DocMethods>;
1451
- declare class EnumMemberTsDsl extends Mixed$30 {
1418
+ declare const Mixed$32: MixinCtor<abstract new () => TsDsl<ts.EnumMember>, DocMethods>;
1419
+ declare class EnumMemberTsDsl extends Mixed$32 {
1452
1420
  readonly '~dsl' = "EnumMemberTsDsl";
1453
1421
  private _value?;
1454
1422
  constructor(name: NodeName, value?: ValueFn$1);
@@ -1461,8 +1429,8 @@ declare class EnumMemberTsDsl extends Mixed$30 {
1461
1429
  //#region src/ts-dsl/decl/enum.d.ts
1462
1430
  type Value$1 = string | number | MaybeTsDsl<ts.Expression>;
1463
1431
  type ValueFn = Value$1 | ((m: EnumMemberTsDsl) => void);
1464
- declare const Mixed$29: MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.EnumDeclaration>, ExportMethods>, DocMethods>, ConstMethods>;
1465
- declare class EnumTsDsl extends Mixed$29 {
1432
+ declare const Mixed$31: MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.EnumDeclaration>, ExportMethods>, DocMethods>, ConstMethods>;
1433
+ declare class EnumTsDsl extends Mixed$31 {
1466
1434
  readonly '~dsl' = "EnumTsDsl";
1467
1435
  readonly nameSanitizer: (name: string) => string;
1468
1436
  private _members;
@@ -1477,8 +1445,8 @@ declare class EnumTsDsl extends Mixed$29 {
1477
1445
  //#endregion
1478
1446
  //#region src/ts-dsl/decl/func.d.ts
1479
1447
  type FuncMode = 'arrow' | 'decl' | 'expr';
1480
- declare const Mixed$28: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ArrowFunction>, TypeReturnsMethods>, TypeParamsMethods>, StaticMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, ExportMethods>, DocMethods>, DoMethods>, DecoratorMethods>, AsyncMethods>, AsMethods>, AbstractMethods>;
1481
- declare class ImplFuncTsDsl<M extends FuncMode = 'arrow'> extends Mixed$28 {
1448
+ declare const Mixed$30: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ArrowFunction>, TypeReturnsMethods>, TypeParamsMethods>, StaticMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, ExportMethods>, DocMethods>, DoMethods>, DecoratorMethods>, AsyncMethods>, AsMethods>, AbstractMethods>;
1449
+ declare class ImplFuncTsDsl<M extends FuncMode = 'arrow'> extends Mixed$30 {
1482
1450
  readonly '~dsl' = "FuncTsDsl";
1483
1451
  readonly '~mode': M;
1484
1452
  readonly nameSanitizer: (name: string) => string;
@@ -1509,8 +1477,8 @@ declare const FuncTsDsl: {
1509
1477
  type FuncTsDsl<M extends FuncMode = 'arrow'> = ImplFuncTsDsl<M>;
1510
1478
  //#endregion
1511
1479
  //#region src/ts-dsl/decl/getter.d.ts
1512
- declare const Mixed$27: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.GetAccessorDeclaration>, TypeReturnsMethods>, StaticMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, DocMethods>, DoMethods>, DecoratorMethods>, AsyncMethods>, AbstractMethods>;
1513
- declare class GetterTsDsl extends Mixed$27 {
1480
+ declare const Mixed$29: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.GetAccessorDeclaration>, TypeReturnsMethods>, StaticMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, DocMethods>, DoMethods>, DecoratorMethods>, AsyncMethods>, AbstractMethods>;
1481
+ declare class GetterTsDsl extends Mixed$29 {
1514
1482
  readonly '~dsl' = "GetterTsDsl";
1515
1483
  readonly nameSanitizer: (name: string) => string;
1516
1484
  constructor(name: NodeName, fn?: (g: GetterTsDsl) => void);
@@ -1519,11 +1487,11 @@ declare class GetterTsDsl extends Mixed$27 {
1519
1487
  }
1520
1488
  //#endregion
1521
1489
  //#region src/ts-dsl/decl/pattern.d.ts
1522
- declare const Mixed$26: abstract new () => TsDsl<ts.BindingName>;
1490
+ declare const Mixed$28: abstract new () => TsDsl<ts.BindingName>;
1523
1491
  /**
1524
1492
  * Builds binding patterns (e.g., `{ foo, bar }`, `[a, b, ...rest]`).
1525
1493
  */
1526
- declare class PatternTsDsl extends Mixed$26 {
1494
+ declare class PatternTsDsl extends Mixed$28 {
1527
1495
  readonly '~dsl' = "PatternTsDsl";
1528
1496
  protected pattern?: {
1529
1497
  kind: 'array';
@@ -1557,8 +1525,8 @@ declare class PatternTsDsl extends Mixed$26 {
1557
1525
  }
1558
1526
  //#endregion
1559
1527
  //#region src/ts-dsl/decl/setter.d.ts
1560
- declare const Mixed$25: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.SetAccessorDeclaration>, StaticMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, DocMethods>, DoMethods>, DecoratorMethods>, AsyncMethods>, AbstractMethods>;
1561
- declare class SetterTsDsl extends Mixed$25 {
1528
+ declare const Mixed$27: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.SetAccessorDeclaration>, StaticMethods>, PublicMethods>, ProtectedMethods>, PrivateMethods>, ParamMethods>, DocMethods>, DoMethods>, DecoratorMethods>, AsyncMethods>, AbstractMethods>;
1529
+ declare class SetterTsDsl extends Mixed$27 {
1562
1530
  readonly '~dsl' = "SetterTsDsl";
1563
1531
  readonly nameSanitizer: (name: string) => string;
1564
1532
  constructor(name: NodeName, fn?: (s: SetterTsDsl) => void);
@@ -1580,8 +1548,8 @@ interface LayoutMethods extends Node {
1580
1548
  //#endregion
1581
1549
  //#region src/ts-dsl/expr/array.d.ts
1582
1550
  type ArrayExpr = string | number | boolean | MaybeTsDsl<ts.Expression>;
1583
- declare const Mixed$24: MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ArrayLiteralExpression>, SpreadMethods>, LayoutMethods>, ExprMethods>, AsMethods>;
1584
- declare class ArrayTsDsl extends Mixed$24 {
1551
+ declare const Mixed$26: MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ArrayLiteralExpression>, SpreadMethods>, LayoutMethods>, ExprMethods>, AsMethods>;
1552
+ declare class ArrayTsDsl extends Mixed$26 {
1585
1553
  readonly '~dsl' = "ArrayTsDsl";
1586
1554
  protected _elements: Array<MaybeTsDsl<ts.Expression>>;
1587
1555
  constructor(...exprs: Array<ArrayExpr>);
@@ -1595,18 +1563,18 @@ declare class ArrayTsDsl extends Mixed$24 {
1595
1563
  //#endregion
1596
1564
  //#region src/ts-dsl/expr/expr.d.ts
1597
1565
  type Id = NodeName | MaybeTsDsl<ts.Expression>;
1598
- declare const Mixed$23: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.Expression>, TypeExprMethods>, SpreadMethods>, OperatorMethods>, ExprMethods>, AsMethods>;
1599
- declare class ExprTsDsl extends Mixed$23 {
1566
+ declare const Mixed$25: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.Expression>, TypeExprMethods>, SpreadMethods>, OperatorMethods>, ExprMethods>, AsMethods>;
1567
+ declare class ExprTsDsl extends Mixed$25 {
1600
1568
  readonly '~dsl' = "ExprTsDsl";
1601
1569
  protected _exprInput: Ref<Id>;
1602
1570
  constructor(id: Id);
1603
1571
  analyze(ctx: AnalysisContext): void;
1604
- toAst(): ts.Expression;
1572
+ toAst(): any;
1605
1573
  }
1606
1574
  //#endregion
1607
1575
  //#region src/ts-dsl/expr/id.d.ts
1608
- declare const Mixed$22: abstract new () => TsDsl<ts.Identifier>;
1609
- declare class IdTsDsl extends Mixed$22 {
1576
+ declare const Mixed$24: abstract new () => TsDsl<ts.Identifier>;
1577
+ declare class IdTsDsl extends Mixed$24 {
1610
1578
  readonly '~dsl' = "IdTsDsl";
1611
1579
  constructor(name: string);
1612
1580
  analyze(ctx: AnalysisContext): void;
@@ -1663,13 +1631,13 @@ declare const ts$1: {
1663
1631
  };
1664
1632
  //#endregion
1665
1633
  //#region src/ts-dsl/expr/literal.d.ts
1666
- declare const Mixed$21: MixinCtor<abstract new () => TsDsl<ts.BigIntLiteral | ts.BooleanLiteral | ts.NullLiteral | ts.NumericLiteral | ts.PrefixUnaryExpression | ts.StringLiteral>, AsMethods>;
1667
- declare class LiteralTsDsl extends Mixed$21 {
1634
+ declare const Mixed$23: MixinCtor<abstract new () => TsDsl<ts.BigIntLiteral | ts.BooleanLiteral | ts.NullLiteral | ts.NumericLiteral | ts.PrefixUnaryExpression | ts.StringLiteral>, AsMethods>;
1635
+ declare class LiteralTsDsl extends Mixed$23 {
1668
1636
  readonly '~dsl' = "LiteralTsDsl";
1669
1637
  protected value: ts$1.LiteralValue;
1670
1638
  constructor(value: ts$1.LiteralValue);
1671
1639
  analyze(ctx: AnalysisContext): void;
1672
- toAst(): ts.BigIntLiteral | ts.TrueLiteral | ts.FalseLiteral | ts.NullLiteral | ts.NumericLiteral | ts.PrefixUnaryExpression | ts.StringLiteral;
1640
+ toAst(): any;
1673
1641
  }
1674
1642
  //#endregion
1675
1643
  //#region src/ts-dsl/mixins/hint.d.ts
@@ -1700,8 +1668,8 @@ type Meta = {
1700
1668
  kind: 'spread';
1701
1669
  name?: undefined;
1702
1670
  };
1703
- declare const Mixed$20: MixinCtor<abstract new () => TsDsl<ts.ObjectLiteralElementLike>, DocMethods>;
1704
- declare class ObjectPropTsDsl extends Mixed$20 {
1671
+ declare const Mixed$22: MixinCtor<abstract new () => TsDsl<ts.ObjectLiteralElementLike>, DocMethods>;
1672
+ declare class ObjectPropTsDsl extends Mixed$22 {
1705
1673
  readonly '~dsl' = "ObjectPropTsDsl";
1706
1674
  protected _value?: Ref<ObjectPropValue>;
1707
1675
  protected _meta: Meta;
@@ -1711,7 +1679,7 @@ declare class ObjectPropTsDsl extends Mixed$20 {
1711
1679
  get kind(): ObjectPropKind;
1712
1680
  get propName(): string | undefined;
1713
1681
  value(value: ObjectPropValue): this;
1714
- toAst(): ts.MethodDeclaration | ts.GetAccessorDeclaration | ts.SetAccessorDeclaration | ts.PropertyAssignment | ts.ShorthandPropertyAssignment | ts.SpreadAssignment;
1682
+ toAst(): any;
1715
1683
  $validate(): asserts this is this & {
1716
1684
  _value: ObjectPropValue;
1717
1685
  kind: ObjectPropKind;
@@ -1722,8 +1690,8 @@ declare class ObjectPropTsDsl extends Mixed$20 {
1722
1690
  //#region src/ts-dsl/expr/object.d.ts
1723
1691
  type Expr = NodeName | MaybeTsDsl<ts.Expression>;
1724
1692
  type Stmt = NodeName | MaybeTsDsl<ts.Statement>;
1725
- declare const Mixed$19: MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ObjectLiteralExpression>, LayoutMethods>, HintMethods>, ExprMethods>, AsMethods>;
1726
- declare class ObjectTsDsl extends Mixed$19 {
1693
+ declare const Mixed$21: MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ObjectLiteralExpression>, LayoutMethods>, HintMethods>, ExprMethods>, AsMethods>;
1694
+ declare class ObjectTsDsl extends Mixed$21 {
1727
1695
  readonly '~dsl' = "ObjectTsDsl";
1728
1696
  protected _props: Map<string, ObjectPropTsDsl>;
1729
1697
  protected _spreadCounter: number;
@@ -1755,8 +1723,8 @@ declare class ObjectTsDsl extends Mixed$19 {
1755
1723
  //#region src/ts-dsl/expr/regexp.d.ts
1756
1724
  type RegexFlag = 'g' | 'i' | 'm' | 's' | 'u' | 'y';
1757
1725
  type RegexFlags<Avail extends string = RegexFlag> = '' | { [K in Avail]: `${K}${RegexFlags<Exclude<Avail, K>>}` }[Avail];
1758
- declare const Mixed$18: abstract new () => TsDsl<ts.RegularExpressionLiteral>;
1759
- declare class RegExpTsDsl extends Mixed$18 {
1726
+ declare const Mixed$20: abstract new () => TsDsl<ts.RegularExpressionLiteral>;
1727
+ declare class RegExpTsDsl extends Mixed$20 {
1760
1728
  readonly '~dsl' = "RegExpTsDsl";
1761
1729
  protected pattern: string;
1762
1730
  protected flags?: RegexFlags;
@@ -1765,9 +1733,21 @@ declare class RegExpTsDsl extends Mixed$18 {
1765
1733
  toAst(): ts.RegularExpressionLiteral;
1766
1734
  }
1767
1735
  //#endregion
1736
+ //#region src/ts-dsl/expr/template.d.ts
1737
+ type TemplatePart = NodeName | MaybeTsDsl<ts.Expression>;
1738
+ declare const Mixed$19: abstract new () => TsDsl<ts.TemplateExpression | ts.NoSubstitutionTemplateLiteral>;
1739
+ declare class TemplateTsDsl extends Mixed$19 {
1740
+ readonly '~dsl' = "TemplateTsDsl";
1741
+ protected parts: Array<Ref<TemplatePart>>;
1742
+ constructor(value?: TemplatePart);
1743
+ analyze(ctx: AnalysisContext): void;
1744
+ add(value: TemplatePart): this;
1745
+ toAst(): ts.TemplateExpression | ts.NoSubstitutionTemplateLiteral;
1746
+ }
1747
+ //#endregion
1768
1748
  //#region src/ts-dsl/expr/ternary.d.ts
1769
- declare const Mixed$17: abstract new () => TsDsl<ts.ConditionalExpression>;
1770
- declare class TernaryTsDsl extends Mixed$17 {
1749
+ declare const Mixed$18: abstract new () => TsDsl<ts.ConditionalExpression>;
1750
+ declare class TernaryTsDsl extends Mixed$18 {
1771
1751
  readonly '~dsl' = "TernaryTsDsl";
1772
1752
  protected _condition?: string | MaybeTsDsl<ts.Expression>;
1773
1753
  protected _then?: string | MaybeTsDsl<ts.Expression>;
@@ -1792,12 +1772,12 @@ declare class TernaryTsDsl extends Mixed$17 {
1792
1772
  declare class NewlineTsDsl extends TsDsl<ts.Identifier> {
1793
1773
  readonly '~dsl' = "NewlineTsDsl";
1794
1774
  analyze(ctx: AnalysisContext): void;
1795
- toAst(): ts.Identifier;
1775
+ toAst(): any;
1796
1776
  }
1797
1777
  //#endregion
1798
1778
  //#region src/ts-dsl/stmt/block.d.ts
1799
- declare const Mixed$16: MixinCtor<MixinCtor<abstract new () => TsDsl<ts.Block>, LayoutMethods>, DoMethods>;
1800
- declare class BlockTsDsl extends Mixed$16 {
1779
+ declare const Mixed$17: MixinCtor<MixinCtor<abstract new () => TsDsl<ts.Block>, LayoutMethods>, DoMethods>;
1780
+ declare class BlockTsDsl extends Mixed$17 {
1801
1781
  readonly '~dsl' = "BlockTsDsl";
1802
1782
  constructor(...items: Array<DoExpr>);
1803
1783
  analyze(ctx: AnalysisContext): void;
@@ -1805,8 +1785,8 @@ declare class BlockTsDsl extends Mixed$16 {
1805
1785
  }
1806
1786
  //#endregion
1807
1787
  //#region src/ts-dsl/stmt/var.d.ts
1808
- declare const Mixed$15: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.VariableStatement>, ValueMethods>, PatternMethods>, HintMethods>, ExportMethods>, DocMethods>, DefaultMethods>;
1809
- declare class VarTsDsl extends Mixed$15 {
1788
+ declare const Mixed$16: MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<MixinCtor<abstract new () => TsDsl<ts.VariableStatement>, ValueMethods>, PatternMethods>, HintMethods>, ExportMethods>, DocMethods>, DefaultMethods>;
1789
+ declare class VarTsDsl extends Mixed$16 {
1810
1790
  readonly '~dsl' = "VarTsDsl";
1811
1791
  readonly nameSanitizer: (name: string) => string;
1812
1792
  protected kind: ts.NodeFlags;
@@ -1829,8 +1809,8 @@ declare class VarTsDsl extends Mixed$15 {
1829
1809
  type ForMode = 'for' | 'in' | 'of';
1830
1810
  type ForCondition = MaybeTsDsl<ts.Expression>;
1831
1811
  type ForIterable = MaybeTsDsl<ts.Expression>;
1832
- declare const Mixed$14: MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ForStatement>, LayoutMethods>, DoMethods>;
1833
- declare class ImplForTsDsl<M extends ForMode = 'for'> extends Mixed$14 {
1812
+ declare const Mixed$15: MixinCtor<MixinCtor<abstract new () => TsDsl<ts.ForStatement>, LayoutMethods>, DoMethods>;
1813
+ declare class ImplForTsDsl<M extends ForMode = 'for'> extends Mixed$15 {
1834
1814
  readonly '~dsl' = "ForTsDsl";
1835
1815
  protected _await?: boolean;
1836
1816
  protected _condition?: ForCondition;
@@ -1871,6 +1851,26 @@ declare const ForTsDsl: {
1871
1851
  } & typeof ImplForTsDsl;
1872
1852
  type ForTsDsl<M extends ForMode = 'for'> = ImplForTsDsl<M>;
1873
1853
  //#endregion
1854
+ //#region src/ts-dsl/stmt/if.d.ts
1855
+ type IfCondition = NodeName | MaybeTsDsl<ts.Expression>;
1856
+ declare const Mixed$14: MixinCtor<abstract new () => TsDsl<ts.IfStatement>, DoMethods>;
1857
+ declare class IfTsDsl extends Mixed$14 {
1858
+ readonly '~dsl' = "IfTsDsl";
1859
+ protected _condition?: IfCondition;
1860
+ protected _else?: Array<DoExpr>;
1861
+ constructor(condition?: IfCondition);
1862
+ analyze(ctx: AnalysisContext): void;
1863
+ /** Returns true when all required builder calls are present. */
1864
+ get isValid(): boolean;
1865
+ condition(condition: IfCondition): this;
1866
+ otherwise(...items: Array<DoExpr>): this;
1867
+ toAst(): ts.IfStatement;
1868
+ $validate(): asserts this is this & {
1869
+ _condition: IfCondition;
1870
+ };
1871
+ private missingRequiredCalls;
1872
+ }
1873
+ //#endregion
1874
1874
  //#region src/ts-dsl/stmt/stmt.d.ts
1875
1875
  declare const Mixed$13: abstract new () => TsDsl<ts.Statement>;
1876
1876
  declare class StmtTsDsl extends Mixed$13 {
@@ -2269,21 +2269,21 @@ declare const reserved: {
2269
2269
  };
2270
2270
  //#endregion
2271
2271
  //#region src/ts-dsl/index.d.ts
2272
- declare const $: ((id: ts.Expression | TsDsl<ts.Expression> | NodeName) => ExprTsDsl) & {
2272
+ declare const $: ((id: any) => ExprTsDsl) & {
2273
2273
  /** Creates an array literal expression (e.g., `[1, 2, 3]`). */array: (...args: ConstructorParameters<typeof ArrayTsDsl>) => ArrayTsDsl; /** Creates an `as` type assertion expression (e.g., `value as Type`). */
2274
- as: (expr: AsExpr, type: AsType) => AsTsDsl; /** Creates a property access expression (e.g., `obj.foo`). */
2275
- attr: (left: AttrLeft, right: NodeName) => AttrTsDsl; /** Creates an await expression (e.g., `await promise`). */
2276
- await: (expr: AwaitExpr) => AwaitTsDsl; /** Creates a binary expression (e.g., `a + b`). */
2277
- binary: (base: ts.Expression | TsDsl<ts.Expression> | NodeName, op?: (("!=" | "!==" | "&&" | "*" | "+" | "-" | "/" | "<" | "<=" | "=" | "==" | "===" | ">" | ">=" | "??" | "??=" | "||") | ts.BinaryOperator) | undefined, expr?: (ts.Expression | TsDsl<ts.Expression> | NodeName) | undefined) => BinaryTsDsl; /** Creates a statement block (`{ ... }`). */
2274
+ as: (expr: any, type: any) => AsTsDsl; /** Creates a property access expression (e.g., `obj.foo`). */
2275
+ attr: (left: any, right: NodeName) => AttrTsDsl; /** Creates an await expression (e.g., `await promise`). */
2276
+ await: (expr: any) => AwaitTsDsl; /** Creates a binary expression (e.g., `a + b`). */
2277
+ binary: (base: any, op?: (("!=" | "!==" | "&&" | "*" | "+" | "-" | "/" | "<" | "<=" | "=" | "==" | "===" | ">" | ">=" | "??" | "??=" | "||") | ts.BinaryOperator) | undefined, expr?: any) => BinaryTsDsl; /** Creates a statement block (`{ ... }`). */
2278
2278
  block: (...args: ConstructorParameters<typeof BlockTsDsl>) => BlockTsDsl; /** Creates a function or method call expression (e.g., `fn(arg)`). */
2279
- call: (callee: CallCallee, ...args: (CallCallee | undefined)[]) => CallTsDsl; /** Creates a class declaration or expression. */
2279
+ call: (callee: any, ...args: any[]) => CallTsDsl; /** Creates a class declaration or expression. */
2280
2280
  class: (name: NodeName) => ClassTsDsl; /** Creates a constant variable declaration (`const`). */
2281
- const: (name?: NodeName | undefined) => VarTsDsl; /** Creates a postfix decrement expression (`i--`). */
2281
+ const: (name?: any) => VarTsDsl; /** Creates a postfix decrement expression (`i--`). */
2282
2282
  dec: (expr?: PostfixExpr | undefined, op?: ts.PostfixUnaryOperator | undefined) => PostfixTsDsl; /** Creates a decorator expression (e.g., `@decorator`). */
2283
2283
  decorator: (name: NodeName, ...args: (string | ts.Expression | TsDsl<ts.Expression>)[]) => DecoratorTsDsl; /** Creates a JSDoc documentation block. */
2284
2284
  doc: (lines?: DocLines | undefined, fn?: DocFn | undefined) => DocTsDsl; /** Creates an enum declaration. */
2285
2285
  enum: (name: NodeName, fn?: ((e: EnumTsDsl) => void) | undefined) => EnumTsDsl; /** Creates a general expression node. */
2286
- expr: (id: ts.Expression | TsDsl<ts.Expression> | NodeName) => ExprTsDsl; /** Creates a field declaration in a class or object. */
2286
+ expr: (id: any) => ExprTsDsl; /** Creates a field declaration in a class or object. */
2287
2287
  field: (name: NodeName, fn?: ((f: FieldTsDsl) => void) | undefined) => FieldTsDsl; /** Creates a for loop (for, for...of, for...in, or for await...of). */
2288
2288
  for: {
2289
2289
  (variableOrInit?: VarTsDsl): ForTsDsl<ForMode>;
@@ -2303,21 +2303,21 @@ declare const $: ((id: ts.Expression | TsDsl<ts.Expression> | NodeName) => ExprT
2303
2303
  getter: (name: NodeName, fn?: ((g: GetterTsDsl) => void) | undefined) => GetterTsDsl; /** Creates a single-line comment (//). */
2304
2304
  hint: (lines?: HintLines | undefined, fn?: HintFn | undefined) => HintTsDsl; /** Creates an identifier (e.g., `foo`). */
2305
2305
  id: (name: string) => IdTsDsl; /** Creates an if statement. */
2306
- if: (condition?: IfCondition | undefined) => IfTsDsl; /** Creates a postfix increment expression (`i++`). */
2306
+ if: (condition?: any) => IfTsDsl; /** Creates a postfix increment expression (`i++`). */
2307
2307
  inc: (expr?: PostfixExpr | undefined, op?: ts.PostfixUnaryOperator | undefined) => PostfixTsDsl; /** Creates an initialization block or statement. */
2308
2308
  init: (fn?: ((i: InitTsDsl) => void) | undefined) => InitTsDsl; /** Creates a lazy, context-aware node with deferred evaluation. */
2309
2309
  lazy: <T extends ts.Node>(thunk: LazyThunk<T>) => LazyTsDsl<T>; /** Creates a let variable declaration (`let`). */
2310
- let: (name?: NodeName | undefined) => VarTsDsl; /** Creates a literal value (e.g., string, number, boolean). */
2310
+ let: (name?: any) => VarTsDsl; /** Creates a literal value (e.g., string, number, boolean). */
2311
2311
  literal: (value: TsLiteralValue) => LiteralTsDsl; /** Creates an enum member declaration. */
2312
2312
  member: (name: NodeName, value?: ((string | number | ts.Expression | TsDsl<ts.Expression>) | ((m: EnumMemberTsDsl) => void)) | undefined) => EnumMemberTsDsl; /** Creates a method declaration inside a class or object. */
2313
2313
  method: (name: NodeName, fn?: ((m: MethodTsDsl) => void) | undefined) => MethodTsDsl; /** Creates a negation expression (`-x`). */
2314
2314
  neg: (expr?: PrefixExpr | undefined, op?: ts.PrefixUnaryOperator | undefined) => PrefixTsDsl; /** Creates a new expression (e.g., `new ClassName()`). */
2315
- new: (expr: NewExpr, ...args: (NewExpr | undefined)[]) => NewTsDsl; /** Creates a newline (for formatting purposes). */
2315
+ new: (expr: any, ...args: any[]) => NewTsDsl; /** Creates a newline (for formatting purposes). */
2316
2316
  newline: () => NewlineTsDsl; /** Creates a logical NOT expression (`!x`). */
2317
2317
  not: (expr?: PrefixExpr | undefined, op?: ts.PrefixUnaryOperator | undefined) => PrefixTsDsl; /** Creates a block comment (/* ... *\/). */
2318
2318
  note: (lines?: NoteLines | undefined, fn?: NoteFn | undefined) => NoteTsDsl; /** Creates an object literal expression. */
2319
2319
  object: (...args: ConstructorParameters<typeof ObjectTsDsl>) => ObjectTsDsl; /** Creates a parameter declaration for functions or methods. */
2320
- param: (name: ParamName, fn?: ParamFn | undefined) => ParamTsDsl; /** Creates a pattern for destructuring or matching. */
2320
+ param: (name: any, fn?: ParamFn | undefined) => ParamTsDsl; /** Creates a pattern for destructuring or matching. */
2321
2321
  pattern: () => PatternTsDsl; /** Creates a prefix unary expression (e.g., `-x`, `!x`, `~x`). */
2322
2322
  prefix: (expr?: PrefixExpr | undefined, op?: ts.PrefixUnaryOperator | undefined) => PrefixTsDsl; /** Creates an object literal property (e.g., `{ foo: bar }`). */
2323
2323
  prop: (meta: {
@@ -2340,11 +2340,11 @@ declare const $: ((id: ts.Expression | TsDsl<ts.Expression> | NodeName) => ExprT
2340
2340
  name?: undefined;
2341
2341
  }) => ObjectPropTsDsl; /** Creates a regular expression literal (e.g., `/foo/gi`). */
2342
2342
  regexp: (pattern: string, flags?: ("" | "g" | "i" | "m" | "s" | "u" | "y" | "uy" | "yu" | "su" | "sy" | "suy" | "syu" | "ys" | "us" | "usy" | "uys" | "ysu" | "yus" | "ms" | "mu" | "my" | "muy" | "myu" | "msu" | "msy" | "msuy" | "msyu" | "mys" | "mus" | "musy" | "muys" | "mysu" | "myus" | "ym" | "um" | "umy" | "uym" | "ymu" | "yum" | "sm" | "smu" | "smy" | "smuy" | "smyu" | "sym" | "sum" | "sumy" | "suym" | "symu" | "syum" | "yms" | "ysm" | "ums" | "umsy" | "umys" | "usm" | "usmy" | "usym" | "uyms" | "uysm" | "ymsu" | "ymus" | "ysmu" | "ysum" | "yums" | "yusm" | "im" | "is" | "iu" | "iy" | "iuy" | "iyu" | "isu" | "isy" | "isuy" | "isyu" | "iys" | "ius" | "iusy" | "iuys" | "iysu" | "iyus" | "ims" | "imu" | "imy" | "imuy" | "imyu" | "imsu" | "imsy" | "imsuy" | "imsyu" | "imys" | "imus" | "imusy" | "imuys" | "imysu" | "imyus" | "iym" | "ium" | "iumy" | "iuym" | "iymu" | "iyum" | "ism" | "ismu" | "ismy" | "ismuy" | "ismyu" | "isym" | "isum" | "isumy" | "isuym" | "isymu" | "isyum" | "iyms" | "iysm" | "iums" | "iumsy" | "iumys" | "iusm" | "iusmy" | "iusym" | "iuyms" | "iuysm" | "iymsu" | "iymus" | "iysmu" | "iysum" | "iyums" | "iyusm" | "yi" | "ui" | "uiy" | "uyi" | "yiu" | "yui" | "si" | "siu" | "siy" | "siuy" | "siyu" | "syi" | "sui" | "suiy" | "suyi" | "syiu" | "syui" | "yis" | "ysi" | "uis" | "uisy" | "uiys" | "usi" | "usiy" | "usyi" | "uyis" | "uysi" | "yisu" | "yius" | "ysiu" | "ysui" | "yuis" | "yusi" | "mi" | "mis" | "miu" | "miy" | "miuy" | "miyu" | "misu" | "misy" | "misuy" | "misyu" | "miys" | "mius" | "miusy" | "miuys" | "miysu" | "miyus" | "myi" | "mui" | "muiy" | "muyi" | "myiu" | "myui" | "msi" | "msiu" | "msiy" | "msiuy" | "msiyu" | "msyi" | "msui" | "msuiy" | "msuyi" | "msyiu" | "msyui" | "myis" | "mysi" | "muis" | "muisy" | "muiys" | "musi" | "musiy" | "musyi" | "muyis" | "muysi" | "myisu" | "myius" | "mysiu" | "mysui" | "myuis" | "myusi" | "yim" | "ymi" | "uim" | "uimy" | "uiym" | "umi" | "umiy" | "umyi" | "uyim" | "uymi" | "yimu" | "yium" | "ymiu" | "ymui" | "yuim" | "yumi" | "sim" | "simu" | "simy" | "simuy" | "simyu" | "siym" | "sium" | "siumy" | "siuym" | "siymu" | "siyum" | "smi" | "smiu" | "smiy" | "smiuy" | "smiyu" | "smyi" | "smui" | "smuiy" | "smuyi" | "smyiu" | "smyui" | "syim" | "symi" | "suim" | "suimy" | "suiym" | "sumi" | "sumiy" | "sumyi" | "suyim" | "suymi" | "syimu" | "syium" | "symiu" | "symui" | "syuim" | "syumi" | "yims" | "yism" | "ymis" | "ymsi" | "ysim" | "ysmi" | "uims" | "uimsy" | "uimys" | "uism" | "uismy" | "uisym" | "uiyms" | "uiysm" | "umis" | "umisy" | "umiys" | "umsi" | "umsiy" | "umsyi" | "umyis" | "umysi" | "usim" | "usimy" | "usiym" | "usmi" | "usmiy" | "usmyi" | "usyim" | "usymi" | "uyims" | "uyism" | "uymis" | "uymsi" | "uysim" | "uysmi" | "yimsu" | "yimus" | "yismu" | "yisum" | "yiums" | "yiusm" | "ymisu" | "ymius" | "ymsiu" | "ymsui" | "ymuis" | "ymusi" | "ysimu" | "ysium" | "ysmiu" | "ysmui" | "ysuim" | "ysumi" | "yuims" | "yuism" | "yumis" | "yumsi" | "yusim" | "yusmi" | "gi" | "gm" | "gs" | "gu" | "gy" | "guy" | "gyu" | "gsu" | "gsy" | "gsuy" | "gsyu" | "gys" | "gus" | "gusy" | "guys" | "gysu" | "gyus" | "gms" | "gmu" | "gmy" | "gmuy" | "gmyu" | "gmsu" | "gmsy" | "gmsuy" | "gmsyu" | "gmys" | "gmus" | "gmusy" | "gmuys" | "gmysu" | "gmyus" | "gym" | "gum" | "gumy" | "guym" | "gymu" | "gyum" | "gsm" | "gsmu" | "gsmy" | "gsmuy" | "gsmyu" | "gsym" | "gsum" | "gsumy" | "gsuym" | "gsymu" | "gsyum" | "gyms" | "gysm" | "gums" | "gumsy" | "gumys" | "gusm" | "gusmy" | "gusym" | "guyms" | "guysm" | "gymsu" | "gymus" | "gysmu" | "gysum" | "gyums" | "gyusm" | "gim" | "gis" | "giu" | "giy" | "giuy" | "giyu" | "gisu" | "gisy" | "gisuy" | "gisyu" | "giys" | "gius" | "giusy" | "giuys" | "giysu" | "giyus" | "gims" | "gimu" | "gimy" | "gimuy" | "gimyu" | "gimsu" | "gimsy" | "gimsuy" | "gimsyu" | "gimys" | "gimus" | "gimusy" | "gimuys" | "gimysu" | "gimyus" | "giym" | "gium" | "giumy" | "giuym" | "giymu" | "giyum" | "gism" | "gismu" | "gismy" | "gismuy" | "gismyu" | "gisym" | "gisum" | "gisumy" | "gisuym" | "gisymu" | "gisyum" | "giyms" | "giysm" | "giums" | "giumsy" | "giumys" | "giusm" | "giusmy" | "giusym" | "giuyms" | "giuysm" | "giymsu" | "giymus" | "giysmu" | "giysum" | "giyums" | "giyusm" | "gyi" | "gui" | "guiy" | "guyi" | "gyiu" | "gyui" | "gsi" | "gsiu" | "gsiy" | "gsiuy" | "gsiyu" | "gsyi" | "gsui" | "gsuiy" | "gsuyi" | "gsyiu" | "gsyui" | "gyis" | "gysi" | "guis" | "guisy" | "guiys" | "gusi" | "gusiy" | "gusyi" | "guyis" | "guysi" | "gyisu" | "gyius" | "gysiu" | "gysui" | "gyuis" | "gyusi" | "gmi" | "gmis" | "gmiu" | "gmiy" | "gmiuy" | "gmiyu" | "gmisu" | "gmisy" | "gmisuy" | "gmisyu" | "gmiys" | "gmius" | "gmiusy" | "gmiuys" | "gmiysu" | "gmiyus" | "gmyi" | "gmui" | "gmuiy" | "gmuyi" | "gmyiu" | "gmyui" | "gmsi" | "gmsiu" | "gmsiy" | "gmsiuy" | "gmsiyu" | "gmsyi" | "gmsui" | "gmsuiy" | "gmsuyi" | "gmsyiu" | "gmsyui" | "gmyis" | "gmysi" | "gmuis" | "gmuisy" | "gmuiys" | "gmusi" | "gmusiy" | "gmusyi" | "gmuyis" | "gmuysi" | "gmyisu" | "gmyius" | "gmysiu" | "gmysui" | "gmyuis" | "gmyusi" | "gyim" | "gymi" | "guim" | "guimy" | "guiym" | "gumi" | "gumiy" | "gumyi" | "guyim" | "guymi" | "gyimu" | "gyium" | "gymiu" | "gymui" | "gyuim" | "gyumi" | "gsim" | "gsimu" | "gsimy" | "gsimuy" | "gsimyu" | "gsiym" | "gsium" | "gsiumy" | "gsiuym" | "gsiymu" | "gsiyum" | "gsmi" | "gsmiu" | "gsmiy" | "gsmiuy" | "gsmiyu" | "gsmyi" | "gsmui" | "gsmuiy" | "gsmuyi" | "gsmyiu" | "gsmyui" | "gsyim" | "gsymi" | "gsuim" | "gsuimy" | "gsuiym" | "gsumi" | "gsumiy" | "gsumyi" | "gsuyim" | "gsuymi" | "gsyimu" | "gsyium" | "gsymiu" | "gsymui" | "gsyuim" | "gsyumi" | "gyims" | "gyism" | "gymis" | "gymsi" | "gysim" | "gysmi" | "guims" | "guimsy" | "guimys" | "guism" | "guismy" | "guisym" | "guiyms" | "guiysm" | "gumis" | "gumisy" | "gumiys" | "gumsi" | "gumsiy" | "gumsyi" | "gumyis" | "gumysi" | "gusim" | "gusimy" | "gusiym" | "gusmi" | "gusmiy" | "gusmyi" | "gusyim" | "gusymi" | "guyims" | "guyism" | "guymis" | "guymsi" | "guysim" | "guysmi" | "gyimsu" | "gyimus" | "gyismu" | "gyisum" | "gyiums" | "gyiusm" | "gymisu" | "gymius" | "gymsiu" | "gymsui" | "gymuis" | "gymusi" | "gysimu" | "gysium" | "gysmiu" | "gysmui" | "gysuim" | "gysumi" | "gyuims" | "gyuism" | "gyumis" | "gyumsi" | "gyusim" | "gyusmi" | "yg" | "ug" | "ugy" | "uyg" | "ygu" | "yug" | "sg" | "sgu" | "sgy" | "sguy" | "sgyu" | "syg" | "sug" | "sugy" | "suyg" | "sygu" | "syug" | "ygs" | "ysg" | "ugs" | "ugsy" | "ugys" | "usg" | "usgy" | "usyg" | "uygs" | "uysg" | "ygsu" | "ygus" | "ysgu" | "ysug" | "yugs" | "yusg" | "mg" | "mgs" | "mgu" | "mgy" | "mguy" | "mgyu" | "mgsu" | "mgsy" | "mgsuy" | "mgsyu" | "mgys" | "mgus" | "mgusy" | "mguys" | "mgysu" | "mgyus" | "myg" | "mug" | "mugy" | "muyg" | "mygu" | "myug" | "msg" | "msgu" | "msgy" | "msguy" | "msgyu" | "msyg" | "msug" | "msugy" | "msuyg" | "msygu" | "msyug" | "mygs" | "mysg" | "mugs" | "mugsy" | "mugys" | "musg" | "musgy" | "musyg" | "muygs" | "muysg" | "mygsu" | "mygus" | "mysgu" | "mysug" | "myugs" | "myusg" | "ygm" | "ymg" | "ugm" | "ugmy" | "ugym" | "umg" | "umgy" | "umyg" | "uygm" | "uymg" | "ygmu" | "ygum" | "ymgu" | "ymug" | "yugm" | "yumg" | "sgm" | "sgmu" | "sgmy" | "sgmuy" | "sgmyu" | "sgym" | "sgum" | "sgumy" | "sguym" | "sgymu" | "sgyum" | "smg" | "smgu" | "smgy" | "smguy" | "smgyu" | "smyg" | "smug" | "smugy" | "smuyg" | "smygu" | "smyug" | "sygm" | "symg" | "sugm" | "sugmy" | "sugym" | "sumg" | "sumgy" | "sumyg" | "suygm" | "suymg" | "sygmu" | "sygum" | "symgu" | "symug" | "syugm" | "syumg" | "ygms" | "ygsm" | "ymgs" | "ymsg" | "ysgm" | "ysmg" | "ugms" | "ugmsy" | "ugmys" | "ugsm" | "ugsmy" | "ugsym" | "ugyms" | "ugysm" | "umgs" | "umgsy" | "umgys" | "umsg" | "umsgy" | "umsyg" | "umygs" | "umysg" | "usgm" | "usgmy" | "usgym" | "usmg" | "usmgy" | "usmyg" | "usygm" | "usymg" | "uygms" | "uygsm" | "uymgs" | "uymsg" | "uysgm" | "uysmg" | "ygmsu" | "ygmus" | "ygsmu" | "ygsum" | "ygums" | "ygusm" | "ymgsu" | "ymgus" | "ymsgu" | "ymsug" | "ymugs" | "ymusg" | "ysgmu" | "ysgum" | "ysmgu" | "ysmug" | "ysugm" | "ysumg" | "yugms" | "yugsm" | "yumgs" | "yumsg" | "yusgm" | "yusmg" | "ig" | "igm" | "igs" | "igu" | "igy" | "iguy" | "igyu" | "igsu" | "igsy" | "igsuy" | "igsyu" | "igys" | "igus" | "igusy" | "iguys" | "igysu" | "igyus" | "igms" | "igmu" | "igmy" | "igmuy" | "igmyu" | "igmsu" | "igmsy" | "igmsuy" | "igmsyu" | "igmys" | "igmus" | "igmusy" | "igmuys" | "igmysu" | "igmyus" | "igym" | "igum" | "igumy" | "iguym" | "igymu" | "igyum" | "igsm" | "igsmu" | "igsmy" | "igsmuy" | "igsmyu" | "igsym" | "igsum" | "igsumy" | "igsuym" | "igsymu" | "igsyum" | "igyms" | "igysm" | "igums" | "igumsy" | "igumys" | "igusm" | "igusmy" | "igusym" | "iguyms" | "iguysm" | "igymsu" | "igymus" | "igysmu" | "igysum" | "igyums" | "igyusm" | "iyg" | "iug" | "iugy" | "iuyg" | "iygu" | "iyug" | "isg" | "isgu" | "isgy" | "isguy" | "isgyu" | "isyg" | "isug" | "isugy" | "isuyg" | "isygu" | "isyug" | "iygs" | "iysg" | "iugs" | "iugsy" | "iugys" | "iusg" | "iusgy" | "iusyg" | "iuygs" | "iuysg" | "iygsu" | "iygus" | "iysgu" | "iysug" | "iyugs" | "iyusg" | "img" | "imgs" | "imgu" | "imgy" | "imguy" | "imgyu" | "imgsu" | "imgsy" | "imgsuy" | "imgsyu" | "imgys" | "imgus" | "imgusy" | "imguys" | "imgysu" | "imgyus" | "imyg" | "imug" | "imugy" | "imuyg" | "imygu" | "imyug" | "imsg" | "imsgu" | "imsgy" | "imsguy" | "imsgyu" | "imsyg" | "imsug" | "imsugy" | "imsuyg" | "imsygu" | "imsyug" | "imygs" | "imysg" | "imugs" | "imugsy" | "imugys" | "imusg" | "imusgy" | "imusyg" | "imuygs" | "imuysg" | "imygsu" | "imygus" | "imysgu" | "imysug" | "imyugs" | "imyusg" | "iygm" | "iymg" | "iugm" | "iugmy" | "iugym" | "iumg" | "iumgy" | "iumyg" | "iuygm" | "iuymg" | "iygmu" | "iygum" | "iymgu" | "iymug" | "iyugm" | "iyumg" | "isgm" | "isgmu" | "isgmy" | "isgmuy" | "isgmyu" | "isgym" | "isgum" | "isgumy" | "isguym" | "isgymu" | "isgyum" | "ismg" | "ismgu" | "ismgy" | "ismguy" | "ismgyu" | "ismyg" | "ismug" | "ismugy" | "ismuyg" | "ismygu" | "ismyug" | "isygm" | "isymg" | "isugm" | "isugmy" | "isugym" | "isumg" | "isumgy" | "isumyg" | "isuygm" | "isuymg" | "isygmu" | "isygum" | "isymgu" | "isymug" | "isyugm" | "isyumg" | "iygms" | "iygsm" | "iymgs" | "iymsg" | "iysgm" | "iysmg" | "iugms" | "iugmsy" | "iugmys" | "iugsm" | "iugsmy" | "iugsym" | "iugyms" | "iugysm" | "iumgs" | "iumgsy" | "iumgys" | "iumsg" | "iumsgy" | "iumsyg" | "iumygs" | "iumysg" | "iusgm" | "iusgmy" | "iusgym" | "iusmg" | "iusmgy" | "iusmyg" | "iusygm" | "iusymg" | "iuygms" | "iuygsm" | "iuymgs" | "iuymsg" | "iuysgm" | "iuysmg" | "iygmsu" | "iygmus" | "iygsmu" | "iygsum" | "iygums" | "iygusm" | "iymgsu" | "iymgus" | "iymsgu" | "iymsug" | "iymugs" | "iymusg" | "iysgmu" | "iysgum" | "iysmgu" | "iysmug" | "iysugm" | "iysumg" | "iyugms" | "iyugsm" | "iyumgs" | "iyumsg" | "iyusgm" | "iyusmg" | "ygi" | "yig" | "ugi" | "ugiy" | "ugyi" | "uig" | "uigy" | "uiyg" | "uygi" | "uyig" | "ygiu" | "ygui" | "yigu" | "yiug" | "yugi" | "yuig" | "sgi" | "sgiu" | "sgiy" | "sgiuy" | "sgiyu" | "sgyi" | "sgui" | "sguiy" | "sguyi" | "sgyiu" | "sgyui" | "sig" | "sigu" | "sigy" | "siguy" | "sigyu" | "siyg" | "siug" | "siugy" | "siuyg" | "siygu" | "siyug" | "sygi" | "syig" | "sugi" | "sugiy" | "sugyi" | "suig" | "suigy" | "suiyg" | "suygi" | "suyig" | "sygiu" | "sygui" | "syigu" | "syiug" | "syugi" | "syuig" | "ygis" | "ygsi" | "yigs" | "yisg" | "ysgi" | "ysig" | "ugis" | "ugisy" | "ugiys" | "ugsi" | "ugsiy" | "ugsyi" | "ugyis" | "ugysi" | "uigs" | "uigsy" | "uigys" | "uisg" | "uisgy" | "uisyg" | "uiygs" | "uiysg" | "usgi" | "usgiy" | "usgyi" | "usig" | "usigy" | "usiyg" | "usygi" | "usyig" | "uygis" | "uygsi" | "uyigs" | "uyisg" | "uysgi" | "uysig" | "ygisu" | "ygius" | "ygsiu" | "ygsui" | "yguis" | "ygusi" | "yigsu" | "yigus" | "yisgu" | "yisug" | "yiugs" | "yiusg" | "ysgiu" | "ysgui" | "ysigu" | "ysiug" | "ysugi" | "ysuig" | "yugis" | "yugsi" | "yuigs" | "yuisg" | "yusgi" | "yusig" | "mgi" | "mgis" | "mgiu" | "mgiy" | "mgiuy" | "mgiyu" | "mgisu" | "mgisy" | "mgisuy" | "mgisyu" | "mgiys" | "mgius" | "mgiusy" | "mgiuys" | "mgiysu" | "mgiyus" | "mgyi" | "mgui" | "mguiy" | "mguyi" | "mgyiu" | "mgyui" | "mgsi" | "mgsiu" | "mgsiy" | "mgsiuy" | "mgsiyu" | "mgsyi" | "mgsui" | "mgsuiy" | "mgsuyi" | "mgsyiu" | "mgsyui" | "mgyis" | "mgysi" | "mguis" | "mguisy" | "mguiys" | "mgusi" | "mgusiy" | "mgusyi" | "mguyis" | "mguysi" | "mgyisu" | "mgyius" | "mgysiu" | "mgysui" | "mgyuis" | "mgyusi" | "mig" | "migs" | "migu" | "migy" | "miguy" | "migyu" | "migsu" | "migsy" | "migsuy" | "migsyu" | "migys" | "migus" | "migusy" | "miguys" | "migysu" | "migyus" | "miyg" | "miug" | "miugy" | "miuyg" | "miygu" | "miyug" | "misg" | "misgu" | "misgy" | "misguy" | "misgyu" | "misyg" | "misug" | "misugy" | "misuyg" | "misygu" | "misyug" | "miygs" | "miysg" | "miugs" | "miugsy" | "miugys" | "miusg" | "miusgy" | "miusyg" | "miuygs" | "miuysg" | "miygsu" | "miygus" | "miysgu" | "miysug" | "miyugs" | "miyusg" | "mygi" | "myig" | "mugi" | "mugiy" | "mugyi" | "muig" | "muigy" | "muiyg" | "muygi" | "muyig" | "mygiu" | "mygui" | "myigu" | "myiug" | "myugi" | "myuig" | "msgi" | "msgiu" | "msgiy" | "msgiuy" | "msgiyu" | "msgyi" | "msgui" | "msguiy" | "msguyi" | "msgyiu" | "msgyui" | "msig" | "msigu" | "msigy" | "msiguy" | "msigyu" | "msiyg" | "msiug" | "msiugy" | "msiuyg" | "msiygu" | "msiyug" | "msygi" | "msyig" | "msugi" | "msugiy" | "msugyi" | "msuig" | "msuigy" | "msuiyg" | "msuygi" | "msuyig" | "msygiu" | "msygui" | "msyigu" | "msyiug" | "msyugi" | "msyuig" | "mygis" | "mygsi" | "myigs" | "myisg" | "mysgi" | "mysig" | "mugis" | "mugisy" | "mugiys" | "mugsi" | "mugsiy" | "mugsyi" | "mugyis" | "mugysi" | "muigs" | "muigsy" | "muigys" | "muisg" | "muisgy" | "muisyg" | "muiygs" | "muiysg" | "musgi" | "musgiy" | "musgyi" | "musig" | "musigy" | "musiyg" | "musygi" | "musyig" | "muygis" | "muygsi" | "muyigs" | "muyisg" | "muysgi" | "muysig" | "mygisu" | "mygius" | "mygsiu" | "mygsui" | "myguis" | "mygusi" | "myigsu" | "myigus" | "myisgu" | "myisug" | "myiugs" | "myiusg" | "mysgiu" | "mysgui" | "mysigu" | "mysiug" | "mysugi" | "mysuig" | "myugis" | "myugsi" | "myuigs" | "myuisg" | "myusgi" | "myusig" | "ygim" | "ygmi" | "yigm" | "yimg" | "ymgi" | "ymig" | "ugim" | "ugimy" | "ugiym" | "ugmi" | "ugmiy" | "ugmyi" | "ugyim" | "ugymi" | "uigm" | "uigmy" | "uigym" | "uimg" | "uimgy" | "uimyg" | "uiygm" | "uiymg" | "umgi" | "umgiy" | "umgyi" | "umig" | "umigy" | "umiyg" | "umygi" | "umyig" | "uygim" | "uygmi" | "uyigm" | "uyimg" | "uymgi" | "uymig" | "ygimu" | "ygium" | "ygmiu" | "ygmui" | "yguim" | "ygumi" | "yigmu" | "yigum" | "yimgu" | "yimug" | "yiugm" | "yiumg" | "ymgiu" | "ymgui" | "ymigu" | "ymiug" | "ymugi" | "ymuig" | "yugim" | "yugmi" | "yuigm" | "yuimg" | "yumgi" | "yumig" | "sgim" | "sgimu" | "sgimy" | "sgimuy" | "sgimyu" | "sgiym" | "sgium" | "sgiumy" | "sgiuym" | "sgiymu" | "sgiyum" | "sgmi" | "sgmiu" | "sgmiy" | "sgmiuy" | "sgmiyu" | "sgmyi" | "sgmui" | "sgmuiy" | "sgmuyi" | "sgmyiu" | "sgmyui" | "sgyim" | "sgymi" | "sguim" | "sguimy" | "sguiym" | "sgumi" | "sgumiy" | "sgumyi" | "sguyim" | "sguymi" | "sgyimu" | "sgyium" | "sgymiu" | "sgymui" | "sgyuim" | "sgyumi" | "sigm" | "sigmu" | "sigmy" | "sigmuy" | "sigmyu" | "sigym" | "sigum" | "sigumy" | "siguym" | "sigymu" | "sigyum" | "simg" | "simgu" | "simgy" | "simguy" | "simgyu" | "simyg" | "simug" | "simugy" | "simuyg" | "simygu" | "simyug" | "siygm" | "siymg" | "siugm" | "siugmy" | "siugym" | "siumg" | "siumgy" | "siumyg" | "siuygm" | "siuymg" | "siygmu" | "siygum" | "siymgu" | "siymug" | "siyugm" | "siyumg" | "smgi" | "smgiu" | "smgiy" | "smgiuy" | "smgiyu" | "smgyi" | "smgui" | "smguiy" | "smguyi" | "smgyiu" | "smgyui" | "smig" | "smigu" | "smigy" | "smiguy" | "smigyu" | "smiyg" | "smiug" | "smiugy" | "smiuyg" | "smiygu" | "smiyug" | "smygi" | "smyig" | "smugi" | "smugiy" | "smugyi" | "smuig" | "smuigy" | "smuiyg" | "smuygi" | "smuyig" | "smygiu" | "smygui" | "smyigu" | "smyiug" | "smyugi" | "smyuig" | "sygim" | "sygmi" | "syigm" | "syimg" | "symgi" | "symig" | "sugim" | "sugimy" | "sugiym" | "sugmi" | "sugmiy" | "sugmyi" | "sugyim" | "sugymi" | "suigm" | "suigmy" | "suigym" | "suimg" | "suimgy" | "suimyg" | "suiygm" | "suiymg" | "sumgi" | "sumgiy" | "sumgyi" | "sumig" | "sumigy" | "sumiyg" | "sumygi" | "sumyig" | "suygim" | "suygmi" | "suyigm" | "suyimg" | "suymgi" | "suymig" | "sygimu" | "sygium" | "sygmiu" | "sygmui" | "syguim" | "sygumi" | "syigmu" | "syigum" | "syimgu" | "syimug" | "syiugm" | "syiumg" | "symgiu" | "symgui" | "symigu" | "symiug" | "symugi" | "symuig" | "syugim" | "syugmi" | "syuigm" | "syuimg" | "syumgi" | "syumig" | "ygims" | "ygism" | "ygmis" | "ygmsi" | "ygsim" | "ygsmi" | "yigms" | "yigsm" | "yimgs" | "yimsg" | "yisgm" | "yismg" | "ymgis" | "ymgsi" | "ymigs" | "ymisg" | "ymsgi" | "ymsig" | "ysgim" | "ysgmi" | "ysigm" | "ysimg" | "ysmgi" | "ysmig" | "ugims" | "ugimsy" | "ugimys" | "ugism" | "ugismy" | "ugisym" | "ugiyms" | "ugiysm" | "ugmis" | "ugmisy" | "ugmiys" | "ugmsi" | "ugmsiy" | "ugmsyi" | "ugmyis" | "ugmysi" | "ugsim" | "ugsimy" | "ugsiym" | "ugsmi" | "ugsmiy" | "ugsmyi" | "ugsyim" | "ugsymi" | "ugyims" | "ugyism" | "ugymis" | "ugymsi" | "ugysim" | "ugysmi" | "uigms" | "uigmsy" | "uigmys" | "uigsm" | "uigsmy" | "uigsym" | "uigyms" | "uigysm" | "uimgs" | "uimgsy" | "uimgys" | "uimsg" | "uimsgy" | "uimsyg" | "uimygs" | "uimysg" | "uisgm" | "uisgmy" | "uisgym" | "uismg" | "uismgy" | "uismyg" | "uisygm" | "uisymg" | "uiygms" | "uiygsm" | "uiymgs" | "uiymsg" | "uiysgm" | "uiysmg" | "umgis" | "umgisy" | "umgiys" | "umgsi" | "umgsiy" | "umgsyi" | "umgyis" | "umgysi" | "umigs" | "umigsy" | "umigys" | "umisg" | "umisgy" | "umisyg" | "umiygs" | "umiysg" | "umsgi" | "umsgiy" | "umsgyi" | "umsig" | "umsigy" | "umsiyg" | "umsygi" | "umsyig" | "umygis" | "umygsi" | "umyigs" | "umyisg" | "umysgi" | "umysig" | "usgim" | "usgimy" | "usgiym" | "usgmi" | "usgmiy" | "usgmyi" | "usgyim" | "usgymi" | "usigm" | "usigmy" | "usigym" | "usimg" | "usimgy" | "usimyg" | "usiygm" | "usiymg" | "usmgi" | "usmgiy" | "usmgyi" | "usmig" | "usmigy" | "usmiyg" | "usmygi" | "usmyig" | "usygim" | "usygmi" | "usyigm" | "usyimg" | "usymgi" | "usymig" | "uygims" | "uygism" | "uygmis" | "uygmsi" | "uygsim" | "uygsmi" | "uyigms" | "uyigsm" | "uyimgs" | "uyimsg" | "uyisgm" | "uyismg" | "uymgis" | "uymgsi" | "uymigs" | "uymisg" | "uymsgi" | "uymsig" | "uysgim" | "uysgmi" | "uysigm" | "uysimg" | "uysmgi" | "uysmig" | "ygimsu" | "ygimus" | "ygismu" | "ygisum" | "ygiums" | "ygiusm" | "ygmisu" | "ygmius" | "ygmsiu" | "ygmsui" | "ygmuis" | "ygmusi" | "ygsimu" | "ygsium" | "ygsmiu" | "ygsmui" | "ygsuim" | "ygsumi" | "yguims" | "yguism" | "ygumis" | "ygumsi" | "ygusim" | "ygusmi" | "yigmsu" | "yigmus" | "yigsmu" | "yigsum" | "yigums" | "yigusm" | "yimgsu" | "yimgus" | "yimsgu" | "yimsug" | "yimugs" | "yimusg" | "yisgmu" | "yisgum" | "yismgu" | "yismug" | "yisugm" | "yisumg" | "yiugms" | "yiugsm" | "yiumgs" | "yiumsg" | "yiusgm" | "yiusmg" | "ymgisu" | "ymgius" | "ymgsiu" | "ymgsui" | "ymguis" | "ymgusi" | "ymigsu" | "ymigus" | "ymisgu" | "ymisug" | "ymiugs" | "ymiusg" | "ymsgiu" | "ymsgui" | "ymsigu" | "ymsiug" | "ymsugi" | "ymsuig" | "ymugis" | "ymugsi" | "ymuigs" | "ymuisg" | "ymusgi" | "ymusig" | "ysgimu" | "ysgium" | "ysgmiu" | "ysgmui" | "ysguim" | "ysgumi" | "ysigmu" | "ysigum" | "ysimgu" | "ysimug" | "ysiugm" | "ysiumg" | "ysmgiu" | "ysmgui" | "ysmigu" | "ysmiug" | "ysmugi" | "ysmuig" | "ysugim" | "ysugmi" | "ysuigm" | "ysuimg" | "ysumgi" | "ysumig" | "yugims" | "yugism" | "yugmis" | "yugmsi" | "yugsim" | "yugsmi" | "yuigms" | "yuigsm" | "yuimgs" | "yuimsg" | "yuisgm" | "yuismg" | "yumgis" | "yumgsi" | "yumigs" | "yumisg" | "yumsgi" | "yumsig" | "yusgim" | "yusgmi" | "yusigm" | "yusimg" | "yusmgi" | "yusmig") | undefined) => RegExpTsDsl; /** Creates a return statement. */
2343
- return: (expr?: ReturnExpr | undefined) => ReturnTsDsl; /** Creates a setter method declaration. */
2343
+ return: (expr?: any) => ReturnTsDsl; /** Creates a setter method declaration. */
2344
2344
  setter: (name: NodeName, fn?: ((s: SetterTsDsl) => void) | undefined) => SetterTsDsl; /** Creates a spread element from an expression (e.g., `...expr`). */
2345
- spread: (expr: SpreadExpr) => SpreadTsDsl; /** Wraps an expression or statement-like value into a `StmtTsDsl`. */
2345
+ spread: (expr: any) => SpreadTsDsl; /** Wraps an expression or statement-like value into a `StmtTsDsl`. */
2346
2346
  stmt: (inner: ts.Expression | ts.Statement | TsDsl<any>) => StmtTsDsl; /** Creates a template literal expression. */
2347
- template: (value?: TemplatePart | undefined) => TemplateTsDsl; /** Creates a ternary conditional expression (if ? then : else). */
2347
+ template: (value?: any) => TemplateTsDsl; /** Creates a ternary conditional expression (if ? then : else). */
2348
2348
  ternary: (condition?: string | ts.Expression | TsDsl<ts.Expression> | undefined) => TernaryTsDsl; /** Creates a throw statement. */
2349
2349
  throw: (error: string | ts.Expression | TsDsl<ts.Expression>, useNew?: boolean | undefined) => ThrowTsDsl; /** Creates a syntax token (e.g., `?`, `readonly`, `+`, `-`). */
2350
2350
  token: () => TokenTsDsl<never>; /** Creates a try/catch/finally statement. */
@@ -2352,24 +2352,24 @@ declare const $: ((id: ts.Expression | TsDsl<ts.Expression> | NodeName) => ExprT
2352
2352
  type: ((name: NodeName, fn?: TypeExprFn | undefined) => TypeExprTsDsl) & {
2353
2353
  /** Creates a type alias declaration (e.g., `type Foo = Bar`). */alias: (name: NodeName, fn?: ((t: TypeAliasTsDsl) => void) | undefined) => TypeAliasTsDsl; /** Creates an intersection type (e.g., `A & B`). */
2354
2354
  and: (...args: ConstructorParameters<typeof TypeAndTsDsl>) => TypeAndTsDsl; /** Creates a qualified type reference (e.g., Foo.Bar). */
2355
- attr: (right: NodeName | ts.Identifier) => TypeAttrTsDsl; /** Creates a basic type reference or type expression (e.g., Foo or Foo<T>). */
2355
+ attr: (right: any) => TypeAttrTsDsl; /** Creates a basic type reference or type expression (e.g., Foo or Foo<T>). */
2356
2356
  expr: (name: NodeName, fn?: TypeExprFn | undefined) => TypeExprTsDsl; /** Converts a runtime value into a corresponding type expression node. */
2357
2357
  fromValue: (input: unknown) => TsDsl<ts.TypeNode>; /** Creates a function type node (e.g., `(a: string) => number`). */
2358
2358
  func: (...args: ConstructorParameters<typeof TypeFuncTsDsl>) => TypeFuncTsDsl; /** Creates an indexed-access type (e.g., `Foo<T>[K]`). */
2359
2359
  idx: (base: string | ts.TypeNode | TsDsl<ts.TypeNode>, index: string | number | ts.TypeNode | TsDsl<ts.TypeNode>) => TypeIdxTsDsl; /** Creates a literal type node (e.g., 'foo', 42, or true). */
2360
2360
  literal: (value: TsLiteralValue) => TypeLiteralTsDsl; /** Creates a mapped type (e.g., `{ [K in keyof T]: U }`). */
2361
- mapped: (name?: NodeName | undefined) => TypeMappedTsDsl; /** Creates a type literal node (e.g., { foo: string }). */
2361
+ mapped: (name?: any) => TypeMappedTsDsl; /** Creates a type literal node (e.g., { foo: string }). */
2362
2362
  object: () => TypeObjectTsDsl; /** Creates a type operator node (e.g., `readonly T`, `keyof T`, `unique T`). */
2363
2363
  operator: () => TypeOperatorTsDsl; /** Represents a union type (e.g., `A | B | C`). */
2364
2364
  or: (...args: ConstructorParameters<typeof TypeOrTsDsl>) => TypeOrTsDsl; /** Creates a type parameter (e.g., `<T>`). */
2365
- param: (name?: NodeName | undefined, fn?: ((name: TypeParamTsDsl) => void) | undefined) => TypeParamTsDsl; /** Creates a type query node (e.g., `typeof Foo`). */
2366
- query: (expr: TypeQueryExpr) => TypeQueryTsDsl; /** Builds a TypeScript template literal *type* (e.g., `${Foo}-${Bar}` as a type). */
2365
+ param: (name?: any, fn?: ((name: TypeParamTsDsl) => void) | undefined) => TypeParamTsDsl; /** Creates a type query node (e.g., `typeof Foo`). */
2366
+ query: (expr: any) => TypeQueryTsDsl; /** Builds a TypeScript template literal *type* (e.g., `${Foo}-${Bar}` as a type). */
2367
2367
  template: (value?: string | ts.TypeNode | TsDsl<ts.TypeNode> | undefined) => TypeTemplateTsDsl; /** Creates a tuple type (e.g., [A, B, C]). */
2368
2368
  tuple: (...args: ConstructorParameters<typeof TypeTupleTsDsl>) => TypeTupleTsDsl; /** Creates a named tuple element (e.g., `[resolver?: R]`). */
2369
2369
  tupleMember: (name: NodeName) => TypeTupleMemberTsDsl;
2370
2370
  }; /** Creates a `typeof` expression (e.g., `typeof value`). */
2371
- typeofExpr: (expr: TypeOfExpr) => TypeOfExprTsDsl; /** Creates a variable declaration (`var`). */
2372
- var: (name?: NodeName | undefined) => VarTsDsl;
2371
+ typeofExpr: (expr: any) => TypeOfExprTsDsl; /** Creates a variable declaration (`var`). */
2372
+ var: (name?: any) => VarTsDsl;
2373
2373
  };
2374
2374
  type DollarTsDsl = {
2375
2375
  /**
@@ -2491,33 +2491,29 @@ interface BaseContext$3 extends DollarTsDsl {
2491
2491
  faker: Symbol;
2492
2492
  };
2493
2493
  }
2494
- interface ArrayResolverContext$3 extends BaseContext$3 {
2495
- nodes: {
2496
- items: (ctx: ArrayResolverContext$3) => Expression;
2497
- length: (ctx: ArrayResolverContext$3) => Expression | undefined;
2498
- };
2494
+ interface ArrayResolverContext$3 extends BaseContext$3, Plugin$1.ResolverNodes<{
2495
+ items: (ctx: ArrayResolverContext$3) => Expression;
2496
+ length: (ctx: ArrayResolverContext$3) => Expression | undefined;
2497
+ }> {
2499
2498
  schema: SchemaWithType<'array'>;
2500
2499
  }
2501
- interface NumberResolverContext$3 extends BaseContext$3 {
2502
- nodes: {
2503
- base: (ctx: NumberResolverContext$3) => Expression;
2504
- max: (ctx: NumberResolverContext$3) => Expression | undefined;
2505
- min: (ctx: NumberResolverContext$3) => Expression | undefined;
2506
- };
2500
+ interface NumberResolverContext$3 extends BaseContext$3, Plugin$1.ResolverNodes<{
2501
+ base: (ctx: NumberResolverContext$3) => Expression;
2502
+ max: (ctx: NumberResolverContext$3) => Expression | undefined;
2503
+ min: (ctx: NumberResolverContext$3) => Expression | undefined;
2504
+ }> {
2507
2505
  schema: SchemaWithType<'integer' | 'number'>;
2508
2506
  }
2509
- interface ObjectResolverContext$3 extends BaseContext$3 {
2510
- nodes: {
2511
- properties: (ctx: ObjectResolverContext$3) => Expression;
2512
- };
2507
+ interface ObjectResolverContext$3 extends BaseContext$3, Plugin$1.ResolverNodes<{
2508
+ properties: (ctx: ObjectResolverContext$3) => Expression;
2509
+ }> {
2513
2510
  schema: SchemaWithType<'object'>;
2514
2511
  }
2515
- interface StringResolverContext$3 extends BaseContext$3 {
2516
- nodes: {
2517
- base: (ctx: StringResolverContext$3) => Expression;
2518
- format: (ctx: StringResolverContext$3) => Expression | undefined;
2519
- pattern: (ctx: StringResolverContext$3) => Expression | undefined;
2520
- };
2512
+ interface StringResolverContext$3 extends BaseContext$3, Plugin$1.ResolverNodes<{
2513
+ base: (ctx: StringResolverContext$3) => Expression;
2514
+ format: (ctx: StringResolverContext$3) => Expression | undefined;
2515
+ pattern: (ctx: StringResolverContext$3) => Expression | undefined;
2516
+ }> {
2521
2517
  schema: SchemaWithType<'string'>;
2522
2518
  }
2523
2519
  //#endregion
@@ -2530,6 +2526,13 @@ interface Auth {
2530
2526
  * @default 'header'
2531
2527
  */
2532
2528
  in?: 'header' | 'query' | 'cookie';
2529
+ /**
2530
+ * A unique identifier for the security scheme.
2531
+ *
2532
+ * Defined only when there are multiple security schemes whose `Auth`
2533
+ * shape would otherwise be identical.
2534
+ */
2535
+ key?: string;
2533
2536
  /**
2534
2537
  * Header or query parameter name.
2535
2538
  *
@@ -2810,7 +2813,7 @@ interface ClientOptions$6 {
2810
2813
  throwOnError?: boolean;
2811
2814
  }
2812
2815
  type MethodFn$6 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$3 = 'fields'>(options: Omit<RequestOptions$6<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult$6<TData, TError, ThrowOnError, TResponseStyle>;
2813
- type SseFn$6 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$3 = 'fields'>(options: Omit<RequestOptions$6<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
2816
+ type SseFn$6 = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$3 = 'fields'>(options: Omit<RequestOptions$6<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
2814
2817
  type RequestFn$6 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$3 = 'fields'>(options: Omit<RequestOptions$6<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions$6<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult$6<TData, TError, ThrowOnError, TResponseStyle>;
2815
2818
  type RequestOptionsFn = <T, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$3 = 'fields'>(options: RequestOptions$6<T, TResponseStyle, ThrowOnError>) => HttpRequest<T>;
2816
2819
  type BuildUrlFn$6 = <TData extends {
@@ -2888,7 +2891,7 @@ type RequestResult$5<TData = unknown, TError = unknown, ThrowOnError extends boo
2888
2891
  error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
2889
2892
  })>;
2890
2893
  type MethodFn$5 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$5<TData, ThrowOnError>, 'method'>) => RequestResult$5<TData, TError, ThrowOnError>;
2891
- type SseFn$5 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$5<never, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
2894
+ type SseFn$5 = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$5<never, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
2892
2895
  type RequestFn$5 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$5<TData, ThrowOnError>, 'method'> & Pick<Required<RequestOptions$5<TData, ThrowOnError>>, 'method'>) => RequestResult$5<TData, TError, ThrowOnError>;
2893
2896
  type BuildUrlFn$5 = <TData extends {
2894
2897
  path?: Record<string, unknown>;
@@ -3018,7 +3021,7 @@ interface ClientOptions$4 {
3018
3021
  throwOnError?: boolean;
3019
3022
  }
3020
3023
  type MethodFn$4 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$2 = 'fields'>(options: Omit<RequestOptions$4<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult$4<TData, TError, ThrowOnError, TResponseStyle>;
3021
- type SseFn$4 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$2 = 'fields'>(options: Omit<RequestOptions$4<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
3024
+ type SseFn$4 = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$2 = 'fields'>(options: Omit<RequestOptions$4<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
3022
3025
  type RequestFn$4 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$2 = 'fields'>(options: Omit<RequestOptions$4<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions$4<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult$4<TData, TError, ThrowOnError, TResponseStyle>;
3023
3026
  type BuildUrlFn$4 = <TData extends {
3024
3027
  body?: unknown;
@@ -3138,7 +3141,7 @@ interface ClientOptions$3 {
3138
3141
  throwOnError?: boolean;
3139
3142
  }
3140
3143
  type MethodFn$3 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$3<TData, ThrowOnError>, 'method'>) => RequestResult$3<TData, TError, ThrowOnError>;
3141
- type SseFn$3 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$3<never, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
3144
+ type SseFn$3 = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$3<never, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
3142
3145
  type RequestFn$3 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions$3<TData, ThrowOnError>, 'method'> & Pick<Required<RequestOptions$3<TData, ThrowOnError>>, 'method'>) => RequestResult$3<TData, TError, ThrowOnError>;
3143
3146
  type BuildUrlFn$3 = <TData extends {
3144
3147
  body?: unknown;
@@ -3410,7 +3413,7 @@ interface ClientOptions$1 {
3410
3413
  throwOnError?: boolean;
3411
3414
  }
3412
3415
  type MethodFn$1 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$1 = 'fields'>(options: Omit<RequestOptions$1<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult$1<TData, TError, ThrowOnError, TResponseStyle>;
3413
- type SseFn$1 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$1 = 'fields'>(options: Omit<RequestOptions$1<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
3416
+ type SseFn$1 = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$1 = 'fields'>(options: Omit<RequestOptions$1<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
3414
3417
  type RequestFn$1 = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle$1 = 'fields'>(options: Omit<RequestOptions$1<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions$1<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult$1<TData, TError, ThrowOnError, TResponseStyle>;
3415
3418
  type BuildUrlFn$1 = <TData extends {
3416
3419
  body?: unknown;
@@ -3621,7 +3624,7 @@ interface ClientOptions {
3621
3624
  throwOnError?: boolean;
3622
3625
  }
3623
3626
  type MethodFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
3624
- type SseFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
3627
+ type SseFn = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
3625
3628
  type RequestFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
3626
3629
  type BuildUrlFn = <TData extends {
3627
3630
  body?: unknown;
@@ -3679,7 +3682,7 @@ type PluginClientNames = '@hey-api/client-angular' | '@hey-api/client-axios' | '
3679
3682
  type PluginTransformerNames = '@hey-api/transformers' | 'valibot' | 'zod';
3680
3683
  type PluginValidatorNames = 'arktype' | 'valibot' | 'zod';
3681
3684
  //#endregion
3682
- //#region src/plugins/@hey-api/sdk/examples/types.d.ts
3685
+ //#region src/plugins/@hey-api/sdk/examples.d.ts
3683
3686
  type UserExamplesConfig = Omit<ExampleOptions, 'payload'> & {
3684
3687
  /**
3685
3688
  * Whether this feature is enabled.
@@ -3846,6 +3849,23 @@ interface OperationsConfig {
3846
3849
  strategyDefaultTag: string;
3847
3850
  }
3848
3851
  //#endregion
3852
+ //#region src/plugins/@hey-api/sdk/symbols.d.ts
3853
+ declare function sdkSymbols(plugin: PluginInstance$1): {
3854
+ Client: any;
3855
+ Composable: any;
3856
+ Options: any;
3857
+ RequestResult: any;
3858
+ ServerSentEventsResult: any;
3859
+ TDataShape: any;
3860
+ angular: {
3861
+ Injectable: any;
3862
+ };
3863
+ buildClientParams: any;
3864
+ formDataBodySerializer: any;
3865
+ urlSearchParamsBodySerializer: any;
3866
+ };
3867
+ type SdkSymbols = ReturnType<typeof sdkSymbols>;
3868
+ //#endregion
3849
3869
  //#region src/plugins/@hey-api/sdk/types.d.ts
3850
3870
  type UserConfig$17 = Plugin$1.Name<'@hey-api/sdk'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & {
3851
3871
  /**
@@ -4065,7 +4085,7 @@ type Config$14 = Plugin$1.Name<'@hey-api/sdk'> & Plugin$1.Hooks & Plugin$1.Comme
4065
4085
  */
4066
4086
  response: 'body' | 'response';
4067
4087
  };
4068
- type HeyApiSdkPlugin = DefinePlugin$1<UserConfig$17, Config$14>;
4088
+ type HeyApiSdkPlugin = DefinePlugin$1<UserConfig$17, Config$14, never, SdkSymbols>;
4069
4089
  //#endregion
4070
4090
  //#region src/plugins/@hey-api/transformers/types.d.ts
4071
4091
  interface BaseTransformer extends DollarTsDsl {
@@ -4089,11 +4109,18 @@ type UserConfig$16 = Plugin$1.Name<'@hey-api/transformers'> & Plugin$1.Hooks & P
4089
4109
  */
4090
4110
  bigInt?: boolean;
4091
4111
  /**
4092
- * Convert date strings into Date objects?
4112
+ * Convert date strings into date objects?
4113
+ *
4114
+ * - `true` (default): use the built-in `Date` object.
4115
+ * - `'date'`: explicit alias for the default `Date` behavior.
4116
+ * - `'temporal'`: use the [Temporal API](https://tc39.es/proposal-temporal/docs/),
4117
+ * imported from `temporal-polyfill`. `date-time` formats become
4118
+ * `Temporal.Instant` and `date` formats become `Temporal.PlainDate`.
4119
+ * - `false`: do not transform date strings.
4093
4120
  *
4094
4121
  * @default true
4095
4122
  */
4096
- dates?: boolean;
4123
+ dates?: boolean | 'date' | 'temporal';
4097
4124
  /**
4098
4125
  * Custom transforms to apply to the generated code.
4099
4126
  */
@@ -4111,11 +4138,18 @@ type Config$13 = Plugin$1.Name<'@hey-api/transformers'> & Plugin$1.Hooks & Plugi
4111
4138
  */
4112
4139
  bigInt: boolean;
4113
4140
  /**
4114
- * Convert date strings into Date objects?
4141
+ * Convert date strings into date objects?
4142
+ *
4143
+ * - `true` (default): use the built-in `Date` object.
4144
+ * - `'date'`: explicit alias for the default `Date` behavior.
4145
+ * - `'temporal'`: use the [Temporal API](https://tc39.es/proposal-temporal/docs/),
4146
+ * imported from `temporal-polyfill`. `date-time` formats become
4147
+ * `Temporal.Instant` and `date` formats become `Temporal.PlainDate`.
4148
+ * - `false`: do not transform date strings.
4115
4149
  *
4116
4150
  * @default true
4117
4151
  */
4118
- dates: boolean;
4152
+ dates: boolean | 'date' | 'temporal';
4119
4153
  /**
4120
4154
  * Custom transforms to apply to the generated code.
4121
4155
  */
@@ -4274,79 +4308,59 @@ type HeyApiTypeScriptResolvers = Plugin$1.Resolvers<{
4274
4308
  */
4275
4309
  void?: (ctx: VoidResolverContext$2) => Type | undefined;
4276
4310
  }>;
4277
- interface BaseContext$2 extends DollarTsDsl {
4278
- /** The plugin instance. */
4279
- plugin: HeyApiTypeScriptPlugin['Instance'];
4280
- }
4281
- interface ArrayResolverContext$2 extends BaseContext$2 {
4311
+ interface BaseContext$2 extends DollarTsDsl, SchemaVisitorContext<HeyApiTypeScriptPlugin['Instance']> {}
4312
+ interface ArrayResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4282
4313
  /**
4283
- * Nodes used to build different parts of the result.
4314
+ * Returns the base array type expression.
4284
4315
  */
4285
- nodes: {
4286
- /**
4287
- * Returns the base array type expression.
4288
- */
4289
- base: (ctx: ArrayResolverContext$2) => Type;
4290
- };
4316
+ base: (ctx: ArrayResolverContext$2) => Type;
4317
+ }> {
4291
4318
  schema: SchemaWithType<'array'>;
4292
4319
  walk: Walker<TypeScriptResult, HeyApiTypeScriptPlugin['Instance']>;
4293
- walkerCtx: SchemaVisitorContext<HeyApiTypeScriptPlugin['Instance']>;
4294
4320
  }
4295
- interface BooleanResolverContext$2 extends BaseContext$2 {
4321
+ interface BooleanResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4296
4322
  /**
4297
- * Nodes used to build different parts of the result.
4323
+ * Returns the base boolean type expression.
4298
4324
  */
4299
- nodes: {
4300
- /**
4301
- * Returns the base boolean type expression.
4302
- */
4303
- base: (ctx: BooleanResolverContext$2) => Type;
4304
- /**
4305
- * Returns the literal type for const values.
4306
- */
4307
- const: (ctx: BooleanResolverContext$2) => Type | undefined;
4308
- };
4325
+ base: (ctx: BooleanResolverContext$2) => Type;
4326
+ /**
4327
+ * Returns the literal type for const values.
4328
+ */
4329
+ const: (ctx: BooleanResolverContext$2) => Type | undefined;
4330
+ }> {
4309
4331
  schema: SchemaWithType<'boolean'>;
4310
4332
  }
4311
- interface EnumResolverContext$2 extends BaseContext$2 {
4333
+ interface EnumResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4334
+ /**
4335
+ * Returns the base enum type expression.
4336
+ */
4337
+ base: (ctx: EnumResolverContext$2) => Type;
4312
4338
  /**
4313
- * Nodes used to build different parts of the result.
4339
+ * Returns parsed enum items with metadata about the enum members.
4314
4340
  */
4315
- nodes: {
4341
+ items: (ctx: EnumResolverContext$2) => {
4316
4342
  /**
4317
- * Returns the base enum type expression.
4343
+ * String literal values for use with union types.
4318
4344
  */
4319
- base: (ctx: EnumResolverContext$2) => Type;
4345
+ enumMembers: Array<ReturnType<typeof $.type.literal>>;
4320
4346
  /**
4321
- * Returns parsed enum items with metadata about the enum members.
4347
+ * Whether the enum includes a null value.
4322
4348
  */
4323
- items: (ctx: EnumResolverContext$2) => {
4324
- /**
4325
- * String literal values for use with union types.
4326
- */
4327
- enumMembers: Array<ReturnType<typeof $.type.literal>>;
4328
- /**
4329
- * Whether the enum includes a null value.
4330
- */
4331
- isNullable: boolean;
4332
- };
4349
+ isNullable: boolean;
4333
4350
  };
4351
+ }> {
4334
4352
  schema: SchemaWithType<'enum'>;
4335
4353
  }
4336
- interface IntersectionResolverContext$2 extends BaseContext$2 {
4354
+ interface IntersectionResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4337
4355
  /**
4338
- * The child results from walking intersection members.
4356
+ * Returns the base intersection type expression.
4339
4357
  */
4340
- childResults: ReadonlyArray<TypeScriptResult>;
4358
+ base: (ctx: IntersectionResolverContext$2) => Type;
4359
+ }> {
4341
4360
  /**
4342
- * Nodes used to build different parts of the result.
4361
+ * The child results from walking intersection members.
4343
4362
  */
4344
- nodes: {
4345
- /**
4346
- * Returns the base intersection type expression.
4347
- */
4348
- base: (ctx: IntersectionResolverContext$2) => Type;
4349
- };
4363
+ childResults: ReadonlyArray<TypeScriptResult>;
4350
4364
  /**
4351
4365
  * The parent schema containing the intersection.
4352
4366
  */
@@ -4356,116 +4370,86 @@ interface IntersectionResolverContext$2 extends BaseContext$2 {
4356
4370
  */
4357
4371
  schemas: ReadonlyArray<IR$1.SchemaObject>;
4358
4372
  }
4359
- interface NeverResolverContext$2 extends BaseContext$2 {
4373
+ interface NeverResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4360
4374
  /**
4361
- * Nodes used to build different parts of the result.
4375
+ * Returns the base never type expression.
4362
4376
  */
4363
- nodes: {
4364
- /**
4365
- * Returns the base never type expression.
4366
- */
4367
- base: (ctx: NeverResolverContext$2) => Type;
4368
- };
4377
+ base: (ctx: NeverResolverContext$2) => Type;
4378
+ }> {
4369
4379
  schema: SchemaWithType<'never'>;
4370
4380
  }
4371
- interface NullResolverContext$2 extends BaseContext$2 {
4381
+ interface NullResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4372
4382
  /**
4373
- * Nodes used to build different parts of the result.
4383
+ * Returns the base null type expression.
4374
4384
  */
4375
- nodes: {
4376
- /**
4377
- * Returns the base null type expression.
4378
- */
4379
- base: (ctx: NullResolverContext$2) => Type;
4380
- };
4385
+ base: (ctx: NullResolverContext$2) => Type;
4386
+ }> {
4381
4387
  schema: SchemaWithType<'null'>;
4382
4388
  }
4383
- interface NumberResolverContext$2 extends BaseContext$2 {
4389
+ interface NumberResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4384
4390
  /**
4385
- * Nodes used to build different parts of the result.
4391
+ * Returns the base number type expression.
4386
4392
  */
4387
- nodes: {
4388
- /**
4389
- * Returns the base number type expression.
4390
- */
4391
- base: (ctx: NumberResolverContext$2) => Type;
4392
- /**
4393
- * Returns the literal type for const values.
4394
- */
4395
- const: (ctx: NumberResolverContext$2) => Type | undefined;
4396
- };
4393
+ base: (ctx: NumberResolverContext$2) => Type;
4394
+ /**
4395
+ * Returns the literal type for const values.
4396
+ */
4397
+ const: (ctx: NumberResolverContext$2) => Type | undefined;
4398
+ }> {
4397
4399
  schema: SchemaWithType<'integer' | 'number'>;
4398
4400
  }
4399
- interface ObjectResolverContext$2 extends BaseContext$2 {
4401
+ interface ObjectResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4400
4402
  /**
4401
- * Nodes used to build different parts of the result.
4403
+ * Returns the base object type expression.
4402
4404
  */
4403
- nodes: {
4404
- /**
4405
- * Returns the base object type expression.
4406
- */
4407
- base: (ctx: ObjectResolverContext$2) => Type;
4408
- /**
4409
- * Returns the shape (properties) of the object type.
4410
- */
4411
- shape: (ctx: ObjectResolverContext$2) => ReturnType<typeof $.type.object>;
4412
- };
4405
+ base: (ctx: ObjectResolverContext$2) => Type;
4406
+ /**
4407
+ * Returns the shape (properties) of the object type.
4408
+ */
4409
+ shape: (ctx: ObjectResolverContext$2) => ReturnType<typeof $.type.object>;
4410
+ }> {
4413
4411
  schema: SchemaWithType<'object'>;
4414
4412
  walk: Walker<TypeScriptResult, HeyApiTypeScriptPlugin['Instance']>;
4415
- walkerCtx: SchemaVisitorContext<HeyApiTypeScriptPlugin['Instance']>;
4416
4413
  }
4417
- interface StringResolverContext$2 extends BaseContext$2 {
4414
+ interface StringResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4418
4415
  /**
4419
- * Nodes used to build different parts of the result.
4416
+ * Returns the base string type expression.
4420
4417
  */
4421
- nodes: {
4422
- /**
4423
- * Returns the base string type expression.
4424
- */
4425
- base: (ctx: StringResolverContext$2) => Type;
4426
- /**
4427
- * Returns the literal type for const values.
4428
- */
4429
- const: (ctx: StringResolverContext$2) => Type | undefined;
4430
- /**
4431
- * Returns the format-specific type expression.
4432
- */
4433
- format: (ctx: StringResolverContext$2) => Type | undefined;
4434
- };
4418
+ base: (ctx: StringResolverContext$2) => Type;
4419
+ /**
4420
+ * Returns the literal type for const values.
4421
+ */
4422
+ const: (ctx: StringResolverContext$2) => Type | undefined;
4423
+ /**
4424
+ * Returns the format-specific type expression.
4425
+ */
4426
+ format: (ctx: StringResolverContext$2) => Type | undefined;
4427
+ }> {
4435
4428
  schema: SchemaWithType<'string'>;
4436
4429
  }
4437
- interface TupleResolverContext$2 extends BaseContext$2 {
4430
+ interface TupleResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4438
4431
  /**
4439
- * Nodes used to build different parts of the result.
4432
+ * Returns the base tuple type expression.
4440
4433
  */
4441
- nodes: {
4442
- /**
4443
- * Returns the base tuple type expression.
4444
- */
4445
- base: (ctx: TupleResolverContext$2) => Type;
4446
- /**
4447
- * Returns the literal type for const tuple values.
4448
- */
4449
- const: (ctx: TupleResolverContext$2) => Type | undefined;
4450
- };
4434
+ base: (ctx: TupleResolverContext$2) => Type;
4435
+ /**
4436
+ * Returns the literal type for const tuple values.
4437
+ */
4438
+ const: (ctx: TupleResolverContext$2) => Type | undefined;
4439
+ }> {
4451
4440
  schema: SchemaWithType<'tuple'>;
4452
4441
  walk: Walker<TypeScriptResult, HeyApiTypeScriptPlugin['Instance']>;
4453
- walkerCtx: SchemaVisitorContext<HeyApiTypeScriptPlugin['Instance']>;
4454
4442
  }
4455
- interface UnionResolverContext$2 extends BaseContext$2 {
4443
+ interface UnionResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4456
4444
  /**
4457
- * The child results from walking union members.
4445
+ * Returns the base union type expression.
4458
4446
  */
4459
- childResults: ReadonlyArray<TypeScriptResult>;
4447
+ base: (ctx: UnionResolverContext$2) => Type;
4448
+ }> {
4460
4449
  /**
4461
- * Nodes used to build different parts of the result.
4450
+ * The child results from walking union members.
4462
4451
  */
4463
- nodes: {
4464
- /**
4465
- * Returns the base union type expression.
4466
- */
4467
- base: (ctx: UnionResolverContext$2) => Type;
4468
- };
4452
+ childResults: ReadonlyArray<TypeScriptResult>;
4469
4453
  /**
4470
4454
  * The parent schema containing the union.
4471
4455
  */
@@ -4475,40 +4459,28 @@ interface UnionResolverContext$2 extends BaseContext$2 {
4475
4459
  */
4476
4460
  schemas: ReadonlyArray<IR$1.SchemaObject>;
4477
4461
  }
4478
- interface UndefinedResolverContext$2 extends BaseContext$2 {
4462
+ interface UndefinedResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4479
4463
  /**
4480
- * Nodes used to build different parts of the result.
4464
+ * Returns the base undefined type expression.
4481
4465
  */
4482
- nodes: {
4483
- /**
4484
- * Returns the base undefined type expression.
4485
- */
4486
- base: (ctx: UndefinedResolverContext$2) => Type;
4487
- };
4466
+ base: (ctx: UndefinedResolverContext$2) => Type;
4467
+ }> {
4488
4468
  schema: SchemaWithType<'undefined'>;
4489
4469
  }
4490
- interface UnknownResolverContext$2 extends BaseContext$2 {
4470
+ interface UnknownResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4491
4471
  /**
4492
- * Nodes used to build different parts of the result.
4472
+ * Returns the base unknown type expression.
4493
4473
  */
4494
- nodes: {
4495
- /**
4496
- * Returns the base unknown type expression.
4497
- */
4498
- base: (ctx: UnknownResolverContext$2) => Type;
4499
- };
4474
+ base: (ctx: UnknownResolverContext$2) => Type;
4475
+ }> {
4500
4476
  schema: SchemaWithType<'unknown'>;
4501
4477
  }
4502
- interface VoidResolverContext$2 extends BaseContext$2 {
4478
+ interface VoidResolverContext$2 extends BaseContext$2, Plugin$1.ResolverNodes<{
4503
4479
  /**
4504
- * Nodes used to build different parts of the result.
4480
+ * Returns the base void type expression.
4505
4481
  */
4506
- nodes: {
4507
- /**
4508
- * Returns the base void type expression.
4509
- */
4510
- base: (ctx: VoidResolverContext$2) => Type;
4511
- };
4482
+ base: (ctx: VoidResolverContext$2) => Type;
4483
+ }> {
4512
4484
  schema: SchemaWithType<'void'>;
4513
4485
  }
4514
4486
  //#endregion
@@ -5058,6 +5030,23 @@ type Config$11 = Plugin$1.Name<'@pinia/colada'> & Plugin$1.Hooks & Plugin$1.Comm
5058
5030
  };
5059
5031
  type PiniaColadaPlugin = DefinePlugin$1<UserConfig$14, Config$11>;
5060
5032
  //#endregion
5033
+ //#region src/plugins/@tanstack/query-core/symbols.d.ts
5034
+ declare function tanStackQuerySymbols(plugin: PluginInstance$1): {
5035
+ axios: {
5036
+ AxiosError: any;
5037
+ };
5038
+ DefaultError: any;
5039
+ InfiniteData: any;
5040
+ MutationOptions: any;
5041
+ QueryClient: any;
5042
+ infiniteQueryOptions: any;
5043
+ queryOptions: any;
5044
+ useMutation: any;
5045
+ useQuery: any;
5046
+ useQueryClient: any;
5047
+ };
5048
+ type TanStackQuerySymbols = ReturnType<typeof tanStackQuerySymbols>;
5049
+ //#endregion
5061
5050
  //#region src/plugins/@tanstack/angular-query-experimental/types.d.ts
5062
5051
  type UserConfig$13 = Plugin$1.Name<'@tanstack/angular-query-experimental'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & {
5063
5052
  /**
@@ -5066,6 +5055,40 @@ type UserConfig$13 = Plugin$1.Name<'@tanstack/angular-query-experimental'> & Plu
5066
5055
  * @default 'camelCase'
5067
5056
  */
5068
5057
  case?: Casing;
5058
+ /**
5059
+ * Configuration for generated `getQueryData` helpers.
5060
+ *
5061
+ * When enabled, generates a helper per query operation that wraps
5062
+ * `queryClient.getQueryData()` with the correct query key and response
5063
+ * type already wired up.
5064
+ *
5065
+ * Can be:
5066
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
5067
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
5068
+ * - `object`: Full configuration object
5069
+ *
5070
+ * @default false
5071
+ */
5072
+ getQueryData?: boolean | NameTransformer | {
5073
+ /**
5074
+ * Casing convention for generated names.
5075
+ *
5076
+ * @default 'camelCase'
5077
+ */
5078
+ case?: Casing;
5079
+ /**
5080
+ * Whether this feature is enabled.
5081
+ *
5082
+ * @default true
5083
+ */
5084
+ enabled?: boolean;
5085
+ /**
5086
+ * Naming pattern for generated names.
5087
+ *
5088
+ * @default '{{name}}GetQueryData'
5089
+ */
5090
+ name?: NameTransformer;
5091
+ };
5069
5092
  /**
5070
5093
  * Configuration for generated infinite query key helpers.
5071
5094
  *
@@ -5398,7 +5421,8 @@ type UserConfig$13 = Plugin$1.Name<'@tanstack/angular-query-experimental'> & Plu
5398
5421
  };
5399
5422
  };
5400
5423
  type Config$10 = Plugin$1.Name<'@tanstack/angular-query-experimental'> & Plugin$1.Hooks & Plugin$1.Comments & Plugin$1.Exports & {
5401
- /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated infinite query key helpers. */
5424
+ /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated `getQueryData` helpers. */
5425
+ getQueryData: NamingOptions & FeatureToggle; /** Resolved configuration for generated infinite query key helpers. */
5402
5426
  infiniteQueryKeys: NamingOptions & FeatureToggle & {
5403
5427
  /** Whether to include operation tags in infinite query keys. */tags: boolean;
5404
5428
  }; /** Resolved configuration for generated infinite query options helpers. */
@@ -5421,7 +5445,7 @@ type Config$10 = Plugin$1.Name<'@tanstack/angular-query-experimental'> & Plugin$
5421
5445
  }; /** Resolved configuration for generated `setQueryData` helpers. */
5422
5446
  setQueryData: NamingOptions & FeatureToggle;
5423
5447
  };
5424
- type TanStackAngularQueryPlugin = DefinePlugin$1<UserConfig$13, Config$10>;
5448
+ type TanStackAngularQueryPlugin = DefinePlugin$1<UserConfig$13, Config$10, never, TanStackQuerySymbols>;
5425
5449
  //#endregion
5426
5450
  //#region src/plugins/@tanstack/preact-query/types.d.ts
5427
5451
  type UserConfig$12 = Plugin$1.Name<'@tanstack/preact-query'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & {
@@ -5431,6 +5455,40 @@ type UserConfig$12 = Plugin$1.Name<'@tanstack/preact-query'> & Plugin$1.Hooks &
5431
5455
  * @default 'camelCase'
5432
5456
  */
5433
5457
  case?: Casing;
5458
+ /**
5459
+ * Configuration for generated `getQueryData` helpers.
5460
+ *
5461
+ * When enabled, generates a helper per query operation that wraps
5462
+ * `queryClient.getQueryData()` with the correct query key and response
5463
+ * type already wired up.
5464
+ *
5465
+ * Can be:
5466
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
5467
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
5468
+ * - `object`: Full configuration object
5469
+ *
5470
+ * @default false
5471
+ */
5472
+ getQueryData?: boolean | NameTransformer | {
5473
+ /**
5474
+ * Casing convention for generated names.
5475
+ *
5476
+ * @default 'camelCase'
5477
+ */
5478
+ case?: Casing;
5479
+ /**
5480
+ * Whether this feature is enabled.
5481
+ *
5482
+ * @default true
5483
+ */
5484
+ enabled?: boolean;
5485
+ /**
5486
+ * Naming pattern for generated names.
5487
+ *
5488
+ * @default '{{name}}GetQueryData'
5489
+ */
5490
+ name?: NameTransformer;
5491
+ };
5434
5492
  /**
5435
5493
  * Configuration for generated infinite query key helpers.
5436
5494
  *
@@ -5769,6 +5827,39 @@ type UserConfig$12 = Plugin$1.Name<'@tanstack/preact-query'> & Plugin$1.Hooks &
5769
5827
  */
5770
5828
  name?: NameTransformer;
5771
5829
  };
5830
+ /**
5831
+ * Configuration for generated Preact Query hook variant of `getQueryData`.
5832
+ *
5833
+ * When enabled, generates a hook per query operation that calls
5834
+ * `useQueryClient()` internally and returns a typed getter function.
5835
+ *
5836
+ * Can be:
5837
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
5838
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
5839
+ * - `object`: Full configuration object
5840
+ *
5841
+ * @default false
5842
+ */
5843
+ useGetQueryData?: boolean | NameTransformer | {
5844
+ /**
5845
+ * Casing convention for generated names.
5846
+ *
5847
+ * @default 'camelCase'
5848
+ */
5849
+ case?: Casing;
5850
+ /**
5851
+ * Whether this feature is enabled.
5852
+ *
5853
+ * @default true
5854
+ */
5855
+ enabled?: boolean;
5856
+ /**
5857
+ * Naming pattern for generated names.
5858
+ *
5859
+ * @default 'use{{name}}GetQueryData'
5860
+ */
5861
+ name?: NameTransformer;
5862
+ };
5772
5863
  /**
5773
5864
  * Configuration for generated `useMutation()` function helpers.
5774
5865
  *
@@ -5872,7 +5963,8 @@ type UserConfig$12 = Plugin$1.Name<'@tanstack/preact-query'> & Plugin$1.Hooks &
5872
5963
  };
5873
5964
  };
5874
5965
  type Config$9 = Plugin$1.Name<'@tanstack/preact-query'> & Plugin$1.Hooks & Plugin$1.Comments & Plugin$1.Exports & {
5875
- /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated infinite query key helpers. */
5966
+ /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated `getQueryData` helpers. */
5967
+ getQueryData: NamingOptions & FeatureToggle; /** Resolved configuration for generated infinite query key helpers. */
5876
5968
  infiniteQueryKeys: NamingOptions & FeatureToggle & {
5877
5969
  /** Whether to include operation tags in infinite query keys. */tags: boolean;
5878
5970
  }; /** Resolved configuration for generated infinite query options helpers. */
@@ -5893,12 +5985,13 @@ type Config$9 = Plugin$1.Name<'@tanstack/preact-query'> & Plugin$1.Hooks & Plugi
5893
5985
  /** Whether to export generated symbols. */exported: boolean; /** Custom function to generate metadata for the operation. */
5894
5986
  meta: (operation: IR$1.OperationObject) => Record<string, unknown>;
5895
5987
  }; /** Resolved configuration for generated `setQueryData` helpers. */
5896
- setQueryData: NamingOptions & FeatureToggle; /** Configuration for generated `useMutation()` function helpers. */
5988
+ setQueryData: NamingOptions & FeatureToggle; /** Configuration for generated Preact Query hook variant of `getQueryData`. */
5989
+ useGetQueryData: NamingOptions & FeatureToggle; /** Configuration for generated `useMutation()` function helpers. */
5897
5990
  useMutation: NamingOptions & FeatureToggle; /** Configuration for generated `useQuery()` function helpers. */
5898
5991
  useQuery: NamingOptions & FeatureToggle; /** Configuration for generated Preact Query hook variant of `setQueryData`. */
5899
5992
  useSetQueryData: NamingOptions & FeatureToggle;
5900
5993
  };
5901
- type TanStackPreactQueryPlugin = DefinePlugin$1<UserConfig$12, Config$9>;
5994
+ type TanStackPreactQueryPlugin = DefinePlugin$1<UserConfig$12, Config$9, never, TanStackQuerySymbols>;
5902
5995
  //#endregion
5903
5996
  //#region src/plugins/@tanstack/react-query/types.d.ts
5904
5997
  type UserConfig$11 = Plugin$1.Name<'@tanstack/react-query'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & {
@@ -5909,18 +6002,20 @@ type UserConfig$11 = Plugin$1.Name<'@tanstack/react-query'> & Plugin$1.Hooks & P
5909
6002
  */
5910
6003
  case?: Casing;
5911
6004
  /**
5912
- * Configuration for generated infinite query key helpers.
6005
+ * Configuration for generated `getQueryData` helpers.
5913
6006
  *
5914
- * See {@link https://tanstack.com/query/v5/docs/framework/react/reference/infiniteQueryOptions infiniteQueryOptions}
6007
+ * When enabled, generates a helper per query operation that wraps
6008
+ * `queryClient.getQueryData()` with the correct query key and response
6009
+ * type already wired up.
5915
6010
  *
5916
6011
  * Can be:
5917
6012
  * - `boolean`: Shorthand for `{ enabled: boolean }`
5918
6013
  * - `string` or `function`: Shorthand for `{ name: string | function }`
5919
6014
  * - `object`: Full configuration object
5920
6015
  *
5921
- * @default true
6016
+ * @default false
5922
6017
  */
5923
- infiniteQueryKeys?: boolean | NameTransformer | {
6018
+ getQueryData?: boolean | NameTransformer | {
5924
6019
  /**
5925
6020
  * Casing convention for generated names.
5926
6021
  *
@@ -5936,15 +6031,47 @@ type UserConfig$11 = Plugin$1.Name<'@tanstack/react-query'> & Plugin$1.Hooks & P
5936
6031
  /**
5937
6032
  * Naming pattern for generated names.
5938
6033
  *
5939
- * See {@link https://tanstack.com/query/v5/docs/framework/react/reference/infiniteQueryOptions infiniteQueryOptions}
5940
- *
5941
- * @default '{{name}}InfiniteQueryKey'
6034
+ * @default '{{name}}GetQueryData'
5942
6035
  */
5943
6036
  name?: NameTransformer;
5944
- /**
5945
- * Whether to include operation tags in infinite query keys.
5946
- * This will make query keys larger but provides better cache invalidation capabilities.
5947
- *
6037
+ };
6038
+ /**
6039
+ * Configuration for generated infinite query key helpers.
6040
+ *
6041
+ * See {@link https://tanstack.com/query/v5/docs/framework/react/reference/infiniteQueryOptions infiniteQueryOptions}
6042
+ *
6043
+ * Can be:
6044
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
6045
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
6046
+ * - `object`: Full configuration object
6047
+ *
6048
+ * @default true
6049
+ */
6050
+ infiniteQueryKeys?: boolean | NameTransformer | {
6051
+ /**
6052
+ * Casing convention for generated names.
6053
+ *
6054
+ * @default 'camelCase'
6055
+ */
6056
+ case?: Casing;
6057
+ /**
6058
+ * Whether this feature is enabled.
6059
+ *
6060
+ * @default true
6061
+ */
6062
+ enabled?: boolean;
6063
+ /**
6064
+ * Naming pattern for generated names.
6065
+ *
6066
+ * See {@link https://tanstack.com/query/v5/docs/framework/react/reference/infiniteQueryOptions infiniteQueryOptions}
6067
+ *
6068
+ * @default '{{name}}InfiniteQueryKey'
6069
+ */
6070
+ name?: NameTransformer;
6071
+ /**
6072
+ * Whether to include operation tags in infinite query keys.
6073
+ * This will make query keys larger but provides better cache invalidation capabilities.
6074
+ *
5948
6075
  * @default false
5949
6076
  */
5950
6077
  tags?: boolean;
@@ -6246,6 +6373,39 @@ type UserConfig$11 = Plugin$1.Name<'@tanstack/react-query'> & Plugin$1.Hooks & P
6246
6373
  */
6247
6374
  name?: NameTransformer;
6248
6375
  };
6376
+ /**
6377
+ * Configuration for generated React Query hook variant of `getQueryData`.
6378
+ *
6379
+ * When enabled, generates a hook per query operation that calls
6380
+ * `useQueryClient()` internally and returns a typed getter function.
6381
+ *
6382
+ * Can be:
6383
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
6384
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
6385
+ * - `object`: Full configuration object
6386
+ *
6387
+ * @default false
6388
+ */
6389
+ useGetQueryData?: boolean | NameTransformer | {
6390
+ /**
6391
+ * Casing convention for generated names.
6392
+ *
6393
+ * @default 'camelCase'
6394
+ */
6395
+ case?: Casing;
6396
+ /**
6397
+ * Whether this feature is enabled.
6398
+ *
6399
+ * @default true
6400
+ */
6401
+ enabled?: boolean;
6402
+ /**
6403
+ * Naming pattern for generated names.
6404
+ *
6405
+ * @default 'use{{name}}GetQueryData'
6406
+ */
6407
+ name?: NameTransformer;
6408
+ };
6249
6409
  /**
6250
6410
  * Configuration for generated `useMutation()` function helpers.
6251
6411
  *
@@ -6349,7 +6509,8 @@ type UserConfig$11 = Plugin$1.Name<'@tanstack/react-query'> & Plugin$1.Hooks & P
6349
6509
  };
6350
6510
  };
6351
6511
  type Config$8 = Plugin$1.Name<'@tanstack/react-query'> & Plugin$1.Hooks & Plugin$1.Comments & Plugin$1.Exports & {
6352
- /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated infinite query key helpers. */
6512
+ /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated `getQueryData` helpers. */
6513
+ getQueryData: NamingOptions & FeatureToggle; /** Resolved configuration for generated infinite query key helpers. */
6353
6514
  infiniteQueryKeys: NamingOptions & FeatureToggle & {
6354
6515
  /** Whether to include operation tags in infinite query keys. */tags: boolean;
6355
6516
  }; /** Resolved configuration for generated infinite query options helpers. */
@@ -6370,12 +6531,13 @@ type Config$8 = Plugin$1.Name<'@tanstack/react-query'> & Plugin$1.Hooks & Plugin
6370
6531
  /** Whether to export generated symbols. */exported: boolean; /** Custom function to generate metadata for the operation. */
6371
6532
  meta: (operation: IR$1.OperationObject) => Record<string, unknown>;
6372
6533
  }; /** Resolved configuration for generated `setQueryData` helpers. */
6373
- setQueryData: NamingOptions & FeatureToggle; /** Configuration for generated `useMutation()` function helpers. */
6534
+ setQueryData: NamingOptions & FeatureToggle; /** Configuration for generated React Query hook variant of `getQueryData`. */
6535
+ useGetQueryData: NamingOptions & FeatureToggle; /** Configuration for generated `useMutation()` function helpers. */
6374
6536
  useMutation: NamingOptions & FeatureToggle; /** Configuration for generated `useQuery()` function helpers. */
6375
6537
  useQuery: NamingOptions & FeatureToggle; /** Configuration for generated React Query hook variant of `setQueryData`. */
6376
6538
  useSetQueryData: NamingOptions & FeatureToggle;
6377
6539
  };
6378
- type TanStackReactQueryPlugin = DefinePlugin$1<UserConfig$11, Config$8>;
6540
+ type TanStackReactQueryPlugin = DefinePlugin$1<UserConfig$11, Config$8, never, TanStackQuerySymbols>;
6379
6541
  //#endregion
6380
6542
  //#region src/plugins/@tanstack/solid-query/types.d.ts
6381
6543
  type UserConfig$10 = Plugin$1.Name<'@tanstack/solid-query'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & {
@@ -6385,6 +6547,40 @@ type UserConfig$10 = Plugin$1.Name<'@tanstack/solid-query'> & Plugin$1.Hooks & P
6385
6547
  * @default 'camelCase'
6386
6548
  */
6387
6549
  case?: Casing;
6550
+ /**
6551
+ * Configuration for generated `getQueryData` helpers.
6552
+ *
6553
+ * When enabled, generates a helper per query operation that wraps
6554
+ * `queryClient.getQueryData()` with the correct query key and response
6555
+ * type already wired up.
6556
+ *
6557
+ * Can be:
6558
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
6559
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
6560
+ * - `object`: Full configuration object
6561
+ *
6562
+ * @default false
6563
+ */
6564
+ getQueryData?: boolean | NameTransformer | {
6565
+ /**
6566
+ * Casing convention for generated names.
6567
+ *
6568
+ * @default 'camelCase'
6569
+ */
6570
+ case?: Casing;
6571
+ /**
6572
+ * Whether this feature is enabled.
6573
+ *
6574
+ * @default true
6575
+ */
6576
+ enabled?: boolean;
6577
+ /**
6578
+ * Naming pattern for generated names.
6579
+ *
6580
+ * @default '{{name}}GetQueryData'
6581
+ */
6582
+ name?: NameTransformer;
6583
+ };
6388
6584
  /**
6389
6585
  * Configuration for generated infinite query key helpers.
6390
6586
  *
@@ -6718,7 +6914,8 @@ type UserConfig$10 = Plugin$1.Name<'@tanstack/solid-query'> & Plugin$1.Hooks & P
6718
6914
  };
6719
6915
  };
6720
6916
  type Config$7 = Plugin$1.Name<'@tanstack/solid-query'> & Plugin$1.Hooks & Plugin$1.Comments & Plugin$1.Exports & {
6721
- /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated infinite query key helpers. */
6917
+ /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated `getQueryData` helpers. */
6918
+ getQueryData: NamingOptions & FeatureToggle; /** Resolved configuration for generated infinite query key helpers. */
6722
6919
  infiniteQueryKeys: NamingOptions & FeatureToggle & {
6723
6920
  /** Whether to include operation tags in infinite query keys. */tags: boolean;
6724
6921
  }; /** Resolved configuration for generated infinite query options helpers. */
@@ -6741,7 +6938,7 @@ type Config$7 = Plugin$1.Name<'@tanstack/solid-query'> & Plugin$1.Hooks & Plugin
6741
6938
  }; /** Resolved configuration for generated `setQueryData` helpers. */
6742
6939
  setQueryData: NamingOptions & FeatureToggle;
6743
6940
  };
6744
- type TanStackSolidQueryPlugin = DefinePlugin$1<UserConfig$10, Config$7>;
6941
+ type TanStackSolidQueryPlugin = DefinePlugin$1<UserConfig$10, Config$7, never, TanStackQuerySymbols>;
6745
6942
  //#endregion
6746
6943
  //#region src/plugins/@tanstack/svelte-query/types.d.ts
6747
6944
  type UserConfig$9 = Plugin$1.Name<'@tanstack/svelte-query'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & {
@@ -6751,6 +6948,40 @@ type UserConfig$9 = Plugin$1.Name<'@tanstack/svelte-query'> & Plugin$1.Hooks & P
6751
6948
  * @default 'camelCase'
6752
6949
  */
6753
6950
  case?: Casing;
6951
+ /**
6952
+ * Configuration for generated `getQueryData` helpers.
6953
+ *
6954
+ * When enabled, generates a helper per query operation that wraps
6955
+ * `queryClient.getQueryData()` with the correct query key and response
6956
+ * type already wired up.
6957
+ *
6958
+ * Can be:
6959
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
6960
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
6961
+ * - `object`: Full configuration object
6962
+ *
6963
+ * @default false
6964
+ */
6965
+ getQueryData?: boolean | NameTransformer | {
6966
+ /**
6967
+ * Casing convention for generated names.
6968
+ *
6969
+ * @default 'camelCase'
6970
+ */
6971
+ case?: Casing;
6972
+ /**
6973
+ * Whether this feature is enabled.
6974
+ *
6975
+ * @default true
6976
+ */
6977
+ enabled?: boolean;
6978
+ /**
6979
+ * Naming pattern for generated names.
6980
+ *
6981
+ * @default '{{name}}GetQueryData'
6982
+ */
6983
+ name?: NameTransformer;
6984
+ };
6754
6985
  /**
6755
6986
  * Configuration for generated infinite query key helpers.
6756
6987
  *
@@ -7083,7 +7314,8 @@ type UserConfig$9 = Plugin$1.Name<'@tanstack/svelte-query'> & Plugin$1.Hooks & P
7083
7314
  };
7084
7315
  };
7085
7316
  type Config$6 = Plugin$1.Name<'@tanstack/svelte-query'> & Plugin$1.Hooks & Plugin$1.Comments & Plugin$1.Exports & {
7086
- /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated infinite query key helpers. */
7317
+ /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated `getQueryData` helpers. */
7318
+ getQueryData: NamingOptions & FeatureToggle; /** Resolved configuration for generated infinite query key helpers. */
7087
7319
  infiniteQueryKeys: NamingOptions & FeatureToggle & {
7088
7320
  /** Whether to include operation tags in infinite query keys. */tags: boolean;
7089
7321
  }; /** Resolved configuration for generated infinite query options helpers. */
@@ -7106,7 +7338,7 @@ type Config$6 = Plugin$1.Name<'@tanstack/svelte-query'> & Plugin$1.Hooks & Plugi
7106
7338
  }; /** Resolved configuration for generated `setQueryData` helpers. */
7107
7339
  setQueryData: NamingOptions & FeatureToggle;
7108
7340
  };
7109
- type TanStackSvelteQueryPlugin = DefinePlugin$1<UserConfig$9, Config$6>;
7341
+ type TanStackSvelteQueryPlugin = DefinePlugin$1<UserConfig$9, Config$6, never, TanStackQuerySymbols>;
7110
7342
  //#endregion
7111
7343
  //#region src/plugins/@tanstack/vue-query/types.d.ts
7112
7344
  type UserConfig$8 = Plugin$1.Name<'@tanstack/vue-query'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & {
@@ -7116,6 +7348,40 @@ type UserConfig$8 = Plugin$1.Name<'@tanstack/vue-query'> & Plugin$1.Hooks & Plug
7116
7348
  * @default 'camelCase'
7117
7349
  */
7118
7350
  case?: Casing;
7351
+ /**
7352
+ * Configuration for generated `getQueryData` helpers.
7353
+ *
7354
+ * When enabled, generates a helper per query operation that wraps
7355
+ * `queryClient.getQueryData()` with the correct query key and response
7356
+ * type already wired up.
7357
+ *
7358
+ * Can be:
7359
+ * - `boolean`: Shorthand for `{ enabled: boolean }`
7360
+ * - `string` or `function`: Shorthand for `{ name: string | function }`
7361
+ * - `object`: Full configuration object
7362
+ *
7363
+ * @default false
7364
+ */
7365
+ getQueryData?: boolean | NameTransformer | {
7366
+ /**
7367
+ * Casing convention for generated names.
7368
+ *
7369
+ * @default 'camelCase'
7370
+ */
7371
+ case?: Casing;
7372
+ /**
7373
+ * Whether this feature is enabled.
7374
+ *
7375
+ * @default true
7376
+ */
7377
+ enabled?: boolean;
7378
+ /**
7379
+ * Naming pattern for generated names.
7380
+ *
7381
+ * @default '{{name}}GetQueryData'
7382
+ */
7383
+ name?: NameTransformer;
7384
+ };
7119
7385
  /**
7120
7386
  * Configuration for generated infinite query key helpers.
7121
7387
  *
@@ -7451,7 +7717,8 @@ type UserConfig$8 = Plugin$1.Name<'@tanstack/vue-query'> & Plugin$1.Hooks & Plug
7451
7717
  };
7452
7718
  };
7453
7719
  type Config$5 = Plugin$1.Name<'@tanstack/vue-query'> & Plugin$1.Hooks & Plugin$1.Comments & Plugin$1.Exports & {
7454
- /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated infinite query key helpers. */
7720
+ /** Casing convention for generated names. */case: Casing; /** Resolved configuration for generated `getQueryData` helpers. */
7721
+ getQueryData: NamingOptions & FeatureToggle; /** Resolved configuration for generated infinite query key helpers. */
7455
7722
  infiniteQueryKeys: NamingOptions & FeatureToggle & {
7456
7723
  /** Whether to include operation tags in infinite query keys. */tags: boolean;
7457
7724
  }; /** Resolved configuration for generated infinite query options helpers. */
@@ -7474,7 +7741,7 @@ type Config$5 = Plugin$1.Name<'@tanstack/vue-query'> & Plugin$1.Hooks & Plugin$1
7474
7741
  }; /** Resolved configuration for generated `setQueryData` helpers. */
7475
7742
  setQueryData: NamingOptions & FeatureToggle;
7476
7743
  };
7477
- type TanStackVueQueryPlugin = DefinePlugin$1<UserConfig$8, Config$5>;
7744
+ type TanStackVueQueryPlugin = DefinePlugin$1<UserConfig$8, Config$5, never, TanStackQuerySymbols>;
7478
7745
  //#endregion
7479
7746
  //#region src/plugins/arktype/shared/types.d.ts
7480
7747
  type ValidatorArgs$2 = {
@@ -8764,95 +9031,71 @@ interface BaseContext$1 extends DollarTsDsl, SchemaVisitorContext<ValibotPlugin[
8764
9031
  v: Symbol;
8765
9032
  };
8766
9033
  }
8767
- interface ArrayResolverContext$1 extends BaseContext$1 {
9034
+ interface ArrayResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9035
+ base: (ctx: ArrayResolverContext$1) => PipeResult;
9036
+ length: (ctx: ArrayResolverContext$1) => PipeResult;
9037
+ maxLength: (ctx: ArrayResolverContext$1) => PipeResult;
9038
+ minLength: (ctx: ArrayResolverContext$1) => PipeResult;
9039
+ }> {
8768
9040
  applyModifiers: (result: ValibotResult, opts?: {
8769
9041
  optional?: boolean;
8770
9042
  }) => ValibotFinal;
8771
- /**
8772
- * Nodes used to build different parts of the result.
8773
- */
8774
- nodes: {
8775
- base: (ctx: ArrayResolverContext$1) => PipeResult;
8776
- length: (ctx: ArrayResolverContext$1) => PipeResult;
8777
- maxLength: (ctx: ArrayResolverContext$1) => PipeResult;
8778
- minLength: (ctx: ArrayResolverContext$1) => PipeResult;
8779
- };
8780
9043
  schema: SchemaWithType<'array'>;
8781
9044
  walk: Walker<ValibotResult, ValibotPlugin['Instance']>;
8782
9045
  }
8783
- interface BooleanResolverContext$1 extends BaseContext$1 {
8784
- /**
8785
- * Nodes used to build different parts of the result.
8786
- */
8787
- nodes: {
8788
- base: (ctx: BooleanResolverContext$1) => PipeResult;
8789
- const: (ctx: BooleanResolverContext$1) => PipeResult;
8790
- };
9046
+ interface BooleanResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9047
+ base: (ctx: BooleanResolverContext$1) => PipeResult;
9048
+ const: (ctx: BooleanResolverContext$1) => PipeResult;
9049
+ }> {
8791
9050
  schema: SchemaWithType<'boolean'>;
8792
9051
  }
8793
- interface EnumResolverContext$1 extends BaseContext$1 {
9052
+ interface EnumResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9053
+ /**
9054
+ * Returns the base enum expression (v.picklist([...])).
9055
+ */
9056
+ base: (ctx: EnumResolverContext$1) => PipeResult;
8794
9057
  /**
8795
- * Nodes used to build different parts of the result.
9058
+ * Returns parsed enum items with metadata about the enum members.
8796
9059
  */
8797
- nodes: {
9060
+ items: (ctx: EnumResolverContext$1) => {
8798
9061
  /**
8799
- * Returns the base enum expression (v.picklist([...])).
9062
+ * Literal nodes for each enum member.
8800
9063
  */
8801
- base: (ctx: EnumResolverContext$1) => PipeResult;
9064
+ enumMembers: Array<ReturnType<typeof $.literal>>;
8802
9065
  /**
8803
- * Returns parsed enum items with metadata about the enum members.
9066
+ * Pipe nodes for each enum member.
8804
9067
  */
8805
- items: (ctx: EnumResolverContext$1) => {
8806
- /**
8807
- * Literal nodes for each enum member.
8808
- */
8809
- enumMembers: Array<ReturnType<typeof $.literal>>;
8810
- };
9068
+ literalSchemas: Array<Pipe>;
8811
9069
  };
9070
+ }> {
8812
9071
  schema: SchemaWithType<'enum'>;
8813
9072
  }
8814
- interface IntersectionResolverContext$1 extends BaseContext$1 {
9073
+ interface IntersectionResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9074
+ base: (ctx: IntersectionResolverContext$1) => PipeResult;
9075
+ }> {
8815
9076
  applyModifiers: (result: ValibotResult, opts?: {
8816
9077
  optional?: boolean;
8817
9078
  }) => ValibotFinal;
8818
9079
  childResults: Array<ValibotResult>;
8819
- /**
8820
- * Nodes used to build different parts of the result.
8821
- */
8822
- nodes: {
8823
- base: (ctx: IntersectionResolverContext$1) => PipeResult;
8824
- };
8825
9080
  parentSchema: IR$1.SchemaObject;
8826
9081
  schema: IR$1.SchemaObject;
8827
9082
  }
8828
- interface NeverResolverContext$1 extends BaseContext$1 {
8829
- /**
8830
- * Nodes used to build different parts of the result.
8831
- */
8832
- nodes: {
8833
- base: (ctx: NeverResolverContext$1) => PipeResult;
8834
- };
9083
+ interface NeverResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9084
+ base: (ctx: NeverResolverContext$1) => PipeResult;
9085
+ }> {
8835
9086
  schema: SchemaWithType<'never'>;
8836
9087
  }
8837
- interface NullResolverContext$1 extends BaseContext$1 {
8838
- /**
8839
- * Nodes used to build different parts of the result.
8840
- */
8841
- nodes: {
8842
- base: (ctx: NullResolverContext$1) => PipeResult;
8843
- };
9088
+ interface NullResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9089
+ base: (ctx: NullResolverContext$1) => PipeResult;
9090
+ }> {
8844
9091
  schema: SchemaWithType<'null'>;
8845
9092
  }
8846
- interface NumberResolverContext$1 extends BaseContext$1 {
8847
- /**
8848
- * Nodes used to build different parts of the result.
8849
- */
8850
- nodes: {
8851
- base: (ctx: NumberResolverContext$1) => PipeResult;
8852
- const: (ctx: NumberResolverContext$1) => PipeResult;
8853
- max: (ctx: NumberResolverContext$1) => PipeResult;
8854
- min: (ctx: NumberResolverContext$1) => PipeResult;
8855
- };
9093
+ interface NumberResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9094
+ base: (ctx: NumberResolverContext$1) => PipeResult;
9095
+ const: (ctx: NumberResolverContext$1) => PipeResult;
9096
+ max: (ctx: NumberResolverContext$1) => PipeResult;
9097
+ min: (ctx: NumberResolverContext$1) => PipeResult;
9098
+ }> {
8856
9099
  schema: SchemaWithType<'integer' | 'number'>;
8857
9100
  /**
8858
9101
  * Utility functions for number schema processing.
@@ -8863,111 +9106,83 @@ interface NumberResolverContext$1 extends BaseContext$1 {
8863
9106
  shouldCoerceToBigInt: ShouldCoerceToBigInt;
8864
9107
  };
8865
9108
  }
8866
- interface ObjectResolverContext$1 extends BaseContext$1 {
9109
+ interface ObjectResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9110
+ additionalProperties: (ctx: ObjectResolverContext$1) => Pipe | null | undefined;
9111
+ base: (ctx: ObjectResolverContext$1) => Pipes | Pipe;
9112
+ shape: (ctx: ObjectResolverContext$1) => ReturnType<typeof $.object>;
9113
+ }> {
8867
9114
  _childResults: Array<ValibotResult>;
8868
- applyModifiers: (result: ValibotResult, opts: {
9115
+ applyModifiers: (result: ValibotResult, opts?: {
8869
9116
  optional?: boolean;
8870
9117
  }) => ValibotFinal;
8871
- /**
8872
- * Nodes used to build different parts of the result.
8873
- */
8874
- nodes: {
8875
- additionalProperties: (ctx: ObjectResolverContext$1) => Pipe | null | undefined;
8876
- base: (ctx: ObjectResolverContext$1) => Pipes | Pipe;
8877
- shape: (ctx: ObjectResolverContext$1) => ReturnType<typeof $.object>;
8878
- };
8879
9118
  schema: SchemaWithType<'object'>;
8880
9119
  walk: Walker<ValibotResult, ValibotPlugin['Instance']>;
8881
9120
  }
8882
- interface StringResolverContext$1 extends BaseContext$1 {
8883
- /**
8884
- * Nodes used to build different parts of the result.
8885
- */
8886
- nodes: {
8887
- base: (ctx: StringResolverContext$1) => PipeResult;
8888
- const: (ctx: StringResolverContext$1) => PipeResult;
8889
- format: (ctx: StringResolverContext$1) => PipeResult;
8890
- length: (ctx: StringResolverContext$1) => PipeResult;
8891
- maxLength: (ctx: StringResolverContext$1) => PipeResult;
8892
- minLength: (ctx: StringResolverContext$1) => PipeResult;
8893
- pattern: (ctx: StringResolverContext$1) => PipeResult;
8894
- };
9121
+ interface StringResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9122
+ base: (ctx: StringResolverContext$1) => PipeResult;
9123
+ const: (ctx: StringResolverContext$1) => PipeResult;
9124
+ format: (ctx: StringResolverContext$1) => PipeResult;
9125
+ length: (ctx: StringResolverContext$1) => PipeResult;
9126
+ maxLength: (ctx: StringResolverContext$1) => PipeResult;
9127
+ minLength: (ctx: StringResolverContext$1) => PipeResult;
9128
+ pattern: (ctx: StringResolverContext$1) => PipeResult;
9129
+ }> {
8895
9130
  schema: SchemaWithType<'string'>;
8896
9131
  }
8897
- interface TupleResolverContext$1 extends BaseContext$1 {
9132
+ interface TupleResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9133
+ base: (ctx: TupleResolverContext$1) => PipeResult;
9134
+ const: (ctx: TupleResolverContext$1) => PipeResult;
9135
+ }> {
8898
9136
  applyModifiers: (result: ValibotResult, opts?: {
8899
9137
  optional?: boolean;
8900
9138
  }) => ValibotFinal;
8901
- /**
8902
- * Nodes used to build different parts of the result.
8903
- */
8904
- nodes: {
8905
- base: (ctx: TupleResolverContext$1) => PipeResult;
8906
- const: (ctx: TupleResolverContext$1) => PipeResult;
8907
- };
8908
9139
  schema: SchemaWithType<'tuple'>;
8909
9140
  walk: Walker<ValibotResult, ValibotPlugin['Instance']>;
8910
9141
  }
8911
- interface UndefinedResolverContext$1 extends BaseContext$1 {
8912
- /**
8913
- * Nodes used to build different parts of the result.
8914
- */
8915
- nodes: {
8916
- base: (ctx: UndefinedResolverContext$1) => PipeResult;
8917
- };
9142
+ interface UndefinedResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9143
+ base: (ctx: UndefinedResolverContext$1) => PipeResult;
9144
+ }> {
8918
9145
  schema: SchemaWithType<'undefined'>;
8919
9146
  }
8920
- interface UnionResolverContext$1 extends BaseContext$1 {
9147
+ interface UnionResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9148
+ base: (ctx: UnionResolverContext$1) => PipeResult;
9149
+ }> {
8921
9150
  applyModifiers: (result: ValibotResult, opts?: {
8922
9151
  optional?: boolean;
8923
9152
  }) => ValibotFinal;
8924
9153
  childResults: Array<ValibotResult>;
8925
- /**
8926
- * Nodes used to build different parts of the result.
8927
- */
8928
- nodes: {
8929
- base: (ctx: UnionResolverContext$1) => PipeResult;
8930
- };
8931
9154
  parentSchema: IR$1.SchemaObject;
8932
9155
  schema: IR$1.SchemaObject;
8933
9156
  schemas: ReadonlyArray<IR$1.SchemaObject>;
8934
9157
  }
8935
- interface UnknownResolverContext$1 extends BaseContext$1 {
8936
- /**
8937
- * Nodes used to build different parts of the result.
8938
- */
8939
- nodes: {
8940
- base: (ctx: UnknownResolverContext$1) => PipeResult;
8941
- };
9158
+ interface UnknownResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9159
+ base: (ctx: UnknownResolverContext$1) => PipeResult;
9160
+ }> {
8942
9161
  schema: SchemaWithType<'unknown'>;
8943
9162
  }
8944
- interface RequestValidatorResolverContext$1 extends BaseContext$1, RequestSchemaContext<ValibotPlugin['Instance']> {
9163
+ interface RequestValidatorResolverContext$1 extends BaseContext$1, RequestSchemaContext<ValibotPlugin['Instance']>, Plugin$1.ResolverNodes<{
8945
9164
  /**
8946
- * Nodes used to build different parts of the result.
9165
+ * Returns the composite schema combining all layers.
9166
+ *
9167
+ * Returns `undefined` if all layers are omitted.
8947
9168
  */
8948
- nodes: {
8949
- /**
8950
- * Returns the composite schema combining all layers.
8951
- *
8952
- * Returns `undefined` if all layers are omitted.
8953
- */
8954
- composite: (ctx: RequestValidatorResolverContext$1) => Pipe | undefined;
8955
- /**
8956
- * Returns an empty/fallback schema for a layer based on its `whenEmpty` config.
8957
- *
8958
- * @throws if `whenEmpty` is `'omit'` (no schema should be generated)
8959
- */
8960
- empty: (ctx: RequestValidatorResolverContext$1 & {
8961
- /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer;
8962
- }) => Pipe;
8963
- /**
8964
- * Returns an optional schema based on the layer's config.
8965
- */
8966
- optional: (ctx: RequestValidatorResolverContext$1 & {
8967
- /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer; /** The schema to conditionally wrap. */
8968
- schema: Pipe;
8969
- }) => Pipe;
8970
- };
9169
+ composite: (ctx: RequestValidatorResolverContext$1) => Pipe | undefined;
9170
+ /**
9171
+ * Returns an empty/fallback schema for a layer based on its `whenEmpty` config.
9172
+ *
9173
+ * @throws if `whenEmpty` is `'omit'` (no schema should be generated)
9174
+ */
9175
+ empty: (ctx: RequestValidatorResolverContext$1 & {
9176
+ /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer;
9177
+ }) => Pipe;
9178
+ /**
9179
+ * Returns an optional schema based on the layer's config.
9180
+ */
9181
+ optional: (ctx: RequestValidatorResolverContext$1 & {
9182
+ /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer; /** The schema to conditionally wrap. */
9183
+ schema: Pipe;
9184
+ }) => Pipe;
9185
+ }> {
8971
9186
  /**
8972
9187
  * Provides access to commonly used symbols within the plugin.
8973
9188
  */
@@ -8996,16 +9211,18 @@ interface ResponseValidatorResolverContext$1 extends BaseContext$1 {
8996
9211
  };
8997
9212
  }
8998
9213
  type ValidatorResolverContext$1 = RequestValidatorResolverContext$1 | ResponseValidatorResolverContext$1;
8999
- interface VoidResolverContext$1 extends BaseContext$1 {
9000
- /**
9001
- * Nodes used to build different parts of the result.
9002
- */
9003
- nodes: {
9004
- base: (ctx: VoidResolverContext$1) => PipeResult;
9005
- };
9214
+ interface VoidResolverContext$1 extends BaseContext$1, Plugin$1.ResolverNodes<{
9215
+ base: (ctx: VoidResolverContext$1) => PipeResult;
9216
+ }> {
9006
9217
  schema: SchemaWithType<'void'>;
9007
9218
  }
9008
9219
  //#endregion
9220
+ //#region src/plugins/valibot/symbols.d.ts
9221
+ declare function valibotSymbols(plugin: PluginInstance$1): {
9222
+ v: any;
9223
+ };
9224
+ type ValibotSymbols = ReturnType<typeof valibotSymbols>;
9225
+ //#endregion
9009
9226
  //#region src/plugins/valibot/types.d.ts
9010
9227
  type UserConfig$2 = Plugin$1.Name<'valibot'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & ValibotResolvers & {
9011
9228
  /**
@@ -9331,7 +9548,7 @@ type Config$1 = Plugin$1.Name<'valibot'> & Plugin$1.Hooks & Plugin$1.Comments &
9331
9548
  responses: NamingOptions & FeatureToggle; /** Configuration for webhook-specific Valibot schemas. */
9332
9549
  webhooks: NamingOptions & FeatureToggle;
9333
9550
  };
9334
- type ValibotPlugin = DefinePlugin$1<UserConfig$2, Config$1, IApi$1>;
9551
+ type ValibotPlugin = DefinePlugin$1<UserConfig$2, Config$1, IApi$1, ValibotSymbols>;
9335
9552
  //#endregion
9336
9553
  //#region src/plugins/zod/shared/chain.d.ts
9337
9554
  type Chain = ReturnType<typeof $.call | typeof $.expr>;
@@ -9374,13 +9591,13 @@ interface ZodMeta {
9374
9591
  * Result from walking a schema node.
9375
9592
  */
9376
9593
  interface ZodResult {
9377
- expression: Chain;
9594
+ chain: Chain;
9378
9595
  meta: ZodMeta;
9379
9596
  }
9380
9597
  /**
9381
9598
  * Finalized result after applyModifiers.
9382
9599
  */
9383
- interface ZodFinal extends Pick<ZodResult, 'expression'> {
9600
+ interface ZodFinal extends Pick<ZodResult, 'chain'> {
9384
9601
  /** Type annotation for schemas requiring explicit typing (e.g., lazy). */
9385
9602
  typeName?: string | ts.Identifier;
9386
9603
  }
@@ -9559,7 +9776,24 @@ interface BaseContext extends DollarTsDsl, SchemaVisitorContext<ZodPlugin['Insta
9559
9776
  z: Symbol;
9560
9777
  };
9561
9778
  }
9562
- interface ArrayResolverContext extends BaseContext {
9779
+ interface ArrayResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9780
+ /**
9781
+ * Returns the base array expression (z.array(...)).
9782
+ */
9783
+ base: (ctx: ArrayResolverContext) => Chain;
9784
+ /**
9785
+ * Returns a length constraint (when minItems === maxItems), if applicable.
9786
+ */
9787
+ length: (ctx: ArrayResolverContext) => ChainResult;
9788
+ /**
9789
+ * Returns a maxItems constraint, if applicable.
9790
+ */
9791
+ maxLength: (ctx: ArrayResolverContext) => ChainResult;
9792
+ /**
9793
+ * Returns a minItems constraint, if applicable.
9794
+ */
9795
+ minLength: (ctx: ArrayResolverContext) => ChainResult;
9796
+ }> {
9563
9797
  applyModifiers: (result: ZodResult, opts?: {
9564
9798
  optional?: boolean;
9565
9799
  }) => ZodFinal;
@@ -9567,132 +9801,87 @@ interface ArrayResolverContext extends BaseContext {
9567
9801
  * Child results from processing array items.
9568
9802
  */
9569
9803
  childResults: Array<ZodResult>;
9570
- /**
9571
- * Nodes used to build different parts of the result.
9572
- */
9573
- nodes: {
9574
- /**
9575
- * Returns the base array expression (z.array(...)).
9576
- */
9577
- base: (ctx: ArrayResolverContext) => Chain;
9578
- /**
9579
- * Returns a length constraint (when minItems === maxItems), if applicable.
9580
- */
9581
- length: (ctx: ArrayResolverContext) => ChainResult;
9582
- /**
9583
- * Returns a maxItems constraint, if applicable.
9584
- */
9585
- maxLength: (ctx: ArrayResolverContext) => ChainResult;
9586
- /**
9587
- * Returns a minItems constraint, if applicable.
9588
- */
9589
- minLength: (ctx: ArrayResolverContext) => ChainResult;
9590
- };
9591
9804
  schema: SchemaWithType<'array'>;
9592
9805
  walk: Walker<ZodResult, ZodPlugin['Instance']>;
9593
9806
  }
9594
- interface BooleanResolverContext extends BaseContext {
9807
+ interface BooleanResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9595
9808
  /**
9596
- * Nodes used to build different parts of the result.
9809
+ * Returns the base boolean expression (z.boolean()).
9597
9810
  */
9598
- nodes: {
9599
- /**
9600
- * Returns the base boolean expression (z.boolean()).
9601
- */
9602
- base: (ctx: BooleanResolverContext) => Chain;
9603
- /**
9604
- * Returns a literal expression for the const value, if present.
9605
- */
9606
- const: (ctx: BooleanResolverContext) => ChainResult;
9607
- };
9811
+ base: (ctx: BooleanResolverContext) => Chain;
9812
+ /**
9813
+ * Returns a literal expression for the const value, if present.
9814
+ */
9815
+ const: (ctx: BooleanResolverContext) => ChainResult;
9816
+ }> {
9608
9817
  schema: SchemaWithType<'boolean'>;
9609
9818
  }
9610
- interface EnumResolverContext extends BaseContext {
9819
+ interface EnumResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9611
9820
  /**
9612
- * Nodes used to build different parts of the result.
9821
+ * Returns the base enum expression (z.enum([...]) or z.union([...])).
9613
9822
  */
9614
- nodes: {
9823
+ base: (ctx: EnumResolverContext) => Chain;
9824
+ /**
9825
+ * Returns parsed enum items with metadata about the enum members.
9826
+ */
9827
+ items: (ctx: EnumResolverContext) => {
9615
9828
  /**
9616
- * Returns the base enum expression (z.enum([...]) or z.union([...])).
9829
+ * String literal nodes for each string-typed enum member.
9617
9830
  */
9618
- base: (ctx: EnumResolverContext) => Chain;
9831
+ enumMembers: Array<ReturnType<typeof $.literal>>;
9619
9832
  /**
9620
- * Returns parsed enum items with metadata about the enum members.
9833
+ * Chain nodes for each enum member.
9621
9834
  */
9622
- items: (ctx: EnumResolverContext) => {
9623
- /**
9624
- * String literal nodes for each string-typed enum member.
9625
- */
9626
- enumMembers: Array<ReturnType<typeof $.literal>>;
9627
- /**
9628
- * Schema expressions for each non-null enum member (e.g. z.literal(...)).
9629
- */
9630
- literalSchemas: Array<Chain>;
9631
- };
9835
+ literalSchemas: Array<Chain>;
9632
9836
  };
9837
+ }> {
9633
9838
  schema: SchemaWithType<'enum'>;
9634
9839
  }
9635
- interface IntersectionResolverContext extends BaseContext {
9636
- childResults: Array<ZodResult>;
9840
+ interface IntersectionResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9637
9841
  /**
9638
- * Nodes used to build different parts of the result.
9842
+ * Returns the base intersection expression.
9639
9843
  */
9640
- nodes: {
9641
- /**
9642
- * Returns the base intersection expression.
9643
- */
9644
- base: (ctx: IntersectionResolverContext) => Chain;
9645
- };
9844
+ base: (ctx: IntersectionResolverContext) => Chain;
9845
+ }> {
9846
+ childResults: Array<ZodResult>;
9646
9847
  parentSchema: IR$1.SchemaObject;
9647
9848
  schema: IR$1.SchemaObject;
9648
9849
  schemas: ReadonlyArray<IR$1.SchemaObject>;
9649
9850
  }
9650
- interface NeverResolverContext extends BaseContext {
9851
+ interface NeverResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9651
9852
  /**
9652
- * Nodes used to build different parts of the result.
9853
+ * Returns the base never expression (z.never()).
9653
9854
  */
9654
- nodes: {
9655
- /**
9656
- * Returns the base never expression (z.never()).
9657
- */
9658
- base: (ctx: NeverResolverContext) => Chain;
9659
- };
9855
+ base: (ctx: NeverResolverContext) => Chain;
9856
+ }> {
9660
9857
  schema: SchemaWithType<'never'>;
9661
9858
  }
9662
- interface NullResolverContext extends BaseContext {
9859
+ interface NullResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9663
9860
  /**
9664
- * Nodes used to build different parts of the result.
9861
+ * Returns the base null expression (z.null()).
9665
9862
  */
9666
- nodes: {
9667
- /**
9668
- * Returns the base null expression (z.null()).
9669
- */
9670
- base: (ctx: NullResolverContext) => Chain;
9671
- };
9863
+ base: (ctx: NullResolverContext) => Chain;
9864
+ }> {
9672
9865
  schema: SchemaWithType<'null'>;
9673
9866
  }
9674
- interface NumberResolverContext extends BaseContext {
9867
+ interface NumberResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9675
9868
  /**
9676
- * Nodes used to build different parts of the result.
9869
+ * Returns the base number expression (z.number() or z.coerce.number()).
9677
9870
  */
9678
- nodes: {
9679
- /**
9680
- * Returns the base number expression (z.number() or z.coerce.number()).
9681
- */
9682
- base: (ctx: NumberResolverContext) => Chain;
9683
- /**
9684
- * Returns a literal expression for the const value, if present.
9685
- */
9686
- const: (ctx: NumberResolverContext) => ChainResult;
9687
- /**
9688
- * Returns the maximum value constraint.
9689
- */
9690
- max: (ctx: NumberResolverContext) => ChainResult;
9691
- /**
9692
- * Returns the minimum value constraint.
9693
- */
9694
- min: (ctx: NumberResolverContext) => ChainResult;
9695
- };
9871
+ base: (ctx: NumberResolverContext) => Chain;
9872
+ /**
9873
+ * Returns a literal expression for the const value, if present.
9874
+ */
9875
+ const: (ctx: NumberResolverContext) => ChainResult;
9876
+ /**
9877
+ * Returns the maximum value constraint.
9878
+ */
9879
+ max: (ctx: NumberResolverContext) => ChainResult;
9880
+ /**
9881
+ * Returns the minimum value constraint.
9882
+ */
9883
+ min: (ctx: NumberResolverContext) => ChainResult;
9884
+ }> {
9696
9885
  schema: SchemaWithType<'integer' | 'number'>;
9697
9886
  /**
9698
9887
  * Utility functions for number schema processing.
@@ -9703,7 +9892,20 @@ interface NumberResolverContext extends BaseContext {
9703
9892
  shouldCoerceToBigInt: ShouldCoerceToBigInt;
9704
9893
  };
9705
9894
  }
9706
- interface ObjectResolverContext extends BaseContext {
9895
+ interface ObjectResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9896
+ /**
9897
+ * Returns the additional properties expression, if any.
9898
+ */
9899
+ additionalProperties: (ctx: ObjectResolverContext) => Chain | null | undefined;
9900
+ /**
9901
+ * Returns the base object expression (z.object({...}) or z.record(...)).
9902
+ */
9903
+ base: (ctx: ObjectResolverContext) => Chain;
9904
+ /**
9905
+ * Returns the object shape (property definitions).
9906
+ */
9907
+ shape: (ctx: ObjectResolverContext) => ReturnType<typeof $.object>;
9908
+ }> {
9707
9909
  /**
9708
9910
  * Child results from processing object properties.
9709
9911
  * Used for metadata composition.
@@ -9712,149 +9914,108 @@ interface ObjectResolverContext extends BaseContext {
9712
9914
  applyModifiers: (result: ZodResult, opts: {
9713
9915
  optional?: boolean;
9714
9916
  }) => ZodFinal;
9715
- /**
9716
- * Nodes used to build different parts of the result.
9717
- */
9718
- nodes: {
9719
- /**
9720
- * Returns the additional properties expression, if any.
9721
- */
9722
- additionalProperties: (ctx: ObjectResolverContext) => Chain | null | undefined;
9723
- /**
9724
- * Returns the base object expression (z.object({...}) or z.record(...)).
9725
- */
9726
- base: (ctx: ObjectResolverContext) => Chain;
9727
- /**
9728
- * Returns the object shape (property definitions).
9729
- */
9730
- shape: (ctx: ObjectResolverContext) => ReturnType<typeof $.object>;
9731
- };
9732
9917
  schema: SchemaWithType<'object'>;
9733
9918
  walk: Walker<ZodResult, ZodPlugin['Instance']>;
9734
9919
  }
9735
- interface StringResolverContext extends BaseContext {
9920
+ interface StringResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9736
9921
  /**
9737
- * Nodes used to build different parts of the result.
9922
+ * Returns the base string expression (z.string()).
9738
9923
  */
9739
- nodes: {
9740
- /**
9741
- * Returns the base string expression (z.string()).
9742
- */
9743
- base: (ctx: StringResolverContext) => Chain;
9744
- /**
9745
- * Returns a literal expression for the const value, if present.
9746
- */
9747
- const: (ctx: StringResolverContext) => ChainResult;
9748
- /**
9749
- * Returns a format validation expression, if applicable.
9750
- */
9751
- format: (ctx: StringResolverContext) => ChainResult;
9752
- /**
9753
- * Returns a length constraint (when min === max), if applicable.
9754
- */
9755
- length: (ctx: StringResolverContext) => ChainResult;
9756
- /**
9757
- * Returns a maxLength constraint, if applicable.
9758
- */
9759
- maxLength: (ctx: StringResolverContext) => ChainResult;
9760
- /**
9761
- * Returns a minLength constraint, if applicable.
9762
- */
9763
- minLength: (ctx: StringResolverContext) => ChainResult;
9764
- /**
9765
- * Returns a pattern (regex) constraint, if applicable.
9766
- */
9767
- pattern: (ctx: StringResolverContext) => ChainResult;
9768
- };
9924
+ base: (ctx: StringResolverContext) => Chain;
9925
+ /**
9926
+ * Returns a literal expression for the const value, if present.
9927
+ */
9928
+ const: (ctx: StringResolverContext) => ChainResult;
9929
+ /**
9930
+ * Returns a format validation expression, if applicable.
9931
+ */
9932
+ format: (ctx: StringResolverContext) => ChainResult;
9933
+ /**
9934
+ * Returns a length constraint (when min === max), if applicable.
9935
+ */
9936
+ length: (ctx: StringResolverContext) => ChainResult;
9937
+ /**
9938
+ * Returns a maxLength constraint, if applicable.
9939
+ */
9940
+ maxLength: (ctx: StringResolverContext) => ChainResult;
9941
+ /**
9942
+ * Returns a minLength constraint, if applicable.
9943
+ */
9944
+ minLength: (ctx: StringResolverContext) => ChainResult;
9945
+ /**
9946
+ * Returns a pattern (regex) constraint, if applicable.
9947
+ */
9948
+ pattern: (ctx: StringResolverContext) => ChainResult;
9949
+ }> {
9769
9950
  schema: SchemaWithType<'string'>;
9770
9951
  }
9771
- interface TupleResolverContext extends BaseContext {
9952
+ interface TupleResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9953
+ /**
9954
+ * Returns the base tuple expression (z.tuple([...])).
9955
+ */
9956
+ base: (ctx: TupleResolverContext) => Chain;
9957
+ /**
9958
+ * Returns a literal expression for the const value, if present.
9959
+ */
9960
+ const: (ctx: TupleResolverContext) => ChainResult;
9961
+ }> {
9772
9962
  applyModifiers: (result: ZodResult, opts?: {
9773
9963
  optional?: boolean;
9774
9964
  }) => ZodFinal;
9775
9965
  childResults: Array<ZodResult>;
9776
- /**
9777
- * Nodes used to build different parts of the result.
9778
- */
9779
- nodes: {
9780
- /**
9781
- * Returns the base tuple expression (z.tuple([...])).
9782
- */
9783
- base: (ctx: TupleResolverContext) => Chain;
9784
- /**
9785
- * Returns a literal expression for the const value, if present.
9786
- */
9787
- const: (ctx: TupleResolverContext) => ChainResult;
9788
- };
9789
9966
  schema: SchemaWithType<'tuple'>;
9790
9967
  walk: Walker<ZodResult, ZodPlugin['Instance']>;
9791
9968
  }
9792
- interface UndefinedResolverContext extends BaseContext {
9969
+ interface UndefinedResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9793
9970
  /**
9794
- * Nodes used to build different parts of the result.
9971
+ * Returns the base undefined expression (z.undefined()).
9795
9972
  */
9796
- nodes: {
9797
- /**
9798
- * Returns the base undefined expression (z.undefined()).
9799
- */
9800
- base: (ctx: UndefinedResolverContext) => Chain;
9801
- };
9973
+ base: (ctx: UndefinedResolverContext) => Chain;
9974
+ }> {
9802
9975
  schema: SchemaWithType<'undefined'>;
9803
9976
  }
9804
- interface UnionResolverContext extends BaseContext {
9805
- childResults: Array<ZodResult>;
9977
+ interface UnionResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9806
9978
  /**
9807
- * Nodes used to build different parts of the result.
9979
+ * Returns the base union expression.
9808
9980
  */
9809
- nodes: {
9810
- /**
9811
- * Returns the base union expression.
9812
- */
9813
- base: (ctx: UnionResolverContext) => Chain;
9814
- };
9981
+ base: (ctx: UnionResolverContext) => Chain;
9982
+ }> {
9983
+ childResults: Array<ZodResult>;
9815
9984
  parentSchema: IR$1.SchemaObject;
9816
9985
  schema: IR$1.SchemaObject;
9817
9986
  schemas: ReadonlyArray<IR$1.SchemaObject>;
9818
9987
  }
9819
- interface UnknownResolverContext extends BaseContext {
9988
+ interface UnknownResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9820
9989
  /**
9821
- * Nodes used to build different parts of the result.
9990
+ * Returns the base unknown expression (z.unknown()).
9822
9991
  */
9823
- nodes: {
9824
- /**
9825
- * Returns the base unknown expression (z.unknown()).
9826
- */
9827
- base: (ctx: UnknownResolverContext) => Chain;
9828
- };
9992
+ base: (ctx: UnknownResolverContext) => Chain;
9993
+ }> {
9829
9994
  schema: SchemaWithType<'unknown'>;
9830
9995
  }
9831
- interface RequestValidatorResolverContext extends BaseContext, RequestSchemaContext<ZodPlugin['Instance']> {
9996
+ interface RequestValidatorResolverContext extends BaseContext, RequestSchemaContext<ZodPlugin['Instance']>, Plugin$1.ResolverNodes<{
9832
9997
  /**
9833
- * Nodes used to build different parts of the result.
9998
+ * Returns the composite schema combining all layers.
9999
+ *
10000
+ * Returns `undefined` if all layers are omitted.
9834
10001
  */
9835
- nodes: {
9836
- /**
9837
- * Returns the composite schema combining all layers.
9838
- *
9839
- * Returns `undefined` if all layers are omitted.
9840
- */
9841
- composite: (ctx: RequestValidatorResolverContext) => Chain | undefined;
9842
- /**
9843
- * Returns an empty/fallback schema for a layer based on its `whenEmpty` config.
9844
- *
9845
- * @throws if `whenEmpty` is `'omit'` (no schema should be generated)
9846
- */
9847
- empty: (ctx: RequestValidatorResolverContext & {
9848
- /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer;
9849
- }) => Chain;
9850
- /**
9851
- * Returns an optional schema based on the layer's config.
9852
- */
9853
- optional: (ctx: RequestValidatorResolverContext & {
9854
- /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer; /** The schema to conditionally wrap. */
9855
- schema: Chain;
9856
- }) => Chain;
9857
- };
10002
+ composite: (ctx: RequestValidatorResolverContext) => Chain | undefined;
10003
+ /**
10004
+ * Returns an empty/fallback schema for a layer based on its `whenEmpty` config.
10005
+ *
10006
+ * @throws if `whenEmpty` is `'omit'` (no schema should be generated)
10007
+ */
10008
+ empty: (ctx: RequestValidatorResolverContext & {
10009
+ /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer;
10010
+ }) => Chain;
10011
+ /**
10012
+ * Returns an optional schema based on the layer's config.
10013
+ */
10014
+ optional: (ctx: RequestValidatorResolverContext & {
10015
+ /** Resolved configuration for the request layer. */layer: ResolvedRequestValidatorLayer; /** The schema to conditionally wrap. */
10016
+ schema: Chain;
10017
+ }) => Chain;
10018
+ }> {
9858
10019
  /**
9859
10020
  * Provides access to commonly used symbols within the plugin.
9860
10021
  */
@@ -9883,19 +10044,21 @@ interface ResponseValidatorResolverContext extends BaseContext {
9883
10044
  };
9884
10045
  }
9885
10046
  type ValidatorResolverContext = RequestValidatorResolverContext | ResponseValidatorResolverContext;
9886
- interface VoidResolverContext extends BaseContext {
10047
+ interface VoidResolverContext extends BaseContext, Plugin$1.ResolverNodes<{
9887
10048
  /**
9888
- * Nodes used to build different parts of the result.
10049
+ * Returns the base void expression (z.void()).
9889
10050
  */
9890
- nodes: {
9891
- /**
9892
- * Returns the base void expression (z.void()).
9893
- */
9894
- base: (ctx: VoidResolverContext) => Chain;
9895
- };
10051
+ base: (ctx: VoidResolverContext) => Chain;
10052
+ }> {
9896
10053
  schema: SchemaWithType<'void'>;
9897
10054
  }
9898
10055
  //#endregion
10056
+ //#region src/plugins/zod/symbols.d.ts
10057
+ declare function zodSymbols(plugin: PluginInstance$1): {
10058
+ z: any;
10059
+ };
10060
+ type ZodSymbols = ReturnType<typeof zodSymbols>;
10061
+ //#endregion
9899
10062
  //#region src/plugins/zod/types.d.ts
9900
10063
  type UserConfig$1 = Plugin$1.Name<'zod'> & Plugin$1.Hooks & Plugin$1.UserComments & Plugin$1.UserExports & ZodResolvers & {
9901
10064
  /**
@@ -11127,7 +11290,7 @@ type Config = Plugin$1.Name<'zod'> & Plugin$1.Hooks & Plugin$1.Comments & Plugin
11127
11290
  }; /** Configuration for webhook-specific Zod schemas. */
11128
11291
  webhooks: NamingOptions & FeatureToggle & TypeOptions;
11129
11292
  };
11130
- type ZodPlugin = DefinePlugin$1<UserConfig$1, Config, IApi>;
11293
+ type ZodPlugin = DefinePlugin$1<UserConfig$1, Config, IApi, ZodSymbols>;
11131
11294
  //#endregion
11132
11295
  //#region src/generate.d.ts
11133
11296
  /**
@@ -11135,7 +11298,7 @@ type ZodPlugin = DefinePlugin$1<UserConfig$1, Config, IApi>;
11135
11298
  *
11136
11299
  * @param userConfig User provided {@link UserConfig} configuration(s).
11137
11300
  */
11138
- declare function createClient(userConfig?: LazyOrAsync<MaybeArray<UserConfig>>, logger?: Logger$1): Promise<ReadonlyArray<Context>>;
11301
+ declare function createClient(userConfig?: LazyOrAsync<MaybeArray<UserConfig>>, logger?: any): Promise<ReadonlyArray<Context>>;
11139
11302
  //#endregion
11140
11303
  //#region src/config/plugins.d.ts
11141
11304
  /**
@@ -11340,5 +11503,5 @@ type NuxtClient = Client$3;
11340
11503
  /** @deprecated Use `Plugins.HeyApiClientOfetch.Client` instead. */
11341
11504
  type OfetchClient = Client$2;
11342
11505
  //#endregion
11343
- export { $, type AngularClient, type AxiosClient, type CallArgs, type Client, type DefinePlugin, DollarTsDsl, type ExampleOptions, type ExpressionTransformer, type FetchClient, type IR, type KyClient, Logger, type MaybeTsDsl, type NextClient, type NuxtClient, type OfetchClient, type OpenApi, type OpenApiMetaObject, type OpenApiOperationObject, type OpenApiParameterObject, type OpenApiRequestBodyObject, type OpenApiResponseObject, type OpenApiSchemaObject, OperationPath, OperationStrategy, type Plugin, Plugins, TsDsl, TsDslContext, TypeScriptRenderer, type TypeTransformer, type TypeTsDsl, type UserConfig, clientDefaultConfig, clientDefaultMeta, clientPluginHandler, createClient, ctx, defaultPaginationKeywords, defaultPlugins, defineConfig, definePluginConfig, keywords, regexp, reserved, utils };
11506
+ export { $, AngularClient, type AnyPluginName, AxiosClient, type CallArgs, type Client, type Coercer, type CoercerMap, type ConfigTable, type DefinePlugin, DollarTsDsl, type ExampleOptions, type ExpressionTransformer, FetchClient, type IR, KyClient, Logger, type MaybeTsDsl, NextClient, NuxtClient, OfetchClient, type OpenApi, type OpenApiMetaObject, type OpenApiOperationObject, type OpenApiParameterObject, type OpenApiRequestBodyObject, type OpenApiResponseObject, type OpenApiSchemaObject, OperationPath, OperationStrategy, type Plugin, type PluginContext, type PluginInstance, Plugins, type TableDirectives, TsDsl, TsDslContext, TypeScriptRenderer, type TypeTransformer, type TypeTsDsl, type UserConfig, applyNaming, clientDefaultConfig, clientDefaultMeta, clientPluginHandler, coerce, createClient, ctx, defaultPaginationKeywords, defaultPlugins, defineConfig, defineConfigTable, definePluginConfig, keywords, regexp, reserved, toCase, utils };
11344
11507
  //# sourceMappingURL=index.d.mts.map