@springtree/eva-services-core-management 3.0.0-beta.21 → 3.0.0-beta.22

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.
@@ -691,7 +691,7 @@ export interface GetCaseByIDResponse {
691
691
  * Entity type: CustomField
692
692
  */
693
693
  CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions>;
694
- Customer?: CasesGetCaseByIDResponse_CustomerInfo;
694
+ Customer?: CasesGetCaseByIDResponse_UserInfo;
695
695
  /**
696
696
  * Entity type: User
697
697
  */
@@ -752,6 +752,7 @@ export interface CasesGetCaseByIDResponse_CaseRepair {
752
752
  * Entity type: Repair
753
753
  */
754
754
  ID: string;
755
+ RepairAssignee?: CasesGetCaseByIDResponse_UserInfo;
755
756
  RepairTask?: CasesGetCaseByIDResponse_CaseRepairTask;
756
757
  SerialNumber?: string;
757
758
  SerialNumberRegistrationStatus?: DataModelsSerialNumberRegistrationStatus;
@@ -774,14 +775,6 @@ export interface CasesGetCaseByIDResponse_CaseTopicData {
774
775
  TopicID?: string;
775
776
  TopicName?: string;
776
777
  }
777
- export interface CasesGetCaseByIDResponse_CustomerInfo {
778
- BackendID?: string;
779
- EmailAddress?: string;
780
- FirstName?: string;
781
- FullName?: string;
782
- LastName?: string;
783
- PhoneNumber?: string;
784
- }
785
778
  export interface CasesGetCaseByIDResponse_RelatedItem {
786
779
  /**
787
780
  * Entity type: CaseRelatedItem
@@ -811,6 +804,18 @@ export interface CasesGetCaseByIDResponse_User {
811
804
  ID?: string;
812
805
  LastName?: string;
813
806
  }
807
+ export interface CasesGetCaseByIDResponse_UserInfo {
808
+ BackendID?: string;
809
+ EmailAddress?: string;
810
+ FirstName?: string;
811
+ FullName?: string;
812
+ /**
813
+ * Entity type: User
814
+ */
815
+ ID: string;
816
+ LastName?: string;
817
+ PhoneNumber?: string;
818
+ }
814
819
  /**
815
820
  * Get case interaction
816
821
  */
@@ -8087,6 +8092,19 @@ export interface PreviewOrganizationUnitSetResponse {
8087
8092
  Set?: OrganizationUnitSetsOrganizationUnitSetDetails;
8088
8093
  }
8089
8094
  /**
8095
+ * Takes in all subsets of an organization unit set and sets their sequences. All subsets are required.
8096
+ */
8097
+ export interface SetOrganizationUnitSubsetSequences {
8098
+ /**
8099
+ * Entity type: OrganizationUnitSet
8100
+ */
8101
+ OrganizationUnitSetID: string;
8102
+ /**
8103
+ * Entity type: OrganizationUnitSet
8104
+ */
8105
+ SubsetIDs: string[];
8106
+ }
8107
+ /**
8090
8108
  * Updates an OrganizationUnitSet.
8091
8109
  *
8092
8110
  * Optionally a definition can be provided, which defines a set of filters.
@@ -8551,7 +8569,6 @@ export interface CreatePaymentTransactionLedgerTypeResponse {
8551
8569
  * Create a new PaymentType.
8552
8570
  */
8553
8571
  export interface CreatePaymentType {
8554
- AllowMultiCurrency?: boolean;
8555
8572
  AutoFinalizeOnOrderPaid?: boolean;
8556
8573
  BackendID?: string;
8557
8574
  BackendRelationID?: string;
@@ -8681,7 +8698,6 @@ export interface GetPaymentTypeByID {
8681
8698
  ID: string;
8682
8699
  }
8683
8700
  export interface GetPaymentTypeByIDResponse {
8684
- AllowMultiCurrency: boolean;
8685
8701
  AutoFinalizeOnOrderPaid: boolean;
8686
8702
  BackendID?: string;
8687
8703
  BackendRelationID?: string;
@@ -9114,7 +9130,6 @@ export interface UpdatePaymentTransactionLedgerType {
9114
9130
  * Update an existing PaymentType.
9115
9131
  */
9116
9132
  export interface UpdatePaymentType {
9117
- AllowMultiCurrency?: boolean;
9118
9133
  AutoFinalizeOnOrderPaid?: boolean;
9119
9134
  BackendID?: string | null;
9120
9135
  BackendRelationID?: string | null;
@@ -11553,6 +11568,10 @@ export interface CreateShippingMethod {
11553
11568
  */
11554
11569
  CarrierID: string;
11555
11570
  Code?: string;
11571
+ /**
11572
+ * Optional additional custom fields
11573
+ */
11574
+ CustomFields?: DataModelsCustomFieldKeyValue[];
11556
11575
  DeliveryType?: DataModelsShippingMethodDeliveryTypes;
11557
11576
  ExcludeProductsFromShippingMethod?: boolean;
11558
11577
  Handler?: string;
@@ -11829,6 +11848,10 @@ export interface GetShippingMethodByIDResponse {
11829
11848
  CarrierID: string;
11830
11849
  CarrierName?: string;
11831
11850
  Code?: string;
11851
+ /**
11852
+ * Entity type: CustomField
11853
+ */
11854
+ CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions>;
11832
11855
  DeliveryType: DataModelsShippingMethodDeliveryTypes;
11833
11856
  Error?: ServiceError;
11834
11857
  ExcludeProductsFromShippingMethod: boolean;
@@ -11922,6 +11945,10 @@ export interface ShippingListManagementShippingMethodsResponse_Data {
11922
11945
  CarrierID: string;
11923
11946
  CarrierName?: string;
11924
11947
  Code?: string;
11948
+ /**
11949
+ * Entity type: CustomField
11950
+ */
11951
+ CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions>;
11925
11952
  DeliveryType: DataModelsShippingMethodDeliveryTypes;
11926
11953
  Handler?: string;
11927
11954
  /**
@@ -12211,6 +12238,7 @@ export interface UpdateShippingMethod {
12211
12238
  */
12212
12239
  CarrierID: string;
12213
12240
  Code?: string;
12241
+ CustomFields?: DataModelsCustomFieldKeyValue[] | null;
12214
12242
  DeliveryType?: DataModelsShippingMethodDeliveryTypes;
12215
12243
  ExcludeProductsFromShippingMethod?: boolean;
12216
12244
  Handler?: string;