@springtree/eva-services-core-management 9.0.0 → 9.1.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.
@@ -1780,6 +1780,7 @@ export interface CasesPushCase_PushCaseAddress<ID_TYPE = string> {
1780
1780
  Address2?: string;
1781
1781
  City?: string;
1782
1782
  /**
1783
+ * Entity type: Country
1783
1784
  * ISO 3166-1
1784
1785
  */
1785
1786
  CountryID: string;
@@ -6122,6 +6123,10 @@ export interface CreateGiftCardConfiguration<ID_TYPE = string> {
6122
6123
  AllowRefundWithoutTransaction?: boolean;
6123
6124
  AllowRefunds?: boolean;
6124
6125
  /**
6126
+ * Regular expression pattern to validate card numbers (e.g., '^6064' requires gift card numbers starting with 6064)
6127
+ */
6128
+ CardNumberValidationRegex?: string;
6129
+ /**
6125
6130
  * Some gift card handlers are able to handle multiple types of cards. With this property you can set the card the handler should work with.
6126
6131
  */
6127
6132
  CardType?: string;
@@ -6205,6 +6210,10 @@ export interface GetGiftCardConfigurationResponse<ID_TYPE = string> {
6205
6210
  AllowRefundWithoutTransaction: boolean;
6206
6211
  AllowRefunds: boolean;
6207
6212
  /**
6213
+ * Regular expression pattern to validate card numbers (e.g., '^6064' requires gift card numbers starting with 6064)
6214
+ */
6215
+ CardNumberValidationRegex?: string;
6216
+ /**
6208
6217
  * Some gift card handlers are able to handle multiple types of cards. With this property you can set the card the handler should work with.
6209
6218
  */
6210
6219
  CardType?: string;
@@ -6246,6 +6255,7 @@ export interface GiftCardsListGiftCardConfigurationsResponse_GiftCardConfigurati
6246
6255
  AllowMultipleCardsPayment: boolean;
6247
6256
  AllowRefundWithoutTransaction: boolean;
6248
6257
  AllowRefunds: boolean;
6258
+ CardNumberValidationRegex?: string;
6249
6259
  CardType?: string;
6250
6260
  Data?: GiftCardsNoGiftCardData<ID_TYPE> | DiscountsDiscountGiftCardData<ID_TYPE> | Extenders_GiftCardsListGiftCardConfigurationsResponse_GiftCardConfigurationDto_Data<ID_TYPE>[keyof Extenders_GiftCardsListGiftCardConfigurationsResponse_GiftCardConfigurationDto_Data<ID_TYPE>];
6251
6261
  Handler: 'Discount' | 'TEST_SUITE_GIFT_CARD' | 'AdyenStoredValue' | 'APIGIFTCARD' | 'EPAY' | 'FASHIONCHEQUE' | 'INTERSOLVE';
@@ -6309,6 +6319,10 @@ export interface UpdateGiftCardConfiguration<ID_TYPE = string> {
6309
6319
  AllowRefundWithoutTransaction?: boolean;
6310
6320
  AllowRefunds?: boolean;
6311
6321
  /**
6322
+ * Regular expression pattern to validate card numbers (e.g., '^6064' requires gift card numbers starting with 6064)
6323
+ */
6324
+ CardNumberValidationRegex?: string | null;
6325
+ /**
6312
6326
  * Some gift card handlers are able to handle multiple types of cards. With this property you can set the card the handler should work with.
6313
6327
  */
6314
6328
  CardType?: string | null;
@@ -9911,6 +9925,7 @@ export interface PreviewMessageTemplate<ID_TYPE = string> {
9911
9925
  * Entity type: Country
9912
9926
  */
9913
9927
  CountryID?: string;
9928
+ Data?: CommunicationsNoCustomIntegrationData<ID_TYPE> | Extenders_PreviewMessageTemplate_Data<ID_TYPE>[keyof Extenders_PreviewMessageTemplate_Data<ID_TYPE>];
9914
9929
  Destination?: DataModelsMessageTemplateDestinations;
9915
9930
  Footer?: string;
9916
9931
  /**
@@ -9930,6 +9945,7 @@ export interface PreviewMessageTemplate<ID_TYPE = string> {
9930
9945
  */
9931
9946
  OrganizationUnitID?: ID_TYPE;
9932
9947
  PaperProperties?: DataModelsPaperProperties<ID_TYPE>;
9948
+ Provider?: 'TEST_SUITE' | 'kakaotalk';
9933
9949
  SampleData?: Record<string, TAnyValue>;
9934
9950
  /**
9935
9951
  * Entity type: Station
@@ -19613,6 +19629,8 @@ export interface Extenders_MessageTemplatesGetMessageTemplateHistoryByIDResponse
19613
19629
  }
19614
19630
  export interface Extenders_MessageTemplatesListMessageTemplatesResponse_MessageTemplateDto_Data<ID_TYPE> {
19615
19631
  }
19632
+ export interface Extenders_PreviewMessageTemplate_Data<ID_TYPE> {
19633
+ }
19616
19634
  export interface Extenders_UpdateMessageTemplate_Data<ID_TYPE> {
19617
19635
  }
19618
19636
  export interface Extenders_CreateCheckoutOption_Data<ID_TYPE> {