@breadstone/archipel-mcp 0.0.1 → 0.0.2
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/data/packages/index.md +7 -6
- package/data/packages/platform-analytics/api/Class.AnalyticsClientPort.md +141 -0
- package/data/packages/platform-analytics/api/Class.AnalyticsModule.md +47 -0
- package/data/packages/platform-analytics/api/Class.AppInsightsAnalyticsClient.md +169 -0
- package/data/packages/platform-analytics/api/Class.DatadogAnalyticsClient.md +169 -0
- package/data/packages/platform-analytics/api/Class.NoopAnalyticsClient.md +161 -0
- package/data/packages/platform-analytics/api/Class.SentryAnalyticsClient.md +169 -0
- package/data/packages/platform-analytics/api/Interface.IAnalyticsBreadcrumb.md +58 -0
- package/data/packages/platform-analytics/api/Interface.IAnalyticsModuleOptions.md +47 -0
- package/data/packages/platform-analytics/api/Interface.IAnalyticsUser.md +58 -0
- package/data/packages/platform-analytics/api/TypeAlias.AnalyticsLevel.md +14 -0
- package/data/packages/platform-analytics/api/Variable.APPINSIGHTS_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-analytics/api/Variable.APPLICATIONINSIGHTS_CONNECTION_STRING.md +14 -0
- package/data/packages/platform-analytics/api/Variable.DATADOG_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-analytics/api/Variable.DD_ENV.md +14 -0
- package/data/packages/platform-analytics/api/Variable.DD_SERVICE.md +14 -0
- package/data/packages/platform-analytics/api/Variable.SENTRY_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-analytics/api/Variable.SENTRY_DSN.md +14 -0
- package/data/packages/platform-analytics/api/Variable.SENTRY_ENVIRONMENT.md +14 -0
- package/data/packages/platform-analytics/api/index.md +44 -0
- package/data/packages/platform-authentication/api/Class.AnonymousAuthGuard.md +4 -9
- package/data/packages/platform-authentication/api/Class.AppleStrategy.md +80 -0
- package/data/packages/platform-authentication/api/Class.AuthModule.md +8 -13
- package/data/packages/platform-authentication/api/Class.AuthSubjectPort.md +10 -15
- package/data/packages/platform-authentication/api/Class.AuthTokenService.md +5 -10
- package/data/packages/platform-authentication/api/Class.ChallengeService.md +26 -31
- package/data/packages/platform-authentication/api/Class.GithubAuthGuard.md +4 -9
- package/data/packages/platform-authentication/api/Class.GithubStrategy.md +72 -0
- package/data/packages/platform-authentication/api/Class.GoogleStrategy.md +78 -0
- package/data/packages/platform-authentication/api/Class.JwtAuthGuard.md +4 -9
- package/data/packages/platform-authentication/api/Class.JwtPayloadBase.md +33 -13
- package/data/packages/platform-authentication/api/Class.LastActiveMiddleware.md +10 -15
- package/data/packages/platform-authentication/api/Class.LocalAuthGuard.md +4 -9
- package/data/packages/platform-authentication/api/Class.MfaService.md +54 -59
- package/data/packages/platform-authentication/api/Class.MfaSubjectPort.md +8 -13
- package/data/packages/platform-authentication/api/Class.MicrosoftStrategy.md +78 -0
- package/data/packages/platform-authentication/api/Class.RolesGuard.md +5 -10
- package/data/packages/platform-authentication/api/Class.SessionMappingProfile.md +4 -9
- package/data/packages/platform-authentication/api/Class.SessionPersistencePort.md +25 -30
- package/data/packages/platform-authentication/api/Class.SessionResponse.md +12 -17
- package/data/packages/platform-authentication/api/Class.SessionService.md +33 -38
- package/data/packages/platform-authentication/api/Class.SocialAuthGuard.md +5 -10
- package/data/packages/platform-authentication/api/Class.SocialAuthPort.md +2 -7
- package/data/packages/platform-authentication/api/Class.TokenEnricherPort.md +2 -7
- package/data/packages/platform-authentication/api/Class.VerificationService.md +29 -34
- package/data/packages/platform-authentication/api/Class.VerificationSubjectPort.md +16 -21
- package/data/packages/platform-authentication/api/Function.Token.md +18 -0
- package/data/packages/platform-authentication/api/Function.UseRoles.md +24 -0
- package/data/packages/platform-authentication/api/Function.socialAuthGuardFactory.md +22 -0
- package/data/packages/platform-authentication/api/Interface.IAuthModuleOptions.md +42 -18
- package/data/packages/platform-authentication/api/Interface.IAuthSubject.md +7 -12
- package/data/packages/platform-authentication/api/Interface.IMfaChallengePayload.md +5 -10
- package/data/packages/platform-authentication/api/Interface.IMfaChallengeState.md +10 -15
- package/data/packages/platform-authentication/api/Interface.IMfaConfirmation.md +0 -5
- package/data/packages/platform-authentication/api/Interface.IMfaSetup.md +3 -8
- package/data/packages/platform-authentication/api/Interface.IMfaSubject.md +9 -14
- package/data/packages/platform-authentication/api/Interface.IMfaSubjectUpdate.md +7 -12
- package/data/packages/platform-authentication/api/Interface.ISessionRecord.md +14 -19
- package/data/packages/platform-authentication/api/Interface.ISignInResult.md +5 -10
- package/data/packages/platform-authentication/api/Interface.ISocialProfile.md +3 -8
- package/data/packages/platform-authentication/api/Interface.IStoreSessionArgs.md +5 -10
- package/data/packages/platform-authentication/api/Interface.IVerifiableSubject.md +4 -9
- package/data/packages/platform-authentication/api/Variable.APPLE_AUTH_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_CALLBACK_URL.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_CLIENT_ID.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_KEY_ID.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_PRIVATE_KEY.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_APPLE_TEAM_ID.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_GITHUB_CLIENT_ID.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_GITHUB_CLIENT_SECRET.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_GOOGLE_CALLBACK_URL.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_GOOGLE_CLIENT_ID.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_GOOGLE_CLIENT_SECRET.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_JWT_EXPIRES_IN.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_JWT_SECRET.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_CHALLENGE_EXPIRES_IN.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_EMAIL_CODE_TTL.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_EMAIL_MIN_RESEND.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_ENCRYPTION_KEY.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_MAX_ATTEMPTS.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_PUSH_CODE_TTL.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_PUSH_MIN_RESEND.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_SMS_CODE_TTL.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MFA_SMS_MIN_RESEND.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_CALLBACK_URL.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_CLIENT_ID.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_CLIENT_SECRET.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_MICROSOFT_TENANT.md +14 -0
- package/data/packages/platform-authentication/api/Variable.AUTH_VERIFY_JWT_EXPIRES_IN.md +14 -0
- package/data/packages/platform-authentication/api/Variable.GITHUB_AUTH_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-authentication/api/Variable.GOOGLE_AUTH_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-authentication/api/Variable.MICROSOFT_AUTH_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-authentication/api/Variable.PLATFORM_AUTHENTICATION_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-authentication/api/Variable.ROLES_KEY.md +14 -0
- package/data/packages/platform-authentication/api/Variable.SEED_ANONYMOUS_USERNAME.md +14 -0
- package/data/packages/platform-authentication/api/Variable.SESSION_LIST_MAPPING_KEY.md +14 -0
- package/data/packages/platform-authentication/api/Variable.SESSION_MAPPING_KEY.md +14 -0
- package/data/packages/platform-authentication/api/Variable.User.md +24 -0
- package/data/packages/platform-authentication/api/index.md +86 -490
- package/data/packages/platform-blob-storage/api/Class.AwsS3BlobProvider.md +196 -0
- package/data/packages/platform-blob-storage/api/Class.AzureBlobProvider.md +196 -0
- package/data/packages/platform-blob-storage/api/Class.BlobHealthIndicator.md +5 -10
- package/data/packages/platform-blob-storage/api/Class.BlobModule.md +4 -9
- package/data/packages/platform-blob-storage/api/Class.BlobObjectPersistencePort.md +12 -17
- package/data/packages/platform-blob-storage/api/Class.BlobService.md +45 -50
- package/data/packages/platform-blob-storage/api/Class.BlobVariantPersistencePort.md +7 -12
- package/data/packages/platform-blob-storage/api/Class.VercelBlobProvider.md +18 -23
- package/data/packages/platform-blob-storage/api/Interface.IAwsS3BlobProviderRegistration.md +28 -0
- package/data/packages/platform-blob-storage/api/Interface.IAwsS3ProviderOptions.md +68 -0
- package/data/packages/platform-blob-storage/api/Interface.IAzureBlobProviderOptions.md +38 -0
- package/data/packages/platform-blob-storage/api/Interface.IAzureBlobProviderRegistration.md +28 -0
- package/data/packages/platform-blob-storage/api/Interface.IBlobDeleteRequest.md +6 -11
- package/data/packages/platform-blob-storage/api/Interface.IBlobDownloadRequest.md +8 -13
- package/data/packages/platform-blob-storage/api/Interface.IBlobDownloadResult.md +12 -17
- package/data/packages/platform-blob-storage/api/Interface.IBlobModuleOptions.md +8 -13
- package/data/packages/platform-blob-storage/api/Interface.IBlobObjectMetadata.md +26 -31
- package/data/packages/platform-blob-storage/api/Interface.IBlobProvider.md +21 -26
- package/data/packages/platform-blob-storage/api/Interface.IBlobSignedUrlRequest.md +8 -13
- package/data/packages/platform-blob-storage/api/Interface.IBlobUploadRequest.md +18 -23
- package/data/packages/platform-blob-storage/api/Interface.IBlobUploadResult.md +4 -9
- package/data/packages/platform-blob-storage/api/Interface.ICustomBlobProviderRegistration.md +5 -10
- package/data/packages/platform-blob-storage/api/Interface.IVercelBlobProviderOptions.md +5 -10
- package/data/packages/platform-blob-storage/api/Interface.IVercelBlobProviderRegistration.md +5 -10
- package/data/packages/platform-blob-storage/api/TypeAlias.BlobDownloadResponseType.md +2 -7
- package/data/packages/platform-blob-storage/api/TypeAlias.BlobUploadBody.md +1 -6
- package/data/packages/platform-blob-storage/api/TypeAlias.IBlobProviderRegistration.md +6 -7
- package/data/packages/platform-blob-storage/api/Variable.AWS_S3_PROVIDER_OPTIONS.md +12 -0
- package/data/packages/platform-blob-storage/api/Variable.AZURE_BLOB_PROVIDER_OPTIONS.md +12 -0
- package/data/packages/platform-blob-storage/api/Variable.BLOB_PROVIDER.md +12 -0
- package/data/packages/platform-blob-storage/api/Variable.BlobDownloadResponseTypes.md +26 -0
- package/data/packages/platform-blob-storage/api/Variable.BlobProviderKinds.md +26 -0
- package/data/packages/platform-blob-storage/api/Variable.VERCEL_BLOB_PROVIDER_OPTIONS.md +12 -0
- package/data/packages/platform-blob-storage/api/index.md +41 -93
- package/data/packages/platform-core/api/Class.AppHealthIndicator.md +2 -3
- package/data/packages/platform-core/api/Class.BcryptService.md +7 -8
- package/data/packages/platform-core/api/Class.BlobResourceStrategy.md +20 -21
- package/data/packages/platform-core/api/Class.BooleanUtils.md +12 -13
- package/data/packages/platform-core/api/Class.CUIDGenerator.md +17 -18
- package/data/packages/platform-core/api/Class.CasingInterceptor.md +12 -13
- package/data/packages/platform-core/api/Class.CatchUtils.md +15 -16
- package/data/packages/platform-core/api/Class.ConfigModule.md +7 -8
- package/data/packages/platform-core/api/Class.ConfigRegistry.md +8 -9
- package/data/packages/platform-core/api/Class.ConfigService.md +26 -27
- package/data/packages/platform-core/api/Class.ConfigStrategyBase.md +33 -18
- package/data/packages/platform-core/api/Class.ContentTemplateEngine.md +6 -7
- package/data/packages/platform-core/api/Class.CryptoService.md +3 -4
- package/data/packages/platform-core/api/Class.DateTimeUtils.md +12 -13
- package/data/packages/platform-core/api/Class.DeviceParserService.md +2 -3
- package/data/packages/platform-core/api/Class.EmbeddedResourceStrategy.md +22 -23
- package/data/packages/platform-core/api/Class.EnvironmentConfigStrategy.md +18 -21
- package/data/packages/platform-core/api/Class.ErrorTemplateService.md +15 -16
- package/data/packages/platform-core/api/Class.EventHub.md +25 -26
- package/data/packages/platform-core/api/Class.EventModule.md +0 -1
- package/data/packages/platform-core/api/Class.FileConfigStrategy.md +20 -23
- package/data/packages/platform-core/api/Class.FileResourceStrategy.md +19 -20
- package/data/packages/platform-core/api/Class.GUIDGenerator.md +7 -8
- package/data/packages/platform-core/api/Class.GlobalExceptionFilter.md +7 -8
- package/data/packages/platform-core/api/Class.HealthModule.md +2 -3
- package/data/packages/platform-core/api/Class.HealthOrchestrator.md +3 -4
- package/data/packages/platform-core/api/Class.HostModule.md +0 -2
- package/data/packages/platform-core/api/Class.HostService.md +13 -14
- package/data/packages/platform-core/api/Class.HttpLoggerMiddleware.md +8 -9
- package/data/packages/platform-core/api/Class.IdGeneratorBase.md +7 -8
- package/data/packages/platform-core/api/Class.IdentifierModule.md +5 -6
- package/data/packages/platform-core/api/Class.IntelligenceCapabilityRegistrarBase.md +56 -3
- package/data/packages/platform-core/api/Class.IntelligenceCapabilityRegistry.md +10 -11
- package/data/packages/platform-core/api/Class.IntelligenceModule.md +0 -1
- package/data/packages/platform-core/api/Class.IntelligenceTextGenerator.md +6 -7
- package/data/packages/platform-core/api/Class.LimitRequestSizeMiddleware.md +8 -9
- package/data/packages/platform-core/api/Class.LocalizedTextRequest.md +1 -2
- package/data/packages/platform-core/api/Class.LocalizedTextResponse.md +1 -2
- package/data/packages/platform-core/api/Class.MappingBuilder.md +18 -19
- package/data/packages/platform-core/api/Class.MappingModule.md +2 -3
- package/data/packages/platform-core/api/Class.MappingNotRegisteredError.md +5 -6
- package/data/packages/platform-core/api/Class.MappingProfileBase.md +2 -3
- package/data/packages/platform-core/api/Class.MappingService.md +52 -53
- package/data/packages/platform-core/api/Class.MemoryLayeredCache.md +37 -38
- package/data/packages/platform-core/api/Class.NoopCacheMetricsRecorder.md +19 -20
- package/data/packages/platform-core/api/Class.NormalizedUtils.md +20 -21
- package/data/packages/platform-core/api/Class.OtpService.md +8 -9
- package/data/packages/platform-core/api/Class.PageableRequest.md +1 -2
- package/data/packages/platform-core/api/Class.PageableResponse.md +3 -4
- package/data/packages/platform-core/api/Class.ProblemDetailException.md +6 -7
- package/data/packages/platform-core/api/Class.ProblemDetailExceptionFilter.md +21 -12
- package/data/packages/platform-core/api/Class.QuantityResponse.md +1 -2
- package/data/packages/platform-core/api/Class.RedisLayeredCache.md +39 -40
- package/data/packages/platform-core/api/Class.ResourceManager.md +88 -89
- package/data/packages/platform-core/api/Class.ResourceModule.md +3 -4
- package/data/packages/platform-core/api/Class.ResponseReturn.md +123 -125
- package/data/packages/platform-core/api/Class.SseHub.md +23 -24
- package/data/packages/platform-core/api/Class.SseModule.md +3 -4
- package/data/packages/platform-core/api/Class.TimeStampResponse.md +1 -2
- package/data/packages/platform-core/api/Class.TypeMappingNotRegisteredError.md +5 -6
- package/data/packages/platform-core/api/Class.UUIDGenerator.md +7 -8
- package/data/packages/platform-core/api/Class.UserAvatarGeneratorService.md +4 -5
- package/data/packages/platform-core/api/Class.UserNameGeneratorService.md +4 -5
- package/data/packages/platform-core/api/Function.Public.md +18 -0
- package/data/packages/platform-core/api/Function.createConfigKey.md +58 -0
- package/data/packages/platform-core/api/Function.createEventKey.md +33 -0
- package/data/packages/platform-core/api/Function.createMappingKey.md +39 -0
- package/data/packages/platform-core/api/Function.env.md +28 -0
- package/data/packages/platform-core/api/Function.getMimeTypeByFileNameOrExtension.md +26 -0
- package/data/packages/platform-core/api/ISseEventData.Function.isActionId.md +27 -0
- package/data/packages/platform-core/api/Interface.IBlobResourceStrategyConfig.md +1 -2
- package/data/packages/platform-core/api/Interface.IBlobServiceAdapter.md +5 -6
- package/data/packages/platform-core/api/Interface.ICacheMetricsRecorder.md +19 -20
- package/data/packages/platform-core/api/Interface.ICacheStats.md +4 -5
- package/data/packages/platform-core/api/Interface.IConfigKey.md +16 -17
- package/data/packages/platform-core/api/Interface.IConfigModuleOptions.md +3 -4
- package/data/packages/platform-core/api/Interface.IConfigRegistryEntry.md +6 -7
- package/data/packages/platform-core/api/Interface.IDeviceInfo.md +6 -7
- package/data/packages/platform-core/api/Interface.IErrorPageParams.md +10 -11
- package/data/packages/platform-core/api/Interface.IEventKey.md +7 -8
- package/data/packages/platform-core/api/Interface.IEventMap.md +0 -1
- package/data/packages/platform-core/api/Interface.IFileResourceStrategyConfig.md +5 -6
- package/data/packages/platform-core/api/Interface.IHealthCheckResult.md +3 -4
- package/data/packages/platform-core/api/Interface.IHealthIndicator.md +3 -4
- package/data/packages/platform-core/api/Interface.IHostContentParams.md +8 -9
- package/data/packages/platform-core/api/Interface.IIdGenerator.md +7 -8
- package/data/packages/platform-core/api/Interface.IIntelligenceArtifact.md +1 -2
- package/data/packages/platform-core/api/Interface.IIntelligenceCapability.md +6 -7
- package/data/packages/platform-core/api/Interface.IIntelligenceCapabilityMetadata.md +4 -5
- package/data/packages/platform-core/api/Interface.IIntelligenceCapabilityPayload.md +2 -3
- package/data/packages/platform-core/api/Interface.IIntelligenceCapabilityRegistry.md +10 -11
- package/data/packages/platform-core/api/Interface.IIntelligenceCapabilityResult.md +2 -3
- package/data/packages/platform-core/api/Interface.IIntelligenceCompletionUsage.md +2 -3
- package/data/packages/platform-core/api/Interface.IIntelligenceContext.md +5 -6
- package/data/packages/platform-core/api/Interface.IIntelligenceContextBuilder.md +3 -4
- package/data/packages/platform-core/api/Interface.IIntelligenceConversationMessageSnapshot.md +4 -5
- package/data/packages/platform-core/api/Interface.IIntelligenceConversationSnapshot.md +3 -4
- package/data/packages/platform-core/api/Interface.IIntelligenceFollowUpQuestion.md +2 -3
- package/data/packages/platform-core/api/Interface.IIntelligenceIntent.md +2 -3
- package/data/packages/platform-core/api/Interface.IIntelligenceIntentEntity.md +1 -2
- package/data/packages/platform-core/api/Interface.IIntelligenceMessageModel.md +4 -5
- package/data/packages/platform-core/api/Interface.IIntelligenceMessagePayload.md +1 -2
- package/data/packages/platform-core/api/Interface.IIntelligencePrompt.md +1 -2
- package/data/packages/platform-core/api/Interface.IIntelligencePromptMessage.md +1 -2
- package/data/packages/platform-core/api/Interface.IIntelligenceProviderConfiguration.md +6 -7
- package/data/packages/platform-core/api/Interface.IIntelligenceResponseMessage.md +1 -2
- package/data/packages/platform-core/api/Interface.IIntelligenceTextCompletion.md +4 -5
- package/data/packages/platform-core/api/Interface.IIntelligenceTextGenerationOptions.md +2 -3
- package/data/packages/platform-core/api/Interface.IIntelligenceTextGenerator.md +4 -5
- package/data/packages/platform-core/api/Interface.ILayeredCache.md +34 -35
- package/data/packages/platform-core/api/Interface.ILayeredCacheOptions.md +4 -5
- package/data/packages/platform-core/api/Interface.IMappingBuilder.md +17 -18
- package/data/packages/platform-core/api/Interface.IMappingKey.md +7 -8
- package/data/packages/platform-core/api/Interface.IMappingProfile.md +2 -3
- package/data/packages/platform-core/api/Interface.IOtpService.md +8 -9
- package/data/packages/platform-core/api/Interface.IOtpUriOptions.md +2 -3
- package/data/packages/platform-core/api/Interface.IRedisLayeredCacheOptions.md +14 -15
- package/data/packages/platform-core/api/Interface.IResourceManagerConfig.md +4 -5
- package/data/packages/platform-core/api/Interface.IResourceMetadata.md +6 -7
- package/data/packages/platform-core/api/Interface.IResourceResult.md +1 -2
- package/data/packages/platform-core/api/Interface.IResourceStrategy.md +16 -17
- package/data/packages/platform-core/api/Interface.ISseEventData.md +3 -4
- package/data/packages/platform-core/api/Interface.ISseHub.md +16 -17
- package/data/packages/platform-core/api/Namespace.ISseEventData.md +3 -23
- package/data/packages/platform-core/api/TypeAlias.CamelCase.md +2 -3
- package/data/packages/platform-core/api/TypeAlias.IntelligenceConversationMessageRole.md +1 -3
- package/data/packages/platform-core/api/TypeAlias.IntelligenceProviderName.md +1 -2
- package/data/packages/platform-core/api/TypeAlias.ProblemDetail.md +5 -6
- package/data/packages/platform-core/api/TypeAlias.ProblemDetailTypeUrlResolver.md +4 -5
- package/data/packages/platform-core/api/TypeAlias.SetOptional.md +4 -5
- package/data/packages/platform-core/api/TypeAlias.StringValue.md +4 -2
- package/data/packages/platform-core/api/Variable.APP_PORT.md +14 -0
- package/data/packages/platform-core/api/Variable.APP_URL.md +14 -0
- package/data/packages/platform-core/api/Variable.APP_VERSION.md +14 -0
- package/data/packages/platform-core/api/Variable.HEALTH_INDICATORS_TOKEN.md +14 -0
- package/data/packages/platform-core/api/Variable.ID_GENERATOR_TOKEN.md +14 -0
- package/data/packages/platform-core/api/Variable.INTELLIGENCE_MAX_OUTPUT_TOKENS.md +14 -0
- package/data/packages/platform-core/api/Variable.INTELLIGENCE_MODEL.md +14 -0
- package/data/packages/platform-core/api/Variable.INTELLIGENCE_TEMPERATURE.md +14 -0
- package/data/packages/platform-core/api/Variable.INTELLIGENCE_TOP_P.md +14 -0
- package/data/packages/platform-core/api/Variable.IS_PUBLIC_KEY.md +12 -0
- package/data/packages/platform-core/api/Variable.IntelligenceConversationMessageRoles.md +26 -0
- package/data/packages/platform-core/api/Variable.IntelligenceProviderNames.md +28 -0
- package/data/packages/platform-core/api/Variable.IpAddress.md +31 -0
- package/data/packages/platform-core/api/Variable.Lang.md +29 -0
- package/data/packages/platform-core/api/Variable.NODE_ENV.md +14 -0
- package/data/packages/platform-core/api/Variable.OTP_SERVICE_TOKEN.md +14 -0
- package/data/packages/platform-core/api/Variable.PLATFORM_CORE_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-core/api/Variable.TOTP_EPOCH_TOLERANCE.md +23 -0
- package/data/packages/platform-core/api/Variable.UserAgent.md +24 -0
- package/data/packages/platform-core/api/index.md +160 -620
- package/data/packages/platform-database/api/Class.DatabaseHealthIndicator.md +6 -11
- package/data/packages/platform-database/api/Class.DatabaseModule.md +5 -10
- package/data/packages/platform-database/api/Class.DatabaseService.md +19 -24
- package/data/packages/platform-database/api/Class.PrismaService.md +7 -12
- package/data/packages/platform-database/api/Class.RepositoryBase.md +185 -125
- package/data/packages/platform-database/api/Class.RepositoryExceptionFilter.md +5 -10
- package/data/packages/platform-database/api/Function.pageable.md +35 -0
- package/data/packages/platform-database/api/Function.paginator.md +22 -0
- package/data/packages/platform-database/api/Function.query.md +34 -0
- package/data/packages/platform-database/api/Function.skip.md +33 -0
- package/data/packages/platform-database/api/Function.transactionalQuery.md +31 -0
- package/data/packages/platform-database/api/Interface.IDatabaseModuleConfig.md +0 -5
- package/data/packages/platform-database/api/Interface.IPaginateOptions.md +1 -6
- package/data/packages/platform-database/api/Interface.IPaginatedResult.md +4 -9
- package/data/packages/platform-database/api/Interface.IRepositoryQuery.md +7 -12
- package/data/packages/platform-database/api/Interface.ITransactionalRepositoryQuery.md +5 -10
- package/data/packages/platform-database/api/TypeAlias.DelegateArgs.md +2 -7
- package/data/packages/platform-database/api/TypeAlias.DelegateReturnTypes.md +2 -7
- package/data/packages/platform-database/api/TypeAlias.PaginateFunction.md +7 -12
- package/data/packages/platform-database/api/TypeAlias.QueryResultType.md +3 -8
- package/data/packages/platform-database/api/TypeAlias.TransactionalQueryResultType.md +3 -8
- package/data/packages/platform-database/api/index.md +27 -163
- package/data/packages/platform-documents/api/Class.BaseDocumentRenderer.md +194 -20
- package/data/packages/platform-documents/api/Class.DocumentEngine.md +7 -12
- package/data/packages/platform-documents/api/Class.DocumentModule.md +2 -7
- package/data/packages/platform-documents/api/Class.SharpImageProcessor.md +21 -26
- package/data/packages/platform-documents/api/Interface.IDocumentModuleOptions.md +5 -11
- package/data/packages/platform-documents/api/Interface.IDocumentPlaceholderDetail.md +5 -10
- package/data/packages/platform-documents/api/Interface.IDocumentProbeReport.md +8 -13
- package/data/packages/platform-documents/api/Interface.IDocumentRenderer.md +2 -7
- package/data/packages/platform-documents/api/Interface.IImagePayload.md +3 -8
- package/data/packages/platform-documents/api/Interface.IImageProcessor.md +18 -23
- package/data/packages/platform-documents/api/Interface.IRenderOptions.md +3 -8
- package/data/packages/platform-documents/api/Interface.IRenderResult.md +3 -8
- package/data/packages/platform-documents/api/TypeAlias.DocumentFormat.md +1 -6
- package/data/packages/platform-documents/api/TypeAlias.EngineType.md +1 -6
- package/data/packages/platform-documents/api/TypeAlias.ImageMimeType.md +1 -6
- package/data/packages/platform-documents/api/TypeAlias.TemplateFormat.md +1 -6
- package/data/packages/platform-documents/api/TypeAlias.TemplateType.md +1 -6
- package/data/packages/platform-documents/api/Variable.DOCUMENT_MODULE_OPTIONS.md +14 -0
- package/data/packages/platform-documents/api/Variable.DOCUMENT_PARSER_TOKEN.md +14 -0
- package/data/packages/platform-documents/api/Variable.DOCUMENT_RENDERER_TOKEN.md +14 -0
- package/data/packages/platform-documents/api/Variable.IMAGE_PROCESSOR_TOKEN.md +14 -0
- package/data/packages/platform-documents/api/index.md +28 -72
- package/data/packages/platform-esigning/api/Class.EsigningClientPort.md +184 -0
- package/data/packages/platform-esigning/api/Class.EsigningError.md +65 -0
- package/data/packages/platform-esigning/api/Class.EsigningModule.md +48 -0
- package/data/packages/platform-esigning/api/Class.EsigningPersistencePort.md +90 -0
- package/data/packages/platform-esigning/api/Class.EsigningService.md +198 -0
- package/data/packages/platform-esigning/api/Class.InternalEsigningProvider.md +249 -0
- package/data/packages/platform-esigning/api/Class.SigningProviderError.md +101 -0
- package/data/packages/platform-esigning/api/Class.SigningRequestNotFoundError.md +78 -0
- package/data/packages/platform-esigning/api/Class.WebhookVerificationError.md +60 -0
- package/data/packages/platform-esigning/api/Interface.ICreateSigningRequest.md +94 -0
- package/data/packages/platform-esigning/api/Interface.ICreateSigningRequestDocument.md +58 -0
- package/data/packages/platform-esigning/api/Interface.ICreateSigningRequestSigner.md +58 -0
- package/data/packages/platform-esigning/api/Interface.ICreateSigningSessionRequest.md +46 -0
- package/data/packages/platform-esigning/api/Interface.IEsigningModuleOptions.md +60 -0
- package/data/packages/platform-esigning/api/Interface.IEsigningWebhookEvent.md +82 -0
- package/data/packages/platform-esigning/api/Interface.ISignedDocument.md +82 -0
- package/data/packages/platform-esigning/api/Interface.ISigner.md +82 -0
- package/data/packages/platform-esigning/api/Interface.ISigningDocument.md +82 -0
- package/data/packages/platform-esigning/api/Interface.ISigningField.md +142 -0
- package/data/packages/platform-esigning/api/Interface.ISigningRequest.md +142 -0
- package/data/packages/platform-esigning/api/Interface.ISigningSession.md +70 -0
- package/data/packages/platform-esigning/api/TypeAlias.SignerRole.md +14 -0
- package/data/packages/platform-esigning/api/TypeAlias.SignerStatus.md +14 -0
- package/data/packages/platform-esigning/api/TypeAlias.SigningFieldType.md +14 -0
- package/data/packages/platform-esigning/api/TypeAlias.SigningRequestStatus.md +14 -0
- package/data/packages/platform-esigning/api/TypeAlias.WebhookEventType.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ADOBE_SIGN_BASE_URL.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ADOBE_SIGN_CLIENT_SECRET.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ADOBE_SIGN_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ADOBE_SIGN_INTEGRATION_KEY.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ADOBE_SIGN_WEBHOOK_CLIENT_ID.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DOCUSIGN_ACCOUNT_ID.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DOCUSIGN_BASE_URL.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DOCUSIGN_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DOCUSIGN_INTEGRATION_KEY.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DOCUSIGN_SECRET_KEY.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DOCUSIGN_WEBHOOK_HMAC_KEY.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DROPBOX_SIGN_API_KEY.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DROPBOX_SIGN_CLIENT_ID.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DROPBOX_SIGN_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-esigning/api/Variable.DROPBOX_SIGN_WEBHOOK_SECRET.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ESIGNING_API_BASE_URL.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ESIGNING_API_KEY.md +14 -0
- package/data/packages/platform-esigning/api/Variable.ESIGNING_PROVIDER.md +12 -0
- package/data/packages/platform-esigning/api/Variable.ESIGNING_PROVIDER_OPTIONS.md +12 -0
- package/data/packages/platform-esigning/api/Variable.ESIGNING_WEBHOOK_SECRET.md +14 -0
- package/data/packages/platform-esigning/api/Variable.PLATFORM_ESIGNING_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-esigning/api/Variable.SIGNNOW_API_KEY.md +14 -0
- package/data/packages/platform-esigning/api/Variable.SIGNNOW_BASE_URL.md +14 -0
- package/data/packages/platform-esigning/api/Variable.SIGNNOW_CLIENT_ID.md +14 -0
- package/data/packages/platform-esigning/api/Variable.SIGNNOW_CLIENT_SECRET.md +14 -0
- package/data/packages/platform-esigning/api/Variable.SIGNNOW_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-esigning/api/Variable.SIGNNOW_WEBHOOK_SECRET.md +14 -0
- package/data/packages/platform-esigning/api/Variable.SignerRoles.md +30 -0
- package/data/packages/platform-esigning/api/Variable.SignerStatuses.md +32 -0
- package/data/packages/platform-esigning/api/Variable.SigningFieldTypes.md +38 -0
- package/data/packages/platform-esigning/api/Variable.SigningRequestStatuses.md +36 -0
- package/data/packages/platform-esigning/api/Variable.WebhookEventTypes.md +38 -0
- package/data/packages/platform-esigning/api/index.md +84 -0
- package/data/packages/platform-esigning/index.md +691 -0
- package/data/packages/platform-logging/api/Class.LoggerModule.md +0 -5
- package/data/packages/platform-logging/api/Variable.APP_LOG_LEVEL.md +14 -0
- package/data/packages/platform-logging/api/Variable.PLATFORM_LOGGING_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-logging/api/index.md +7 -30
- package/data/packages/platform-mailing/api/Class.BlobTemplateFetchStrategy.md +3 -10
- package/data/packages/platform-mailing/api/Class.DeliveryStrategyBase.md +30 -19
- package/data/packages/platform-mailing/api/Class.FileTemplateFetchStrategy.md +3 -10
- package/data/packages/platform-mailing/api/Class.LogDeliveryStrategy.md +14 -21
- package/data/packages/platform-mailing/api/Class.MailHealthIndicator.md +4 -9
- package/data/packages/platform-mailing/api/Class.MailModule.md +0 -5
- package/data/packages/platform-mailing/api/Class.MailService.md +27 -32
- package/data/packages/platform-mailing/api/Class.MailTemplateEngine.md +12 -17
- package/data/packages/platform-mailing/api/Class.MailVerificationService.md +14 -19
- package/data/packages/platform-mailing/api/Class.MailgunDeliveryStrategy.md +14 -21
- package/data/packages/platform-mailing/api/Class.PostmarkDeliveryStrategy.md +14 -21
- package/data/packages/platform-mailing/api/Class.ResendDeliveryStrategy.md +14 -21
- package/data/packages/platform-mailing/api/Class.SendGridDeliveryStrategy.md +14 -21
- package/data/packages/platform-mailing/api/Class.SmtpDeliveryStrategy.md +14 -21
- package/data/packages/platform-mailing/api/Class.TemplateFetchStrategyBase.md +18 -7
- package/data/packages/platform-mailing/api/Interface.IMailEvents.md +0 -5
- package/data/packages/platform-mailing/api/Interface.IMailTemplateVariants.md +1 -6
- package/data/packages/platform-mailing/api/TypeAlias.MailTemplateFormat.md +1 -6
- package/data/packages/platform-mailing/api/Variable.MAILGUN_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAILGUN_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAILGUN_DOMAIN.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_DELIVERY_STRATEGY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_DELIVERY_STRATEGY_TOKEN.md +12 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_HOST.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_MAILGUN_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_MAILGUN_DOMAIN.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_PORT.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_POSTMARK_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_RESEND_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_SENDER_EMAIL.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_SENDGRID_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_SMTP_HOST.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_SMTP_PASSWORD.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_SMTP_PORT.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_SMTP_SECURE.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_SMTP_USER.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_TEMPLATE_ENGINE_FORMAT.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_TEMPLATE_FETCH_STRATEGY_TOKEN.md +16 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_TEMPLATE_STRATEGY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.MAIL_USER.md +14 -0
- package/data/packages/platform-mailing/api/Variable.PLATFORM_MAILING_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-mailing/api/Variable.POSTMARK_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.POSTMARK_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-mailing/api/Variable.RESEND_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.RESEND_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-mailing/api/Variable.SENDGRID_API_KEY.md +14 -0
- package/data/packages/platform-mailing/api/Variable.SENDGRID_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-mailing/api/Variable.SEND_MAIL_EVENT_KEY.md +14 -0
- package/data/packages/platform-mailing/api/index.md +54 -384
- package/data/packages/platform-mcp/api/Class.McpDiscoveryService.md +8 -9
- package/data/packages/platform-mcp/api/Class.McpModule.md +8 -9
- package/data/packages/platform-mcp/api/Class.McpRegistryService.md +16 -17
- package/data/packages/platform-mcp/api/Class.McpServerService.md +19 -20
- package/data/packages/platform-mcp/api/Function.McpPrompt.md +28 -0
- package/data/packages/platform-mcp/api/Function.McpResource.md +28 -0
- package/data/packages/platform-mcp/api/Function.McpTool.md +28 -0
- package/data/packages/platform-mcp/api/Interface.IMcpHandlerMetadata.md +2 -3
- package/data/packages/platform-mcp/api/Interface.IMcpModuleAsyncOptions.md +8 -9
- package/data/packages/platform-mcp/api/Interface.IMcpModuleOptions.md +3 -4
- package/data/packages/platform-mcp/api/Interface.IMcpModuleOptionsFactory.md +3 -4
- package/data/packages/platform-mcp/api/Interface.IMcpPromptMetadata.md +3 -4
- package/data/packages/platform-mcp/api/Interface.IMcpResourceMetadata.md +4 -5
- package/data/packages/platform-mcp/api/Interface.IMcpToolMetadata.md +5 -6
- package/data/packages/platform-mcp/api/Interface.IRegisteredPrompt.md +3 -4
- package/data/packages/platform-mcp/api/Interface.IRegisteredResource.md +3 -4
- package/data/packages/platform-mcp/api/Interface.IRegisteredTool.md +3 -4
- package/data/packages/platform-mcp/api/Interface.ISseTransportOptions.md +0 -1
- package/data/packages/platform-mcp/api/Interface.IStreamableHttpTransportOptions.md +1 -2
- package/data/packages/platform-mcp/api/Variable.MCP_MODULE_OPTIONS.md +14 -0
- package/data/packages/platform-mcp/api/index.md +27 -104
- package/data/packages/platform-openapi/api/Class.SwaggerFeatureDiscovery.md +5 -10
- package/data/packages/platform-openapi/api/Class.SwaggerFeatureRegistry.md +5 -10
- package/data/packages/platform-openapi/api/Class.SwaggerMultiDocumentService.md +16 -21
- package/data/packages/platform-openapi/api/Class.SwaggerTheme.md +2 -7
- package/data/packages/platform-openapi/api/Function.Api.md +35 -0
- package/data/packages/platform-openapi/api/Function.SwaggerFeature.md +42 -0
- package/data/packages/platform-openapi/api/Function.getRegisteredSwaggerFeatures.md +18 -0
- package/data/packages/platform-openapi/api/Function.getSwaggerFeatureMetadata.md +27 -0
- package/data/packages/platform-openapi/api/Interface.IFeatureSwaggerConfig.md +5 -10
- package/data/packages/platform-openapi/api/Interface.ISwaggerFeatureMetadata.md +5 -10
- package/data/packages/platform-openapi/api/Variable.APP_VERSION.md +14 -0
- package/data/packages/platform-openapi/api/Variable.PLATFORM_OPENAPI_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-openapi/api/Variable.SWAGGER_CONTACT_EMAIL.md +14 -0
- package/data/packages/platform-openapi/api/Variable.SWAGGER_CONTACT_NAME.md +14 -0
- package/data/packages/platform-openapi/api/Variable.SWAGGER_CONTACT_URL.md +14 -0
- package/data/packages/platform-openapi/api/Variable.SWAGGER_FEATURE_METADATA_KEY.md +12 -0
- package/data/packages/platform-openapi/api/index.md +24 -191
- package/data/packages/platform-payments/api/Class.FeatureAccessPort.md +7 -12
- package/data/packages/platform-payments/api/Class.FeatureGuard.md +6 -11
- package/data/packages/platform-payments/api/Class.FeatureUsageInterceptor.md +7 -12
- package/data/packages/platform-payments/api/Class.LemonSqueezyClient.md +24 -29
- package/data/packages/platform-payments/api/Class.MollieClient.md +24 -29
- package/data/packages/platform-payments/api/Class.PaddleClient.md +24 -29
- package/data/packages/platform-payments/api/Class.PaymentClientPort.md +25 -30
- package/data/packages/platform-payments/api/Class.PaymentModule.md +2 -7
- package/data/packages/platform-payments/api/Class.StripeClient.md +24 -29
- package/data/packages/platform-payments/api/Function.RequiresFeature.md +25 -0
- package/data/packages/platform-payments/api/Interface.IFeatureAccessResult.md +4 -9
- package/data/packages/platform-payments/api/Interface.INormalizedCheckoutSession.md +5 -10
- package/data/packages/platform-payments/api/Interface.INormalizedPrice.md +6 -11
- package/data/packages/platform-payments/api/Interface.INormalizedSubscription.md +8 -13
- package/data/packages/platform-payments/api/Interface.INormalizedWebhookEvent.md +2 -7
- package/data/packages/platform-payments/api/Interface.IPaymentModuleOptions.md +3 -8
- package/data/packages/platform-payments/api/TypeAlias.SubscriptionStatus.md +9 -14
- package/data/packages/platform-payments/api/Variable.FEATURE_KEY_METADATA.md +12 -0
- package/data/packages/platform-payments/api/Variable.LEMONSQUEEZY_API_KEY.md +14 -0
- package/data/packages/platform-payments/api/Variable.LEMONSQUEEZY_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-payments/api/Variable.LEMONSQUEEZY_STORE_ID.md +14 -0
- package/data/packages/platform-payments/api/Variable.LEMONSQUEEZY_WEBHOOK_SECRET.md +14 -0
- package/data/packages/platform-payments/api/Variable.MOLLIE_API_KEY.md +14 -0
- package/data/packages/platform-payments/api/Variable.MOLLIE_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-payments/api/Variable.MOLLIE_WEBHOOK_SECRET.md +14 -0
- package/data/packages/platform-payments/api/Variable.PADDLE_API_KEY.md +14 -0
- package/data/packages/platform-payments/api/Variable.PADDLE_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-payments/api/Variable.PADDLE_ENVIRONMENT.md +14 -0
- package/data/packages/platform-payments/api/Variable.PADDLE_WEBHOOK_SECRET.md +14 -0
- package/data/packages/platform-payments/api/Variable.STRIPE_API_KEY.md +14 -0
- package/data/packages/platform-payments/api/Variable.STRIPE_CONFIG_ENTRIES.md +14 -0
- package/data/packages/platform-payments/api/Variable.STRIPE_WEBHOOK_SECRET.md +14 -0
- package/data/packages/platform-payments/api/index.md +41 -221
- package/data/packages/platform-reporting/api/Class.ReportingContributorRegistry.md +3 -4
- package/data/packages/platform-reporting/api/Class.ReportingDatasetNotFoundError.md +3 -4
- package/data/packages/platform-reporting/api/Class.ReportingFacade.md +8 -9
- package/data/packages/platform-reporting/api/Class.ReportingModule.md +0 -1
- package/data/packages/platform-reporting/api/Interface.IReportingContributor.md +4 -5
- package/data/packages/platform-reporting/api/Interface.IReportingDataset.md +5 -6
- package/data/packages/platform-reporting/api/Interface.IReportingDatasetField.md +4 -5
- package/data/packages/platform-reporting/api/Interface.IReportingQuery.md +4 -5
- package/data/packages/platform-reporting/api/Interface.IReportingQueryFilter.md +2 -3
- package/data/packages/platform-reporting/api/Interface.IReportingQueryResult.md +4 -5
- package/data/packages/platform-reporting/api/Interface.IReportingQuerySort.md +1 -2
- package/data/packages/platform-reporting/api/TypeAlias.ReportingFieldType.md +1 -2
- package/data/packages/platform-reporting/api/TypeAlias.ReportingFilterOperator.md +1 -2
- package/data/packages/platform-reporting/api/TypeAlias.ReportingQueryResultRow.md +0 -1
- package/data/packages/platform-reporting/api/Variable.ReportingFieldTypes.md +30 -0
- package/data/packages/platform-reporting/api/Variable.ReportingFilterOperators.md +28 -0
- package/data/packages/platform-reporting/api/index.md +23 -71
- package/data/packages/platform-telemetry/api/Class.NoopTelemetryFacade.md +22 -27
- package/data/packages/platform-telemetry/api/Class.TelemetryCacheMetricsRecorder.md +26 -31
- package/data/packages/platform-telemetry/api/Class.TelemetryFacade.md +23 -28
- package/data/packages/platform-telemetry/api/Class.TelemetryLoggerService.md +35 -40
- package/data/packages/platform-telemetry/api/Class.TelemetryModule.md +2 -7
- package/data/packages/platform-telemetry/api/Class.TelemetryRuleEngine.md +4 -9
- package/data/packages/platform-telemetry/api/Interface.ITelemetryFacade.md +22 -27
- package/data/packages/platform-telemetry/api/Interface.ITelemetryMetricsOptions.md +2 -7
- package/data/packages/platform-telemetry/api/Interface.ITelemetryOptions.md +8 -13
- package/data/packages/platform-telemetry/api/Interface.ITelemetryTracesOptions.md +2 -7
- package/data/packages/platform-telemetry/api/Variable.TELEMETRY_ENABLED.md +12 -0
- package/data/packages/platform-telemetry/api/Variable.TELEMETRY_FACADE.md +12 -0
- package/data/packages/platform-telemetry/api/Variable.TELEMETRY_OPTIONS.md +12 -0
- package/data/packages/platform-telemetry/api/Variable.TELEMETRY_SHUTDOWN.md +12 -0
- package/data/packages/platform-telemetry/api/Variable.defaultTelemetryOptions.md +12 -0
- package/data/packages/platform-telemetry/api/index.md +20 -65
- package/package.json +1 -1
- package/data/packages/platform-authentication/api/_media/ENVIRONMENT_VARIABLES.md +0 -151
- package/data/packages/platform-logging/api/Class.AnalyticsService.md +0 -113
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: query()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: query()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function query<TDelegate, TResult>(name, run): IRepositoryQuery<TDelegate, TResult>;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [repositories/queries/query.ts:15](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/repositories/queries/query.ts#L15)
|
|
13
|
+
|
|
14
|
+
Creates a new repository query.
|
|
15
|
+
|
|
16
|
+
## Type Parameters
|
|
17
|
+
|
|
18
|
+
| Type Parameter |
|
|
19
|
+
| ------ |
|
|
20
|
+
| `TDelegate` |
|
|
21
|
+
| `TResult` |
|
|
22
|
+
|
|
23
|
+
## Parameters
|
|
24
|
+
|
|
25
|
+
| Parameter | Type | Description |
|
|
26
|
+
| ------ | ------ | ------ |
|
|
27
|
+
| `name` | `string` | The name of the query. |
|
|
28
|
+
| `run` | (`model`) => `Promise`\<`TResult`\> | The function that runs the query. |
|
|
29
|
+
|
|
30
|
+
## Returns
|
|
31
|
+
|
|
32
|
+
[`IRepositoryQuery`](Interface.IRepositoryQuery)\<`TDelegate`, `TResult`\>
|
|
33
|
+
|
|
34
|
+
The repository query.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: skip()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: skip()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function skip<T>(value): Exclude<T, undefined> | undefined;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [types/Skip.ts:9](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/types/Skip.ts#L9)
|
|
13
|
+
|
|
14
|
+
Utility function that returns the provided value or `undefined` if the value is `undefined`.
|
|
15
|
+
In Prisma 6+, passing `undefined` for a field in a query signals Prisma to skip that field.
|
|
16
|
+
|
|
17
|
+
## Type Parameters
|
|
18
|
+
|
|
19
|
+
| Type Parameter |
|
|
20
|
+
| ------ |
|
|
21
|
+
| `T` |
|
|
22
|
+
|
|
23
|
+
## Parameters
|
|
24
|
+
|
|
25
|
+
| Parameter | Type | Description |
|
|
26
|
+
| ------ | ------ | ------ |
|
|
27
|
+
| `value` | `T` | The value to check. |
|
|
28
|
+
|
|
29
|
+
## Returns
|
|
30
|
+
|
|
31
|
+
`Exclude`\<`T`, `undefined`\> \| `undefined`
|
|
32
|
+
|
|
33
|
+
The original value (excluding undefined) or `undefined` to skip the field.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: transactionalQuery()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: transactionalQuery()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function transactionalQuery<TResult>(name, run): ITransactionalRepositoryQuery<TResult>;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [repositories/queries/transactionalQuery.ts:11](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/repositories/queries/transactionalQuery.ts#L11)
|
|
13
|
+
|
|
14
|
+
Factory to create a transactional repository query.
|
|
15
|
+
|
|
16
|
+
## Type Parameters
|
|
17
|
+
|
|
18
|
+
| Type Parameter |
|
|
19
|
+
| ------ |
|
|
20
|
+
| `TResult` |
|
|
21
|
+
|
|
22
|
+
## Parameters
|
|
23
|
+
|
|
24
|
+
| Parameter | Type |
|
|
25
|
+
| ------ | ------ |
|
|
26
|
+
| `name` | `string` |
|
|
27
|
+
| `run` | (`tx`) => `Promise`\<`TResult`\> |
|
|
28
|
+
|
|
29
|
+
## Returns
|
|
30
|
+
|
|
31
|
+
[`ITransactionalRepositoryQuery`](Interface.ITransactionalRepositoryQuery)\<`TResult`\>
|
|
@@ -3,11 +3,6 @@ title: 'Interface: IDatabaseModuleConfig'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Interface: IDatabaseModuleConfig
|
|
12
7
|
|
|
13
8
|
Defined in: [DatabaseModule.ts:17](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/DatabaseModule.ts#L17)
|
|
@@ -3,11 +3,6 @@ title: 'Interface: IPaginateOptions'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Interface: IPaginateOptions
|
|
12
7
|
|
|
13
8
|
Defined in: [features/Pagination.ts:13](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/features/Pagination.ts#L13)
|
|
@@ -22,7 +17,7 @@ optional page?: string | number;
|
|
|
22
17
|
|
|
23
18
|
Defined in: [features/Pagination.ts:14](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/features/Pagination.ts#L14)
|
|
24
19
|
|
|
25
|
-
|
|
20
|
+
***
|
|
26
21
|
|
|
27
22
|
### perPage?
|
|
28
23
|
|
|
@@ -3,11 +3,6 @@ title: 'Interface: IPaginatedResult\<T\>'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Interface: IPaginatedResult\<T\>
|
|
12
7
|
|
|
13
8
|
Defined in: [features/Pagination.ts:1](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/features/Pagination.ts#L1)
|
|
@@ -15,8 +10,8 @@ Defined in: [features/Pagination.ts:1](https://github.com/RueDeRennes/archipel/b
|
|
|
15
10
|
## Type Parameters
|
|
16
11
|
|
|
17
12
|
| Type Parameter |
|
|
18
|
-
|
|
|
19
|
-
| `T`
|
|
13
|
+
| ------ |
|
|
14
|
+
| `T` |
|
|
20
15
|
|
|
21
16
|
## Properties
|
|
22
17
|
|
|
@@ -28,7 +23,7 @@ data: T[];
|
|
|
28
23
|
|
|
29
24
|
Defined in: [features/Pagination.ts:2](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/features/Pagination.ts#L2)
|
|
30
25
|
|
|
31
|
-
|
|
26
|
+
***
|
|
32
27
|
|
|
33
28
|
### meta
|
|
34
29
|
|
|
@@ -40,7 +35,7 @@ meta: {
|
|
|
40
35
|
perPage: number;
|
|
41
36
|
prev: number | null;
|
|
42
37
|
total: number;
|
|
43
|
-
}
|
|
38
|
+
};
|
|
44
39
|
```
|
|
45
40
|
|
|
46
41
|
Defined in: [features/Pagination.ts:3](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/features/Pagination.ts#L3)
|
|
@@ -3,11 +3,6 @@ title: 'Interface: IRepositoryQuery\<TDelegate, TResult\>'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Interface: IRepositoryQuery\<TDelegate, TResult\>
|
|
12
7
|
|
|
13
8
|
Defined in: [repositories/queries/IRepositoryQuery.ts:9](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/repositories/queries/IRepositoryQuery.ts#L9)
|
|
@@ -16,10 +11,10 @@ Represents a reusable query definition for repositories.
|
|
|
16
11
|
|
|
17
12
|
## Type Parameters
|
|
18
13
|
|
|
19
|
-
| Type Parameter | Description
|
|
20
|
-
|
|
|
21
|
-
| `TDelegate`
|
|
22
|
-
| `TResult`
|
|
14
|
+
| Type Parameter | Description |
|
|
15
|
+
| ------ | ------ |
|
|
16
|
+
| `TDelegate` | The Prisma delegate type. |
|
|
17
|
+
| `TResult` | The query result type. |
|
|
23
18
|
|
|
24
19
|
## Properties
|
|
25
20
|
|
|
@@ -47,9 +42,9 @@ Executes the query against the provided model.
|
|
|
47
42
|
|
|
48
43
|
#### Parameters
|
|
49
44
|
|
|
50
|
-
| Parameter | Type
|
|
51
|
-
|
|
|
52
|
-
| `model`
|
|
45
|
+
| Parameter | Type | Description |
|
|
46
|
+
| ------ | ------ | ------ |
|
|
47
|
+
| `model` | `TDelegate` | The Prisma delegate. |
|
|
53
48
|
|
|
54
49
|
#### Returns
|
|
55
50
|
|
|
@@ -3,11 +3,6 @@ title: 'Interface: ITransactionalRepositoryQuery\<TResult\>'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Interface: ITransactionalRepositoryQuery\<TResult\>
|
|
12
7
|
|
|
13
8
|
Defined in: [repositories/queries/ITransactionalRepositoryQuery.ts:12](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/repositories/queries/ITransactionalRepositoryQuery.ts#L12)
|
|
@@ -17,8 +12,8 @@ Represents a repository query that requires a Prisma TransactionClient to access
|
|
|
17
12
|
## Type Parameters
|
|
18
13
|
|
|
19
14
|
| Type Parameter |
|
|
20
|
-
|
|
|
21
|
-
| `TResult`
|
|
15
|
+
| ------ |
|
|
16
|
+
| `TResult` |
|
|
22
17
|
|
|
23
18
|
## Properties
|
|
24
19
|
|
|
@@ -46,9 +41,9 @@ Executes the query with an active transaction client.
|
|
|
46
41
|
|
|
47
42
|
#### Parameters
|
|
48
43
|
|
|
49
|
-
| Parameter | Type
|
|
50
|
-
|
|
|
51
|
-
| `tx`
|
|
44
|
+
| Parameter | Type | Description |
|
|
45
|
+
| ------ | ------ | ------ |
|
|
46
|
+
| `tx` | `any` | Prisma transaction client. |
|
|
52
47
|
|
|
53
48
|
#### Returns
|
|
54
49
|
|
|
@@ -3,11 +3,6 @@ title: 'Type Alias: DelegateArgs\<T\>'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Type Alias: DelegateArgs\<T\>
|
|
12
7
|
|
|
13
8
|
```ts
|
|
@@ -19,5 +14,5 @@ Defined in: [repositories/abstracts/RepositoryBase.ts:333](https://github.com/Ru
|
|
|
19
14
|
## Type Parameters
|
|
20
15
|
|
|
21
16
|
| Type Parameter |
|
|
22
|
-
|
|
|
23
|
-
| `T`
|
|
17
|
+
| ------ |
|
|
18
|
+
| `T` |
|
|
@@ -3,11 +3,6 @@ title: 'Type Alias: DelegateReturnTypes\<T\>'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Type Alias: DelegateReturnTypes\<T\>
|
|
12
7
|
|
|
13
8
|
```ts
|
|
@@ -19,5 +14,5 @@ Defined in: [repositories/abstracts/RepositoryBase.ts:340](https://github.com/Ru
|
|
|
19
14
|
## Type Parameters
|
|
20
15
|
|
|
21
16
|
| Type Parameter |
|
|
22
|
-
|
|
|
23
|
-
| `T`
|
|
17
|
+
| ------ |
|
|
18
|
+
| `T` |
|
|
@@ -3,11 +3,6 @@ title: 'Type Alias: PaginateFunction'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Type Alias: PaginateFunction
|
|
12
7
|
|
|
13
8
|
```ts
|
|
@@ -19,16 +14,16 @@ Defined in: [features/Pagination.ts:17](https://github.com/RueDeRennes/archipel/
|
|
|
19
14
|
## Type Parameters
|
|
20
15
|
|
|
21
16
|
| Type Parameter |
|
|
22
|
-
|
|
|
23
|
-
| `T`
|
|
24
|
-
| `K`
|
|
17
|
+
| ------ |
|
|
18
|
+
| `T` |
|
|
19
|
+
| `K` |
|
|
25
20
|
|
|
26
21
|
## Parameters
|
|
27
22
|
|
|
28
|
-
| Parameter
|
|
29
|
-
|
|
|
30
|
-
| `model`
|
|
31
|
-
| `args?`
|
|
23
|
+
| Parameter | Type |
|
|
24
|
+
| ------ | ------ |
|
|
25
|
+
| `model` | `any` |
|
|
26
|
+
| `args?` | `K` |
|
|
32
27
|
| `options?` | [`IPaginateOptions`](Interface.IPaginateOptions) |
|
|
33
28
|
|
|
34
29
|
## Returns
|
|
@@ -3,11 +3,6 @@ title: 'Type Alias: QueryResultType\<T\>'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Type Alias: QueryResultType\<T\>
|
|
12
7
|
|
|
13
8
|
```ts
|
|
@@ -21,9 +16,9 @@ Useful for type-safe mapping without duplicating query result types.
|
|
|
21
16
|
|
|
22
17
|
## Type Parameters
|
|
23
18
|
|
|
24
|
-
| Type Parameter | Description
|
|
25
|
-
|
|
|
26
|
-
| `T`
|
|
19
|
+
| Type Parameter | Description |
|
|
20
|
+
| ------ | ------ |
|
|
21
|
+
| `T` | The repository query type. |
|
|
27
22
|
|
|
28
23
|
## Example
|
|
29
24
|
|
|
@@ -3,11 +3,6 @@ title: 'Type Alias: TransactionalQueryResultType\<T\>'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# Type Alias: TransactionalQueryResultType\<T\>
|
|
12
7
|
|
|
13
8
|
```ts
|
|
@@ -20,9 +15,9 @@ Extracts the result type from a transactional repository query.
|
|
|
20
15
|
|
|
21
16
|
## Type Parameters
|
|
22
17
|
|
|
23
|
-
| Type Parameter | Description
|
|
24
|
-
|
|
|
25
|
-
| `T`
|
|
18
|
+
| Type Parameter | Description |
|
|
19
|
+
| ------ | ------ |
|
|
20
|
+
| `T` | The transactional repository query type. |
|
|
26
21
|
|
|
27
22
|
## Example
|
|
28
23
|
|
|
@@ -3,181 +3,45 @@ title: '@breadstone/archipel-platform-database'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
[**@breadstone/archipel-platform-database**](../)
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
6
|
# @breadstone/archipel-platform-database
|
|
12
7
|
|
|
13
8
|
## Classes
|
|
14
9
|
|
|
15
|
-
| Class
|
|
16
|
-
|
|
|
17
|
-
| [DatabaseHealthIndicator](Class.DatabaseHealthIndicator)
|
|
18
|
-
| [DatabaseModule](Class.DatabaseModule)
|
|
19
|
-
| [DatabaseService](Class.DatabaseService)
|
|
20
|
-
| [PrismaService](Class.PrismaService)
|
|
21
|
-
| [RepositoryBase](Class.RepositoryBase)
|
|
10
|
+
| Class | Description |
|
|
11
|
+
| ------ | ------ |
|
|
12
|
+
| [DatabaseHealthIndicator](Class.DatabaseHealthIndicator) | Health indicator for database connectivity. |
|
|
13
|
+
| [DatabaseModule](Class.DatabaseModule) | Represents the database module. |
|
|
14
|
+
| [DatabaseService](Class.DatabaseService) | Represents the database service. |
|
|
15
|
+
| [PrismaService](Class.PrismaService) | Represents the prisma service. |
|
|
16
|
+
| [RepositoryBase](Class.RepositoryBase) | The base class for all repositories. |
|
|
22
17
|
| [RepositoryExceptionFilter](Class.RepositoryExceptionFilter) | Represents the Prisma client exception filter. |
|
|
23
18
|
|
|
24
19
|
## Interfaces
|
|
25
20
|
|
|
26
|
-
| Interface
|
|
27
|
-
|
|
|
28
|
-
| [IDatabaseModuleConfig](Interface.IDatabaseModuleConfig)
|
|
29
|
-
| [IPaginatedResult](Interface.IPaginatedResult)
|
|
30
|
-
| [IPaginateOptions](Interface.IPaginateOptions)
|
|
31
|
-
| [IRepositoryQuery](Interface.IRepositoryQuery)
|
|
21
|
+
| Interface | Description |
|
|
22
|
+
| ------ | ------ |
|
|
23
|
+
| [IDatabaseModuleConfig](Interface.IDatabaseModuleConfig) | Represents the database module configuration. |
|
|
24
|
+
| [IPaginatedResult](Interface.IPaginatedResult) | - |
|
|
25
|
+
| [IPaginateOptions](Interface.IPaginateOptions) | - |
|
|
26
|
+
| [IRepositoryQuery](Interface.IRepositoryQuery) | Represents a reusable query definition for repositories. |
|
|
32
27
|
| [ITransactionalRepositoryQuery](Interface.ITransactionalRepositoryQuery) | Represents a repository query that requires a Prisma TransactionClient to access multiple delegates. |
|
|
33
28
|
|
|
34
29
|
## Type Aliases
|
|
35
30
|
|
|
36
|
-
| Type Alias
|
|
37
|
-
|
|
|
38
|
-
| [DelegateArgs](TypeAlias.DelegateArgs)
|
|
39
|
-
| [DelegateReturnTypes](TypeAlias.DelegateReturnTypes)
|
|
40
|
-
| [PaginateFunction](TypeAlias.PaginateFunction)
|
|
41
|
-
| [QueryResultType](TypeAlias.QueryResultType)
|
|
42
|
-
| [TransactionalQueryResultType](TypeAlias.TransactionalQueryResultType) | Extracts the result type from a transactional repository query.
|
|
31
|
+
| Type Alias | Description |
|
|
32
|
+
| ------ | ------ |
|
|
33
|
+
| [DelegateArgs](TypeAlias.DelegateArgs) | - |
|
|
34
|
+
| [DelegateReturnTypes](TypeAlias.DelegateReturnTypes) | - |
|
|
35
|
+
| [PaginateFunction](TypeAlias.PaginateFunction) | - |
|
|
36
|
+
| [QueryResultType](TypeAlias.QueryResultType) | Extracts the result type from a repository query. Useful for type-safe mapping without duplicating query result types. |
|
|
37
|
+
| [TransactionalQueryResultType](TypeAlias.TransactionalQueryResultType) | Extracts the result type from a transactional repository query. |
|
|
43
38
|
|
|
44
39
|
## Functions
|
|
45
40
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
#### Type Parameters
|
|
55
|
-
|
|
56
|
-
| Type Parameter |
|
|
57
|
-
| -------------- |
|
|
58
|
-
| `TEntity` |
|
|
59
|
-
|
|
60
|
-
#### Parameters
|
|
61
|
-
|
|
62
|
-
| Parameter | Type |
|
|
63
|
-
| --------- | ----------- |
|
|
64
|
-
| `items` | `TEntity`[] |
|
|
65
|
-
| `total` | `number` |
|
|
66
|
-
| `skip` | `number` |
|
|
67
|
-
| `take?` | `number` |
|
|
68
|
-
|
|
69
|
-
#### Returns
|
|
70
|
-
|
|
71
|
-
`IPageableCollection`\<`TEntity`\>
|
|
72
|
-
|
|
73
|
-
---
|
|
74
|
-
|
|
75
|
-
### paginator()
|
|
76
|
-
|
|
77
|
-
```ts
|
|
78
|
-
function paginator(defaultOptions): PaginateFunction;
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
Defined in: [features/Pagination.ts:19](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/features/Pagination.ts#L19)
|
|
82
|
-
|
|
83
|
-
#### Parameters
|
|
84
|
-
|
|
85
|
-
| Parameter | Type |
|
|
86
|
-
| ---------------- | ------------------------------------------------ |
|
|
87
|
-
| `defaultOptions` | [`IPaginateOptions`](Interface.IPaginateOptions) |
|
|
88
|
-
|
|
89
|
-
#### Returns
|
|
90
|
-
|
|
91
|
-
[`PaginateFunction`](TypeAlias.PaginateFunction)
|
|
92
|
-
|
|
93
|
-
---
|
|
94
|
-
|
|
95
|
-
### query()
|
|
96
|
-
|
|
97
|
-
```ts
|
|
98
|
-
function query<TDelegate, TResult>(name, run): IRepositoryQuery<TDelegate, TResult>;
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
Defined in: [repositories/queries/query.ts:15](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/repositories/queries/query.ts#L15)
|
|
102
|
-
|
|
103
|
-
Creates a new repository query.
|
|
104
|
-
|
|
105
|
-
#### Type Parameters
|
|
106
|
-
|
|
107
|
-
| Type Parameter |
|
|
108
|
-
| -------------- |
|
|
109
|
-
| `TDelegate` |
|
|
110
|
-
| `TResult` |
|
|
111
|
-
|
|
112
|
-
#### Parameters
|
|
113
|
-
|
|
114
|
-
| Parameter | Type | Description |
|
|
115
|
-
| --------- | ----------------------------------- | --------------------------------- |
|
|
116
|
-
| `name` | `string` | The name of the query. |
|
|
117
|
-
| `run` | (`model`) => `Promise`\<`TResult`\> | The function that runs the query. |
|
|
118
|
-
|
|
119
|
-
#### Returns
|
|
120
|
-
|
|
121
|
-
[`IRepositoryQuery`](Interface.IRepositoryQuery)\<`TDelegate`, `TResult`\>
|
|
122
|
-
|
|
123
|
-
The repository query.
|
|
124
|
-
|
|
125
|
-
---
|
|
126
|
-
|
|
127
|
-
### skip()
|
|
128
|
-
|
|
129
|
-
```ts
|
|
130
|
-
function skip<T>(value): Exclude<T, undefined> | undefined;
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
Defined in: [types/Skip.ts:9](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/types/Skip.ts#L9)
|
|
134
|
-
|
|
135
|
-
Utility function that returns the provided value or `undefined` if the value is `undefined`.
|
|
136
|
-
In Prisma 6+, passing `undefined` for a field in a query signals Prisma to skip that field.
|
|
137
|
-
|
|
138
|
-
#### Type Parameters
|
|
139
|
-
|
|
140
|
-
| Type Parameter |
|
|
141
|
-
| -------------- |
|
|
142
|
-
| `T` |
|
|
143
|
-
|
|
144
|
-
#### Parameters
|
|
145
|
-
|
|
146
|
-
| Parameter | Type | Description |
|
|
147
|
-
| --------- | ---- | ------------------- |
|
|
148
|
-
| `value` | `T` | The value to check. |
|
|
149
|
-
|
|
150
|
-
#### Returns
|
|
151
|
-
|
|
152
|
-
`Exclude`\<`T`, `undefined`\> \| `undefined`
|
|
153
|
-
|
|
154
|
-
The original value (excluding undefined) or `undefined` to skip the field.
|
|
155
|
-
|
|
156
|
-
---
|
|
157
|
-
|
|
158
|
-
### transactionalQuery()
|
|
159
|
-
|
|
160
|
-
```ts
|
|
161
|
-
function transactionalQuery<TResult>(name, run): ITransactionalRepositoryQuery<TResult>;
|
|
162
|
-
```
|
|
163
|
-
|
|
164
|
-
Defined in: [repositories/queries/transactionalQuery.ts:11](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-database/src/repositories/queries/transactionalQuery.ts#L11)
|
|
165
|
-
|
|
166
|
-
Factory to create a transactional repository query.
|
|
167
|
-
|
|
168
|
-
#### Type Parameters
|
|
169
|
-
|
|
170
|
-
| Type Parameter |
|
|
171
|
-
| -------------- |
|
|
172
|
-
| `TResult` |
|
|
173
|
-
|
|
174
|
-
#### Parameters
|
|
175
|
-
|
|
176
|
-
| Parameter | Type |
|
|
177
|
-
| --------- | -------------------------------- |
|
|
178
|
-
| `name` | `string` |
|
|
179
|
-
| `run` | (`tx`) => `Promise`\<`TResult`\> |
|
|
180
|
-
|
|
181
|
-
#### Returns
|
|
182
|
-
|
|
183
|
-
[`ITransactionalRepositoryQuery`](Interface.ITransactionalRepositoryQuery)\<`TResult`\>
|
|
41
|
+
| Function | Description |
|
|
42
|
+
| ------ | ------ |
|
|
43
|
+
| [pageable](Function.pageable) | - |
|
|
44
|
+
| [paginator](Function.paginator) | - |
|
|
45
|
+
| [query](Function.query) | Creates a new repository query. |
|
|
46
|
+
| [skip](Function.skip) | Utility function that returns the provided value or `undefined` if the value is `undefined`. In Prisma 6+, passing `undefined` for a field in a query signals Prisma to skip that field. |
|
|
47
|
+
| [transactionalQuery](Function.transactionalQuery) | Factory to create a transactional repository query. |
|