@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
|
@@ -3,7 +3,6 @@ title: 'Class: SseHub'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Class: SseHub
|
|
8
7
|
|
|
9
8
|
Defined in: [sse/services/SseHub.ts:16](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/sse/services/SseHub.ts#L16)
|
|
@@ -44,9 +43,9 @@ Clears the event with the specified ID.
|
|
|
44
43
|
|
|
45
44
|
#### Parameters
|
|
46
45
|
|
|
47
|
-
| Parameter | Type
|
|
48
|
-
|
|
|
49
|
-
| `id`
|
|
46
|
+
| Parameter | Type | Description |
|
|
47
|
+
| ------ | ------ | ------ |
|
|
48
|
+
| `id` | `string` | The ID of the event. |
|
|
50
49
|
|
|
51
50
|
#### Returns
|
|
52
51
|
|
|
@@ -56,7 +55,7 @@ Clears the event with the specified ID.
|
|
|
56
55
|
|
|
57
56
|
[`ISseHub`](Interface.ISseHub).[`clearEvent`](Interface.ISseHub#clearevent)
|
|
58
57
|
|
|
59
|
-
|
|
58
|
+
***
|
|
60
59
|
|
|
61
60
|
### emitEvent()
|
|
62
61
|
|
|
@@ -70,10 +69,10 @@ Emits an event with the specified ID and data.
|
|
|
70
69
|
|
|
71
70
|
#### Parameters
|
|
72
71
|
|
|
73
|
-
| Parameter | Type
|
|
74
|
-
|
|
|
75
|
-
| `id`
|
|
76
|
-
| `data`
|
|
72
|
+
| Parameter | Type | Description |
|
|
73
|
+
| ------ | ------ | ------ |
|
|
74
|
+
| `id` | `string` | The ID of the event. |
|
|
75
|
+
| `data` | [`ISseEventData`](Interface.ISseEventData) | The data of the event. |
|
|
77
76
|
|
|
78
77
|
#### Returns
|
|
79
78
|
|
|
@@ -83,7 +82,7 @@ Emits an event with the specified ID and data.
|
|
|
83
82
|
|
|
84
83
|
[`ISseHub`](Interface.ISseHub).[`emitEvent`](Interface.ISseHub#emitevent)
|
|
85
84
|
|
|
86
|
-
|
|
85
|
+
***
|
|
87
86
|
|
|
88
87
|
### getObservable()
|
|
89
88
|
|
|
@@ -97,8 +96,8 @@ Gets an observable for the event with the specified ID.
|
|
|
97
96
|
|
|
98
97
|
#### Parameters
|
|
99
98
|
|
|
100
|
-
| Parameter | Type
|
|
101
|
-
|
|
|
99
|
+
| Parameter | Type | Description |
|
|
100
|
+
| ------ | ------ | ------ |
|
|
102
101
|
| `eventId` | `string` | The ID of the event. |
|
|
103
102
|
|
|
104
103
|
#### Returns
|
|
@@ -111,7 +110,7 @@ An observable for the event.
|
|
|
111
110
|
|
|
112
111
|
[`ISseHub`](Interface.ISseHub).[`getObservable`](Interface.ISseHub#getobservable)
|
|
113
112
|
|
|
114
|
-
|
|
113
|
+
***
|
|
115
114
|
|
|
116
115
|
### isEventActive()
|
|
117
116
|
|
|
@@ -125,9 +124,9 @@ Determines whether the event with the specified ID is active.
|
|
|
125
124
|
|
|
126
125
|
#### Parameters
|
|
127
126
|
|
|
128
|
-
| Parameter | Type
|
|
129
|
-
|
|
|
130
|
-
| `id`
|
|
127
|
+
| Parameter | Type | Description |
|
|
128
|
+
| ------ | ------ | ------ |
|
|
129
|
+
| `id` | `string` | The ID of the event. |
|
|
131
130
|
|
|
132
131
|
#### Returns
|
|
133
132
|
|
|
@@ -139,7 +138,7 @@ Determines whether the event with the specified ID is active.
|
|
|
139
138
|
|
|
140
139
|
[`ISseHub`](Interface.ISseHub).[`isEventActive`](Interface.ISseHub#iseventactive)
|
|
141
140
|
|
|
142
|
-
|
|
141
|
+
***
|
|
143
142
|
|
|
144
143
|
### registerEvent()
|
|
145
144
|
|
|
@@ -153,15 +152,15 @@ Registers an event with the specified ID.
|
|
|
153
152
|
|
|
154
153
|
#### Parameters
|
|
155
154
|
|
|
156
|
-
| Parameter | Type
|
|
157
|
-
|
|
|
158
|
-
| `id`
|
|
155
|
+
| Parameter | Type | Description |
|
|
156
|
+
| ------ | ------ | ------ |
|
|
157
|
+
| `id` | `string` | The ID of the event. |
|
|
159
158
|
|
|
160
159
|
#### Returns
|
|
161
160
|
|
|
162
161
|
`void`
|
|
163
162
|
|
|
164
|
-
|
|
163
|
+
***
|
|
165
164
|
|
|
166
165
|
### unregisterEvent()
|
|
167
166
|
|
|
@@ -175,9 +174,9 @@ Unregisters an event with the specified ID.
|
|
|
175
174
|
|
|
176
175
|
#### Parameters
|
|
177
176
|
|
|
178
|
-
| Parameter | Type
|
|
179
|
-
|
|
|
180
|
-
| `id`
|
|
177
|
+
| Parameter | Type | Description |
|
|
178
|
+
| ------ | ------ | ------ |
|
|
179
|
+
| `id` | `string` | The ID of the event. |
|
|
181
180
|
|
|
182
181
|
#### Returns
|
|
183
182
|
|
|
@@ -3,7 +3,6 @@ title: 'Class: SseModule'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Class: SseModule
|
|
8
7
|
|
|
9
8
|
Defined in: [sse/SseModule.ts:41](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/sse/SseModule.ts#L41)
|
|
@@ -34,9 +33,9 @@ Defined in: [sse/SseModule.ts:45](https://github.com/RueDeRennes/archipel/blob/m
|
|
|
34
33
|
|
|
35
34
|
#### Parameters
|
|
36
35
|
|
|
37
|
-
| Parameter | Type
|
|
38
|
-
|
|
|
39
|
-
| `config`
|
|
36
|
+
| Parameter | Type |
|
|
37
|
+
| ------ | ------ |
|
|
38
|
+
| `config` | `ISseModuleConfig` |
|
|
40
39
|
|
|
41
40
|
#### Returns
|
|
42
41
|
|
|
@@ -3,7 +3,6 @@ title: 'Abstract Class: TimeStampResponse'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Abstract Class: TimeStampResponse
|
|
8
7
|
|
|
9
8
|
Defined in: [models/response/TimeStampResponse.ts:15](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/models/response/TimeStampResponse.ts#L15)
|
|
@@ -32,7 +31,7 @@ createdAt: Date;
|
|
|
32
31
|
|
|
33
32
|
Defined in: [models/response/TimeStampResponse.ts:25](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/models/response/TimeStampResponse.ts#L25)
|
|
34
33
|
|
|
35
|
-
|
|
34
|
+
***
|
|
36
35
|
|
|
37
36
|
### updatedAt
|
|
38
37
|
|
|
@@ -3,7 +3,6 @@ title: 'Class: TypeMappingNotRegisteredError'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Class: TypeMappingNotRegisteredError
|
|
8
7
|
|
|
9
8
|
Defined in: [mapping/errors/TypeMappingNotRegisteredError.ts:12](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/mapping/errors/TypeMappingNotRegisteredError.ts#L12)
|
|
@@ -26,9 +25,9 @@ Defined in: [mapping/errors/TypeMappingNotRegisteredError.ts:16](https://github.
|
|
|
26
25
|
|
|
27
26
|
#### Parameters
|
|
28
27
|
|
|
29
|
-
| Parameter
|
|
30
|
-
|
|
|
31
|
-
| `source`
|
|
28
|
+
| Parameter | Type |
|
|
29
|
+
| ------ | ------ |
|
|
30
|
+
| `source` | `string` |
|
|
32
31
|
| `destination` | `string` |
|
|
33
32
|
|
|
34
33
|
#### Returns
|
|
@@ -38,7 +37,7 @@ Defined in: [mapping/errors/TypeMappingNotRegisteredError.ts:16](https://github.
|
|
|
38
37
|
#### Overrides
|
|
39
38
|
|
|
40
39
|
```ts
|
|
41
|
-
MappingError.constructor
|
|
40
|
+
MappingError.constructor
|
|
42
41
|
```
|
|
43
42
|
|
|
44
43
|
## Properties
|
|
@@ -54,5 +53,5 @@ Defined in: [mapping/errors/MappingError.ts:11](https://github.com/RueDeRennes/a
|
|
|
54
53
|
#### Inherited from
|
|
55
54
|
|
|
56
55
|
```ts
|
|
57
|
-
MappingError.code
|
|
56
|
+
MappingError.code
|
|
58
57
|
```
|
|
@@ -3,7 +3,6 @@ title: 'Class: UUIDGenerator'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Class: UUIDGenerator
|
|
8
7
|
|
|
9
8
|
Defined in: [identifiers/generators/UUIDGenerator.ts:14](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/identifiers/generators/UUIDGenerator.ts#L14)
|
|
@@ -44,9 +43,9 @@ Generates a version 4 UUID (random-based)
|
|
|
44
43
|
|
|
45
44
|
#### Parameters
|
|
46
45
|
|
|
47
|
-
| Parameter
|
|
48
|
-
|
|
|
49
|
-
| `prefix?`
|
|
46
|
+
| Parameter | Type | Description |
|
|
47
|
+
| ------ | ------ | ------ |
|
|
48
|
+
| `prefix?` | `string` | Optional prefix to prepend to the ID |
|
|
50
49
|
| `postfix?` | `string` | Optional postfix to append to the ID |
|
|
51
50
|
|
|
52
51
|
#### Returns
|
|
@@ -57,7 +56,7 @@ Generates a version 4 UUID (random-based)
|
|
|
57
56
|
|
|
58
57
|
[`IdGeneratorBase`](Class.IdGeneratorBase).[`generate`](Class.IdGeneratorBase#generate)
|
|
59
58
|
|
|
60
|
-
|
|
59
|
+
***
|
|
61
60
|
|
|
62
61
|
### isValid()
|
|
63
62
|
|
|
@@ -71,9 +70,9 @@ Validates if the provided string is a valid UUID (version 4)
|
|
|
71
70
|
|
|
72
71
|
#### Parameters
|
|
73
72
|
|
|
74
|
-
| Parameter | Type
|
|
75
|
-
|
|
|
76
|
-
| `id`
|
|
73
|
+
| Parameter | Type | Description |
|
|
74
|
+
| ------ | ------ | ------ |
|
|
75
|
+
| `id` | `string` | The ID to validate |
|
|
77
76
|
|
|
78
77
|
#### Returns
|
|
79
78
|
|
|
@@ -3,7 +3,6 @@ title: 'Class: UserAvatarGeneratorService'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Class: UserAvatarGeneratorService
|
|
8
7
|
|
|
9
8
|
Defined in: [services/UserAvatarGenerator.ts:14](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/services/UserAvatarGenerator.ts#L14)
|
|
@@ -36,10 +35,10 @@ Generates a random avatar as a base64-encoded PNG string.
|
|
|
36
35
|
|
|
37
36
|
#### Parameters
|
|
38
37
|
|
|
39
|
-
| Parameter | Type
|
|
40
|
-
|
|
|
41
|
-
| `width`
|
|
42
|
-
| `height`
|
|
38
|
+
| Parameter | Type | Default value | Description |
|
|
39
|
+
| ------ | ------ | ------ | ------ |
|
|
40
|
+
| `width` | `number` | `128` | Width of the avatar in pixels (default: 128) |
|
|
41
|
+
| `height` | `number` | `128` | Height of the avatar in pixels (default: 128) |
|
|
43
42
|
|
|
44
43
|
#### Returns
|
|
45
44
|
|
|
@@ -3,7 +3,6 @@ title: 'Class: UserNameGeneratorService'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Class: UserNameGeneratorService
|
|
8
7
|
|
|
9
8
|
Defined in: [services/UsernameGeneratorService.ts:14](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/services/UsernameGeneratorService.ts#L14)
|
|
@@ -36,9 +35,9 @@ Generates a random user name.
|
|
|
36
35
|
|
|
37
36
|
#### Parameters
|
|
38
37
|
|
|
39
|
-
| Parameter
|
|
40
|
-
|
|
|
41
|
-
| `useNumbers` | `boolean` | `true`
|
|
38
|
+
| Parameter | Type | Default value | Description |
|
|
39
|
+
| ------ | ------ | ------ | ------ |
|
|
40
|
+
| `useNumbers` | `boolean` | `true` | If true, adds random numbers at the end of the user name |
|
|
42
41
|
|
|
43
42
|
#### Returns
|
|
44
43
|
|
|
@@ -46,7 +45,7 @@ Generates a random user name.
|
|
|
46
45
|
|
|
47
46
|
A randomly generated user name
|
|
48
47
|
|
|
49
|
-
|
|
48
|
+
***
|
|
50
49
|
|
|
51
50
|
### generateSecure()
|
|
52
51
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: Public()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: Public()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function Public(): CustomDecorator;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [decorators/Public.ts:14](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/decorators/Public.ts#L14)
|
|
13
|
+
|
|
14
|
+
The `Public` decorator.
|
|
15
|
+
|
|
16
|
+
## Returns
|
|
17
|
+
|
|
18
|
+
`CustomDecorator`
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: createConfigKey()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: createConfigKey()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function createConfigKey<TType>(key): IConfigKey<TType>;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [config/ConfigKey.ts:74](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/config/ConfigKey.ts#L74)
|
|
13
|
+
|
|
14
|
+
Creates a type-safe config key.
|
|
15
|
+
|
|
16
|
+
Use this factory function to define all configuration keys in your application.
|
|
17
|
+
This ensures you don’t scatter raw strings and you assign a type to each key.
|
|
18
|
+
|
|
19
|
+
## Type Parameters
|
|
20
|
+
|
|
21
|
+
| Type Parameter | Default type |
|
|
22
|
+
| ------ | ------ |
|
|
23
|
+
| `TType` | `unknown` |
|
|
24
|
+
|
|
25
|
+
## Parameters
|
|
26
|
+
|
|
27
|
+
| Parameter | Type | Description |
|
|
28
|
+
| ------ | ------ | ------ |
|
|
29
|
+
| `key` | `string` | – The unique string identifier for the config entry. For example: `'DATABASE_URL'`, `'featureX.enabled'`, `'timeout.ms'`. |
|
|
30
|
+
|
|
31
|
+
## Returns
|
|
32
|
+
|
|
33
|
+
[`IConfigKey`](Interface.IConfigKey)\<`TType`\>
|
|
34
|
+
|
|
35
|
+
A branded config key of type `IConfigKey<TType>` where `TType` is
|
|
36
|
+
inferred (or specified) as the expected type of the value.
|
|
37
|
+
|
|
38
|
+
## Example
|
|
39
|
+
|
|
40
|
+
```typescript
|
|
41
|
+
// In some config-keys file
|
|
42
|
+
export const DATABASE_URL = createConfigKey<string>('DATABASE_URL');
|
|
43
|
+
export const MAX_TIMEOUT_MS = createConfigKey<number>('MAX_TIMEOUT_MS');
|
|
44
|
+
export const FEATURE_X_ENABLED = createConfigKey<boolean>('FEATURE_X_ENABLED');
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Then, when fetching:
|
|
48
|
+
```ts
|
|
49
|
+
const url = configService.get(DATABASE_URL); // typed as string
|
|
50
|
+
const timeout = configService.get(MAX_TIMEOUT_MS); // typed as number
|
|
51
|
+
const enabled = configService.get(FEATURE_X_ENABLED); // typed as boolean
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Remarks
|
|
55
|
+
|
|
56
|
+
At runtime the returned object is minimal (just `{ key: string }`) so there is
|
|
57
|
+
virtually no overhead. The generic `TType` is only used by TypeScript for stronger
|
|
58
|
+
compile-time checking — enabling you to avoid magic strings and untyped fetches.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: createEventKey()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: createEventKey()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function createEventKey<TEvents, TKey>(eventName): IEventKey<TEvents, TKey>;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [events/EventKey.ts:26](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/events/EventKey.ts#L26)
|
|
13
|
+
|
|
14
|
+
Creates a branded event key for the [EventHub](Class.EventHub).
|
|
15
|
+
|
|
16
|
+
## Type Parameters
|
|
17
|
+
|
|
18
|
+
| Type Parameter |
|
|
19
|
+
| ------ |
|
|
20
|
+
| `TEvents` *extends* [`IEventMap`](Interface.IEventMap) |
|
|
21
|
+
| `TKey` *extends* `string` \| `number` \| `symbol` |
|
|
22
|
+
|
|
23
|
+
## Parameters
|
|
24
|
+
|
|
25
|
+
| Parameter | Type | Description |
|
|
26
|
+
| ------ | ------ | ------ |
|
|
27
|
+
| `eventName` | `TKey` | The unique name of the event. |
|
|
28
|
+
|
|
29
|
+
## Returns
|
|
30
|
+
|
|
31
|
+
[`IEventKey`](Interface.IEventKey)\<`TEvents`, `TKey`\>
|
|
32
|
+
|
|
33
|
+
The branded event key encoding the payload type.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: createMappingKey()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: createMappingKey()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function createMappingKey<TInput, TOutput>(key): IMappingKey<TInput, TOutput>;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [mapping/types/MappingKey.ts:28](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/mapping/types/MappingKey.ts#L28)
|
|
13
|
+
|
|
14
|
+
Creates a type-safe mapping key.
|
|
15
|
+
|
|
16
|
+
## Type Parameters
|
|
17
|
+
|
|
18
|
+
| Type Parameter |
|
|
19
|
+
| ------ |
|
|
20
|
+
| `TInput` |
|
|
21
|
+
| `TOutput` |
|
|
22
|
+
|
|
23
|
+
## Parameters
|
|
24
|
+
|
|
25
|
+
| Parameter | Type | Description |
|
|
26
|
+
| ------ | ------ | ------ |
|
|
27
|
+
| `key` | `string` | The unique string identifier for the mapping. |
|
|
28
|
+
|
|
29
|
+
## Returns
|
|
30
|
+
|
|
31
|
+
[`IMappingKey`](Interface.IMappingKey)\<`TInput`, `TOutput`\>
|
|
32
|
+
|
|
33
|
+
A branded mapping key that encodes the input and output types.
|
|
34
|
+
|
|
35
|
+
## Example
|
|
36
|
+
|
|
37
|
+
```typescript
|
|
38
|
+
export const PRODUCT_MAPPING_KEY = createMappingKey<IProductMappingInput, ProductResponse>('food.product');
|
|
39
|
+
```
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: env()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: env()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function env(strings, ...values): string;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [utils/EnvUtils.ts:7](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/utils/EnvUtils.ts#L7)
|
|
13
|
+
|
|
14
|
+
Marker function for environment strings.
|
|
15
|
+
|
|
16
|
+
It behaves like a normal template literal but allows you to
|
|
17
|
+
later search/grep all `env` usages in the codebase.
|
|
18
|
+
|
|
19
|
+
## Parameters
|
|
20
|
+
|
|
21
|
+
| Parameter | Type |
|
|
22
|
+
| ------ | ------ |
|
|
23
|
+
| `strings` | `TemplateStringsArray` |
|
|
24
|
+
| ...`values` | `unknown`[] |
|
|
25
|
+
|
|
26
|
+
## Returns
|
|
27
|
+
|
|
28
|
+
`string`
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: getMimeTypeByFileNameOrExtension()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: getMimeTypeByFileNameOrExtension()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function getMimeTypeByFileNameOrExtension(...args): string | false;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [mime/mimeTypes.ts:14](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/mime/mimeTypes.ts#L14)
|
|
13
|
+
|
|
14
|
+
Get MIME type by file name or extension.
|
|
15
|
+
|
|
16
|
+
## Parameters
|
|
17
|
+
|
|
18
|
+
| Parameter | Type | Description |
|
|
19
|
+
| ------ | ------ | ------ |
|
|
20
|
+
| ...`args` | \[`string`\] | Arguments for mime-types lookup |
|
|
21
|
+
|
|
22
|
+
## Returns
|
|
23
|
+
|
|
24
|
+
`string` \| `false`
|
|
25
|
+
|
|
26
|
+
MIME type or false if not found
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 'Function: isActionId()'
|
|
3
|
+
generated: true
|
|
4
|
+
editUrl: false
|
|
5
|
+
---
|
|
6
|
+
# Function: isActionId()
|
|
7
|
+
|
|
8
|
+
```ts
|
|
9
|
+
function isActionId(key, action): boolean;
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Defined in: [sse/services/interfaces/ISseEventData.ts:34](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/sse/services/interfaces/ISseEventData.ts#L34)
|
|
13
|
+
|
|
14
|
+
Checks if the action id is valid.
|
|
15
|
+
|
|
16
|
+
## Parameters
|
|
17
|
+
|
|
18
|
+
| Parameter | Type | Description |
|
|
19
|
+
| ------ | ------ | ------ |
|
|
20
|
+
| `key` | `string` | The key to check. |
|
|
21
|
+
| `action` | `string` | The action to check. |
|
|
22
|
+
|
|
23
|
+
## Returns
|
|
24
|
+
|
|
25
|
+
`boolean`
|
|
26
|
+
|
|
27
|
+
- Returns true if the action id is valid, false otherwise.
|
|
@@ -3,7 +3,6 @@ title: 'Interface: IBlobResourceStrategyConfig'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Interface: IBlobResourceStrategyConfig
|
|
8
7
|
|
|
9
8
|
Defined in: [resources/strategies/BlobResourceStrategy.ts:36](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/resources/strategies/BlobResourceStrategy.ts#L36)
|
|
@@ -25,5 +24,5 @@ Optional key prefix for blob storage.
|
|
|
25
24
|
#### Example
|
|
26
25
|
|
|
27
26
|
```ts
|
|
28
|
-
|
|
27
|
+
'resources/', 'templates/'
|
|
29
28
|
```
|
|
@@ -3,7 +3,6 @@ title: 'Interface: IBlobServiceAdapter'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Interface: IBlobServiceAdapter
|
|
8
7
|
|
|
9
8
|
Defined in: [resources/strategies/BlobResourceStrategy.ts:14](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/resources/strategies/BlobResourceStrategy.ts#L14)
|
|
@@ -27,15 +26,15 @@ Downloads a file from blob storage.
|
|
|
27
26
|
|
|
28
27
|
#### Parameters
|
|
29
28
|
|
|
30
|
-
| Parameter | Type
|
|
31
|
-
|
|
|
32
|
-
| `key`
|
|
29
|
+
| Parameter | Type | Description |
|
|
30
|
+
| ------ | ------ | ------ |
|
|
31
|
+
| `key` | `string` | The blob key |
|
|
33
32
|
|
|
34
33
|
#### Returns
|
|
35
34
|
|
|
36
35
|
`Promise`\<\{
|
|
37
|
-
`contentType?`: `string`;
|
|
38
|
-
`data`: `unknown`;
|
|
36
|
+
`contentType?`: `string`;
|
|
37
|
+
`data`: `unknown`;
|
|
39
38
|
\}\>
|
|
40
39
|
|
|
41
40
|
The download result
|
|
@@ -3,7 +3,6 @@ title: 'Interface: ICacheMetricsRecorder'
|
|
|
3
3
|
generated: true
|
|
4
4
|
editUrl: false
|
|
5
5
|
---
|
|
6
|
-
|
|
7
6
|
# Interface: ICacheMetricsRecorder
|
|
8
7
|
|
|
9
8
|
Defined in: [cache/ICacheMetricsRecorder.ts:6](https://github.com/RueDeRennes/archipel/blob/main/libs/platform-core/src/cache/ICacheMetricsRecorder.ts#L6)
|
|
@@ -24,15 +23,15 @@ Records a cache eviction.
|
|
|
24
23
|
|
|
25
24
|
#### Parameters
|
|
26
25
|
|
|
27
|
-
| Parameter | Type
|
|
28
|
-
|
|
|
29
|
-
| `cache`
|
|
26
|
+
| Parameter | Type | Description |
|
|
27
|
+
| ------ | ------ | ------ |
|
|
28
|
+
| `cache` | `string` | The cache name/label |
|
|
30
29
|
|
|
31
30
|
#### Returns
|
|
32
31
|
|
|
33
32
|
`void`
|
|
34
33
|
|
|
35
|
-
|
|
34
|
+
***
|
|
36
35
|
|
|
37
36
|
### recordHit()
|
|
38
37
|
|
|
@@ -46,15 +45,15 @@ Records a cache hit.
|
|
|
46
45
|
|
|
47
46
|
#### Parameters
|
|
48
47
|
|
|
49
|
-
| Parameter | Type
|
|
50
|
-
|
|
|
51
|
-
| `cache`
|
|
48
|
+
| Parameter | Type | Description |
|
|
49
|
+
| ------ | ------ | ------ |
|
|
50
|
+
| `cache` | `string` | The cache name/label |
|
|
52
51
|
|
|
53
52
|
#### Returns
|
|
54
53
|
|
|
55
54
|
`void`
|
|
56
55
|
|
|
57
|
-
|
|
56
|
+
***
|
|
58
57
|
|
|
59
58
|
### recordLoadError()
|
|
60
59
|
|
|
@@ -68,15 +67,15 @@ Records a failed cache load.
|
|
|
68
67
|
|
|
69
68
|
#### Parameters
|
|
70
69
|
|
|
71
|
-
| Parameter | Type
|
|
72
|
-
|
|
|
73
|
-
| `cache`
|
|
70
|
+
| Parameter | Type | Description |
|
|
71
|
+
| ------ | ------ | ------ |
|
|
72
|
+
| `cache` | `string` | The cache name/label |
|
|
74
73
|
|
|
75
74
|
#### Returns
|
|
76
75
|
|
|
77
76
|
`void`
|
|
78
77
|
|
|
79
|
-
|
|
78
|
+
***
|
|
80
79
|
|
|
81
80
|
### recordLoadSuccess()
|
|
82
81
|
|
|
@@ -90,15 +89,15 @@ Records a successful cache load.
|
|
|
90
89
|
|
|
91
90
|
#### Parameters
|
|
92
91
|
|
|
93
|
-
| Parameter | Type
|
|
94
|
-
|
|
|
95
|
-
| `cache`
|
|
92
|
+
| Parameter | Type | Description |
|
|
93
|
+
| ------ | ------ | ------ |
|
|
94
|
+
| `cache` | `string` | The cache name/label |
|
|
96
95
|
|
|
97
96
|
#### Returns
|
|
98
97
|
|
|
99
98
|
`void`
|
|
100
99
|
|
|
101
|
-
|
|
100
|
+
***
|
|
102
101
|
|
|
103
102
|
### recordMiss()
|
|
104
103
|
|
|
@@ -112,9 +111,9 @@ Records a cache miss.
|
|
|
112
111
|
|
|
113
112
|
#### Parameters
|
|
114
113
|
|
|
115
|
-
| Parameter | Type
|
|
116
|
-
|
|
|
117
|
-
| `cache`
|
|
114
|
+
| Parameter | Type | Description |
|
|
115
|
+
| ------ | ------ | ------ |
|
|
116
|
+
| `cache` | `string` | The cache name/label |
|
|
118
117
|
|
|
119
118
|
#### Returns
|
|
120
119
|
|