@springtree/eva-services-core-management 3.0.0-beta.56 → 3.0.0-beta.58

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.
@@ -542,6 +542,10 @@ export interface AddBlobToCaseInteraction<ID_TYPE = string> {
542
542
  */
543
543
  BlobUrl?: string;
544
544
  /**
545
+ * Can be used for both standard- and secured blobs - must match environment assets URL.
546
+ */
547
+ BlobUrls?: string[];
548
+ /**
545
549
  * Entity type: Interaction
546
550
  */
547
551
  InteractionID: ID_TYPE;
@@ -569,6 +573,10 @@ export interface AttachBlobToCase<ID_TYPE = string> {
569
573
  */
570
574
  BlobUrl?: string;
571
575
  /**
576
+ * Can be used for both standard- and secured blobs - must match environment assets URL.
577
+ */
578
+ BlobUrls?: string[];
579
+ /**
572
580
  * Entity type: Case
573
581
  */
574
582
  CaseID: ID_TYPE;
@@ -12696,7 +12704,7 @@ export interface ListShippingMethodTransportationTimesResponse<ID_TYPE = string>
12696
12704
  Result?: PagedResult<ShippingShippingMethodTransportationTimeItem<ID_TYPE>, ID_TYPE>;
12697
12705
  }
12698
12706
  export interface ListShippingMethods<ID_TYPE = string> {
12699
- PageConfig?: PageConfig<Record<string, string | null> | null, ID_TYPE>;
12707
+ PageConfig?: PageConfig<ShippingListShippingMethodsFilter<ID_TYPE>, ID_TYPE>;
12700
12708
  }
12701
12709
  export interface ListShippingMethodsResponse<ID_TYPE = string> {
12702
12710
  Error?: ServiceError<ID_TYPE>;
@@ -15317,6 +15325,10 @@ export interface GetWishlist<ID_TYPE = string> {
15317
15325
  * Entity type: Wishlist
15318
15326
  */
15319
15327
  ID: ID_TYPE;
15328
+ /**
15329
+ * Entity type: ProductPropertyType
15330
+ */
15331
+ IncludedProperties?: string[];
15320
15332
  }
15321
15333
  export interface GetWishlistResponse<ID_TYPE = string> {
15322
15334
  CreatedByEmployee: boolean;
@@ -15327,11 +15339,13 @@ export interface GetWishlistResponse<ID_TYPE = string> {
15327
15339
  CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions<ID_TYPE>>;
15328
15340
  Description?: string;
15329
15341
  Error?: ServiceError<ID_TYPE>;
15342
+ FirstProduct?: SearchIProductSearchItem<ID_TYPE>;
15330
15343
  HiddenFromUser: boolean;
15331
15344
  /**
15332
15345
  * Entity type: Wishlist
15333
15346
  */
15334
15347
  ID: ID_TYPE;
15348
+ IsShared: boolean;
15335
15349
  LastModifiedOn?: string;
15336
15350
  LastReadTime: string;
15337
15351
  Metadata?: ResponseMessageMetadata<ID_TYPE>;
@@ -15347,6 +15361,10 @@ export interface GetWishlistResponse<ID_TYPE = string> {
15347
15361
  * List the wishlists.
15348
15362
  */
15349
15363
  export interface ListWishlists<ID_TYPE = string> {
15364
+ /**
15365
+ * Entity type: ProductPropertyType
15366
+ */
15367
+ IncludedProperties?: string[];
15350
15368
  InitialPageConfig?: PageTokenConfig<WishlistsListWishlistsFilter<ID_TYPE>, ID_TYPE>;
15351
15369
  PageToken?: string;
15352
15370
  }
@@ -15361,11 +15379,13 @@ export interface UsersWishlistsListWishlistsResponse_Wishlist<ID_TYPE = string>
15361
15379
  CreatedByEmployee: boolean;
15362
15380
  CreatedOn: string;
15363
15381
  Description?: string;
15382
+ FirstProduct?: SearchIProductSearchItem<ID_TYPE>;
15364
15383
  HiddenFromUser: boolean;
15365
15384
  /**
15366
15385
  * Entity type: Wishlist
15367
15386
  */
15368
15387
  ID: ID_TYPE;
15388
+ IsShared: boolean;
15369
15389
  ItemCount: number;
15370
15390
  LastReadTime: string;
15371
15391
  Name?: string;