@springtree/eva-services-core-management 3.0.0-beta.46 → 3.0.0-beta.48

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.
@@ -1544,6 +1544,7 @@ export interface CreateOrganizationUnitCompany<ID_TYPE = string> {
1544
1544
  IndustryCode?: string;
1545
1545
  Name: string;
1546
1546
  PhoneNumber?: string;
1547
+ RegistrationAddress?: AddressesAddressDataDto<ID_TYPE>;
1547
1548
  RegistrationCountryID?: string;
1548
1549
  RegistrationCountrySubdivisionID?: string;
1549
1550
  RegistrationNumber?: string;
@@ -1640,6 +1641,7 @@ export interface GetOrganizationUnitCompanyResponse<ID_TYPE = string> {
1640
1641
  Metadata?: ResponseMessageMetadata<ID_TYPE>;
1641
1642
  Name: string;
1642
1643
  PhoneNumber?: string;
1644
+ RegistrationAddress?: AddressesAddressDto<ID_TYPE>;
1643
1645
  RegistrationCountryID?: string;
1644
1646
  RegistrationCountrySubdivisionID?: string;
1645
1647
  RegistrationNumber?: string;
@@ -1718,6 +1720,7 @@ export interface CompaniesPushCompany<ID_TYPE = string> {
1718
1720
  InvoiceEmailAddress?: string | null;
1719
1721
  LogoID?: string | null;
1720
1722
  Name?: string;
1723
+ RegistrationAddress?: AddressesAddressDataDto<ID_TYPE>;
1721
1724
  RegistrationCity?: string | null;
1722
1725
  /**
1723
1726
  * Entity type: Country
@@ -1761,6 +1764,7 @@ export interface PushCompany_Async<ID_TYPE = string> {
1761
1764
  InvoiceEmailAddress?: string | null;
1762
1765
  LogoID?: string | null;
1763
1766
  Name?: string;
1767
+ RegistrationAddress?: AddressesAddressDataDto<ID_TYPE>;
1764
1768
  RegistrationCity?: string | null;
1765
1769
  /**
1766
1770
  * Entity type: Country
@@ -1845,6 +1849,7 @@ export interface UpdateOrganizationUnitCompany<ID_TYPE = string> {
1845
1849
  IndustryCode?: string | null;
1846
1850
  Name?: string | null;
1847
1851
  PhoneNumber?: string | null;
1852
+ RegistrationAddress?: AddressesAddressDataDto<ID_TYPE>;
1848
1853
  RegistrationCountryID?: string | null;
1849
1854
  RegistrationCountrySubdivisionID?: string | null;
1850
1855
  RegistrationNumber?: string | null;
@@ -1874,6 +1879,7 @@ export interface ValidateCompany<ID_TYPE = string> {
1874
1879
  InvoiceEmailAddress?: string;
1875
1880
  LogoID?: string;
1876
1881
  Name: string;
1882
+ RegistrationAddress?: AddressesAddressDataDto<ID_TYPE>;
1877
1883
  RegistrationCity?: string;
1878
1884
  /**
1879
1885
  * Entity type: Country
@@ -2064,6 +2070,7 @@ export interface ConfigurationGetSettingHistoryResponse_Setting<ID_TYPE = string
2064
2070
  export interface GetSettingResponse<ID_TYPE = string> {
2065
2071
  AllowMultipleValues: boolean;
2066
2072
  ChildValues?: ConfigurationGetSettingResponse_SettingChild<ID_TYPE>[];
2073
+ DefaultValue?: TAnyValue;
2067
2074
  Deprecation?: string;
2068
2075
  Description?: string;
2069
2076
  EntityType?: ConfigurationSettingValueEntityTypes;
@@ -6929,7 +6936,6 @@ export interface LoyaltyPushLoyaltyProgram_PushLoyaltyProgramCondition<ID_TYPE =
6929
6936
  Type: string;
6930
6937
  }
6931
6938
  export interface LoyaltyPushLoyaltyProgram_PushLoyaltyProgramOrganizationUnitSet<ID_TYPE = string> {
6932
- ConfirmationRequired?: boolean;
6933
6939
  Enabled?: boolean;
6934
6940
  Hidden?: boolean;
6935
6941
  OrganizationUnitSetID?: string;
@@ -14222,7 +14228,6 @@ export interface CreateSubscription<ID_TYPE = string> {
14222
14228
  * Creates a new SubscriptionOrganizationUnitSet and returns the ID of the new record.
14223
14229
  */
14224
14230
  export interface CreateSubscriptionOrganizationUnitSet<ID_TYPE = string> {
14225
- ConfirmationRequired?: boolean;
14226
14231
  Default?: boolean;
14227
14232
  Enabled?: boolean;
14228
14233
  Hidden?: boolean;
@@ -14713,7 +14718,6 @@ export interface GetSubscriptionOrganizationUnitSetsResponse<ID_TYPE = string> {
14713
14718
  SubscriptionOrganizationUnitSets?: UsersGetSubscriptionOrganizationUnitSetsResponse_SubscriptionOrganizationUnitSetDto<ID_TYPE>[];
14714
14719
  }
14715
14720
  export interface UsersGetSubscriptionOrganizationUnitSetsResponse_SubscriptionOrganizationUnitSetDto<ID_TYPE = string> {
14716
- ConfirmationRequired: boolean;
14717
14721
  Default: boolean;
14718
14722
  Enabled: boolean;
14719
14723
  Hidden: boolean;
@@ -15125,7 +15129,6 @@ export interface UpdateSubscription<ID_TYPE = string> {
15125
15129
  * Updates an existing SubscriptionOrganizationUnitSet.
15126
15130
  */
15127
15131
  export interface UpdateSubscriptionOrganizationUnitSet<ID_TYPE = string> {
15128
- ConfirmationRequired?: boolean;
15129
15132
  Default?: boolean;
15130
15133
  Enabled?: boolean;
15131
15134
  Hidden?: boolean;
@@ -15264,6 +15267,7 @@ export interface GetWishlist<ID_TYPE = string> {
15264
15267
  ID: ID_TYPE;
15265
15268
  }
15266
15269
  export interface GetWishlistResponse<ID_TYPE = string> {
15270
+ CreatedByEmployee: boolean;
15267
15271
  CreatedOn: string;
15268
15272
  /**
15269
15273
  * Entity type: CustomField
@@ -15271,6 +15275,7 @@ export interface GetWishlistResponse<ID_TYPE = string> {
15271
15275
  CustomFieldValuesWithOptions?: Record<string, DataModelsCustomFieldValueWithOptions<ID_TYPE>>;
15272
15276
  Description?: string;
15273
15277
  Error?: ServiceError<ID_TYPE>;
15278
+ HiddenFromUser: boolean;
15274
15279
  /**
15275
15280
  * Entity type: Wishlist
15276
15281
  */
@@ -16198,6 +16203,7 @@ export interface EVACoreServicesUsersGetUserBoughtProductResponse_Detail<ID_TYPE
16198
16203
  * Entity type: UserBoughtProductDetail
16199
16204
  */
16200
16205
  ID: ID_TYPE;
16206
+ OrderDisplayID?: string;
16201
16207
  /**
16202
16208
  * Entity type: Order
16203
16209
  */