ntk-cms-api 20.26.8 → 20.26.10
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/package.json
CHANGED
package/types/ntk-cms-api.d.ts
CHANGED
|
@@ -2406,6 +2406,30 @@ declare class CoreLogMicroServiceStatusModel extends BaseEntity<string> {
|
|
|
2406
2406
|
createDateMessage: Date;
|
|
2407
2407
|
operationStatisticsJson: string;
|
|
2408
2408
|
smsProviderStatusJson: string;
|
|
2409
|
+
/**
|
|
2410
|
+
* نوع میکروسرویس (مثلاً MagfaSms)
|
|
2411
|
+
*/
|
|
2412
|
+
instanceIdentifier?: string;
|
|
2413
|
+
/**
|
|
2414
|
+
* کد اختصاصی نمونه در زمان اجرا
|
|
2415
|
+
*/
|
|
2416
|
+
runtimeIdentity?: string;
|
|
2417
|
+
/**
|
|
2418
|
+
* هدف مسیریابی برای Ping و Command - InstanceIdentifier_RuntimeIdentity برای نمونه خاص، InstanceIdentifier برای broadcast
|
|
2419
|
+
*/
|
|
2420
|
+
routeTarget?: string;
|
|
2421
|
+
/**
|
|
2422
|
+
* لیست Queueهای فعال در میکروسرویس (ذخیره به صورت JSON)
|
|
2423
|
+
*/
|
|
2424
|
+
activeQueuesJson?: string;
|
|
2425
|
+
/**
|
|
2426
|
+
* نام کاربری RabbitMQ که میکروسرویس با آن متصل شده است
|
|
2427
|
+
*/
|
|
2428
|
+
rabbitMQUserName?: string;
|
|
2429
|
+
/**
|
|
2430
|
+
* لیست Queueهای فعال (از JSON parse شده)
|
|
2431
|
+
*/
|
|
2432
|
+
activeQueues?: string[];
|
|
2409
2433
|
}
|
|
2410
2434
|
|
|
2411
2435
|
declare class CoreLogMicroServiceStatusService extends ApiCmsServerBase<CoreLogMicroServiceStatusModel, string, FilterModel> {
|
|
@@ -2413,8 +2437,16 @@ declare class CoreLogMicroServiceStatusService extends ApiCmsServerBase<CoreLogM
|
|
|
2413
2437
|
getBaseUrl(): string;
|
|
2414
2438
|
ServiceGetAllStatus(): Observable<ErrorExceptionResult<CoreLogMicroServiceStatusModel>>;
|
|
2415
2439
|
ServiceGetStatusByAppInfoFilter(appInfoFilter: string): Observable<ErrorExceptionResult<CoreLogMicroServiceStatusModel>>;
|
|
2416
|
-
|
|
2417
|
-
|
|
2440
|
+
/**
|
|
2441
|
+
* Ping - routeTarget: InstanceIdentifier_RuntimeIdentity برای نمونه خاص، InstanceIdentifier برای broadcast
|
|
2442
|
+
* هماهنگ با Core SendPingAndWaitForPongAsync: Core با routingKey = routeTarget پublish میکند
|
|
2443
|
+
*/
|
|
2444
|
+
ServicePing(routeTarget: string, timeoutSeconds?: number): Observable<ErrorExceptionResult<CoreLogMicroServicePingModel>>;
|
|
2445
|
+
/**
|
|
2446
|
+
* ارسال Command - routeTarget: InstanceIdentifier_RuntimeIdentity برای نمونه خاص، InstanceIdentifier برای broadcast
|
|
2447
|
+
* هماهنگ با Core SendCommand: Core با routingKey = routeTarget پublish میکند
|
|
2448
|
+
*/
|
|
2449
|
+
ServiceSendCommand(routeTarget: string, command: MicroServiceCommandRequestDtoModel): Observable<ErrorExceptionResultBase>;
|
|
2418
2450
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoreLogMicroServiceStatusService, never>;
|
|
2419
2451
|
static ɵprov: i0.ɵɵInjectableDeclaration<CoreLogMicroServiceStatusService>;
|
|
2420
2452
|
}
|