@tiba-spark/client-shared-lib 25.4.0-341 → 25.4.0-Perf-318

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.
@@ -67,7 +67,7 @@ export declare class SessionState {
67
67
  silentLogOutMsl(ctx: StateContext<SessionStateModel>, appType: AppType): void;
68
68
  onTenantLoadAction(ctx: StateContext<SessionStateModel>, action: TenantLoadAction): void;
69
69
  onTenantClearAction(ctx: StateContext<SessionStateModel>, _: TenantClearAction): void;
70
- onHealthActionAction(ctx: StateContext<SessionStateModel>): import("rxjs").Observable<import("../../service-proxy/cloud-service-proxies").CloudHealthDtoHttpResponseData>;
70
+ onHealthActionAction(ctx: StateContext<SessionStateModel>): import("rxjs").Observable<import("../../service-proxy/cloud-service-proxies").HealthDtoHttpResponseData>;
71
71
  onUpdateUserSettings(ctx: StateContext<SessionStateModel>, { userSettings }: {
72
72
  userSettings: any;
73
73
  }): void;
@@ -287,8 +287,8 @@ export declare class ConfigurationCloudServiceProxy {
287
287
  /**
288
288
  * @return Success
289
289
  */
290
- getHealth(): Observable<CloudHealthDtoHttpResponseData>;
291
- protected processGetHealth(response: HttpResponseBase): Observable<CloudHealthDtoHttpResponseData>;
290
+ getHealth(): Observable<HealthDtoHttpResponseData>;
291
+ protected processGetHealth(response: HttpResponseBase): Observable<HealthDtoHttpResponseData>;
292
292
  /**
293
293
  * @return Success
294
294
  */
@@ -2073,42 +2073,6 @@ export interface ICloudFacilityDto {
2073
2073
  smartparkId: number;
2074
2074
  externalIdentifier: string | undefined;
2075
2075
  }
2076
- export declare class CloudHealthDto implements ICloudHealthDto {
2077
- environment: string | undefined;
2078
- services: {
2079
- [key: string]: HealthBase;
2080
- } | undefined;
2081
- constructor(data?: ICloudHealthDto);
2082
- init(_data?: any): void;
2083
- static fromJS(data: any): CloudHealthDto;
2084
- toJSON(data?: any): any;
2085
- clone(): CloudHealthDto;
2086
- }
2087
- export interface ICloudHealthDto {
2088
- environment: string | undefined;
2089
- services: {
2090
- [key: string]: HealthBase;
2091
- } | undefined;
2092
- }
2093
- export declare class CloudHealthDtoHttpResponseData implements ICloudHealthDtoHttpResponseData {
2094
- errorMessage: string | undefined;
2095
- isSuccess: boolean;
2096
- statusCode: HttpStatusCode;
2097
- data: CloudHealthDto;
2098
- successMessage: string | undefined;
2099
- constructor(data?: ICloudHealthDtoHttpResponseData);
2100
- init(_data?: any): void;
2101
- static fromJS(data: any): CloudHealthDtoHttpResponseData;
2102
- toJSON(data?: any): any;
2103
- clone(): CloudHealthDtoHttpResponseData;
2104
- }
2105
- export interface ICloudHealthDtoHttpResponseData {
2106
- errorMessage: string | undefined;
2107
- isSuccess: boolean;
2108
- statusCode: HttpStatusCode;
2109
- data: CloudHealthDto;
2110
- successMessage: string | undefined;
2111
- }
2112
2076
  export declare class CoinDto implements ICoinDto {
2113
2077
  value: number;
2114
2078
  counter: number;
@@ -3297,6 +3261,48 @@ export interface IHealthBase {
3297
3261
  status: HealthStatus;
3298
3262
  version: number;
3299
3263
  }
3264
+ export declare class HealthDto implements IHealthDto {
3265
+ environment: string | undefined;
3266
+ sparkApiServiceVersion: string | undefined;
3267
+ version: string | undefined;
3268
+ services: {
3269
+ [key: string]: HealthBase;
3270
+ } | undefined;
3271
+ runningStatus: ServicesRunningStatusDto;
3272
+ constructor(data?: IHealthDto);
3273
+ init(_data?: any): void;
3274
+ static fromJS(data: any): HealthDto;
3275
+ toJSON(data?: any): any;
3276
+ clone(): HealthDto;
3277
+ }
3278
+ export interface IHealthDto {
3279
+ environment: string | undefined;
3280
+ sparkApiServiceVersion: string | undefined;
3281
+ version: string | undefined;
3282
+ services: {
3283
+ [key: string]: HealthBase;
3284
+ } | undefined;
3285
+ runningStatus: ServicesRunningStatusDto;
3286
+ }
3287
+ export declare class HealthDtoHttpResponseData implements IHealthDtoHttpResponseData {
3288
+ errorMessage: string | undefined;
3289
+ isSuccess: boolean;
3290
+ statusCode: HttpStatusCode;
3291
+ data: HealthDto;
3292
+ successMessage: string | undefined;
3293
+ constructor(data?: IHealthDtoHttpResponseData);
3294
+ init(_data?: any): void;
3295
+ static fromJS(data: any): HealthDtoHttpResponseData;
3296
+ toJSON(data?: any): any;
3297
+ clone(): HealthDtoHttpResponseData;
3298
+ }
3299
+ export interface IHealthDtoHttpResponseData {
3300
+ errorMessage: string | undefined;
3301
+ isSuccess: boolean;
3302
+ statusCode: HttpStatusCode;
3303
+ data: HealthDto;
3304
+ successMessage: string | undefined;
3305
+ }
3300
3306
  export declare enum HealthStatus {
3301
3307
  Down = 0,
3302
3308
  Up = 1