@shopby/shop-sdk 1.78.48 → 1.78.49
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.
|
@@ -182,6 +182,13 @@ export interface GetOrderConfigsResponse {
|
|
|
182
182
|
visibleReceiptBtn: VisibleReceiptBtn;
|
|
183
183
|
includesPreviousOrder: boolean;
|
|
184
184
|
cashReceipt: boolean;
|
|
185
|
+
shopSpecificationFields: ShopSpecificationField[];
|
|
186
|
+
viewShopSpecification: boolean;
|
|
187
|
+
cashReceiptRequired: boolean;
|
|
188
|
+
useMyPay: boolean;
|
|
189
|
+
specificationAdditionalInfo: string;
|
|
190
|
+
usePaymentReceipt: boolean;
|
|
191
|
+
useSimpleReceipt: boolean;
|
|
185
192
|
}
|
|
186
193
|
export interface OrderConfigsEscrow {
|
|
187
194
|
escrowInfoKey: Nullable<string>;
|
|
@@ -200,6 +207,7 @@ export interface ShippingEmptyAutoCancel {
|
|
|
200
207
|
use: boolean;
|
|
201
208
|
cancelDays: number;
|
|
202
209
|
}
|
|
210
|
+
export declare type ShopSpecificationField = 'IMMEDIATE_DISCOUNT_PRICE' | 'PRODUCT_NO' | 'FREE_GIFT' | 'DELIVERY_AMT' | 'DISCOUNT_AMT' | 'SUB_PAY_AMT' | 'EXTERNAL_PAY_INFO';
|
|
203
211
|
/**
|
|
204
212
|
* path: /order-sheets
|
|
205
213
|
*/
|