@springtree/eva-services-core-management 2.4.0-beta.0 → 3.0.0-beta.0

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.
@@ -21,6 +21,10 @@ export declare const enum Errors {
21
21
  */
22
22
  CreateOrderLedgerType_OrderLedgerTypeAlreadyExists = "CreateOrderLedgerType:OrderLedgerTypeAlreadyExists",
23
23
  /**
24
+ * Culture for country {language:string} and language {country:string} already exists.
25
+ */
26
+ Culture_CultureAlreadyExists = "Culture:CultureAlreadyExists",
27
+ /**
24
28
  * This currency already exists for this OrganizationUnit
25
29
  */
26
30
  Cultures_CurrencyAlreadyExists = "Cultures:CurrencyAlreadyExists",
@@ -494,6 +498,11 @@ export interface AttachBlobToCase {
494
498
  * Create a new case.
495
499
  */
496
500
  export interface CreateCase {
501
+ /**
502
+ * Entity type: OrganizationUnit
503
+ * OU the case is assigned to. When set this will influence visibility.
504
+ */
505
+ AssignedOrganizationUnitID?: string;
497
506
  /**
498
507
  * Entity type: User
499
508
  */
@@ -511,6 +520,7 @@ export interface CreateCase {
511
520
  ExternalOrderIdentifier?: string;
512
521
  /**
513
522
  * Entity type: OrganizationUnit
523
+ * Can only be set once. Can be updated when not set on create.
514
524
  */
515
525
  OriginatingOrganizationUnitID?: string;
516
526
  Priority: DataModelsCasePriority;
@@ -640,6 +650,11 @@ export interface GetCaseByID {
640
650
  }
641
651
  export interface GetCaseByIDResponse {
642
652
  AssignedOn?: string;
653
+ /**
654
+ * Entity type: OrganizationUnit
655
+ */
656
+ AssignedOrganizationUnitID?: string;
657
+ AssignedOrganizationUnitName?: string;
643
658
  AssigneeEmail?: string;
644
659
  /**
645
660
  * Entity type: User
@@ -987,6 +1002,11 @@ export interface ListCasesResponse {
987
1002
  Results?: CasesListCasesResponse_Case[];
988
1003
  }
989
1004
  export interface CasesListCasesResponse_Case {
1005
+ /**
1006
+ * Entity type: OrganizationUnit
1007
+ */
1008
+ AssignedOrganizationUnitID?: string;
1009
+ AssignedOrganizationUnitName?: string;
990
1010
  /**
991
1011
  * Entity type: User
992
1012
  */
@@ -1227,6 +1247,11 @@ export interface CasesSetCaseRelatedData_RelatedItem {
1227
1247
  * Update an existing case.
1228
1248
  */
1229
1249
  export interface UpdateCase {
1250
+ /**
1251
+ * Entity type: OrganizationUnit
1252
+ * OU the case is assigned to. When set this will influence visibility.
1253
+ */
1254
+ AssignedOrganizationUnitID: string | null | undefined;
1230
1255
  BackendID: string | null | undefined;
1231
1256
  /**
1232
1257
  * Optional additional custom fields
@@ -1244,6 +1269,7 @@ export interface UpdateCase {
1244
1269
  ID: string;
1245
1270
  /**
1246
1271
  * Entity type: OrganizationUnit
1272
+ * Can only be set once. Can be updated when not set on create.
1247
1273
  */
1248
1274
  OriginatingOrganizationUnitID: string | null | undefined;
1249
1275
  Title?: string;
@@ -5550,6 +5576,10 @@ export interface GetLoyaltyProgramResponse {
5550
5576
  ResubscribeHandling?: DataModelsResubscribeHandlingType;
5551
5577
  StartDate?: string;
5552
5578
  Status: DataModelsLoyaltyProgramStatus;
5579
+ /**
5580
+ * Entity type: LoyaltyProgram
5581
+ */
5582
+ SubscriptionID?: string;
5553
5583
  UsageType?: DataModelsLoyaltyProgramUsageTypes;
5554
5584
  UsedBudget: number;
5555
5585
  UserBudget?: number;
@@ -5629,7 +5659,7 @@ export interface LoyaltyListLoyaltyPaymentMethodTypesResponse_LoyaltyPaymentType
5629
5659
  * List the LoyaltyProgramCondition
5630
5660
  */
5631
5661
  export interface ListLoyaltyProgramConditions {
5632
- InitialPageConfig?: PageTokenConfig;
5662
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5633
5663
  /**
5634
5664
  * Entity type: LoyaltyProgram
5635
5665
  */
@@ -5690,7 +5720,7 @@ export interface LoyaltyListLoyaltyProgramGroupsResponse_Item {
5690
5720
  * List the LoyaltyProgramPaymentType
5691
5721
  */
5692
5722
  export interface ListLoyaltyProgramPaymentTypes {
5693
- InitialPageConfig?: PageTokenConfig;
5723
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5694
5724
  /**
5695
5725
  * Entity type: LoyaltyProgram
5696
5726
  */
@@ -5725,7 +5755,7 @@ export interface LoyaltyListLoyaltyProgramPaymentTypesResponse_Item {
5725
5755
  * List the loyalty program pricelists
5726
5756
  */
5727
5757
  export interface ListLoyaltyProgramPriceLists {
5728
- InitialPageConfig?: PageTokenConfig;
5758
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5729
5759
  /**
5730
5760
  * Entity type: LoyaltyProgram
5731
5761
  */
@@ -5754,7 +5784,7 @@ export interface LoyaltyListLoyaltyProgramPriceListsResponse_Item {
5754
5784
  * List the loyalty program product limitations
5755
5785
  */
5756
5786
  export interface ListLoyaltyProgramProductLimitations {
5757
- InitialPageConfig?: PageTokenConfig;
5787
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5758
5788
  /**
5759
5789
  * Entity type: LoyaltyProgram
5760
5790
  */