@tiba-spark/client-shared-lib 25.3.0-187 → 25.3.0-193

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.
@@ -60,6 +60,35 @@ export declare class AlertsAndNotificationsServiceProxy {
60
60
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertsAndNotificationsServiceProxy, [null, { optional: true; }]>;
61
61
  static ɵprov: i0.ɵɵInjectableDeclaration<AlertsAndNotificationsServiceProxy>;
62
62
  }
63
+ export declare class ApiTrafficServiceProxy {
64
+ private http;
65
+ private baseUrl;
66
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
67
+ constructor(http: HttpClient, baseUrl?: string);
68
+ /**
69
+ * @param startDate (optional)
70
+ * @param endDate (optional)
71
+ * @param searchValue (optional)
72
+ * @param method (optional)
73
+ * @param skip (optional)
74
+ * @param take (optional)
75
+ * @param statusCode (optional)
76
+ * @param tenantIds (optional)
77
+ * @param vendorsIds (optional)
78
+ * @param parkingLotsIds (optional)
79
+ * @return Success
80
+ */
81
+ getApiTraffic(startDate: moment.Moment | undefined, endDate: moment.Moment | undefined, searchValue: string | undefined, method: HttpMethod | undefined, skip: number | undefined, take: number | undefined, statusCode: number[] | undefined, tenantIds: number[] | undefined, vendorsIds: number[] | undefined, parkingLotsIds: number[] | undefined): Observable<ApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData>;
82
+ protected processGetApiTraffic(response: HttpResponseBase): Observable<ApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData>;
83
+ /**
84
+ * @param id (optional)
85
+ * @return Success
86
+ */
87
+ getApiTrafficById(id: number | undefined): Observable<ApiIntegrationTrafficLogsDtoHttpResponseData>;
88
+ protected processGetApiTrafficById(response: HttpResponseBase): Observable<ApiIntegrationTrafficLogsDtoHttpResponseData>;
89
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiTrafficServiceProxy, [null, { optional: true; }]>;
90
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiTrafficServiceProxy>;
91
+ }
63
92
  export declare class AssetServiceProxy {
64
93
  private http;
65
94
  private baseUrl;
@@ -250,6 +279,13 @@ export declare class BackofficeServiceProxy {
250
279
  */
251
280
  assignDynamicPricingRole(tenantId: number | undefined, userName: string | undefined): Observable<BooleanHttpResponseData>;
252
281
  protected processAssignDynamicPricingRole(response: HttpResponseBase): Observable<BooleanHttpResponseData>;
282
+ /**
283
+ * @param tenantid (optional)
284
+ * @param searchParam (optional)
285
+ * @return Success
286
+ */
287
+ getBackofficeFacilityTree(tenantid: number | undefined, searchParam: string | undefined): Observable<FacilityTreeDtoIEnumerableHttpResponseData>;
288
+ protected processGetBackofficeFacilityTree(response: HttpResponseBase): Observable<FacilityTreeDtoIEnumerableHttpResponseData>;
253
289
  static ɵfac: i0.ɵɵFactoryDeclaration<BackofficeServiceProxy, [null, { optional: true; }]>;
254
290
  static ɵprov: i0.ɵɵInjectableDeclaration<BackofficeServiceProxy>;
255
291
  }
@@ -1027,6 +1063,11 @@ export declare class VendorServiceProxy {
1027
1063
  private baseUrl;
1028
1064
  protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1029
1065
  constructor(http: HttpClient, baseUrl?: string);
1066
+ /**
1067
+ * @return Success
1068
+ */
1069
+ getAllVendors(): Observable<VendorDtoIEnumerableHttpResponseData>;
1070
+ protected processGetAllVendors(response: HttpResponseBase): Observable<VendorDtoIEnumerableHttpResponseData>;
1030
1071
  /**
1031
1072
  * @param searchValue (optional)
1032
1073
  * @param skip (optional)
@@ -1322,6 +1363,102 @@ export declare class AllRolePermissionAccountsDto implements IAllRolePermissionA
1322
1363
  export interface IAllRolePermissionAccountsDto {
1323
1364
  validationTypes: RolePermissionValidationTypeDto[] | undefined;
1324
1365
  }
1366
+ export declare class ApiIntegrationTrafficLogsDto implements IApiIntegrationTrafficLogsDto {
1367
+ id: number;
1368
+ relativeUrl: string | undefined;
1369
+ statusCode: number;
1370
+ method: HttpMethod;
1371
+ vendorName: string | undefined;
1372
+ externalIdentifier: string | undefined;
1373
+ parkingLot: string | undefined;
1374
+ parkingLotId: number;
1375
+ sparkVersion: string | undefined;
1376
+ requestTime: moment.Moment;
1377
+ smartParkId: number;
1378
+ smartParkGuid: string | undefined;
1379
+ tenantName: string | undefined;
1380
+ tenantId: number;
1381
+ vendorId: number;
1382
+ request: string | undefined;
1383
+ response: string | undefined;
1384
+ constructor(data?: IApiIntegrationTrafficLogsDto);
1385
+ init(_data?: any): void;
1386
+ static fromJS(data: any): ApiIntegrationTrafficLogsDto;
1387
+ toJSON(data?: any): any;
1388
+ clone(): ApiIntegrationTrafficLogsDto;
1389
+ }
1390
+ export interface IApiIntegrationTrafficLogsDto {
1391
+ id: number;
1392
+ relativeUrl: string | undefined;
1393
+ statusCode: number;
1394
+ method: HttpMethod;
1395
+ vendorName: string | undefined;
1396
+ externalIdentifier: string | undefined;
1397
+ parkingLot: string | undefined;
1398
+ parkingLotId: number;
1399
+ sparkVersion: string | undefined;
1400
+ requestTime: moment.Moment;
1401
+ smartParkId: number;
1402
+ smartParkGuid: string | undefined;
1403
+ tenantName: string | undefined;
1404
+ tenantId: number;
1405
+ vendorId: number;
1406
+ request: string | undefined;
1407
+ response: string | undefined;
1408
+ }
1409
+ export declare class ApiIntegrationTrafficLogsDtoEntityWrapperDto implements IApiIntegrationTrafficLogsDtoEntityWrapperDto {
1410
+ entities: ApiIntegrationTrafficLogsDto[] | undefined;
1411
+ counter: number;
1412
+ subCounter: number | undefined;
1413
+ constructor(data?: IApiIntegrationTrafficLogsDtoEntityWrapperDto);
1414
+ init(_data?: any): void;
1415
+ static fromJS(data: any): ApiIntegrationTrafficLogsDtoEntityWrapperDto;
1416
+ toJSON(data?: any): any;
1417
+ clone(): ApiIntegrationTrafficLogsDtoEntityWrapperDto;
1418
+ }
1419
+ export interface IApiIntegrationTrafficLogsDtoEntityWrapperDto {
1420
+ entities: ApiIntegrationTrafficLogsDto[] | undefined;
1421
+ counter: number;
1422
+ subCounter: number | undefined;
1423
+ }
1424
+ export declare class ApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData implements IApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData {
1425
+ errorMessage: string | undefined;
1426
+ isSuccess: boolean;
1427
+ statusCode: HttpStatusCode;
1428
+ data: ApiIntegrationTrafficLogsDtoEntityWrapperDto;
1429
+ successMessage: string | undefined;
1430
+ constructor(data?: IApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData);
1431
+ init(_data?: any): void;
1432
+ static fromJS(data: any): ApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData;
1433
+ toJSON(data?: any): any;
1434
+ clone(): ApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData;
1435
+ }
1436
+ export interface IApiIntegrationTrafficLogsDtoEntityWrapperDtoHttpResponseData {
1437
+ errorMessage: string | undefined;
1438
+ isSuccess: boolean;
1439
+ statusCode: HttpStatusCode;
1440
+ data: ApiIntegrationTrafficLogsDtoEntityWrapperDto;
1441
+ successMessage: string | undefined;
1442
+ }
1443
+ export declare class ApiIntegrationTrafficLogsDtoHttpResponseData implements IApiIntegrationTrafficLogsDtoHttpResponseData {
1444
+ errorMessage: string | undefined;
1445
+ isSuccess: boolean;
1446
+ statusCode: HttpStatusCode;
1447
+ data: ApiIntegrationTrafficLogsDto;
1448
+ successMessage: string | undefined;
1449
+ constructor(data?: IApiIntegrationTrafficLogsDtoHttpResponseData);
1450
+ init(_data?: any): void;
1451
+ static fromJS(data: any): ApiIntegrationTrafficLogsDtoHttpResponseData;
1452
+ toJSON(data?: any): any;
1453
+ clone(): ApiIntegrationTrafficLogsDtoHttpResponseData;
1454
+ }
1455
+ export interface IApiIntegrationTrafficLogsDtoHttpResponseData {
1456
+ errorMessage: string | undefined;
1457
+ isSuccess: boolean;
1458
+ statusCode: HttpStatusCode;
1459
+ data: ApiIntegrationTrafficLogsDto;
1460
+ successMessage: string | undefined;
1461
+ }
1325
1462
  export declare class AppConfigurationDto implements IAppConfigurationDto {
1326
1463
  newEdgeFlag: boolean;
1327
1464
  latestEdgeVersion: string | undefined;
@@ -2742,6 +2879,52 @@ export declare enum FacilityRemoteCommandTypes {
2742
2879
  RunMacro = 5,
2743
2880
  TransmitSpecialDays = 6
2744
2881
  }
2882
+ export declare class FacilityTreeDto implements IFacilityTreeDto {
2883
+ id: number;
2884
+ cloudId: number;
2885
+ name: string | undefined;
2886
+ parent: number;
2887
+ guid: string | undefined;
2888
+ type: ParkBranchType;
2889
+ localId: number;
2890
+ children: FacilityTreeDto[] | undefined;
2891
+ active: boolean;
2892
+ constructor(data?: IFacilityTreeDto);
2893
+ init(_data?: any): void;
2894
+ static fromJS(data: any): FacilityTreeDto;
2895
+ toJSON(data?: any): any;
2896
+ clone(): FacilityTreeDto;
2897
+ }
2898
+ export interface IFacilityTreeDto {
2899
+ id: number;
2900
+ cloudId: number;
2901
+ name: string | undefined;
2902
+ parent: number;
2903
+ guid: string | undefined;
2904
+ type: ParkBranchType;
2905
+ localId: number;
2906
+ children: FacilityTreeDto[] | undefined;
2907
+ active: boolean;
2908
+ }
2909
+ export declare class FacilityTreeDtoIEnumerableHttpResponseData implements IFacilityTreeDtoIEnumerableHttpResponseData {
2910
+ errorMessage: string | undefined;
2911
+ isSuccess: boolean;
2912
+ statusCode: HttpStatusCode;
2913
+ data: FacilityTreeDto[] | undefined;
2914
+ successMessage: string | undefined;
2915
+ constructor(data?: IFacilityTreeDtoIEnumerableHttpResponseData);
2916
+ init(_data?: any): void;
2917
+ static fromJS(data: any): FacilityTreeDtoIEnumerableHttpResponseData;
2918
+ toJSON(data?: any): any;
2919
+ clone(): FacilityTreeDtoIEnumerableHttpResponseData;
2920
+ }
2921
+ export interface IFacilityTreeDtoIEnumerableHttpResponseData {
2922
+ errorMessage: string | undefined;
2923
+ isSuccess: boolean;
2924
+ statusCode: HttpStatusCode;
2925
+ data: FacilityTreeDto[] | undefined;
2926
+ successMessage: string | undefined;
2927
+ }
2745
2928
  export declare enum FeatureState {
2746
2929
  None = 0,
2747
2930
  On = 1,
@@ -2783,6 +2966,35 @@ export interface IFilterDto {
2783
2966
  export declare enum GeneralActionType {
2784
2967
  DisconnectFromSessions = 1
2785
2968
  }
2969
+ export declare class GetApiTrafficQuery implements IGetApiTrafficQuery {
2970
+ startDate: moment.Moment | undefined;
2971
+ endDate: moment.Moment | undefined;
2972
+ searchValue: string | undefined;
2973
+ method: HttpMethod;
2974
+ skip: number;
2975
+ take: number;
2976
+ statusCode: number[] | undefined;
2977
+ tenantIds: number[] | undefined;
2978
+ vendorsIds: number[] | undefined;
2979
+ parkingLotsIds: number[] | undefined;
2980
+ constructor(data?: IGetApiTrafficQuery);
2981
+ init(_data?: any): void;
2982
+ static fromJS(data: any): GetApiTrafficQuery;
2983
+ toJSON(data?: any): any;
2984
+ clone(): GetApiTrafficQuery;
2985
+ }
2986
+ export interface IGetApiTrafficQuery {
2987
+ startDate: moment.Moment | undefined;
2988
+ endDate: moment.Moment | undefined;
2989
+ searchValue: string | undefined;
2990
+ method: HttpMethod;
2991
+ skip: number;
2992
+ take: number;
2993
+ statusCode: number[] | undefined;
2994
+ tenantIds: number[] | undefined;
2995
+ vendorsIds: number[] | undefined;
2996
+ parkingLotsIds: number[] | undefined;
2997
+ }
2786
2998
  export declare class GetLogoDto implements IGetLogoDto {
2787
2999
  identifier: string | undefined;
2788
3000
  constructor(data?: IGetLogoDto);
@@ -2954,6 +3166,15 @@ export declare enum HopperStatus {
2954
3166
  Security = 2,
2955
3167
  Error = 3
2956
3168
  }
3169
+ export declare enum HttpMethod {
3170
+ ALL = 0,
3171
+ GET = 1,
3172
+ POST = 2,
3173
+ PUT = 3,
3174
+ DELETE = 4,
3175
+ FUTURED = 5,
3176
+ UNKNOWEN = 99
3177
+ }
2957
3178
  export declare class HttpResponseData_1 implements IHttpResponseData_1 {
2958
3179
  errorMessage: string | undefined;
2959
3180
  isSuccess: boolean;
@@ -3539,6 +3760,10 @@ export declare enum OrderDirection {
3539
3760
  Asc = 1,
3540
3761
  Desc = 2
3541
3762
  }
3763
+ export declare enum ParkBranchType {
3764
+ Park = 0,
3765
+ Group = 1
3766
+ }
3542
3767
  export declare enum PasswordChangeType {
3543
3768
  Registration = 0,
3544
3769
  Forgot = 1,
@@ -6096,6 +6321,25 @@ export interface IVendorDtoHttpResponseData {
6096
6321
  data: VendorDto;
6097
6322
  successMessage: string | undefined;
6098
6323
  }
6324
+ export declare class VendorDtoIEnumerableHttpResponseData implements IVendorDtoIEnumerableHttpResponseData {
6325
+ errorMessage: string | undefined;
6326
+ isSuccess: boolean;
6327
+ statusCode: HttpStatusCode;
6328
+ data: VendorDto[] | undefined;
6329
+ successMessage: string | undefined;
6330
+ constructor(data?: IVendorDtoIEnumerableHttpResponseData);
6331
+ init(_data?: any): void;
6332
+ static fromJS(data: any): VendorDtoIEnumerableHttpResponseData;
6333
+ toJSON(data?: any): any;
6334
+ clone(): VendorDtoIEnumerableHttpResponseData;
6335
+ }
6336
+ export interface IVendorDtoIEnumerableHttpResponseData {
6337
+ errorMessage: string | undefined;
6338
+ isSuccess: boolean;
6339
+ statusCode: HttpStatusCode;
6340
+ data: VendorDto[] | undefined;
6341
+ successMessage: string | undefined;
6342
+ }
6099
6343
  export declare class VendorIPDto implements IVendorIPDto {
6100
6344
  id: number;
6101
6345
  vendorId: number;