@open-tender/types 0.2.114 → 0.2.116
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.
|
@@ -222,6 +222,7 @@ export interface OrderData {
|
|
|
222
222
|
details: OrderCreateDetails | null;
|
|
223
223
|
deviceType: DeviceType | null;
|
|
224
224
|
discounts: OrderCreateDiscounts | null;
|
|
225
|
+
discountsInternal?: OrderCreateDiscounts | null;
|
|
225
226
|
orderId: number | null;
|
|
226
227
|
points: OrderCreatePoints | null;
|
|
227
228
|
prepType: PrepType | null;
|
|
@@ -242,6 +243,7 @@ export interface OrderCreate {
|
|
|
242
243
|
customer?: CheckoutFormCustomer | null;
|
|
243
244
|
details?: OrderCreateDetails | null;
|
|
244
245
|
discounts?: OrderCreateDiscounts;
|
|
246
|
+
discounts_internal?: OrderCreateDiscounts | null;
|
|
245
247
|
order_id?: number;
|
|
246
248
|
points?: OrderCreatePoints;
|
|
247
249
|
promo_codes?: CheckoutPromoCodes;
|
|
@@ -10,10 +10,12 @@ export interface HouseAccount {
|
|
|
10
10
|
approved_contact: boolean;
|
|
11
11
|
domain: string | null;
|
|
12
12
|
house_account_id: number;
|
|
13
|
+
is_tax_exempt: boolean;
|
|
13
14
|
name: string;
|
|
14
15
|
order_type: OrderType | null;
|
|
15
16
|
pin: string;
|
|
16
17
|
revenue_centers: HouseAccountRevenueCenters;
|
|
17
18
|
service_type: ServiceType | null;
|
|
19
|
+
tax_exempt_id: string | null;
|
|
18
20
|
}
|
|
19
21
|
export declare type HouseAccounts = HouseAccount[];
|
|
@@ -222,6 +222,7 @@ export interface OrderData {
|
|
|
222
222
|
details: OrderCreateDetails | null;
|
|
223
223
|
deviceType: DeviceType | null;
|
|
224
224
|
discounts: OrderCreateDiscounts | null;
|
|
225
|
+
discountsInternal?: OrderCreateDiscounts | null;
|
|
225
226
|
orderId: number | null;
|
|
226
227
|
points: OrderCreatePoints | null;
|
|
227
228
|
prepType: PrepType | null;
|
|
@@ -242,6 +243,7 @@ export interface OrderCreate {
|
|
|
242
243
|
customer?: CheckoutFormCustomer | null;
|
|
243
244
|
details?: OrderCreateDetails | null;
|
|
244
245
|
discounts?: OrderCreateDiscounts;
|
|
246
|
+
discounts_internal?: OrderCreateDiscounts | null;
|
|
245
247
|
order_id?: number;
|
|
246
248
|
points?: OrderCreatePoints;
|
|
247
249
|
promo_codes?: CheckoutPromoCodes;
|
|
@@ -10,10 +10,12 @@ export interface HouseAccount {
|
|
|
10
10
|
approved_contact: boolean;
|
|
11
11
|
domain: string | null;
|
|
12
12
|
house_account_id: number;
|
|
13
|
+
is_tax_exempt: boolean;
|
|
13
14
|
name: string;
|
|
14
15
|
order_type: OrderType | null;
|
|
15
16
|
pin: string;
|
|
16
17
|
revenue_centers: HouseAccountRevenueCenters;
|
|
17
18
|
service_type: ServiceType | null;
|
|
19
|
+
tax_exempt_id: string | null;
|
|
18
20
|
}
|
|
19
21
|
export declare type HouseAccounts = HouseAccount[];
|
package/package.json
CHANGED