@nestia/sdk 3.2.4 → 3.2.5

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 (41) hide show
  1. package/lib/NestiaSdkApplication.d.ts +1 -0
  2. package/lib/analyses/ConfigAnalyzer.d.ts +1 -0
  3. package/lib/analyses/ExceptionAnalyzer.d.ts +1 -0
  4. package/lib/analyses/GenericAnalyzer.d.ts +1 -0
  5. package/lib/analyses/ImportAnalyzer.d.ts +1 -0
  6. package/lib/analyses/TypedControllerAnalyzer.d.ts +1 -0
  7. package/lib/analyses/TypedHttpOperationAnalyzer.d.ts +1 -0
  8. package/lib/analyses/TypedWebSocketOperationAnalyzer.d.ts +1 -0
  9. package/lib/executable/internal/NestiaConfigLoader.d.ts +1 -0
  10. package/lib/executable/internal/NestiaConfigLoader.js +564 -2
  11. package/lib/executable/internal/NestiaConfigLoader.js.map +1 -1
  12. package/lib/generates/SwaggerGenerator.d.ts +1 -0
  13. package/lib/generates/SwaggerGenerator.js +64 -6
  14. package/lib/generates/SwaggerGenerator.js.map +1 -1
  15. package/lib/generates/internal/FilePrinter.d.ts +1 -0
  16. package/lib/generates/internal/FilePrinter.js +1 -1
  17. package/lib/generates/internal/ImportDictionary.d.ts +1 -0
  18. package/lib/generates/internal/SdkAliasCollection.d.ts +1 -0
  19. package/lib/generates/internal/SdkAliasCollection.js +4 -1
  20. package/lib/generates/internal/SdkAliasCollection.js.map +1 -1
  21. package/lib/generates/internal/SdkDistributionComposer.js +32 -1
  22. package/lib/generates/internal/SdkDistributionComposer.js.map +1 -1
  23. package/lib/generates/internal/SdkHttpCloneProgrammer.d.ts +1 -0
  24. package/lib/generates/internal/SdkHttpFunctionProgrammer.d.ts +1 -0
  25. package/lib/generates/internal/SdkHttpFunctionProgrammer.js +8 -4
  26. package/lib/generates/internal/SdkHttpFunctionProgrammer.js.map +1 -1
  27. package/lib/generates/internal/SdkHttpNamespaceProgrammer.d.ts +1 -0
  28. package/lib/generates/internal/SdkHttpNamespaceProgrammer.js +11 -7
  29. package/lib/generates/internal/SdkHttpNamespaceProgrammer.js.map +1 -1
  30. package/lib/generates/internal/SdkHttpRouteProgrammer.d.ts +1 -0
  31. package/lib/generates/internal/SdkHttpSimulationProgrammer.d.ts +1 -0
  32. package/lib/generates/internal/SdkTypeProgrammer.d.ts +1 -0
  33. package/lib/generates/internal/SdkWebSocketNamespaceProgrammer.d.ts +1 -0
  34. package/lib/generates/internal/SdkWebSocketRouteProgrammer.d.ts +1 -0
  35. package/lib/generates/internal/SwaggerSchemaGenerator.d.ts +1 -0
  36. package/lib/structures/INestiaProject.d.ts +1 -0
  37. package/lib/structures/ITypeTuple.d.ts +1 -0
  38. package/lib/structures/ITypedHttpRoute.d.ts +1 -0
  39. package/lib/structures/ITypedWebSocketRoute.d.ts +1 -0
  40. package/lib/structures/TypeEntry.d.ts +1 -0
  41. package/package.json +4 -4
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import ts from "typescript";
2
3
  import { INestiaConfig } from "./INestiaConfig";
3
4
  export declare class NestiaSdkApplication {
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../src/typings/get-function-location.d.ts" />
1
2
  import { INestiaConfig } from "../INestiaConfig";
2
3
  import { INormalizedInput } from "../structures/INormalizedInput";
3
4
  export declare namespace ConfigAnalyzer {
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import ts from "typescript";
2
3
  import { INestiaProject } from "../structures/INestiaProject";
3
4
  import { IReflectController } from "../structures/IReflectController";
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import ts from "typescript";
2
3
  export declare namespace GenericAnalyzer {
3
4
  type Dictionary = WeakMap<ts.Type, ts.Type>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import { HashMap, HashSet } from "tstl";
2
3
  import ts from "typescript";
3
4
  import { ITypeTuple } from "../structures/ITypeTuple";
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import ts from "typescript";
2
3
  import { INestiaProject } from "../structures/INestiaProject";
3
4
  import { IReflectController } from "../structures/IReflectController";
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import ts from "typescript";
2
3
  import { INestiaProject } from "../structures/INestiaProject";
3
4
  import { IReflectController } from "../structures/IReflectController";
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import ts from "typescript";
2
3
  import { INestiaProject } from "../structures/INestiaProject";
3
4
  import { IReflectController } from "../structures/IReflectController";
@@ -1,3 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
1
2
  import ts from "typescript";
2
3
  import { INestiaConfig } from "../../INestiaConfig";
3
4
  export declare namespace NestiaConfigLoader {