@tiba-spark/client-shared-lib 25.4.1-27 → 25.4.1-33
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 +125 -5
- package/fesm2022/tiba-spark-client-shared-lib.mjs +127 -4
- package/fesm2022/tiba-spark-client-shared-lib.mjs.map +1 -1
- package/libraries/service-proxy/cloud-service-proxies.d.ts +45 -4
- package/libraries/service-proxy/cloud-service-proxies.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1190,6 +1190,19 @@ export declare class VendorCloudServiceProxy {
|
|
|
1190
1190
|
static ɵfac: i0.ɵɵFactoryDeclaration<VendorCloudServiceProxy, [null, { optional: true; }]>;
|
|
1191
1191
|
static ɵprov: i0.ɵɵInjectableDeclaration<VendorCloudServiceProxy>;
|
|
1192
1192
|
}
|
|
1193
|
+
export declare class AccountEntry implements IAccountEntry {
|
|
1194
|
+
name: string | undefined;
|
|
1195
|
+
subAccounts: SubAccountEntry[] | undefined;
|
|
1196
|
+
constructor(data?: IAccountEntry);
|
|
1197
|
+
init(_data?: any): void;
|
|
1198
|
+
static fromJS(data: any): AccountEntry;
|
|
1199
|
+
toJSON(data?: any): any;
|
|
1200
|
+
clone(): AccountEntry;
|
|
1201
|
+
}
|
|
1202
|
+
export interface IAccountEntry {
|
|
1203
|
+
name: string | undefined;
|
|
1204
|
+
subAccounts: SubAccountEntry[] | undefined;
|
|
1205
|
+
}
|
|
1193
1206
|
export declare enum ActionType {
|
|
1194
1207
|
None = 0,
|
|
1195
1208
|
Create = 1,
|
|
@@ -3142,9 +3155,9 @@ export declare class FacilityAssignment implements IFacilityAssignment {
|
|
|
3142
3155
|
facilityTreeId: number;
|
|
3143
3156
|
permissions: PermissionType[] | undefined;
|
|
3144
3157
|
accounts: {
|
|
3145
|
-
[key: string]:
|
|
3158
|
+
[key: string]: AccountEntry;
|
|
3146
3159
|
} | undefined;
|
|
3147
|
-
validations:
|
|
3160
|
+
validations: ValidationEntry[] | undefined;
|
|
3148
3161
|
eCommerceAccounts: number[] | undefined;
|
|
3149
3162
|
isAllAccountsAllowed: boolean;
|
|
3150
3163
|
isAllValidationsAllowed: boolean;
|
|
@@ -3158,9 +3171,9 @@ export interface IFacilityAssignment {
|
|
|
3158
3171
|
facilityTreeId: number;
|
|
3159
3172
|
permissions: PermissionType[] | undefined;
|
|
3160
3173
|
accounts: {
|
|
3161
|
-
[key: string]:
|
|
3174
|
+
[key: string]: AccountEntry;
|
|
3162
3175
|
} | undefined;
|
|
3163
|
-
validations:
|
|
3176
|
+
validations: ValidationEntry[] | undefined;
|
|
3164
3177
|
eCommerceAccounts: number[] | undefined;
|
|
3165
3178
|
isAllAccountsAllowed: boolean;
|
|
3166
3179
|
isAllValidationsAllowed: boolean;
|
|
@@ -5781,6 +5794,19 @@ export interface IStringStringIDictionaryHttpResponseData {
|
|
|
5781
5794
|
} | undefined;
|
|
5782
5795
|
successMessage: string | undefined;
|
|
5783
5796
|
}
|
|
5797
|
+
export declare class SubAccountEntry implements ISubAccountEntry {
|
|
5798
|
+
id: number;
|
|
5799
|
+
name: string | undefined;
|
|
5800
|
+
constructor(data?: ISubAccountEntry);
|
|
5801
|
+
init(_data?: any): void;
|
|
5802
|
+
static fromJS(data: any): SubAccountEntry;
|
|
5803
|
+
toJSON(data?: any): any;
|
|
5804
|
+
clone(): SubAccountEntry;
|
|
5805
|
+
}
|
|
5806
|
+
export interface ISubAccountEntry {
|
|
5807
|
+
id: number;
|
|
5808
|
+
name: string | undefined;
|
|
5809
|
+
}
|
|
5784
5810
|
export declare enum SubModule {
|
|
5785
5811
|
EValidation = 0,
|
|
5786
5812
|
Stickers = 1,
|
|
@@ -6358,6 +6384,7 @@ export declare class UpdateRoleCommand implements IUpdateRoleCommand {
|
|
|
6358
6384
|
moduleAssignments: ModuleAssignment[] | undefined;
|
|
6359
6385
|
facilityAssignments: FacilityAssignment[] | undefined;
|
|
6360
6386
|
id: number;
|
|
6387
|
+
removedFacilityAssignments: FacilityAssignment[] | undefined;
|
|
6361
6388
|
constructor(data?: IUpdateRoleCommand);
|
|
6362
6389
|
init(_data?: any): void;
|
|
6363
6390
|
static fromJS(data: any): UpdateRoleCommand;
|
|
@@ -6371,6 +6398,7 @@ export interface IUpdateRoleCommand {
|
|
|
6371
6398
|
moduleAssignments: ModuleAssignment[] | undefined;
|
|
6372
6399
|
facilityAssignments: FacilityAssignment[] | undefined;
|
|
6373
6400
|
id: number;
|
|
6401
|
+
removedFacilityAssignments: FacilityAssignment[] | undefined;
|
|
6374
6402
|
}
|
|
6375
6403
|
export declare class UpdateSelfValidationCommand implements IUpdateSelfValidationCommand {
|
|
6376
6404
|
cloudFacilityId: number;
|
|
@@ -6834,6 +6862,19 @@ export interface IValidateActivationUserDtoHttpResponseData {
|
|
|
6834
6862
|
data: ValidateActivationUserDto;
|
|
6835
6863
|
successMessage: string | undefined;
|
|
6836
6864
|
}
|
|
6865
|
+
export declare class ValidationEntry implements IValidationEntry {
|
|
6866
|
+
id: number;
|
|
6867
|
+
name: string | undefined;
|
|
6868
|
+
constructor(data?: IValidationEntry);
|
|
6869
|
+
init(_data?: any): void;
|
|
6870
|
+
static fromJS(data: any): ValidationEntry;
|
|
6871
|
+
toJSON(data?: any): any;
|
|
6872
|
+
clone(): ValidationEntry;
|
|
6873
|
+
}
|
|
6874
|
+
export interface IValidationEntry {
|
|
6875
|
+
id: number;
|
|
6876
|
+
name: string | undefined;
|
|
6877
|
+
}
|
|
6837
6878
|
export declare class VarDto implements IVarDto {
|
|
6838
6879
|
id: number;
|
|
6839
6880
|
name: string | undefined;
|