@springtree/eva-services-core-management 3.0.0-beta.20 → 3.0.0-beta.21
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.
|
@@ -1107,6 +1107,12 @@ export interface PushCase {
|
|
|
1107
1107
|
Assignee?: CasesPushCase_PushCaseAssignee;
|
|
1108
1108
|
BackendID: string;
|
|
1109
1109
|
CaseRelatedItems?: CasesPushCase_PushCaseRelatedItems;
|
|
1110
|
+
/**
|
|
1111
|
+
* The topic that this case is a part of. If a BackendID is provided and a CaseTopic exists with that ID, that CaseTopic is used, no matter what Name or ParentBackendID are passed and if they match.
|
|
1112
|
+
* If no CaseTopic exists with the given BackendID, but one does exist with the given Name and ParentBackendID, that CaseTopic is used instead, disregarding what BackendID was passed in the request.
|
|
1113
|
+
* If none of these conditions are met, a new CaseTopic is created.
|
|
1114
|
+
*/
|
|
1115
|
+
CaseTopic?: CasesPushCase_PushCaseTopic;
|
|
1110
1116
|
ClosingTime?: string;
|
|
1111
1117
|
CustomFields?: Record<string, TAnyValue | null>;
|
|
1112
1118
|
Customer?: CasesPushCase_PushCaseCustomer;
|
|
@@ -1124,7 +1130,7 @@ export interface PushCase {
|
|
|
1124
1130
|
Status: string;
|
|
1125
1131
|
Summary?: string;
|
|
1126
1132
|
Title: string;
|
|
1127
|
-
Topic
|
|
1133
|
+
Topic?: string;
|
|
1128
1134
|
/**
|
|
1129
1135
|
* Setting this to true will update the case information if it already exists instead of throwing an error.
|
|
1130
1136
|
*/
|
|
@@ -1245,6 +1251,17 @@ export interface CasesPushCase_PushCaseRelatedItems {
|
|
|
1245
1251
|
*/
|
|
1246
1252
|
OrderID?: string;
|
|
1247
1253
|
}
|
|
1254
|
+
export interface CasesPushCase_PushCaseTopic {
|
|
1255
|
+
BackendID: string;
|
|
1256
|
+
/**
|
|
1257
|
+
* Required if pushing and creating a previously non-existent CaseTopic
|
|
1258
|
+
*/
|
|
1259
|
+
Name?: string;
|
|
1260
|
+
/**
|
|
1261
|
+
* Provide a ParentID, or nothing if the CaseTopic should be root-level.
|
|
1262
|
+
*/
|
|
1263
|
+
ParentBackendID?: string;
|
|
1264
|
+
}
|
|
1248
1265
|
export interface PushCaseResponse {
|
|
1249
1266
|
Error?: ServiceError;
|
|
1250
1267
|
/**
|
|
@@ -4789,7 +4806,10 @@ export interface CreateDevice {
|
|
|
4789
4806
|
* Entity type: Station
|
|
4790
4807
|
*/
|
|
4791
4808
|
StationID?: string;
|
|
4792
|
-
|
|
4809
|
+
/**
|
|
4810
|
+
* Entity type: DeviceType
|
|
4811
|
+
*/
|
|
4812
|
+
TypeID?: number;
|
|
4793
4813
|
}
|
|
4794
4814
|
export interface CreateDeviceResponse {
|
|
4795
4815
|
Error?: ServiceError;
|
|
@@ -5055,7 +5075,10 @@ export interface UpdateDevice {
|
|
|
5055
5075
|
* Entity type: Station
|
|
5056
5076
|
*/
|
|
5057
5077
|
StationID?: string | null;
|
|
5058
|
-
|
|
5078
|
+
/**
|
|
5079
|
+
* Entity type: DeviceType
|
|
5080
|
+
*/
|
|
5081
|
+
TypeID?: number;
|
|
5059
5082
|
}
|
|
5060
5083
|
/**
|
|
5061
5084
|
* Updates an existing OpenCashDrawerReason with a new Name and Description.
|
|
@@ -5192,6 +5215,9 @@ export interface UpdateInquiry {
|
|
|
5192
5215
|
Name?: string;
|
|
5193
5216
|
OneTimeUseOnly?: boolean;
|
|
5194
5217
|
PromptUser?: boolean;
|
|
5218
|
+
/**
|
|
5219
|
+
* Entity type: Script
|
|
5220
|
+
*/
|
|
5195
5221
|
ScriptID?: string | null;
|
|
5196
5222
|
}
|
|
5197
5223
|
/**
|
|
@@ -6745,6 +6771,9 @@ export interface UpdateLoyaltyProgram {
|
|
|
6745
6771
|
*/
|
|
6746
6772
|
ID: string;
|
|
6747
6773
|
LoyaltyPointUsageOptions?: DataModelsLoyaltyPointUsageOptions;
|
|
6774
|
+
/**
|
|
6775
|
+
* Entity type: LoyaltyProgramGroup
|
|
6776
|
+
*/
|
|
6748
6777
|
LoyaltyProgramGroupID?: string | null;
|
|
6749
6778
|
Name?: string;
|
|
6750
6779
|
Options?: DataModelsLoyaltyProgramOptions;
|
|
@@ -7216,13 +7245,22 @@ export interface PreviewMessageTemplateResponse {
|
|
|
7216
7245
|
Url?: string;
|
|
7217
7246
|
}
|
|
7218
7247
|
export interface SendSampleMailMessageTemplate {
|
|
7248
|
+
/**
|
|
7249
|
+
* Entity type: Country
|
|
7250
|
+
*/
|
|
7219
7251
|
CountryID?: string;
|
|
7220
7252
|
Destination?: DataModelsMessageTemplateDestinations;
|
|
7221
7253
|
EmailAddress?: string;
|
|
7222
7254
|
Helpers?: string;
|
|
7255
|
+
/**
|
|
7256
|
+
* Entity type: Language
|
|
7257
|
+
*/
|
|
7223
7258
|
LanguageID?: string;
|
|
7224
7259
|
Layout?: string;
|
|
7225
7260
|
Name?: string;
|
|
7261
|
+
/**
|
|
7262
|
+
* Entity type: OrganizationUnit
|
|
7263
|
+
*/
|
|
7226
7264
|
OrganizationUnitID?: string;
|
|
7227
7265
|
SampleData?: Record<string, TAnyValue>;
|
|
7228
7266
|
Template?: string;
|
|
@@ -7276,7 +7314,7 @@ export interface OrdersCheckoutOptionDto {
|
|
|
7276
7314
|
CategoryName: string;
|
|
7277
7315
|
ConfigData?: Record<string, TAnyValue>;
|
|
7278
7316
|
Description?: string;
|
|
7279
|
-
Handler: 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | '
|
|
7317
|
+
Handler: 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'SignOrder' | 'GlobalBlue';
|
|
7280
7318
|
/**
|
|
7281
7319
|
* Entity type: CheckoutOption
|
|
7282
7320
|
*/
|
|
@@ -7305,7 +7343,7 @@ export interface CreateCheckoutOption {
|
|
|
7305
7343
|
CategoryID?: string;
|
|
7306
7344
|
Data?: OrdersCheckoutOptionsICheckoutOptionConfigData;
|
|
7307
7345
|
Description?: string;
|
|
7308
|
-
Handler: 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | '
|
|
7346
|
+
Handler: 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'SignOrder' | 'GlobalBlue';
|
|
7309
7347
|
IsActive?: boolean;
|
|
7310
7348
|
Name: string;
|
|
7311
7349
|
/**
|
|
@@ -7710,7 +7748,7 @@ export interface UpdateCheckoutOption {
|
|
|
7710
7748
|
CategoryID?: string | null;
|
|
7711
7749
|
Data?: OrdersCheckoutOptionsICheckoutOptionConfigData | null;
|
|
7712
7750
|
Description?: string | null;
|
|
7713
|
-
Handler?: 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | '
|
|
7751
|
+
Handler?: 'Certification' | 'CustomerReferences' | 'CustomFieldLine' | 'CustomField' | 'Delivery' | 'ElectronicInvoice' | 'FiscalID' | 'FiscalRemark' | 'GiftWrapping' | 'LotteryNumber' | 'OrderBackendIdentifier' | 'PartialShipment' | 'PickupPoint' | 'ProductSearchTemplate' | 'QuickBuy' | 'Remark' | 'RequestedDate' | 'SoldBy' | 'TaxExempt' | 'TaxRegistrationNumber' | 'VerifyOrder' | 'SignOrder' | 'GlobalBlue';
|
|
7714
7752
|
/**
|
|
7715
7753
|
* Entity type: CheckoutOption
|
|
7716
7754
|
*/
|
|
@@ -8198,6 +8236,9 @@ export interface DeleteOrganizationUnitCurrency {
|
|
|
8198
8236
|
ID: string;
|
|
8199
8237
|
}
|
|
8200
8238
|
export interface DeleteOrganizationUnitGroup {
|
|
8239
|
+
/**
|
|
8240
|
+
* Entity type: OrganizationUnitGroup
|
|
8241
|
+
*/
|
|
8201
8242
|
ID: string;
|
|
8202
8243
|
}
|
|
8203
8244
|
/**
|
|
@@ -8510,6 +8551,7 @@ export interface CreatePaymentTransactionLedgerTypeResponse {
|
|
|
8510
8551
|
* Create a new PaymentType.
|
|
8511
8552
|
*/
|
|
8512
8553
|
export interface CreatePaymentType {
|
|
8554
|
+
AllowMultiCurrency?: boolean;
|
|
8513
8555
|
AutoFinalizeOnOrderPaid?: boolean;
|
|
8514
8556
|
BackendID?: string;
|
|
8515
8557
|
BackendRelationID?: string;
|
|
@@ -8639,6 +8681,7 @@ export interface GetPaymentTypeByID {
|
|
|
8639
8681
|
ID: string;
|
|
8640
8682
|
}
|
|
8641
8683
|
export interface GetPaymentTypeByIDResponse {
|
|
8684
|
+
AllowMultiCurrency: boolean;
|
|
8642
8685
|
AutoFinalizeOnOrderPaid: boolean;
|
|
8643
8686
|
BackendID?: string;
|
|
8644
8687
|
BackendRelationID?: string;
|
|
@@ -8828,6 +8871,9 @@ export interface ListPaymentTransactionSettlements {
|
|
|
8828
8871
|
MerchantReference?: string;
|
|
8829
8872
|
PaymentReference?: string;
|
|
8830
8873
|
SubType?: string;
|
|
8874
|
+
/**
|
|
8875
|
+
* Entity type: PaymentTransactionSettlementType
|
|
8876
|
+
*/
|
|
8831
8877
|
TypeID?: string;
|
|
8832
8878
|
}
|
|
8833
8879
|
/**
|
|
@@ -9068,6 +9114,7 @@ export interface UpdatePaymentTransactionLedgerType {
|
|
|
9068
9114
|
* Update an existing PaymentType.
|
|
9069
9115
|
*/
|
|
9070
9116
|
export interface UpdatePaymentType {
|
|
9117
|
+
AllowMultiCurrency?: boolean;
|
|
9071
9118
|
AutoFinalizeOnOrderPaid?: boolean;
|
|
9072
9119
|
BackendID?: string | null;
|
|
9073
9120
|
BackendRelationID?: string | null;
|
|
@@ -10974,6 +11021,9 @@ export interface RightsFunctionalityWithScope {
|
|
|
10974
11021
|
Scope?: SecurityFunctionalityScope;
|
|
10975
11022
|
}
|
|
10976
11023
|
export interface GetAvailableRoles {
|
|
11024
|
+
/**
|
|
11025
|
+
* Entity type: User
|
|
11026
|
+
*/
|
|
10977
11027
|
UserID: string;
|
|
10978
11028
|
}
|
|
10979
11029
|
export interface GetAvailableRolesResponse {
|
|
@@ -11488,6 +11538,9 @@ export interface CreateShippingCost {
|
|
|
11488
11538
|
}
|
|
11489
11539
|
export interface CreateShippingCostResponse {
|
|
11490
11540
|
Error?: ServiceError;
|
|
11541
|
+
/**
|
|
11542
|
+
* Entity type: ShippingCost
|
|
11543
|
+
*/
|
|
11491
11544
|
ID: string;
|
|
11492
11545
|
Metadata?: ResponseMessageMetadata;
|
|
11493
11546
|
}
|
|
@@ -11617,6 +11670,9 @@ export interface DeletePackage {
|
|
|
11617
11670
|
* Delete a `ShippingCost`
|
|
11618
11671
|
*/
|
|
11619
11672
|
export interface DeleteShippingCost {
|
|
11673
|
+
/**
|
|
11674
|
+
* Entity type: ShippingCost
|
|
11675
|
+
*/
|
|
11620
11676
|
ID: string;
|
|
11621
11677
|
}
|
|
11622
11678
|
/**
|
|
@@ -11728,15 +11784,30 @@ export interface GetShippingCostByID {
|
|
|
11728
11784
|
export interface GetShippingCostByIDResponse {
|
|
11729
11785
|
Amount: number;
|
|
11730
11786
|
BackendID?: string;
|
|
11787
|
+
/**
|
|
11788
|
+
* Entity type: Country
|
|
11789
|
+
*/
|
|
11731
11790
|
CountryID?: string;
|
|
11791
|
+
/**
|
|
11792
|
+
* Entity type: Currency
|
|
11793
|
+
*/
|
|
11732
11794
|
CurrencyID?: string;
|
|
11733
11795
|
Error?: ServiceError;
|
|
11796
|
+
/**
|
|
11797
|
+
* Entity type: ShippingCost
|
|
11798
|
+
*/
|
|
11734
11799
|
ID: string;
|
|
11735
11800
|
MaximumOrderAmount?: number;
|
|
11736
11801
|
Metadata?: ResponseMessageMetadata;
|
|
11737
11802
|
MinimumOrderAmount?: number;
|
|
11803
|
+
/**
|
|
11804
|
+
* Entity type: OrganizationUnit
|
|
11805
|
+
*/
|
|
11738
11806
|
OrganizationUnitID?: string;
|
|
11739
11807
|
OrganizationUnitName?: string;
|
|
11808
|
+
/**
|
|
11809
|
+
* Entity type: ShippingMethod
|
|
11810
|
+
*/
|
|
11740
11811
|
ShippingMethodID?: string;
|
|
11741
11812
|
ShippingMethodName?: string;
|
|
11742
11813
|
ZipCodes?: string[];
|
|
@@ -11984,13 +12055,28 @@ export interface RemovePackageFromCarrier {
|
|
|
11984
12055
|
export interface ShippingShippingCostDto {
|
|
11985
12056
|
Amount: number;
|
|
11986
12057
|
BackendID?: string;
|
|
12058
|
+
/**
|
|
12059
|
+
* Entity type: Country
|
|
12060
|
+
*/
|
|
11987
12061
|
CountryID?: string;
|
|
12062
|
+
/**
|
|
12063
|
+
* Entity type: Currency
|
|
12064
|
+
*/
|
|
11988
12065
|
CurrencyID?: string;
|
|
12066
|
+
/**
|
|
12067
|
+
* Entity type: ShippingCost
|
|
12068
|
+
*/
|
|
11989
12069
|
ID: string;
|
|
11990
12070
|
MaximumOrderAmount?: number;
|
|
11991
12071
|
MinimumOrderAmount?: number;
|
|
12072
|
+
/**
|
|
12073
|
+
* Entity type: OrganizationUnit
|
|
12074
|
+
*/
|
|
11992
12075
|
OrganizationUnitID?: string;
|
|
11993
12076
|
OrganizationUnitName?: string;
|
|
12077
|
+
/**
|
|
12078
|
+
* Entity type: ShippingMethod
|
|
12079
|
+
*/
|
|
11994
12080
|
ShippingMethodID?: string;
|
|
11995
12081
|
ShippingMethodName?: string;
|
|
11996
12082
|
ZipCodes?: string[];
|
|
@@ -12100,6 +12186,9 @@ export interface UpdateShippingCost {
|
|
|
12100
12186
|
* Entity type: Currency
|
|
12101
12187
|
*/
|
|
12102
12188
|
CurrencyID: string;
|
|
12189
|
+
/**
|
|
12190
|
+
* Entity type: ShippingCost
|
|
12191
|
+
*/
|
|
12103
12192
|
ID: string;
|
|
12104
12193
|
MaximumOrderAmount?: number;
|
|
12105
12194
|
MinimumOrderAmount?: number;
|
|
@@ -12192,6 +12281,9 @@ export interface UpdateShippingRestriction {
|
|
|
12192
12281
|
*/
|
|
12193
12282
|
ProductPropertyTypeID?: string | null;
|
|
12194
12283
|
ProductPropertyTypeValues?: string[] | null;
|
|
12284
|
+
/**
|
|
12285
|
+
* Entity type: ProductSearchTemplate
|
|
12286
|
+
*/
|
|
12195
12287
|
ProductSearchTemplateID?: string | null;
|
|
12196
12288
|
/**
|
|
12197
12289
|
* Entity type: Script
|
|
@@ -12340,6 +12432,9 @@ export interface ListStockAllocationRulesResponse {
|
|
|
12340
12432
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
12341
12433
|
*/
|
|
12342
12434
|
export interface RefillStockAllocation {
|
|
12435
|
+
/**
|
|
12436
|
+
* Entity type: StockAllocationRule
|
|
12437
|
+
*/
|
|
12343
12438
|
ID: string;
|
|
12344
12439
|
ValueOverride?: number;
|
|
12345
12440
|
}
|