@springtree/eva-services-core-management 3.0.0-beta.77 → 3.0.0-beta.79
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/lib/eva-services-core-management.d.ts +16 -38
- package/lib/eva-services-core-management.d.ts.map +1 -1
- package/lib/eva-services-core-management.js.map +1 -1
- package/lib/eva-services-core-management.services.d.ts +1 -7
- package/lib/eva-services-core-management.services.d.ts.map +1 -1
- package/lib/eva-services-core-management.services.js +0 -6
- package/lib/eva-services-core-management.services.js.map +1 -1
- package/package.json +3 -3
|
@@ -2295,6 +2295,10 @@ export interface CompaniesPushCompany<ID_TYPE = string> {
|
|
|
2295
2295
|
CompanyType?: DataModelsCompanyType;
|
|
2296
2296
|
ContactEmailAddress?: string | null;
|
|
2297
2297
|
ContactPhoneNumber?: string | null;
|
|
2298
|
+
/**
|
|
2299
|
+
* Optional additional custom fields. Will overwrite all custom field data when provided.
|
|
2300
|
+
*/
|
|
2301
|
+
CustomFields?: DataModelsCustomFieldKeyValue<ID_TYPE>[];
|
|
2298
2302
|
EntityType?: string | null;
|
|
2299
2303
|
EstablishedDate?: string | null;
|
|
2300
2304
|
FiscalID?: string | null;
|
|
@@ -2339,6 +2343,10 @@ export interface PushCompany_Async<ID_TYPE = string> {
|
|
|
2339
2343
|
CompanyType?: DataModelsCompanyType;
|
|
2340
2344
|
ContactEmailAddress?: string | null;
|
|
2341
2345
|
ContactPhoneNumber?: string | null;
|
|
2346
|
+
/**
|
|
2347
|
+
* Optional additional custom fields. Will overwrite all custom field data when provided.
|
|
2348
|
+
*/
|
|
2349
|
+
CustomFields?: DataModelsCustomFieldKeyValue<ID_TYPE>[];
|
|
2342
2350
|
EntityType?: string | null;
|
|
2343
2351
|
EstablishedDate?: string | null;
|
|
2344
2352
|
FiscalID?: string | null;
|
|
@@ -4404,6 +4412,7 @@ export interface DiscountsGetLayerGroupedDiscountsByQueryResponse_DiscountModel<
|
|
|
4404
4412
|
* Entity type: DiscountCampaign
|
|
4405
4413
|
*/
|
|
4406
4414
|
CampaignID?: ID_TYPE;
|
|
4415
|
+
CampaignName?: string;
|
|
4407
4416
|
CouponsGeneratedByOtherDiscount: boolean;
|
|
4408
4417
|
CreatedByFullName?: string;
|
|
4409
4418
|
/**
|
|
@@ -12551,6 +12560,11 @@ export interface UploadSupplierProductsStock<ID_TYPE = string> {
|
|
|
12551
12560
|
* Create a new role.
|
|
12552
12561
|
*/
|
|
12553
12562
|
export interface CreateRole<ID_TYPE = string> {
|
|
12563
|
+
/**
|
|
12564
|
+
* Entity type: Role
|
|
12565
|
+
* When set, the new role will one-time inherit all functionalities from the base role.
|
|
12566
|
+
*/
|
|
12567
|
+
BaseRoleID?: ID_TYPE;
|
|
12554
12568
|
Code?: string;
|
|
12555
12569
|
/**
|
|
12556
12570
|
* If this is set, any users that have not logged in after said days will get disabled
|
|
@@ -12968,6 +12982,7 @@ export interface RightsUserRoleModel<ID_TYPE = string> {
|
|
|
12968
12982
|
*/
|
|
12969
12983
|
RoleID: ID_TYPE;
|
|
12970
12984
|
RoleName?: string;
|
|
12985
|
+
StartDate: string;
|
|
12971
12986
|
UserType: UserTypes;
|
|
12972
12987
|
}
|
|
12973
12988
|
/**
|
|
@@ -15689,44 +15704,6 @@ export interface UsersGetSubscriptionHandlersResponse_Handler<ID_TYPE = string>
|
|
|
15689
15704
|
Name?: string;
|
|
15690
15705
|
}
|
|
15691
15706
|
/**
|
|
15692
|
-
* Gets all the SubscriptionOrganizationUnitSets and returns a paged response.
|
|
15693
|
-
*/
|
|
15694
|
-
export interface GetSubscriptionOrganizationUnitSets<ID_TYPE = string> {
|
|
15695
|
-
}
|
|
15696
|
-
export interface GetSubscriptionOrganizationUnitSetsResponse<ID_TYPE = string> {
|
|
15697
|
-
Error?: ServiceError<ID_TYPE>;
|
|
15698
|
-
Metadata?: ResponseMessageMetadata<ID_TYPE>;
|
|
15699
|
-
SubscriptionOrganizationUnitSets?: UsersGetSubscriptionOrganizationUnitSetsResponse_SubscriptionOrganizationUnitSetDto<ID_TYPE>[];
|
|
15700
|
-
}
|
|
15701
|
-
export interface UsersGetSubscriptionOrganizationUnitSetsResponse_SubscriptionOrganizationUnitSetDto<ID_TYPE = string> {
|
|
15702
|
-
Default: boolean;
|
|
15703
|
-
Enabled: boolean;
|
|
15704
|
-
Hidden: boolean;
|
|
15705
|
-
/**
|
|
15706
|
-
* Entity type: SubscriptionOrganizationUnitSet
|
|
15707
|
-
*/
|
|
15708
|
-
ID: ID_TYPE;
|
|
15709
|
-
/**
|
|
15710
|
-
* Entity type: OrganizationUnit
|
|
15711
|
-
*/
|
|
15712
|
-
OrganizationUnitID?: ID_TYPE;
|
|
15713
|
-
OrganizationUnitSetDescription?: string;
|
|
15714
|
-
/**
|
|
15715
|
-
* Entity type: OrganizationUnitSet
|
|
15716
|
-
*/
|
|
15717
|
-
OrganizationUnitSetID: ID_TYPE;
|
|
15718
|
-
OrganizationUnitSetName?: string;
|
|
15719
|
-
OrganizationUnitSetType?: DataModelsOrganizationUnitSetTypes;
|
|
15720
|
-
Preferred: boolean;
|
|
15721
|
-
Priority: number;
|
|
15722
|
-
SubscriptionConfirmation: DataModelsSubscriptionConfirmation;
|
|
15723
|
-
/**
|
|
15724
|
-
* Entity type: Subscription
|
|
15725
|
-
*/
|
|
15726
|
-
SubscriptionID: ID_TYPE;
|
|
15727
|
-
SubscriptionName?: string;
|
|
15728
|
-
}
|
|
15729
|
-
/**
|
|
15730
15707
|
* Get the UserAgreement details
|
|
15731
15708
|
*/
|
|
15732
15709
|
export interface GetUserAgreementByID<ID_TYPE = string> {
|
|
@@ -16397,6 +16374,7 @@ export interface UsersWishlistsListWishlistsResponse_Wishlist<ID_TYPE = string>
|
|
|
16397
16374
|
ID: ID_TYPE;
|
|
16398
16375
|
IsShared: boolean;
|
|
16399
16376
|
ItemCount: number;
|
|
16377
|
+
LastModifiedOn: string;
|
|
16400
16378
|
LastReadTime: string;
|
|
16401
16379
|
Name?: string;
|
|
16402
16380
|
UserFullName?: string;
|