@autobe/agent 0.16.1 → 0.18.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.
- package/lib/AutoBeMockAgent.d.ts +5 -5
- package/lib/agent/src/AutoBeAgent.d.ts +52 -0
- package/lib/{AutoBeAgent.js → agent/src/AutoBeAgent.js} +37 -9
- package/lib/agent/src/AutoBeAgent.js.map +1 -0
- package/lib/agent/src/AutoBeAgentBase.d.ts +18 -0
- package/lib/agent/src/AutoBeAgentBase.js.map +1 -0
- package/lib/agent/src/AutoBeMockAgent.d.ts +15 -0
- package/lib/{AutoBeMockAgent.js → agent/src/AutoBeMockAgent.js} +34 -4
- package/lib/agent/src/AutoBeMockAgent.js.map +1 -0
- package/lib/agent/src/constants/AutoBeSystemPromptConstant.d.ts +34 -0
- package/lib/agent/src/constants/AutoBeSystemPromptConstant.js.map +1 -0
- package/lib/agent/src/context/AutoBeContext.d.ts +41 -0
- package/lib/agent/src/context/AutoBeContext.js.map +1 -0
- package/lib/agent/src/context/AutoBeState.d.ts +8 -0
- package/lib/agent/src/context/AutoBeState.js.map +1 -0
- package/lib/agent/src/context/AutoBeTokenUsage.d.ts +173 -0
- package/lib/agent/src/context/AutoBeTokenUsage.js +188 -0
- package/lib/agent/src/context/AutoBeTokenUsage.js.map +1 -0
- package/lib/agent/src/context/AutoBeTokenUsageComponent.d.ts +116 -0
- package/lib/agent/src/context/AutoBeTokenUsageComponent.js +137 -0
- package/lib/agent/src/context/AutoBeTokenUsageComponent.js.map +1 -0
- package/lib/agent/src/context/IAutoBeApplication.d.ts +107 -0
- package/lib/agent/src/context/IAutoBeApplication.js.map +1 -0
- package/lib/agent/src/context/IAutoBeApplicationProps.d.ts +4 -0
- package/lib/agent/src/context/IAutoBeApplicationProps.js.map +1 -0
- package/lib/agent/src/context/IAutoBeApplicationResult.d.ts +4 -0
- package/lib/agent/src/context/IAutoBeApplicationResult.js.map +1 -0
- package/lib/agent/src/context/assertSchemaModel.d.ts +2 -0
- package/lib/agent/src/context/assertSchemaModel.js.map +1 -0
- package/lib/agent/src/factory/createAgenticaHistory.d.ts +7 -0
- package/lib/agent/src/factory/createAgenticaHistory.js.map +1 -0
- package/lib/agent/src/factory/createAutoBeApplication.d.ts +7 -0
- package/lib/{factory → agent/src/factory}/createAutoBeApplication.js +1 -1
- package/lib/agent/src/factory/createAutoBeApplication.js.map +1 -0
- package/lib/agent/src/factory/createAutoBeContext.d.ts +19 -0
- package/lib/agent/src/factory/createAutoBeContext.js +214 -0
- package/lib/agent/src/factory/createAutoBeContext.js.map +1 -0
- package/lib/agent/src/factory/createAutoBeState.d.ts +3 -0
- package/lib/agent/src/factory/createAutoBeState.js.map +1 -0
- package/lib/agent/src/factory/getAutoBeGenerated.d.ts +4 -0
- package/lib/{factory → agent/src/factory}/getAutoBeGenerated.js +17 -14
- package/lib/agent/src/factory/getAutoBeGenerated.js.map +1 -0
- package/lib/agent/src/factory/getAutoBeRealizeGenerated.d.ts +7 -0
- package/lib/agent/src/factory/getAutoBeRealizeGenerated.js +27 -0
- package/lib/agent/src/factory/getAutoBeRealizeGenerated.js.map +1 -0
- package/lib/agent/src/factory/index.d.ts +1 -0
- package/lib/agent/src/factory/index.js.map +1 -0
- package/lib/agent/src/index.d.ts +6 -0
- package/lib/{index.js → agent/src/index.js} +1 -0
- package/lib/agent/src/index.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeReviewerHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeReviewerHistories.js +46 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeReviewerHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.js +30 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeWriteHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeWriteHistories.js +49 -0
- package/lib/agent/src/orchestrate/analyze/histories/transformAnalyzeWriteHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyze.d.ts +5 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyze.js +64 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyze.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeReview.d.ts +6 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeReview.js +265 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeReview.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeScenario.d.ts +4 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeScenario.js +727 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeScenario.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeWrite.d.ts +8 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeWrite.js +242 -0
- package/lib/agent/src/orchestrate/analyze/orchestrateAnalyzeWrite.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeReviewApplication.d.ts +105 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeReviewApplication.js +3 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeReviewApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeScenarioApplication.d.ts +78 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeScenarioApplication.js +3 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeScenarioApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeWriteApplication.d.ts +70 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeWriteApplication.js +3 -0
- package/lib/agent/src/orchestrate/analyze/structures/IAutoBeAnalyzeWriteApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/facade/transformFacadeStateMessage.d.ts +2 -0
- package/lib/agent/src/orchestrate/facade/transformFacadeStateMessage.js.map +1 -0
- package/lib/agent/src/orchestrate/index.d.ts +5 -0
- package/lib/agent/src/orchestrate/index.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceAssetHistories.d.ts +3 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceAssetHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.js +34 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceComplementHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceComplementHistories.js +62 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceComplementHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceEndpointHistories.d.ts +5 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceEndpointHistories.js +49 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceEndpointHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceGroupHistories.d.ts +3 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceGroupHistories.js +28 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceGroupHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceOperationHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceOperationHistories.js +51 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceOperationHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceOperationsReviewHistories.d.ts +5 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceOperationsReviewHistories.js +35 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceOperationsReviewHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfacePrerequisiteHistories.d.ts +3 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfacePrerequisiteHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceSchemaHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceSchemaHistories.js +28 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceSchemaHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceSchemasReviewHistories.d.ts +4 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceSchemasReviewHistories.js +53 -0
- package/lib/agent/src/orchestrate/interface/histories/transformInterfaceSchemasReviewHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterface.d.ts +5 -0
- package/lib/{orchestrate → agent/src/orchestrate}/interface/orchestrateInterface.js +12 -24
- package/lib/agent/src/orchestrate/interface/orchestrateInterface.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceAuthorizations.d.ts +4 -0
- package/lib/{orchestrate/interface/orchestrateInterfaceOperations.js → agent/src/orchestrate/interface/orchestrateInterfaceAuthorizations.js} +227 -562
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceAuthorizations.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceComplement.d.ts +4 -0
- package/lib/{orchestrate → agent/src/orchestrate}/interface/orchestrateInterfaceComplement.js +20 -32
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceComplement.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceEndpoints.d.ts +5 -0
- package/lib/{orchestrate → agent/src/orchestrate}/interface/orchestrateInterfaceEndpoints.js +40 -41
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceEndpoints.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceGroups.d.ts +4 -0
- package/lib/{orchestrate → agent/src/orchestrate}/interface/orchestrateInterfaceGroups.js +15 -25
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceGroups.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceOperations.d.ts +4 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceOperations.js +1768 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceOperations.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceOperationsReview.d.ts +5 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceOperationsReview.js +1317 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceOperationsReview.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceSchemas.d.ts +4 -0
- package/lib/{orchestrate → agent/src/orchestrate}/interface/orchestrateInterfaceSchemas.js +59 -71
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceSchemas.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceSchemasReview.d.ts +7 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceSchemasReview.js +467 -0
- package/lib/agent/src/orchestrate/interface/orchestrateInterfaceSchemasReview.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceAuthorizationsApplication.d.ts +47 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceAuthorizationsApplication.js +3 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceAuthorizationsApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceComplementApplication.d.ts +55 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceComplementApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceEndpointApplication.d.ts +24 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceEndpointApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceGroupApplication.d.ts +108 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceGroupApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceOperationApplication.d.ts +126 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceOperationApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceOperationsReviewApplication.d.ts +96 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceOperationsReviewApplication.js +3 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceOperationsReviewApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceSchemaApplication.d.ts +75 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutoBeInterfaceSchemaApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutobeInterfaceSchemasReviewApplication.d.ts +91 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutobeInterfaceSchemasReviewApplication.js +3 -0
- package/lib/agent/src/orchestrate/interface/structures/IAutobeInterfaceSchemasReviewApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/interface/utils/OpenApiEndpointComparator.d.ts +6 -0
- package/lib/agent/src/orchestrate/interface/utils/OpenApiEndpointComparator.js.map +1 -0
- package/lib/agent/src/orchestrate/internal/IProgress.d.ts +4 -0
- package/lib/agent/src/orchestrate/internal/IProgress.js +3 -0
- package/lib/agent/src/orchestrate/internal/IProgress.js.map +1 -0
- package/lib/{orchestrate/prisma → agent/src/orchestrate/prisma/histories}/transformPrismaComponentsHistories.d.ts +1 -1
- package/lib/{orchestrate/prisma → agent/src/orchestrate/prisma/histories}/transformPrismaComponentsHistories.js +1 -1
- package/lib/agent/src/orchestrate/prisma/histories/transformPrismaComponentsHistories.js.map +1 -0
- package/lib/{orchestrate/prisma → agent/src/orchestrate/prisma/histories}/transformPrismaCorrectHistories.js +1 -1
- package/lib/agent/src/orchestrate/prisma/histories/transformPrismaCorrectHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/histories/transformPrismaReviewHistories.d.ts +8 -0
- package/lib/agent/src/orchestrate/prisma/histories/transformPrismaReviewHistories.js +59 -0
- package/lib/agent/src/orchestrate/prisma/histories/transformPrismaReviewHistories.js.map +1 -0
- package/lib/{orchestrate/prisma → agent/src/orchestrate/prisma/histories}/transformPrismaSchemaHistories.d.ts +1 -1
- package/lib/agent/src/orchestrate/prisma/histories/transformPrismaSchemaHistories.js +48 -0
- package/lib/agent/src/orchestrate/prisma/histories/transformPrismaSchemaHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/orchestratePrisma.d.ts +5 -0
- package/lib/{orchestrate → agent/src/orchestrate}/prisma/orchestratePrisma.js +37 -40
- package/lib/agent/src/orchestrate/prisma/orchestratePrisma.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaComponent.d.ts +5 -0
- package/lib/{orchestrate → agent/src/orchestrate}/prisma/orchestratePrismaComponent.js +164 -58
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaComponent.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaCorrect.d.ts +4 -0
- package/lib/{orchestrate → agent/src/orchestrate}/prisma/orchestratePrismaCorrect.js +130 -92
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaCorrect.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaReview.d.ts +5 -0
- package/lib/{orchestrate/prisma/orchestratePrismaSchemas.js → agent/src/orchestrate/prisma/orchestratePrismaReview.js} +197 -328
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaReview.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaSchemas.d.ts +5 -0
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaSchemas.js +1625 -0
- package/lib/agent/src/orchestrate/prisma/orchestratePrismaSchemas.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaComponentApplication.d.ts +121 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaComponentApplication.js +3 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaComponentApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaCorrectApplication.d.ts +142 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaCorrectApplication.js +3 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaCorrectApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaReviewApplication.d.ts +105 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaReviewApplication.js +3 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaReviewApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaSchemaApplication.d.ts +99 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaSchemaApplication.js +3 -0
- package/lib/agent/src/orchestrate/prisma/structures/IAutoBePrismaSchemaApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/ProviderCodeComparator.d.ts +5 -0
- package/lib/agent/src/orchestrate/realize/ProviderCodeComparator.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeAuthorization.d.ts +5 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeAuthorization.js +40 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeAuthorization.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeAuthorizationCorrectHistories.d.ts +5 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeAuthorizationCorrectHistories.js +80 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeAuthorizationCorrectHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeCoderHistories.d.ts +7 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeCoderHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeCorrectHistories.d.ts +13 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeCorrectHistories.js +32 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeCorrectHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeWriteHistories.d.ts +11 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeWriteHistories.js +160 -0
- package/lib/agent/src/orchestrate/realize/histories/transformRealizeWriteHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/internal/compile.d.ts +7 -0
- package/lib/agent/src/orchestrate/realize/internal/compile.js +61 -0
- package/lib/agent/src/orchestrate/realize/internal/compile.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealize.d.ts +5 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealize.js +113 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealize.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeAuthorization.d.ts +10 -0
- package/lib/{orchestrate → agent/src/orchestrate}/realize/orchestrateRealizeAuthorization.js +84 -70
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeAuthorization.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeAuthorizationCorrect.d.ts +4 -0
- package/lib/{orchestrate → agent/src/orchestrate}/realize/orchestrateRealizeAuthorizationCorrect.js +66 -52
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeAuthorizationCorrect.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeCorrect.d.ts +9 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeCorrect.js +351 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeCorrect.js.map +1 -0
- package/lib/{orchestrate/realize/orchestrateRealizePlanner.d.ts → agent/src/orchestrate/realize/orchestrateRealizeScenario.d.ts} +5 -3
- package/lib/{orchestrate/realize/orchestrateRealizePlanner.js → agent/src/orchestrate/realize/orchestrateRealizeScenario.js} +14 -24
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeScenario.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeWrite.d.ts +9 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeWrite.js +340 -0
- package/lib/agent/src/orchestrate/realize/orchestrateRealizeWrite.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeAuthorizationApplication.d.ts +92 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeAuthorizationApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeAuthorizationCorrectApplication.d.ts +27 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeAuthorizationCorrectApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeCoderApplication.d.ts +345 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeCoderApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeCompile.d.ts +56 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeCompile.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeFailedSymbol.d.ts +2 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeFailedSymbol.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeReviewApplication.d.ts +79 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeReviewApplication.js +3 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeReviewApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeScenarioApplication.d.ts +38 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeScenarioApplication.js +3 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeScenarioApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeWriteApplication.d.ts +276 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeWriteApplication.js +3 -0
- package/lib/agent/src/orchestrate/realize/structures/IAutoBeRealizeWriteApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/utils/AuthorizationFileSystem.d.ts +5 -0
- package/lib/agent/src/orchestrate/realize/utils/AuthorizationFileSystem.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/utils/AutoBeRealizeAuthorizationFileSystem.d.ts +5 -0
- package/lib/agent/src/orchestrate/realize/utils/AutoBeRealizeAuthorizationFileSystem.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/utils/AutoBeRealizeAuthorizationReplaceImport.d.ts +4 -0
- package/lib/agent/src/orchestrate/realize/utils/AutoBeRealizeAuthorizationReplaceImport.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/utils/InternalFileSystem.d.ts +8 -0
- package/lib/agent/src/orchestrate/realize/utils/InternalFileSystem.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/utils/ProviderFileSystem.d.ts +3 -0
- package/lib/agent/src/orchestrate/realize/utils/ProviderFileSystem.js.map +1 -0
- package/lib/agent/src/orchestrate/realize/utils/replaceImportStatements.d.ts +4 -0
- package/lib/{orchestrate → agent/src/orchestrate}/realize/utils/replaceImportStatements.js +1 -0
- package/lib/agent/src/orchestrate/realize/utils/replaceImportStatements.js.map +1 -0
- package/lib/agent/src/orchestrate/test/compile/completeTestCode.d.ts +2 -0
- package/lib/agent/src/orchestrate/test/compile/completeTestCode.js.map +1 -0
- package/lib/agent/src/orchestrate/test/compile/filterTestFileName.d.ts +1 -0
- package/lib/agent/src/orchestrate/test/compile/filterTestFileName.js.map +1 -0
- package/lib/agent/src/orchestrate/test/compile/getTestExternalDeclarations.d.ts +3 -0
- package/lib/agent/src/orchestrate/test/compile/getTestExternalDeclarations.js.map +1 -0
- package/lib/agent/src/orchestrate/test/compile/getTestScenarioArtifacts.d.ts +5 -0
- package/lib/agent/src/orchestrate/test/compile/getTestScenarioArtifacts.js.map +1 -0
- package/lib/{orchestrate/test → agent/src/orchestrate/test/histories}/transformTestCorrectHistories.d.ts +1 -1
- package/lib/agent/src/orchestrate/test/histories/transformTestCorrectHistories.js.map +1 -0
- package/lib/{orchestrate/test → agent/src/orchestrate/test/histories}/transformTestHistories.d.ts +1 -1
- package/lib/agent/src/orchestrate/test/histories/transformTestHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/test/histories/transformTestScenarioHistories.d.ts +3 -0
- package/lib/agent/src/orchestrate/test/histories/transformTestScenarioHistories.js +56 -0
- package/lib/agent/src/orchestrate/test/histories/transformTestScenarioHistories.js.map +1 -0
- package/lib/{orchestrate/test → agent/src/orchestrate/test/histories}/transformTestWriteHistories.d.ts +1 -1
- package/lib/agent/src/orchestrate/test/histories/transformTestWriteHistories.js +179 -0
- package/lib/agent/src/orchestrate/test/histories/transformTestWriteHistories.js.map +1 -0
- package/lib/agent/src/orchestrate/test/orchestrateTest.d.ts +5 -0
- package/lib/{orchestrate → agent/src/orchestrate}/test/orchestrateTest.js +12 -30
- package/lib/agent/src/orchestrate/test/orchestrateTest.js.map +1 -0
- package/lib/agent/src/orchestrate/test/orchestrateTestCorrect.d.ts +5 -0
- package/lib/{orchestrate → agent/src/orchestrate}/test/orchestrateTestCorrect.js +27 -43
- package/lib/agent/src/orchestrate/test/orchestrateTestCorrect.js.map +1 -0
- package/lib/agent/src/orchestrate/test/orchestrateTestScenario.d.ts +4 -0
- package/lib/agent/src/orchestrate/test/orchestrateTestScenario.js +858 -0
- package/lib/agent/src/orchestrate/test/orchestrateTestScenario.js.map +1 -0
- package/lib/agent/src/orchestrate/test/orchestrateTestWrite.d.ts +5 -0
- package/lib/{orchestrate → agent/src/orchestrate}/test/orchestrateTestWrite.js +53 -54
- package/lib/agent/src/orchestrate/test/orchestrateTestWrite.js.map +1 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestCorrectApplication.d.ts +121 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestCorrectApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestFunction.d.ts +8 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestFunction.js.map +1 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestScenarioApplication.d.ts +134 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestScenarioApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestScenarioArtifacts.d.ts +7 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestScenarioArtifacts.js.map +1 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestWriteApplication.d.ts +113 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestWriteApplication.js.map +1 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestWriteResult.d.ts +7 -0
- package/lib/agent/src/orchestrate/test/structures/IAutoBeTestWriteResult.js.map +1 -0
- package/lib/agent/src/structures/IAutoBeConfig.d.ts +73 -0
- package/lib/agent/src/structures/IAutoBeConfig.js.map +1 -0
- package/lib/agent/src/structures/IAutoBeProps.d.ts +109 -0
- package/lib/agent/src/structures/IAutoBeProps.js.map +1 -0
- package/lib/agent/src/structures/IAutoBeVendor.d.ts +87 -0
- package/lib/agent/src/structures/IAutoBeVendor.js.map +1 -0
- package/lib/agent/src/utils/arrayToRecord.d.ts +17 -0
- package/lib/agent/src/utils/arrayToRecord.js.map +1 -0
- package/lib/agent/src/utils/backoffRetry.d.ts +22 -0
- package/lib/agent/src/utils/backoffRetry.js.map +1 -0
- package/lib/agent/src/utils/divideArray.d.ts +4 -0
- package/lib/agent/src/utils/divideArray.js.map +1 -0
- package/lib/agent/src/utils/emplaceMap.d.ts +1 -0
- package/lib/agent/src/utils/emplaceMap.js.map +1 -0
- package/lib/{orchestrate/realize/RealizePipe.d.ts → agent/src/utils/pipe.d.ts} +1 -1
- package/lib/agent/src/utils/pipe.js.map +1 -0
- package/lib/constants/AutoBeSystemPromptConstant.d.ts +19 -17
- package/lib/context/AutoBeContext.d.ts +31 -8
- package/lib/context/AutoBeTokenUsage.d.ts +168 -11
- package/lib/context/AutoBeTokenUsageComponent.d.ts +116 -0
- package/lib/factory/createAutoBeContext.d.ts +19 -0
- package/lib/factory/getAutoBeGenerated.d.ts +1 -1
- package/lib/factory/getAutoBeRealizeGenerated.d.ts +7 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.mjs +10629 -5867
- package/lib/index.mjs.map +1 -1
- package/lib/interface/src/histories/contents/AutoBeAnalyzeFile.d.ts +153 -0
- package/lib/interface/src/histories/contents/AutoBeAnalyzeFile.js +3 -0
- package/lib/interface/src/histories/contents/AutoBeAnalyzeFile.js.map +1 -0
- package/lib/orchestrate/analyze/histories/transformAnalyzeReviewerHistories.d.ts +4 -0
- package/lib/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.d.ts +4 -0
- package/lib/orchestrate/analyze/histories/transformAnalyzeWriteHistories.d.ts +4 -0
- package/lib/orchestrate/analyze/orchestrateAnalyze.d.ts +0 -1
- package/lib/orchestrate/analyze/orchestrateAnalyzeReview.d.ts +6 -0
- package/lib/orchestrate/analyze/orchestrateAnalyzeScenario.d.ts +4 -0
- package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.d.ts +6 -12
- package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeReviewApplication.d.ts +105 -0
- package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeScenarioApplication.d.ts +78 -0
- package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeWriteApplication.d.ts +70 -0
- package/lib/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.d.ts +4 -0
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointHistories.d.ts +2 -1
- package/lib/orchestrate/interface/histories/transformInterfaceOperationsReviewHistories.d.ts +5 -0
- package/lib/orchestrate/interface/histories/transformInterfaceSchemasReviewHistories.d.ts +4 -0
- package/lib/orchestrate/interface/orchestrateInterfaceAuthorizations.d.ts +4 -0
- package/lib/orchestrate/interface/orchestrateInterfaceEndpoints.d.ts +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceGroups.d.ts +1 -1
- package/lib/orchestrate/interface/orchestrateInterfaceOperationsReview.d.ts +5 -0
- package/lib/orchestrate/interface/orchestrateInterfaceSchemasReview.d.ts +7 -0
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceAuthorizationsApplication.d.ts +47 -0
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceEndpointApplication.d.ts +2 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceOperationApplication.d.ts +6 -2
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceOperationsReviewApplication.d.ts +96 -0
- package/lib/orchestrate/interface/structures/IAutobeInterfaceSchemasReviewApplication.d.ts +91 -0
- package/lib/orchestrate/internal/IProgress.d.ts +4 -0
- package/lib/orchestrate/prisma/histories/transformPrismaComponentsHistories.d.ts +3 -0
- package/lib/orchestrate/prisma/histories/transformPrismaCorrectHistories.d.ts +3 -0
- package/lib/orchestrate/prisma/histories/transformPrismaReviewHistories.d.ts +8 -0
- package/lib/orchestrate/prisma/histories/transformPrismaSchemaHistories.d.ts +3 -0
- package/lib/orchestrate/prisma/orchestratePrisma.d.ts +1 -1
- package/lib/orchestrate/prisma/orchestratePrismaComponent.d.ts +1 -1
- package/lib/orchestrate/prisma/orchestratePrismaReview.d.ts +5 -0
- package/lib/orchestrate/prisma/orchestratePrismaSchemas.d.ts +1 -1
- package/lib/orchestrate/prisma/structures/IAutoBePrismaComponentApplication.d.ts +121 -0
- package/lib/orchestrate/prisma/structures/IAutoBePrismaCorrectApplication.d.ts +142 -0
- package/lib/orchestrate/prisma/structures/IAutoBePrismaReviewApplication.d.ts +105 -0
- package/lib/orchestrate/prisma/structures/IAutoBePrismaSchemaApplication.d.ts +99 -0
- package/lib/orchestrate/realize/histories/transformRealizeAuthorization.d.ts +5 -0
- package/lib/orchestrate/realize/histories/transformRealizeAuthorizationCorrectHistories.d.ts +5 -0
- package/lib/orchestrate/realize/histories/transformRealizeCoderHistories.d.ts +7 -0
- package/lib/orchestrate/realize/histories/transformRealizeCorrectHistories.d.ts +13 -0
- package/lib/orchestrate/realize/histories/transformRealizeWriteHistories.d.ts +11 -0
- package/lib/orchestrate/realize/internal/compile.d.ts +7 -0
- package/lib/orchestrate/realize/orchestrateRealizeCorrect.d.ts +9 -0
- package/lib/orchestrate/realize/orchestrateRealizeScenario.d.ts +91 -0
- package/lib/orchestrate/realize/orchestrateRealizeWrite.d.ts +9 -0
- package/lib/orchestrate/realize/structures/IAutoBeRealizeAuthorizationApplication.d.ts +10 -3
- package/lib/orchestrate/realize/structures/IAutoBeRealizeReviewApplication.d.ts +79 -0
- package/lib/orchestrate/realize/structures/IAutoBeRealizeScenarioApplication.d.ts +38 -0
- package/lib/orchestrate/realize/structures/IAutoBeRealizeWriteApplication.d.ts +276 -0
- package/lib/orchestrate/test/histories/transformTestCorrectHistories.d.ts +4 -0
- package/lib/orchestrate/test/histories/transformTestHistories.d.ts +3 -0
- package/lib/orchestrate/test/histories/transformTestScenarioHistories.d.ts +3 -0
- package/lib/orchestrate/test/histories/transformTestWriteHistories.d.ts +8 -0
- package/lib/orchestrate/test/orchestrateTestScenario.d.ts +2 -2
- package/lib/orchestrate/test/structures/IAutoBeTestScenarioApplication.d.ts +25 -24
- package/lib/orchestrate/test/structures/IAutoBeTestWriteApplication.d.ts +2 -1
- package/package.json +10 -10
- package/src/AutoBeAgent.ts +45 -10
- package/src/AutoBeMockAgent.ts +41 -11
- package/src/constants/AutoBeSystemPromptConstant.ts +19 -17
- package/src/context/AutoBeContext.ts +60 -7
- package/src/context/AutoBeTokenUsage.ts +260 -54
- package/src/context/AutoBeTokenUsageComponent.ts +198 -0
- package/src/factory/createAutoBeApplication.ts +4 -12
- package/src/factory/createAutoBeContext.ts +256 -0
- package/src/factory/getAutoBeGenerated.ts +17 -24
- package/src/factory/getAutoBeRealizeGenerated.ts +30 -0
- package/src/index.ts +1 -0
- package/src/orchestrate/analyze/histories/transformAnalyzeReviewerHistories.ts +53 -0
- package/src/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.ts +34 -0
- package/src/orchestrate/analyze/histories/transformAnalyzeWriteHistories.ts +56 -0
- package/src/orchestrate/analyze/orchestrateAnalyze.ts +61 -109
- package/src/orchestrate/analyze/orchestrateAnalyzeReview.ts +89 -0
- package/src/orchestrate/analyze/orchestrateAnalyzeScenario.ts +123 -0
- package/src/orchestrate/analyze/orchestrateAnalyzeWrite.ts +51 -52
- package/src/orchestrate/analyze/structures/IAutoBeAnalyzeReviewApplication.ts +108 -0
- package/src/orchestrate/analyze/structures/IAutoBeAnalyzeScenarioApplication.ts +85 -0
- package/src/orchestrate/analyze/structures/IAutoBeAnalyzeWriteApplication.ts +71 -0
- package/src/orchestrate/interface/histories/transformInterfaceAuthorizationsHistories.ts +40 -0
- package/src/orchestrate/interface/histories/transformInterfaceEndpointHistories.ts +27 -0
- package/src/orchestrate/interface/histories/transformInterfaceOperationHistories.ts +45 -22
- package/src/orchestrate/interface/histories/transformInterfaceOperationsReviewHistories.ts +43 -0
- package/src/orchestrate/interface/histories/transformInterfaceSchemasReviewHistories.ts +63 -0
- package/src/orchestrate/interface/orchestrateInterface.ts +14 -23
- package/src/orchestrate/interface/orchestrateInterfaceAuthorizations.ts +106 -0
- package/src/orchestrate/interface/orchestrateInterfaceComplement.ts +27 -44
- package/src/orchestrate/interface/orchestrateInterfaceEndpoints.ts +28 -34
- package/src/orchestrate/interface/orchestrateInterfaceGroups.ts +15 -32
- package/src/orchestrate/interface/orchestrateInterfaceOperations.ts +207 -103
- package/src/orchestrate/interface/orchestrateInterfaceOperationsReview.ts +84 -0
- package/src/orchestrate/interface/orchestrateInterfaceSchemas.ts +72 -82
- package/src/orchestrate/interface/orchestrateInterfaceSchemasReview.ts +143 -0
- package/src/orchestrate/interface/structures/IAutoBeInterfaceAuthorizationsApplication.ts +49 -0
- package/src/orchestrate/interface/structures/IAutoBeInterfaceEndpointApplication.ts +2 -1
- package/src/orchestrate/interface/structures/IAutoBeInterfaceOperationApplication.ts +6 -2
- package/src/orchestrate/interface/structures/IAutoBeInterfaceOperationsReviewApplication.ts +102 -0
- package/src/orchestrate/interface/structures/IAutobeInterfaceSchemasReviewApplication.ts +98 -0
- package/src/orchestrate/internal/IProgress.ts +4 -0
- package/src/orchestrate/prisma/{transformPrismaComponentsHistories.ts → histories/transformPrismaComponentsHistories.ts} +2 -2
- package/src/orchestrate/prisma/{transformPrismaCorrectHistories.ts → histories/transformPrismaCorrectHistories.ts} +1 -1
- package/src/orchestrate/prisma/histories/transformPrismaReviewHistories.ts +66 -0
- package/src/orchestrate/prisma/{transformPrismaSchemaHistories.ts → histories/transformPrismaSchemaHistories.ts} +3 -3
- package/src/orchestrate/prisma/orchestratePrisma.ts +73 -67
- package/src/orchestrate/prisma/orchestratePrismaComponent.ts +27 -112
- package/src/orchestrate/prisma/orchestratePrismaCorrect.ts +100 -202
- package/src/orchestrate/prisma/orchestratePrismaReview.ts +118 -0
- package/src/orchestrate/prisma/orchestratePrismaSchemas.ts +137 -210
- package/src/orchestrate/prisma/structures/IAutoBePrismaComponentApplication.ts +125 -0
- package/src/orchestrate/prisma/structures/IAutoBePrismaCorrectApplication.ts +144 -0
- package/src/orchestrate/prisma/structures/IAutoBePrismaReviewApplication.ts +108 -0
- package/src/orchestrate/prisma/structures/IAutoBePrismaSchemaApplication.ts +101 -0
- package/src/orchestrate/realize/{transformRealizeAuthorization.ts → histories/transformRealizeAuthorization.ts} +14 -10
- package/src/orchestrate/realize/{transformRealizeAuthorizationCorrectHistories.ts → histories/transformRealizeAuthorizationCorrectHistories.ts} +9 -7
- package/src/orchestrate/realize/{transformRealizeCoderHistories.ts → histories/transformRealizeCoderHistories.ts} +6 -6
- package/src/orchestrate/realize/histories/transformRealizeCorrectHistories.ts +47 -0
- package/src/orchestrate/realize/histories/transformRealizeWriteHistories.ts +184 -0
- package/src/orchestrate/realize/internal/compile.ts +84 -0
- package/src/orchestrate/realize/orchestrateRealize.ts +118 -40
- package/src/orchestrate/realize/orchestrateRealizeAuthorization.ts +45 -57
- package/src/orchestrate/realize/orchestrateRealizeAuthorizationCorrect.ts +19 -41
- package/src/orchestrate/realize/orchestrateRealizeCorrect.ts +118 -0
- package/src/orchestrate/realize/{orchestrateRealizePlanner.ts → orchestrateRealizeScenario.ts} +15 -15
- package/src/orchestrate/realize/orchestrateRealizeWrite.ts +120 -0
- package/src/orchestrate/realize/structures/IAutoBeRealizeAuthorizationApplication.ts +11 -3
- package/src/orchestrate/realize/structures/IAutoBeRealizeReviewApplication.ts +81 -0
- package/src/orchestrate/realize/structures/IAutoBeRealizeScenarioApplication.ts +43 -0
- package/src/orchestrate/realize/structures/IAutoBeRealizeWriteApplication.ts +282 -0
- package/src/orchestrate/realize/utils/replaceImportStatements.ts +3 -1
- package/src/orchestrate/test/experimental/orchestrateTestCorrect.ast +5 -9
- package/src/orchestrate/test/experimental/orchestrateTestWrite.ast +23 -22
- package/src/orchestrate/test/{transformTestCorrectHistories.ts → histories/transformTestCorrectHistories.ts} +2 -2
- package/src/orchestrate/test/{transformTestHistories.ts → histories/transformTestHistories.ts} +1 -1
- package/src/orchestrate/test/histories/transformTestScenarioHistories.ts +70 -0
- package/src/orchestrate/test/{transformTestWriteHistories.ts → histories/transformTestWriteHistories.ts} +3 -3
- package/src/orchestrate/test/orchestrateTest.ts +11 -32
- package/src/orchestrate/test/orchestrateTestCorrect.ts +32 -62
- package/src/orchestrate/test/orchestrateTestScenario.ts +95 -158
- package/src/orchestrate/test/orchestrateTestWrite.ts +48 -71
- package/src/orchestrate/test/structures/IAutoBeTestScenarioApplication.ts +25 -24
- package/src/orchestrate/test/structures/IAutoBeTestWriteApplication.ts +3 -1
- package/lib/AutoBeAgent.js.map +0 -1
- package/lib/AutoBeAgentBase.js.map +0 -1
- package/lib/AutoBeMockAgent.js.map +0 -1
- package/lib/constants/AutoBeSystemPromptConstant.js.map +0 -1
- package/lib/context/AutoBeContext.js.map +0 -1
- package/lib/context/AutoBeState.js.map +0 -1
- package/lib/context/AutoBeTokenUsage.js +0 -61
- package/lib/context/AutoBeTokenUsage.js.map +0 -1
- package/lib/context/IAutoBeApplication.js.map +0 -1
- package/lib/context/IAutoBeApplicationProps.js.map +0 -1
- package/lib/context/IAutoBeApplicationResult.js.map +0 -1
- package/lib/context/assertSchemaModel.js.map +0 -1
- package/lib/factory/createAgenticaHistory.js.map +0 -1
- package/lib/factory/createAutoBeApplication.js.map +0 -1
- package/lib/factory/createAutoBeState.js.map +0 -1
- package/lib/factory/getAutoBeGenerated.js.map +0 -1
- package/lib/factory/index.js.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/orchestrate/analyze/AutoBeAnalyzeFileSystem.d.ts +0 -45
- package/lib/orchestrate/analyze/AutoBeAnalyzeFileSystem.js +0 -27
- package/lib/orchestrate/analyze/AutoBeAnalyzeFileSystem.js.map +0 -1
- package/lib/orchestrate/analyze/AutoBeAnalyzePointer.d.ts +0 -9
- package/lib/orchestrate/analyze/AutoBeAnalyzePointer.js +0 -3
- package/lib/orchestrate/analyze/AutoBeAnalyzePointer.js.map +0 -1
- package/lib/orchestrate/analyze/orchestrateAnalyze.js +0 -125
- package/lib/orchestrate/analyze/orchestrateAnalyze.js.map +0 -1
- package/lib/orchestrate/analyze/orchestrateAnalyzeComposer.d.ts +0 -5
- package/lib/orchestrate/analyze/orchestrateAnalyzeComposer.js +0 -561
- package/lib/orchestrate/analyze/orchestrateAnalyzeComposer.js.map +0 -1
- package/lib/orchestrate/analyze/orchestrateAnalyzeReviewer.d.ts +0 -12
- package/lib/orchestrate/analyze/orchestrateAnalyzeReviewer.js +0 -395
- package/lib/orchestrate/analyze/orchestrateAnalyzeReviewer.js.map +0 -1
- package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.js +0 -347
- package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.js.map +0 -1
- package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeComposerApplication.d.ts +0 -68
- package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeComposerApplication.js +0 -3
- package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeComposerApplication.js.map +0 -1
- package/lib/orchestrate/analyze/transformAnalyzeReviewerHistories.d.ts +0 -5
- package/lib/orchestrate/analyze/transformAnalyzeReviewerHistories.js +0 -27
- package/lib/orchestrate/analyze/transformAnalyzeReviewerHistories.js.map +0 -1
- package/lib/orchestrate/analyze/transformAnalyzeWriteHistories.d.ts +0 -12
- package/lib/orchestrate/analyze/transformAnalyzeWriteHistories.js +0 -78
- package/lib/orchestrate/analyze/transformAnalyzeWriteHistories.js.map +0 -1
- package/lib/orchestrate/analyze/writeDocumentUntilReviewPassed.d.ts +0 -16
- package/lib/orchestrate/analyze/writeDocumentUntilReviewPassed.js +0 -79
- package/lib/orchestrate/analyze/writeDocumentUntilReviewPassed.js.map +0 -1
- package/lib/orchestrate/facade/transformFacadeStateMessage.js.map +0 -1
- package/lib/orchestrate/index.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfaceAssetHistories.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfaceComplementHistories.js +0 -62
- package/lib/orchestrate/interface/histories/transformInterfaceComplementHistories.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointHistories.js +0 -28
- package/lib/orchestrate/interface/histories/transformInterfaceEndpointHistories.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfaceGroupHistories.js +0 -28
- package/lib/orchestrate/interface/histories/transformInterfaceGroupHistories.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfaceOperationHistories.js +0 -28
- package/lib/orchestrate/interface/histories/transformInterfaceOperationHistories.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfacePrerequisiteHistories.js.map +0 -1
- package/lib/orchestrate/interface/histories/transformInterfaceSchemaHistories.js +0 -28
- package/lib/orchestrate/interface/histories/transformInterfaceSchemaHistories.js.map +0 -1
- package/lib/orchestrate/interface/orchestrateInterface.js.map +0 -1
- package/lib/orchestrate/interface/orchestrateInterfaceComplement.js.map +0 -1
- package/lib/orchestrate/interface/orchestrateInterfaceEndpoints.js.map +0 -1
- package/lib/orchestrate/interface/orchestrateInterfaceGroups.js.map +0 -1
- package/lib/orchestrate/interface/orchestrateInterfaceOperations.js.map +0 -1
- package/lib/orchestrate/interface/orchestrateInterfaceSchemas.js.map +0 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceComplementApplication.js.map +0 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceEndpointApplication.js.map +0 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceGroupApplication.js.map +0 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceOperationApplication.js.map +0 -1
- package/lib/orchestrate/interface/structures/IAutoBeInterfaceSchemaApplication.js.map +0 -1
- package/lib/orchestrate/interface/utils/OpenApiEndpointComparator.js.map +0 -1
- package/lib/orchestrate/prisma/orchestratePrisma.js.map +0 -1
- package/lib/orchestrate/prisma/orchestratePrismaComponent.js.map +0 -1
- package/lib/orchestrate/prisma/orchestratePrismaCorrect.js.map +0 -1
- package/lib/orchestrate/prisma/orchestratePrismaSchemas.js.map +0 -1
- package/lib/orchestrate/prisma/transformPrismaComponentsHistories.js.map +0 -1
- package/lib/orchestrate/prisma/transformPrismaCorrectHistories.js.map +0 -1
- package/lib/orchestrate/prisma/transformPrismaHistories.d.ts +0 -3
- package/lib/orchestrate/prisma/transformPrismaHistories.js +0 -55
- package/lib/orchestrate/prisma/transformPrismaHistories.js.map +0 -1
- package/lib/orchestrate/prisma/transformPrismaSchemaHistories.js +0 -48
- package/lib/orchestrate/prisma/transformPrismaSchemaHistories.js.map +0 -1
- package/lib/orchestrate/realize/ProviderCodeComparator.js.map +0 -1
- package/lib/orchestrate/realize/RealizePipe.js +0 -14
- package/lib/orchestrate/realize/RealizePipe.js.map +0 -1
- package/lib/orchestrate/realize/orchestrateRealize.js +0 -74
- package/lib/orchestrate/realize/orchestrateRealize.js.map +0 -1
- package/lib/orchestrate/realize/orchestrateRealizeAuthorization.js.map +0 -1
- package/lib/orchestrate/realize/orchestrateRealizeAuthorizationCorrect.js.map +0 -1
- package/lib/orchestrate/realize/orchestrateRealizeCoder.d.ts +0 -26
- package/lib/orchestrate/realize/orchestrateRealizeCoder.js +0 -420
- package/lib/orchestrate/realize/orchestrateRealizeCoder.js.map +0 -1
- package/lib/orchestrate/realize/orchestrateRealizePlanner.js.map +0 -1
- package/lib/orchestrate/realize/structures/IAutoBeRealizeAuthorizationApplication.js.map +0 -1
- package/lib/orchestrate/realize/structures/IAutoBeRealizeAuthorizationCorrectApplication.js.map +0 -1
- package/lib/orchestrate/realize/structures/IAutoBeRealizeCoderApplication.js.map +0 -1
- package/lib/orchestrate/realize/structures/IAutoBeRealizeCompile.js.map +0 -1
- package/lib/orchestrate/realize/structures/IAutoBeRealizeFailedSymbol.js.map +0 -1
- package/lib/orchestrate/realize/transformRealizeAuthorization.d.ts +0 -4
- package/lib/orchestrate/realize/transformRealizeAuthorization.js +0 -39
- package/lib/orchestrate/realize/transformRealizeAuthorization.js.map +0 -1
- package/lib/orchestrate/realize/transformRealizeAuthorizationCorrectHistories.d.ts +0 -5
- package/lib/orchestrate/realize/transformRealizeAuthorizationCorrectHistories.js +0 -80
- package/lib/orchestrate/realize/transformRealizeAuthorizationCorrectHistories.js.map +0 -1
- package/lib/orchestrate/realize/transformRealizeCoderHistories.d.ts +0 -7
- package/lib/orchestrate/realize/transformRealizeCoderHistories.js.map +0 -1
- package/lib/orchestrate/realize/utils/AuthorizationFileSystem.js.map +0 -1
- package/lib/orchestrate/realize/utils/AutoBeRealizeAuthorizationFileSystem.js.map +0 -1
- package/lib/orchestrate/realize/utils/AutoBeRealizeAuthorizationReplaceImport.js.map +0 -1
- package/lib/orchestrate/realize/utils/InternalFileSystem.js.map +0 -1
- package/lib/orchestrate/realize/utils/ProviderFileSystem.js.map +0 -1
- package/lib/orchestrate/realize/utils/replaceImportStatements.js.map +0 -1
- package/lib/orchestrate/realize/writeCodeUntilCompilePassed.d.ts +0 -11
- package/lib/orchestrate/realize/writeCodeUntilCompilePassed.js +0 -221
- package/lib/orchestrate/realize/writeCodeUntilCompilePassed.js.map +0 -1
- package/lib/orchestrate/test/compile/completeTestCode.js.map +0 -1
- package/lib/orchestrate/test/compile/filterTestFileName.js.map +0 -1
- package/lib/orchestrate/test/compile/getTestExternalDeclarations.js.map +0 -1
- package/lib/orchestrate/test/compile/getTestScenarioArtifacts.js.map +0 -1
- package/lib/orchestrate/test/orchestrateTest.js.map +0 -1
- package/lib/orchestrate/test/orchestrateTestCorrect.js.map +0 -1
- package/lib/orchestrate/test/orchestrateTestScenario.js +0 -866
- package/lib/orchestrate/test/orchestrateTestScenario.js.map +0 -1
- package/lib/orchestrate/test/orchestrateTestWrite.js.map +0 -1
- package/lib/orchestrate/test/structures/IAutoBeTestCorrectApplication.js.map +0 -1
- package/lib/orchestrate/test/structures/IAutoBeTestFunction.js.map +0 -1
- package/lib/orchestrate/test/structures/IAutoBeTestScenarioApplication.js.map +0 -1
- package/lib/orchestrate/test/structures/IAutoBeTestScenarioArtifacts.js.map +0 -1
- package/lib/orchestrate/test/structures/IAutoBeTestWriteApplication.js.map +0 -1
- package/lib/orchestrate/test/structures/IAutoBeTestWriteResult.js.map +0 -1
- package/lib/orchestrate/test/transformTestCorrectHistories.js.map +0 -1
- package/lib/orchestrate/test/transformTestHistories.js.map +0 -1
- package/lib/orchestrate/test/transformTestScenarioHistories.d.ts +0 -3
- package/lib/orchestrate/test/transformTestScenarioHistories.js +0 -100
- package/lib/orchestrate/test/transformTestScenarioHistories.js.map +0 -1
- package/lib/orchestrate/test/transformTestWriteHistories.js +0 -178
- package/lib/orchestrate/test/transformTestWriteHistories.js.map +0 -1
- package/lib/structures/IAutoBeConfig.js.map +0 -1
- package/lib/structures/IAutoBeProps.js.map +0 -1
- package/lib/structures/IAutoBeVendor.js.map +0 -1
- package/lib/utils/arrayToRecord.js.map +0 -1
- package/lib/utils/backoffRetry.js.map +0 -1
- package/lib/utils/divideArray.js.map +0 -1
- package/lib/utils/emplaceMap.js.map +0 -1
- package/lib/utils/enforceToolCall.d.ts +0 -3
- package/lib/utils/enforceToolCall.js +0 -13
- package/lib/utils/enforceToolCall.js.map +0 -1
- package/lib/utils/forceRetry.d.ts +0 -1
- package/lib/utils/forceRetry.js +0 -26
- package/lib/utils/forceRetry.js.map +0 -1
- package/lib/utils/pipe.js.map +0 -1
- package/src/orchestrate/analyze/AutoBeAnalyzeFileSystem.ts +0 -58
- package/src/orchestrate/analyze/AutoBeAnalyzePointer.ts +0 -10
- package/src/orchestrate/analyze/orchestrateAnalyzeComposer.ts +0 -112
- package/src/orchestrate/analyze/orchestrateAnalyzeReviewer.ts +0 -131
- package/src/orchestrate/analyze/structures/IAutoBeAnalyzeComposerApplication.ts +0 -75
- package/src/orchestrate/analyze/transformAnalyzeReviewerHistories.ts +0 -31
- package/src/orchestrate/analyze/transformAnalyzeWriteHistories.ts +0 -94
- package/src/orchestrate/analyze/writeDocumentUntilReviewPassed.ts +0 -96
- package/src/orchestrate/prisma/transformPrismaHistories.ts +0 -59
- package/src/orchestrate/realize/RealizePipe.ts +0 -39
- package/src/orchestrate/realize/orchestrateRealizeCoder.ts +0 -182
- package/src/orchestrate/realize/writeCodeUntilCompilePassed.ts +0 -308
- package/src/orchestrate/test/transformTestScenarioHistories.ts +0 -105
- package/src/utils/enforceToolCall.ts +0 -13
- package/src/utils/forceRetry.ts +0 -13
- /package/lib/{AutoBeAgentBase.js → agent/src/AutoBeAgentBase.js} +0 -0
- /package/lib/{constants → agent/src/constants}/AutoBeSystemPromptConstant.js +0 -0
- /package/lib/{context → agent/src/context}/AutoBeContext.js +0 -0
- /package/lib/{context → agent/src/context}/AutoBeState.js +0 -0
- /package/lib/{context → agent/src/context}/IAutoBeApplication.js +0 -0
- /package/lib/{context → agent/src/context}/IAutoBeApplicationProps.js +0 -0
- /package/lib/{context → agent/src/context}/IAutoBeApplicationResult.js +0 -0
- /package/lib/{context → agent/src/context}/assertSchemaModel.js +0 -0
- /package/lib/{factory → agent/src/factory}/createAgenticaHistory.js +0 -0
- /package/lib/{factory → agent/src/factory}/createAutoBeState.js +0 -0
- /package/lib/{factory → agent/src/factory}/index.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/facade/transformFacadeStateMessage.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/index.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/histories/transformInterfaceAssetHistories.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/histories/transformInterfacePrerequisiteHistories.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/structures/IAutoBeInterfaceComplementApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/structures/IAutoBeInterfaceEndpointApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/structures/IAutoBeInterfaceGroupApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/structures/IAutoBeInterfaceOperationApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/structures/IAutoBeInterfaceSchemaApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/interface/utils/OpenApiEndpointComparator.js +0 -0
- /package/lib/{orchestrate/prisma → agent/src/orchestrate/prisma/histories}/transformPrismaCorrectHistories.d.ts +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/ProviderCodeComparator.js +0 -0
- /package/lib/{orchestrate/realize → agent/src/orchestrate/realize/histories}/transformRealizeCoderHistories.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/structures/IAutoBeRealizeAuthorizationApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/structures/IAutoBeRealizeAuthorizationCorrectApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/structures/IAutoBeRealizeCoderApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/structures/IAutoBeRealizeCompile.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/structures/IAutoBeRealizeFailedSymbol.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/utils/AuthorizationFileSystem.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/utils/AutoBeRealizeAuthorizationFileSystem.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/utils/AutoBeRealizeAuthorizationReplaceImport.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/utils/InternalFileSystem.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/realize/utils/ProviderFileSystem.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/compile/completeTestCode.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/compile/filterTestFileName.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/compile/getTestExternalDeclarations.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/compile/getTestScenarioArtifacts.js +0 -0
- /package/lib/{orchestrate/test → agent/src/orchestrate/test/histories}/transformTestCorrectHistories.js +0 -0
- /package/lib/{orchestrate/test → agent/src/orchestrate/test/histories}/transformTestHistories.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/structures/IAutoBeTestCorrectApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/structures/IAutoBeTestFunction.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/structures/IAutoBeTestScenarioApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/structures/IAutoBeTestScenarioArtifacts.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/structures/IAutoBeTestWriteApplication.js +0 -0
- /package/lib/{orchestrate → agent/src/orchestrate}/test/structures/IAutoBeTestWriteResult.js +0 -0
- /package/lib/{structures → agent/src/structures}/IAutoBeConfig.js +0 -0
- /package/lib/{structures → agent/src/structures}/IAutoBeProps.js +0 -0
- /package/lib/{structures → agent/src/structures}/IAutoBeVendor.js +0 -0
- /package/lib/{utils → agent/src/utils}/arrayToRecord.js +0 -0
- /package/lib/{utils → agent/src/utils}/backoffRetry.js +0 -0
- /package/lib/{utils → agent/src/utils}/divideArray.js +0 -0
- /package/lib/{utils → agent/src/utils}/emplaceMap.js +0 -0
- /package/lib/{utils → agent/src/utils}/pipe.js +0 -0
|
@@ -0,0 +1,1768 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
36
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
37
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
38
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
39
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
40
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
41
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
45
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
46
|
+
};
|
|
47
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
+
exports.orchestrateInterfaceOperations = orchestrateInterfaceOperations;
|
|
49
|
+
const __typia_transform__validateReport = __importStar(require("typia/lib/internal/_validateReport.js"));
|
|
50
|
+
const __typia_transform__llmApplicationFinalize = __importStar(require("typia/lib/internal/_llmApplicationFinalize.js"));
|
|
51
|
+
const utils_1 = require("@autobe/utils");
|
|
52
|
+
const tstl_1 = require("tstl");
|
|
53
|
+
const typia_1 = __importDefault(require("typia"));
|
|
54
|
+
const Escaper_1 = require("typia/lib/utils/Escaper");
|
|
55
|
+
const NamingConvention_1 = require("typia/lib/utils/NamingConvention");
|
|
56
|
+
const assertSchemaModel_1 = require("../../context/assertSchemaModel");
|
|
57
|
+
const divideArray_1 = require("../../utils/divideArray");
|
|
58
|
+
const emplaceMap_1 = require("../../utils/emplaceMap");
|
|
59
|
+
const transformInterfaceOperationHistories_1 = require("./histories/transformInterfaceOperationHistories");
|
|
60
|
+
const orchestrateInterfaceOperationsReview_1 = require("./orchestrateInterfaceOperationsReview");
|
|
61
|
+
const OpenApiEndpointComparator_1 = require("./utils/OpenApiEndpointComparator");
|
|
62
|
+
function orchestrateInterfaceOperations(ctx_1, endpoints_1) {
|
|
63
|
+
return __awaiter(this, arguments, void 0, function* (ctx, endpoints, capacity = 12) {
|
|
64
|
+
const matrix = (0, divideArray_1.divideArray)({
|
|
65
|
+
array: endpoints,
|
|
66
|
+
capacity,
|
|
67
|
+
});
|
|
68
|
+
const operationsProgress = {
|
|
69
|
+
total: endpoints.length,
|
|
70
|
+
completed: 0,
|
|
71
|
+
};
|
|
72
|
+
const operationsReviewProgress = {
|
|
73
|
+
total: endpoints.length,
|
|
74
|
+
completed: 0,
|
|
75
|
+
};
|
|
76
|
+
const operations = (yield Promise.all(matrix.map((it) => __awaiter(this, void 0, void 0, function* () {
|
|
77
|
+
const row = yield divideAndConquer(ctx, it, 3, operationsProgress, operationsReviewProgress);
|
|
78
|
+
return row;
|
|
79
|
+
})))).flat();
|
|
80
|
+
return operations;
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
function divideAndConquer(ctx, endpoints, retry, operationsProgress, operationsReviewProgress) {
|
|
84
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
85
|
+
const remained = new tstl_1.HashSet(endpoints, OpenApiEndpointComparator_1.OpenApiEndpointComparator.hashCode, OpenApiEndpointComparator_1.OpenApiEndpointComparator.equals);
|
|
86
|
+
const unique = new tstl_1.HashMap(OpenApiEndpointComparator_1.OpenApiEndpointComparator.hashCode, OpenApiEndpointComparator_1.OpenApiEndpointComparator.equals);
|
|
87
|
+
for (let i = 0; i < retry; ++i) {
|
|
88
|
+
if (remained.empty() === true || unique.size() >= endpoints.length)
|
|
89
|
+
break;
|
|
90
|
+
const operations = yield process(ctx, Array.from(remained), operationsProgress);
|
|
91
|
+
const newbie = yield (0, orchestrateInterfaceOperationsReview_1.orchestrateInterfaceOperationsReview)(ctx, operations, operationsReviewProgress);
|
|
92
|
+
for (const item of newbie) {
|
|
93
|
+
unique.set(item, item);
|
|
94
|
+
remained.erase(item);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
return unique.toJSON().map((it) => it.second);
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
function process(ctx, endpoints, progress) {
|
|
101
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
102
|
+
var _a, _b, _c, _d;
|
|
103
|
+
const prefix = NamingConvention_1.NamingConvention.camel(ctx.state().analyze.prefix);
|
|
104
|
+
const pointer = {
|
|
105
|
+
value: null,
|
|
106
|
+
};
|
|
107
|
+
const { tokenUsage } = yield ctx.conversate({
|
|
108
|
+
source: "interfaceOperations",
|
|
109
|
+
histories: (0, transformInterfaceOperationHistories_1.transformInterfaceOperationHistories)(ctx.state(), endpoints),
|
|
110
|
+
controller: createController({
|
|
111
|
+
model: ctx.model,
|
|
112
|
+
roles: (_b = (_a = ctx.state().analyze) === null || _a === void 0 ? void 0 : _a.roles.map((it) => it.name)) !== null && _b !== void 0 ? _b : [],
|
|
113
|
+
build: (operations) => {
|
|
114
|
+
var _a;
|
|
115
|
+
(_a = pointer.value) !== null && _a !== void 0 ? _a : (pointer.value = []);
|
|
116
|
+
const matrix = operations.map((op) => {
|
|
117
|
+
if (op.authorizationRoles.length === 0)
|
|
118
|
+
return [
|
|
119
|
+
Object.assign(Object.assign({}, op), { path: "/" +
|
|
120
|
+
[prefix, ...op.path.split("/")]
|
|
121
|
+
.filter((it) => it !== "")
|
|
122
|
+
.join("/"), authorizationRole: null }),
|
|
123
|
+
];
|
|
124
|
+
return op.authorizationRoles.map((role) => (Object.assign(Object.assign({}, op), { path: "/" +
|
|
125
|
+
[prefix, role, ...op.path.split("/")]
|
|
126
|
+
.filter((it) => it !== "")
|
|
127
|
+
.join("/"), authorizationRole: role })));
|
|
128
|
+
});
|
|
129
|
+
progress.completed += matrix.flat().length;
|
|
130
|
+
progress.total += matrix
|
|
131
|
+
.filter((it) => it.length > 1)
|
|
132
|
+
.map((it) => it.length - 1)
|
|
133
|
+
.reduce((a, b) => a + b, 0);
|
|
134
|
+
pointer.value.push(...matrix.flat());
|
|
135
|
+
},
|
|
136
|
+
}),
|
|
137
|
+
enforceFunctionCall: true,
|
|
138
|
+
message: "Make API operations",
|
|
139
|
+
});
|
|
140
|
+
if (pointer.value === null)
|
|
141
|
+
throw new Error("Failed to create operations."); // never be happened
|
|
142
|
+
ctx.dispatch(Object.assign(Object.assign({ type: "interfaceOperations", operations: pointer.value, tokenUsage }, progress), { step: (_d = (_c = ctx.state().analyze) === null || _c === void 0 ? void 0 : _c.step) !== null && _d !== void 0 ? _d : 0, created_at: new Date().toISOString() }));
|
|
143
|
+
return pointer.value;
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
function createController(props) {
|
|
147
|
+
(0, assertSchemaModel_1.assertSchemaModel)(props.model);
|
|
148
|
+
const validate = (next) => {
|
|
149
|
+
const result = (() => { const _io0 = input => Array.isArray(input.operations) && input.operations.every(elem => "object" === typeof elem && null !== elem && _io1(elem)); const _io1 = input => Array.isArray(input.authorizationRoles) && input.authorizationRoles.every(elem => "string" === typeof elem && (RegExp("^[a-z][a-zA-Z0-9]*$").test(elem) && 1 <= elem.length)) && "string" === typeof input.description && ("string" === typeof input.name && RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name)) && "string" === typeof input.specification && "string" === typeof input.summary && ("string" === typeof input.path && RegExp("^\\/[a-zA-Z0-9\\/_{}.-]*$").test(input.path)) && (Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io2(elem))) && (null === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && _io6(input.requestBody)) && (null === input.responseBody || "object" === typeof input.responseBody && null !== input.responseBody && _io7(input.responseBody)) && ("get" === input.method || "post" === input.method || "put" === input.method || "delete" === input.method || "patch" === input.method); const _io2 = input => "string" === typeof input.name && RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) && "string" === typeof input.description && ("object" === typeof input.schema && null !== input.schema && _iu0(input.schema)); const _io3 = input => (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type; const _io4 = input => (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type; const _io5 = input => (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type; const _io6 = input => "string" === typeof input.description && "string" === typeof input.typeName; const _io7 = input => "string" === typeof input.description && "string" === typeof input.typeName; const _iu0 = input => (() => {
|
|
150
|
+
if ("number" === input.type)
|
|
151
|
+
return _io4(input);
|
|
152
|
+
else if ("integer" === input.type)
|
|
153
|
+
return _io3(input);
|
|
154
|
+
else if ("string" === input.type)
|
|
155
|
+
return _io5(input);
|
|
156
|
+
else
|
|
157
|
+
return false;
|
|
158
|
+
})(); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.operations) || _report(_exceptionable, {
|
|
159
|
+
path: _path + ".operations",
|
|
160
|
+
expected: "Array<IAutoBeInterfaceOperationApplication.IOperation>",
|
|
161
|
+
value: input.operations
|
|
162
|
+
})) && input.operations.map((elem, _index4) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
163
|
+
path: _path + ".operations[" + _index4 + "]",
|
|
164
|
+
expected: "IAutoBeInterfaceOperationApplication.IOperation",
|
|
165
|
+
value: elem
|
|
166
|
+
})) && _vo1(elem, _path + ".operations[" + _index4 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
167
|
+
path: _path + ".operations[" + _index4 + "]",
|
|
168
|
+
expected: "IAutoBeInterfaceOperationApplication.IOperation",
|
|
169
|
+
value: elem
|
|
170
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
171
|
+
path: _path + ".operations",
|
|
172
|
+
expected: "Array<IAutoBeInterfaceOperationApplication.IOperation>",
|
|
173
|
+
value: input.operations
|
|
174
|
+
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [(Array.isArray(input.authorizationRoles) || _report(_exceptionable, {
|
|
175
|
+
path: _path + ".authorizationRoles",
|
|
176
|
+
expected: "Array<string & CamelPattern & MinLength<1>>",
|
|
177
|
+
value: input.authorizationRoles
|
|
178
|
+
})) && input.authorizationRoles.map((elem, _index5) => "string" === typeof elem && (RegExp("^[a-z][a-zA-Z0-9]*$").test(elem) || _report(_exceptionable, {
|
|
179
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
180
|
+
expected: "string & CamelPattern",
|
|
181
|
+
value: elem
|
|
182
|
+
})) && (1 <= elem.length || _report(_exceptionable, {
|
|
183
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
184
|
+
expected: "string & MinLength<1>",
|
|
185
|
+
value: elem
|
|
186
|
+
})) || _report(_exceptionable, {
|
|
187
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
188
|
+
expected: "(string & CamelPattern & MinLength<1>)",
|
|
189
|
+
value: elem
|
|
190
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
191
|
+
path: _path + ".authorizationRoles",
|
|
192
|
+
expected: "Array<string & CamelPattern & MinLength<1>>",
|
|
193
|
+
value: input.authorizationRoles
|
|
194
|
+
}), "string" === typeof input.description || _report(_exceptionable, {
|
|
195
|
+
path: _path + ".description",
|
|
196
|
+
expected: "string",
|
|
197
|
+
value: input.description
|
|
198
|
+
}), "string" === typeof input.name && (RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) || _report(_exceptionable, {
|
|
199
|
+
path: _path + ".name",
|
|
200
|
+
expected: "string & CamelPattern",
|
|
201
|
+
value: input.name
|
|
202
|
+
})) || _report(_exceptionable, {
|
|
203
|
+
path: _path + ".name",
|
|
204
|
+
expected: "(string & CamelPattern)",
|
|
205
|
+
value: input.name
|
|
206
|
+
}), "string" === typeof input.specification || _report(_exceptionable, {
|
|
207
|
+
path: _path + ".specification",
|
|
208
|
+
expected: "string",
|
|
209
|
+
value: input.specification
|
|
210
|
+
}), "string" === typeof input.summary || _report(_exceptionable, {
|
|
211
|
+
path: _path + ".summary",
|
|
212
|
+
expected: "string",
|
|
213
|
+
value: input.summary
|
|
214
|
+
}), "string" === typeof input.path && (RegExp("^\\/[a-zA-Z0-9\\/_{}.-]*$").test(input.path) || _report(_exceptionable, {
|
|
215
|
+
path: _path + ".path",
|
|
216
|
+
expected: "string & Pattern<\"^\\\\/[a-zA-Z0-9\\\\/_{}.-]*$\">",
|
|
217
|
+
value: input.path
|
|
218
|
+
})) || _report(_exceptionable, {
|
|
219
|
+
path: _path + ".path",
|
|
220
|
+
expected: "(string & Pattern<\"^\\\\/[a-zA-Z0-9\\\\/_{}.-]*$\">)",
|
|
221
|
+
value: input.path
|
|
222
|
+
}), (Array.isArray(input.parameters) || _report(_exceptionable, {
|
|
223
|
+
path: _path + ".parameters",
|
|
224
|
+
expected: "Array<AutoBeOpenApi.IParameter>",
|
|
225
|
+
value: input.parameters
|
|
226
|
+
})) && input.parameters.map((elem, _index6) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
227
|
+
path: _path + ".parameters[" + _index6 + "]",
|
|
228
|
+
expected: "AutoBeOpenApi.IParameter",
|
|
229
|
+
value: elem
|
|
230
|
+
})) && _vo2(elem, _path + ".parameters[" + _index6 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
231
|
+
path: _path + ".parameters[" + _index6 + "]",
|
|
232
|
+
expected: "AutoBeOpenApi.IParameter",
|
|
233
|
+
value: elem
|
|
234
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
235
|
+
path: _path + ".parameters",
|
|
236
|
+
expected: "Array<AutoBeOpenApi.IParameter>",
|
|
237
|
+
value: input.parameters
|
|
238
|
+
}), null === input.requestBody || ("object" === typeof input.requestBody && null !== input.requestBody || _report(_exceptionable, {
|
|
239
|
+
path: _path + ".requestBody",
|
|
240
|
+
expected: "(AutoBeOpenApi.IRequestBody | null)",
|
|
241
|
+
value: input.requestBody
|
|
242
|
+
})) && _vo6(input.requestBody, _path + ".requestBody", true && _exceptionable) || _report(_exceptionable, {
|
|
243
|
+
path: _path + ".requestBody",
|
|
244
|
+
expected: "(AutoBeOpenApi.IRequestBody | null)",
|
|
245
|
+
value: input.requestBody
|
|
246
|
+
}), null === input.responseBody || ("object" === typeof input.responseBody && null !== input.responseBody || _report(_exceptionable, {
|
|
247
|
+
path: _path + ".responseBody",
|
|
248
|
+
expected: "(AutoBeOpenApi.IResponseBody | null)",
|
|
249
|
+
value: input.responseBody
|
|
250
|
+
})) && _vo7(input.responseBody, _path + ".responseBody", true && _exceptionable) || _report(_exceptionable, {
|
|
251
|
+
path: _path + ".responseBody",
|
|
252
|
+
expected: "(AutoBeOpenApi.IResponseBody | null)",
|
|
253
|
+
value: input.responseBody
|
|
254
|
+
}), "get" === input.method || "post" === input.method || "put" === input.method || "delete" === input.method || "patch" === input.method || _report(_exceptionable, {
|
|
255
|
+
path: _path + ".method",
|
|
256
|
+
expected: "(\"delete\" | \"get\" | \"patch\" | \"post\" | \"put\")",
|
|
257
|
+
value: input.method
|
|
258
|
+
})].every(flag => flag); const _vo2 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) || _report(_exceptionable, {
|
|
259
|
+
path: _path + ".name",
|
|
260
|
+
expected: "string & CamelPattern",
|
|
261
|
+
value: input.name
|
|
262
|
+
})) || _report(_exceptionable, {
|
|
263
|
+
path: _path + ".name",
|
|
264
|
+
expected: "(string & CamelPattern)",
|
|
265
|
+
value: input.name
|
|
266
|
+
}), "string" === typeof input.description || _report(_exceptionable, {
|
|
267
|
+
path: _path + ".description",
|
|
268
|
+
expected: "string",
|
|
269
|
+
value: input.description
|
|
270
|
+
}), ("object" === typeof input.schema && null !== input.schema || _report(_exceptionable, {
|
|
271
|
+
path: _path + ".schema",
|
|
272
|
+
expected: "(AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IString)",
|
|
273
|
+
value: input.schema
|
|
274
|
+
})) && _vu0(input.schema, _path + ".schema", true && _exceptionable) || _report(_exceptionable, {
|
|
275
|
+
path: _path + ".schema",
|
|
276
|
+
expected: "(AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IString)",
|
|
277
|
+
value: input.schema
|
|
278
|
+
})].every(flag => flag); const _vo3 = (input, _path, _exceptionable = true) => [undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000 || _report(_exceptionable, {
|
|
279
|
+
path: _path + ".minimum",
|
|
280
|
+
expected: "number & Type<\"int64\">",
|
|
281
|
+
value: input.minimum
|
|
282
|
+
})) || _report(_exceptionable, {
|
|
283
|
+
path: _path + ".minimum",
|
|
284
|
+
expected: "((number & Type<\"int64\">) | undefined)",
|
|
285
|
+
value: input.minimum
|
|
286
|
+
}), undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000 || _report(_exceptionable, {
|
|
287
|
+
path: _path + ".maximum",
|
|
288
|
+
expected: "number & Type<\"int64\">",
|
|
289
|
+
value: input.maximum
|
|
290
|
+
})) || _report(_exceptionable, {
|
|
291
|
+
path: _path + ".maximum",
|
|
292
|
+
expected: "((number & Type<\"int64\">) | undefined)",
|
|
293
|
+
value: input.maximum
|
|
294
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
295
|
+
path: _path + ".exclusiveMinimum",
|
|
296
|
+
expected: "(number | undefined)",
|
|
297
|
+
value: input.exclusiveMinimum
|
|
298
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
299
|
+
path: _path + ".exclusiveMaximum",
|
|
300
|
+
expected: "(number | undefined)",
|
|
301
|
+
value: input.exclusiveMaximum
|
|
302
|
+
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || _report(_exceptionable, {
|
|
303
|
+
path: _path + ".multipleOf",
|
|
304
|
+
expected: "number & Type<\"uint64\">",
|
|
305
|
+
value: input.multipleOf
|
|
306
|
+
})) && (0 < input.multipleOf || _report(_exceptionable, {
|
|
307
|
+
path: _path + ".multipleOf",
|
|
308
|
+
expected: "number & ExclusiveMinimum<0>",
|
|
309
|
+
value: input.multipleOf
|
|
310
|
+
})) || _report(_exceptionable, {
|
|
311
|
+
path: _path + ".multipleOf",
|
|
312
|
+
expected: "((number & Type<\"uint64\"> & ExclusiveMinimum<0>) | undefined)",
|
|
313
|
+
value: input.multipleOf
|
|
314
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
315
|
+
path: _path + ".type",
|
|
316
|
+
expected: "\"integer\"",
|
|
317
|
+
value: input.type
|
|
318
|
+
})].every(flag => flag); const _vo4 = (input, _path, _exceptionable = true) => [undefined === input.minimum || "number" === typeof input.minimum || _report(_exceptionable, {
|
|
319
|
+
path: _path + ".minimum",
|
|
320
|
+
expected: "(number | undefined)",
|
|
321
|
+
value: input.minimum
|
|
322
|
+
}), undefined === input.maximum || "number" === typeof input.maximum || _report(_exceptionable, {
|
|
323
|
+
path: _path + ".maximum",
|
|
324
|
+
expected: "(number | undefined)",
|
|
325
|
+
value: input.maximum
|
|
326
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
327
|
+
path: _path + ".exclusiveMinimum",
|
|
328
|
+
expected: "(number | undefined)",
|
|
329
|
+
value: input.exclusiveMinimum
|
|
330
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
331
|
+
path: _path + ".exclusiveMaximum",
|
|
332
|
+
expected: "(number | undefined)",
|
|
333
|
+
value: input.exclusiveMaximum
|
|
334
|
+
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || _report(_exceptionable, {
|
|
335
|
+
path: _path + ".multipleOf",
|
|
336
|
+
expected: "number & ExclusiveMinimum<0>",
|
|
337
|
+
value: input.multipleOf
|
|
338
|
+
})) || _report(_exceptionable, {
|
|
339
|
+
path: _path + ".multipleOf",
|
|
340
|
+
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
341
|
+
value: input.multipleOf
|
|
342
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
343
|
+
path: _path + ".type",
|
|
344
|
+
expected: "\"number\"",
|
|
345
|
+
value: input.type
|
|
346
|
+
})].every(flag => flag); const _vo5 = (input, _path, _exceptionable = true) => [undefined === input.format || "string" === typeof input.format || _report(_exceptionable, {
|
|
347
|
+
path: _path + ".format",
|
|
348
|
+
expected: "(string | undefined)",
|
|
349
|
+
value: input.format
|
|
350
|
+
}), undefined === input.pattern || "string" === typeof input.pattern || _report(_exceptionable, {
|
|
351
|
+
path: _path + ".pattern",
|
|
352
|
+
expected: "(string | undefined)",
|
|
353
|
+
value: input.pattern
|
|
354
|
+
}), undefined === input.contentMediaType || "string" === typeof input.contentMediaType || _report(_exceptionable, {
|
|
355
|
+
path: _path + ".contentMediaType",
|
|
356
|
+
expected: "(string | undefined)",
|
|
357
|
+
value: input.contentMediaType
|
|
358
|
+
}), undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000 || _report(_exceptionable, {
|
|
359
|
+
path: _path + ".minLength",
|
|
360
|
+
expected: "number & Type<\"uint64\">",
|
|
361
|
+
value: input.minLength
|
|
362
|
+
})) || _report(_exceptionable, {
|
|
363
|
+
path: _path + ".minLength",
|
|
364
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
365
|
+
value: input.minLength
|
|
366
|
+
}), undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000 || _report(_exceptionable, {
|
|
367
|
+
path: _path + ".maxLength",
|
|
368
|
+
expected: "number & Type<\"uint64\">",
|
|
369
|
+
value: input.maxLength
|
|
370
|
+
})) || _report(_exceptionable, {
|
|
371
|
+
path: _path + ".maxLength",
|
|
372
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
373
|
+
value: input.maxLength
|
|
374
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
375
|
+
path: _path + ".type",
|
|
376
|
+
expected: "\"string\"",
|
|
377
|
+
value: input.type
|
|
378
|
+
})].every(flag => flag); const _vo6 = (input, _path, _exceptionable = true) => ["string" === typeof input.description || _report(_exceptionable, {
|
|
379
|
+
path: _path + ".description",
|
|
380
|
+
expected: "string",
|
|
381
|
+
value: input.description
|
|
382
|
+
}), "string" === typeof input.typeName || _report(_exceptionable, {
|
|
383
|
+
path: _path + ".typeName",
|
|
384
|
+
expected: "string",
|
|
385
|
+
value: input.typeName
|
|
386
|
+
})].every(flag => flag); const _vo7 = (input, _path, _exceptionable = true) => ["string" === typeof input.description || _report(_exceptionable, {
|
|
387
|
+
path: _path + ".description",
|
|
388
|
+
expected: "string",
|
|
389
|
+
value: input.description
|
|
390
|
+
}), "string" === typeof input.typeName || _report(_exceptionable, {
|
|
391
|
+
path: _path + ".typeName",
|
|
392
|
+
expected: "string",
|
|
393
|
+
value: input.typeName
|
|
394
|
+
})].every(flag => flag); const _vu0 = (input, _path, _exceptionable = true) => (() => {
|
|
395
|
+
if ("number" === input.type)
|
|
396
|
+
return _vo4(input, _path, true && _exceptionable);
|
|
397
|
+
else if ("integer" === input.type)
|
|
398
|
+
return _vo3(input, _path, true && _exceptionable);
|
|
399
|
+
else if ("string" === input.type)
|
|
400
|
+
return _vo5(input, _path, true && _exceptionable);
|
|
401
|
+
else
|
|
402
|
+
return _report(_exceptionable, {
|
|
403
|
+
path: _path,
|
|
404
|
+
expected: "(AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.IString)",
|
|
405
|
+
value: input
|
|
406
|
+
});
|
|
407
|
+
})(); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
408
|
+
if (false === __is(input)) {
|
|
409
|
+
errors = [];
|
|
410
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
411
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
412
|
+
path: _path + "",
|
|
413
|
+
expected: "IAutoBeInterfaceOperationApplication.IProps",
|
|
414
|
+
value: input
|
|
415
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
416
|
+
path: _path + "",
|
|
417
|
+
expected: "IAutoBeInterfaceOperationApplication.IProps",
|
|
418
|
+
value: input
|
|
419
|
+
}))(input, "$input", true);
|
|
420
|
+
const success = 0 === errors.length;
|
|
421
|
+
return success ? {
|
|
422
|
+
success,
|
|
423
|
+
data: input
|
|
424
|
+
} : {
|
|
425
|
+
success,
|
|
426
|
+
errors,
|
|
427
|
+
data: input
|
|
428
|
+
};
|
|
429
|
+
}
|
|
430
|
+
return {
|
|
431
|
+
success: true,
|
|
432
|
+
data: input
|
|
433
|
+
};
|
|
434
|
+
}; })()(next);
|
|
435
|
+
if (result.success === false)
|
|
436
|
+
return result;
|
|
437
|
+
const operations = result.data.operations;
|
|
438
|
+
const errors = [];
|
|
439
|
+
operations.forEach((op, i) => {
|
|
440
|
+
// get method has request body
|
|
441
|
+
if (op.method === "get" && op.requestBody !== null)
|
|
442
|
+
errors.push({
|
|
443
|
+
path: `$input.operations[${i}].requestBody`,
|
|
444
|
+
expected: "GET method should not have request body. Change method, or re-design the operation.",
|
|
445
|
+
value: op.requestBody,
|
|
446
|
+
});
|
|
447
|
+
// operation name
|
|
448
|
+
if (Escaper_1.Escaper.variable(op.name) === false)
|
|
449
|
+
errors.push({
|
|
450
|
+
path: `$input.operations[${i}].name`,
|
|
451
|
+
expected: "<valid_variable_name>",
|
|
452
|
+
value: op.name,
|
|
453
|
+
description: utils_1.StringUtil.trim `
|
|
454
|
+
The operation name will be converted to the API controller method
|
|
455
|
+
(function) name, so the operation.name must be a valid JavaScript
|
|
456
|
+
variable/function name.
|
|
457
|
+
|
|
458
|
+
However, what you've configured value ${JSON.stringify(op.name)}
|
|
459
|
+
is not a valid JavaScript variable/function name. Please change
|
|
460
|
+
it to a valid variable/function name.
|
|
461
|
+
`,
|
|
462
|
+
});
|
|
463
|
+
// validate roles
|
|
464
|
+
if (props.roles.length === 0)
|
|
465
|
+
op.authorizationRoles = [];
|
|
466
|
+
else if (op.authorizationRoles.length !== 0 && props.roles.length !== 0)
|
|
467
|
+
op.authorizationRoles.forEach((role, j) => {
|
|
468
|
+
if (props.roles.includes(role) === true)
|
|
469
|
+
return;
|
|
470
|
+
errors.push({
|
|
471
|
+
path: `$input.operations[${i}].authorizationRoles[${j}]`,
|
|
472
|
+
expected: `null | ${props.roles.map((str) => JSON.stringify(str)).join(" | ")}`,
|
|
473
|
+
description: [
|
|
474
|
+
`Role "${role}" is not defined in the roles list.`,
|
|
475
|
+
"",
|
|
476
|
+
"Please select one of them below, or do not define (`null`): ",
|
|
477
|
+
"",
|
|
478
|
+
...props.roles.map((role) => `- ${role}`),
|
|
479
|
+
].join("\n"),
|
|
480
|
+
value: role,
|
|
481
|
+
});
|
|
482
|
+
});
|
|
483
|
+
});
|
|
484
|
+
// validate duplicated endpoints
|
|
485
|
+
const endpoints = new tstl_1.HashMap(utils_1.AutoBeEndpointComparator.hashCode, utils_1.AutoBeEndpointComparator.equals);
|
|
486
|
+
operations.forEach((op, i) => {
|
|
487
|
+
const key = {
|
|
488
|
+
path: op.path,
|
|
489
|
+
method: op.method,
|
|
490
|
+
};
|
|
491
|
+
const it = endpoints.find(key);
|
|
492
|
+
if (it.equals(endpoints.end()) === false) {
|
|
493
|
+
const indexes = it.second;
|
|
494
|
+
errors.push({
|
|
495
|
+
path: `$input.operations[${i}].{"path"|"method"}`,
|
|
496
|
+
expected: "Unique endpoint (path and method)",
|
|
497
|
+
value: key,
|
|
498
|
+
description: [
|
|
499
|
+
`Duplicated endpoint detected (method: ${op.method}, path: ${op.path}).`,
|
|
500
|
+
"",
|
|
501
|
+
"The duplicated endpoints of others are located in below accessors.",
|
|
502
|
+
"Check them, and consider which operation endpoint would be proper to modify.",
|
|
503
|
+
...indexes.map((idx) => `- $input.operations.[${idx}].{"path"|"method"}`),
|
|
504
|
+
].join("\n"),
|
|
505
|
+
});
|
|
506
|
+
indexes.push(i);
|
|
507
|
+
}
|
|
508
|
+
else
|
|
509
|
+
endpoints.emplace(key, [i]);
|
|
510
|
+
});
|
|
511
|
+
// validate duplicated method names
|
|
512
|
+
const accessors = new Map();
|
|
513
|
+
operations.forEach((op, i) => {
|
|
514
|
+
const key = op.path
|
|
515
|
+
.split("/")
|
|
516
|
+
.filter((e) => e[0] !== "{" && e.at(-1) !== "}")
|
|
517
|
+
.filter((e) => e.length !== 0)
|
|
518
|
+
.join(".") + `.${op.name}`;
|
|
519
|
+
const indexes = (0, emplaceMap_1.emplaceMap)(accessors, key, () => []);
|
|
520
|
+
if (indexes.length !== 0) {
|
|
521
|
+
errors.push({
|
|
522
|
+
path: `$input.operations[${i}].name`,
|
|
523
|
+
expected: "Unique name in the same accessor scope.",
|
|
524
|
+
value: op.name,
|
|
525
|
+
description: [
|
|
526
|
+
`Duplicated operation accessor detected (name: ${op.name}, accessor: ${key}).`,
|
|
527
|
+
"",
|
|
528
|
+
"The operation name must be unique within the parent accessor.",
|
|
529
|
+
"In other worlds, the operation accessor determined by the name",
|
|
530
|
+
"must be unique in the OpenAPI document.",
|
|
531
|
+
"",
|
|
532
|
+
"Here is the list of elements of duplicated operation names.",
|
|
533
|
+
"Check them, and consider which operation name would be proper to modify.",
|
|
534
|
+
"",
|
|
535
|
+
...indexes
|
|
536
|
+
.map((idx) => `- ${operations[idx].name} (accessor: ${key})`)
|
|
537
|
+
.join("\n"),
|
|
538
|
+
].join("\n"),
|
|
539
|
+
});
|
|
540
|
+
}
|
|
541
|
+
indexes.push(i);
|
|
542
|
+
});
|
|
543
|
+
if (errors.length !== 0)
|
|
544
|
+
return {
|
|
545
|
+
success: false,
|
|
546
|
+
errors,
|
|
547
|
+
data: next,
|
|
548
|
+
};
|
|
549
|
+
return result;
|
|
550
|
+
};
|
|
551
|
+
const application = collection[props.model === "chatgpt" ? "chatgpt" : "claude"](validate);
|
|
552
|
+
return {
|
|
553
|
+
protocol: "class",
|
|
554
|
+
name: "interface",
|
|
555
|
+
application,
|
|
556
|
+
execute: {
|
|
557
|
+
makeOperations: (next) => {
|
|
558
|
+
props.build(next.operations);
|
|
559
|
+
},
|
|
560
|
+
},
|
|
561
|
+
};
|
|
562
|
+
}
|
|
563
|
+
const collection = {
|
|
564
|
+
chatgpt: (validate) => (() => {
|
|
565
|
+
const application = {
|
|
566
|
+
model: "chatgpt",
|
|
567
|
+
options: {
|
|
568
|
+
reference: true,
|
|
569
|
+
strict: false,
|
|
570
|
+
separate: null
|
|
571
|
+
},
|
|
572
|
+
functions: [
|
|
573
|
+
{
|
|
574
|
+
name: "makeOperations",
|
|
575
|
+
parameters: {
|
|
576
|
+
description: " Properties containing the operations to generate.\n\n------------------------------\n\nCurrent Type: {@link IAutoBeInterfaceOperationApplication.IProps}",
|
|
577
|
+
type: "object",
|
|
578
|
+
properties: {
|
|
579
|
+
operations: {
|
|
580
|
+
description: "Array of API operations to generate.\n\nEach operation in this array must include:\n\n- Specification: Detailed API specification with clear purpose and\n functionality\n- Path: Resource-centric URL path (e.g., \"/resources/{resourceId}\")\n- Method: HTTP method (get, post, put, delete, patch)\n- Description: Extremely detailed multi-paragraph description referencing\n Prisma schema comments\n- Summary: Concise one-sentence summary of the endpoint\n- Parameters: Array of all necessary parameters with descriptions and\n schema definitions\n- RequestBody: For POST/PUT/PATCH methods, with typeName referencing\n components.schemas\n- ResponseBody: With typeName referencing appropriate response type\n\nAll operations must follow strict quality standards:\n\n1. Detailed descriptions referencing Prisma schema comments\n2. Accurate parameter definitions matching path parameters\n3. Appropriate request/response body type references\n4. Consistent patterns for CRUD operations\n\nFor list retrievals (typically PATCH), include pagination, search, and\nsorting. For detail retrieval (GET), return a single resource. For\ncreation (POST), use .ICreate request body. For modification (PUT), use\n.IUpdate request body.",
|
|
581
|
+
type: "array",
|
|
582
|
+
items: {
|
|
583
|
+
$ref: "#/$defs/IAutoBeInterfaceOperationApplication.IOperation"
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
required: [
|
|
588
|
+
"operations"
|
|
589
|
+
],
|
|
590
|
+
additionalProperties: false,
|
|
591
|
+
$defs: {
|
|
592
|
+
"IAutoBeInterfaceOperationApplication.IOperation": {
|
|
593
|
+
description: "Operation of the Restful API.\n\nThis interface defines a single API endpoint with its HTTP {@link method},\n{@link path}, {@link parameters path parameters},\n{@link requestBody request body}, and {@link responseBody} structure. It\ncorresponds to an individual operation in the paths section of an OpenAPI\ndocument.\n\nEach operation requires a detailed explanation of its purpose through the\nreason and description fields, making it clear why the API was designed and\nhow it should be used.\n\nAll request bodies and responses for this operation must be object types\nand must reference named types defined in the components section. The\ncontent-type is always `application/json`. For file upload/download\noperations, use `string & tags.Format<\"uri\">` in the appropriate schema\ninstead of binary data formats.\n\nIn OpenAPI, this might represent:\n\n```json\n{\n \"/shoppings/customers/orders\": {\n \"post\": {\n \"description\": \"Create a new order application from shopping cart...\",\n \"parameters\": [...],\n \"requestBody\": {...},\n \"responses\": {...}\n }\n }\n}\n```",
|
|
594
|
+
type: "object",
|
|
595
|
+
properties: {
|
|
596
|
+
authorizationRoles: {
|
|
597
|
+
description: "Authorization roles required to access this API operation.\n\nThis field specifies which user roles are allowed to access this\nendpoint. Multiple roles can be specified to allow different types of\nusers to access the same endpoint.\n\n## Naming Convention\n\nAll role names MUST use camelCase.\n\n## Important Guidelines\n\n- Set to empty array `[]` for public endpoints that require no\n authentication\n- Set to array with role strings for role-restricted endpoints\n- The role names MUST match exactly with the user type/role defined in the\n database\n- This will be used by the Realize Agent to generate appropriate decorator\n and authorization logic in the provider functions\n- The controller will apply the corresponding authentication decorator\n based on these roles\n\n## Examples\n\n- `[]` - Public endpoint, no authentication required\n- `[\"user\"]` - Any authenticated user can access\n- `[\"admin\"]` - Only admin users can access\n- `[\"admin\", \"moderator\"]` - Both admin and moderator users can access\n- `[\"seller\"]` - Only seller users can access\n\nNote: The actual authentication/authorization implementation will be\nhandled by decorators at the controller level, and the provider function\nwill receive the authenticated user object with the appropriate type.",
|
|
598
|
+
type: "array",
|
|
599
|
+
items: {
|
|
600
|
+
description: "@minLength 1\n@pattern ^[a-z][a-zA-Z0-9]*$",
|
|
601
|
+
type: "string"
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
description: {
|
|
605
|
+
description: "Detailed description about the API operation.\n\nIMPORTANT: This field MUST be extensively detailed and MUST reference the\ndescription comments from the related Prisma DB schema tables and\ncolumns. The description should be organized into MULTIPLE PARAGRAPHS\nseparated by line breaks to improve readability and comprehension.\n\nFor example, include separate paragraphs for:\n\n- The purpose and overview of the API operation\n- Security considerations and user permissions\n- Relationship to underlying database entities\n- Validation rules and business logic\n- Related API operations that might be used together with this one\n- Expected behavior and error handling\n\nWhen writing the description, be sure to incorporate the corresponding DB\nschema's description comments, matching the level of detail and style of\nthose comments. This ensures consistency between the API documentation\nand database structure.\n\nIf there's a dependency to other APIs, please describe the dependency API\noperation in this field with detailed reason. For example, if this API\noperation needs a pre-execution of other API operation, it must be\nexplicitly described.\n\n- `GET /shoppings/customers/sales` must be pre-executed to get entire list\n of summarized sales. Detailed sale information would be obtained by\n specifying the sale ID in the path parameter.\n\n> MUST be written in English. Never use other languages.",
|
|
606
|
+
type: "string"
|
|
607
|
+
},
|
|
608
|
+
name: {
|
|
609
|
+
description: "Functional name of the API endpoint.\n\nThis is a semantic identifier that represents the primary function or\npurpose of the API endpoint. It serves as a canonical name that can be\nused for code generation, SDK method names, and internal references.\n\n## Reserved Word Restrictions\n\nCRITICAL: The name MUST NOT be a TypeScript/JavaScript reserved word, as\nit will be used as a class method name in generated code. Avoid names\nlike:\n\n- `delete`, `for`, `if`, `else`, `while`, `do`, `switch`, `case`, `break`\n- `continue`, `function`, `return`, `with`, `in`, `of`, `instanceof`\n- `typeof`, `void`, `var`, `let`, `const`, `class`, `extends`, `import`\n- `export`, `default`, `try`, `catch`, `finally`, `throw`, `new`\n- `super`, `this`, `null`, `true`, `false`, `async`, `await`\n- `yield`, `static`, `private`, `protected`, `public`, `implements`\n- `interface`, `package`, `enum`, `debugger`\n\nInstead, use alternative names for these operations:\n\n- Use `erase` instead of `delete`\n- Use `iterate` instead of `for`\n- Use `when` instead of `if`\n- Use `cls` instead of `class`\n\n## Standard Endpoint Names\n\nUse these conventional names based on the endpoint's primary function:\n\n- **`index`**: List/search operations that return multiple entities\n\n - Typically used with PATCH method for complex queries\n - Example: `PATCH /users` \u2192 `name: \"index\"`\n- **`at`**: Retrieve a specific entity by identifier\n\n - Typically used with GET method on single resource\n - Example: `GET /users/{userId}` \u2192 `name: \"at\"`\n- **`create`**: Create a new entity\n\n - Typically used with POST method\n - Example: `POST /users` \u2192 `name: \"create\"`\n- **`update`**: Update an existing entity\n\n - Typically used with PUT method\n - Example: `PUT /users/{userId}` \u2192 `name: \"update\"`\n- **`erase`**: Delete/remove an entity (NOT `delete` - reserved word!)\n\n - Typically used with DELETE method\n - Example: `DELETE /users/{userId}` \u2192 `name: \"erase\"`\n\n## Custom Endpoint Names\n\nFor specialized operations beyond basic CRUD, use descriptive verbs:\n\n- **`activate`**: Enable or turn on a feature/entity\n- **`deactivate`**: Disable or turn off a feature/entity\n- **`approve`**: Approve a request or entity\n- **`reject`**: Reject a request or entity\n- **`publish`**: Make content publicly available\n- **`archive`**: Move to archived state\n- **`restore`**: Restore from archived/deleted state\n- **`duplicate`**: Create a copy of an entity\n- **`transfer`**: Move ownership or change assignment\n- **`validate`**: Validate data or state\n- **`process`**: Execute a business process or workflow\n- **`export`**: Generate downloadable data\n- **`import`**: Process uploaded data\n\n## Naming Guidelines\n\n- MUST use camelCase naming convention\n- Use singular verb forms\n- Be concise but descriptive\n- Avoid abbreviations unless widely understood\n- Ensure the name clearly represents the endpoint's primary action\n- For nested resources, focus on the action rather than hierarchy\n- NEVER use JavaScript/TypeScript reserved words\n\nValid Examples:\n\n- `index`, `create`, `update`, `erase` (single word)\n- `updatePassword`, `cancelOrder`, `publishArticle` (camelCase)\n- `validateEmail`, `generateReport`, `exportData` (camelCase)\n\nInvalid Examples:\n\n- `update_password` (snake_case not allowed)\n- `UpdatePassword` (PascalCase not allowed)\n- `update-password` (kebab-case not allowed)\n\nPath to Name Examples:\n\n- `GET /shopping/orders/{orderId}/items` \u2192 `name: \"index\"` (lists items)\n- `POST /shopping/orders/{orderId}/cancel` \u2192 `name: \"cancel\"`\n- `PUT /users/{userId}/password` \u2192 `name: \"updatePassword\"`\n\n## Uniqueness Rule\n\nThe `name` must be unique within the API's accessor namespace. The\naccessor is formed by combining the path segments (excluding parameters)\nwith the operation name.\n\nAccessor formation:\n\n1. Extract non-parameter segments from the path (remove `{...}` parts)\n2. Join segments with dots\n3. Append the operation name\n\nExamples:\n\n- Path: `/shopping/sale/{saleId}/review/{reviewId}`, Name: `at` \u2192 Accessor:\n `shopping.sale.review.at`\n- Path: `/users/{userId}/posts`, Name: `index` \u2192 Accessor:\n `users.posts.index`\n- Path: `/auth/login`, Name: `signIn` \u2192 Accessor: `auth.login.signIn`\n\nEach accessor must be globally unique across the entire API. This ensures\noperations can be uniquely identified in generated SDKs and prevents\nnaming conflicts.\n\n\n@pattern ^[a-z][a-zA-Z0-9]*$",
|
|
610
|
+
type: "string"
|
|
611
|
+
},
|
|
612
|
+
specification: {
|
|
613
|
+
description: "Specification of the API operation.\n\nBefore defining the API operation interface, please describe what you're\nplanning to write in this `specification` field.\n\nThe specification must be fully detailed and clear, so that anyone can\nunderstand the purpose and functionality of the API operation and its\nrelated components (e.g., {@link path}, {@link parameters},\n{@link requestBody}).\n\nIMPORTANT: The specification MUST identify which Prisma DB table this\noperation is associated with, helping ensure complete coverage of all\ndatabase entities.",
|
|
614
|
+
type: "string"
|
|
615
|
+
},
|
|
616
|
+
summary: {
|
|
617
|
+
description: "Short summary of the API operation.\n\nThis should be a concise description of the API operation, typically one\nsentence long. It should provide a quick overview of what the API does\nwithout going into too much detail.\n\nThis summary will be used in the OpenAPI documentation to give users a\nquick understanding of the API operation's purpose.\n\nIMPORTANT: The summary should clearly indicate which Prisma DB table this\noperation relates to, helping to ensure all tables have API coverage.\n\n> MUST be written in English. Never use other languages",
|
|
618
|
+
type: "string"
|
|
619
|
+
},
|
|
620
|
+
path: {
|
|
621
|
+
description: "HTTP path of the API operation.\n\nThe URL path for accessing this API operation, using path parameters\nenclosed in curly braces (e.g., `/shoppings/customers/sales/{saleId}`).\n\nIt must be corresponded to the {@link parameters path parameters}.\n\nThe path structure should clearly indicate which database entity this\noperation is manipulating, helping to ensure all entities have\nappropriate API coverage.\n\nPath validation rules:\n\n- Must start with a forward slash (/)\n- Can contain only: letters (a-z, A-Z), numbers (0-9), forward slashes (/),\n curly braces for parameters ({paramName}), hyphens (-), and underscores\n (_)\n- Parameters must be enclosed in curly braces: {paramName}\n- Resource names should be in camelCase\n- No quotes, spaces, or invalid special characters allowed\n- No domain or role-based prefixes\n\nValid examples:\n\n- \"/users\"\n- \"/users/{userId}\"\n- \"/articles/{articleId}/comments\"\n- \"/attachmentFiles\"\n- \"/orders/{orderId}/items/{itemId}\"\n\nInvalid examples:\n\n- \"'/users'\" (contains quotes)\n- \"/user profile\" (contains space)\n- \"/users/[userId]\" (wrong bracket format)\n- \"/admin/users\" (role prefix)\n- \"/api/v1/users\" (API prefix)\n\n\n@pattern ^\\/[a-zA-Z0-9\\/_{}.-]*$",
|
|
622
|
+
type: "string"
|
|
623
|
+
},
|
|
624
|
+
parameters: {
|
|
625
|
+
description: "List of path parameters.\n\nNote that, the {@link AutoBeOpenApi.IParameter.name identifier name} of\npath parameter must be corresponded to the\n{@link path API operation path}.\n\nFor example, if there's an API operation which has {@link path} of\n`/shoppings/customers/sales/{saleId}/questions/${questionId}/comments/${commentId}`,\nits list of {@link AutoBeOpenApi.IParameter.name path parameters} must be\nlike:\n\n- `saleId`\n- `questionId`\n- `commentId`",
|
|
626
|
+
type: "array",
|
|
627
|
+
items: {
|
|
628
|
+
$ref: "#/$defs/AutoBeOpenApi.IParameter"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
requestBody: {
|
|
632
|
+
description: "Request body of the API operation.\n\nDefines the payload structure for the request. Contains a description and\nschema reference to define the expected input data.\n\nShould be `null` for operations that don't require a request body, such\nas most \"get\" operations.",
|
|
633
|
+
anyOf: [
|
|
634
|
+
{
|
|
635
|
+
type: "null"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
$ref: "#/$defs/AutoBeOpenApi.IRequestBody"
|
|
639
|
+
}
|
|
640
|
+
]
|
|
641
|
+
},
|
|
642
|
+
responseBody: {
|
|
643
|
+
description: "Response body of the API operation.\n\nDefines the structure of the successful response data. Contains a\ndescription and schema reference for the returned data.\n\nShould be null for operations that don't return any data.",
|
|
644
|
+
anyOf: [
|
|
645
|
+
{
|
|
646
|
+
type: "null"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
$ref: "#/$defs/AutoBeOpenApi.IResponseBody"
|
|
650
|
+
}
|
|
651
|
+
]
|
|
652
|
+
},
|
|
653
|
+
method: {
|
|
654
|
+
description: "HTTP method of the API operation.\n\nNote that, if the API operation has {@link requestBody}, method must not\nbe `get`.\n\nAlso, even though the API operation has been designed to only get\ninformation, but it needs complicated request information, it must be\ndefined as `patch` method with {@link requestBody} data specification.\n\n- `get`: get information\n- `patch`: get information with complicated request data\n ({@link requestBody})\n- `post`: create new record\n- `put`: update existing record\n- `delete`: remove record",
|
|
655
|
+
type: "string",
|
|
656
|
+
"enum": [
|
|
657
|
+
"get",
|
|
658
|
+
"post",
|
|
659
|
+
"put",
|
|
660
|
+
"delete",
|
|
661
|
+
"patch"
|
|
662
|
+
]
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
required: [
|
|
666
|
+
"authorizationRoles",
|
|
667
|
+
"description",
|
|
668
|
+
"name",
|
|
669
|
+
"specification",
|
|
670
|
+
"summary",
|
|
671
|
+
"path",
|
|
672
|
+
"parameters",
|
|
673
|
+
"requestBody",
|
|
674
|
+
"responseBody",
|
|
675
|
+
"method"
|
|
676
|
+
]
|
|
677
|
+
},
|
|
678
|
+
"AutoBeOpenApi.IParameter": {
|
|
679
|
+
description: "Path parameter information for API routes.\n\nThis interface defines a path parameter that appears in the URL of an API\nendpoint. Path parameters are enclosed in curly braces in the\n{@link AutoBeOpenApi.IOperation.path operation path} and must be defined\nwith their types and descriptions.\n\nFor example, if API operation path is\n`/shoppings/customers/sales/{saleId}/questions/${questionId}/comments/${commentId}`,\nthe path parameters should be like below:\n\n```json\n{\n \"path\": \"/shoppings/customers/sales/{saleId}/questions/${questionId}/comments/${commentId}\",\n \"method\": \"get\",\n \"parameters\": [\n {\n \"name\": \"saleId\",\n \"in\": \"path\",\n \"schema\": { \"type\": \"string\", \"format\": \"uuid\" },\n \"description\": \"Target sale's ID\"\n },\n {\n \"name\": \"questionId\",\n \"in\": \"path\",\n \"schema\": { \"type\": \"string\", \"format\": \"uuid\" },\n \"description\": \"Target question's ID\"\n },\n {\n \"name\": \"commentId\",\n \"in\": \"path\",\n \"schema\": { \"type\": \"string\", \"format\": \"uuid\" },\n \"description\": \"Target comment's ID\"\n }\n ]\n}\n```",
|
|
680
|
+
type: "object",
|
|
681
|
+
properties: {
|
|
682
|
+
name: {
|
|
683
|
+
description: "Identifier name of the path parameter.\n\nThis name must match exactly with the parameter name in the route path.\nIt must be corresponded to the\n{@link AutoBeOpenApi.IOperation.path API operation path}.\n\nMUST use camelCase naming convention.\n\n\n@pattern ^[a-z][a-zA-Z0-9]*$",
|
|
684
|
+
type: "string"
|
|
685
|
+
},
|
|
686
|
+
description: {
|
|
687
|
+
description: "Description about the path parameter.\n\nMake short, concise and clear description about the path parameter.\n\n> MUST be written in English. Never use other languages.",
|
|
688
|
+
type: "string"
|
|
689
|
+
},
|
|
690
|
+
schema: {
|
|
691
|
+
description: "Type schema of the path parameter.\n\nPath parameters are typically primitive types like\n{@link AutoBeOpenApi.IJsonSchema.IString strings},\n{@link AutoBeOpenApi.IJsonSchema.IInteger integers},\n{@link AutoBeOpenApi.IJsonSchema.INumber numbers}.\n\nIf you need other types, please use request body instead with object type\nencapsulation.",
|
|
692
|
+
anyOf: [
|
|
693
|
+
{
|
|
694
|
+
$ref: "#/$defs/AutoBeOpenApi.IJsonSchema.INumber"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
$ref: "#/$defs/AutoBeOpenApi.IJsonSchema.IInteger"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
$ref: "#/$defs/AutoBeOpenApi.IJsonSchema.IString"
|
|
701
|
+
}
|
|
702
|
+
],
|
|
703
|
+
"x-discriminator": {
|
|
704
|
+
propertyName: "type",
|
|
705
|
+
mapping: {
|
|
706
|
+
number: "#/$defs/AutoBeOpenApi.IJsonSchema.INumber",
|
|
707
|
+
integer: "#/$defs/AutoBeOpenApi.IJsonSchema.IInteger",
|
|
708
|
+
string: "#/$defs/AutoBeOpenApi.IJsonSchema.IString"
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
required: [
|
|
714
|
+
"name",
|
|
715
|
+
"description",
|
|
716
|
+
"schema"
|
|
717
|
+
]
|
|
718
|
+
},
|
|
719
|
+
"AutoBeOpenApi.IJsonSchema.INumber": {
|
|
720
|
+
description: "Number (double) type info.",
|
|
721
|
+
type: "object",
|
|
722
|
+
properties: {
|
|
723
|
+
minimum: {
|
|
724
|
+
description: "Minimum value restriction.",
|
|
725
|
+
type: "number"
|
|
726
|
+
},
|
|
727
|
+
maximum: {
|
|
728
|
+
description: "Maximum value restriction.",
|
|
729
|
+
type: "number"
|
|
730
|
+
},
|
|
731
|
+
exclusiveMinimum: {
|
|
732
|
+
description: "Exclusive minimum value restriction.",
|
|
733
|
+
type: "number"
|
|
734
|
+
},
|
|
735
|
+
exclusiveMaximum: {
|
|
736
|
+
description: "Exclusive maximum value restriction.",
|
|
737
|
+
type: "number"
|
|
738
|
+
},
|
|
739
|
+
multipleOf: {
|
|
740
|
+
description: "Multiple of value restriction.\n\n\n@exclusiveMinimum 0",
|
|
741
|
+
type: "number"
|
|
742
|
+
},
|
|
743
|
+
type: {
|
|
744
|
+
description: "Discriminator value of the type.",
|
|
745
|
+
type: "string",
|
|
746
|
+
"enum": [
|
|
747
|
+
"number"
|
|
748
|
+
]
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
required: [
|
|
752
|
+
"type"
|
|
753
|
+
]
|
|
754
|
+
},
|
|
755
|
+
"AutoBeOpenApi.IJsonSchema.IInteger": {
|
|
756
|
+
description: "Integer type info.",
|
|
757
|
+
type: "object",
|
|
758
|
+
properties: {
|
|
759
|
+
minimum: {
|
|
760
|
+
description: "Minimum value restriction.",
|
|
761
|
+
type: "integer"
|
|
762
|
+
},
|
|
763
|
+
maximum: {
|
|
764
|
+
description: "Maximum value restriction.",
|
|
765
|
+
type: "integer"
|
|
766
|
+
},
|
|
767
|
+
exclusiveMinimum: {
|
|
768
|
+
description: "Exclusive minimum value restriction.",
|
|
769
|
+
type: "number"
|
|
770
|
+
},
|
|
771
|
+
exclusiveMaximum: {
|
|
772
|
+
description: "Exclusive maximum value restriction.",
|
|
773
|
+
type: "number"
|
|
774
|
+
},
|
|
775
|
+
multipleOf: {
|
|
776
|
+
description: "Multiple of value restriction.\n\n\n@exclusiveMinimum 0",
|
|
777
|
+
type: "integer"
|
|
778
|
+
},
|
|
779
|
+
type: {
|
|
780
|
+
description: "Discriminator value of the type.",
|
|
781
|
+
type: "string",
|
|
782
|
+
"enum": [
|
|
783
|
+
"integer"
|
|
784
|
+
]
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
required: [
|
|
788
|
+
"type"
|
|
789
|
+
]
|
|
790
|
+
},
|
|
791
|
+
"AutoBeOpenApi.IJsonSchema.IString": {
|
|
792
|
+
description: "String type info.",
|
|
793
|
+
type: "object",
|
|
794
|
+
properties: {
|
|
795
|
+
format: {
|
|
796
|
+
description: "Format restriction.",
|
|
797
|
+
type: "string"
|
|
798
|
+
},
|
|
799
|
+
pattern: {
|
|
800
|
+
description: "Pattern restriction.",
|
|
801
|
+
type: "string"
|
|
802
|
+
},
|
|
803
|
+
contentMediaType: {
|
|
804
|
+
description: "Content media type restriction.",
|
|
805
|
+
type: "string"
|
|
806
|
+
},
|
|
807
|
+
minLength: {
|
|
808
|
+
description: "Minimum length restriction.\n\n\n@minimum 0",
|
|
809
|
+
type: "integer"
|
|
810
|
+
},
|
|
811
|
+
maxLength: {
|
|
812
|
+
description: "Maximum length restriction.\n\n\n@minimum 0",
|
|
813
|
+
type: "integer"
|
|
814
|
+
},
|
|
815
|
+
type: {
|
|
816
|
+
description: "Discriminator value of the type.",
|
|
817
|
+
type: "string",
|
|
818
|
+
"enum": [
|
|
819
|
+
"string"
|
|
820
|
+
]
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
required: [
|
|
824
|
+
"type"
|
|
825
|
+
]
|
|
826
|
+
},
|
|
827
|
+
"AutoBeOpenApi.IRequestBody": {
|
|
828
|
+
description: "Request body information of OpenAPI operation.\n\nThis interface defines the structure for request bodies in API routes. It\ncorresponds to the requestBody section in OpenAPI specifications, providing\nboth a description and schema reference for the request payload.\n\nThe content-type for all request bodies is always `application/json`. Even\nwhen file uploading is required, don't use `multipart/form-data` or\n`application/x-www-form-urlencoded` content types. Instead, just define an\nURI string property in the request body schema.\n\nNote that, all body schemas must be transformable to a\n{@link AutoBeOpenApi.IJsonSchema.IReference reference} type defined in the\n{@link AutoBeOpenApi.IComponents.schemas components section} as an\n{@link AutoBeOpenApi.IJsonSchema.IObject object} type.\n\nIn OpenAPI, this might represent:\n\n```json\n{\n \"requestBody\": {\n \"description\": \"Creation info of the order\",\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/IShoppingOrder.ICreate\"\n }\n }\n }\n }\n}\n```",
|
|
829
|
+
type: "object",
|
|
830
|
+
properties: {
|
|
831
|
+
description: {
|
|
832
|
+
description: "Description about the request body.\n\nMake short, concise and clear description about the request body.\n\n> MUST be written in English. Never use other languages.",
|
|
833
|
+
type: "string"
|
|
834
|
+
},
|
|
835
|
+
typeName: {
|
|
836
|
+
description: "Request body type name.\n\nThis specifies the data structure expected in the request body, that will\nbe transformed to {@link AutoBeOpenApi.IJsonSchema.IReference reference}\ntype in the {@link AutoBeOpenApi.IComponents.schemas components section}\nas an {@link AutoBeOpenApi.IJsonSchema.Object object} type.\n\nHere is the naming convention for the request body type:\n\n- `IEntityName.ICreate`: Request body for creation operations (POST)\n- `IEntityName.IUpdate`: Request body for update operations (PUT)\n- `IEntityName.IRequest`: Request parameters for list operations (often\n with search/pagination)\n\nWhat you write:\n\n```json\n{\n \"typeName\": \"IShoppingOrder.ICreate\"\n}\n```\n\nTransformed to:\n\n```json\n{\n \"schema\": {\n \"$ref\": \"#/components/schemas/IShoppingOrder.ICreate\"\n }\n}\n```",
|
|
837
|
+
type: "string"
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
required: [
|
|
841
|
+
"description",
|
|
842
|
+
"typeName"
|
|
843
|
+
]
|
|
844
|
+
},
|
|
845
|
+
"AutoBeOpenApi.IResponseBody": {
|
|
846
|
+
description: "Response body information for OpenAPI operation.\n\nThis interface defines the structure of a successful response from an API\noperation. It provides a description of the response and a schema reference\nto define the returned data structure.\n\nThe content-type for all responses is always `application/json`. Even when\nfile downloading is required, don't use `application/octet-stream` or\n`multipart/form-data` content types. Instead, just define an URI string\nproperty in the response body schema.\n\nIn OpenAPI, this might represent:\n\n```json\n{\n \"responses\": {\n \"200\": {\n \"description\": \"Order information\",\n \"content\": {\n \"application/json\": {\n \"schema\": { \"$ref\": \"#/components/schemas/IShoppingOrder\" }\n }\n }\n }\n }\n}\n```",
|
|
847
|
+
type: "object",
|
|
848
|
+
properties: {
|
|
849
|
+
description: {
|
|
850
|
+
description: "Description about the response body.\n\nMake short, concise and clear description about the response body.\n\n> MUST be written in English. Never use other languages.",
|
|
851
|
+
type: "string"
|
|
852
|
+
},
|
|
853
|
+
typeName: {
|
|
854
|
+
description: "Response body's data type.\n\nSpecifies the structure of the returned data (response body), that will\nbe transformed to {@link AutoBeOpenApi.IJsonSchema.IReference} type in the\n{@link AutoBeOpenApi.IComponents.schemas components section} as an\n{@link AutoBeOpenApi.IJsonSchema.IObject object} type.\n\nHere is the naming convention for the response body type:\n\n- `IEntityName`: Main entity with detailed information (e.g.,\n `IShoppingSale`)\n- `IEntityName.ISummary`: Simplified response version with essential\n properties\n- `IEntityName.IInvert`: Alternative view of an entity from a different\n perspective\n- `IPageIEntityName`: Paginated results container with `pagination` and\n `data` properties\n\nWhat you write:\n\n```json\n{\n \"typeName\": \"IShoppingOrder\"\n}\n```\n\nTransformed to:\n\n```json\n{\n \"schema\": {\n \"$ref\": \"#/components/schemas/IShoppingOrder\"\n }\n}\n```",
|
|
855
|
+
type: "string"
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
required: [
|
|
859
|
+
"description",
|
|
860
|
+
"typeName"
|
|
861
|
+
]
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
description: "Generate detailed API operations from path/method combinations.\n\nThis function creates complete API operations following REST principles and\nquality standards. Each generated operation includes specification, path,\nmethod, detailed multi-paragraph description, concise summary, parameters,\nand appropriate request/response bodies.\n\nThe function processes as many operations as possible in a single call,\nwith progress tracking to ensure iterative completion of all required\nendpoints.",
|
|
866
|
+
validate: (() => { const _io0 = input => Array.isArray(input.operations) && input.operations.every(elem => "object" === typeof elem && null !== elem && _io1(elem)); const _io1 = input => Array.isArray(input.authorizationRoles) && input.authorizationRoles.every(elem => "string" === typeof elem && (RegExp("^[a-z][a-zA-Z0-9]*$").test(elem) && 1 <= elem.length)) && "string" === typeof input.description && ("string" === typeof input.name && RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name)) && "string" === typeof input.specification && "string" === typeof input.summary && ("string" === typeof input.path && RegExp("^\\/[a-zA-Z0-9\\/_{}.-]*$").test(input.path)) && (Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io2(elem))) && (null === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && _io6(input.requestBody)) && (null === input.responseBody || "object" === typeof input.responseBody && null !== input.responseBody && _io7(input.responseBody)) && ("get" === input.method || "post" === input.method || "put" === input.method || "delete" === input.method || "patch" === input.method); const _io2 = input => "string" === typeof input.name && RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) && "string" === typeof input.description && ("object" === typeof input.schema && null !== input.schema && _iu0(input.schema)); const _io3 = input => (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type; const _io4 = input => (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type; const _io5 = input => (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type; const _io6 = input => "string" === typeof input.description && "string" === typeof input.typeName; const _io7 = input => "string" === typeof input.description && "string" === typeof input.typeName; const _iu0 = input => (() => {
|
|
867
|
+
if ("number" === input.type)
|
|
868
|
+
return _io4(input);
|
|
869
|
+
else if ("integer" === input.type)
|
|
870
|
+
return _io3(input);
|
|
871
|
+
else if ("string" === input.type)
|
|
872
|
+
return _io5(input);
|
|
873
|
+
else
|
|
874
|
+
return false;
|
|
875
|
+
})(); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.operations) || _report(_exceptionable, {
|
|
876
|
+
path: _path + ".operations",
|
|
877
|
+
expected: "Array<IAutoBeInterfaceOperationApplication.IOperation>",
|
|
878
|
+
value: input.operations
|
|
879
|
+
})) && input.operations.map((elem, _index4) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
880
|
+
path: _path + ".operations[" + _index4 + "]",
|
|
881
|
+
expected: "IAutoBeInterfaceOperationApplication.IOperation",
|
|
882
|
+
value: elem
|
|
883
|
+
})) && _vo1(elem, _path + ".operations[" + _index4 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
884
|
+
path: _path + ".operations[" + _index4 + "]",
|
|
885
|
+
expected: "IAutoBeInterfaceOperationApplication.IOperation",
|
|
886
|
+
value: elem
|
|
887
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
888
|
+
path: _path + ".operations",
|
|
889
|
+
expected: "Array<IAutoBeInterfaceOperationApplication.IOperation>",
|
|
890
|
+
value: input.operations
|
|
891
|
+
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [(Array.isArray(input.authorizationRoles) || _report(_exceptionable, {
|
|
892
|
+
path: _path + ".authorizationRoles",
|
|
893
|
+
expected: "Array<string & CamelPattern & MinLength<1>>",
|
|
894
|
+
value: input.authorizationRoles
|
|
895
|
+
})) && input.authorizationRoles.map((elem, _index5) => "string" === typeof elem && (RegExp("^[a-z][a-zA-Z0-9]*$").test(elem) || _report(_exceptionable, {
|
|
896
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
897
|
+
expected: "string & CamelPattern",
|
|
898
|
+
value: elem
|
|
899
|
+
})) && (1 <= elem.length || _report(_exceptionable, {
|
|
900
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
901
|
+
expected: "string & MinLength<1>",
|
|
902
|
+
value: elem
|
|
903
|
+
})) || _report(_exceptionable, {
|
|
904
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
905
|
+
expected: "(string & CamelPattern & MinLength<1>)",
|
|
906
|
+
value: elem
|
|
907
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
908
|
+
path: _path + ".authorizationRoles",
|
|
909
|
+
expected: "Array<string & CamelPattern & MinLength<1>>",
|
|
910
|
+
value: input.authorizationRoles
|
|
911
|
+
}), "string" === typeof input.description || _report(_exceptionable, {
|
|
912
|
+
path: _path + ".description",
|
|
913
|
+
expected: "string",
|
|
914
|
+
value: input.description
|
|
915
|
+
}), "string" === typeof input.name && (RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) || _report(_exceptionable, {
|
|
916
|
+
path: _path + ".name",
|
|
917
|
+
expected: "string & CamelPattern",
|
|
918
|
+
value: input.name
|
|
919
|
+
})) || _report(_exceptionable, {
|
|
920
|
+
path: _path + ".name",
|
|
921
|
+
expected: "(string & CamelPattern)",
|
|
922
|
+
value: input.name
|
|
923
|
+
}), "string" === typeof input.specification || _report(_exceptionable, {
|
|
924
|
+
path: _path + ".specification",
|
|
925
|
+
expected: "string",
|
|
926
|
+
value: input.specification
|
|
927
|
+
}), "string" === typeof input.summary || _report(_exceptionable, {
|
|
928
|
+
path: _path + ".summary",
|
|
929
|
+
expected: "string",
|
|
930
|
+
value: input.summary
|
|
931
|
+
}), "string" === typeof input.path && (RegExp("^\\/[a-zA-Z0-9\\/_{}.-]*$").test(input.path) || _report(_exceptionable, {
|
|
932
|
+
path: _path + ".path",
|
|
933
|
+
expected: "string & Pattern<\"^\\\\/[a-zA-Z0-9\\\\/_{}.-]*$\">",
|
|
934
|
+
value: input.path
|
|
935
|
+
})) || _report(_exceptionable, {
|
|
936
|
+
path: _path + ".path",
|
|
937
|
+
expected: "(string & Pattern<\"^\\\\/[a-zA-Z0-9\\\\/_{}.-]*$\">)",
|
|
938
|
+
value: input.path
|
|
939
|
+
}), (Array.isArray(input.parameters) || _report(_exceptionable, {
|
|
940
|
+
path: _path + ".parameters",
|
|
941
|
+
expected: "Array<AutoBeOpenApi.IParameter>",
|
|
942
|
+
value: input.parameters
|
|
943
|
+
})) && input.parameters.map((elem, _index6) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
944
|
+
path: _path + ".parameters[" + _index6 + "]",
|
|
945
|
+
expected: "AutoBeOpenApi.IParameter",
|
|
946
|
+
value: elem
|
|
947
|
+
})) && _vo2(elem, _path + ".parameters[" + _index6 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
948
|
+
path: _path + ".parameters[" + _index6 + "]",
|
|
949
|
+
expected: "AutoBeOpenApi.IParameter",
|
|
950
|
+
value: elem
|
|
951
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
952
|
+
path: _path + ".parameters",
|
|
953
|
+
expected: "Array<AutoBeOpenApi.IParameter>",
|
|
954
|
+
value: input.parameters
|
|
955
|
+
}), null === input.requestBody || ("object" === typeof input.requestBody && null !== input.requestBody || _report(_exceptionable, {
|
|
956
|
+
path: _path + ".requestBody",
|
|
957
|
+
expected: "(AutoBeOpenApi.IRequestBody | null)",
|
|
958
|
+
value: input.requestBody
|
|
959
|
+
})) && _vo6(input.requestBody, _path + ".requestBody", true && _exceptionable) || _report(_exceptionable, {
|
|
960
|
+
path: _path + ".requestBody",
|
|
961
|
+
expected: "(AutoBeOpenApi.IRequestBody | null)",
|
|
962
|
+
value: input.requestBody
|
|
963
|
+
}), null === input.responseBody || ("object" === typeof input.responseBody && null !== input.responseBody || _report(_exceptionable, {
|
|
964
|
+
path: _path + ".responseBody",
|
|
965
|
+
expected: "(AutoBeOpenApi.IResponseBody | null)",
|
|
966
|
+
value: input.responseBody
|
|
967
|
+
})) && _vo7(input.responseBody, _path + ".responseBody", true && _exceptionable) || _report(_exceptionable, {
|
|
968
|
+
path: _path + ".responseBody",
|
|
969
|
+
expected: "(AutoBeOpenApi.IResponseBody | null)",
|
|
970
|
+
value: input.responseBody
|
|
971
|
+
}), "get" === input.method || "post" === input.method || "put" === input.method || "delete" === input.method || "patch" === input.method || _report(_exceptionable, {
|
|
972
|
+
path: _path + ".method",
|
|
973
|
+
expected: "(\"delete\" | \"get\" | \"patch\" | \"post\" | \"put\")",
|
|
974
|
+
value: input.method
|
|
975
|
+
})].every(flag => flag); const _vo2 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) || _report(_exceptionable, {
|
|
976
|
+
path: _path + ".name",
|
|
977
|
+
expected: "string & CamelPattern",
|
|
978
|
+
value: input.name
|
|
979
|
+
})) || _report(_exceptionable, {
|
|
980
|
+
path: _path + ".name",
|
|
981
|
+
expected: "(string & CamelPattern)",
|
|
982
|
+
value: input.name
|
|
983
|
+
}), "string" === typeof input.description || _report(_exceptionable, {
|
|
984
|
+
path: _path + ".description",
|
|
985
|
+
expected: "string",
|
|
986
|
+
value: input.description
|
|
987
|
+
}), ("object" === typeof input.schema && null !== input.schema || _report(_exceptionable, {
|
|
988
|
+
path: _path + ".schema",
|
|
989
|
+
expected: "(AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IString)",
|
|
990
|
+
value: input.schema
|
|
991
|
+
})) && _vu0(input.schema, _path + ".schema", true && _exceptionable) || _report(_exceptionable, {
|
|
992
|
+
path: _path + ".schema",
|
|
993
|
+
expected: "(AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IString)",
|
|
994
|
+
value: input.schema
|
|
995
|
+
})].every(flag => flag); const _vo3 = (input, _path, _exceptionable = true) => [undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000 || _report(_exceptionable, {
|
|
996
|
+
path: _path + ".minimum",
|
|
997
|
+
expected: "number & Type<\"int64\">",
|
|
998
|
+
value: input.minimum
|
|
999
|
+
})) || _report(_exceptionable, {
|
|
1000
|
+
path: _path + ".minimum",
|
|
1001
|
+
expected: "((number & Type<\"int64\">) | undefined)",
|
|
1002
|
+
value: input.minimum
|
|
1003
|
+
}), undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000 || _report(_exceptionable, {
|
|
1004
|
+
path: _path + ".maximum",
|
|
1005
|
+
expected: "number & Type<\"int64\">",
|
|
1006
|
+
value: input.maximum
|
|
1007
|
+
})) || _report(_exceptionable, {
|
|
1008
|
+
path: _path + ".maximum",
|
|
1009
|
+
expected: "((number & Type<\"int64\">) | undefined)",
|
|
1010
|
+
value: input.maximum
|
|
1011
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1012
|
+
path: _path + ".exclusiveMinimum",
|
|
1013
|
+
expected: "(number | undefined)",
|
|
1014
|
+
value: input.exclusiveMinimum
|
|
1015
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1016
|
+
path: _path + ".exclusiveMaximum",
|
|
1017
|
+
expected: "(number | undefined)",
|
|
1018
|
+
value: input.exclusiveMaximum
|
|
1019
|
+
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || _report(_exceptionable, {
|
|
1020
|
+
path: _path + ".multipleOf",
|
|
1021
|
+
expected: "number & Type<\"uint64\">",
|
|
1022
|
+
value: input.multipleOf
|
|
1023
|
+
})) && (0 < input.multipleOf || _report(_exceptionable, {
|
|
1024
|
+
path: _path + ".multipleOf",
|
|
1025
|
+
expected: "number & ExclusiveMinimum<0>",
|
|
1026
|
+
value: input.multipleOf
|
|
1027
|
+
})) || _report(_exceptionable, {
|
|
1028
|
+
path: _path + ".multipleOf",
|
|
1029
|
+
expected: "((number & Type<\"uint64\"> & ExclusiveMinimum<0>) | undefined)",
|
|
1030
|
+
value: input.multipleOf
|
|
1031
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
1032
|
+
path: _path + ".type",
|
|
1033
|
+
expected: "\"integer\"",
|
|
1034
|
+
value: input.type
|
|
1035
|
+
})].every(flag => flag); const _vo4 = (input, _path, _exceptionable = true) => [undefined === input.minimum || "number" === typeof input.minimum || _report(_exceptionable, {
|
|
1036
|
+
path: _path + ".minimum",
|
|
1037
|
+
expected: "(number | undefined)",
|
|
1038
|
+
value: input.minimum
|
|
1039
|
+
}), undefined === input.maximum || "number" === typeof input.maximum || _report(_exceptionable, {
|
|
1040
|
+
path: _path + ".maximum",
|
|
1041
|
+
expected: "(number | undefined)",
|
|
1042
|
+
value: input.maximum
|
|
1043
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1044
|
+
path: _path + ".exclusiveMinimum",
|
|
1045
|
+
expected: "(number | undefined)",
|
|
1046
|
+
value: input.exclusiveMinimum
|
|
1047
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1048
|
+
path: _path + ".exclusiveMaximum",
|
|
1049
|
+
expected: "(number | undefined)",
|
|
1050
|
+
value: input.exclusiveMaximum
|
|
1051
|
+
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || _report(_exceptionable, {
|
|
1052
|
+
path: _path + ".multipleOf",
|
|
1053
|
+
expected: "number & ExclusiveMinimum<0>",
|
|
1054
|
+
value: input.multipleOf
|
|
1055
|
+
})) || _report(_exceptionable, {
|
|
1056
|
+
path: _path + ".multipleOf",
|
|
1057
|
+
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
1058
|
+
value: input.multipleOf
|
|
1059
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
1060
|
+
path: _path + ".type",
|
|
1061
|
+
expected: "\"number\"",
|
|
1062
|
+
value: input.type
|
|
1063
|
+
})].every(flag => flag); const _vo5 = (input, _path, _exceptionable = true) => [undefined === input.format || "string" === typeof input.format || _report(_exceptionable, {
|
|
1064
|
+
path: _path + ".format",
|
|
1065
|
+
expected: "(string | undefined)",
|
|
1066
|
+
value: input.format
|
|
1067
|
+
}), undefined === input.pattern || "string" === typeof input.pattern || _report(_exceptionable, {
|
|
1068
|
+
path: _path + ".pattern",
|
|
1069
|
+
expected: "(string | undefined)",
|
|
1070
|
+
value: input.pattern
|
|
1071
|
+
}), undefined === input.contentMediaType || "string" === typeof input.contentMediaType || _report(_exceptionable, {
|
|
1072
|
+
path: _path + ".contentMediaType",
|
|
1073
|
+
expected: "(string | undefined)",
|
|
1074
|
+
value: input.contentMediaType
|
|
1075
|
+
}), undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000 || _report(_exceptionable, {
|
|
1076
|
+
path: _path + ".minLength",
|
|
1077
|
+
expected: "number & Type<\"uint64\">",
|
|
1078
|
+
value: input.minLength
|
|
1079
|
+
})) || _report(_exceptionable, {
|
|
1080
|
+
path: _path + ".minLength",
|
|
1081
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
1082
|
+
value: input.minLength
|
|
1083
|
+
}), undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000 || _report(_exceptionable, {
|
|
1084
|
+
path: _path + ".maxLength",
|
|
1085
|
+
expected: "number & Type<\"uint64\">",
|
|
1086
|
+
value: input.maxLength
|
|
1087
|
+
})) || _report(_exceptionable, {
|
|
1088
|
+
path: _path + ".maxLength",
|
|
1089
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
1090
|
+
value: input.maxLength
|
|
1091
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
1092
|
+
path: _path + ".type",
|
|
1093
|
+
expected: "\"string\"",
|
|
1094
|
+
value: input.type
|
|
1095
|
+
})].every(flag => flag); const _vo6 = (input, _path, _exceptionable = true) => ["string" === typeof input.description || _report(_exceptionable, {
|
|
1096
|
+
path: _path + ".description",
|
|
1097
|
+
expected: "string",
|
|
1098
|
+
value: input.description
|
|
1099
|
+
}), "string" === typeof input.typeName || _report(_exceptionable, {
|
|
1100
|
+
path: _path + ".typeName",
|
|
1101
|
+
expected: "string",
|
|
1102
|
+
value: input.typeName
|
|
1103
|
+
})].every(flag => flag); const _vo7 = (input, _path, _exceptionable = true) => ["string" === typeof input.description || _report(_exceptionable, {
|
|
1104
|
+
path: _path + ".description",
|
|
1105
|
+
expected: "string",
|
|
1106
|
+
value: input.description
|
|
1107
|
+
}), "string" === typeof input.typeName || _report(_exceptionable, {
|
|
1108
|
+
path: _path + ".typeName",
|
|
1109
|
+
expected: "string",
|
|
1110
|
+
value: input.typeName
|
|
1111
|
+
})].every(flag => flag); const _vu0 = (input, _path, _exceptionable = true) => (() => {
|
|
1112
|
+
if ("number" === input.type)
|
|
1113
|
+
return _vo4(input, _path, true && _exceptionable);
|
|
1114
|
+
else if ("integer" === input.type)
|
|
1115
|
+
return _vo3(input, _path, true && _exceptionable);
|
|
1116
|
+
else if ("string" === input.type)
|
|
1117
|
+
return _vo5(input, _path, true && _exceptionable);
|
|
1118
|
+
else
|
|
1119
|
+
return _report(_exceptionable, {
|
|
1120
|
+
path: _path,
|
|
1121
|
+
expected: "(AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.IString)",
|
|
1122
|
+
value: input
|
|
1123
|
+
});
|
|
1124
|
+
})(); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
1125
|
+
if (false === __is(input)) {
|
|
1126
|
+
errors = [];
|
|
1127
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
1128
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
1129
|
+
path: _path + "",
|
|
1130
|
+
expected: "IAutoBeInterfaceOperationApplication.IProps",
|
|
1131
|
+
value: input
|
|
1132
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
1133
|
+
path: _path + "",
|
|
1134
|
+
expected: "IAutoBeInterfaceOperationApplication.IProps",
|
|
1135
|
+
value: input
|
|
1136
|
+
}))(input, "$input", true);
|
|
1137
|
+
const success = 0 === errors.length;
|
|
1138
|
+
return success ? {
|
|
1139
|
+
success,
|
|
1140
|
+
data: input
|
|
1141
|
+
} : {
|
|
1142
|
+
success,
|
|
1143
|
+
errors,
|
|
1144
|
+
data: input
|
|
1145
|
+
};
|
|
1146
|
+
}
|
|
1147
|
+
return {
|
|
1148
|
+
success: true,
|
|
1149
|
+
data: input
|
|
1150
|
+
};
|
|
1151
|
+
}; })()
|
|
1152
|
+
}
|
|
1153
|
+
]
|
|
1154
|
+
};
|
|
1155
|
+
__typia_transform__llmApplicationFinalize._llmApplicationFinalize(application, Object.assign(Object.assign({}, {
|
|
1156
|
+
validate: {
|
|
1157
|
+
makeOperations: validate,
|
|
1158
|
+
},
|
|
1159
|
+
}), { equals: false }));
|
|
1160
|
+
return application;
|
|
1161
|
+
})(),
|
|
1162
|
+
claude: (validate) => (() => {
|
|
1163
|
+
const application = {
|
|
1164
|
+
model: "claude",
|
|
1165
|
+
options: {
|
|
1166
|
+
reference: true,
|
|
1167
|
+
separate: null
|
|
1168
|
+
},
|
|
1169
|
+
functions: [
|
|
1170
|
+
{
|
|
1171
|
+
name: "makeOperations",
|
|
1172
|
+
parameters: {
|
|
1173
|
+
description: " Properties containing the operations to generate.\n\n------------------------------\n\nCurrent Type: {@link IAutoBeInterfaceOperationApplication.IProps}",
|
|
1174
|
+
type: "object",
|
|
1175
|
+
properties: {
|
|
1176
|
+
operations: {
|
|
1177
|
+
description: "Array of API operations to generate.\n\nEach operation in this array must include:\n\n- Specification: Detailed API specification with clear purpose and\n functionality\n- Path: Resource-centric URL path (e.g., \"/resources/{resourceId}\")\n- Method: HTTP method (get, post, put, delete, patch)\n- Description: Extremely detailed multi-paragraph description referencing\n Prisma schema comments\n- Summary: Concise one-sentence summary of the endpoint\n- Parameters: Array of all necessary parameters with descriptions and\n schema definitions\n- RequestBody: For POST/PUT/PATCH methods, with typeName referencing\n components.schemas\n- ResponseBody: With typeName referencing appropriate response type\n\nAll operations must follow strict quality standards:\n\n1. Detailed descriptions referencing Prisma schema comments\n2. Accurate parameter definitions matching path parameters\n3. Appropriate request/response body type references\n4. Consistent patterns for CRUD operations\n\nFor list retrievals (typically PATCH), include pagination, search, and\nsorting. For detail retrieval (GET), return a single resource. For\ncreation (POST), use .ICreate request body. For modification (PUT), use\n.IUpdate request body.",
|
|
1178
|
+
type: "array",
|
|
1179
|
+
items: {
|
|
1180
|
+
$ref: "#/$defs/IAutoBeInterfaceOperationApplication.IOperation"
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1184
|
+
required: [
|
|
1185
|
+
"operations"
|
|
1186
|
+
],
|
|
1187
|
+
additionalProperties: false,
|
|
1188
|
+
$defs: {
|
|
1189
|
+
"IAutoBeInterfaceOperationApplication.IOperation": {
|
|
1190
|
+
description: "Operation of the Restful API.\n\nThis interface defines a single API endpoint with its HTTP {@link method},\n{@link path}, {@link parameters path parameters},\n{@link requestBody request body}, and {@link responseBody} structure. It\ncorresponds to an individual operation in the paths section of an OpenAPI\ndocument.\n\nEach operation requires a detailed explanation of its purpose through the\nreason and description fields, making it clear why the API was designed and\nhow it should be used.\n\nAll request bodies and responses for this operation must be object types\nand must reference named types defined in the components section. The\ncontent-type is always `application/json`. For file upload/download\noperations, use `string & tags.Format<\"uri\">` in the appropriate schema\ninstead of binary data formats.\n\nIn OpenAPI, this might represent:\n\n```json\n{\n \"/shoppings/customers/orders\": {\n \"post\": {\n \"description\": \"Create a new order application from shopping cart...\",\n \"parameters\": [...],\n \"requestBody\": {...},\n \"responses\": {...}\n }\n }\n}\n```",
|
|
1191
|
+
type: "object",
|
|
1192
|
+
properties: {
|
|
1193
|
+
authorizationRoles: {
|
|
1194
|
+
description: "Authorization roles required to access this API operation.\n\nThis field specifies which user roles are allowed to access this\nendpoint. Multiple roles can be specified to allow different types of\nusers to access the same endpoint.\n\n## Naming Convention\n\nAll role names MUST use camelCase.\n\n## Important Guidelines\n\n- Set to empty array `[]` for public endpoints that require no\n authentication\n- Set to array with role strings for role-restricted endpoints\n- The role names MUST match exactly with the user type/role defined in the\n database\n- This will be used by the Realize Agent to generate appropriate decorator\n and authorization logic in the provider functions\n- The controller will apply the corresponding authentication decorator\n based on these roles\n\n## Examples\n\n- `[]` - Public endpoint, no authentication required\n- `[\"user\"]` - Any authenticated user can access\n- `[\"admin\"]` - Only admin users can access\n- `[\"admin\", \"moderator\"]` - Both admin and moderator users can access\n- `[\"seller\"]` - Only seller users can access\n\nNote: The actual authentication/authorization implementation will be\nhandled by decorators at the controller level, and the provider function\nwill receive the authenticated user object with the appropriate type.",
|
|
1195
|
+
type: "array",
|
|
1196
|
+
items: {
|
|
1197
|
+
type: "string",
|
|
1198
|
+
pattern: "^[a-z][a-zA-Z0-9]*$",
|
|
1199
|
+
minLength: 1
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
description: {
|
|
1203
|
+
description: "Detailed description about the API operation.\n\nIMPORTANT: This field MUST be extensively detailed and MUST reference the\ndescription comments from the related Prisma DB schema tables and\ncolumns. The description should be organized into MULTIPLE PARAGRAPHS\nseparated by line breaks to improve readability and comprehension.\n\nFor example, include separate paragraphs for:\n\n- The purpose and overview of the API operation\n- Security considerations and user permissions\n- Relationship to underlying database entities\n- Validation rules and business logic\n- Related API operations that might be used together with this one\n- Expected behavior and error handling\n\nWhen writing the description, be sure to incorporate the corresponding DB\nschema's description comments, matching the level of detail and style of\nthose comments. This ensures consistency between the API documentation\nand database structure.\n\nIf there's a dependency to other APIs, please describe the dependency API\noperation in this field with detailed reason. For example, if this API\noperation needs a pre-execution of other API operation, it must be\nexplicitly described.\n\n- `GET /shoppings/customers/sales` must be pre-executed to get entire list\n of summarized sales. Detailed sale information would be obtained by\n specifying the sale ID in the path parameter.\n\n> MUST be written in English. Never use other languages.",
|
|
1204
|
+
type: "string"
|
|
1205
|
+
},
|
|
1206
|
+
name: {
|
|
1207
|
+
description: "Functional name of the API endpoint.\n\nThis is a semantic identifier that represents the primary function or\npurpose of the API endpoint. It serves as a canonical name that can be\nused for code generation, SDK method names, and internal references.\n\n## Reserved Word Restrictions\n\nCRITICAL: The name MUST NOT be a TypeScript/JavaScript reserved word, as\nit will be used as a class method name in generated code. Avoid names\nlike:\n\n- `delete`, `for`, `if`, `else`, `while`, `do`, `switch`, `case`, `break`\n- `continue`, `function`, `return`, `with`, `in`, `of`, `instanceof`\n- `typeof`, `void`, `var`, `let`, `const`, `class`, `extends`, `import`\n- `export`, `default`, `try`, `catch`, `finally`, `throw`, `new`\n- `super`, `this`, `null`, `true`, `false`, `async`, `await`\n- `yield`, `static`, `private`, `protected`, `public`, `implements`\n- `interface`, `package`, `enum`, `debugger`\n\nInstead, use alternative names for these operations:\n\n- Use `erase` instead of `delete`\n- Use `iterate` instead of `for`\n- Use `when` instead of `if`\n- Use `cls` instead of `class`\n\n## Standard Endpoint Names\n\nUse these conventional names based on the endpoint's primary function:\n\n- **`index`**: List/search operations that return multiple entities\n\n - Typically used with PATCH method for complex queries\n - Example: `PATCH /users` \u2192 `name: \"index\"`\n- **`at`**: Retrieve a specific entity by identifier\n\n - Typically used with GET method on single resource\n - Example: `GET /users/{userId}` \u2192 `name: \"at\"`\n- **`create`**: Create a new entity\n\n - Typically used with POST method\n - Example: `POST /users` \u2192 `name: \"create\"`\n- **`update`**: Update an existing entity\n\n - Typically used with PUT method\n - Example: `PUT /users/{userId}` \u2192 `name: \"update\"`\n- **`erase`**: Delete/remove an entity (NOT `delete` - reserved word!)\n\n - Typically used with DELETE method\n - Example: `DELETE /users/{userId}` \u2192 `name: \"erase\"`\n\n## Custom Endpoint Names\n\nFor specialized operations beyond basic CRUD, use descriptive verbs:\n\n- **`activate`**: Enable or turn on a feature/entity\n- **`deactivate`**: Disable or turn off a feature/entity\n- **`approve`**: Approve a request or entity\n- **`reject`**: Reject a request or entity\n- **`publish`**: Make content publicly available\n- **`archive`**: Move to archived state\n- **`restore`**: Restore from archived/deleted state\n- **`duplicate`**: Create a copy of an entity\n- **`transfer`**: Move ownership or change assignment\n- **`validate`**: Validate data or state\n- **`process`**: Execute a business process or workflow\n- **`export`**: Generate downloadable data\n- **`import`**: Process uploaded data\n\n## Naming Guidelines\n\n- MUST use camelCase naming convention\n- Use singular verb forms\n- Be concise but descriptive\n- Avoid abbreviations unless widely understood\n- Ensure the name clearly represents the endpoint's primary action\n- For nested resources, focus on the action rather than hierarchy\n- NEVER use JavaScript/TypeScript reserved words\n\nValid Examples:\n\n- `index`, `create`, `update`, `erase` (single word)\n- `updatePassword`, `cancelOrder`, `publishArticle` (camelCase)\n- `validateEmail`, `generateReport`, `exportData` (camelCase)\n\nInvalid Examples:\n\n- `update_password` (snake_case not allowed)\n- `UpdatePassword` (PascalCase not allowed)\n- `update-password` (kebab-case not allowed)\n\nPath to Name Examples:\n\n- `GET /shopping/orders/{orderId}/items` \u2192 `name: \"index\"` (lists items)\n- `POST /shopping/orders/{orderId}/cancel` \u2192 `name: \"cancel\"`\n- `PUT /users/{userId}/password` \u2192 `name: \"updatePassword\"`\n\n## Uniqueness Rule\n\nThe `name` must be unique within the API's accessor namespace. The\naccessor is formed by combining the path segments (excluding parameters)\nwith the operation name.\n\nAccessor formation:\n\n1. Extract non-parameter segments from the path (remove `{...}` parts)\n2. Join segments with dots\n3. Append the operation name\n\nExamples:\n\n- Path: `/shopping/sale/{saleId}/review/{reviewId}`, Name: `at` \u2192 Accessor:\n `shopping.sale.review.at`\n- Path: `/users/{userId}/posts`, Name: `index` \u2192 Accessor:\n `users.posts.index`\n- Path: `/auth/login`, Name: `signIn` \u2192 Accessor: `auth.login.signIn`\n\nEach accessor must be globally unique across the entire API. This ensures\noperations can be uniquely identified in generated SDKs and prevents\nnaming conflicts.",
|
|
1208
|
+
type: "string",
|
|
1209
|
+
pattern: "^[a-z][a-zA-Z0-9]*$"
|
|
1210
|
+
},
|
|
1211
|
+
specification: {
|
|
1212
|
+
description: "Specification of the API operation.\n\nBefore defining the API operation interface, please describe what you're\nplanning to write in this `specification` field.\n\nThe specification must be fully detailed and clear, so that anyone can\nunderstand the purpose and functionality of the API operation and its\nrelated components (e.g., {@link path}, {@link parameters},\n{@link requestBody}).\n\nIMPORTANT: The specification MUST identify which Prisma DB table this\noperation is associated with, helping ensure complete coverage of all\ndatabase entities.",
|
|
1213
|
+
type: "string"
|
|
1214
|
+
},
|
|
1215
|
+
summary: {
|
|
1216
|
+
description: "Short summary of the API operation.\n\nThis should be a concise description of the API operation, typically one\nsentence long. It should provide a quick overview of what the API does\nwithout going into too much detail.\n\nThis summary will be used in the OpenAPI documentation to give users a\nquick understanding of the API operation's purpose.\n\nIMPORTANT: The summary should clearly indicate which Prisma DB table this\noperation relates to, helping to ensure all tables have API coverage.\n\n> MUST be written in English. Never use other languages",
|
|
1217
|
+
type: "string"
|
|
1218
|
+
},
|
|
1219
|
+
path: {
|
|
1220
|
+
description: "HTTP path of the API operation.\n\nThe URL path for accessing this API operation, using path parameters\nenclosed in curly braces (e.g., `/shoppings/customers/sales/{saleId}`).\n\nIt must be corresponded to the {@link parameters path parameters}.\n\nThe path structure should clearly indicate which database entity this\noperation is manipulating, helping to ensure all entities have\nappropriate API coverage.\n\nPath validation rules:\n\n- Must start with a forward slash (/)\n- Can contain only: letters (a-z, A-Z), numbers (0-9), forward slashes (/),\n curly braces for parameters ({paramName}), hyphens (-), and underscores\n (_)\n- Parameters must be enclosed in curly braces: {paramName}\n- Resource names should be in camelCase\n- No quotes, spaces, or invalid special characters allowed\n- No domain or role-based prefixes\n\nValid examples:\n\n- \"/users\"\n- \"/users/{userId}\"\n- \"/articles/{articleId}/comments\"\n- \"/attachmentFiles\"\n- \"/orders/{orderId}/items/{itemId}\"\n\nInvalid examples:\n\n- \"'/users'\" (contains quotes)\n- \"/user profile\" (contains space)\n- \"/users/[userId]\" (wrong bracket format)\n- \"/admin/users\" (role prefix)\n- \"/api/v1/users\" (API prefix)",
|
|
1221
|
+
type: "string",
|
|
1222
|
+
pattern: "^\\/[a-zA-Z0-9\\/_{}.-]*$"
|
|
1223
|
+
},
|
|
1224
|
+
parameters: {
|
|
1225
|
+
description: "List of path parameters.\n\nNote that, the {@link AutoBeOpenApi.IParameter.name identifier name} of\npath parameter must be corresponded to the\n{@link path API operation path}.\n\nFor example, if there's an API operation which has {@link path} of\n`/shoppings/customers/sales/{saleId}/questions/${questionId}/comments/${commentId}`,\nits list of {@link AutoBeOpenApi.IParameter.name path parameters} must be\nlike:\n\n- `saleId`\n- `questionId`\n- `commentId`",
|
|
1226
|
+
type: "array",
|
|
1227
|
+
items: {
|
|
1228
|
+
$ref: "#/$defs/AutoBeOpenApi.IParameter"
|
|
1229
|
+
}
|
|
1230
|
+
},
|
|
1231
|
+
requestBody: {
|
|
1232
|
+
description: "Request body of the API operation.\n\nDefines the payload structure for the request. Contains a description and\nschema reference to define the expected input data.\n\nShould be `null` for operations that don't require a request body, such\nas most \"get\" operations.",
|
|
1233
|
+
oneOf: [
|
|
1234
|
+
{
|
|
1235
|
+
type: "null"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
$ref: "#/$defs/AutoBeOpenApi.IRequestBody"
|
|
1239
|
+
}
|
|
1240
|
+
]
|
|
1241
|
+
},
|
|
1242
|
+
responseBody: {
|
|
1243
|
+
description: "Response body of the API operation.\n\nDefines the structure of the successful response data. Contains a\ndescription and schema reference for the returned data.\n\nShould be null for operations that don't return any data.",
|
|
1244
|
+
oneOf: [
|
|
1245
|
+
{
|
|
1246
|
+
type: "null"
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
$ref: "#/$defs/AutoBeOpenApi.IResponseBody"
|
|
1250
|
+
}
|
|
1251
|
+
]
|
|
1252
|
+
},
|
|
1253
|
+
method: {
|
|
1254
|
+
description: "HTTP method of the API operation.\n\nNote that, if the API operation has {@link requestBody}, method must not\nbe `get`.\n\nAlso, even though the API operation has been designed to only get\ninformation, but it needs complicated request information, it must be\ndefined as `patch` method with {@link requestBody} data specification.\n\n- `get`: get information\n- `patch`: get information with complicated request data\n ({@link requestBody})\n- `post`: create new record\n- `put`: update existing record\n- `delete`: remove record",
|
|
1255
|
+
oneOf: [
|
|
1256
|
+
{
|
|
1257
|
+
"const": "get"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"const": "post"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"const": "put"
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"const": "delete"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"const": "patch"
|
|
1270
|
+
}
|
|
1271
|
+
]
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
required: [
|
|
1275
|
+
"authorizationRoles",
|
|
1276
|
+
"description",
|
|
1277
|
+
"name",
|
|
1278
|
+
"specification",
|
|
1279
|
+
"summary",
|
|
1280
|
+
"path",
|
|
1281
|
+
"parameters",
|
|
1282
|
+
"requestBody",
|
|
1283
|
+
"responseBody",
|
|
1284
|
+
"method"
|
|
1285
|
+
]
|
|
1286
|
+
},
|
|
1287
|
+
"AutoBeOpenApi.IParameter": {
|
|
1288
|
+
description: "Path parameter information for API routes.\n\nThis interface defines a path parameter that appears in the URL of an API\nendpoint. Path parameters are enclosed in curly braces in the\n{@link AutoBeOpenApi.IOperation.path operation path} and must be defined\nwith their types and descriptions.\n\nFor example, if API operation path is\n`/shoppings/customers/sales/{saleId}/questions/${questionId}/comments/${commentId}`,\nthe path parameters should be like below:\n\n```json\n{\n \"path\": \"/shoppings/customers/sales/{saleId}/questions/${questionId}/comments/${commentId}\",\n \"method\": \"get\",\n \"parameters\": [\n {\n \"name\": \"saleId\",\n \"in\": \"path\",\n \"schema\": { \"type\": \"string\", \"format\": \"uuid\" },\n \"description\": \"Target sale's ID\"\n },\n {\n \"name\": \"questionId\",\n \"in\": \"path\",\n \"schema\": { \"type\": \"string\", \"format\": \"uuid\" },\n \"description\": \"Target question's ID\"\n },\n {\n \"name\": \"commentId\",\n \"in\": \"path\",\n \"schema\": { \"type\": \"string\", \"format\": \"uuid\" },\n \"description\": \"Target comment's ID\"\n }\n ]\n}\n```",
|
|
1289
|
+
type: "object",
|
|
1290
|
+
properties: {
|
|
1291
|
+
name: {
|
|
1292
|
+
description: "Identifier name of the path parameter.\n\nThis name must match exactly with the parameter name in the route path.\nIt must be corresponded to the\n{@link AutoBeOpenApi.IOperation.path API operation path}.\n\nMUST use camelCase naming convention.",
|
|
1293
|
+
type: "string",
|
|
1294
|
+
pattern: "^[a-z][a-zA-Z0-9]*$"
|
|
1295
|
+
},
|
|
1296
|
+
description: {
|
|
1297
|
+
description: "Description about the path parameter.\n\nMake short, concise and clear description about the path parameter.\n\n> MUST be written in English. Never use other languages.",
|
|
1298
|
+
type: "string"
|
|
1299
|
+
},
|
|
1300
|
+
schema: {
|
|
1301
|
+
description: "Type schema of the path parameter.\n\nPath parameters are typically primitive types like\n{@link AutoBeOpenApi.IJsonSchema.IString strings},\n{@link AutoBeOpenApi.IJsonSchema.IInteger integers},\n{@link AutoBeOpenApi.IJsonSchema.INumber numbers}.\n\nIf you need other types, please use request body instead with object type\nencapsulation.",
|
|
1302
|
+
oneOf: [
|
|
1303
|
+
{
|
|
1304
|
+
$ref: "#/$defs/AutoBeOpenApi.IJsonSchema.INumber"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
$ref: "#/$defs/AutoBeOpenApi.IJsonSchema.IInteger"
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
$ref: "#/$defs/AutoBeOpenApi.IJsonSchema.IString"
|
|
1311
|
+
}
|
|
1312
|
+
],
|
|
1313
|
+
discriminator: {
|
|
1314
|
+
propertyName: "type",
|
|
1315
|
+
mapping: {
|
|
1316
|
+
number: "#/$defs/AutoBeOpenApi.IJsonSchema.INumber",
|
|
1317
|
+
integer: "#/$defs/AutoBeOpenApi.IJsonSchema.IInteger",
|
|
1318
|
+
string: "#/$defs/AutoBeOpenApi.IJsonSchema.IString"
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
}
|
|
1322
|
+
},
|
|
1323
|
+
required: [
|
|
1324
|
+
"name",
|
|
1325
|
+
"description",
|
|
1326
|
+
"schema"
|
|
1327
|
+
]
|
|
1328
|
+
},
|
|
1329
|
+
"AutoBeOpenApi.IJsonSchema.INumber": {
|
|
1330
|
+
description: "Number (double) type info.",
|
|
1331
|
+
type: "object",
|
|
1332
|
+
properties: {
|
|
1333
|
+
minimum: {
|
|
1334
|
+
description: "Minimum value restriction.",
|
|
1335
|
+
type: "number"
|
|
1336
|
+
},
|
|
1337
|
+
maximum: {
|
|
1338
|
+
description: "Maximum value restriction.",
|
|
1339
|
+
type: "number"
|
|
1340
|
+
},
|
|
1341
|
+
exclusiveMinimum: {
|
|
1342
|
+
description: "Exclusive minimum value restriction.",
|
|
1343
|
+
type: "number"
|
|
1344
|
+
},
|
|
1345
|
+
exclusiveMaximum: {
|
|
1346
|
+
description: "Exclusive maximum value restriction.",
|
|
1347
|
+
type: "number"
|
|
1348
|
+
},
|
|
1349
|
+
multipleOf: {
|
|
1350
|
+
description: "Multiple of value restriction.",
|
|
1351
|
+
type: "number",
|
|
1352
|
+
exclusiveMinimum: 0
|
|
1353
|
+
},
|
|
1354
|
+
type: {
|
|
1355
|
+
description: "Discriminator value of the type.",
|
|
1356
|
+
"const": "number"
|
|
1357
|
+
}
|
|
1358
|
+
},
|
|
1359
|
+
required: [
|
|
1360
|
+
"type"
|
|
1361
|
+
]
|
|
1362
|
+
},
|
|
1363
|
+
"AutoBeOpenApi.IJsonSchema.IInteger": {
|
|
1364
|
+
description: "Integer type info.",
|
|
1365
|
+
type: "object",
|
|
1366
|
+
properties: {
|
|
1367
|
+
minimum: {
|
|
1368
|
+
description: "Minimum value restriction.",
|
|
1369
|
+
type: "integer"
|
|
1370
|
+
},
|
|
1371
|
+
maximum: {
|
|
1372
|
+
description: "Maximum value restriction.",
|
|
1373
|
+
type: "integer"
|
|
1374
|
+
},
|
|
1375
|
+
exclusiveMinimum: {
|
|
1376
|
+
description: "Exclusive minimum value restriction.",
|
|
1377
|
+
type: "number"
|
|
1378
|
+
},
|
|
1379
|
+
exclusiveMaximum: {
|
|
1380
|
+
description: "Exclusive maximum value restriction.",
|
|
1381
|
+
type: "number"
|
|
1382
|
+
},
|
|
1383
|
+
multipleOf: {
|
|
1384
|
+
description: "Multiple of value restriction.",
|
|
1385
|
+
type: "integer",
|
|
1386
|
+
exclusiveMinimum: 0
|
|
1387
|
+
},
|
|
1388
|
+
type: {
|
|
1389
|
+
description: "Discriminator value of the type.",
|
|
1390
|
+
"const": "integer"
|
|
1391
|
+
}
|
|
1392
|
+
},
|
|
1393
|
+
required: [
|
|
1394
|
+
"type"
|
|
1395
|
+
]
|
|
1396
|
+
},
|
|
1397
|
+
"AutoBeOpenApi.IJsonSchema.IString": {
|
|
1398
|
+
description: "String type info.",
|
|
1399
|
+
type: "object",
|
|
1400
|
+
properties: {
|
|
1401
|
+
format: {
|
|
1402
|
+
description: "Format restriction.",
|
|
1403
|
+
type: "string"
|
|
1404
|
+
},
|
|
1405
|
+
pattern: {
|
|
1406
|
+
description: "Pattern restriction.",
|
|
1407
|
+
type: "string"
|
|
1408
|
+
},
|
|
1409
|
+
contentMediaType: {
|
|
1410
|
+
description: "Content media type restriction.",
|
|
1411
|
+
type: "string"
|
|
1412
|
+
},
|
|
1413
|
+
minLength: {
|
|
1414
|
+
description: "Minimum length restriction.",
|
|
1415
|
+
type: "integer",
|
|
1416
|
+
minimum: 0
|
|
1417
|
+
},
|
|
1418
|
+
maxLength: {
|
|
1419
|
+
description: "Maximum length restriction.",
|
|
1420
|
+
type: "integer",
|
|
1421
|
+
minimum: 0
|
|
1422
|
+
},
|
|
1423
|
+
type: {
|
|
1424
|
+
description: "Discriminator value of the type.",
|
|
1425
|
+
"const": "string"
|
|
1426
|
+
}
|
|
1427
|
+
},
|
|
1428
|
+
required: [
|
|
1429
|
+
"type"
|
|
1430
|
+
]
|
|
1431
|
+
},
|
|
1432
|
+
"AutoBeOpenApi.IRequestBody": {
|
|
1433
|
+
description: "Request body information of OpenAPI operation.\n\nThis interface defines the structure for request bodies in API routes. It\ncorresponds to the requestBody section in OpenAPI specifications, providing\nboth a description and schema reference for the request payload.\n\nThe content-type for all request bodies is always `application/json`. Even\nwhen file uploading is required, don't use `multipart/form-data` or\n`application/x-www-form-urlencoded` content types. Instead, just define an\nURI string property in the request body schema.\n\nNote that, all body schemas must be transformable to a\n{@link AutoBeOpenApi.IJsonSchema.IReference reference} type defined in the\n{@link AutoBeOpenApi.IComponents.schemas components section} as an\n{@link AutoBeOpenApi.IJsonSchema.IObject object} type.\n\nIn OpenAPI, this might represent:\n\n```json\n{\n \"requestBody\": {\n \"description\": \"Creation info of the order\",\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/IShoppingOrder.ICreate\"\n }\n }\n }\n }\n}\n```",
|
|
1434
|
+
type: "object",
|
|
1435
|
+
properties: {
|
|
1436
|
+
description: {
|
|
1437
|
+
description: "Description about the request body.\n\nMake short, concise and clear description about the request body.\n\n> MUST be written in English. Never use other languages.",
|
|
1438
|
+
type: "string"
|
|
1439
|
+
},
|
|
1440
|
+
typeName: {
|
|
1441
|
+
description: "Request body type name.\n\nThis specifies the data structure expected in the request body, that will\nbe transformed to {@link AutoBeOpenApi.IJsonSchema.IReference reference}\ntype in the {@link AutoBeOpenApi.IComponents.schemas components section}\nas an {@link AutoBeOpenApi.IJsonSchema.Object object} type.\n\nHere is the naming convention for the request body type:\n\n- `IEntityName.ICreate`: Request body for creation operations (POST)\n- `IEntityName.IUpdate`: Request body for update operations (PUT)\n- `IEntityName.IRequest`: Request parameters for list operations (often\n with search/pagination)\n\nWhat you write:\n\n```json\n{\n \"typeName\": \"IShoppingOrder.ICreate\"\n}\n```\n\nTransformed to:\n\n```json\n{\n \"schema\": {\n \"$ref\": \"#/components/schemas/IShoppingOrder.ICreate\"\n }\n}\n```",
|
|
1442
|
+
type: "string"
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
required: [
|
|
1446
|
+
"description",
|
|
1447
|
+
"typeName"
|
|
1448
|
+
]
|
|
1449
|
+
},
|
|
1450
|
+
"AutoBeOpenApi.IResponseBody": {
|
|
1451
|
+
description: "Response body information for OpenAPI operation.\n\nThis interface defines the structure of a successful response from an API\noperation. It provides a description of the response and a schema reference\nto define the returned data structure.\n\nThe content-type for all responses is always `application/json`. Even when\nfile downloading is required, don't use `application/octet-stream` or\n`multipart/form-data` content types. Instead, just define an URI string\nproperty in the response body schema.\n\nIn OpenAPI, this might represent:\n\n```json\n{\n \"responses\": {\n \"200\": {\n \"description\": \"Order information\",\n \"content\": {\n \"application/json\": {\n \"schema\": { \"$ref\": \"#/components/schemas/IShoppingOrder\" }\n }\n }\n }\n }\n}\n```",
|
|
1452
|
+
type: "object",
|
|
1453
|
+
properties: {
|
|
1454
|
+
description: {
|
|
1455
|
+
description: "Description about the response body.\n\nMake short, concise and clear description about the response body.\n\n> MUST be written in English. Never use other languages.",
|
|
1456
|
+
type: "string"
|
|
1457
|
+
},
|
|
1458
|
+
typeName: {
|
|
1459
|
+
description: "Response body's data type.\n\nSpecifies the structure of the returned data (response body), that will\nbe transformed to {@link AutoBeOpenApi.IJsonSchema.IReference} type in the\n{@link AutoBeOpenApi.IComponents.schemas components section} as an\n{@link AutoBeOpenApi.IJsonSchema.IObject object} type.\n\nHere is the naming convention for the response body type:\n\n- `IEntityName`: Main entity with detailed information (e.g.,\n `IShoppingSale`)\n- `IEntityName.ISummary`: Simplified response version with essential\n properties\n- `IEntityName.IInvert`: Alternative view of an entity from a different\n perspective\n- `IPageIEntityName`: Paginated results container with `pagination` and\n `data` properties\n\nWhat you write:\n\n```json\n{\n \"typeName\": \"IShoppingOrder\"\n}\n```\n\nTransformed to:\n\n```json\n{\n \"schema\": {\n \"$ref\": \"#/components/schemas/IShoppingOrder\"\n }\n}\n```",
|
|
1460
|
+
type: "string"
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
required: [
|
|
1464
|
+
"description",
|
|
1465
|
+
"typeName"
|
|
1466
|
+
]
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
},
|
|
1470
|
+
description: "Generate detailed API operations from path/method combinations.\n\nThis function creates complete API operations following REST principles and\nquality standards. Each generated operation includes specification, path,\nmethod, detailed multi-paragraph description, concise summary, parameters,\nand appropriate request/response bodies.\n\nThe function processes as many operations as possible in a single call,\nwith progress tracking to ensure iterative completion of all required\nendpoints.",
|
|
1471
|
+
validate: (() => { const _io0 = input => Array.isArray(input.operations) && input.operations.every(elem => "object" === typeof elem && null !== elem && _io1(elem)); const _io1 = input => Array.isArray(input.authorizationRoles) && input.authorizationRoles.every(elem => "string" === typeof elem && (RegExp("^[a-z][a-zA-Z0-9]*$").test(elem) && 1 <= elem.length)) && "string" === typeof input.description && ("string" === typeof input.name && RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name)) && "string" === typeof input.specification && "string" === typeof input.summary && ("string" === typeof input.path && RegExp("^\\/[a-zA-Z0-9\\/_{}.-]*$").test(input.path)) && (Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io2(elem))) && (null === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && _io6(input.requestBody)) && (null === input.responseBody || "object" === typeof input.responseBody && null !== input.responseBody && _io7(input.responseBody)) && ("get" === input.method || "post" === input.method || "put" === input.method || "delete" === input.method || "patch" === input.method); const _io2 = input => "string" === typeof input.name && RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) && "string" === typeof input.description && ("object" === typeof input.schema && null !== input.schema && _iu0(input.schema)); const _io3 = input => (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type; const _io4 = input => (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type; const _io5 = input => (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type; const _io6 = input => "string" === typeof input.description && "string" === typeof input.typeName; const _io7 = input => "string" === typeof input.description && "string" === typeof input.typeName; const _iu0 = input => (() => {
|
|
1472
|
+
if ("number" === input.type)
|
|
1473
|
+
return _io4(input);
|
|
1474
|
+
else if ("integer" === input.type)
|
|
1475
|
+
return _io3(input);
|
|
1476
|
+
else if ("string" === input.type)
|
|
1477
|
+
return _io5(input);
|
|
1478
|
+
else
|
|
1479
|
+
return false;
|
|
1480
|
+
})(); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.operations) || _report(_exceptionable, {
|
|
1481
|
+
path: _path + ".operations",
|
|
1482
|
+
expected: "Array<IAutoBeInterfaceOperationApplication.IOperation>",
|
|
1483
|
+
value: input.operations
|
|
1484
|
+
})) && input.operations.map((elem, _index4) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
1485
|
+
path: _path + ".operations[" + _index4 + "]",
|
|
1486
|
+
expected: "IAutoBeInterfaceOperationApplication.IOperation",
|
|
1487
|
+
value: elem
|
|
1488
|
+
})) && _vo1(elem, _path + ".operations[" + _index4 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
1489
|
+
path: _path + ".operations[" + _index4 + "]",
|
|
1490
|
+
expected: "IAutoBeInterfaceOperationApplication.IOperation",
|
|
1491
|
+
value: elem
|
|
1492
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
1493
|
+
path: _path + ".operations",
|
|
1494
|
+
expected: "Array<IAutoBeInterfaceOperationApplication.IOperation>",
|
|
1495
|
+
value: input.operations
|
|
1496
|
+
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [(Array.isArray(input.authorizationRoles) || _report(_exceptionable, {
|
|
1497
|
+
path: _path + ".authorizationRoles",
|
|
1498
|
+
expected: "Array<string & CamelPattern & MinLength<1>>",
|
|
1499
|
+
value: input.authorizationRoles
|
|
1500
|
+
})) && input.authorizationRoles.map((elem, _index5) => "string" === typeof elem && (RegExp("^[a-z][a-zA-Z0-9]*$").test(elem) || _report(_exceptionable, {
|
|
1501
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
1502
|
+
expected: "string & CamelPattern",
|
|
1503
|
+
value: elem
|
|
1504
|
+
})) && (1 <= elem.length || _report(_exceptionable, {
|
|
1505
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
1506
|
+
expected: "string & MinLength<1>",
|
|
1507
|
+
value: elem
|
|
1508
|
+
})) || _report(_exceptionable, {
|
|
1509
|
+
path: _path + ".authorizationRoles[" + _index5 + "]",
|
|
1510
|
+
expected: "(string & CamelPattern & MinLength<1>)",
|
|
1511
|
+
value: elem
|
|
1512
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
1513
|
+
path: _path + ".authorizationRoles",
|
|
1514
|
+
expected: "Array<string & CamelPattern & MinLength<1>>",
|
|
1515
|
+
value: input.authorizationRoles
|
|
1516
|
+
}), "string" === typeof input.description || _report(_exceptionable, {
|
|
1517
|
+
path: _path + ".description",
|
|
1518
|
+
expected: "string",
|
|
1519
|
+
value: input.description
|
|
1520
|
+
}), "string" === typeof input.name && (RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) || _report(_exceptionable, {
|
|
1521
|
+
path: _path + ".name",
|
|
1522
|
+
expected: "string & CamelPattern",
|
|
1523
|
+
value: input.name
|
|
1524
|
+
})) || _report(_exceptionable, {
|
|
1525
|
+
path: _path + ".name",
|
|
1526
|
+
expected: "(string & CamelPattern)",
|
|
1527
|
+
value: input.name
|
|
1528
|
+
}), "string" === typeof input.specification || _report(_exceptionable, {
|
|
1529
|
+
path: _path + ".specification",
|
|
1530
|
+
expected: "string",
|
|
1531
|
+
value: input.specification
|
|
1532
|
+
}), "string" === typeof input.summary || _report(_exceptionable, {
|
|
1533
|
+
path: _path + ".summary",
|
|
1534
|
+
expected: "string",
|
|
1535
|
+
value: input.summary
|
|
1536
|
+
}), "string" === typeof input.path && (RegExp("^\\/[a-zA-Z0-9\\/_{}.-]*$").test(input.path) || _report(_exceptionable, {
|
|
1537
|
+
path: _path + ".path",
|
|
1538
|
+
expected: "string & Pattern<\"^\\\\/[a-zA-Z0-9\\\\/_{}.-]*$\">",
|
|
1539
|
+
value: input.path
|
|
1540
|
+
})) || _report(_exceptionable, {
|
|
1541
|
+
path: _path + ".path",
|
|
1542
|
+
expected: "(string & Pattern<\"^\\\\/[a-zA-Z0-9\\\\/_{}.-]*$\">)",
|
|
1543
|
+
value: input.path
|
|
1544
|
+
}), (Array.isArray(input.parameters) || _report(_exceptionable, {
|
|
1545
|
+
path: _path + ".parameters",
|
|
1546
|
+
expected: "Array<AutoBeOpenApi.IParameter>",
|
|
1547
|
+
value: input.parameters
|
|
1548
|
+
})) && input.parameters.map((elem, _index6) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
1549
|
+
path: _path + ".parameters[" + _index6 + "]",
|
|
1550
|
+
expected: "AutoBeOpenApi.IParameter",
|
|
1551
|
+
value: elem
|
|
1552
|
+
})) && _vo2(elem, _path + ".parameters[" + _index6 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
1553
|
+
path: _path + ".parameters[" + _index6 + "]",
|
|
1554
|
+
expected: "AutoBeOpenApi.IParameter",
|
|
1555
|
+
value: elem
|
|
1556
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
1557
|
+
path: _path + ".parameters",
|
|
1558
|
+
expected: "Array<AutoBeOpenApi.IParameter>",
|
|
1559
|
+
value: input.parameters
|
|
1560
|
+
}), null === input.requestBody || ("object" === typeof input.requestBody && null !== input.requestBody || _report(_exceptionable, {
|
|
1561
|
+
path: _path + ".requestBody",
|
|
1562
|
+
expected: "(AutoBeOpenApi.IRequestBody | null)",
|
|
1563
|
+
value: input.requestBody
|
|
1564
|
+
})) && _vo6(input.requestBody, _path + ".requestBody", true && _exceptionable) || _report(_exceptionable, {
|
|
1565
|
+
path: _path + ".requestBody",
|
|
1566
|
+
expected: "(AutoBeOpenApi.IRequestBody | null)",
|
|
1567
|
+
value: input.requestBody
|
|
1568
|
+
}), null === input.responseBody || ("object" === typeof input.responseBody && null !== input.responseBody || _report(_exceptionable, {
|
|
1569
|
+
path: _path + ".responseBody",
|
|
1570
|
+
expected: "(AutoBeOpenApi.IResponseBody | null)",
|
|
1571
|
+
value: input.responseBody
|
|
1572
|
+
})) && _vo7(input.responseBody, _path + ".responseBody", true && _exceptionable) || _report(_exceptionable, {
|
|
1573
|
+
path: _path + ".responseBody",
|
|
1574
|
+
expected: "(AutoBeOpenApi.IResponseBody | null)",
|
|
1575
|
+
value: input.responseBody
|
|
1576
|
+
}), "get" === input.method || "post" === input.method || "put" === input.method || "delete" === input.method || "patch" === input.method || _report(_exceptionable, {
|
|
1577
|
+
path: _path + ".method",
|
|
1578
|
+
expected: "(\"delete\" | \"get\" | \"patch\" | \"post\" | \"put\")",
|
|
1579
|
+
value: input.method
|
|
1580
|
+
})].every(flag => flag); const _vo2 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (RegExp("^[a-z][a-zA-Z0-9]*$").test(input.name) || _report(_exceptionable, {
|
|
1581
|
+
path: _path + ".name",
|
|
1582
|
+
expected: "string & CamelPattern",
|
|
1583
|
+
value: input.name
|
|
1584
|
+
})) || _report(_exceptionable, {
|
|
1585
|
+
path: _path + ".name",
|
|
1586
|
+
expected: "(string & CamelPattern)",
|
|
1587
|
+
value: input.name
|
|
1588
|
+
}), "string" === typeof input.description || _report(_exceptionable, {
|
|
1589
|
+
path: _path + ".description",
|
|
1590
|
+
expected: "string",
|
|
1591
|
+
value: input.description
|
|
1592
|
+
}), ("object" === typeof input.schema && null !== input.schema || _report(_exceptionable, {
|
|
1593
|
+
path: _path + ".schema",
|
|
1594
|
+
expected: "(AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IString)",
|
|
1595
|
+
value: input.schema
|
|
1596
|
+
})) && _vu0(input.schema, _path + ".schema", true && _exceptionable) || _report(_exceptionable, {
|
|
1597
|
+
path: _path + ".schema",
|
|
1598
|
+
expected: "(AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IString)",
|
|
1599
|
+
value: input.schema
|
|
1600
|
+
})].every(flag => flag); const _vo3 = (input, _path, _exceptionable = true) => [undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000 || _report(_exceptionable, {
|
|
1601
|
+
path: _path + ".minimum",
|
|
1602
|
+
expected: "number & Type<\"int64\">",
|
|
1603
|
+
value: input.minimum
|
|
1604
|
+
})) || _report(_exceptionable, {
|
|
1605
|
+
path: _path + ".minimum",
|
|
1606
|
+
expected: "((number & Type<\"int64\">) | undefined)",
|
|
1607
|
+
value: input.minimum
|
|
1608
|
+
}), undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000 || _report(_exceptionable, {
|
|
1609
|
+
path: _path + ".maximum",
|
|
1610
|
+
expected: "number & Type<\"int64\">",
|
|
1611
|
+
value: input.maximum
|
|
1612
|
+
})) || _report(_exceptionable, {
|
|
1613
|
+
path: _path + ".maximum",
|
|
1614
|
+
expected: "((number & Type<\"int64\">) | undefined)",
|
|
1615
|
+
value: input.maximum
|
|
1616
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1617
|
+
path: _path + ".exclusiveMinimum",
|
|
1618
|
+
expected: "(number | undefined)",
|
|
1619
|
+
value: input.exclusiveMinimum
|
|
1620
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1621
|
+
path: _path + ".exclusiveMaximum",
|
|
1622
|
+
expected: "(number | undefined)",
|
|
1623
|
+
value: input.exclusiveMaximum
|
|
1624
|
+
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || _report(_exceptionable, {
|
|
1625
|
+
path: _path + ".multipleOf",
|
|
1626
|
+
expected: "number & Type<\"uint64\">",
|
|
1627
|
+
value: input.multipleOf
|
|
1628
|
+
})) && (0 < input.multipleOf || _report(_exceptionable, {
|
|
1629
|
+
path: _path + ".multipleOf",
|
|
1630
|
+
expected: "number & ExclusiveMinimum<0>",
|
|
1631
|
+
value: input.multipleOf
|
|
1632
|
+
})) || _report(_exceptionable, {
|
|
1633
|
+
path: _path + ".multipleOf",
|
|
1634
|
+
expected: "((number & Type<\"uint64\"> & ExclusiveMinimum<0>) | undefined)",
|
|
1635
|
+
value: input.multipleOf
|
|
1636
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
1637
|
+
path: _path + ".type",
|
|
1638
|
+
expected: "\"integer\"",
|
|
1639
|
+
value: input.type
|
|
1640
|
+
})].every(flag => flag); const _vo4 = (input, _path, _exceptionable = true) => [undefined === input.minimum || "number" === typeof input.minimum || _report(_exceptionable, {
|
|
1641
|
+
path: _path + ".minimum",
|
|
1642
|
+
expected: "(number | undefined)",
|
|
1643
|
+
value: input.minimum
|
|
1644
|
+
}), undefined === input.maximum || "number" === typeof input.maximum || _report(_exceptionable, {
|
|
1645
|
+
path: _path + ".maximum",
|
|
1646
|
+
expected: "(number | undefined)",
|
|
1647
|
+
value: input.maximum
|
|
1648
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1649
|
+
path: _path + ".exclusiveMinimum",
|
|
1650
|
+
expected: "(number | undefined)",
|
|
1651
|
+
value: input.exclusiveMinimum
|
|
1652
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1653
|
+
path: _path + ".exclusiveMaximum",
|
|
1654
|
+
expected: "(number | undefined)",
|
|
1655
|
+
value: input.exclusiveMaximum
|
|
1656
|
+
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || _report(_exceptionable, {
|
|
1657
|
+
path: _path + ".multipleOf",
|
|
1658
|
+
expected: "number & ExclusiveMinimum<0>",
|
|
1659
|
+
value: input.multipleOf
|
|
1660
|
+
})) || _report(_exceptionable, {
|
|
1661
|
+
path: _path + ".multipleOf",
|
|
1662
|
+
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
1663
|
+
value: input.multipleOf
|
|
1664
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
1665
|
+
path: _path + ".type",
|
|
1666
|
+
expected: "\"number\"",
|
|
1667
|
+
value: input.type
|
|
1668
|
+
})].every(flag => flag); const _vo5 = (input, _path, _exceptionable = true) => [undefined === input.format || "string" === typeof input.format || _report(_exceptionable, {
|
|
1669
|
+
path: _path + ".format",
|
|
1670
|
+
expected: "(string | undefined)",
|
|
1671
|
+
value: input.format
|
|
1672
|
+
}), undefined === input.pattern || "string" === typeof input.pattern || _report(_exceptionable, {
|
|
1673
|
+
path: _path + ".pattern",
|
|
1674
|
+
expected: "(string | undefined)",
|
|
1675
|
+
value: input.pattern
|
|
1676
|
+
}), undefined === input.contentMediaType || "string" === typeof input.contentMediaType || _report(_exceptionable, {
|
|
1677
|
+
path: _path + ".contentMediaType",
|
|
1678
|
+
expected: "(string | undefined)",
|
|
1679
|
+
value: input.contentMediaType
|
|
1680
|
+
}), undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000 || _report(_exceptionable, {
|
|
1681
|
+
path: _path + ".minLength",
|
|
1682
|
+
expected: "number & Type<\"uint64\">",
|
|
1683
|
+
value: input.minLength
|
|
1684
|
+
})) || _report(_exceptionable, {
|
|
1685
|
+
path: _path + ".minLength",
|
|
1686
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
1687
|
+
value: input.minLength
|
|
1688
|
+
}), undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000 || _report(_exceptionable, {
|
|
1689
|
+
path: _path + ".maxLength",
|
|
1690
|
+
expected: "number & Type<\"uint64\">",
|
|
1691
|
+
value: input.maxLength
|
|
1692
|
+
})) || _report(_exceptionable, {
|
|
1693
|
+
path: _path + ".maxLength",
|
|
1694
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
1695
|
+
value: input.maxLength
|
|
1696
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
1697
|
+
path: _path + ".type",
|
|
1698
|
+
expected: "\"string\"",
|
|
1699
|
+
value: input.type
|
|
1700
|
+
})].every(flag => flag); const _vo6 = (input, _path, _exceptionable = true) => ["string" === typeof input.description || _report(_exceptionable, {
|
|
1701
|
+
path: _path + ".description",
|
|
1702
|
+
expected: "string",
|
|
1703
|
+
value: input.description
|
|
1704
|
+
}), "string" === typeof input.typeName || _report(_exceptionable, {
|
|
1705
|
+
path: _path + ".typeName",
|
|
1706
|
+
expected: "string",
|
|
1707
|
+
value: input.typeName
|
|
1708
|
+
})].every(flag => flag); const _vo7 = (input, _path, _exceptionable = true) => ["string" === typeof input.description || _report(_exceptionable, {
|
|
1709
|
+
path: _path + ".description",
|
|
1710
|
+
expected: "string",
|
|
1711
|
+
value: input.description
|
|
1712
|
+
}), "string" === typeof input.typeName || _report(_exceptionable, {
|
|
1713
|
+
path: _path + ".typeName",
|
|
1714
|
+
expected: "string",
|
|
1715
|
+
value: input.typeName
|
|
1716
|
+
})].every(flag => flag); const _vu0 = (input, _path, _exceptionable = true) => (() => {
|
|
1717
|
+
if ("number" === input.type)
|
|
1718
|
+
return _vo4(input, _path, true && _exceptionable);
|
|
1719
|
+
else if ("integer" === input.type)
|
|
1720
|
+
return _vo3(input, _path, true && _exceptionable);
|
|
1721
|
+
else if ("string" === input.type)
|
|
1722
|
+
return _vo5(input, _path, true && _exceptionable);
|
|
1723
|
+
else
|
|
1724
|
+
return _report(_exceptionable, {
|
|
1725
|
+
path: _path,
|
|
1726
|
+
expected: "(AutoBeOpenApi.IJsonSchema.INumber | AutoBeOpenApi.IJsonSchema.IInteger | AutoBeOpenApi.IJsonSchema.IString)",
|
|
1727
|
+
value: input
|
|
1728
|
+
});
|
|
1729
|
+
})(); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
1730
|
+
if (false === __is(input)) {
|
|
1731
|
+
errors = [];
|
|
1732
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
1733
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
1734
|
+
path: _path + "",
|
|
1735
|
+
expected: "IAutoBeInterfaceOperationApplication.IProps",
|
|
1736
|
+
value: input
|
|
1737
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
1738
|
+
path: _path + "",
|
|
1739
|
+
expected: "IAutoBeInterfaceOperationApplication.IProps",
|
|
1740
|
+
value: input
|
|
1741
|
+
}))(input, "$input", true);
|
|
1742
|
+
const success = 0 === errors.length;
|
|
1743
|
+
return success ? {
|
|
1744
|
+
success,
|
|
1745
|
+
data: input
|
|
1746
|
+
} : {
|
|
1747
|
+
success,
|
|
1748
|
+
errors,
|
|
1749
|
+
data: input
|
|
1750
|
+
};
|
|
1751
|
+
}
|
|
1752
|
+
return {
|
|
1753
|
+
success: true,
|
|
1754
|
+
data: input
|
|
1755
|
+
};
|
|
1756
|
+
}; })()
|
|
1757
|
+
}
|
|
1758
|
+
]
|
|
1759
|
+
};
|
|
1760
|
+
__typia_transform__llmApplicationFinalize._llmApplicationFinalize(application, Object.assign(Object.assign({}, {
|
|
1761
|
+
validate: {
|
|
1762
|
+
makeOperations: validate,
|
|
1763
|
+
},
|
|
1764
|
+
}), { equals: false }));
|
|
1765
|
+
return application;
|
|
1766
|
+
})(),
|
|
1767
|
+
};
|
|
1768
|
+
//# sourceMappingURL=orchestrateInterfaceOperations.js.map
|