@tiba-spark/client-shared-lib 25.3.0-752 → 25.3.0-755
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/esm2022/libraries/service-proxy/cloud-service-proxies.mjs +106 -14
- package/fesm2022/tiba-spark-client-shared-lib.mjs +108 -14
- package/fesm2022/tiba-spark-client-shared-lib.mjs.map +1 -1
- package/libraries/service-proxy/cloud-service-proxies.d.ts +45 -11
- package/libraries/service-proxy/cloud-service-proxies.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -546,8 +546,8 @@ export declare class LicenseServiceProxy {
|
|
|
546
546
|
* @param body (optional)
|
|
547
547
|
* @return Success
|
|
548
548
|
*/
|
|
549
|
-
createVendorIntegration(body: CreateVendorIntegrationCommand | undefined): Observable<
|
|
550
|
-
protected processCreateVendorIntegration(response: HttpResponseBase): Observable<
|
|
549
|
+
createVendorIntegration(body: CreateVendorIntegrationCommand | undefined): Observable<VendorIntegrationCreateDtoHttpResponseData>;
|
|
550
|
+
protected processCreateVendorIntegration(response: HttpResponseBase): Observable<VendorIntegrationCreateDtoHttpResponseData>;
|
|
551
551
|
/**
|
|
552
552
|
* @return Success
|
|
553
553
|
*/
|
|
@@ -2490,7 +2490,7 @@ export interface ICreateVendorCommand {
|
|
|
2490
2490
|
export declare class CreateVendorIntegrationCommand implements ICreateVendorIntegrationCommand {
|
|
2491
2491
|
vendorId: number;
|
|
2492
2492
|
vendorRoles: VendorRoles[] | undefined;
|
|
2493
|
-
smartparkWithParkIds:
|
|
2493
|
+
smartparkWithParkIds: SmartparkWithFacilityIdsModel[] | undefined;
|
|
2494
2494
|
constructor(data?: ICreateVendorIntegrationCommand);
|
|
2495
2495
|
init(_data?: any): void;
|
|
2496
2496
|
static fromJS(data: any): CreateVendorIntegrationCommand;
|
|
@@ -2500,7 +2500,7 @@ export declare class CreateVendorIntegrationCommand implements ICreateVendorInte
|
|
|
2500
2500
|
export interface ICreateVendorIntegrationCommand {
|
|
2501
2501
|
vendorId: number;
|
|
2502
2502
|
vendorRoles: VendorRoles[] | undefined;
|
|
2503
|
-
smartparkWithParkIds:
|
|
2503
|
+
smartparkWithParkIds: SmartparkWithFacilityIdsModel[] | undefined;
|
|
2504
2504
|
}
|
|
2505
2505
|
export declare enum CrudOperation {
|
|
2506
2506
|
Create = 1,
|
|
@@ -5494,18 +5494,20 @@ export interface ISmartparkVersionDto {
|
|
|
5494
5494
|
versionName: string | undefined;
|
|
5495
5495
|
count: number;
|
|
5496
5496
|
}
|
|
5497
|
-
export declare class
|
|
5497
|
+
export declare class SmartparkWithFacilityIdsModel implements ISmartparkWithFacilityIdsModel {
|
|
5498
5498
|
smartparkId: number;
|
|
5499
|
-
|
|
5500
|
-
|
|
5499
|
+
facilityParentId: number | undefined;
|
|
5500
|
+
facilityChildrenIds: number[] | undefined;
|
|
5501
|
+
constructor(data?: ISmartparkWithFacilityIdsModel);
|
|
5501
5502
|
init(_data?: any): void;
|
|
5502
|
-
static fromJS(data: any):
|
|
5503
|
+
static fromJS(data: any): SmartparkWithFacilityIdsModel;
|
|
5503
5504
|
toJSON(data?: any): any;
|
|
5504
|
-
clone():
|
|
5505
|
+
clone(): SmartparkWithFacilityIdsModel;
|
|
5505
5506
|
}
|
|
5506
|
-
export interface
|
|
5507
|
+
export interface ISmartparkWithFacilityIdsModel {
|
|
5507
5508
|
smartparkId: number;
|
|
5508
|
-
|
|
5509
|
+
facilityParentId: number | undefined;
|
|
5510
|
+
facilityChildrenIds: number[] | undefined;
|
|
5509
5511
|
}
|
|
5510
5512
|
export declare class SpAndSparkVersionsDto implements ISpAndSparkVersionsDto {
|
|
5511
5513
|
smartparkVersions: string[] | undefined;
|
|
@@ -6727,6 +6729,38 @@ export interface IVendorIPDto {
|
|
|
6727
6729
|
vendorId: number;
|
|
6728
6730
|
ip: string | undefined;
|
|
6729
6731
|
}
|
|
6732
|
+
export declare class VendorIntegrationCreateDto implements IVendorIntegrationCreateDto {
|
|
6733
|
+
addedEntities: VendorIntegrationDto[] | undefined;
|
|
6734
|
+
removedEntities: VendorIntegrationDto[] | undefined;
|
|
6735
|
+
constructor(data?: IVendorIntegrationCreateDto);
|
|
6736
|
+
init(_data?: any): void;
|
|
6737
|
+
static fromJS(data: any): VendorIntegrationCreateDto;
|
|
6738
|
+
toJSON(data?: any): any;
|
|
6739
|
+
clone(): VendorIntegrationCreateDto;
|
|
6740
|
+
}
|
|
6741
|
+
export interface IVendorIntegrationCreateDto {
|
|
6742
|
+
addedEntities: VendorIntegrationDto[] | undefined;
|
|
6743
|
+
removedEntities: VendorIntegrationDto[] | undefined;
|
|
6744
|
+
}
|
|
6745
|
+
export declare class VendorIntegrationCreateDtoHttpResponseData implements IVendorIntegrationCreateDtoHttpResponseData {
|
|
6746
|
+
errorMessage: string | undefined;
|
|
6747
|
+
isSuccess: boolean;
|
|
6748
|
+
statusCode: HttpStatusCode;
|
|
6749
|
+
data: VendorIntegrationCreateDto;
|
|
6750
|
+
successMessage: string | undefined;
|
|
6751
|
+
constructor(data?: IVendorIntegrationCreateDtoHttpResponseData);
|
|
6752
|
+
init(_data?: any): void;
|
|
6753
|
+
static fromJS(data: any): VendorIntegrationCreateDtoHttpResponseData;
|
|
6754
|
+
toJSON(data?: any): any;
|
|
6755
|
+
clone(): VendorIntegrationCreateDtoHttpResponseData;
|
|
6756
|
+
}
|
|
6757
|
+
export interface IVendorIntegrationCreateDtoHttpResponseData {
|
|
6758
|
+
errorMessage: string | undefined;
|
|
6759
|
+
isSuccess: boolean;
|
|
6760
|
+
statusCode: HttpStatusCode;
|
|
6761
|
+
data: VendorIntegrationCreateDto;
|
|
6762
|
+
successMessage: string | undefined;
|
|
6763
|
+
}
|
|
6730
6764
|
export declare class VendorIntegrationDto implements IVendorIntegrationDto {
|
|
6731
6765
|
vendorId: number;
|
|
6732
6766
|
smartparkId: number;
|