@springtree/eva-services-core-management 3.0.0-beta.44 → 3.0.0-beta.45
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.
|
@@ -1536,6 +1536,7 @@ export interface CreateCompanyResponse<ID_TYPE = string> {
|
|
|
1536
1536
|
* Creates a new company associated with the organization unit type
|
|
1537
1537
|
*/
|
|
1538
1538
|
export interface CreateOrganizationUnitCompany<ID_TYPE = string> {
|
|
1539
|
+
BackendID?: string;
|
|
1539
1540
|
BillingAddress?: AddressesAddressDataDto<ID_TYPE>;
|
|
1540
1541
|
EmailAddress?: string;
|
|
1541
1542
|
EntityType?: string;
|
|
@@ -1625,6 +1626,7 @@ export interface GetOrganizationUnitCompany<ID_TYPE = string> {
|
|
|
1625
1626
|
ID: ID_TYPE;
|
|
1626
1627
|
}
|
|
1627
1628
|
export interface GetOrganizationUnitCompanyResponse<ID_TYPE = string> {
|
|
1629
|
+
BackendID?: string;
|
|
1628
1630
|
BillingAddress?: AddressesAddressDto<ID_TYPE>;
|
|
1629
1631
|
EmailAddress?: string;
|
|
1630
1632
|
EntityType?: string;
|
|
@@ -10461,6 +10463,10 @@ export interface PricingListPriceListAdjustmentsResponse_PriceListAdjustmentDto_
|
|
|
10461
10463
|
* List the PriceListManualInputAdjustments, it is required to supply at least an PriceListAdjustmentID in the Filter
|
|
10462
10464
|
*/
|
|
10463
10465
|
export interface ListPriceListManualInputAdjustments<ID_TYPE = string> {
|
|
10466
|
+
/**
|
|
10467
|
+
* Entity type: ProductPropertyType
|
|
10468
|
+
*/
|
|
10469
|
+
IncludedProductProperties?: string[];
|
|
10464
10470
|
PageConfig?: PageConfig<PricingListManualInputAdjustmentsFilter<ID_TYPE>, ID_TYPE>;
|
|
10465
10471
|
}
|
|
10466
10472
|
export interface ListPriceListManualInputAdjustmentsResponse<ID_TYPE = string> {
|
|
@@ -10475,6 +10481,7 @@ export interface PricingListPriceListManualInputAdjustmentsResponse_PriceListMan
|
|
|
10475
10481
|
* Entity type: PriceListManualInputAdjustment
|
|
10476
10482
|
*/
|
|
10477
10483
|
ID: ID_TYPE;
|
|
10484
|
+
Product?: SearchIProductSearchItem<ID_TYPE>;
|
|
10478
10485
|
ProductBackendID?: string;
|
|
10479
10486
|
ProductCustomID?: string;
|
|
10480
10487
|
/**
|
|
@@ -12473,6 +12480,9 @@ export interface GetShippingRestrictionByIDResponse<ID_TYPE = string> {
|
|
|
12473
12480
|
OrganizationUnitSetID?: ID_TYPE;
|
|
12474
12481
|
OrganizationUnitSetName?: string;
|
|
12475
12482
|
OrganizationUnitSetType?: DataModelsOrganizationUnitSetTypes;
|
|
12483
|
+
/**
|
|
12484
|
+
* Entity type: ProductPropertyType
|
|
12485
|
+
*/
|
|
12476
12486
|
ProductPropertyTypeID?: string;
|
|
12477
12487
|
ProductPropertyTypeValues?: string[];
|
|
12478
12488
|
/**
|
|
@@ -12710,7 +12720,19 @@ export interface ShippingShippingRestrictionDto<ID_TYPE = string> {
|
|
|
12710
12720
|
*/
|
|
12711
12721
|
ProductPropertyTypeID?: string;
|
|
12712
12722
|
ProductPropertyTypeValues?: string[];
|
|
12723
|
+
/**
|
|
12724
|
+
* Entity type: ProductSearchTemplate
|
|
12725
|
+
*/
|
|
12713
12726
|
ProductSearchTemplateID?: ID_TYPE;
|
|
12727
|
+
/**
|
|
12728
|
+
* Entity type: Script
|
|
12729
|
+
* ID of the script that is associated with this shipping restriction.
|
|
12730
|
+
*/
|
|
12731
|
+
ScriptID?: ID_TYPE;
|
|
12732
|
+
/**
|
|
12733
|
+
* Name of the script that is associated with this shipping restriction.
|
|
12734
|
+
*/
|
|
12735
|
+
ScriptName?: string;
|
|
12714
12736
|
Type: DataModelsShippingRestrictionType;
|
|
12715
12737
|
ZipCodeFrom?: string;
|
|
12716
12738
|
ZipCodeTo?: string;
|
|
@@ -13268,6 +13290,7 @@ export interface AnswerSurveyQuestion<ID_TYPE = string> {
|
|
|
13268
13290
|
* Cancel the survey response
|
|
13269
13291
|
*/
|
|
13270
13292
|
export interface CancelSurveyResponse<ID_TYPE = string> {
|
|
13293
|
+
SurveyContextSourceID?: ID_TYPE;
|
|
13271
13294
|
/**
|
|
13272
13295
|
* Entity type: Survey
|
|
13273
13296
|
*/
|
|
@@ -14943,6 +14966,8 @@ export interface PushUserSubscription<ID_TYPE = string> {
|
|
|
14943
14966
|
*/
|
|
14944
14967
|
UserID: ID_TYPE;
|
|
14945
14968
|
UserSubscriptionIdentifier?: string;
|
|
14969
|
+
UserSubscriptionSourceIdentifier?: string;
|
|
14970
|
+
UserUnsubscribeReason?: string;
|
|
14946
14971
|
}
|
|
14947
14972
|
/**
|
|
14948
14973
|
* Set selected products for personalized promotion for the logged in user or the given user. Overwrites existing selection.
|
|
@@ -15184,12 +15209,15 @@ export interface ListWishlistsResponse<ID_TYPE = string> {
|
|
|
15184
15209
|
Results: UsersWishlistsListWishlistsResponse_Wishlist<ID_TYPE>[];
|
|
15185
15210
|
}
|
|
15186
15211
|
export interface UsersWishlistsListWishlistsResponse_Wishlist<ID_TYPE = string> {
|
|
15212
|
+
CreatedByEmployee: boolean;
|
|
15187
15213
|
CreatedOn: string;
|
|
15188
15214
|
Description?: string;
|
|
15215
|
+
HiddenFromUser: boolean;
|
|
15189
15216
|
/**
|
|
15190
15217
|
* Entity type: Wishlist
|
|
15191
15218
|
*/
|
|
15192
15219
|
ID: ID_TYPE;
|
|
15220
|
+
ItemCount: number;
|
|
15193
15221
|
LastReadTime: string;
|
|
15194
15222
|
Name?: string;
|
|
15195
15223
|
UserFullName?: string;
|