@springtree/eva-services-core-management 2.32.0 → 2.33.0
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.
|
@@ -901,6 +901,19 @@ This PIN will only be valid for a limited amount of time, and only for the provi
|
|
|
901
901
|
request?: EVA.Core.Management.CreateOpeningHoursType;
|
|
902
902
|
response?: EVA.Core.Management.CreateOpeningHoursTypeResponse;
|
|
903
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* Set the AML rules for a specific country. When no rules are provided, the configuration will be deleted.
|
|
906
|
+
*
|
|
907
|
+
* @export
|
|
908
|
+
* @class CreateOrUpdateAMLConfiguration
|
|
909
|
+
* @implements {EvaService}
|
|
910
|
+
*/
|
|
911
|
+
class CreateOrUpdateAMLConfiguration implements IEvaServiceDefinition {
|
|
912
|
+
name: string;
|
|
913
|
+
path: string;
|
|
914
|
+
request?: EVA.Core.Management.CreateOrUpdateAMLConfiguration;
|
|
915
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
916
|
+
}
|
|
904
917
|
/**
|
|
905
918
|
* Create or update a users employee data.
|
|
906
919
|
*
|
|
@@ -5217,6 +5230,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
5217
5230
|
request?: EVA.Core.Management.InitialReplenishment;
|
|
5218
5231
|
response?: EVA.Core.Management.InitialReplenishmentResponse;
|
|
5219
5232
|
}
|
|
5233
|
+
/**
|
|
5234
|
+
* List all AML configurations.
|
|
5235
|
+
*
|
|
5236
|
+
* @export
|
|
5237
|
+
* @class ListAMLConfigurations
|
|
5238
|
+
* @implements {EvaService}
|
|
5239
|
+
*/
|
|
5240
|
+
class ListAMLConfigurations implements IEvaServiceDefinition {
|
|
5241
|
+
name: string;
|
|
5242
|
+
path: string;
|
|
5243
|
+
request?: EVA.Core.Management.ListAMLConfigurations;
|
|
5244
|
+
response?: EVA.Core.Management.ListAMLConfigurationsResponse;
|
|
5245
|
+
}
|
|
5220
5246
|
/**
|
|
5221
5247
|
* List the active accounts
|
|
5222
5248
|
|