39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
// service
|
|
export const SERVICE_NAME = 'ad';
|
|
|
|
// grpc
|
|
export const GRPC_PACKAGE_NAME = 'ad';
|
|
export const GRPC_SERVICE_NAME = 'AdService';
|
|
|
|
// messaging output
|
|
export const AD_CREATED_ROUTING_KEY = 'ad.created';
|
|
export const AD_UPDATED_ROUTING_KEY = 'ad.updated';
|
|
export const AD_DELETED_ROUTING_KEY = 'ad.deleted';
|
|
// messaging output
|
|
export const AD_PAUSED_ROUTING_KEY = 'ad.paused';
|
|
|
|
// messaging input
|
|
export const MATCHER_AD_CREATED_MESSAGE_HANDLER = 'matcherAdCreated';
|
|
export const MATCHER_AD_CREATED_ROUTING_KEY = 'matcher-ad.created';
|
|
export const MATCHER_AD_CREATED_QUEUE = 'ad.matcher-ad.created';
|
|
export const MATCHER_AD_CREATION_FAILED_MESSAGE_HANDLER =
|
|
'matcherAdCreationFailed';
|
|
export const MATCHER_AD_CREATION_FAILED_ROUTING_KEY =
|
|
'matcher-ad.creation-failed';
|
|
export const MATCHER_AD_CREATION_FAILED_QUEUE = 'ad.matcher-ad.creation-failed';
|
|
|
|
export const USER_DELETED_MESSAGE_HANDLER = 'userDeleted';
|
|
export const USER_DELETED_ROUTING_KEY = 'user.deleted';
|
|
export const USER_DELETED_QUEUE = 'ad.user.deleted';
|
|
|
|
// configuration
|
|
export const SERVICE_CONFIGURATION_SET_QUEUE = 'ad-configuration-set';
|
|
export const SERVICE_CONFIGURATION_DELETE_QUEUE = 'ad-configuration-delete';
|
|
export const SERVICE_CONFIGURATION_PROPAGATE_QUEUE =
|
|
'ad-configuration-propagate';
|
|
|
|
// health
|
|
export const GRPC_HEALTH_PACKAGE_NAME = 'health';
|
|
export const HEALTH_AD_REPOSITORY = 'AdRepository';
|
|
export const HEALTH_CRITICAL_LOGGING_KEY = 'logging.ad.health.crit';
|