@springtree/eva-services-core-management 2.4.0-beta.1 → 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;
@@ -5633,7 +5659,7 @@ export interface LoyaltyListLoyaltyPaymentMethodTypesResponse_LoyaltyPaymentType
5633
5659
  * List the LoyaltyProgramCondition
5634
5660
  */
5635
5661
  export interface ListLoyaltyProgramConditions {
5636
- InitialPageConfig?: PageTokenConfig;
5662
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5637
5663
  /**
5638
5664
  * Entity type: LoyaltyProgram
5639
5665
  */
@@ -5694,7 +5720,7 @@ export interface LoyaltyListLoyaltyProgramGroupsResponse_Item {
5694
5720
  * List the LoyaltyProgramPaymentType
5695
5721
  */
5696
5722
  export interface ListLoyaltyProgramPaymentTypes {
5697
- InitialPageConfig?: PageTokenConfig;
5723
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5698
5724
  /**
5699
5725
  * Entity type: LoyaltyProgram
5700
5726
  */
@@ -5729,7 +5755,7 @@ export interface LoyaltyListLoyaltyProgramPaymentTypesResponse_Item {
5729
5755
  * List the loyalty program pricelists
5730
5756
  */
5731
5757
  export interface ListLoyaltyProgramPriceLists {
5732
- InitialPageConfig?: PageTokenConfig;
5758
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5733
5759
  /**
5734
5760
  * Entity type: LoyaltyProgram
5735
5761
  */
@@ -5758,7 +5784,7 @@ export interface LoyaltyListLoyaltyProgramPriceListsResponse_Item {
5758
5784
  * List the loyalty program product limitations
5759
5785
  */
5760
5786
  export interface ListLoyaltyProgramProductLimitations {
5761
- InitialPageConfig?: PageTokenConfig;
5787
+ InitialPageConfig?: PageTokenConfig<Record<string, string | null> | null>;
5762
5788
  /**
5763
5789
  * Entity type: LoyaltyProgram
5764
5790
  */