@springtree/eva-services-core-management 3.0.0-beta.21 → 3.0.0-beta.23
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 +40 -9
- 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 +7 -1
- package/lib/eva-services-core-management.services.d.ts.map +1 -1
- package/lib/eva-services-core-management.services.js +6 -0
- package/lib/eva-services-core-management.services.js.map +1 -1
- package/package.json +3 -3
|
@@ -691,7 +691,7 @@ export interface GetCaseByIDResponse {
|
|
|
691
691
|
* Entity type: CustomField
|
|
692
692
|
*/
|
|
693
693
|
CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions>;
|
|
694
|
-
Customer?:
|
|
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.
|
|
@@ -11553,6 +11571,10 @@ export interface CreateShippingMethod {
|
|
|
11553
11571
|
*/
|
|
11554
11572
|
CarrierID: string;
|
|
11555
11573
|
Code?: string;
|
|
11574
|
+
/**
|
|
11575
|
+
* Optional additional custom fields
|
|
11576
|
+
*/
|
|
11577
|
+
CustomFields?: DataModelsCustomFieldKeyValue[];
|
|
11556
11578
|
DeliveryType?: DataModelsShippingMethodDeliveryTypes;
|
|
11557
11579
|
ExcludeProductsFromShippingMethod?: boolean;
|
|
11558
11580
|
Handler?: string;
|
|
@@ -11829,6 +11851,10 @@ export interface GetShippingMethodByIDResponse {
|
|
|
11829
11851
|
CarrierID: string;
|
|
11830
11852
|
CarrierName?: string;
|
|
11831
11853
|
Code?: string;
|
|
11854
|
+
/**
|
|
11855
|
+
* Entity type: CustomField
|
|
11856
|
+
*/
|
|
11857
|
+
CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions>;
|
|
11832
11858
|
DeliveryType: DataModelsShippingMethodDeliveryTypes;
|
|
11833
11859
|
Error?: ServiceError;
|
|
11834
11860
|
ExcludeProductsFromShippingMethod: boolean;
|
|
@@ -11922,6 +11948,10 @@ export interface ShippingListManagementShippingMethodsResponse_Data {
|
|
|
11922
11948
|
CarrierID: string;
|
|
11923
11949
|
CarrierName?: string;
|
|
11924
11950
|
Code?: string;
|
|
11951
|
+
/**
|
|
11952
|
+
* Entity type: CustomField
|
|
11953
|
+
*/
|
|
11954
|
+
CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions>;
|
|
11925
11955
|
DeliveryType: DataModelsShippingMethodDeliveryTypes;
|
|
11926
11956
|
Handler?: string;
|
|
11927
11957
|
/**
|
|
@@ -12211,6 +12241,7 @@ export interface UpdateShippingMethod {
|
|
|
12211
12241
|
*/
|
|
12212
12242
|
CarrierID: string;
|
|
12213
12243
|
Code?: string;
|
|
12244
|
+
CustomFields?: DataModelsCustomFieldKeyValue[] | null;
|
|
12214
12245
|
DeliveryType?: DataModelsShippingMethodDeliveryTypes;
|
|
12215
12246
|
ExcludeProductsFromShippingMethod?: boolean;
|
|
12216
12247
|
Handler?: string;
|