@springtree/eva-services-core-management 3.0.0-beta.15 → 3.0.0-beta.16

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.
@@ -29,6 +29,10 @@ export declare const enum Errors {
29
29
  */
30
30
  Cultures_CurrencyAlreadyExists = "Cultures:CurrencyAlreadyExists",
31
31
  /**
32
+ * Additional currency must differ from main currency.
33
+ */
34
+ Cultures_AdditionalCurrencyMustDifferFromMainCurrency = "Cultures:AdditionalCurrencyMustDifferFromMainCurrency",
35
+ /**
32
36
  * The selected cashhandler is not available for the given currency
33
37
  */
34
38
  Cultures_CashHandlerCurrencyMismatch = "Cultures:CashHandlerCurrencyMismatch",
@@ -5331,6 +5335,7 @@ export interface CreateLoyaltyProgramGroupResponse {
5331
5335
  * Create a new LoyaltyProgramPaymentType
5332
5336
  */
5333
5337
  export interface CreateLoyaltyProgramPaymentType {
5338
+ AllowPartialPayment?: boolean;
5334
5339
  BackendID?: string;
5335
5340
  Budget?: number;
5336
5341
  ExcludeFromProgramBudget?: boolean;
@@ -6271,6 +6276,7 @@ export interface LoyaltyPushLoyaltyProgram_PushLoyaltyProgramOrganizationUnitSet
6271
6276
  OrganizationUnitSetID?: string;
6272
6277
  }
6273
6278
  export interface LoyaltyPushLoyaltyProgram_PushLoyaltyProgramPaymentType {
6279
+ AllowPartialPayment?: boolean;
6274
6280
  Budget?: number;
6275
6281
  ExcludeFromProgramBudget?: boolean;
6276
6282
  /**
@@ -6757,6 +6763,7 @@ export interface UpdateLoyaltyProgramGroupBudget {
6757
6763
  * Update an existing LoyaltyProgramPaymentType
6758
6764
  */
6759
6765
  export interface UpdateLoyaltyProgramPaymentType {
6766
+ AllowPartialPayment?: boolean;
6760
6767
  BackendID?: string;
6761
6768
  Budget?: number;
6762
6769
  ExcludeFromProgramBudget?: boolean;
@@ -8540,6 +8547,7 @@ export interface PaymentMethodsGetPaymentTypeCustomFieldsResponse_CustomFieldDto
8540
8547
  BackendID?: string;
8541
8548
  DataType: DataModelsCustomFieldDataTypes;
8542
8549
  DisplayName?: string;
8550
+ EnumValues?: Record<string, string | null>;
8543
8551
  /**
8544
8552
  * Entity type: CustomField
8545
8553
  */
@@ -10749,8 +10757,8 @@ export interface DetachFunctionalitiesFromRole {
10749
10757
  }
10750
10758
  export interface RightsFunctionalityWithScope {
10751
10759
  Functionality: string;
10752
- RequiresElevation: boolean;
10753
- Scope: SecurityFunctionalityScope;
10760
+ RequiresElevation?: boolean;
10761
+ Scope?: SecurityFunctionalityScope;
10754
10762
  }
10755
10763
  export interface GetAvailableRoles {
10756
10764
  UserID: string;
@@ -13186,7 +13194,7 @@ export interface UpdateUserRequirementSet {
13186
13194
  * Entity type: UserRequirementSet
13187
13195
  */
13188
13196
  ID: string;
13189
- Name?: string | null;
13197
+ Name?: string;
13190
13198
  /**
13191
13199
  * Entity type: OrganizationUnitSet
13192
13200
  */
@@ -13876,7 +13884,7 @@ export interface ListRestockedProducts {
13876
13884
  export interface ListRestockedProductsResponse {
13877
13885
  Error?: ServiceError;
13878
13886
  Metadata?: ResponseMessageMetadata;
13879
- Results?: Record<string, number[] | null>;
13887
+ Results?: Record<string, string[] | null>;
13880
13888
  }
13881
13889
  /**
13882
13890
  * List the Stock per product/stocklabel for a subset of OrganizationUnits.
@@ -13990,6 +13998,10 @@ export interface AddUserBoughtProductDetail {
13990
13998
  * Entity type: OrderLine
13991
13999
  */
13992
14000
  OrderLineID?: string;
14001
+ /**
14002
+ * Entity type: OrganizationUnit
14003
+ */
14004
+ OrganizationUnitID?: string;
13993
14005
  PurchaseDate?: string;
13994
14006
  PurchasedQuantity?: number;
13995
14007
  /**
@@ -14071,6 +14083,16 @@ export interface GetUserBoughtProduct {
14071
14083
  */
14072
14084
  IncludedProductProperties?: string[];
14073
14085
  }
14086
+ /**
14087
+ * Get a user bought product by a product's serial number.
14088
+ */
14089
+ export interface GetUserBoughtProductBySerialNumber {
14090
+ /**
14091
+ * Entity type: ProductPropertyType
14092
+ */
14093
+ IncludedProductProperties?: string[];
14094
+ SerialNumber: string;
14095
+ }
14074
14096
  export interface GetUserBoughtProductResponse {
14075
14097
  AdditionalWarrantyInfo?: string;
14076
14098
  Details?: EVACoreServicesUsersGetUserBoughtProductResponse_Detail[];
@@ -14110,6 +14132,10 @@ export interface EVACoreServicesUsersGetUserBoughtProductResponse_Detail {
14110
14132
  * Entity type: OrderLine
14111
14133
  */
14112
14134
  OrderLineID?: string;
14135
+ /**
14136
+ * Entity type: OrganizationUnit
14137
+ */
14138
+ OrganizationUnitID?: string;
14113
14139
  PurchaseDate?: string;
14114
14140
  PurchasedQuantity?: number;
14115
14141
  }
@@ -14241,6 +14267,11 @@ export interface EVACoreServicesUsersPushUserBoughtProduct_PushedBoughtProductDe
14241
14267
  * Entity type: OrderLine
14242
14268
  */
14243
14269
  OrderLineID?: string;
14270
+ /**
14271
+ * Entity type: OrganizationUnit
14272
+ * Organization unit that the user bought product is registered in. Ignored when an order/line organization unit is present. When omitted, registration is under the current organization unit.
14273
+ */
14274
+ OrganizationUnitID?: string;
14244
14275
  PurchaseDate?: string;
14245
14276
  PurchasedQuantity?: number;
14246
14277
  }
@@ -14266,6 +14297,11 @@ export interface EVACoreServicesUsersPushedBoughtProduct_PushedBoughtProductDeta
14266
14297
  * Entity type: OrderLine
14267
14298
  */
14268
14299
  OrderLineID?: string;
14300
+ /**
14301
+ * Entity type: OrganizationUnit
14302
+ * Organization unit that the user bought product is registered in. Ignored when an order/line organization unit is present. When omitted, registration is under the current organization unit.
14303
+ */
14304
+ OrganizationUnitID?: string;
14269
14305
  PurchaseDate?: string;
14270
14306
  PurchasedQuantity?: number;
14271
14307
  }
@@ -14284,6 +14320,11 @@ export interface RegisterUserBoughtProduct {
14284
14320
  */
14285
14321
  OrderLineID?: string;
14286
14322
  /**
14323
+ * Entity type: OrganizationUnit
14324
+ * Organization unit that the user bought product is registered in. Ignored when an order/line organization unit is present. When omitted, registration is under the current organization unit.
14325
+ */
14326
+ OrganizationUnitID?: string;
14327
+ /**
14287
14328
  * Entity type: Product
14288
14329
  */
14289
14330
  ProductID: string;
@@ -14312,6 +14353,11 @@ export interface UpdateUserBoughtProductDetail {
14312
14353
  * Entity type: OrderLine
14313
14354
  */
14314
14355
  OrderLineID?: string;
14356
+ /**
14357
+ * Entity type: OrganizationUnit
14358
+ * Organization unit that the user bought product is registered in. Ignored when an order/line organization unit is present. When omitted, registration is under the current organization unit.
14359
+ */
14360
+ OrganizationUnitID?: string;
14315
14361
  PurchaseDate?: string;
14316
14362
  PurchasedQuantity?: number;
14317
14363
  }