@springtree/eva-services-core-management 9.7.0 → 9.8.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.
@@ -7059,6 +7059,7 @@ export interface CreateLoyaltyProgram<ID_TYPE = string> {
7059
7059
  * Attaches the loyalty program to a consumer company.
7060
7060
  */
7061
7061
  CompanyID?: ID_TYPE;
7062
+ CustomFields?: DataModelsCustomFieldKeyValue<ID_TYPE>[];
7062
7063
  Data?: TAnyValue;
7063
7064
  Description?: string;
7064
7065
  EndDate?: string;
@@ -8000,6 +8001,7 @@ export interface GetLoyaltyProgramResponse<ID_TYPE = string> {
8000
8001
  BudgetRemaining?: number;
8001
8002
  BudgetUsagePercentage?: number;
8002
8003
  Company?: LoyaltyGetLoyaltyProgramResponse_CompanyDto<ID_TYPE>;
8004
+ CustomFields?: Record<string, DataModelsCustomFieldValue<ID_TYPE>>;
8003
8005
  Data?: TAnyValue;
8004
8006
  DeactivateWhenBudgetIsReached: boolean;
8005
8007
  DeactivationReason: DataModelsLoyaltyProgramDeactivationReasons;
@@ -9825,6 +9827,7 @@ export interface UpdateLoyaltyProgram<ID_TYPE = string> {
9825
9827
  * Attaches the loyalty program to a consumer company.
9826
9828
  */
9827
9829
  CompanyID?: ID_TYPE | null;
9830
+ CustomFields?: DataModelsCustomFieldKeyValue<ID_TYPE>[] | null;
9828
9831
  Data?: TAnyValue | null;
9829
9832
  Description?: string | null;
9830
9833
  EndDate?: string | null;
@@ -10617,7 +10620,7 @@ export interface CreateCheckoutOption<ID_TYPE = string> {
10617
10620
  CategoryID?: ID_TYPE;
10618
10621
  Data?: OrdersCheckoutOptionsNoCheckoutOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCertificationOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldLineOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsProductSearchTemplateOptionConfig<ID_TYPE> | OrdersCheckoutOptionsOptionsQuickBuyOptionConfigData<ID_TYPE> | Extenders_CreateCheckoutOption_Data<ID_TYPE>[keyof Extenders_CreateCheckoutOption_Data<ID_TYPE>];
10619
10622
  Description?: string;
10620
- Handler: 'SignOrder' | 'TaxFree' | 'AML' | 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'Peppol' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'SingleUseCompany' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'GlobalBlue';
10623
+ Handler: 'SignOrder' | 'TaxFree' | 'AML' | 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'Peppol' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'ShipmentBackendID' | 'SingleUseCompany' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'GlobalBlue';
10621
10624
  IsActive?: boolean;
10622
10625
  Name: string;
10623
10626
  /**
@@ -11134,7 +11137,7 @@ export interface UpdateCheckoutOption<ID_TYPE = string> {
11134
11137
  CategoryID?: ID_TYPE | null;
11135
11138
  Data?: OrdersCheckoutOptionsNoCheckoutOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCertificationOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldLineOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsProductSearchTemplateOptionConfig<ID_TYPE> | OrdersCheckoutOptionsOptionsQuickBuyOptionConfigData<ID_TYPE> | null | Extenders_UpdateCheckoutOption_Data<ID_TYPE>[keyof Extenders_UpdateCheckoutOption_Data<ID_TYPE>];
11136
11139
  Description?: string | null;
11137
- Handler?: 'SignOrder' | 'TaxFree' | 'AML' | 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'Peppol' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'SingleUseCompany' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'GlobalBlue';
11140
+ Handler?: 'SignOrder' | 'TaxFree' | 'AML' | 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'Peppol' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'ShipmentBackendID' | 'SingleUseCompany' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'GlobalBlue';
11138
11141
  /**
11139
11142
  * Entity type: CheckoutOption
11140
11143
  */