@experteam-mx/ngx-services 20.0.19 → 20.1.2
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.
- package/index.d.ts +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -694,6 +694,7 @@ interface ExtraCharge extends SymfonyModel {
|
|
|
694
694
|
code: string;
|
|
695
695
|
name: string;
|
|
696
696
|
isDiscount: boolean;
|
|
697
|
+
aggregated: boolean;
|
|
697
698
|
}
|
|
698
699
|
interface Region extends SymfonyModel {
|
|
699
700
|
code: string;
|
|
@@ -919,6 +920,7 @@ type ExtraChargeIn = {
|
|
|
919
920
|
code: string;
|
|
920
921
|
name: string;
|
|
921
922
|
isDiscount: boolean;
|
|
923
|
+
aggregated: boolean;
|
|
922
924
|
};
|
|
923
925
|
type ExtraChargeOut = {
|
|
924
926
|
extraCharge: ExtraCharge;
|
|
@@ -4801,6 +4803,9 @@ interface CountryPaymentType extends LaravelModel {
|
|
|
4801
4803
|
country_payment_type_fields: CountryPaymentTypeField[];
|
|
4802
4804
|
payment_type: PaymentType;
|
|
4803
4805
|
translations: Translations;
|
|
4806
|
+
accountable_account: string | null;
|
|
4807
|
+
accountable_account_usd: string | null;
|
|
4808
|
+
item_text_code: string | null;
|
|
4804
4809
|
}
|
|
4805
4810
|
interface CountryPaymentTypeField extends LaravelModel {
|
|
4806
4811
|
country_payment_type_id: number;
|
|
@@ -5007,6 +5012,9 @@ type CountryPaymentTypeIn = {
|
|
|
5007
5012
|
billing_payment_code: string;
|
|
5008
5013
|
can_tolerance: boolean;
|
|
5009
5014
|
is_active: boolean;
|
|
5015
|
+
accountable_account: string | null;
|
|
5016
|
+
accountable_account_usd: string | null;
|
|
5017
|
+
item_text_code: string | null;
|
|
5010
5018
|
};
|
|
5011
5019
|
type CountryPaymentTypeFieldsOut = {
|
|
5012
5020
|
country_payment_type_fields: CountryPaymentTypeField[];
|