@springtree/eva-services-core-management 3.0.0-beta.79 → 3.0.0-beta.80

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.
@@ -2085,6 +2085,21 @@ export interface DeleteCompanyRequirement<ID_TYPE = string> {
2085
2085
  ID: ID_TYPE;
2086
2086
  }
2087
2087
  /**
2088
+ * Get all unsued company requirement properties for the given country and company type. For existing requirements, use `GetCompanyRequirements`.
2089
+ */
2090
+ export interface GetAvailableCompanyRequirementProperties<ID_TYPE = string> {
2091
+ ApplyToCompanyType?: DataModelsApplyToCompanyType;
2092
+ /**
2093
+ * Entity type: Country
2094
+ */
2095
+ CountryID: string;
2096
+ }
2097
+ export interface GetAvailableCompanyRequirementPropertiesResponse<ID_TYPE = string> {
2098
+ Error?: ServiceError<ID_TYPE>;
2099
+ Metadata?: ResponseMessageMetadata<ID_TYPE>;
2100
+ Properties?: DataModelsCompanyRequirementPropertyType[];
2101
+ }
2102
+ /**
2088
2103
  * Get the details of a specific Company.
2089
2104
  */
2090
2105
  export interface GetCompany<ID_TYPE = string> {
@@ -8764,7 +8779,7 @@ export interface CreateCheckoutOption<ID_TYPE = string> {
8764
8779
  CategoryID?: ID_TYPE;
8765
8780
  Data?: OrdersCheckoutOptionsNoCheckoutOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCertificationOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldLineOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsProductSearchTemplateOptionConfig<ID_TYPE> | Extenders_CreateCheckoutOption_Data<ID_TYPE>[keyof Extenders_CreateCheckoutOption_Data<ID_TYPE>];
8766
8781
  Description?: string;
8767
- Handler: 'SignOrder' | 'AML' | 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'SingleUseCompany' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'GlobalBlue';
8782
+ 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';
8768
8783
  IsActive?: boolean;
8769
8784
  Name: string;
8770
8785
  /**
@@ -8839,6 +8854,9 @@ export interface CreateRefundCorrectionReasonResponse<ID_TYPE = string> {
8839
8854
  ID: ID_TYPE;
8840
8855
  Metadata?: ResponseMessageMetadata<ID_TYPE>;
8841
8856
  }
8857
+ /**
8858
+ * Create a resend reason
8859
+ */
8842
8860
  export interface CreateResendReason<ID_TYPE = string> {
8843
8861
  Description?: string;
8844
8862
  Name: string;
@@ -8912,6 +8930,9 @@ export interface DeleteRefundCorrectionReason<ID_TYPE = string> {
8912
8930
  */
8913
8931
  ID: ID_TYPE;
8914
8932
  }
8933
+ /**
8934
+ * Delete a resend reason
8935
+ */
8915
8936
  export interface DeleteResendReason<ID_TYPE = string> {
8916
8937
  /**
8917
8938
  * Entity type: ResendReason
@@ -8959,6 +8980,9 @@ export interface GetRefundCorrectionReasonResponse<ID_TYPE = string> {
8959
8980
  OrganizationUnitSetName: string;
8960
8981
  Priority: number;
8961
8982
  }
8983
+ /**
8984
+ * Get a resend reason by ID
8985
+ */
8962
8986
  export interface GetResendReason<ID_TYPE = string> {
8963
8987
  /**
8964
8988
  * Entity type: ResendReason
@@ -8971,6 +8995,20 @@ export interface GetResendReasonResponse<ID_TYPE = string> {
8971
8995
  Result?: OrdersResendReasonDto<ID_TYPE>;
8972
8996
  }
8973
8997
  /**
8998
+ * Get all resend reasons for an organization unit
8999
+ */
9000
+ export interface GetResendReasons<ID_TYPE = string> {
9001
+ /**
9002
+ * Entity type: OrganizationUnit
9003
+ */
9004
+ OrganizationUnitID: ID_TYPE;
9005
+ }
9006
+ export interface GetResendReasonsResponse<ID_TYPE = string> {
9007
+ Error?: ServiceError<ID_TYPE>;
9008
+ Metadata?: ResponseMessageMetadata<ID_TYPE>;
9009
+ Results?: OrdersResendReasonDto<ID_TYPE>[];
9010
+ }
9011
+ /**
8974
9012
  * List the CheckoutOptionCategories
8975
9013
  */
8976
9014
  export interface ListCheckoutOptionCategories<ID_TYPE = string> {
@@ -9031,6 +9069,9 @@ export interface OrdersListRefundCorrectionReasonsResponse_Model<ID_TYPE = strin
9031
9069
  OrganizationUnitSetName: string;
9032
9070
  Priority: number;
9033
9071
  }
9072
+ /**
9073
+ * List a paged result set of resend reasons
9074
+ */
9034
9075
  export interface ListResendReasons<ID_TYPE = string> {
9035
9076
  InitialPageConfig?: PageTokenConfig<ResendReasonsListResendReasonsFilter<ID_TYPE>, ID_TYPE>;
9036
9077
  PageToken?: string;
@@ -9219,7 +9260,7 @@ export interface UpdateCheckoutOption<ID_TYPE = string> {
9219
9260
  CategoryID?: ID_TYPE | null;
9220
9261
  Data?: OrdersCheckoutOptionsNoCheckoutOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCertificationOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldLineOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsCustomFieldOptionConfigData<ID_TYPE> | OrdersCheckoutOptionsOptionsProductSearchTemplateOptionConfig<ID_TYPE> | null | Extenders_UpdateCheckoutOption_Data<ID_TYPE>[keyof Extenders_UpdateCheckoutOption_Data<ID_TYPE>];
9221
9262
  Description?: string | null;
9222
- Handler?: 'SignOrder' | 'AML' | 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'SingleUseCompany' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'GlobalBlue';
9263
+ 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';
9223
9264
  /**
9224
9265
  * Entity type: CheckoutOption
9225
9266
  */
@@ -9294,6 +9335,9 @@ export interface UpdateRefundCorrectionReason<ID_TYPE = string> {
9294
9335
  OrganizationUnitSetID?: ID_TYPE;
9295
9336
  Priority?: number;
9296
9337
  }
9338
+ /**
9339
+ * Update a resend reason
9340
+ */
9297
9341
  export interface UpdateResendReason<ID_TYPE = string> {
9298
9342
  Description?: string | null;
9299
9343
  /**
@@ -13426,6 +13470,7 @@ export interface GetShippingMethodByIDResponse<ID_TYPE = string> {
13426
13470
  */
13427
13471
  ProductSearchTemplateID?: ID_TYPE;
13428
13472
  ShippingHandledByCarrier: boolean;
13473
+ SupportsPickupAddress: boolean;
13429
13474
  }
13430
13475
  /**
13431
13476
  * Gets a ShippingRestriction by its ID and returns the set's basic information.
@@ -13528,6 +13573,7 @@ export interface ShippingListManagementShippingMethodsResponse_Data<ID_TYPE = st
13528
13573
  ProductSearchTemplateID?: ID_TYPE;
13529
13574
  ProductSearchTemplateName?: string;
13530
13575
  ShippingHandledByCarrier: boolean;
13576
+ SupportsPickupAddress: boolean;
13531
13577
  }
13532
13578
  /**
13533
13579
  * List the OrganizationUnitShippingMethods